Add support for A-Open DXPL Plus-U motherboard
authorKyösti Mälkki <kyosti.malkki@gmail.com>
Thu, 3 Nov 2011 13:22:01 +0000 (15:22 +0200)
committerPatrick Georgi <patrick@georgi-clan.de>
Thu, 8 Mar 2012 13:26:24 +0000 (14:26 +0100)
commit91162705a65e87c56d9fc58edfe597140d1b4d53
treee549c88e3aa264f3817ae4efc7e0a2ca72394cf9
parentc5fc7db3559e080858461b724251f87be6faa2cd
Add support for A-Open DXPL Plus-U motherboard

This is an old (pre-2005) entry-level server mainboard. The code
is adapted from mainboard/intel/xe7501devkit.

Featured chips:
 - Dual socket604
 - E7505 northbridge
 - 82801DB southbridge (with EHCI debug port)
 - 82870p2 PCI-X bridge
 - LPC47M102S-MC super-io
 - 512kB FWH flash (flashrom does the job well)

What works:
 - Dual-Xeon P4/HT boot with microcode update
 - RAM: registered ECC DDR266 in dual-channel
 - PCI-X slot interrupts with ACPI and I/O apic
 - On-board PCI-X GbE and SCSI
 - ACPI power-off and wakeup with PME#

Notes :
 - Current ACPI is more or less a mess
 - Interrupts do not route correctly with PIRQ
 - MP-table is not implemented
 - Issues with reboots remain (cold and warm)
 - Many superio devices are disabled by default
 - Audio codec is not investigated

Change-Id: I02d18c83f485a09ada65dde03bcc86e9163f2011
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/303
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
20 files changed:
src/mainboard/Kconfig
src/mainboard/aopen/Kconfig [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/Kconfig [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/Makefile.inc [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/e7505_pri.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/e7505_sec.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/i82801db.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/p64h2.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/power.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/scsi.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi/superio.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/acpi_tables.c [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/bus.h [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/chip.h [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/devicetree.cb [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/dsdt.asl [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/fadt.c [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/irq_tables.c [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/mainboard.c [new file with mode: 0644]
src/mainboard/aopen/dxplplusu/romstage.c [new file with mode: 0644]