This patch adds support for the Intel i82810 northbridge and various i82801xx
authorCorey Osgood <corey.osgood@gmail.com>
Thu, 14 Jun 2007 06:10:57 +0000 (06:10 +0000)
committerStefan Reinauer <stepan@openbios.org>
Thu, 14 Jun 2007 06:10:57 +0000 (06:10 +0000)
commite99bd105af97ad905114bd76ae09326a10def8cf
tree22ef962a20d86a4362bc6a2620b72e2a8a344457
parentbd88057f73b83e5bfd9d0fe57b28c87c98d73b12
This patch adds support for the Intel i82810 northbridge and various i82801xx
southbridges, along with the Asus MEW-VM. With this, my machine attempts to
boot linux, but does so very slowly and fails during the boot process, probably
because of the irq tables.

Signed-off-by: Corey Osgood <corey.osgood@gmail.com>
Acked-by: Joseph Smith <joe@smittys.pointclark.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2719 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
29 files changed:
src/cpu/intel/model_6xx/model_6xx_init.c
src/mainboard/asus/mew-vm/Config.lb [new file with mode: 0644]
src/mainboard/asus/mew-vm/Options.lb [new file with mode: 0644]
src/mainboard/asus/mew-vm/auto.c [new file with mode: 0644]
src/mainboard/asus/mew-vm/chip.h [new file with mode: 0644]
src/mainboard/asus/mew-vm/cmos.layout [new file with mode: 0644]
src/mainboard/asus/mew-vm/debug.c [new file with mode: 0644]
src/mainboard/asus/mew-vm/failover.c [new file with mode: 0644]
src/mainboard/asus/mew-vm/irq_tables.c [new file with mode: 0644]
src/mainboard/asus/mew-vm/mainboard.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/Config.lb [new file with mode: 0644]
src/southbridge/intel/i82801xx/chip.h [new file with mode: 0644]
src/southbridge/intel/i82801xx/cmos_failover.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx.h [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_ac97.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_early_smbus.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_ide.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_lpc.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_nic.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_pci.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_reset.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_sata.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_smbus.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_smbus.h [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_usb.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_usb_ehci.c [new file with mode: 0644]
src/southbridge/intel/i82801xx/i82801xx_watchdog.c [new file with mode: 0644]
targets/asus/mew-vm/Config.lb [new file with mode: 0644]