- Update abuild.sh so it will rebuild successfull builds
[coreboot.git] / src / mainboard / digitallogic / adl855pc / auto.c
1 #define ASSEMBLY 1
2
3 #include <stdint.h>
4 #include <device/pci_def.h>
5 #include <arch/io.h>
6 #include <device/pnp_def.h>
7 #include <arch/romcc_io.h>
8 #if 0
9 #include <arch/smp/lapic.h>
10 #endif
11 #include <arch/hlt.h>
12 //#include "option_table.h"
13 #include "pc80/mc146818rtc_early.c"
14 #include "pc80/serial.c"
15 #include "arch/i386/lib/console.c"
16 #include "ram/ramtest.c"
17 #include "southbridge/intel/i82801dbm/i82801dbm_early_smbus.c"
18 #include "northbridge/intel/i855pm/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/i855pm/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
34 static void hard_reset(void)
35 {
36         outb(0x0e, 0x0cf9);
37 }
38
39 static void memreset_setup(void)
40 {
41 }
42
43 static void memreset(int controllers, const struct mem_controller *ctrl)
44 {
45 }
46
47
48
49 static inline void activate_spd_rom(const struct mem_controller *ctrl)
50 {
51         /* nothing to do */
52 }
53  
54 static inline int spd_read_byte(unsigned device, unsigned address)
55 {
56         return smbus_read_byte(device, address);
57 }
58
59 #include "northbridge/intel/i855pm/raminit.c"
60 #include "northbridge/intel/i855pm/reset_test.c"
61 #include "sdram/generic_sdram.c"
62
63 static void 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                 early_mtrr_init();
74 #if 0
75                 enable_lapic();
76                 init_timer();
77 #endif
78         }
79         
80         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
81         uart_init();
82         console_init();
83
84         /* Halt if there was a built in self test failure */
85         report_bist_failure(bist);
86         
87 #if 0
88         print_pci_devices();
89 #endif
90         if(!bios_reset_detected()) {
91                 enable_smbus();
92 #if 1
93         dump_spd_registers(&memctrl[0]);
94         //              dump_smbus_registers();
95 #endif
96
97                 memreset_setup();
98                 sdram_initialize(sizeof(memctrl)/sizeof(memctrl[0]), memctrl);
99         } 
100 #if 0
101         else {
102                         /* clear memory 1meg */
103         __asm__ volatile(
104                 "1: \n\t"
105                 "movl %0, %%fs:(%1)\n\t"
106                 "addl $4,%1\n\t"
107                 "subl $4,%2\n\t"
108                 "jnz 1b\n\t"
109                 :
110                 : "a" (0), "D" (0), "c" (1024*1024)
111                 ); 
112         
113         }
114 #endif
115
116 #if 0
117         dump_pci_devices();
118 #endif
119 #if 0
120         dump_pci_device(PCI_DEV(0, 0, 0));
121 #endif
122
123 /*
124 #if  0
125         ram_check(0x00000000, msr.lo+(msr.hi<<32));
126 #else
127 #if 0
128         // Check 16MB of memory @ 0
129         ram_check(0x00000000, 0x01000000);
130 #else
131         // Check 16MB of memory @ 2GB 
132         ram_check(0x80000000, 0x81000000);
133 #endif
134 #endif
135 */
136 }