blob: 5c52dd29ddfe5d5a083f92d88374dc101a6aa507 [file] [log] [blame]
bxshifaea4c52006-11-02 16:02:33 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
bxshifaea4c52006-11-02 16:02:33 +00003 *
4 * Copyright (C) 2006 Tyan
5 * Copyright (C) 2006 AMD
6 * Written by Yinghai Lu <yinghailu@gmail.com> for Tyan and AMD.
7 *
8 * Copyright (C) 2006 MSI
9 * Written by bxshi <bingxunshi@gmail.com> for MSI.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
bxshifaea4c52006-11-02 16:02:33 +000026#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000027#include <string.h>
bxshifaea4c52006-11-02 16:02:33 +000028#include <device/pci_def.h>
29#include <device/pci_ids.h>
30#include <arch/io.h>
31#include <device/pnp_def.h>
32#include <arch/romcc_io.h>
33#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000034#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000035#include <console/console.h>
bxshifaea4c52006-11-02 16:02:33 +000036#include <cpu/amd/model_fxx_rev.h>
37#include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
Patrick Georgi9d4212f2010-10-26 15:51:57 +000038#include "southbridge/broadcom/bcm5785/bcm5785_enable_rom.c"
bxshifaea4c52006-11-02 16:02:33 +000039#include "northbridge/amd/amdk8/raminit.h"
40#include "cpu/amd/model_fxx/apic_timer.c"
41#include "lib/delay.c"
Stefan Reinauerc51dc442010-04-07 01:44:04 +000042#include <reset.h>
bxshifaea4c52006-11-02 16:02:33 +000043#include "cpu/x86/lapic/boot_cpu.c"
44#include "northbridge/amd/amdk8/reset_test.c"
45#include "northbridge/amd/amdk8/debug.c"
46#include "superio/nsc/pc87417/pc87417_early_serial.c"
Stefan Reinauer5d3dee82010-04-14 11:40:34 +000047#include "cpu/x86/mtrr/earlymtrr.c"
bxshifaea4c52006-11-02 16:02:33 +000048#include "cpu/x86/bist.h"
bxshifaea4c52006-11-02 16:02:33 +000049#include "northbridge/amd/amdk8/setup_resource_map.c"
Uwe Hermann57b2ff82010-11-21 17:29:59 +000050#include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
bxshifaea4c52006-11-02 16:02:33 +000051
52#define SERIAL_DEV PNP_DEV(0x2e, PC87417_SP1)
53#define RTC_DEV PNP_DEV(0x2e, PC87417_RTC)
bxshifaea4c52006-11-02 16:02:33 +000054
55static void memreset(int controllers, const struct mem_controller *ctrl)
56{
57}
58
59static inline void activate_spd_rom(const struct mem_controller *ctrl)
60{
61#define SMBUS_SWITCH1 0x70
62#define SMBUS_SWITCH2 0x72
63 unsigned device = (ctrl->channel0[0]) >> 8;
64 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
65 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
66}
67
68#if 0
69static inline void change_i2c_mux(unsigned device)
70{
71#define SMBUS_SWITCH1 0x70
72#define SMBUS_SWITCH2 0x72
73 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
74 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
75}
76#endif
77
bxshifaea4c52006-11-02 16:02:33 +000078static inline int spd_read_byte(unsigned device, unsigned address)
79{
80 return smbus_read_byte(device, address);
81}
82
83#include "northbridge/amd/amdk8/amdk8_f.h"
bxshifaea4c52006-11-02 16:02:33 +000084#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000085#include "northbridge/amd/amdk8/coherent_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000086#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000087#include "lib/generic_sdram.c"
Uwe Hermann57b2ff82010-11-21 17:29:59 +000088#include "resourcemap.c" /* msi does not want the default */
bxshifaea4c52006-11-02 16:02:33 +000089#include "cpu/amd/dualcore/dualcore.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000090#include <spd.h>
Uwe Hermann57b2ff82010-11-21 17:29:59 +000091#include "cpu/amd/car/post_cache_as_ram.c"
92#include "cpu/amd/model_fxx/init_cpus.c"
93#include "cpu/amd/model_fxx/fidvid.c"
94#include "northbridge/amd/amdk8/early_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000095
96#define RC0 (0x10<<8)
97#define RC1 (0x01<<8)
98
bxshifaea4c52006-11-02 16:02:33 +000099void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
100{
bxshifaea4c52006-11-02 16:02:33 +0000101 static const uint16_t spd_addr[] = {
Uwe Hermann6dc92f02010-11-21 11:36:03 +0000102 //first node
103 RC0|DIMM0, RC0|DIMM2, RC0|DIMM4, RC0|DIMM6,
104 RC0|DIMM1, RC0|DIMM3, RC0|DIMM5, RC0|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +0000105 //second node
106 RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
107 RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +0000108 };
109
Stefan Reinauerc51dc442010-04-07 01:44:04 +0000110 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE +
111 CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
bxshifaea4c52006-11-02 16:02:33 +0000112
113 int needs_reset;
114 unsigned bsp_apicid = 0;
115
Patrick Georgi2bd91002010-03-18 16:46:50 +0000116 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +0000117 /* Nothing special needs to be done to find bus 0 */
118 /* Allow the HT devices to be found */
119
120 enumerate_ht_chain();
121
122 bcm5785_enable_rom();
123
124 bcm5785_enable_lpc();
125
126 //enable RTC
127 pc87417_enable_dev(RTC_DEV);
128 }
129
bxshifaea4c52006-11-02 16:02:33 +0000130 if (bist == 0) {
131 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
132 }
133
134// post_code(0x32);
135
Stefan Reinauer08670622009-06-30 15:17:49 +0000136 pc87417_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
bxshifaea4c52006-11-02 16:02:33 +0000137 uart_init();
138 console_init();
139
Stefan Reinauer08670622009-06-30 15:17:49 +0000140// dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
bxshifaea4c52006-11-02 16:02:33 +0000141
142 /* Halt if there was a built in self test failure */
143 report_bist_failure(bist);
144
Myles Watson08e0fb82010-03-22 16:33:25 +0000145 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
bxshifaea4c52006-11-02 16:02:33 +0000146
147 setup_ms9185_resource_map();
148#if 0
149 dump_pci_device(PCI_DEV(0, 0x18, 0));
150 dump_pci_device(PCI_DEV(0, 0x19, 0));
151#endif
152
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000153 print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000154
155 setup_coherent_ht_domain();
156
157 wait_all_core0_started();
158#if CONFIG_LOGICAL_CPUS==1
159 // It is said that we should start core1 after all core0 launched
160 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
161 * So here need to make sure last core0 is started, esp for two way system,
162 * (there may be apic id conflicts in that case)
163 */
164 start_other_cores();
165//bx_a010- wait_all_other_cores_started(bsp_apicid);
166#endif
167
168 /* it will set up chains and store link pair for optimization later */
169 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
170
171 bcm5785_early_setup();
172
bxshifaea4c52006-11-02 16:02:33 +0000173#if 0
174 //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
175 needs_reset = optimize_link_coherent_ht();
176 needs_reset |= optimize_link_incoherent_ht(sysinfo);
177#endif
178
Patrick Georgi76e81522010-11-16 21:25:29 +0000179#if CONFIG_SET_FIDVID
bxshifaea4c52006-11-02 16:02:33 +0000180
181 {
182 msr_t msr;
183 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000184 print_debug("begin msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000185
186 }
187
188 enable_fid_change();
189
190 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
191
192 init_fidvid_bsp(bsp_apicid);
193
194 // show final fid and vid
195 {
196 msr_t msr;
197 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000198 print_debug("end msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000199
200 }
201#endif
202
203#if 1
204 needs_reset = optimize_link_coherent_ht();
205 needs_reset |= optimize_link_incoherent_ht(sysinfo);
206
207 // fidvid change will issue one LDTSTOP and the HT change will be effective too
208 if (needs_reset) {
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000209 print_info("ht reset -\n");
bxshifaea4c52006-11-02 16:02:33 +0000210 soft_reset();
211 }
212#endif
213 allow_all_aps_stop(bsp_apicid);
214
215 //It's the time to set ctrl in sysinfo now;
216 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
217
218 enable_smbus();
219
220#if 0
221 int i;
222 for(i=0;i<2;i++) {
223 activate_spd_rom(sysinfo->ctrl+i);
224 dump_smbus_registers();
225 }
226#endif
227
228#if 0
229 int i;
230 for(i=1;i<256;i<<=1) {
231 change_i2c_mux(i);
232 dump_smbus_registers();
233 }
234#endif
235
bxshifaea4c52006-11-02 16:02:33 +0000236 //do we need apci timer, tsc...., only debug need it for better output
237 /* all ap stopped? */
238// init_timer(); // Need to use TMICT to synconize FID/VID
239
240 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
241
242#if 0
243 print_pci_devices();
244#endif
245
246#if 0
247// dump_pci_devices();
248 dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
249 dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
250#endif
251
252 post_cache_as_ram();
bxshifaea4c52006-11-02 16:02:33 +0000253}