68c9f2bdc5
Step 2: change the Persimmon code to adapt it to the new board's hardware. The Toucan-AF is a COM Express Compact Type 6 form factor embedded board: - AMD Fusion G-T56N (1.65 GHz dual core) or T40R (1 GHz single core) APU - 1-4 GB DDR3 memory down - 1x VGA, 2x DisplayPort (1 switchable to LVDS) - AMD A55E (Hudson-E1) southbridge - 8x USB 2.0 - 4x SATA - HD Audio (with codec on baseboard) - NEC uPD78F0532 microcontroller on I2C ("SEMA") - 7x PCIe2.0 x1 (1 on PEG) - Intel I210 GbE (on APU PCIe x1, can be disabled for additional PCIe) - 2x SST 25VF032B (SO8, soldered) 4 MB SPI flash (BIOS and failsafe BIOS) The Toucan-AF has no SIO on board. This patch includes basic support for a Winbond W83627DHG (PS/2, 2x RS232), because the ADLINK ExpressBase-6 used for evaluation happens to have one. The code may have to be adapted to the actual baseboard of the application. http://www.adlinktech.com/PD/web/PD_detail.php?pid=1132 Change-Id: I9041b905bad45852ac9b402fcbd5decbc98b377b Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de> Reviewed-on: http://review.coreboot.org/2572 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
/*
|
|
* SuperI/O devices
|
|
*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2012 LiPPERT ADLINK Technology GmbH
|
|
* (Written by Jens Rottmann <JRottmann@LiPPERTembedded.de> for LiPPERT)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/* PS/2 Keyboard */
|
|
Device(KBC) {
|
|
Name(_HID, EISAID("PNP0303"))
|
|
Name(_CRS, ResourceTemplate() {
|
|
IO(Decode16, 0x0060, 0x0060, 1, 1)
|
|
IO(Decode16, 0x0064, 0x0064, 1, 1)
|
|
IRQNoFlags(){1}
|
|
})
|
|
}
|
|
|
|
/* PS/2 Mouse */
|
|
Device(PS2M) {
|
|
Name(_HID, EISAID("PNP0F13"))
|
|
Name(_CRS, ResourceTemplate() {
|
|
IRQNoFlags(){12}
|
|
})
|
|
}
|