summaryrefslogtreecommitdiff
path: root/src/mainboard/iei/nova4899r/mainboard.c
diff options
context:
space:
mode:
authorLuis Correia <luis.f.correia@gmail.com>2006-11-26 19:05:16 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2006-11-26 19:05:16 +0000
commit3e15652a103bbe703064e3beea6171c58ca2a5e1 (patch)
treea681ea7edc190e426422f651721959e5d9a9d80f /src/mainboard/iei/nova4899r/mainboard.c
parent98b75f0e2426c3a0ced242b07bb1afdde0bb5f18 (diff)
downloadcoreboot-3e15652a103bbe703064e3beea6171c58ca2a5e1.tar.xz
Add support for the IEI NOVA-4899R 5.25 SBC mainboard (patch submitted by
Luis Correia <luis.f.correia@gmail.com>). The code is loosely based on the Eaglelion 5bcm mainboard. Warning: this is work in progress! As of now, it does boot with serial console only (no vga), and two ethernet cards work sometimes. This has to do with the IRQ assignments, which are a complete mess. USB is now apparently working, but I can't make any device to be recognized. The PCI slot is still unusable due to the IRQ thing. Audio, other serial ports, irda, floppy and paralell port support is unknown aka untested yet. (closes #32) Signed-off-by: Luis Correia <luis.f.correia@gmail.com> Acked-by: Acked-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2508 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/iei/nova4899r/mainboard.c')
-rw-r--r--src/mainboard/iei/nova4899r/mainboard.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mainboard/iei/nova4899r/mainboard.c b/src/mainboard/iei/nova4899r/mainboard.c
new file mode 100644
index 0000000000..d9d342a127
--- /dev/null
+++ b/src/mainboard/iei/nova4899r/mainboard.c
@@ -0,0 +1,12 @@
+#include <console/console.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+#include <device/pci_ops.h>
+#include <arch/io.h>
+#include "chip.h"
+
+struct chip_operations mainboard_iei_nova4899r_ops = {
+ CHIP_NAME("IEI nova4899r mainboard")
+};
+