Re-integrate "USE_OPTION_TABLE" code.
[coreboot.git] / src / mainboard / newisys / khepri / romstage.c
1 /*
2  * This code is derived from the Tyan s2882 romstage.c
3  * Adapted by Stefan Reinauer <stepan@coresystems.de>
4  * Additional (C) 2007 coresystems GmbH
5  */
6
7
8 #include <stdint.h>
9 #include <string.h>
10 #include <device/pci_def.h>
11 #include <arch/io.h>
12 #include <device/pnp_def.h>
13 #include <arch/romcc_io.h>
14 #include <cpu/x86/lapic.h>
15 #include <pc80/mc146818rtc.h>
16 #include <console/console.h>
17 #include "lib/ramtest.c"
18
19 #include <cpu/amd/model_fxx_rev.h>
20
21 #include "northbridge/amd/amdk8/incoherent_ht.c"
22 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
23 #include "northbridge/amd/amdk8/raminit.h"
24 #include "cpu/amd/model_fxx/apic_timer.c"
25 #include "lib/delay.c"
26
27 #include "cpu/x86/lapic/boot_cpu.c"
28 #include "northbridge/amd/amdk8/reset_test.c"
29 #include "northbridge/amd/amdk8/debug.c"
30 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
31
32 #include "cpu/x86/mtrr/earlymtrr.c"
33 #include "cpu/x86/bist.h"
34
35 #include "northbridge/amd/amdk8/setup_resource_map.c"
36
37 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
38
39 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
40
41 static void memreset_setup(void)
42 {
43         if (is_cpu_pre_c0()) {
44                 /* Set the memreset low */
45                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 28);
46                 /* Ensure the BIOS has control of the memory lines */
47                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 29);
48         }
49         else {
50                 /* Ensure the CPU has controll of the memory lines */
51                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 29);
52         }
53 }
54
55 static void memreset(int controllers, const struct mem_controller *ctrl)
56 {
57         if (is_cpu_pre_c0()) {
58                 udelay(800);
59                 /* Set memreset_high */
60                 outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 28);
61                 udelay(90);
62         }
63 }
64
65 static inline void activate_spd_rom(const struct mem_controller *ctrl)
66 {
67         /* nothing to do */
68 }
69
70 static inline int spd_read_byte(unsigned device, unsigned address)
71 {
72         return smbus_read_byte(device, address);
73 }
74
75 #define QRANK_DIMM_SUPPORT 1
76
77 #include "northbridge/amd/amdk8/raminit.c"
78 #include "northbridge/amd/amdk8/coherent_ht.c"
79 #include "lib/generic_sdram.c"
80
81  /* newisys khepri does not want the default */
82 #include "resourcemap.c"
83
84 #if CONFIG_LOGICAL_CPUS==1
85 #define SET_NB_CFG_54 1
86 #endif
87 #include "cpu/amd/dualcore/dualcore.c"
88
89
90
91 #include "cpu/amd/car/post_cache_as_ram.c"
92
93 #include "cpu/amd/model_fxx/init_cpus.c"
94
95 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
96 #include "northbridge/amd/amdk8/early_ht.c"
97
98 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
99 {
100         static const uint16_t spd_addr [] = {
101                         (0xa<<3)|0, (0xa<<3)|2, 0, 0,
102                         (0xa<<3)|1, (0xa<<3)|3, 0, 0,
103 #if CONFIG_MAX_PHYSICAL_CPUS > 1
104                         (0xa<<3)|4, (0xa<<3)|6, 0, 0,
105                         (0xa<<3)|5, (0xa<<3)|7, 0, 0,
106 #endif
107         };
108
109         int needs_reset;
110         unsigned bsp_apicid = 0;
111
112         struct mem_controller ctrl[8];
113         unsigned nodes;
114
115         if (!cpu_init_detectedx && boot_cpu()) {
116                 /* Nothing special needs to be done to find bus 0 */
117                 /* Allow the HT devices to be found */
118
119                 enumerate_ht_chain();
120
121                 /* Setup the amd8111 */
122                 amd8111_enable_rom();
123         }
124
125         if (bist == 0) {
126                 bsp_apicid = init_cpus(cpu_init_detectedx);
127         }
128
129 //      post_code(0x32);
130
131         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
132         uart_init();
133         console_init();
134
135 //      dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
136
137         /* Halt if there was a built in self test failure */
138         report_bist_failure(bist);
139
140         setup_khepri_resource_map();
141 #if 0
142         dump_pci_device(PCI_DEV(0, 0x18, 0));
143         dump_pci_device(PCI_DEV(0, 0x19, 0));
144 #endif
145
146         needs_reset = setup_coherent_ht_domain();
147
148         wait_all_core0_started();
149 #if CONFIG_LOGICAL_CPUS==1
150         // It is said that we should start core1 after all core0 launched
151         start_other_cores();
152         wait_all_other_cores_started(bsp_apicid);
153 #endif
154
155         needs_reset |= ht_setup_chains_x();
156
157         if (needs_reset) {
158                 print_info("ht reset -\n");
159                 soft_reset();
160         }
161
162         allow_all_aps_stop(bsp_apicid);
163
164         nodes = get_nodes();
165         //It's the time to set ctrl now;
166         fill_mem_ctrl(nodes, ctrl, spd_addr);
167
168         enable_smbus();
169
170         memreset_setup();
171         sdram_initialize(nodes, ctrl);
172
173 #if 0
174         dump_pci_devices();
175 #endif
176
177         post_cache_as_ram();
178
179 }
180