summaryrefslogtreecommitdiffstats
path: root/src/mainboard/dmp
diff options
context:
space:
mode:
authorAndrew Wu <arw@dmp.com.tw>2013-07-05 17:29:41 +0800
committerRonald G. Minnich <rminnich@gmail.com>2013-07-05 21:39:14 +0200
commit8522f9940af8291772e37eef077339d6f3ffcda9 (patch)
treed18f1d7f393c47257cf5753051170d4ca722dd53 /src/mainboard/dmp
parentf66dd6966a2df6af8ec4a4018f1538b1166256f7 (diff)
downloadcoreboot-8522f9940af8291772e37eef077339d6f3ffcda9.tar.gz
coreboot-8522f9940af8291772e37eef077339d6f3ffcda9.tar.bz2
coreboot-8522f9940af8291772e37eef077339d6f3ffcda9.zip
Add support for DMP Vortex86EX PCI mainboard.
Change-Id: I8d42f765519e356d8f0cc6ed339d9b74f0a3e4d7 Signed-off-by: Andrew Wu <arw@dmp.com.tw> Reviewed-on: http://review.coreboot.org/3610 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard/dmp')
-rw-r--r--src/mainboard/dmp/Kconfig36
-rw-r--r--src/mainboard/dmp/vortex86ex/Kconfig1661
-rw-r--r--src/mainboard/dmp/vortex86ex/devicetree.cb34
-rw-r--r--src/mainboard/dmp/vortex86ex/irq_tables.c57
-rw-r--r--src/mainboard/dmp/vortex86ex/mainboard.c34
-rw-r--r--src/mainboard/dmp/vortex86ex/romstage.c360
6 files changed, 2182 insertions, 0 deletions
diff --git a/src/mainboard/dmp/Kconfig b/src/mainboard/dmp/Kconfig
new file mode 100644
index 000000000000..c3196d2e0daa
--- /dev/null
+++ b/src/mainboard/dmp/Kconfig
@@ -0,0 +1,36 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013 DMP Electronics Inc.
+##
+## 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
+##
+
+if VENDOR_DMP
+
+choice
+ prompt "Mainboard model"
+
+config BOARD_DMP_EX
+ bool "Vortex86EX"
+
+endchoice
+
+source "src/mainboard/dmp/vortex86ex/Kconfig"
+
+config MAINBOARD_VENDOR
+ string
+ default "DMP"
+
+endif # VENDOR_DMP
diff --git a/src/mainboard/dmp/vortex86ex/Kconfig b/src/mainboard/dmp/vortex86ex/Kconfig
new file mode 100644
index 000000000000..723a251cf1a4
--- /dev/null
+++ b/src/mainboard/dmp/vortex86ex/Kconfig
@@ -0,0 +1,1661 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013 DMP Electronics Inc.
+##
+## 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
+##
+
+if BOARD_DMP_EX
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select ARCH_X86
+ select CPU_DMP_VORTEX86EX
+ select NORTHBRIDGE_DMP_VORTEX86EX
+ select SOUTHBRIDGE_DMP_VORTEX86EX
+ select HAVE_PIRQ_TABLE
+ select BOARD_ROMSIZE_KB_256
+ select ROMCC
+ select DEFAULT_EARLY_CONSOLE
+ select HAVE_DEBUG_RAM_SETUP
+
+config MAINBOARD_DIR
+ string
+ default dmp/vortex86ex
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "Vortex86EX"
+
+config IRQ_SLOT_COUNT
+ int
+ default 12
+
+config ID_SECTION_OFFSET
+ # Vortex86 ROM fixed data areas used too big range, we need
+ # to move ID from default address to another place.
+ # 18K below top of ROM should be ok.
+ hex
+ default 0x4800
+
+# ROM Strap PLL config setting :
+
+choice
+ prompt "ROM Strap PLL config"
+ default PLL_300_300_33
+
+config PLL_200_200_33
+ bool "CPU=200Mhz/DRAM=200Mhz/PCI=33Mhz"
+
+config PLL_300_300_33
+ bool "CPU=300Mhz/DRAM=300Mhz/PCI=33Mhz"
+
+config PLL_300_300_100
+ bool "CPU=300Mhz/DRAM=300Mhz/PCI=100Mhz"
+
+config PLL_400_200_33
+ bool "CPU=400Mhz/DRAM=200Mhz/PCI=33Mhz"
+
+config PLL_400_200_100
+ bool "CPU=400Mhz/DRAM=200Mhz/PCI=100Mhz"
+
+config PLL_400_400_33
+ bool "CPU=400Mhz/DRAM=400Mhz/PCI=33Mhz"
+
+config PLL_500_250_33
+ bool "CPU=500Mhz/DRAM=250Mhz/PCI=33Mhz"
+
+config PLL_500_500_33
+ bool "CPU=500Mhz/DRAM=500Mhz/PCI=33Mhz"
+
+config PLL_400_300_33
+ bool "CPU=400Mhz/DRAM=300Mhz/PCI=33Mhz"
+
+config PLL_400_300_100
+ bool "CPU=400Mhz/DRAM=300Mhz/PCI=100Mhz"
+
+config PLL_444_333_33
+ bool "CPU=444Mhz/DRAM=333Mhz/PCI=33Mhz"
+
+config PLL_466_350_33
+ bool "CPU=466Mhz/DRAM=350Mhz/PCI=33Mhz"
+
+config PLL_500_375_33
+ bool "CPU=500Mhz/DRAM=375Mhz/PCI=33Mhz"
+
+endchoice
+
+menu "On-Chip Device Power Down Control"
+
+ config TEMP_POWERDOWN
+ bool "Temperature sensor power-down"
+
+ config SATA_POWERDOWN
+ bool "SATA power-down"
+
+ config ADC_POWERDOWN
+ bool "ADC power-down"
+
+ config PCIE0_POWERDOWN
+ bool "PCIE0 power-down"
+
+ config MAC_POWERDOWN
+ bool "MAC power-down"
+
+ config USB1_POWERDOWN
+ bool "USB2.0 Host Controller 1 power-down"
+
+ config IDE_POWERDOWN
+ bool "IDE power-down"
+
+endmenu
+
+menu "Watchdog Timer setting"
+
+config WDT1_INITIALIZE
+ bool "Initialize WDT1"
+ default n
+
+config WDT1_ENABLE
+ depends on WDT1_INITIALIZE
+ bool "Enable WDT1"
+ default n
+
+choice
+ depends on WDT1_INITIALIZE
+ prompt "WDT1 Signal Select"
+ default WDT1_SIGNAL_RESET
+
+config WDT1_SINGAL_NMI
+ bool "NMI"
+config WDT1_SIGNAL_RESET
+ bool "Reset"
+config WDT1_SIGNAL_SMI
+ bool "SMI"
+
+endchoice
+
+endmenu
+
+menu "IDE controller setting"
+
+choice
+ prompt "Operation Mode"
+ default IDE_NATIVE_MODE
+
+config IDE_NATIVE_MODE
+ bool "Native Mode"
+config IDE_LEGACY_MODE
+ bool "Legacy Mode"
+
+endchoice
+
+config IDE1_ENABLE
+ bool "IDE Primary channel Enable"
+ default y
+
+config IDE2_ENABLE
+ bool "IDE Secondary channel Enable"
+ default y
+
+config IDE_STANDARD_COMPATIBLE
+ bool "Standard IDE Compatible"
+ default n
+ help
+ Built-in IDE controller PCI vendor/device ID is 17F3:1012, which
+ is not recognized by some OSes.
+
+ This option can change IDE controller PCI vendor/device ID to
+ other value for software compatibility.
+
+config IDE_COMPATIBLE_SELECTION
+ depends on IDE_STANDARD_COMPATIBLE
+ hex "IDE Compatible Selection"
+ default 0x808624db
+ help
+ IDE controller PCI vendor/device ID value setting.
+
+ Higher 16-bit is vendor ID, lower 16-bit is device ID.
+
+endmenu
+
+# GPIO setting :
+menu "GPIO setting"
+
+# Begin of GPIO0
+config GPIO_P0_ENABLE
+ bool "GPIO port 0 Enable"
+ default n
+
+config GPIO_P0_DATA_ADDR
+ hex "GPIO port 0 data address"
+ depends on GPIO_P0_ENABLE
+
+config GPIO_P0_DIR_ADDR
+ hex "GPIO port 0 direction address"
+ depends on GPIO_P0_ENABLE
+
+config GPIO_P0_INIT_DIR
+ hex "GPIO port 0 initial direction"
+ default 0x00
+ depends on GPIO_P0_ENABLE
+
+config GPIO_P0_INIT_DATA
+ hex "GPIO port 0 initial data"
+ depends on GPIO_P0_ENABLE
+# end of GPIO0
+
+# Begin of GPIO1
+config GPIO_P1_ENABLE
+ bool "GPIO port 1 Enable"
+ default n
+
+config GPIO_P1_DATA_ADDR
+ hex "GPIO port 1 data address"
+ depends on GPIO_P1_ENABLE
+
+config GPIO_P1_DIR_ADDR
+ hex "GPIO port 1 direction address"
+ depends on GPIO_P1_ENABLE
+
+config GPIO_P1_INIT_DIR
+ hex "GPIO port 1 initial direction"
+ default 0x00
+ depends on GPIO_P1_ENABLE
+
+config GPIO_P1_INIT_DATA
+ hex "GPIO port 1 initial data"
+ depends on GPIO_P1_ENABLE
+# end of GPIO1
+
+# Begin of GPIO2
+config GPIO_P2_ENABLE
+ bool "GPIO port 2 Enable"
+ default n
+
+config GPIO_P2_DATA_ADDR
+ hex "GPIO port 2 data address"
+ depends on GPIO_P2_ENABLE
+
+config GPIO_P2_DIR_ADDR
+ hex "GPIO port 2 direction address"
+ depends on GPIO_P2_ENABLE
+
+config GPIO_P2_INIT_DIR
+ hex "GPIO port 2 initial direction"
+ default 0x00
+ depends on GPIO_P2_ENABLE
+
+config GPIO_P2_INIT_DATA
+ hex "GPIO port 2 initial data"
+ depends on GPIO_P2_ENABLE
+# end of GPIO2
+
+# Begin of GPIO3
+config GPIO_P3_ENABLE
+ bool "GPIO port 3 Enable"
+ default n
+
+config GPIO_P3_DATA_ADDR
+ hex "GPIO port 3 data address"
+ depends on GPIO_P3_ENABLE
+
+config GPIO_P3_DIR_ADDR
+ hex "GPIO port 3 direction address"
+ depends on GPIO_P3_ENABLE
+
+config GPIO_P3_INIT_DIR
+ hex "GPIO port 3 initial direction"
+ default 0x00
+ depends on GPIO_P3_ENABLE
+
+config GPIO_P3_INIT_DATA
+ hex "GPIO port 3 initial data"
+ depends on GPIO_P3_ENABLE
+# end of GPIO3
+
+# Begin of GPIO4
+config GPIO_P4_ENABLE
+ bool "GPIO port 4 Enable"
+ default n
+
+config GPIO_P4_DATA_ADDR
+ hex "GPIO port 4 data address"
+ depends on GPIO_P4_ENABLE
+
+config GPIO_P4_DIR_ADDR
+ hex "GPIO port 4 direction address"
+ depends on GPIO_P4_ENABLE
+
+config GPIO_P4_INIT_DIR
+ hex "GPIO port 4 initial direction"
+ default 0x00
+ depends on GPIO_P4_ENABLE
+
+config GPIO_P4_INIT_DATA
+ hex "GPIO port 4 initial data"
+ depends on GPIO_P4_ENABLE
+# end of GPIO4
+
+# Begin of GPIO5
+config GPIO_P5_ENABLE
+ bool "GPIO port 5 Enable"
+ default n
+
+config GPIO_P5_DATA_ADDR
+ hex "GPIO port 5 data address"
+ depends on GPIO_P5_ENABLE
+
+config GPIO_P5_DIR_ADDR
+ hex "GPIO port 5 direction address"
+ depends on GPIO_P5_ENABLE
+
+config GPIO_P5_INIT_DIR
+ hex "GPIO port 5 initial direction"
+ default 0x00
+ depends on GPIO_P5_ENABLE
+
+config GPIO_P5_INIT_DATA
+ hex "GPIO port 5 initial data"
+ depends on GPIO_P5_ENABLE
+# end of GPIO5
+
+# Begin of GPIO6
+config GPIO_P6_ENABLE
+ bool "GPIO port 6 Enable"
+ default n
+
+config GPIO_P6_DATA_ADDR
+ hex "GPIO port 6 data address"
+ depends on GPIO_P6_ENABLE
+
+config GPIO_P6_DIR_ADDR
+ hex "GPIO port 6 direction address"
+ depends on GPIO_P6_ENABLE
+
+config GPIO_P6_INIT_DIR
+ hex "GPIO port 6 initial direction"
+ default 0x00
+ depends on GPIO_P6_ENABLE
+
+config GPIO_P6_INIT_DATA
+ hex "GPIO port 6 initial data"
+ depends on GPIO_P6_ENABLE
+# end of GPIO6
+
+# Begin of GPIO7
+config GPIO_P7_ENABLE
+ bool "GPIO port 7 Enable"
+ default n
+
+config GPIO_P7_DATA_ADDR
+ hex "GPIO port 7 data address"
+ depends on GPIO_P7_ENABLE
+
+config GPIO_P7_DIR_ADDR
+ hex "GPIO port 7 direction address"
+ depends on GPIO_P7_ENABLE
+
+config GPIO_P7_INIT_DIR
+ hex "GPIO port 7 initial direction"
+ default 0x00
+ depends on GPIO_P7_ENABLE
+
+config GPIO_P7_INIT_DATA
+ hex "GPIO port 7 initial data"
+ depends on GPIO_P7_ENABLE
+# end of GPIO7
+
+# Begin of GPIO8
+config GPIO_P8_ENABLE
+ bool "GPIO port 8 Enable"
+ default n
+
+config GPIO_P8_DATA_ADDR
+ hex "GPIO port 8 data address"
+ depends on GPIO_P8_ENABLE
+
+config GPIO_P8_DIR_ADDR
+ hex "GPIO port 8 direction address"
+ depends on GPIO_P8_ENABLE
+
+config GPIO_P8_INIT_DIR
+ hex "GPIO port 8 initial direction"
+ default 0x00
+ depends on GPIO_P8_ENABLE
+
+config GPIO_P8_INIT_DATA
+ hex "GPIO port 8 initial data"
+ depends on GPIO_P8_ENABLE
+# end of GPIO8
+
+# Begin of GPIO9
+config GPIO_P9_ENABLE
+ bool "GPIO port 9 Enable"
+ default n
+
+config GPIO_P9_DATA_ADDR
+ hex "GPIO port 9 data address"
+ depends on GPIO_P9_ENABLE
+
+config GPIO_P9_DIR_ADDR
+ hex "GPIO port 9 direction address"
+ depends on GPIO_P9_ENABLE
+
+config GPIO_P9_INIT_DIR
+ hex "GPIO port 9 initial direction"
+ default 0x00
+ depends on GPIO_P9_ENABLE
+
+config GPIO_P9_INIT_DATA
+ hex "GPIO port 9 initial data"
+ depends on GPIO_P9_ENABLE
+# end of GPIO9
+
+endmenu
+
+# UART setting :
+menu "UART setting"
+
+# Begin of UART1
+config UART1_ENABLE
+ bool "UART1 Enable"
+ default y
+
+choice
+ prompt "UART1 I/O port"
+ default UART1_IO_PORT_3F8
+ depends on UART1_ENABLE
+
+config UART1_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART1_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART1_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART1_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART1_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART1_IO_PORT_OTHER_INPUT
+ hex "UART1 I/O port"
+ depends on UART1_ENABLE && UART1_IO_PORT_OTHER
+
+config UART1_IO
+ hex
+ depends on UART1_ENABLE
+ default 0x3f8 if UART1_IO_PORT_3F8
+ default 0x2f8 if UART1_IO_PORT_2F8
+ default 0x3e8 if UART1_IO_PORT_3E8
+ default 0x2e8 if UART1_IO_PORT_2E8
+ default UART1_IO_PORT_OTHER_INPUT if UART1_IO_PORT_OTHER
+
+choice
+ prompt "UART1 IRQ"
+ default UART1_IRQ4
+ depends on UART1_ENABLE
+
+config UART1_IRQ_DISABLE
+ bool "Disable"
+config UART1_IRQ3
+ bool "IRQ3, COM2"
+config UART1_IRQ4
+ bool "IRQ4, COM1"
+config UART1_IRQ5
+ bool "IRQ5"
+config UART1_IRQ6
+ bool "IRQ6"
+config UART1_IRQ7
+ bool "IRQ7"
+config UART1_IRQ9
+ bool "IRQ9"
+config UART1_IRQ10
+ bool "IRQ10, COM3"
+config UART1_IRQ11
+ bool "IRQ11, COM4"
+config UART1_IRQ12
+ bool "IRQ12"
+config UART1_IRQ14
+ bool "IRQ14"
+config UART1_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART1_IRQ
+ int
+ depends on UART1_ENABLE
+ default 0 if UART1_IRQ_DISABLE
+ default 3 if UART1_IRQ3
+ default 4 if UART1_IRQ4
+ default 5 if UART1_IRQ5
+ default 6 if UART1_IRQ6
+ default 7 if UART1_IRQ7
+ default 9 if UART1_IRQ9
+ default 10 if UART1_IRQ10
+ default 11 if UART1_IRQ11
+ default 12 if UART1_IRQ12
+ default 14 if UART1_IRQ14
+ default 15 if UART1_IRQ15
+
+choice
+ prompt "UART1 Baud rate"
+ default UART1_BAUD_115200
+ depends on UART1_ENABLE
+
+config UART1_BAUD_115200
+ bool "115200"
+config UART1_BAUD_57600
+ bool "57600"
+config UART1_BAUD_38400
+ bool "38400"
+config UART1_BAUD_19200
+ bool "19200"
+config UART1_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART1_BAUD
+ int
+ depends on UART1_ENABLE
+ default 115200 if UART1_BAUD_115200
+ default 57600 if UART1_BAUD_57600
+ default 38400 if UART1_BAUD_38400
+ default 19200 if UART1_BAUD_19200
+ default 9600 if UART1_BAUD_9600
+# end of UART1
+
+# Begin of UART2
+config UART2_ENABLE
+ bool "UART2 Enable"
+ default y
+
+choice
+ prompt "UART2 I/O port"
+ default UART2_IO_PORT_2F8
+ depends on UART2_ENABLE
+
+config UART2_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART2_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART2_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART2_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART2_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART2_IO_PORT_OTHER_INPUT
+ hex "UART2 I/O port"
+ depends on UART2_ENABLE && UART2_IO_PORT_OTHER
+
+config UART2_IO
+ hex
+ depends on UART2_ENABLE
+ default 0x3f8 if UART2_IO_PORT_3F8
+ default 0x2f8 if UART2_IO_PORT_2F8
+ default 0x3e8 if UART2_IO_PORT_3E8
+ default 0x2e8 if UART2_IO_PORT_2E8
+ default UART2_IO_PORT_OTHER_INPUT if UART2_IO_PORT_OTHER
+
+choice
+ prompt "UART2 IRQ"
+ default UART2_IRQ3
+ depends on UART2_ENABLE
+
+config UART2_IRQ_DISABLE
+ bool "Disable"
+config UART2_IRQ3
+ bool "IRQ3, COM2"
+config UART2_IRQ4
+ bool "IRQ4, COM1"
+config UART2_IRQ5
+ bool "IRQ5"
+config UART2_IRQ6
+ bool "IRQ6"
+config UART2_IRQ7
+ bool "IRQ7"
+config UART2_IRQ9
+ bool "IRQ9"
+config UART2_IRQ10
+ bool "IRQ10, COM3"
+config UART2_IRQ11
+ bool "IRQ11, COM4"
+config UART2_IRQ12
+ bool "IRQ12"
+config UART2_IRQ14
+ bool "IRQ14"
+config UART2_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART2_IRQ
+ int
+ depends on UART2_ENABLE
+ default 0 if UART2_IRQ_DISABLE
+ default 3 if UART2_IRQ3
+ default 4 if UART2_IRQ4
+ default 5 if UART2_IRQ5
+ default 6 if UART2_IRQ6
+ default 7 if UART2_IRQ7
+ default 9 if UART2_IRQ9
+ default 10 if UART2_IRQ10
+ default 11 if UART2_IRQ11
+ default 12 if UART2_IRQ12
+ default 14 if UART2_IRQ14
+ default 15 if UART2_IRQ15
+
+choice
+ prompt "UART2 Baud rate"
+ default UART2_BAUD_115200
+ depends on UART2_ENABLE
+
+config UART2_BAUD_115200
+ bool "115200"
+config UART2_BAUD_57600
+ bool "57600"
+config UART2_BAUD_38400
+ bool "38400"
+config UART2_BAUD_19200
+ bool "19200"
+config UART2_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART2_BAUD
+ int
+ depends on UART2_ENABLE
+ default 115200 if UART2_BAUD_115200
+ default 57600 if UART2_BAUD_57600
+ default 38400 if UART2_BAUD_38400
+ default 19200 if UART2_BAUD_19200
+ default 9600 if UART2_BAUD_9600
+# end of UART2
+
+# Begin of UART3
+config UART3_ENABLE
+ bool "UART3 Enable"
+ default y
+
+choice
+ prompt "UART3 I/O port"
+ default UART3_IO_PORT_3E8
+ depends on UART3_ENABLE
+
+config UART3_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART3_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART3_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART3_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART3_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART3_IO_PORT_OTHER_INPUT
+ hex "UART3 I/O port"
+ depends on UART3_ENABLE && UART3_IO_PORT_OTHER
+
+config UART3_IO
+ hex
+ depends on UART3_ENABLE
+ default 0x3f8 if UART3_IO_PORT_3F8
+ default 0x2f8 if UART3_IO_PORT_2F8
+ default 0x3e8 if UART3_IO_PORT_3E8
+ default 0x2e8 if UART3_IO_PORT_2E8
+ default UART3_IO_PORT_OTHER_INPUT if UART3_IO_PORT_OTHER
+
+choice
+ prompt "UART3 IRQ"
+ default UART3_IRQ10
+ depends on UART3_ENABLE
+
+config UART3_IRQ_DISABLE
+ bool "Disable"
+config UART3_IRQ3
+ bool "IRQ3, COM2"
+config UART3_IRQ4
+ bool "IRQ4, COM1"
+config UART3_IRQ5
+ bool "IRQ5"
+config UART3_IRQ6
+ bool "IRQ6"
+config UART3_IRQ7
+ bool "IRQ7"
+config UART3_IRQ9
+ bool "IRQ9"
+config UART3_IRQ10
+ bool "IRQ10, COM3"
+config UART3_IRQ11
+ bool "IRQ11, COM4"
+config UART3_IRQ12
+ bool "IRQ12"
+config UART3_IRQ14
+ bool "IRQ14"
+config UART3_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART3_IRQ
+ int
+ depends on UART3_ENABLE
+ default 0 if UART3_IRQ_DISABLE
+ default 3 if UART3_IRQ3
+ default 4 if UART3_IRQ4
+ default 5 if UART3_IRQ5
+ default 6 if UART3_IRQ6
+ default 7 if UART3_IRQ7
+ default 9 if UART3_IRQ9
+ default 10 if UART3_IRQ10
+ default 11 if UART3_IRQ11
+ default 12 if UART3_IRQ12
+ default 14 if UART3_IRQ14
+ default 15 if UART3_IRQ15
+
+choice
+ prompt "UART3 Baud rate"
+ default UART3_BAUD_115200
+ depends on UART3_ENABLE
+
+config UART3_BAUD_115200
+ bool "115200"
+config UART3_BAUD_57600
+ bool "57600"
+config UART3_BAUD_38400
+ bool "38400"
+config UART3_BAUD_19200
+ bool "19200"
+config UART3_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART3_BAUD
+ int
+ depends on UART3_ENABLE
+ default 115200 if UART3_BAUD_115200
+ default 57600 if UART3_BAUD_57600
+ default 38400 if UART3_BAUD_38400
+ default 19200 if UART3_BAUD_19200
+ default 9600 if UART3_BAUD_9600
+# end of UART3
+
+# Begin of UART4
+config UART4_ENABLE
+ bool "UART4 Enable"
+ default y
+
+choice
+ prompt "UART4 I/O port"
+ default UART4_IO_PORT_2E8
+ depends on UART4_ENABLE
+
+config UART4_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART4_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART4_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART4_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART4_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART4_IO_PORT_OTHER_INPUT
+ hex "UART4 I/O port"
+ depends on UART4_ENABLE && UART4_IO_PORT_OTHER
+
+config UART4_IO
+ hex
+ depends on UART4_ENABLE
+ default 0x3f8 if UART4_IO_PORT_3F8
+ default 0x2f8 if UART4_IO_PORT_2F8
+ default 0x3e8 if UART4_IO_PORT_3E8
+ default 0x2e8 if UART4_IO_PORT_2E8
+ default UART4_IO_PORT_OTHER_INPUT if UART4_IO_PORT_OTHER
+
+choice
+ prompt "UART4 IRQ"
+ default UART4_IRQ11
+ depends on UART4_ENABLE
+
+config UART4_IRQ_DISABLE
+ bool "Disable"
+config UART4_IRQ3
+ bool "IRQ3, COM2"
+config UART4_IRQ4
+ bool "IRQ4, COM1"
+config UART4_IRQ5
+ bool "IRQ5"
+config UART4_IRQ6
+ bool "IRQ6"
+config UART4_IRQ7
+ bool "IRQ7"
+config UART4_IRQ9
+ bool "IRQ9"
+config UART4_IRQ10
+ bool "IRQ10, COM3"
+config UART4_IRQ11
+ bool "IRQ11, COM4"
+config UART4_IRQ12
+ bool "IRQ12"
+config UART4_IRQ14
+ bool "IRQ14"
+config UART4_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART4_IRQ
+ int
+ depends on UART4_ENABLE
+ default 0 if UART4_IRQ_DISABLE
+ default 3 if UART4_IRQ3
+ default 4 if UART4_IRQ4
+ default 5 if UART4_IRQ5
+ default 6 if UART4_IRQ6
+ default 7 if UART4_IRQ7
+ default 9 if UART4_IRQ9
+ default 10 if UART4_IRQ10
+ default 11 if UART4_IRQ11
+ default 12 if UART4_IRQ12
+ default 14 if UART4_IRQ14
+ default 15 if UART4_IRQ15
+
+choice
+ prompt "UART4 Baud rate"
+ default UART4_BAUD_115200
+ depends on UART4_ENABLE
+
+config UART4_BAUD_115200
+ bool "115200"
+config UART4_BAUD_57600
+ bool "57600"
+config UART4_BAUD_38400
+ bool "38400"
+config UART4_BAUD_19200
+ bool "19200"
+config UART4_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART4_BAUD
+ int
+ depends on UART4_ENABLE
+ default 115200 if UART4_BAUD_115200
+ default 57600 if UART4_BAUD_57600
+ default 38400 if UART4_BAUD_38400
+ default 19200 if UART4_BAUD_19200
+ default 9600 if UART4_BAUD_9600
+# end of UART4
+
+# Begin of UART5
+config UART5_ENABLE
+ bool "UART5 Enable"
+ default n
+
+choice
+ prompt "UART5 I/O port"
+ default UART5_IO_PORT_OTHER
+ depends on UART5_ENABLE
+
+config UART5_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART5_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART5_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART5_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART5_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART5_IO_PORT_OTHER_INPUT
+ hex "UART5 I/O port"
+ depends on UART5_ENABLE && UART5_IO_PORT_OTHER
+
+config UART5_IO
+ hex
+ depends on UART5_ENABLE
+ default 0x3f8 if UART5_IO_PORT_3F8
+ default 0x2f8 if UART5_IO_PORT_2F8
+ default 0x3e8 if UART5_IO_PORT_3E8
+ default 0x2e8 if UART5_IO_PORT_2E8
+ default UART5_IO_PORT_OTHER_INPUT if UART5_IO_PORT_OTHER
+
+choice
+ prompt "UART5 IRQ"
+ default UART5_IRQ_DISABLE
+ depends on UART5_ENABLE
+
+config UART5_IRQ_DISABLE
+ bool "Disable"
+config UART5_IRQ3
+ bool "IRQ3, COM2"
+config UART5_IRQ4
+ bool "IRQ4, COM1"
+config UART5_IRQ5
+ bool "IRQ5"
+config UART5_IRQ6
+ bool "IRQ6"
+config UART5_IRQ7
+ bool "IRQ7"
+config UART5_IRQ9
+ bool "IRQ9"
+config UART5_IRQ10
+ bool "IRQ10, COM3"
+config UART5_IRQ11
+ bool "IRQ11, COM4"
+config UART5_IRQ12
+ bool "IRQ12"
+config UART5_IRQ14
+ bool "IRQ14"
+config UART5_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART5_IRQ
+ int
+ depends on UART5_ENABLE
+ default 0 if UART5_IRQ_DISABLE
+ default 3 if UART5_IRQ3
+ default 4 if UART5_IRQ4
+ default 5 if UART5_IRQ5
+ default 6 if UART5_IRQ6
+ default 7 if UART5_IRQ7
+ default 9 if UART5_IRQ9
+ default 10 if UART5_IRQ10
+ default 11 if UART5_IRQ11
+ default 12 if UART5_IRQ12
+ default 14 if UART5_IRQ14
+ default 15 if UART5_IRQ15
+
+choice
+ prompt "UART5 Baud rate"
+ default UART5_BAUD_115200
+ depends on UART5_ENABLE
+
+config UART5_BAUD_115200
+ bool "115200"
+config UART5_BAUD_57600
+ bool "57600"
+config UART5_BAUD_38400
+ bool "38400"
+config UART5_BAUD_19200
+ bool "19200"
+config UART5_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART5_BAUD
+ int
+ depends on UART5_ENABLE
+ default 115200 if UART5_BAUD_115200
+ default 57600 if UART5_BAUD_57600
+ default 38400 if UART5_BAUD_38400
+ default 19200 if UART5_BAUD_19200
+ default 9600 if UART5_BAUD_9600
+# end of UART5
+
+# Begin of UART6
+config UART6_ENABLE
+ bool "UART6 Enable"
+ default n
+
+choice
+ prompt "UART6 I/O port"
+ default UART6_IO_PORT_OTHER
+ depends on UART6_ENABLE
+
+config UART6_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART6_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART6_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART6_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART6_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART6_IO_PORT_OTHER_INPUT
+ hex "UART6 I/O port"
+ depends on UART6_ENABLE && UART6_IO_PORT_OTHER
+
+config UART6_IO
+ hex
+ depends on UART6_ENABLE
+ default 0x3f8 if UART6_IO_PORT_3F8
+ default 0x2f8 if UART6_IO_PORT_2F8
+ default 0x3e8 if UART6_IO_PORT_3E8
+ default 0x2e8 if UART6_IO_PORT_2E8
+ default UART6_IO_PORT_OTHER_INPUT if UART6_IO_PORT_OTHER
+
+choice
+ prompt "UART6 IRQ"
+ default UART6_IRQ_DISABLE
+ depends on UART6_ENABLE
+
+config UART6_IRQ_DISABLE
+ bool "Disable"
+config UART6_IRQ3
+ bool "IRQ3, COM2"
+config UART6_IRQ4
+ bool "IRQ4, COM1"
+config UART6_IRQ5
+ bool "IRQ5"
+config UART6_IRQ6
+ bool "IRQ6"
+config UART6_IRQ7
+ bool "IRQ7"
+config UART6_IRQ9
+ bool "IRQ9"
+config UART6_IRQ10
+ bool "IRQ10, COM3"
+config UART6_IRQ11
+ bool "IRQ11, COM4"
+config UART6_IRQ12
+ bool "IRQ12"
+config UART6_IRQ14
+ bool "IRQ14"
+config UART6_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART6_IRQ
+ int
+ depends on UART6_ENABLE
+ default 0 if UART6_IRQ_DISABLE
+ default 3 if UART6_IRQ3
+ default 4 if UART6_IRQ4
+ default 5 if UART6_IRQ5
+ default 6 if UART6_IRQ6
+ default 7 if UART6_IRQ7
+ default 9 if UART6_IRQ9
+ default 10 if UART6_IRQ10
+ default 11 if UART6_IRQ11
+ default 12 if UART6_IRQ12
+ default 14 if UART6_IRQ14
+ default 15 if UART6_IRQ15
+
+choice
+ prompt "UART6 Baud rate"
+ default UART6_BAUD_115200
+ depends on UART6_ENABLE
+
+config UART6_BAUD_115200
+ bool "115200"
+config UART6_BAUD_57600
+ bool "57600"
+config UART6_BAUD_38400
+ bool "38400"
+config UART6_BAUD_19200
+ bool "19200"
+config UART6_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART6_BAUD
+ int
+ depends on UART6_ENABLE
+ default 115200 if UART6_BAUD_115200
+ default 57600 if UART6_BAUD_57600
+ default 38400 if UART6_BAUD_38400
+ default 19200 if UART6_BAUD_19200
+ default 9600 if UART6_BAUD_9600
+# end of UART6
+
+# Begin of UART7
+config UART7_ENABLE
+ bool "UART7 Enable"
+ default n
+
+choice
+ prompt "UART7 I/O port"
+ default UART7_IO_PORT_OTHER
+ depends on UART7_ENABLE
+
+config UART7_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART7_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART7_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART7_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART7_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART7_IO_PORT_OTHER_INPUT
+ hex "UART7 I/O port"
+ depends on UART7_ENABLE && UART7_IO_PORT_OTHER
+
+config UART7_IO
+ hex
+ depends on UART7_ENABLE
+ default 0x3f8 if UART7_IO_PORT_3F8
+ default 0x2f8 if UART7_IO_PORT_2F8
+ default 0x3e8 if UART7_IO_PORT_3E8
+ default 0x2e8 if UART7_IO_PORT_2E8
+ default UART7_IO_PORT_OTHER_INPUT if UART7_IO_PORT_OTHER
+
+choice
+ prompt "UART7 IRQ"
+ default UART7_IRQ_DISABLE
+ depends on UART7_ENABLE
+
+config UART7_IRQ_DISABLE
+ bool "Disable"
+config UART7_IRQ3
+ bool "IRQ3, COM2"
+config UART7_IRQ4
+ bool "IRQ4, COM1"
+config UART7_IRQ5
+ bool "IRQ5"
+config UART7_IRQ6
+ bool "IRQ6"
+config UART7_IRQ7
+ bool "IRQ7"
+config UART7_IRQ9
+ bool "IRQ9"
+config UART7_IRQ10
+ bool "IRQ10, COM3"
+config UART7_IRQ11
+ bool "IRQ11, COM4"
+config UART7_IRQ12
+ bool "IRQ12"
+config UART7_IRQ14
+ bool "IRQ14"
+config UART7_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART7_IRQ
+ int
+ depends on UART7_ENABLE
+ default 0 if UART7_IRQ_DISABLE
+ default 3 if UART7_IRQ3
+ default 4 if UART7_IRQ4
+ default 5 if UART7_IRQ5
+ default 6 if UART7_IRQ6
+ default 7 if UART7_IRQ7
+ default 9 if UART7_IRQ9
+ default 10 if UART7_IRQ10
+ default 11 if UART7_IRQ11
+ default 12 if UART7_IRQ12
+ default 14 if UART7_IRQ14
+ default 15 if UART7_IRQ15
+
+choice
+ prompt "UART7 Baud rate"
+ default UART7_BAUD_115200
+ depends on UART7_ENABLE
+
+config UART7_BAUD_115200
+ bool "115200"
+config UART7_BAUD_57600
+ bool "57600"
+config UART7_BAUD_38400
+ bool "38400"
+config UART7_BAUD_19200
+ bool "19200"
+config UART7_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART7_BAUD
+ int
+ depends on UART7_ENABLE
+ default 115200 if UART7_BAUD_115200
+ default 57600 if UART7_BAUD_57600
+ default 38400 if UART7_BAUD_38400
+ default 19200 if UART7_BAUD_19200
+ default 9600 if UART7_BAUD_9600
+# end of UART7
+
+# Begin of UART8
+config UART8_ENABLE
+ bool "UART8 Enable"
+ default n
+
+choice
+ prompt "UART8 I/O port"
+ default UART8_IO_PORT_OTHER
+ depends on UART8_ENABLE
+
+config UART8_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART8_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART8_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART8_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART8_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART8_IO_PORT_OTHER_INPUT
+ hex "UART8 I/O port"
+ depends on UART8_ENABLE && UART8_IO_PORT_OTHER
+
+config UART8_IO
+ hex
+ depends on UART8_ENABLE
+ default 0x3f8 if UART8_IO_PORT_3F8
+ default 0x2f8 if UART8_IO_PORT_2F8
+ default 0x3e8 if UART8_IO_PORT_3E8
+ default 0x2e8 if UART8_IO_PORT_2E8
+ default UART8_IO_PORT_OTHER_INPUT if UART8_IO_PORT_OTHER
+
+choice
+ prompt "UART8 IRQ"
+ default UART8_IRQ_DISABLE
+ depends on UART8_ENABLE
+
+config UART8_IRQ_DISABLE
+ bool "Disable"
+config UART8_IRQ3
+ bool "IRQ3, COM2"
+config UART8_IRQ4
+ bool "IRQ4, COM1"
+config UART8_IRQ5
+ bool "IRQ5"
+config UART8_IRQ6
+ bool "IRQ6"
+config UART8_IRQ7
+ bool "IRQ7"
+config UART8_IRQ9
+ bool "IRQ9"
+config UART8_IRQ10
+ bool "IRQ10, COM3"
+config UART8_IRQ11
+ bool "IRQ11, COM4"
+config UART8_IRQ12
+ bool "IRQ12"
+config UART8_IRQ14
+ bool "IRQ14"
+config UART8_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART8_IRQ
+ int
+ depends on UART8_ENABLE
+ default 0 if UART8_IRQ_DISABLE
+ default 3 if UART8_IRQ3
+ default 4 if UART8_IRQ4
+ default 5 if UART8_IRQ5
+ default 6 if UART8_IRQ6
+ default 7 if UART8_IRQ7
+ default 9 if UART8_IRQ9
+ default 10 if UART8_IRQ10
+ default 11 if UART8_IRQ11
+ default 12 if UART8_IRQ12
+ default 14 if UART8_IRQ14
+ default 15 if UART8_IRQ15
+
+choice
+ prompt "UART8 Baud rate"
+ default UART8_BAUD_115200
+ depends on UART8_ENABLE
+
+config UART8_BAUD_115200
+ bool "115200"
+config UART8_BAUD_57600
+ bool "57600"
+config UART8_BAUD_38400
+ bool "38400"
+config UART8_BAUD_19200
+ bool "19200"
+config UART8_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART8_BAUD
+ int
+ depends on UART8_ENABLE
+ default 115200 if UART8_BAUD_115200
+ default 57600 if UART8_BAUD_57600
+ default 38400 if UART8_BAUD_38400
+ default 19200 if UART8_BAUD_19200
+ default 9600 if UART8_BAUD_9600
+# end of UART8
+
+# Begin of UART9
+config UART9_ENABLE
+ bool "UART9 Enable"
+ default n
+
+choice
+ prompt "UART9 I/O port"
+ default UART9_IO_PORT_OTHER
+ depends on UART9_ENABLE
+
+config UART9_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART9_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART9_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART9_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART9_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART9_IO_PORT_OTHER_INPUT
+ hex "UART9 I/O port"
+ depends on UART9_ENABLE && UART9_IO_PORT_OTHER
+
+config UART9_IO
+ hex
+ depends on UART9_ENABLE
+ default 0x3f8 if UART9_IO_PORT_3F8
+ default 0x2f8 if UART9_IO_PORT_2F8
+ default 0x3e8 if UART9_IO_PORT_3E8
+ default 0x2e8 if UART9_IO_PORT_2E8
+ default UART9_IO_PORT_OTHER_INPUT if UART9_IO_PORT_OTHER
+
+choice
+ prompt "UART9 IRQ"
+ default UART9_IRQ_DISABLE
+ depends on UART9_ENABLE
+
+config UART9_IRQ_DISABLE
+ bool "Disable"
+config UART9_IRQ3
+ bool "IRQ3, COM2"
+config UART9_IRQ4
+ bool "IRQ4, COM1"
+config UART9_IRQ5
+ bool "IRQ5"
+config UART9_IRQ6
+ bool "IRQ6"
+config UART9_IRQ7
+ bool "IRQ7"
+config UART9_IRQ9
+ bool "IRQ9"
+config UART9_IRQ10
+ bool "IRQ10, COM3"
+config UART9_IRQ11
+ bool "IRQ11, COM4"
+config UART9_IRQ12
+ bool "IRQ12"
+config UART9_IRQ14
+ bool "IRQ14"
+config UART9_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART9_IRQ
+ int
+ depends on UART9_ENABLE
+ default 0 if UART9_IRQ_DISABLE
+ default 3 if UART9_IRQ3
+ default 4 if UART9_IRQ4
+ default 5 if UART9_IRQ5
+ default 6 if UART9_IRQ6
+ default 7 if UART9_IRQ7
+ default 9 if UART9_IRQ9
+ default 10 if UART9_IRQ10
+ default 11 if UART9_IRQ11
+ default 12 if UART9_IRQ12
+ default 14 if UART9_IRQ14
+ default 15 if UART9_IRQ15
+
+choice
+ prompt "UART9 Baud rate"
+ default UART9_BAUD_115200
+ depends on UART9_ENABLE
+
+config UART9_BAUD_115200
+ bool "115200"
+config UART9_BAUD_57600
+ bool "57600"
+config UART9_BAUD_38400
+ bool "38400"
+config UART9_BAUD_19200
+ bool "19200"
+config UART9_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART9_BAUD
+ int
+ depends on UART9_ENABLE
+ default 115200 if UART9_BAUD_115200
+ default 57600 if UART9_BAUD_57600
+ default 38400 if UART9_BAUD_38400
+ default 19200 if UART9_BAUD_19200
+ default 9600 if UART9_BAUD_9600
+# end of UART9
+
+# Begin of UART10
+config UART10_ENABLE
+ bool "UART10 Enable"
+ default n
+
+choice
+ prompt "UART10 I/O port"
+ default UART10_IO_PORT_OTHER
+ depends on UART10_ENABLE
+
+config UART10_IO_PORT_3F8
+ bool "0x3f8, COM1"
+config UART10_IO_PORT_2F8
+ bool "0x2f8, COM2"
+config UART10_IO_PORT_3E8
+ bool "0x3e8, COM3"
+config UART10_IO_PORT_2E8
+ bool "0x2e8, COM4"
+config UART10_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config UART10_IO_PORT_OTHER_INPUT
+ hex "UART10 I/O port"
+ depends on UART10_ENABLE && UART10_IO_PORT_OTHER
+
+config UART10_IO
+ hex
+ depends on UART10_ENABLE
+ default 0x3f8 if UART10_IO_PORT_3F8
+ default 0x2f8 if UART10_IO_PORT_2F8
+ default 0x3e8 if UART10_IO_PORT_3E8
+ default 0x2e8 if UART10_IO_PORT_2E8
+ default UART10_IO_PORT_OTHER_INPUT if UART10_IO_PORT_OTHER
+
+choice
+ prompt "UART10 IRQ"
+ default UART10_IRQ_DISABLE
+ depends on UART10_ENABLE
+
+config UART10_IRQ_DISABLE
+ bool "Disable"
+config UART10_IRQ3
+ bool "IRQ3, COM2"
+config UART10_IRQ4
+ bool "IRQ4, COM1"
+config UART10_IRQ5
+ bool "IRQ5"
+config UART10_IRQ6
+ bool "IRQ6"
+config UART10_IRQ7
+ bool "IRQ7"
+config UART10_IRQ9
+ bool "IRQ9"
+config UART10_IRQ10
+ bool "IRQ10, COM3"
+config UART10_IRQ11
+ bool "IRQ11, COM4"
+config UART10_IRQ12
+ bool "IRQ12"
+config UART10_IRQ14
+ bool "IRQ14"
+config UART10_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config UART10_IRQ
+ int
+ depends on UART10_ENABLE
+ default 0 if UART10_IRQ_DISABLE
+ default 3 if UART10_IRQ3
+ default 4 if UART10_IRQ4
+ default 5 if UART10_IRQ5
+ default 6 if UART10_IRQ6
+ default 7 if UART10_IRQ7
+ default 9 if UART10_IRQ9
+ default 10 if UART10_IRQ10
+ default 11 if UART10_IRQ11
+ default 12 if UART10_IRQ12
+ default 14 if UART10_IRQ14
+ default 15 if UART10_IRQ15
+
+choice
+ prompt "UART10 Baud rate"
+ default UART10_BAUD_115200
+ depends on UART10_ENABLE
+
+config UART10_BAUD_115200
+ bool "115200"
+config UART10_BAUD_57600
+ bool "57600"
+config UART10_BAUD_38400
+ bool "38400"
+config UART10_BAUD_19200
+ bool "19200"
+config UART10_BAUD_9600
+ bool "9600"
+
+endchoice
+
+config UART10_BAUD
+ int
+ depends on UART10_ENABLE
+ default 115200 if UART10_BAUD_115200
+ default 57600 if UART10_BAUD_57600
+ default 38400 if UART10_BAUD_38400
+ default 19200 if UART10_BAUD_19200
+ default 9600 if UART10_BAUD_9600
+# end of UART10
+
+endmenu
+
+# LPT setting :
+menu "LPT setting"
+
+# Begin of LPT
+config LPT_ENABLE
+ bool "LPT Enable"
+ default n
+
+choice
+ prompt "LPT I/O port"
+ default LPT_IO_PORT_278
+ depends on LPT_ENABLE
+
+config LPT_IO_PORT_378
+ bool "0x378, LPT1"
+config LPT_IO_PORT_278
+ bool "0x278, LPT2"
+config LPT_IO_PORT_OTHER
+ bool "Other"
+
+endchoice
+
+config LPT_IO_PORT_OTHER_INPUT
+ hex "LPT I/O port"
+ depends on LPT_ENABLE && LPT_IO_PORT_OTHER
+
+config LPT_IO
+ hex
+ depends on LPT_ENABLE
+ default 0x378 if LPT_IO_PORT_378
+ default 0x278 if LPT_IO_PORT_278
+ default LPT_IO_PORT_OTHER_INPUT if LPT_IO_PORT_OTHER
+
+choice
+ prompt "LPT IRQ"
+ default LPT_IRQ_DISABLE
+ depends on LPT_ENABLE
+
+config LPT_IRQ_DISABLE
+ bool "Disable"
+config LPT_IRQ3
+ bool "IRQ3"
+config LPT_IRQ4
+ bool "IRQ4"
+config LPT_IRQ5
+ bool "IRQ5"
+config LPT_IRQ6
+ bool "IRQ6"
+config LPT_IRQ7
+ bool "IRQ7"
+config LPT_IRQ9
+ bool "IRQ9"
+config LPT_IRQ10
+ bool "IRQ10"
+config LPT_IRQ11
+ bool "IRQ11"
+config LPT_IRQ12
+ bool "IRQ12"
+config LPT_IRQ14
+ bool "IRQ14"
+config LPT_IRQ15
+ bool "IRQ15"
+
+endchoice
+
+config LPT_IRQ
+ int
+ depends on LPT_ENABLE
+ default 0 if LPT_IRQ_DISABLE
+ default 3 if LPT_IRQ3
+ default 4 if LPT_IRQ4
+ default 5 if LPT_IRQ5
+ default 6 if LPT_IRQ6
+ default 7 if LPT_IRQ7
+ default 9 if LPT_IRQ9
+ default 10 if LPT_IRQ10
+ default 11 if LPT_IRQ11
+ default 12 if LPT_IRQ12
+ default 14 if LPT_IRQ14
+ default 15 if LPT_IRQ15
+
+choice
+ prompt "LPT Mode Setting"
+ default LPT_MODE_SPP
+ depends on LPT_ENABLE
+
+config LPT_MODE_BPP
+ bool "BPP mode"
+config LPT_MODE_EPP_19_AND_SPP
+ bool "EPP 1.9 and SPP mode"
+config LPT_MODE_ECP
+ bool "ECP Mode"
+config LPT_MODE_ECP_AND_EPP_19
+ bool "ECP and EPP 1.9 mode"
+config LPT_MODE_SPP
+ bool "SPP Mode"
+config LPT_MODE_EPP_17_AND_SPP
+ bool "EPP 1.7 and SPP mode"
+config LPT_MODE_ECP_AND_EPP_17
+ bool "ECP and EPP 1.7 mode"
+
+endchoice
+
+# end of LPT
+
+endmenu
+
+endif # BOARD_DMP_EX
diff --git a/src/mainboard/dmp/vortex86ex/devicetree.cb b/src/mainboard/dmp/vortex86ex/devicetree.cb
new file mode 100644
index 000000000000..1fbfe7b4f4c4
--- /dev/null
+++ b/src/mainboard/dmp/vortex86ex/devicetree.cb
@@ -0,0 +1,34 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013 DMP Electronics Inc.
+##
+## 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
+##
+
+chip northbridge/dmp/vortex86ex # North Bridge
+ device domain 0 on
+ device pci 0.0 on end # Host Bridge
+ chip southbridge/dmp/vortex86ex # South Bridge
+ device pci 7.0 on end # ISA Bridge
+ device pci 8.0 on end # Ethernet
+ device pci a.0 on end # USB 1.1
+ device pci a.1 on end # USB 2.0
+ device pci b.0 on end # USB 1.1
+ device pci b.1 on end # USB 2.0
+ device pci c.0 on end # IDE
+ end
+ end # pci domain 0
+ chip cpu/dmp/vortex86ex end # CPU
+end
diff --git a/src/mainboard/dmp/vortex86ex/irq_tables.c b/src/mainboard/dmp/vortex86ex/irq_tables.c
new file mode 100644
index 000000000000..c185c4fdcf79
--- /dev/null
+++ b/src/mainboard/dmp/vortex86ex/irq_tables.c
@@ -0,0 +1,57 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 DMP Electronics Inc.
+ *
+ * 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
+ */
+
+#include <arch/pirq_routing.h>
+
+static const struct irq_routing_table intel_irq_routing_table = {
+ PIRQ_SIGNATURE, /* u32 signature */
+ PIRQ_VERSION, /* u16 version */
+ 32 + 16 * 12, /* Max. number of devices on the bus */
+ 0x00, /* Interrupt router bus */
+ (0x07 << 3) | 0x0, /* Interrupt router dev */
+ 0, /* IRQs devoted exclusively to PCI usage */
+ 0x17f3, /* Vendor */
+ 0x6031, /* Device */
+ 0, /* Miniport */
+ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */
+ 0xa, /* Checksum (has to be set to some value that
+ * would give 0 after the sum of all bytes
+ * for this structure (including checksum).
+ */
+ {
+ /* bus, dev | fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu */
+ {0x00, (0x01 << 3) | 0x0, {{0x01, 0xdef8}, {0x02, 0xdef8}, {0x03, 0xdef8}, {0x04, 0xdef8}}, 0x1, 0x0},
+ {0x00, (0x02 << 3) | 0x0, {{0x02, 0xdef8}, {0x03, 0xdef8}, {0x04, 0xdef8}, {0x01, 0xdef8}}, 0x2, 0x0},
+ {0x00, (0x03 << 3) | 0x0, {{0x03, 0xdef8}, {0x04, 0xdef8}, {0x01, 0xdef8}, {0x02, 0xdef8}}, 0x0, 0x0},
+ {0x00, (0x04 << 3) | 0x0, {{0x04, 0xdef8}, {0x01, 0xdef8}, {0x02, 0xdef8}, {0x03, 0xdef8}}, 0x4, 0x0},
+ {0x00, (0x05 << 3) | 0x0, {{0x01, 0xdef8}, {0x02, 0xdef8}, {0x03, 0xdef8}, {0x04, 0xdef8}}, 0x5, 0x0},
+ {0x00, (0x06 << 3) | 0x0, {{0x02, 0xdef8}, {0x03, 0xdef8}, {0x04, 0xdef8}, {0x01, 0xdef8}}, 0x6, 0x0},
+ {0x00, (0x08 << 3) | 0x0, {{0x05, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ {0x00, (0x0a << 3) | 0x0, {{0x07, 0xdef8}, {0x08, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ {0x00, (0x0b << 3) | 0x0, {{0x09, 0xdef8}, {0x0a, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ {0x00, (0x0c << 3) | 0x0, {{0x0b, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ {0x00, (0x0f << 3) | 0x0, {{0x0d, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ {0x00, (0x0e << 3) | 0x0, {{0x0e, 0xdef8}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0},
+ }
+};
+
+unsigned long write_pirq_routing_table(unsigned long addr)
+{
+ return copy_pirq_routing_table(addr, &intel_irq_routing_table);
+}
diff --git a/src/mainboard/dmp/vortex86ex/mainboard.c b/src/mainboard/dmp/vortex86ex/mainboard.c
new file mode 100644
index 000000000000..dfeb5f42c8ef
--- /dev/null
+++ b/src/mainboard/dmp/vortex86ex/mainboard.c
@@ -0,0 +1,34 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 DMP Electronics Inc.
+ *
+ * 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
+ */
+
+#include <console/console.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <arch/io.h>
+#include <boot/tables.h>
+#include <device/pci_def.h>
+
+static void mainboard_enable(device_t dev)
+{
+}
+
+struct chip_operations mainboard_ops = {
+ CHIP_NAME("DMP VORTEX86EX Mainboard")
+ .enable_dev = mainboard_enable,
+};
diff --git a/src/mainboard/dmp/vortex86ex/romstage.c b/src/mainboard/dmp/vortex86ex/romstage.c
new file mode 100644
index 000000000000..72fbde08e5ee
--- /dev/null
+++ b/src/mainboard/dmp/vortex86ex/romstage.c
@@ -0,0 +1,360 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 Andrew Wu <arw@dmp.com.tw>
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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
+ */
+
+#include <stdint.h>
+#include <arch/io.h>
+#include <stdlib.h>
+#include <console/console.h>
+#include "cpu/x86/mtrr/earlymtrr.c"
+#include "drivers/pc80/i8254.c"
+#include "northbridge/dmp/vortex86ex/northbridge.h"
+#include "southbridge/dmp/vortex86ex/southbridge.h"
+#include "northbridge/dmp/vortex86ex/raminit.c"
+
+#define DMP_CPUID_SX 0x31504d44
+#define DMP_CPUID_DX 0x32504d44
+#define DMP_CPUID_MX 0x33504d44
+#define DMP_CPUID_DX2 0x34504d44
+#define DMP_CPUID_MX_PLUS 0x35504d44
+#define DMP_CPUID_EX 0x37504d44
+
+/* Post codes */
+#define POST_DMP_ID_ERR 0x85
+#define POST_DRAM_TEST_ERR 0x86
+#define POST_DRAM_SIZING_ERR 0x77
+
+static u32 get_dmp_id(void)
+{
+ return pci_read_config32(NB, NB_REG_CID);
+}
+
+/* Indirect access registers for Watch-dog timer, GPIO PORT 0,1
+ * Index port is for I/O port 22h
+ * Index port 13h (00: lock register, C5h: unlock register) for lock/unlock function
+ * Index port 37h, 39h, 3Ah, 3Bh, 3Ch for Watchdog timer
+ * Index port 46h, 47h, 4Ch, 4Dh, 4Eh, 4Fh for GPIO port 0, 1
+ */
+static void write_indirect_reg(u8 index, u8 data)
+{
+ outb(index, 0x22);
+ outb(data, 0x23);
+}
+
+static void lock_indirect_reg(void)
+{
+ write_indirect_reg(0x13, 0x00);
+}
+
+static void unlock_indirect_reg(void)
+{
+ write_indirect_reg(0x13, 0xc5);
+}
+
+static void disable_watchdog(void)
+{
+ unlock_indirect_reg();
+ // disable watchdog timer
+ write_indirect_reg(0x37, 0x0);
+}
+
+void set_ex_powerdown_control(void)
+{
+ u32 powerdown_ctrl;
+ powerdown_ctrl = pci_read_config32(SB, 0xbc);
+#if CONFIG_TEMP_POWERDOWN
+ powerdown_ctrl |= (1 << 31);
+#endif
+#if CONFIG_SATA_POWERDOWN
+ powerdown_ctrl |= (1 << 30);
+#endif
+#if CONFIG_ADC_POWERDOWN
+ powerdown_ctrl |= (1 << 28);
+#endif
+#if CONFIG_PCIE0_POWERDOWN
+ powerdown_ctrl |= (1 << 13);
+#endif
+#if CONFIG_MAC_POWERDOWN
+ powerdown_ctrl |= (1 << 3);
+#endif
+#if CONFIG_USB1_POWERDOWN
+ powerdown_ctrl |= (1 << 1);
+#endif
+#if CONFIG_IDE_POWERDOWN
+ powerdown_ctrl |= (1 << 0);
+#endif
+ pci_write_config32(SB, 0xbc, powerdown_ctrl);
+}
+
+static void set_pci_nb_pmcr(void)
+{
+ u8 pmcr = pci_read_config8(NB, NB_REG_PMCR);
+ /*
+ * Set PCI Master Max Cycle Length (MCL) to 32 PCI clocks.
+ * Set PCI Master Burst Write Length (BL) to Burst length over 3.
+ */
+ pmcr |= 0x0f;
+ pci_write_config8(NB, NB_REG_PMCR, pmcr);
+}
+
+static void set_pci_sb_lpccr(void)
+{
+ u8 lpccr = pci_read_config8(SB, SB_REG_LPCCR);
+ /* Set PCI Soft Reset Control to 1.
+ * (When the CPU soft reset is initialized, PCIRST# will be active.)
+ * Set P92FE to 1. (I/O port 92 Register Write Function Enable.)
+ * Set P92S to 1. (Internal Port 92h Selected.)
+ */
+ lpccr |= 0x16;
+ pci_write_config8(SB, SB_REG_LPCCR, lpccr);
+ /* enable fast ga20 */
+ outb(inb(SYSTEM_CTL_PORT) | 0x02, SYSTEM_CTL_PORT);
+}
+
+static u32 make_uart_config(u16 base, u8 irq)
+{
+ /* Set base IO address only, skip IRQ. IRQ will be setup in
+ * southbridge stage. */
+ u32 cfg = 0;
+ cfg |= 1 << 23; // UE = enabled.
+ cfg |= base; // UIOA.
+ return cfg;
+}
+
+#define SETUP_UART(n) \
+ uart_cfg = make_uart_config(CONFIG_UART##n##_IO, CONFIG_UART##n##_IRQ);\
+ outl(uart_cfg, 0xc00 + (n - 1) * 4);
+
+static void ex_uart_early_init(void)
+{
+#if CONFIG_TTYS0_BASE
+ u32 uart_cfg = 0;
+ /* Set UART Config I/O base address to 0xc00 */
+ pci_write_config16(SB, 0x60, 0xc01);
+ /* If serial console base address is defined, find out which
+ * UART uses this address, and setup this UART first. */
+#if CONFIG_TTYS0_BASE == CONFIG_UART1_IO
+ SETUP_UART(1)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART2_IO
+ SETUP_UART(2)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART3_IO
+ SETUP_UART(3)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART4_IO
+ SETUP_UART(4)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART5_IO
+ SETUP_UART(5)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART6_IO
+ SETUP_UART(6)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART7_IO
+ SETUP_UART(7)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART8_IO
+ SETUP_UART(8)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART9_IO
+ SETUP_UART(9)
+#elif CONFIG_TTYS0_BASE == CONFIG_UART10_IO
+ SETUP_UART(10)
+#endif
+#endif
+}
+
+static void init_wdt1(void)
+{
+#if CONFIG_WDT1_INITIALIZE
+#if CONFIG_WDT1_ENABLE
+ outb(0x1 << 6, 0xa8);
+#endif
+ u8 wdt1_signal_reg = 0;
+#if CONFIG_WDT1_SINGAL_NMI
+ wdt1_signal_reg = 0x0c << 4;
+#elif CONFIG_WDT1_SIGNAL_RESET
+ wdt1_signal_reg = 0x0d << 4;
+#elif CONFIG_WDT1_SIGNAL_SMI
+ wdt1_signal_reg = 0x0e << 4;
+#endif
+ outb(wdt1_signal_reg, 0xa9);
+#endif
+}
+
+/* Fill 32bit pattern into specified DRAM region. */
+static void fill_dram(u32 * p, u32 pattern, u32 test_len)
+{
+ if (test_len == 0)
+ return;
+#if 0
+ // C version, very slow.
+ for (p = (u32 *) 0; (u32) p < test_len; p++) {
+ *p = pattern;
+ }
+#endif
+ // ASM version, much faster.
+ asm volatile (
+ "cld\n\t"
+ "rep\n\t"
+ "stosl"
+ : /* no output registers */
+ : "c" (test_len / 4), "a" (pattern), "D" (p)
+ );
+}
+
+/* Verify 32bit pattern in specified DRAM region.
+ * Return -1 if ok, failed memory address if error. */
+static int verify_dram(u32 * p, u32 pattern, u32 test_len)
+{
+ if (test_len == 0)
+ return -1;
+#if 0
+ // C version, very slow.
+ for (p = (u32 *) 0; (u32) p < test_len; p++) {
+ if (*p != pattern) {
+ return (int)p;
+ }
+ }
+ return -1;
+#endif
+ u16 flags;
+ int addr;
+ asm volatile (
+ "cld\n\t"
+ "rep\n\t"
+ "scasl\n\t"
+ "lahf\n\t"
+ : "=a" (flags), "=D" (addr)
+ : "c" (test_len / 4), "a" (pattern), "D" (p)
+ );
+ if (flags & (1 << (6 + 8))) // x86 zero flag = bit 6.
+ {
+ return -1; // verify ok
+ }
+ return addr - 4; // verify error, return error address.
+}
+
+static void test_dram_stability(void)
+{
+ u32 test_len = 2048 * 1024;
+ u32 pat = 0x5aa5a55a;
+ u32 ext_mem_start = 0xc0000;
+ u32 base_mem_test_len = test_len > 640 * 1024 ? 640 * 1024 : test_len;
+ u32 ext_mem_test_len = test_len > ext_mem_start ? test_len - ext_mem_start : 0;
+ if (ext_mem_test_len > 0) {
+ /* Enable all shadow RAM region C0000 - FFFFF. */
+ pci_write_config32(NB, NB_REG_MAR, 0x3ffffff0);
+ }
+ int v;
+ fill_dram((u32 *) 0, pat, base_mem_test_len);
+ fill_dram((u32 *) ext_mem_start, pat, ext_mem_test_len);
+ v = verify_dram((u32 *) 0, pat, base_mem_test_len);
+ if (v == -1) {
+ v = verify_dram((u32 *) ext_mem_start, pat, ext_mem_test_len);
+ }
+ /* Change pattern and test again */
+ if (v == -1) {
+ pat = 0xa55a5aa5;
+ fill_dram((u32 *) 0, pat, base_mem_test_len);
+ fill_dram((u32 *) ext_mem_start, pat, ext_mem_test_len);
+ v = verify_dram((u32 *) 0, pat, base_mem_test_len);
+ if (v == -1) {
+ v = verify_dram((u32 *) ext_mem_start, pat, ext_mem_test_len);
+ }
+ }
+ if (v != -1) {
+ post_code(POST_DRAM_TEST_ERR);
+ print_emerg("DRAM stablility test error!\nADDR = ");
+ print_emerg_hex32(v);
+ print_emerg(", WRITE = ");
+ print_emerg_hex32(pat);
+ u32 r = *(u32 *) v;
+ print_emerg(", READ = ");
+ print_emerg_hex32(r);
+ print_emerg(", XOR = ");
+ print_emerg_hex32(r ^ pat);
+ print_emerg("\n");
+ die("System halted.\n");
+ }
+ if (ext_mem_test_len > 0) {
+ /* Disable shadow RAM. */
+ pci_write_config32(NB, NB_REG_MAR, 0x0);
+ }
+}
+
+static void enable_l2_cache(void)
+{
+ /*
+ * Enable L2 cache by setting PCI N/B function 1 L2 cache
+ * control register (0xe8) bit 0 (L2_EN) and bit 1 (L2_WB_EN).
+ */
+ u32 reg_nb_f1_e8;
+ reg_nb_f1_e8 = pci_read_config8(NB1, 0xe8);
+ reg_nb_f1_e8 |= 3;
+ pci_write_config8(NB1, 0xe8, reg_nb_f1_e8);
+}
+
+static void main(unsigned long bist)
+{
+ device_t dev;
+ u32 dmp_id;
+
+ dmp_id = get_dmp_id();
+ if (dmp_id != DMP_CPUID_EX) {
+ /* Not DMP Vortex86EX CPU. */
+ post_code(POST_DMP_ID_ERR);
+ while (1)
+ hlt();
+ }
+ disable_watchdog();
+ set_ex_powerdown_control();
+ set_pci_nb_pmcr();
+ set_pci_sb_lpccr();
+ ex_uart_early_init();
+
+ console_init();
+
+ init_wdt1();
+
+ /* Initialize i8254 timers */
+ post_code(0x42);
+ setup_i8254();
+
+ /* Initialize DRAM */
+ u8 reg_nb_f1_cc;
+ /* Setup DDR3 Timing reg 0-3 / Config reg */
+ pci_write_config16(NB, 0x6e, 0x0a2f);
+ pci_write_config32(NB, 0x74, 0x84010200);
+ pci_write_config32(NB, 0x78, 0x33405544);
+ pci_write_config32(NB, 0x7c, 0x2e0f0e0b);
+ /* Disable enhance read push write */
+ reg_nb_f1_cc = pci_read_config8(NB1, 0xcc);
+ reg_nb_f1_cc &= ~(1 << 4);
+ pci_write_config8(NB1, 0xcc, reg_nb_f1_cc);
+ if (detect_ddr3_dram_size()) {
+ post_code(POST_DRAM_SIZING_ERR);
+ die("DRAM sizing error!\n");
+ }
+ /* Reset enhance read push write to default(enable) */
+ reg_nb_f1_cc |= (1 << 4);
+ pci_write_config8(NB1, 0xcc, reg_nb_f1_cc);
+
+ print_ddr3_memory_setup();
+ test_dram_stability();
+
+ /* CPU setup, romcc pukes on invd() */
+ asm volatile ("invd");
+ enable_cache();
+
+ enable_l2_cache();
+}