This patch drops arch/i386/lib/console.c and arch/i386/lib/console_print.c and
[coreboot.git] / src / mainboard / supermicro / x6dhr_ig / 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 #include <cpu/x86/lapic.h>
7 #include <stdlib.h>
8 #include "option_table.h"
9 #include "pc80/mc146818rtc_early.c"
10 #include "pc80/serial.c"
11 #include "console/console.c"
12 #include "lib/ramtest.c"
13 #include "southbridge/intel/i82801ex/i82801ex_early_smbus.c"
14 #include "northbridge/intel/e7520/raminit.h"
15 #include "superio/winbond/w83627hf/w83627hf.h"
16 #include "cpu/x86/lapic/boot_cpu.c"
17 #include "cpu/x86/mtrr/earlymtrr.c"
18 #include "debug.c"
19 #include "watchdog.c"
20 #include "reset.c"
21 #include "x6dhr_fixups.c"
22 #include "superio/winbond/w83627hf/w83627hf_early_init.c"
23 #include "northbridge/intel/e7520/memory_initialized.c"
24 #include "cpu/x86/bist.h"
25
26 #define SIO_GPIO_BASE 0x680
27 #define SIO_XBUS_BASE 0x4880
28
29 #define CONSOLE_SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
30 #define HIDDEN_SERIAL_DEV  PNP_DEV(0x2e, W83627HF_SP2)
31
32 #define DEVPRES_CONFIG  ( \
33         DEVPRES_D0F0 | \
34         DEVPRES_D1F0 | \
35         DEVPRES_D2F0 | \
36         DEVPRES_D3F0 | \
37         DEVPRES_D4F0 | \
38         DEVPRES_D6F0 | \
39         0 )
40 #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
41
42 #define RECVENA_CONFIG  0x0808090a
43 #define RECVENB_CONFIG  0x0808090a
44
45 static inline void activate_spd_rom(const struct mem_controller *ctrl)
46 {
47         /* nothing to do */
48 }
49 static inline int spd_read_byte(unsigned device, unsigned address)
50 {
51         return smbus_read_byte(device, address);
52 }
53
54 #include "northbridge/intel/e7520/raminit.c"
55 #include "lib/generic_sdram.c"
56
57 static void main(unsigned long bist)
58 {
59         /*
60          * 
61          * 
62          */
63         static const struct mem_controller mch[] = {
64                 {
65                         .node_id = 0,
66                         /*
67                         .f0 = PCI_DEV(0, 0x00, 0),
68                         .f1 = PCI_DEV(0, 0x00, 1),
69                         .f2 = PCI_DEV(0, 0x00, 2),
70                         .f3 = PCI_DEV(0, 0x00, 3),
71                         */
72                         .channel0 = {(0xa<<3)|3, (0xa<<3)|2, (0xa<<3)|1, (0xa<<3)|0, },
73                         .channel1 = {(0xa<<3)|7, (0xa<<3)|6, (0xa<<3)|5, (0xa<<3)|4, },
74                 }
75         };
76
77         if (bist == 0) {
78                 /* Skip this if there was a built in self test failure */
79                 early_mtrr_init();
80                 if (memory_initialized()) {
81                         asm volatile ("jmp __cpu_reset");
82                 }
83         }
84         /* Setup the console */
85         outb(0x87,0x2e);
86         outb(0x87,0x2e);
87         pnp_write_config(CONSOLE_SERIAL_DEV, 0x24, 0x84 | (1 << 6));
88         w83627hf_enable_dev(CONSOLE_SERIAL_DEV, CONFIG_TTYS0_BASE);
89         uart_init();
90         console_init();
91
92         /* Halt if there was a built in self test failure */
93 //      report_bist_failure(bist);
94
95         /* MOVE ME TO A BETTER LOCATION !!! */
96         /* config LPC decode for flash memory access */
97         device_t dev;
98         dev = pci_locate_device(PCI_ID(0x8086, 0x24d0), 0);
99         if (dev == PCI_DEV_INVALID) {
100                 die("Missing ich5?");
101         }
102         pci_write_config32(dev, 0xe8, 0x00000000);
103         pci_write_config8(dev, 0xf0, 0x00);
104
105 #if 0
106         display_cpuid_update_microcode();
107 #endif
108 #if 0
109         print_pci_devices();
110 #endif
111 #if 1
112         enable_smbus();
113 #endif
114 #if 0
115 //      dump_spd_registers(&cpu[0]);
116         int i;
117         for(i = 0; i < 1; i++) {
118                 dump_spd_registers();
119         }
120 #endif
121         disable_watchdogs();
122 //      dump_ipmi_registers();
123         mainboard_set_e7520_leds();     
124 //      memreset_setup();
125         sdram_initialize(ARRAY_SIZE(mch), mch);
126 #if 1
127         dump_pci_devices();
128 #endif
129 #if 0
130         dump_pci_device(PCI_DEV(0, 0x00, 0));
131         dump_bar14(PCI_DEV(0, 0x00, 0));
132 #endif
133
134 #if 0 // temporarily disabled 
135         /* Check the first 1M */
136 //      ram_check(0x00000000, 0x000100000);
137 //      ram_check(0x00000000, 0x000a0000);
138 //      ram_check(0x00100000, 0x01000000);
139         ram_check(0x00100000, 0x00100100);
140         /* check the first 1M in the 3rd Gig */
141 //      ram_check(0x30100000, 0x31000000);
142 #endif
143 #if 0
144         ram_check(0x00000000, 0x02000000);
145 #endif
146         
147 #if 0   
148         while(1) {
149                 hlt();
150         }
151 #endif
152 }
153