blob: 593e96cb9034f0c2ce2192a12bdaf59fa16e408b [file] [log] [blame]
Rudolf Marek133647a2010-04-05 19:47:34 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
5 * Copyright (C) 2010 Rudolf Marek <r.marek@assembler.cz>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#define RAMINIT_SYSINFO 1
22#define K8_SET_FIDVID 1
23#define QRANK_DIMM_SUPPORT 1
24#if CONFIG_LOGICAL_CPUS==1
25#define SET_NB_CFG_54 1
26#endif
27
28#define RC0 (6<<8)
29#define RC1 (7<<8)
30
31#define DIMM0 0x50
32#define DIMM1 0x51
33
34#define ICS951462_ADDRESS 0x69
35#define SMBUS_HUB 0x71
36
37#include <stdint.h>
38#include <string.h>
39#include <device/pci_def.h>
40#include <arch/io.h>
41#include <device/pnp_def.h>
42#include <arch/romcc_io.h>
43#include <cpu/x86/lapic.h>
44#include "option_table.h"
45#include "pc80/mc146818rtc_early.c"
46#include "pc80/serial.c"
47#include "console/console.c"
48
49#include <cpu/amd/model_fxx_rev.h>
50#include "northbridge/amd/amdk8/raminit.h"
51#include "cpu/amd/model_fxx/apic_timer.c"
52#include "lib/delay.c"
53
54#include "cpu/x86/lapic/boot_cpu.c"
55#include "northbridge/amd/amdk8/reset_test.c"
56#include "superio/winbond/w83627dhg/w83627dhg_early_serial.c"
57
58#include "cpu/amd/mtrr/amd_earlymtrr.c"
59#include "cpu/x86/bist.h"
60
61#include "northbridge/amd/amdk8/setup_resource_map.c"
62
63#include "southbridge/amd/rs780/rs780_early_setup.c"
64#include "southbridge/amd/sb700/sb700_early_setup.c"
65#include "northbridge/amd/amdk8/debug.c" /* After sb700_early_setup.c! */
66
67#define SERIAL_DEV PNP_DEV(0x2e, W83627DHG_SP1)
68#define GPIO6_DEV PNP_DEV(0x2e, W83627DHG_GPIO6)
69#define GPIO2345_DEV PNP_DEV(0x2e, W83627DHG_GPIO2345)
70
71/* CAN'T BE REMOVED! crt0.S will use it. I don't know WHY!*/
72static void memreset(int controllers, const struct mem_controller *ctrl)
73{
74}
75
76/* called in raminit_f.c */
77static inline void activate_spd_rom(const struct mem_controller *ctrl)
78{
79}
80
81/*called in raminit_f.c */
82static inline int spd_read_byte(u32 device, u32 address)
83{
84 return smbus_read_byte(device, address);
85}
86
87#include "northbridge/amd/amdk8/amdk8.h"
88#include "northbridge/amd/amdk8/incoherent_ht.c"
89#include "northbridge/amd/amdk8/raminit.c"
90#include "northbridge/amd/amdk8/coherent_ht.c"
91#include "lib/generic_sdram.c"
92#include "resourcemap.c"
93
94#include "cpu/amd/dualcore/dualcore.c"
95
96#include "cpu/amd/car/copy_and_run.c"
97#include "cpu/amd/car/post_cache_as_ram.c"
98
99#include "cpu/amd/model_fxx/init_cpus.c"
100
101#include "cpu/amd/model_fxx/fidvid.c"
102
103#include "northbridge/amd/amdk8/early_ht.c"
104
Stefan Reinauer56a684a2010-04-07 15:40:26 +0000105static void sio_init(void)
Rudolf Marek133647a2010-04-05 19:47:34 +0000106{
107 u8 reg;
108
109 pnp_enter_ext_func_mode(GPIO2345_DEV);
110 pnp_set_logical_device(GPIO2345_DEV);
111
112 /* Pin 119 ~ 120 GP21, GP20 */
113 reg = pnp_read_config(GPIO2345_DEV, 0x29);
114 pnp_write_config(GPIO2345_DEV, 0x29, (reg | 2));
115
116 /* todo document this */
117 pnp_write_config(GPIO2345_DEV, 0x2c, 0x1);
118 pnp_write_config(GPIO2345_DEV, 0x2d, 0x1);
119
120
121//idx 30 e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 f0 f1 f2 f3 f4 f5 f6 f7 fe
122//val 07 XX XX XX f6 0e 00 00 00 00 ff d6 96 00 40 d0 83 00 00 07
123
124//GPO20 - 1 = 1.82 0 = 1.92 sideport voltage
125//mGPUV GPO40 | GPO41 | GPIO23 - 000 - 1.45V step 0.05 -- 111 - 1.10V
126//DDR voltage 44 45 46
127
128 /* GPO20 - sideport voltage GPO23 - mgpuV */
129 pnp_write_config(GPIO2345_DEV, 0x30, 0x07); /* Enable GPIO 2,3,4. */
130 pnp_write_config(GPIO2345_DEV, 0xe3, 0xf6); /* dir of GPIO2 11110110*/
131 pnp_write_config(GPIO2345_DEV, 0xe4, 0x0e); /* data */
132 pnp_write_config(GPIO2345_DEV, 0xe5, 0x00); /* No inversion */
133
134 /* GPO30 GPO33 GPO35 */
135 //GPO35 - loadline control 0 - enabled
136 //GPIO30 - unknown
137 //GPIO33 - unknown
138 pnp_write_config(GPIO2345_DEV, 0xf0, 0xd6); /* dir of GPIO3 11010110*/
139 pnp_write_config(GPIO2345_DEV, 0xf1, 0x96); /* data */
140 pnp_write_config(GPIO2345_DEV, 0xf2, 0x00); /* No inversion */
141
142 /* GPO40 GPO41 GPO42 GPO43 PO45 */
143 pnp_write_config(GPIO2345_DEV, 0xf4, 0xd0); /* dir of GPIO4 11010000 */
144 pnp_write_config(GPIO2345_DEV, 0xf5, 0x83); /* data */
145 pnp_write_config(GPIO2345_DEV, 0xf6, 0x00); /* No inversion */
146
147 pnp_write_config(GPIO2345_DEV, 0xf7, 0x00); /* MFC */
148 pnp_write_config(GPIO2345_DEV, 0xf8, 0x00); /* MFC */
149 pnp_write_config(GPIO2345_DEV, 0xfe, 0x07); /* trig type */
150 pnp_exit_ext_func_mode(GPIO2345_DEV);
151}
152
153void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
154{
155 static const u16 spd_addr[] = { DIMM0, 0, 0, 0, DIMM1, 0, 0, 0, };
156 int needs_reset = 0;
157 u32 bsp_apicid = 0;
158 msr_t msr;
159 struct cpuid_result cpuid1;
160 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
161
162 if (!cpu_init_detectedx && boot_cpu()) {
163 /* Nothing special needs to be done to find bus 0 */
164 /* Allow the HT devices to be found */
165 enumerate_ht_chain();
166
167 /* sb700_lpc_port80(); */
168 sb700_pci_port80();
169 }
170
171 if (bist == 0) {
172 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
173 }
174
175 enable_rs780_dev8();
176 sb700_lpc_init();
177
178 sio_init();
179 w83627dhg_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
180 uart_init();
181 console_init();
182
183 /* Halt if there was a built in self test failure */
184 report_bist_failure(bist);
185 printk(BIOS_DEBUG, "bsp_apicid=0x%x\n", bsp_apicid);
186
187 setup_939a785gmh_resource_map();
188
189 setup_coherent_ht_domain();
190
191#if CONFIG_LOGICAL_CPUS==1
192 /* It is said that we should start core1 after all core0 launched */
193 wait_all_core0_started();
194 start_other_cores();
195#endif
196 wait_all_aps_started(bsp_apicid);
197
198 ht_setup_chains_x(sysinfo);
199
200 /* run _early_setup before soft-reset. */
201 rs780_early_setup();
202 sb700_early_setup();
203
204 /* Check to see if processor is capable of changing FIDVID */
205 /* otherwise it will throw a GP# when reading FIDVID_STATUS */
206 cpuid1 = cpuid(0x80000007);
207 if( (cpuid1.edx & 0x6) == 0x6 ) {
208
209 /* Read FIDVID_STATUS */
210 msr=rdmsr(0xc0010042);
211 printk(BIOS_DEBUG, "begin msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
212
213 enable_fid_change();
214 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
215 init_fidvid_bsp(bsp_apicid);
216
217 /* show final fid and vid */
218 msr=rdmsr(0xc0010042);
219 printk(BIOS_DEBUG, "end msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
220
221 } else {
222 printk(BIOS_DEBUG, "Changing FIDVID not supported\n");
223 }
224
225 needs_reset = optimize_link_coherent_ht();
226 needs_reset |= optimize_link_incoherent_ht(sysinfo);
227 rs780_htinit();
228 printk(BIOS_DEBUG, "needs_reset=0x%x\n", needs_reset);
229
230 if (needs_reset) {
231 print_info("ht reset -\n");
232 soft_reset();
233 }
234
235 allow_all_aps_stop(bsp_apicid);
236
237 /* It's the time to set ctrl now; */
238 printk(BIOS_DEBUG, "sysinfo->nodes: %2x sysinfo->ctrl: %p spd_addr: %p\n",
239 sysinfo->nodes, sysinfo->ctrl, spd_addr);
240 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
241 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
242
243 rs780_before_pci_init();
244 sb700_before_pci_init();
245
246 post_cache_as_ram();
247}
248