6f8ea1264f3a1b903c423efaad4c81e1b088fac9
[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
24 #define SIO_GPIO_BASE 0x680
25 #define SIO_XBUS_BASE 0x4880
26
27 #define CONSOLE_SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
28 #define HIDDEN_SERIAL_DEV  PNP_DEV(0x2e, W83627HF_SP2)
29
30 #define DEVPRES_CONFIG  ( \
31         DEVPRES_D1F0 | \
32         DEVPRES_D2F0 | \
33         DEVPRES_D3F0 | \
34         DEVPRES_D4F0 | \
35         DEVPRES_D6F0 | \
36         0 )
37 #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
38
39 #define RECVENA_CONFIG  0x0808090a
40 #define RECVENB_CONFIG  0x0808090a
41
42 static inline int spd_read_byte(unsigned device, unsigned address)
43 {
44         return smbus_read_byte(device, address);
45 }
46
47 #include "northbridge/intel/e7525/raminit.c"
48 #include "lib/generic_sdram.c"
49 #include "arch/i386/lib/stages.c"
50
51 static void main(unsigned long bist)
52 {
53         /*
54          *
55          *
56          */
57         static const struct mem_controller mch[] = {
58                 {
59                         .node_id = 0,
60                         .f0 = PCI_DEV(0, 0x00, 0),
61                         .f1 = PCI_DEV(0, 0x00, 1),
62                         .f2 = PCI_DEV(0, 0x00, 2),
63                         .f3 = PCI_DEV(0, 0x00, 3),
64                         .channel0 = {(0xa<<3)|3, (0xa<<3)|2, (0xa<<3)|1, (0xa<<3)|0, },
65                         .channel1 = {(0xa<<3)|7, (0xa<<3)|6, (0xa<<3)|5, (0xa<<3)|4, },
66                 }
67         };
68
69         if (bist == 0) {
70                 /* Skip this if there was a built in self test failure */
71                 early_mtrr_init();
72                 if (memory_initialized()) {
73                         skip_romstage();
74                 }
75         }
76         /* Setup the console */
77         outb(0x87,0x2e);
78         outb(0x87,0x2e);
79         pnp_write_config(CONSOLE_SERIAL_DEV, 0x24, 0x84 | (1 << 6));
80         w83627hf_enable_dev(CONSOLE_SERIAL_DEV, CONFIG_TTYS0_BASE);
81         uart_init();
82         console_init();
83
84         /* MOVE ME TO A BETTER LOCATION !!! */
85         /* config LPC decode for flash memory access */
86         device_t dev;
87         dev = pci_locate_device(PCI_ID(0x8086, 0x25a1), 0);
88         if (dev == PCI_DEV_INVALID) {
89                 die("Missing 6300ESB?");
90         }
91         pci_write_config32(dev, 0xe8, 0x00000000);
92         pci_write_config8(dev, 0xf0, 0x00);
93
94 #if 0
95         display_cpuid_update_microcode();
96 #endif
97 #if 0
98         print_pci_devices();
99 #endif
100 #if 1
101         enable_smbus();
102 #endif
103 #if 0
104         int i;
105         for(i = 0; i < 1; i++) {
106                 dump_spd_registers();
107         }
108 #endif
109         disable_watchdogs();
110         sdram_initialize(ARRAY_SIZE(mch), mch);
111 #if 1
112         dump_pci_device(PCI_DEV(0, 0x00, 0));
113 //      dump_bar14(PCI_DEV(0, 0x00, 0));
114 #endif
115
116 #if 0 // temporarily disabled
117         /* Check the first 1M */
118 //      ram_check(0x00000000, 0x000100000);
119 //      ram_check(0x00000000, 0x000a0000);
120         ram_check(0x00100000, 0x01000000);
121         /* check the first 1M in the 3rd Gig */
122         ram_check(0x30100000, 0x31000000);
123 #endif
124 #if 0
125         ram_check(0x00000000, 0x02000000);
126 #endif
127
128 #if 0
129         while(1) {
130                 hlt();
131         }
132 #endif
133 }
134