From 11490d28983bf7d4d71f8791fa706b28574bf8b5 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 28 May 2008 01:00:36 +0000 Subject: [PATCH] artecgroup/dbe61: Set up 4MB mode for LPC dongle This way we can fit a kernel and initramfs on the dongle's free ~3.75MB space and have a debug system bootable right from inside the dongle. The start address of the dongle is mem@0xffc00000 for FILO with 4MB minus ROM area available. This should be a no-op when not booting from the dongle. The same change was done to artecgroup/dbe62/stage1.c in rev660. Signed-off-by: Mart Raudsepp Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/coreboot-v3@687 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- mainboard/artecgroup/dbe61/stage1.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mainboard/artecgroup/dbe61/stage1.c b/mainboard/artecgroup/dbe61/stage1.c index c159171b0d..70fd82fb81 100644 --- a/mainboard/artecgroup/dbe61/stage1.c +++ b/mainboard/artecgroup/dbe61/stage1.c @@ -60,6 +60,9 @@ void hardware_stage1(void) * early MSR setup for the CS5536. */ cs5536_setup_onchipuart(2); + + /* Set up 4MB mode for Artec LPC Dongle (this should be a no-op when not booting from the dongle) */ + outb(0xf4,0x88); } void mainboard_pre_payload(void)