This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / src / mainboard / asus / a8n_e / cache_as_ram_auto.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 AMD
5  * (Written by Yinghai Lu <yinghailu@amd.com> for AMD)
6  * Copyright (C) 2007 Philipp Degler <pdegler@rumms.uni-mannheim.de>
7  * (Thanks to LSRA University of Mannheim for their support)
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  */
23
24 #define ASSEMBLY 1
25 #define __ROMCC__
26
27 /* Used by it8712f_enable_serial(). */
28 #define SERIAL_DEV PNP_DEV(0x2e, IT8712F_SP1)
29
30 /* Used by raminit. */
31 #define QRANK_DIMM_SUPPORT 1
32
33 /* Turn this on for SMBus debugging output. */
34 #define DEBUG_SMBUS 0
35
36 #if CONFIG_LOGICAL_CPUS == 1
37 #define SET_NB_CFG_54 1
38 #endif
39
40 #include <stdint.h>
41 #include <string.h>
42 #include <device/pci_def.h>
43 #include <arch/io.h>
44 #include <device/pnp_def.h>
45 #include <arch/romcc_io.h>
46 #include <cpu/x86/lapic.h>
47 #include "option_table.h"
48 #include "pc80/mc146818rtc_early.c"
49 #include "cpu/x86/lapic/boot_cpu.c"
50 #include "northbridge/amd/amdk8/reset_test.c"
51 #include "superio/ite/it8712f/it8712f_early_serial.c"
52
53 #if CONFIG_USE_FAILOVER_IMAGE == 0
54
55 /* Used by ck894_early_setup(). */
56 #define CK804_NUM 1
57
58 #include <cpu/amd/model_fxx_rev.h>
59 #include "pc80/serial.c"
60 #include "arch/i386/lib/console.c"
61 #include "ram/ramtest.c"
62 #include "northbridge/amd/amdk8/incoherent_ht.c"
63 #include "southbridge/nvidia/ck804/ck804_early_smbus.c"
64 #include "northbridge/amd/amdk8/raminit.h"
65 #include "cpu/amd/model_fxx/apic_timer.c"
66 #include "lib/delay.c"
67 #include "northbridge/amd/amdk8/debug.c"
68 #include "cpu/amd/mtrr/amd_earlymtrr.c"
69 #include "cpu/x86/bist.h"
70 #include "northbridge/amd/amdk8/setup_resource_map.c"
71 #include "northbridge/amd/amdk8/coherent_ht.c"
72 #include "cpu/amd/dualcore/dualcore.c"
73
74 static void memreset_setup(void)
75 {
76         /* Nothing to do. */
77 }
78
79 static void memreset(int controllers, const struct mem_controller *ctrl)
80 {
81         /* Nothing to do. */
82 }
83
84 static inline void activate_spd_rom(const struct mem_controller *ctrl)
85 {
86         /* Nothing to do. */
87 }
88
89 static inline int spd_read_byte(unsigned device, unsigned address)
90 {
91         return smbus_read_byte(device, address);
92 }
93
94 #include "northbridge/amd/amdk8/raminit.c"
95 #include "sdram/generic_sdram.c"
96 #include "southbridge/nvidia/ck804/ck804_early_setup_ss.h"
97 #include "southbridge/nvidia/ck804/ck804_early_setup.c"
98 #include "cpu/amd/car/copy_and_run.c"
99 #include "cpu/amd/car/post_cache_as_ram.c"
100 #include "cpu/amd/model_fxx/init_cpus.c"
101
102 #endif  /* CONFIG_USE_FAILOVER_IMAGE */
103
104 #if ((CONFIG_HAVE_FAILOVER_BOOT==1) && (CONFIG_USE_FAILOVER_IMAGE == 1)) \
105         || ((CONFIG_HAVE_FAILOVER_BOOT==0) && (CONFIG_USE_FALLBACK_IMAGE == 1))
106
107 #include "southbridge/nvidia/ck804/ck804_enable_rom.c"
108 #include "northbridge/amd/amdk8/early_ht.c"
109
110 static void sio_setup(void)
111 {
112         unsigned value;
113         uint32_t dword;
114         uint8_t byte;
115
116         /* Subject decoding */
117         byte = pci_read_config8(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0x7b);
118         byte |= 0x20;
119         pci_write_config8(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0x7b, byte);
120
121         /* LPC Positive Decode 0 */
122         dword = pci_read_config32(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0xa0);
123         dword |= (1 << 0) | (1 << 1);   /* Serial 0, Serial 1 */
124         pci_write_config32(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0xa0, dword);
125 }
126
127 void failover_process(unsigned long bist, unsigned long cpu_init_detectedx)
128 {
129         unsigned last_boot_normal_x = last_boot_normal();
130
131         /* Is this a CPU only reset? Or is this a secondary CPU? */
132         if ((cpu_init_detectedx) || (!boot_cpu())) {
133                 if (last_boot_normal_x) {
134                         goto normal_image;
135                 } else {
136                         goto fallback_image;
137                 }
138         }
139
140         /* Nothing special needs to be done to find bus 0 */
141         /* Allow the HT devices to be found */
142         enumerate_ht_chain();
143
144         sio_setup();
145
146         /* Setup the ck804 */
147         ck804_enable_rom();
148
149         /* Is this a deliberate reset by the BIOS? */
150         if (bios_reset_detected() && last_boot_normal_x) {
151                 goto normal_image;
152         }
153
154         /* This is the primary CPU. How should I boot? */
155         else if (do_normal_boot()) {
156                 goto normal_image;
157         } else {
158                 goto fallback_image;
159         }
160
161 normal_image:
162         __asm__ volatile ("jmp __normal_image"
163                 :                                       /* outputs */
164                 :"a" (bist), "b"(cpu_init_detectedx)    /* inputs */
165                 );
166
167 fallback_image:
168
169 #if CONFIG_HAVE_FAILOVER_BOOT == 1
170         __asm__ volatile ("jmp __fallback_image"
171                 :                                       /* outputs */
172                 :"a" (bist), "b"(cpu_init_detectedx)    /* inputs */
173                 )
174 #endif
175         ;
176 }
177
178 #endif /* ((CONFIG_HAVE_FAILOVER_BOOT==1) && (CONFIG_USE_FAILOVER_IMAGE == 1)) ... */
179
180 void real_main(unsigned long bist, unsigned long cpu_init_detectedx);
181
182 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
183 {
184 #if CONFIG_HAVE_FAILOVER_BOOT == 1
185 #if CONFIG_USE_FAILOVER_IMAGE == 1
186         failover_process(bist, cpu_init_detectedx);
187 #else
188         real_main(bist, cpu_init_detectedx);
189 #endif
190 #else
191 #if CONFIG_USE_FALLBACK_IMAGE == 1
192         failover_process(bist, cpu_init_detectedx);
193 #endif
194         real_main(bist, cpu_init_detectedx);
195 #endif
196 }
197
198 #if CONFIG_USE_FAILOVER_IMAGE == 0
199 void real_main(unsigned long bist, unsigned long cpu_init_detectedx)
200 {
201         static const uint16_t spd_addr[] = {
202                 (0xa << 3) | 0, (0xa << 3) | 2, 0, 0,
203                 (0xa << 3) | 1, (0xa << 3) | 3, 0, 0,
204 #if CONFIG_MAX_PHYSICAL_CPUS > 1
205                 (0xa << 3) | 4, (0xa << 3) | 6, 0, 0,
206                 (0xa << 3) | 5, (0xa << 3) | 7, 0, 0,
207 #endif
208         };
209
210         int needs_reset;
211         unsigned nodes, bsp_apicid = 0;
212         struct mem_controller ctrl[8];
213
214         if (bist == 0)
215                 bsp_apicid = init_cpus(cpu_init_detectedx);
216
217         it8712f_24mhz_clkin();
218         it8712f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
219         uart_init();
220         console_init();
221
222         /* Halt if there was a built in self test failure */
223         report_bist_failure(bist);
224
225 #if 0
226         dump_pci_device(PCI_DEV(0, 0x18, 0));
227 #endif
228
229         needs_reset = setup_coherent_ht_domain();
230
231         wait_all_core0_started();
232 #if CONFIG_LOGICAL_CPUS==1
233         /* It is said that we should start core1 after all core0 launched. */
234         start_other_cores();
235         wait_all_other_cores_started(bsp_apicid);
236 #endif
237
238         needs_reset |= ht_setup_chains_x();
239         needs_reset |= ck804_early_setup_x();
240
241         if (needs_reset) {
242                 print_info("ht reset -\r\n");
243                 soft_reset();
244         }
245
246         allow_all_aps_stop(bsp_apicid);
247
248         nodes = get_nodes();
249         /* It's the time to set ctrl now. */
250         fill_mem_ctrl(nodes, ctrl, spd_addr);
251
252         enable_smbus();
253
254 #if 0
255         dump_spd_registers(&ctrl[0]);
256         dump_smbus_registers();
257 #endif
258
259         memreset_setup();
260         sdram_initialize(nodes, ctrl);
261
262 #if 0
263         print_pci_devices();
264         dump_pci_devices();
265 #endif
266
267         post_cache_as_ram();
268 }
269 #endif /* CONFIG_USE_FAILOVER_IMAGE */