From a4779e80c3e54e6e6c31169908803065b4ef68b2 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 30 Sep 2004 16:37:22 +0000 Subject: digital logic stuff, fixes for the smbus code in 82801dbm git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1652 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/digitallogic/adl855pc/Config.lb | 34 +++++++++++++++++++++++++++ src/mainboard/digitallogic/adl855pc/auto.c | 14 ++++++----- 2 files changed, 42 insertions(+), 6 deletions(-) (limited to 'src/mainboard/digitallogic') diff --git a/src/mainboard/digitallogic/adl855pc/Config.lb b/src/mainboard/digitallogic/adl855pc/Config.lb index 237a1d957a..fb2ba53ba4 100644 --- a/src/mainboard/digitallogic/adl855pc/Config.lb +++ b/src/mainboard/digitallogic/adl855pc/Config.lb @@ -202,7 +202,9 @@ end ## ## Setup RAM ## +mainboardinit cpu/p6/enable_mmx_sse.inc mainboardinit ./auto.inc +mainboardinit cpu/p6/disable_mmx_sse.inc ## ## Include the secondary Configuration files @@ -224,6 +226,38 @@ northbridge intel/i855pm "i855pm" # pci 0:12.0 register "enable_usb" = "0" register "enable_native_ide" = "0" + register "enable_usb" = "0" + register "enable_native_ide" = "0" + superio winbond/w83627hf link 1 + pnp 2e.0 on # Floppy + io 0x60 = 0x3f0 + irq 0x70 = 6 + drq 0x74 = 2 + pnp 2e.1 off # Parallel Port + io 0x60 = 0x378 + irq 0x70 = 7 + pnp 2e.2 on # Com1 + io 0x60 = 0x3f8 + irq 0x70 = 4 + pnp 2e.3 off # Com2 + io 0x60 = 0x2f8 + irq 0x70 = 3 + pnp 2e.5 on # Keyboard + io 0x60 = 0x60 + io 0x62 = 0x64 + irq 0x70 = 1 + irq 0x72 = 12 + pnp 2e.6 off # CIR + pnp 2e.7 off # GAME_MIDI_GIPO1 + pnp 2e.8 off # GPIO2 + pnp 2e.9 off # GPIO3 + pnp 2e.a off # ACPI + pnp 2e.b on # HW Monitor + io 0x60 = 0x290 + register "com1" = "{1}" + # register "com1" = "{1, 0, 0x3f8, 4}" + # register "lpt" = "{1}" + end end end diff --git a/src/mainboard/digitallogic/adl855pc/auto.c b/src/mainboard/digitallogic/adl855pc/auto.c index 305f5c359c..6e6b2cd944 100644 --- a/src/mainboard/digitallogic/adl855pc/auto.c +++ b/src/mainboard/digitallogic/adl855pc/auto.c @@ -1,4 +1,5 @@ #define ASSEMBLY 1 + #include #include #include @@ -26,6 +27,7 @@ #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1) + static void hard_reset(void) { outb(0x0e, 0x0cf9); @@ -60,7 +62,7 @@ static void main(void) static const struct mem_controller memctrl[] = { { .d0 = PCI_DEV(0, 0, 0), - .channel0 = { (0xa<<3)|0, (0xa<<3)|1, (0xa<<3)|2, 0 }, + .channel0 = { (0xa<<3)|0, 0 }, }, }; @@ -73,14 +75,14 @@ static void main(void) uart_init(); console_init(); -#if 1 +#if 0 print_pci_devices(); #endif if(!bios_reset_detected()) { enable_smbus(); #if 1 -// dump_spd_registers(&memctrl[0]); - dump_smbus_registers(); + dump_spd_registers(&memctrl[0]); + // dump_smbus_registers(); #endif memreset_setup(); @@ -102,10 +104,10 @@ static void main(void) } #endif -#if 1 +#if 0 dump_pci_devices(); #endif -#if 1 +#if 0 dump_pci_device(PCI_DEV(0, 0, 0)); #endif -- cgit v1.2.3