182fab8a0b958c12d18bc92b6d9475e5b41a38d1
[coreboot.git] / src / mainboard / amd / pistachio / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #define RAMINIT_SYSINFO 1
21 #define SET_FIDVID 1
22 #define QRANK_DIMM_SUPPORT 1
23 #if CONFIG_LOGICAL_CPUS==1
24 #define SET_NB_CFG_54 1
25 #endif
26
27 #define DIMM0 0x50
28 #define DIMM1 0x51
29
30 #include <stdint.h>
31 #include <string.h>
32 #include <device/pci_def.h>
33 #include <arch/io.h>
34 #include <device/pnp_def.h>
35 #include <arch/romcc_io.h>
36 #include <cpu/x86/lapic.h>
37 #include <pc80/mc146818rtc.h>
38 #include <console/console.h>
39
40 #include <cpu/amd/model_fxx_rev.h>
41 #include "northbridge/amd/amdk8/raminit.h"
42 #include "cpu/amd/model_fxx/apic_timer.c"
43 #include "lib/delay.c"
44
45 #include "cpu/x86/lapic/boot_cpu.c"
46 #include "northbridge/amd/amdk8/reset_test.c"
47 #include "superio/ite/it8712f/it8712f_early_serial.c"
48
49 #include "cpu/x86/mtrr/earlymtrr.c"
50 #include "cpu/x86/bist.h"
51
52 #include "northbridge/amd/amdk8/setup_resource_map.c"
53
54 #include "southbridge/amd/rs690/rs690_early_setup.c"
55 #include "southbridge/amd/sb600/sb600_early_setup.c"
56 #include "northbridge/amd/amdk8/debug.c" /* After sb600_early_setup.c! */
57
58 /* CAN'T BE REMOVED! memory bus reset hook for some broken amd k8 boards. */
59 static void memreset(int controllers, const struct mem_controller *ctrl)
60 {
61 }
62
63 /* called in raminit_f.c */
64 static inline void activate_spd_rom(const struct mem_controller *ctrl)
65 {
66 }
67
68 /*called in raminit_f.c */
69 static inline int spd_read_byte(u32 device, u32 address)
70 {
71         return smbus_read_byte(device, address);
72 }
73
74 #include "northbridge/amd/amdk8/amdk8.h"
75 #include "northbridge/amd/amdk8/incoherent_ht.c"
76 #include "northbridge/amd/amdk8/raminit_f.c"
77 #include "northbridge/amd/amdk8/coherent_ht.c"
78 #include "lib/generic_sdram.c"
79 #include "resourcemap.c"
80
81 #include "cpu/amd/dualcore/dualcore.c"
82
83
84 #include "cpu/amd/car/post_cache_as_ram.c"
85
86 #include "cpu/amd/model_fxx/init_cpus.c"
87
88 #include "cpu/amd/model_fxx/fidvid.c"
89
90 #include "northbridge/amd/amdk8/early_ht.c"
91
92 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
93 {
94         static const u16 spd_addr[] = { DIMM0, 0, 0, 0, DIMM1, 0, 0, 0, };
95         int needs_reset = 0;
96         u32 bsp_apicid = 0;
97         msr_t msr;
98         struct cpuid_result cpuid1;
99         struct sys_info *sysinfo =
100             (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE -
101                                 CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
102
103         if (!cpu_init_detectedx && boot_cpu()) {
104                 /* Nothing special needs to be done to find bus 0 */
105                 /* Allow the HT devices to be found */
106                 enumerate_ht_chain();
107
108                 sb600_lpc_port80();
109                 /* sb600_pci_port80(); */
110         }
111
112         if (bist == 0) {
113                 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
114         }
115
116         enable_rs690_dev8();
117         sb600_lpc_init();
118
119         /* Pistachio used a FPGA to enable serial debug instead of a SIO
120          * and it doens't require any special setup. */
121         uart_init();
122         console_init();
123
124         post_code(0x03);
125
126         /* Halt if there was a built in self test failure */
127         report_bist_failure(bist);
128         printk(BIOS_DEBUG, "bsp_apicid=0x%x\n", bsp_apicid);
129
130         setup_pistachio_resource_map();
131
132         setup_coherent_ht_domain();
133
134 #if CONFIG_LOGICAL_CPUS==1
135         /* It is said that we should start core1 after all core0 launched */
136         wait_all_core0_started();
137         start_other_cores();
138 #endif
139         wait_all_aps_started(bsp_apicid);
140
141         /* it will set up chains and store link pair for optimization later,
142          * it will init sblnk and sbbusn, nodes, sbdn */
143         ht_setup_chains_x(sysinfo);
144
145         /* run _early_setup before soft-reset. */
146         rs690_early_setup();
147         sb600_early_setup();
148
149         post_code(0x04);
150
151         /* Check to see if processor is capable of changing FIDVID  */
152         /* otherwise it will throw a GP# when reading FIDVID_STATUS */
153         cpuid1 = cpuid(0x80000007);
154         if( (cpuid1.edx & 0x6) == 0x6 ) {
155
156                 /* Read FIDVID_STATUS */
157                 msr=rdmsr(0xc0010042);
158                 printk(BIOS_DEBUG, "begin msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
159
160                 enable_fid_change();
161                 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
162                 init_fidvid_bsp(bsp_apicid);
163
164                 /* show final fid and vid */
165                 msr=rdmsr(0xc0010042);
166                 printk(BIOS_DEBUG, "end msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
167
168         } else {
169                 printk(BIOS_DEBUG, "Changing FIDVID not supported\n");
170         }
171
172         post_code(0x05);
173
174         needs_reset = optimize_link_coherent_ht();
175         needs_reset |= optimize_link_incoherent_ht(sysinfo);
176         rs690_htinit();
177         printk(BIOS_DEBUG, "needs_reset=0x%x\n", needs_reset);
178
179         post_code(0x06);
180
181         if (needs_reset) {
182                 print_info("ht reset -\n");
183                 soft_reset();
184         }
185
186         allow_all_aps_stop(bsp_apicid);
187
188         /* It's the time to set ctrl now; */
189         printk(BIOS_DEBUG, "sysinfo->nodes: %2x  sysinfo->ctrl: %p  spd_addr: %p\n",
190                      sysinfo->nodes, sysinfo->ctrl, spd_addr);
191         fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
192
193         post_code(0x07);
194
195         sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
196
197         post_code(0x08);
198
199         rs690_before_pci_init();
200         sb600_before_pci_init();
201
202         post_cache_as_ram();
203 }
204