blob: dd816e614d230e91f405475a2b27ccceba0e9a92 [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
Paul Menzela46a7122013-02-23 18:37:27 +010023 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
bxshifaea4c52006-11-02 16:02:33 +000024 */
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>
bxshifaea4c52006-11-02 16:02:33 +000032#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000033#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000034#include <console/console.h>
bxshifaea4c52006-11-02 16:02:33 +000035#include <cpu/amd/model_fxx_rev.h>
stepan836ae292010-12-08 05:42:47 +000036#include "southbridge/broadcom/bcm5785/early_smbus.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110037#include <northbridge/amd/amdk8/raminit.h>
Edward O'Callaghanebe3a7a2015-01-05 00:27:54 +110038#include <delay.h>
Stefan Reinauerc51dc442010-04-07 01:44:04 +000039#include <reset.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110040#include <cpu/x86/lapic.h>
bxshifaea4c52006-11-02 16:02:33 +000041#include "northbridge/amd/amdk8/reset_test.c"
42#include "northbridge/amd/amdk8/debug.c"
Edward O'Callaghanb8f05d42015-01-04 16:17:54 +110043#include <superio/nsc/pc87417/pc87417.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110044#include <cpu/x86/bist.h>
bxshifaea4c52006-11-02 16:02:33 +000045#include "northbridge/amd/amdk8/setup_resource_map.c"
stepan836ae292010-12-08 05:42:47 +000046#include "southbridge/broadcom/bcm5785/early_setup.c"
bxshifaea4c52006-11-02 16:02:33 +000047
48#define SERIAL_DEV PNP_DEV(0x2e, PC87417_SP1)
49#define RTC_DEV PNP_DEV(0x2e, PC87417_RTC)
bxshifaea4c52006-11-02 16:02:33 +000050
Uwe Hermann7b997052010-11-21 22:47:22 +000051static void memreset(int controllers, const struct mem_controller *ctrl) { }
bxshifaea4c52006-11-02 16:02:33 +000052
53static inline void activate_spd_rom(const struct mem_controller *ctrl)
54{
55#define SMBUS_SWITCH1 0x70
56#define SMBUS_SWITCH2 0x72
57 unsigned device = (ctrl->channel0[0]) >> 8;
58 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
59 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
60}
61
bxshifaea4c52006-11-02 16:02:33 +000062static inline int spd_read_byte(unsigned device, unsigned address)
63{
64 return smbus_read_byte(device, address);
65}
66
Edward O'Callaghan77757c22015-01-04 21:33:39 +110067#include <northbridge/amd/amdk8/f.h>
bxshifaea4c52006-11-02 16:02:33 +000068#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000069#include "northbridge/amd/amdk8/coherent_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000070#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000071#include "lib/generic_sdram.c"
Uwe Hermann7b997052010-11-21 22:47:22 +000072#include "resourcemap.c"
bxshifaea4c52006-11-02 16:02:33 +000073#include "cpu/amd/dualcore/dualcore.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000074#include <spd.h>
Uwe Hermann57b2ff82010-11-21 17:29:59 +000075#include "cpu/amd/model_fxx/init_cpus.c"
76#include "cpu/amd/model_fxx/fidvid.c"
77#include "northbridge/amd/amdk8/early_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000078
79#define RC0 (0x10<<8)
80#define RC1 (0x01<<8)
81
bxshifaea4c52006-11-02 16:02:33 +000082void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
83{
bxshifaea4c52006-11-02 16:02:33 +000084 static const uint16_t spd_addr[] = {
Uwe Hermann6dc92f02010-11-21 11:36:03 +000085 //first node
86 RC0|DIMM0, RC0|DIMM2, RC0|DIMM4, RC0|DIMM6,
87 RC0|DIMM1, RC0|DIMM3, RC0|DIMM5, RC0|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +000088 //second node
89 RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
90 RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +000091 };
92
Patrick Georgibbc880e2012-11-20 18:20:56 +010093 struct sys_info *sysinfo = &sysinfo_car;
bxshifaea4c52006-11-02 16:02:33 +000094
95 int needs_reset;
96 unsigned bsp_apicid = 0;
97
Patrick Georgi2bd91002010-03-18 16:46:50 +000098 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +000099 /* Nothing special needs to be done to find bus 0 */
100 /* Allow the HT devices to be found */
Patrick Georgi776b85b2010-03-18 16:18:58 +0000101 enumerate_ht_chain();
Patrick Georgi776b85b2010-03-18 16:18:58 +0000102 bcm5785_enable_lpc();
Patrick Georgi776b85b2010-03-18 16:18:58 +0000103 //enable RTC
104 pc87417_enable_dev(RTC_DEV);
105 }
106
Uwe Hermann7b997052010-11-21 22:47:22 +0000107 if (bist == 0)
bxshifaea4c52006-11-02 16:02:33 +0000108 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
bxshifaea4c52006-11-02 16:02:33 +0000109
Uwe Hermann7b997052010-11-21 22:47:22 +0000110 pc87417_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
bxshifaea4c52006-11-02 16:02:33 +0000111 console_init();
112
Stefan Reinauer08670622009-06-30 15:17:49 +0000113// 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 +0000114
115 /* Halt if there was a built in self test failure */
116 report_bist_failure(bist);
117
Uwe Hermann7b997052010-11-21 22:47:22 +0000118 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
bxshifaea4c52006-11-02 16:02:33 +0000119
120 setup_ms9185_resource_map();
121#if 0
Uwe Hermann7b997052010-11-21 22:47:22 +0000122 dump_pci_device(PCI_DEV(0, 0x18, 0));
bxshifaea4c52006-11-02 16:02:33 +0000123 dump_pci_device(PCI_DEV(0, 0x19, 0));
124#endif
125
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000126 print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000127
128 setup_coherent_ht_domain();
129
130 wait_all_core0_started();
Patrick Georgie1667822012-05-05 15:29:32 +0200131#if CONFIG_LOGICAL_CPUS
bxshifaea4c52006-11-02 16:02:33 +0000132 // It is said that we should start core1 after all core0 launched
133 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
134 * So here need to make sure last core0 is started, esp for two way system,
135 * (there may be apic id conflicts in that case)
136 */
137 start_other_cores();
138//bx_a010- wait_all_other_cores_started(bsp_apicid);
139#endif
140
141 /* it will set up chains and store link pair for optimization later */
Uwe Hermann7b997052010-11-21 22:47:22 +0000142 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
bxshifaea4c52006-11-02 16:02:33 +0000143
144 bcm5785_early_setup();
145
bxshifaea4c52006-11-02 16:02:33 +0000146#if 0
147 //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
148 needs_reset = optimize_link_coherent_ht();
149 needs_reset |= optimize_link_incoherent_ht(sysinfo);
150#endif
151
Patrick Georgi76e81522010-11-16 21:25:29 +0000152#if CONFIG_SET_FIDVID
bxshifaea4c52006-11-02 16:02:33 +0000153 {
154 msr_t msr;
155 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000156 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 +0000157 }
Uwe Hermann7b997052010-11-21 22:47:22 +0000158 enable_fid_change();
159 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
bxshifaea4c52006-11-02 16:02:33 +0000160 init_fidvid_bsp(bsp_apicid);
bxshifaea4c52006-11-02 16:02:33 +0000161 // show final fid and vid
162 {
163 msr_t msr;
164 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000165 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 +0000166 }
167#endif
168
169#if 1
170 needs_reset = optimize_link_coherent_ht();
171 needs_reset |= optimize_link_incoherent_ht(sysinfo);
172
173 // fidvid change will issue one LDTSTOP and the HT change will be effective too
174 if (needs_reset) {
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000175 print_info("ht reset -\n");
bxshifaea4c52006-11-02 16:02:33 +0000176 soft_reset();
177 }
178#endif
179 allow_all_aps_stop(bsp_apicid);
180
181 //It's the time to set ctrl in sysinfo now;
182 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
183
184 enable_smbus();
185
186#if 0
187 int i;
188 for(i=0;i<2;i++) {
189 activate_spd_rom(sysinfo->ctrl+i);
190 dump_smbus_registers();
191 }
192#endif
193
bxshifaea4c52006-11-02 16:02:33 +0000194 //do we need apci timer, tsc...., only debug need it for better output
195 /* all ap stopped? */
196// init_timer(); // Need to use TMICT to synconize FID/VID
197
198 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
199
200#if 0
201 print_pci_devices();
202#endif
203
204#if 0
205// dump_pci_devices();
206 dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
207 dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
208#endif
209
210 post_cache_as_ram();
bxshifaea4c52006-11-02 16:02:33 +0000211}