The ADL855PC was never confirmed working (in fact it's pretty sure that code
[coreboot.git] / src / mainboard / digitallogic / adl855pc / romstage.c
1 #include <stdint.h>
2 #include <device/pci_def.h>
3 #include <arch/io.h>
4 #include <device/pnp_def.h>
5 #include <arch/romcc_io.h>
6 #if 0
7 #include <arch/smp/lapic.h>
8 #endif
9 #include <arch/hlt.h>
10 //#include "option_table.h"
11 #include <stdlib.h>
12 #include "pc80/mc146818rtc_early.c"
13 #include "pc80/serial.c"
14 #include "console/console.c"
15 #include "lib/ramtest.c"
16 #include "southbridge/intel/i82801dx/i82801dx.h"
17 #include "southbridge/intel/i82801dx/i82801dx_early_smbus.c"
18 #include "northbridge/intel/i855/raminit.h"
19
20 #if 0
21 #include "cpu/p6/apic_timer.c"
22 #include "lib/delay.c"
23 #endif
24
25 #include "cpu/x86/lapic/boot_cpu.c"
26 #include "northbridge/intel/i855/debug.c"
27 #include "superio/winbond/w83627hf/w83627hf_early_serial.c" 
28 #include "cpu/x86/mtrr/earlymtrr.c"
29 #include "cpu/x86/bist.h"
30
31 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
32
33 static void hard_reset(void)
34 {
35         outb(0x0e, 0x0cf9);
36 }
37
38 static void memreset_setup(void)
39 {
40 }
41
42 static void memreset(int controllers, const struct mem_controller *ctrl)
43 {
44 }
45
46 static inline void activate_spd_rom(const struct mem_controller *ctrl)
47 {
48         /* nothing to do */
49 }
50  
51 static inline int spd_read_byte(unsigned device, unsigned address)
52 {
53         return smbus_read_byte(device, address);
54 }
55
56 #include "northbridge/intel/i855/raminit.c"
57 #include "northbridge/intel/i855/reset_test.c"
58 #include "lib/generic_sdram.c"
59
60
61 #include "cpu/intel/model_6bx/cache_as_ram_disable.c"
62
63 void real_main(unsigned long bist)
64 {
65         static const struct mem_controller memctrl[] = {
66                 {
67                         .d0 = PCI_DEV(0, 0, 1),
68                         .channel0 = { (0xa<<3)|0, 0 },
69                 },
70         };
71
72         if (bist == 0) {
73 #if 0
74                 enable_lapic();
75                 init_timer();
76 #endif
77         }
78         
79         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
80         uart_init();
81         console_init();
82
83         /* Halt if there was a built in self test failure */
84         report_bist_failure(bist);
85
86 #if 0
87         print_pci_devices();
88 #endif
89
90         if(!bios_reset_detected()) {
91                 enable_smbus();
92 #if 0
93                 dump_spd_registers(&memctrl[0]);
94                 dump_smbus_registers();
95 #endif
96                 memreset_setup();
97
98                 sdram_initialize(ARRAY_SIZE(memctrl), memctrl);
99
100         } 
101
102 #if 0
103         dump_pci_devices();
104         dump_pci_device(PCI_DEV(0, 0, 0));
105
106         // Check all of memory
107         ram_check(0x00000000, msr.lo+(msr.hi<<32));
108         // Check 16MB of memory @ 0
109         ram_check(0x00000000, 0x01000000);
110         // Check 16MB of memory @ 2GB 
111         ram_check(0x80000000, 0x81000000);
112 #endif
113 }
114