blob: db5242926ab64b9e409e8194ac6db20749fe9983 [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.
bxshifaea4c52006-11-02 16:02:33 +000020 */
21
bxshifaea4c52006-11-02 16:02:33 +000022#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000023#include <string.h>
bxshifaea4c52006-11-02 16:02:33 +000024#include <device/pci_def.h>
25#include <device/pci_ids.h>
26#include <arch/io.h>
27#include <device/pnp_def.h>
bxshifaea4c52006-11-02 16:02:33 +000028#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000029#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000030#include <console/console.h>
bxshifaea4c52006-11-02 16:02:33 +000031#include <cpu/amd/model_fxx_rev.h>
stepan836ae292010-12-08 05:42:47 +000032#include "southbridge/broadcom/bcm5785/early_smbus.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <northbridge/amd/amdk8/raminit.h>
Edward O'Callaghanebe3a7a2015-01-05 00:27:54 +110034#include <delay.h>
Stefan Reinauerc51dc442010-04-07 01:44:04 +000035#include <reset.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110036#include <cpu/x86/lapic.h>
bxshifaea4c52006-11-02 16:02:33 +000037#include "northbridge/amd/amdk8/reset_test.c"
38#include "northbridge/amd/amdk8/debug.c"
Edward O'Callaghanb8f05d42015-01-04 16:17:54 +110039#include <superio/nsc/pc87417/pc87417.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110040#include <cpu/x86/bist.h>
bxshifaea4c52006-11-02 16:02:33 +000041#include "northbridge/amd/amdk8/setup_resource_map.c"
42
43#define SERIAL_DEV PNP_DEV(0x2e, PC87417_SP1)
44#define RTC_DEV PNP_DEV(0x2e, PC87417_RTC)
bxshifaea4c52006-11-02 16:02:33 +000045
Damien Zammit75a3d1f2016-11-28 00:29:10 +110046unsigned get_sbdn(unsigned bus);
47
Uwe Hermann7b997052010-11-21 22:47:22 +000048static void memreset(int controllers, const struct mem_controller *ctrl) { }
bxshifaea4c52006-11-02 16:02:33 +000049
50static inline void activate_spd_rom(const struct mem_controller *ctrl)
51{
52#define SMBUS_SWITCH1 0x70
53#define SMBUS_SWITCH2 0x72
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +020054 unsigned device = (ctrl->channel0[0]) >> 8;
55 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
56 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
bxshifaea4c52006-11-02 16:02:33 +000057}
58
bxshifaea4c52006-11-02 16:02:33 +000059static inline int spd_read_byte(unsigned device, unsigned address)
60{
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +020061 return smbus_read_byte(device, address);
bxshifaea4c52006-11-02 16:02:33 +000062}
63
Damien Zammit75a3d1f2016-11-28 00:29:10 +110064#include "southbridge/broadcom/bcm5785/early_setup.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110065#include <northbridge/amd/amdk8/f.h>
bxshifaea4c52006-11-02 16:02:33 +000066#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000067#include "northbridge/amd/amdk8/coherent_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000068#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000069#include "lib/generic_sdram.c"
Uwe Hermann7b997052010-11-21 22:47:22 +000070#include "resourcemap.c"
bxshifaea4c52006-11-02 16:02:33 +000071#include "cpu/amd/dualcore/dualcore.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000072#include <spd.h>
Uwe Hermann57b2ff82010-11-21 17:29:59 +000073#include "cpu/amd/model_fxx/init_cpus.c"
74#include "cpu/amd/model_fxx/fidvid.c"
75#include "northbridge/amd/amdk8/early_ht.c"
bxshifaea4c52006-11-02 16:02:33 +000076
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060077#define RC0 (0x10 << 8)
78#define RC1 (0x01 << 8)
bxshifaea4c52006-11-02 16:02:33 +000079
bxshifaea4c52006-11-02 16:02:33 +000080void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
81{
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +020082 static const uint16_t spd_addr[] = {
83 //first node
84 RC0|DIMM0, RC0|DIMM2, RC0|DIMM4, RC0|DIMM6,
85 RC0|DIMM1, RC0|DIMM3, RC0|DIMM5, RC0|DIMM7,
86 //second node
87 RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
88 RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
89 };
bxshifaea4c52006-11-02 16:02:33 +000090
Patrick Georgibbc880e2012-11-20 18:20:56 +010091 struct sys_info *sysinfo = &sysinfo_car;
bxshifaea4c52006-11-02 16:02:33 +000092
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +020093 int needs_reset;
94 unsigned bsp_apicid = 0;
bxshifaea4c52006-11-02 16:02:33 +000095
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +020096 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +000097 /* Nothing special needs to be done to find bus 0 */
98 /* Allow the HT devices to be found */
Patrick Georgi776b85b2010-03-18 16:18:58 +000099 enumerate_ht_chain();
Patrick Georgi776b85b2010-03-18 16:18:58 +0000100 bcm5785_enable_lpc();
Patrick Georgi776b85b2010-03-18 16:18:58 +0000101 //enable RTC
102 pc87417_enable_dev(RTC_DEV);
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200103 }
Patrick Georgi776b85b2010-03-18 16:18:58 +0000104
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200105 if (bist == 0)
106 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
bxshifaea4c52006-11-02 16:02:33 +0000107
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200108 pc87417_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
109 console_init();
bxshifaea4c52006-11-02 16:02:33 +0000110
Stefan Reinauer08670622009-06-30 15:17:49 +0000111// 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 +0000112
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200113 /* Halt if there was a built in self test failure */
114 report_bist_failure(bist);
bxshifaea4c52006-11-02 16:02:33 +0000115
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200116 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
bxshifaea4c52006-11-02 16:02:33 +0000117
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200118 setup_ms9185_resource_map();
bxshifaea4c52006-11-02 16:02:33 +0000119#if 0
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200120 dump_pci_device(PCI_DEV(0, 0x18, 0));
121 dump_pci_device(PCI_DEV(0, 0x19, 0));
bxshifaea4c52006-11-02 16:02:33 +0000122#endif
123
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200124 printk(BIOS_DEBUG, "bsp_apicid=%02x\n", bsp_apicid);
bxshifaea4c52006-11-02 16:02:33 +0000125
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200126 setup_coherent_ht_domain();
bxshifaea4c52006-11-02 16:02:33 +0000127
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200128 wait_all_core0_started();
Patrick Georgie1667822012-05-05 15:29:32 +0200129#if CONFIG_LOGICAL_CPUS
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200130 // It is said that we should start core1 after all core0 launched
131 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
132 * So here need to make sure last core0 is started, esp for two way system,
133 * (there may be apic id conflicts in that case)
134 */
135 start_other_cores();
bxshifaea4c52006-11-02 16:02:33 +0000136//bx_a010- wait_all_other_cores_started(bsp_apicid);
137#endif
138
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200139 /* it will set up chains and store link pair for optimization later */
140 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
bxshifaea4c52006-11-02 16:02:33 +0000141
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200142 bcm5785_early_setup();
bxshifaea4c52006-11-02 16:02:33 +0000143
bxshifaea4c52006-11-02 16:02:33 +0000144#if 0
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200145 //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
146 needs_reset = optimize_link_coherent_ht();
147 needs_reset |= optimize_link_incoherent_ht(sysinfo);
bxshifaea4c52006-11-02 16:02:33 +0000148#endif
149
Patrick Georgi76e81522010-11-16 21:25:29 +0000150#if CONFIG_SET_FIDVID
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200151 {
152 msr_t msr;
153 msr = rdmsr(0xc0010042);
154 printk(BIOS_DEBUG, "begin msr fid, vid %08x%08x\n", msr.hi, msr.lo);
155 }
156 enable_fid_change();
157 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
158 init_fidvid_bsp(bsp_apicid);
159 // show final fid and vid
160 {
161 msr_t msr;
162 msr = rdmsr(0xc0010042);
163 printk(BIOS_DEBUG, "end msr fid, vid %08x%08x\n", msr.hi, msr.lo);
164 }
bxshifaea4c52006-11-02 16:02:33 +0000165#endif
166
167#if 1
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200168 needs_reset = optimize_link_coherent_ht();
169 needs_reset |= optimize_link_incoherent_ht(sysinfo);
bxshifaea4c52006-11-02 16:02:33 +0000170
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200171 // fidvid change will issue one LDTSTOP and the HT change will be effective too
172 if (needs_reset) {
173 printk(BIOS_INFO, "ht reset -\n");
174 soft_reset();
175 }
bxshifaea4c52006-11-02 16:02:33 +0000176#endif
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200177 allow_all_aps_stop(bsp_apicid);
bxshifaea4c52006-11-02 16:02:33 +0000178
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200179 //It's the time to set ctrl in sysinfo now;
180 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
bxshifaea4c52006-11-02 16:02:33 +0000181
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200182 enable_smbus();
bxshifaea4c52006-11-02 16:02:33 +0000183
184#if 0
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200185 int i;
186 for(i = 0; i < 2; i++) {
187 activate_spd_rom(sysinfo->ctrl+i);
188 dump_smbus_registers();
189 }
bxshifaea4c52006-11-02 16:02:33 +0000190#endif
191
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200192 //do we need apci timer, tsc...., only debug need it for better output
193 /* all ap stopped? */
Paul Menzel4549e5a2014-02-02 22:05:48 +0100194// init_timer(); // Need to use TMICT to synchronize FID/VID
bxshifaea4c52006-11-02 16:02:33 +0000195
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200196 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
bxshifaea4c52006-11-02 16:02:33 +0000197
198#if 0
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200199 print_pci_devices();
bxshifaea4c52006-11-02 16:02:33 +0000200#endif
201
202#if 0
203// dump_pci_devices();
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200204 dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
205 dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
bxshifaea4c52006-11-02 16:02:33 +0000206#endif
207
Elyes HAOUAS99a92ac2016-09-25 15:21:37 +0200208 post_cache_as_ram();
bxshifaea4c52006-11-02 16:02:33 +0000209}