2873d8af994dcbda705de3c1d83ce5b9b5d8a77f
[coreboot.git] / src / mainboard / supermicro / x6dai_g / 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 "pc80/udelay_io.c"
11 #include "lib/delay.c"
12 #include "southbridge/intel/esb6300/esb6300_early_smbus.c"
13 #include "northbridge/intel/e7525/raminit.h"
14 #include "superio/winbond/w83627hf/w83627hf.h"
15 #include "cpu/x86/lapic/boot_cpu.c"
16 #include "cpu/x86/mtrr/earlymtrr.c"
17 #include "debug.c"
18 #include "watchdog.c"
19 #include "reset.c"
20 #include "superio/winbond/w83627hf/w83627hf_early_init.c"
21 #include "northbridge/intel/e7525/memory_initialized.c"
22 #include "cpu/x86/bist.h"
23 #include <spd.h>
24
25 #define CONSOLE_SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
26 #define HIDDEN_SERIAL_DEV  PNP_DEV(0x2e, W83627HF_SP2)
27
28 #define DEVPRES_CONFIG  ( \
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/e7525/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                         .f0 = PCI_DEV(0, 0x00, 0),
52                         .f1 = PCI_DEV(0, 0x00, 1),
53                         .f2 = PCI_DEV(0, 0x00, 2),
54                         .f3 = PCI_DEV(0, 0x00, 3),
55                         .channel0 = {DIMM3, DIMM2, DIMM1, DIMM0, },
56                         .channel1 = {DIMM7, DIMM6, DIMM5, DIMM4, },
57                 }
58         };
59
60         if (bist == 0) {
61                 /* Skip this if there was a built in self test failure */
62                 early_mtrr_init();
63                 if (memory_initialized())
64                         skip_romstage();
65         }
66
67         /* Setup the console */
68         outb(0x87,0x2e);
69         outb(0x87,0x2e);
70         pnp_write_config(CONSOLE_SERIAL_DEV, 0x24, 0x84 | (1 << 6));
71         w83627hf_enable_dev(CONSOLE_SERIAL_DEV, CONFIG_TTYS0_BASE);
72         uart_init();
73         console_init();
74
75         /* MOVE ME TO A BETTER LOCATION !!! */
76         /* config LPC decode for flash memory access */
77         device_t dev;
78         dev = pci_locate_device(PCI_ID(0x8086, 0x25a1), 0);
79         if (dev == PCI_DEV_INVALID)
80                 die("Missing 6300ESB?");
81         pci_write_config32(dev, 0xe8, 0x00000000);
82         pci_write_config8(dev, 0xf0, 0x00);
83
84 #if 0
85         display_cpuid_update_microcode();
86         print_pci_devices();
87 #endif
88 #if 1
89         enable_smbus();
90 #endif
91 #if 0
92         int i;
93         for(i = 0; i < 1; i++)
94                 dump_spd_registers();
95 #endif
96         disable_watchdogs();
97         sdram_initialize(ARRAY_SIZE(mch), mch);
98 #if 1
99         dump_pci_device(PCI_DEV(0, 0x00, 0));
100 //      dump_bar14(PCI_DEV(0, 0x00, 0));
101 #endif
102
103 #if 0 // temporarily disabled
104         /* Check the first 1M */
105 //      ram_check(0x00000000, 0x000100000);
106 //      ram_check(0x00000000, 0x000a0000);
107         ram_check(0x00100000, 0x01000000);
108         /* check the first 1M in the 3rd Gig */
109         ram_check(0x30100000, 0x31000000);
110 #endif
111 #if 0
112         ram_check(0x00000000, 0x02000000);
113 #endif
114 }