blob: 8aeaff5fcba68a5380a2f0a72ad5439e113cc38b [file] [log] [blame]
Rudolf Marek1a002562007-11-02 23:17:57 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Rudolf Marek1a002562007-11-02 23:17:57 +00003 *
4 * Copyright (C) 2006 AMD
Uwe Hermannc4f53652008-03-08 19:14:42 +00005 * (Written by Yinghai Lu <yinghailu@amd.com> for AMD)
Rudolf Marek1a002562007-11-02 23:17:57 +00006 * Copyright (C) 2006 MSI
Uwe Hermannc4f53652008-03-08 19:14:42 +00007 * (Written by Bingxun Shi <bingxunshi@gmail.com> for MSI)
Rudolf Marek1a002562007-11-02 23:17:57 +00008 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25#define ASSEMBLY 1
26#define __ROMCC__
27
28#define RAMINIT_SYSINFO 1
29
30#define CACHE_AS_RAM_ADDRESS_DEBUG 0
31
32unsigned int get_sbdn(unsigned bus);
33
Uwe Hermannc4f53652008-03-08 19:14:42 +000034/* Used by raminit. */
Rudolf Marek1a002562007-11-02 23:17:57 +000035#define QRANK_DIMM_SUPPORT 1
36
Uwe Hermannc4f53652008-03-08 19:14:42 +000037/* Used by init_cpus and fidvid */
Rudolf Marek1a002562007-11-02 23:17:57 +000038#define K8_SET_FIDVID 1
Uwe Hermannc4f53652008-03-08 19:14:42 +000039
40/* If we want to wait for core1 done before DQS training, set it to 0. */
Rudolf Marek1a002562007-11-02 23:17:57 +000041#define K8_SET_FIDVID_CORE0_ONLY 1
42
Uwe Hermannc4f53652008-03-08 19:14:42 +000043/* #define DEBUG_SMBUS 1 */
Rudolf Marek1a002562007-11-02 23:17:57 +000044
45#include <stdint.h>
46#include <device/pci_def.h>
47#include <arch/io.h>
48#include <device/pnp_def.h>
49#include <arch/romcc_io.h>
50#include <cpu/x86/lapic.h>
51#include "option_table.h"
52#include "pc80/mc146818rtc_early.c"
Rudolf Marek1a002562007-11-02 23:17:57 +000053#include "pc80/serial.c"
54#include "arch/i386/lib/console.c"
Rudolf Marek1a002562007-11-02 23:17:57 +000055#include <cpu/amd/model_fxx_rev.h>
56#include "northbridge/amd/amdk8/raminit.h"
57#include "cpu/amd/model_fxx/apic_timer.c"
58#include "lib/delay.c"
Rudolf Marek1a002562007-11-02 23:17:57 +000059#if CONFIG_USE_INIT == 0
60#include "lib/memcpy.c"
61#endif
Rudolf Marek1a002562007-11-02 23:17:57 +000062#include "cpu/x86/lapic/boot_cpu.c"
63#include "northbridge/amd/amdk8/reset_test.c"
64#include "northbridge/amd/amdk8/debug.c"
65#include "northbridge/amd/amdk8/early_ht.c"
Rudolf Marek1a002562007-11-02 23:17:57 +000066#include "superio/winbond/w83627ehg/w83627ehg_early_serial.c"
67#include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
Rudolf Marek1a002562007-11-02 23:17:57 +000068#include "cpu/amd/mtrr/amd_earlymtrr.c"
69#include "cpu/x86/bist.h"
Rudolf Marek1a002562007-11-02 23:17:57 +000070#include "northbridge/amd/amdk8/setup_resource_map.c"
71
72#define SERIAL_DEV PNP_DEV(0x2e, W83627EHG_SP1)
73#define GPIO_DEV PNP_DEV(0x2e, W83627EHG_GPIO_SUSLED)
Rudolf Marek6211ae12008-01-12 22:29:17 +000074#define ACPI_DEV PNP_DEV(0x2e, W83627EHG_ACPI)
Rudolf Marek1a002562007-11-02 23:17:57 +000075#define RTC_DEV PNP_DEV(0x2e, W83627EHG_RTC)
76
77static void memreset_setup(void)
78{
79}
80
81static void memreset(int controllers, const struct mem_controller *ctrl)
82{
83}
84
Rudolf Marek1a002562007-11-02 23:17:57 +000085static inline int spd_read_byte(unsigned device, unsigned address)
86{
87 return smbus_read_byte(device, address);
88}
89
Rudolf Marek1a002562007-11-02 23:17:57 +000090void activate_spd_rom(const struct mem_controller *ctrl)
91{
Rudolf Marek1a002562007-11-02 23:17:57 +000092}
93
Rudolf Marek1a002562007-11-02 23:17:57 +000094void soft_reset(void)
95{
96 uint8_t tmp;
Uwe Hermannc4f53652008-03-08 19:14:42 +000097
Rudolf Marek1a002562007-11-02 23:17:57 +000098 set_bios_reset();
99 print_debug("soft reset \r\n");
100
101 /* PCI reset */
102 tmp = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x4f);
103 tmp |= 0x01;
104 pci_write_config8(PCI_DEV(0, 0x11, 0), 0x4f, tmp);
105
106 while (1) {
107 /* daisy daisy ... */
108 hlt();
109 }
110}
111
Carl-Daniel Hailfinger3f04dad2009-04-13 16:21:16 +0000112#define K8_4RANK_DIMM_SUPPORT 1
113
114#include "northbridge/amd/amdk8/amdk8.h"
115#include "northbridge/amd/amdk8/raminit.c"
116#include "northbridge/amd/amdk8/coherent_ht.c"
117#include "northbridge/amd/amdk8/incoherent_ht.c"
118#include "sdram/generic_sdram.c"
119#include "cpu/amd/dualcore/dualcore.c"
120#include "southbridge/via/k8t890/k8t890_early_car.c"
121#include "cpu/amd/car/copy_and_run.c"
122#include "cpu/amd/car/post_cache_as_ram.c"
123#include "cpu/amd/model_fxx/init_cpus.c"
124#include "cpu/amd/model_fxx/fidvid.c"
125#include "northbridge/amd/amdk8/resourcemap.c"
126
127void hard_reset(void)
128{
129 print_info("NO HARD RESET. FIX ME!\n");
130}
131
Rudolf Marek1a002562007-11-02 23:17:57 +0000132unsigned int get_sbdn(unsigned bus)
133{
134 device_t dev;
135
136 dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_VIA,
137 PCI_DEVICE_ID_VIA_VT8237R_LPC), bus);
138 return (dev >> 15) & 0x1f;
139}
140
Uwe Hermannc4f53652008-03-08 19:14:42 +0000141void sio_init(void)
142{
Rudolf Marek1a002562007-11-02 23:17:57 +0000143 u8 reg;
144
145 pnp_enter_ext_func_mode(SERIAL_DEV);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000146 /* We have 24MHz input. */
Rudolf Marek1a002562007-11-02 23:17:57 +0000147 reg = pnp_read_config(SERIAL_DEV, 0x24);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000148 pnp_write_config(SERIAL_DEV, 0x24, (reg & ~0x40));
149 /* We have GPIO for KB/MS pin. */
150 reg = pnp_read_config(SERIAL_DEV, 0x2a);
151 pnp_write_config(SERIAL_DEV, 0x2a, (reg | 1));
152 /* We have all RESTOUT and even some reserved bits, too. */
153 reg = pnp_read_config(SERIAL_DEV, 0x2c);
154 pnp_write_config(SERIAL_DEV, 0x2c, (reg | 0xf0));
Rudolf Marek1a002562007-11-02 23:17:57 +0000155 pnp_exit_ext_func_mode(SERIAL_DEV);
156
Rudolf Marek6211ae12008-01-12 22:29:17 +0000157 pnp_enter_ext_func_mode(ACPI_DEV);
158 pnp_set_logical_device(ACPI_DEV);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000159 /*
160 * Set the delay rising time from PWROK_LP to PWROK_ST to
161 * 300 - 600ms, and 0 to vice versa.
162 */
Rudolf Marek6211ae12008-01-12 22:29:17 +0000163 reg = pnp_read_config(ACPI_DEV, 0xe6);
Rudolf Marek6211ae12008-01-12 22:29:17 +0000164 pnp_write_config(ACPI_DEV, 0xe6, (reg & 0xf0));
165 /* 1 Use external suspend clock source 32.768KHz. Undocumented?? */
166 reg = pnp_read_config(ACPI_DEV, 0xe4);
167 pnp_write_config(ACPI_DEV, 0xe4, (reg | 0x10));
168 pnp_exit_ext_func_mode(ACPI_DEV);
169
Rudolf Marek1a002562007-11-02 23:17:57 +0000170 pnp_enter_ext_func_mode(GPIO_DEV);
171 pnp_set_logical_device(GPIO_DEV);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000172 /* Set memory voltage to 2.75V, vcore offset + 100mV, 1.5V chipset voltage. */
173 pnp_write_config(GPIO_DEV, 0x30, 0x09); /* Enable GPIO 2 & GPIO 5. */
174 pnp_write_config(GPIO_DEV, 0xe2, 0x00); /* No inversion */
175 pnp_write_config(GPIO_DEV, 0xe5, 0x00); /* No inversion */
176 pnp_write_config(GPIO_DEV, 0xe3, 0x03); /* 0000 0011, 0=output 1=input */
177 pnp_write_config(GPIO_DEV, 0xe0, 0xde); /* 1101 1110, 0=output 1=input */
178 pnp_write_config(GPIO_DEV, 0xe1, 0x01); /* Set output val. */
179 pnp_write_config(GPIO_DEV, 0xe4, 0xb4); /* Set output val (1011 0100). */
Rudolf Marek6211ae12008-01-12 22:29:17 +0000180 pnp_exit_ext_func_mode(GPIO_DEV);
181}
Rudolf Marek1a002562007-11-02 23:17:57 +0000182
Rudolf Marek6211ae12008-01-12 22:29:17 +0000183#if USE_FALLBACK_IMAGE == 1
184
185void failover_process(unsigned long bist, unsigned long cpu_init_detectedx)
186{
Uwe Hermannc4f53652008-03-08 19:14:42 +0000187 /* unsigned last_boot_normal_x = last_boot_normal(); */
188 /* FIXME */
Rudolf Marek6211ae12008-01-12 22:29:17 +0000189 unsigned last_boot_normal_x = 1;
190
191 sio_init();
Rudolf Marek1a002562007-11-02 23:17:57 +0000192 w83627ehg_enable_serial(SERIAL_DEV, TTYS0_BASE);
193 uart_init();
194 console_init();
Rudolf Marek56717872008-03-15 00:26:50 +0000195 enable_rom_decode();
Rudolf Marek1a002562007-11-02 23:17:57 +0000196
197 print_info("now booting... fallback\r\n");
198
Uwe Hermannc4f53652008-03-08 19:14:42 +0000199 /* Is this a CPU only reset? Or is this a secondary CPU? */
Rudolf Marek1a002562007-11-02 23:17:57 +0000200 if ((cpu_init_detectedx) || (!boot_cpu())) {
Uwe Hermannc4f53652008-03-08 19:14:42 +0000201 if (last_boot_normal_x)
Rudolf Marek1a002562007-11-02 23:17:57 +0000202 goto normal_image;
Uwe Hermannc4f53652008-03-08 19:14:42 +0000203 else
Rudolf Marek1a002562007-11-02 23:17:57 +0000204 goto fallback_image;
Rudolf Marek1a002562007-11-02 23:17:57 +0000205 }
206
Uwe Hermannc4f53652008-03-08 19:14:42 +0000207 /* Nothing special needs to be done to find bus 0. */
208 /* Allow the HT devices to be found. */
Rudolf Marek1a002562007-11-02 23:17:57 +0000209 enumerate_ht_chain();
210
Uwe Hermannc4f53652008-03-08 19:14:42 +0000211 /* Is this a deliberate reset by the BIOS? */
Rudolf Marek1a002562007-11-02 23:17:57 +0000212 if (bios_reset_detected() && last_boot_normal_x) {
213 goto normal_image;
214 }
Uwe Hermannc4f53652008-03-08 19:14:42 +0000215 /* This is the primary CPU, how should I boot? */
Rudolf Marek1a002562007-11-02 23:17:57 +0000216 else if (do_normal_boot()) {
217 goto normal_image;
218 } else {
219 goto fallback_image;
220 }
Rudolf Marek1a002562007-11-02 23:17:57 +0000221
Uwe Hermannc4f53652008-03-08 19:14:42 +0000222normal_image:
223 /* print_info("JMP normal image\r\n"); */
Rudolf Marek1a002562007-11-02 23:17:57 +0000224
Uwe Hermannc4f53652008-03-08 19:14:42 +0000225 __asm__ __volatile__("jmp __normal_image":
226 :"a" (bist), "b" (cpu_init_detectedx));
227
228fallback_image:
Rudolf Marek1a002562007-11-02 23:17:57 +0000229 ;
230}
231#endif
232
233void real_main(unsigned long bist, unsigned long cpu_init_detectedx);
234
Uwe Hermannc4f53652008-03-08 19:14:42 +0000235void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Rudolf Marek1a002562007-11-02 23:17:57 +0000236{
Rudolf Marek1a002562007-11-02 23:17:57 +0000237#if USE_FALLBACK_IMAGE == 1
238 failover_process(bist, cpu_init_detectedx);
239#endif
240 real_main(bist, cpu_init_detectedx);
Rudolf Marek1a002562007-11-02 23:17:57 +0000241}
242
Rudolf Marek1a002562007-11-02 23:17:57 +0000243void real_main(unsigned long bist, unsigned long cpu_init_detectedx)
244{
245 static const uint16_t spd_addr[] = {
246 (0xa << 3) | 0, (0xa << 3) | 2, 0, 0,
247 (0xa << 3) | 1, (0xa << 3) | 3, 0, 0,
248#if CONFIG_MAX_PHYSICAL_CPUS > 1
249 (0xa << 3) | 4, (0xa << 3) | 6, 0, 0,
250 (0xa << 3) | 5, (0xa << 3) | 7, 0, 0,
251#endif
252 };
253 unsigned bsp_apicid = 0;
254 int needs_reset = 0;
255 struct sys_info *sysinfo =
Uwe Hermannc4f53652008-03-08 19:14:42 +0000256 (DCACHE_RAM_BASE + DCACHE_RAM_SIZE - DCACHE_RAM_GLOBAL_VAR_SIZE);
Rudolf Marek1a002562007-11-02 23:17:57 +0000257 char *p;
Rudolf Marek1a002562007-11-02 23:17:57 +0000258
Rudolf Marek6211ae12008-01-12 22:29:17 +0000259 sio_init();
Rudolf Marek1a002562007-11-02 23:17:57 +0000260 w83627ehg_enable_serial(SERIAL_DEV, TTYS0_BASE);
261 uart_init();
262 console_init();
Rudolf Marek56717872008-03-15 00:26:50 +0000263 enable_rom_decode();
Rudolf Marek1a002562007-11-02 23:17:57 +0000264
265 print_info("now booting... real_main\r\n");
266
Uwe Hermannc4f53652008-03-08 19:14:42 +0000267 if (bist == 0)
Rudolf Marek1a002562007-11-02 23:17:57 +0000268 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000269
270 /* Halt if there was a built in self test failure. */
Rudolf Marek1a002562007-11-02 23:17:57 +0000271 report_bist_failure(bist);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000272
Rudolf Marek1a002562007-11-02 23:17:57 +0000273 setup_default_resource_map();
274 setup_coherent_ht_domain();
275 wait_all_core0_started();
Uwe Hermannc4f53652008-03-08 19:14:42 +0000276
Rudolf Marek1a002562007-11-02 23:17:57 +0000277 print_info("now booting... Core0 started\r\n");
278
279#if CONFIG_LOGICAL_CPUS==1
Uwe Hermannc4f53652008-03-08 19:14:42 +0000280 /* It is said that we should start core1 after all core0 launched. */
Rudolf Marek1a002562007-11-02 23:17:57 +0000281 start_other_cores();
282 wait_all_other_cores_started(bsp_apicid);
283#endif
284 init_timer();
Uwe Hermannc4f53652008-03-08 19:14:42 +0000285 ht_setup_chains_x(sysinfo); /* Init sblnk and sbbusn, nodes, sbdn. */
Rudolf Marekcc3ccdb2007-11-13 15:40:21 +0000286
Rudolf Marek1a002562007-11-02 23:17:57 +0000287 needs_reset = optimize_link_coherent_ht();
288 needs_reset |= optimize_link_incoherent_ht(sysinfo);
Rudolf Marekc2213492008-03-19 20:24:33 +0000289 needs_reset |= k8t890_early_setup_ht();
Rudolf Marek1a002562007-11-02 23:17:57 +0000290
291 if (needs_reset) {
292 print_debug("ht reset -\r\n");
293 soft_reset();
294 }
Uwe Hermannc4f53652008-03-08 19:14:42 +0000295
Rudolf Marekc2213492008-03-19 20:24:33 +0000296 /* the HT settings needs to be OK, because link freq chnage may cause HT disconnect */
297 enable_fid_change();
298 init_fidvid_bsp(bsp_apicid);
299
Uwe Hermannc4f53652008-03-08 19:14:42 +0000300 /* Stop the APs so we can start them later in init. */
301 allow_all_aps_stop(bsp_apicid);
302
303 /* It's the time to set ctrl now. */
Rudolf Marek1a002562007-11-02 23:17:57 +0000304 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
Uwe Hermannc4f53652008-03-08 19:14:42 +0000305
Rudolf Marek1a002562007-11-02 23:17:57 +0000306 enable_smbus();
307 memreset_setup();
308 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
309 post_cache_as_ram();
310}