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