blob: db8cdb0bae50d956018894d5052ae42aba0686fc [file] [log] [blame]
Patrick Georgie1667822012-05-05 15:29:32 +02001#if CONFIG_K8_REV_F_SUPPORT
Yinghai Lud4b278c2006-10-04 20:46:15 +00002#define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
Yinghai Lu5f9624d2006-10-04 22:56:21 +00003#endif
Yinghai Lud4b278c2006-10-04 20:46:15 +00004
5#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +00006#include <string.h>
Yinghai Lud4b278c2006-10-04 20:46:15 +00007#include <device/pci_def.h>
8#include <device/pci_ids.h>
9#include <arch/io.h>
10#include <device/pnp_def.h>
11#include <arch/romcc_io.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000012#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000013#include <console/console.h>
Yinghai Lud4b278c2006-10-04 20:46:15 +000014#include <cpu/amd/model_fxx_rev.h>
stepan836ae292010-12-08 05:42:47 +000015#include "southbridge/amd/amd8111/early_smbus.c"
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000016#include <reset.h>
Yinghai Lud4b278c2006-10-04 20:46:15 +000017#include "northbridge/amd/amdk8/raminit.h"
Yinghai Lud4b278c2006-10-04 20:46:15 +000018#include "northbridge/amd/amdk8/reset_test.c"
Yinghai Lu5f9624d2006-10-04 22:56:21 +000019#include "cpu/x86/bist.h"
Yinghai Lud4b278c2006-10-04 20:46:15 +000020#include "lib/delay.c"
Yinghai Lud4b278c2006-10-04 20:46:15 +000021#include "northbridge/amd/amdk8/debug.c"
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000022#include "cpu/x86/mtrr/earlymtrr.c"
23#include <cpu/amd/mtrr.h>
stepan8301d832010-12-08 07:07:33 +000024#include "superio/winbond/w83627hf/early_serial.c"
Yinghai Lud4b278c2006-10-04 20:46:15 +000025#include "northbridge/amd/amdk8/setup_resource_map.c"
stepan836ae292010-12-08 05:42:47 +000026#include "southbridge/amd/amd8111/early_ctrl.c"
Yinghai Lud4b278c2006-10-04 20:46:15 +000027
28#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
29
Yinghai Lud4b278c2006-10-04 20:46:15 +000030static void memreset_setup(void)
31{
32 //GPIO on amd8111 to enable MEMRST ????
Uwe Hermann7b997052010-11-21 22:47:22 +000033 outb((1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16); //REVC_MEMRST_EN=1
34 outb((1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
Yinghai Lud4b278c2006-10-04 20:46:15 +000035}
36
Uwe Hermann7b997052010-11-21 22:47:22 +000037static void memreset(int controllers, const struct mem_controller *ctrl) { }
Yinghai Lud4b278c2006-10-04 20:46:15 +000038
39static inline void activate_spd_rom(const struct mem_controller *ctrl)
40{
41#define SMBUS_HUB 0x18
42 int ret,i;
43 unsigned device=(ctrl->channel0[0])>>8;
44 /* the very first write always get COL_STS=1 and ABRT_STS=1, so try another time*/
45 i=2;
46 do {
47 ret = smbus_write_byte(SMBUS_HUB, 0x01, device);
48 } while ((ret!=0) && (i-->0));
49
50 smbus_write_byte(SMBUS_HUB, 0x03, 0);
51}
Uwe Hermann7b997052010-11-21 22:47:22 +000052
Yinghai Lud4b278c2006-10-04 20:46:15 +000053#if 0
54static inline void change_i2c_mux(unsigned device)
55{
56#define SMBUS_HUB 0x18
57 int ret, i;
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000058 print_debug("change_i2c_mux i="); print_debug_hex8(device); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +000059 i=2;
60 do {
61 ret = smbus_write_byte(SMBUS_HUB, 0x01, device);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000062 print_debug("change_i2c_mux 1 ret="); print_debug_hex32(ret); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +000063 } while ((ret!=0) && (i-->0));
64 ret = smbus_write_byte(SMBUS_HUB, 0x03, 0);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000065 print_debug("change_i2c_mux 2 ret="); print_debug_hex32(ret); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +000066}
67#endif
68
69static inline int spd_read_byte(unsigned device, unsigned address)
70{
71 return smbus_read_byte(device, address);
72}
73
Yinghai Lu5f9624d2006-10-04 22:56:21 +000074#include "northbridge/amd/amdk8/amdk8.h"
Yinghai Lud4b278c2006-10-04 20:46:15 +000075#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000076#include "northbridge/amd/amdk8/coherent_ht.c"
Myles Watson17257032009-06-04 20:18:42 +000077#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000078#include "lib/generic_sdram.c"
Uwe Hermann7b997052010-11-21 22:47:22 +000079#include "resourcemap.c"
Yinghai Lud4b278c2006-10-04 20:46:15 +000080#include "cpu/amd/dualcore/dualcore.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000081#include <spd.h>
Uwe Hermann57b2ff82010-11-21 17:29:59 +000082#include "cpu/amd/car/post_cache_as_ram.c"
83#include "cpu/amd/model_fxx/init_cpus.c"
84#include "cpu/amd/model_fxx/fidvid.c"
Yinghai Lud4b278c2006-10-04 20:46:15 +000085
86#define RC0 ((1<<0)<<8)
87#define RC1 ((1<<1)<<8)
88#define RC2 ((1<<2)<<8)
89#define RC3 ((1<<3)<<8)
90
Patrick Georgice6fb1e2010-03-17 22:44:39 +000091void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Yinghai Lud4b278c2006-10-04 20:46:15 +000092{
93 static const uint16_t spd_addr[] = {
94 //first node
95 RC0|DIMM0, RC0|DIMM2, 0, 0,
96 RC0|DIMM1, RC0|DIMM3, 0, 0,
97#if CONFIG_MAX_PHYSICAL_CPUS > 1
98 //second node
99 RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
100 RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
101#endif
102#if CONFIG_MAX_PHYSICAL_CPUS > 2
103 // third node
104 RC2|DIMM0, RC2|DIMM2, 0, 0,
105 RC2|DIMM1, RC2|DIMM3, 0, 0,
106 // four node
107 RC3|DIMM0, RC3|DIMM2, RC3|DIMM4, RC3|DIMM6,
108 RC3|DIMM1, RC3|DIMM3, RC3|DIMM5, RC3|DIMM7,
109#endif
110
111 };
112
Patrick Georgibbc880e2012-11-20 18:20:56 +0100113 struct sys_info *sysinfo = &sysinfo_car;
Myles Watson6e235762009-09-29 14:56:15 +0000114 int needs_reset;
Yinghai Lud4b278c2006-10-04 20:46:15 +0000115 unsigned bsp_apicid = 0;
Patrick Georgi76e81522010-11-16 21:25:29 +0000116#if CONFIG_SET_FIDVID
Dan Lykowski6ef8e0f2009-01-12 16:16:08 +0000117 struct cpuid_result cpuid1;
Myles Watson6e235762009-09-29 14:56:15 +0000118#endif
Yinghai Lud4b278c2006-10-04 20:46:15 +0000119
Uwe Hermann7b997052010-11-21 22:47:22 +0000120 if (bist == 0)
Yinghai Lud4b278c2006-10-04 20:46:15 +0000121 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000122
Stefan Reinauer08670622009-06-30 15:17:49 +0000123 w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000124 console_init();
125
Stefan Reinauer08670622009-06-30 15:17:49 +0000126// dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000127
Yinghai Lud4b278c2006-10-04 20:46:15 +0000128 /* Halt if there was a built in self test failure */
129 report_bist_failure(bist);
130
Myles Watson08e0fb82010-03-22 16:33:25 +0000131 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000132
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000133 setup_mb_resource_map();
Yinghai Lud4b278c2006-10-04 20:46:15 +0000134#if 0
135 dump_pci_device(PCI_DEV(0, 0x18, 0));
136 dump_pci_device(PCI_DEV(0, 0x19, 0));
137#endif
138
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000139 print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +0000140
Stefan Reinauer08670622009-06-30 15:17:49 +0000141#if CONFIG_MEM_TRAIN_SEQ == 1
Stefan Reinauer14e22772010-04-27 06:56:47 +0000142 set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
Yinghai Lud4b278c2006-10-04 20:46:15 +0000143#endif
144 setup_coherent_ht_domain(); // routing table and start other core0
145
146 wait_all_core0_started();
Patrick Georgie1667822012-05-05 15:29:32 +0200147#if CONFIG_LOGICAL_CPUS
Yinghai Lud4b278c2006-10-04 20:46:15 +0000148 // It is said that we should start core1 after all core0 launched
Stefan Reinauer14e22772010-04-27 06:56:47 +0000149 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
Yinghai Lud4b278c2006-10-04 20:46:15 +0000150 * So here need to make sure last core0 is started, esp for two way system,
Stefan Reinauer14e22772010-04-27 06:56:47 +0000151 * (there may be apic id conflicts in that case)
Yinghai Lud4b278c2006-10-04 20:46:15 +0000152 */
153 start_other_cores();
154 wait_all_other_cores_started(bsp_apicid);
155#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000156
Yinghai Lud4b278c2006-10-04 20:46:15 +0000157 /* it will set up chains and store link pair for optimization later */
158 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
159
160#if 0
161 //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
162 needs_reset = optimize_link_coherent_ht();
163 needs_reset |= optimize_link_incoherent_ht(sysinfo);
164#endif
165
Patrick Georgi76e81522010-11-16 21:25:29 +0000166#if CONFIG_SET_FIDVID
Dan Lykowski6ef8e0f2009-01-12 16:16:08 +0000167 /* Check to see if processor is capable of changing FIDVID */
168 /* otherwise it will throw a GP# when reading FIDVID_STATUS */
169 cpuid1 = cpuid(0x80000007);
Uwe Hermann7b997052010-11-21 22:47:22 +0000170 if ((cpuid1.edx & 0x6) == 0x6) {
Yinghai Lud4b278c2006-10-04 20:46:15 +0000171
172 {
Dan Lykowski6ef8e0f2009-01-12 16:16:08 +0000173 /* Read FIDVID_STATUS */
Yinghai Lud4b278c2006-10-04 20:46:15 +0000174 msr_t msr;
175 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000176 print_debug("begin msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +0000177 }
178
179 enable_fid_change();
Yinghai Lud4b278c2006-10-04 20:46:15 +0000180 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000181 init_fidvid_bsp(bsp_apicid);
182
183 // show final fid and vid
184 {
185 msr_t msr;
186 msr=rdmsr(0xc0010042);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000187 print_debug("end msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +0000188 }
Dan Lykowski6ef8e0f2009-01-12 16:16:08 +0000189
190 } else {
191 print_debug("Changing FIDVID not supported\n");
192 }
Yinghai Lud4b278c2006-10-04 20:46:15 +0000193#endif
194
195#if 1
196 needs_reset = optimize_link_coherent_ht();
197 needs_reset |= optimize_link_incoherent_ht(sysinfo);
198
199 // fidvid change will issue one LDTSTOP and the HT change will be effective too
200 if (needs_reset) {
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000201 print_info("ht reset -\n");
Yinghai Lud4b278c2006-10-04 20:46:15 +0000202 soft_reset_x(sysinfo->sbbusn, sysinfo->sbdn);
203 }
204#endif
205 allow_all_aps_stop(bsp_apicid);
206
Yinghai Lud4b278c2006-10-04 20:46:15 +0000207 //It's the time to set ctrl in sysinfo now;
208 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000209
210 enable_smbus();
211
212#if 0
Myles Watson6e235762009-09-29 14:56:15 +0000213 int i;
Yinghai Lud4b278c2006-10-04 20:46:15 +0000214 for(i=0;i<4;i++) {
215 activate_spd_rom(&cpu[i]);
216 dump_smbus_registers();
217 }
218#endif
219
220#if 0
221 for(i=1;i<256;i<<=1) {
222 change_i2c_mux(i);
223 dump_smbus_registers();
224 }
225#endif
226
227 memreset_setup();
228
229 //do we need apci timer, tsc...., only debug need it for better output
230 /* all ap stopped? */
231// init_timer(); // Need to use TMICT to synconize FID/VID
232
233 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
234
235#if 0
236 print_pci_devices();
237#endif
238
239#if 0
240// dump_pci_devices();
241 dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
242 dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
243#endif
244
245 post_cache_as_ram(); // bsp swtich stack to ram and copy sysinfo ram now
Yinghai Lud4b278c2006-10-04 20:46:15 +0000246}