blob: 8e44c784bc8179d8c281840f6a79975eb2002294 [file] [log] [blame]
Thomas Jourdan1a692d82009-07-01 17:01:17 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer14e22772010-04-27 06:56:47 +00003 *
Thomas Jourdan1a692d82009-07-01 17:01:17 +00004 * Copyright (C) 2007-2009 coresystems GmbH
Nico Huber68d7c7a2012-10-02 11:46:11 +02005 * 2012 secunet Security Networks AG
Thomas Jourdan1a692d82009-07-01 17:01:17 +00006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 * MA 02110-1301 USA
21 */
22
23#include <console/console.h>
24#include <device/device.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +000025#include <string.h>
26#include <cpu/cpu.h>
27#include <cpu/x86/mtrr.h>
28#include <cpu/x86/msr.h>
29#include <cpu/x86/lapic.h>
30#include <cpu/intel/microcode.h>
Stefan Reinauer2a27b202010-12-11 22:14:44 +000031#include <cpu/intel/speedstep.h>
Sven Schnelle51676b12012-07-29 19:18:03 +020032#include <cpu/intel/hyperthreading.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +000033#include <cpu/x86/cache.h>
Uwe Hermannaac8f662010-09-29 09:54:16 +000034#include <cpu/x86/name.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +000035
Nico Huber68d7c7a2012-10-02 11:46:11 +020036#include "chip.h"
37
Thomas Jourdan1a692d82009-07-01 17:01:17 +000038static void init_timer(void)
39{
40 /* Set the apic timer to no interrupts and periodic mode */
41 lapic_write(LAPIC_LVTT, (1 << 17)|(1<< 16)|(0 << 12)|(0 << 0));
42
43 /* Set the divider to 1, no divider */
44 lapic_write(LAPIC_TDCR, LAPIC_TDR_DIV_1);
45
46 /* Set the initial counter to 0xffffffff */
47 lapic_write(LAPIC_TMICT, 0xffffffff);
48}
49
Thomas Jourdan1a692d82009-07-01 17:01:17 +000050#define IA32_FEATURE_CONTROL 0x003a
51
52#define CPUID_VMX (1 << 5)
53#define CPUID_SMX (1 << 6)
54static void enable_vmx(void)
55{
56 struct cpuid_result regs;
57 msr_t msr;
58
59 msr = rdmsr(IA32_FEATURE_CONTROL);
60
61 if (msr.lo & (1 << 0)) {
62 /* VMX locked. If we set it again we get an illegal
63 * instruction
64 */
65 return;
66 }
67
68 regs = cpuid(1);
69 if (regs.ecx & CPUID_VMX) {
70 msr.lo |= (1 << 2);
71 if (regs.ecx & CPUID_SMX)
72 msr.lo |= (1 << 1);
73 }
74
75 wrmsr(IA32_FEATURE_CONTROL, msr);
76
77 msr.lo |= (1 << 0); /* Set lock bit */
78
79 wrmsr(IA32_FEATURE_CONTROL, msr);
80}
81
Nico Huber68d7c7a2012-10-02 11:46:11 +020082#define MSR_BBL_CR_CTL3 0x11e
Thomas Jourdan1a692d82009-07-01 17:01:17 +000083
Nico Huber68d7c7a2012-10-02 11:46:11 +020084static void configure_c_states(const int quad)
Thomas Jourdan1a692d82009-07-01 17:01:17 +000085{
86 msr_t msr;
87
Nico Huber68d7c7a2012-10-02 11:46:11 +020088 /* Find pointer to CPU configuration. */
89 const device_t lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
90 const struct cpu_intel_model_1067x_config *const conf =
91 (lapic && lapic->chip_info) ? lapic->chip_info : NULL;
92
93 /* Is C5 requested and supported? */
94 const int c5 = conf && conf->c5 &&
95 (rdmsr(MSR_BBL_CR_CTL3).lo & (3 << 30)) &&
96 !(rdmsr(MSR_FSB_FREQ).lo & (1 << 31));
97 /* Is C6 requested and supported? */
98 const int c6 = conf && conf->c6 &&
99 ((cpuid_edx(5) >> (6 * 4)) & 0xf) && c5;
100
101 const int cst_range = (c6 ? 6 : (c5 ? 5 : 4)) - 2; /* zero means lvl2 */
102
Patrick Georgi644e83b2013-02-09 15:35:30 +0100103 msr = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000104 msr.lo &= ~(1 << 9); // Issue a single stop grant cycle upon stpclk
Nico Huber68d7c7a2012-10-02 11:46:11 +0200105 msr.lo |= (1 << 8);
106 if (quad) {
107 msr.lo = (msr.lo & ~(7 << 0)) | (4 << 0);
108 }
109 if (c5) {
110 msr.lo &= ~(1 << 13);
111 msr.lo &= ~(7 << 0);
112 msr.lo |= (1 << 3); /* Enable dynamic L2. */
113 msr.lo |= (1 << 14); /* Enable deeper sleep */
114 }
115 /* Next two fields seem to be mutually exclusive: */
116 msr.lo &= ~(7 << 4);
117 msr.lo |= (1 << 10); /* Enable IO MWAIT redirection. */
118 if (c6)
119 msr.lo |= (1 << 25);
Patrick Georgi644e83b2013-02-09 15:35:30 +0100120 wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000121
122 /* Set Processor MWAIT IO BASE */
123 msr.hi = 0;
124 msr.lo = ((PMB0_BASE + 4) & 0xffff) | (((PMB1_BASE + 9) & 0xffff) << 16);
Patrick Georgi644e83b2013-02-09 15:35:30 +0100125 wrmsr(MSR_PMG_IO_BASE_ADDR, msr);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000126
127 /* Set IO Capture Address */
128 msr.hi = 0;
Nico Huber68d7c7a2012-10-02 11:46:11 +0200129 msr.lo = ((PMB0_BASE + 4) & 0xffff) | ((cst_range & 0xffff) << 16);
Patrick Georgi644e83b2013-02-09 15:35:30 +0100130 wrmsr(MSR_PMG_IO_CAPTURE_ADDR, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200131
132 if (c5) {
133 msr = rdmsr(MSR_BBL_CR_CTL3);
134 msr.lo &= ~(7 << 25);
135 msr.lo |= (2 << 25);
136 msr.lo &= ~(3 << 30);
137 msr.lo |= (1 << 30);
138 wrmsr(MSR_BBL_CR_CTL3, msr);
139 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000140}
141
Nico Huber68d7c7a2012-10-02 11:46:11 +0200142static void configure_p_states(const char stepping, const char cores)
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000143{
144 msr_t msr;
145
Nico Huber68d7c7a2012-10-02 11:46:11 +0200146 /* Find pointer to CPU configuration. */
147 const device_t lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
148 struct cpu_intel_model_1067x_config *const conf =
149 (lapic && lapic->chip_info) ? lapic->chip_info : NULL;
150
151 msr = rdmsr(MSR_EXTENDED_CONFIG);
Patrick Georgif17c58b2014-08-09 20:48:12 +0200152 /* Super LFM supported? */
153 if (conf && conf->slfm && (msr.lo & (1 << 27)))
Nico Huber68d7c7a2012-10-02 11:46:11 +0200154 msr.lo |= (1 << 28); /* Enable Super LFM. */
155 wrmsr(MSR_EXTENDED_CONFIG, msr);
156
157 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32))) {
158 /* Turbo supported? */
159 if ((stepping == 0xa) && (cores < 4)) {
160 msr = rdmsr(MSR_FSB_FREQ);
161 msr.lo |= (1 << 3); /* Enable hysteresis. */
162 wrmsr(MSR_FSB_FREQ, msr);
163 }
164 msr = rdmsr(IA32_PERF_CTL);
165 msr.hi &= ~(1 << (32 - 32)); /* Clear turbo disable. */
166 wrmsr(IA32_PERF_CTL, msr);
167 }
168
Patrick Georgi644e83b2013-02-09 15:35:30 +0100169 msr = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200170 msr.lo &= ~(1 << 11); /* Enable hw coordination. */
171 msr.lo |= (1 << 15); /* Lock config until next reset. */
Patrick Georgi644e83b2013-02-09 15:35:30 +0100172 wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200173}
174
175#define MSR_EMTTM_CR_TABLE(x) (0xa8 + (x))
176#define MSR_EMTTM_TABLE_NUM 6
177static void configure_emttm_tables(void)
178{
179 int i;
180 int num_states, pstate_idx;
181 msr_t msr;
182 sst_table_t pstates;
183
184 /* Gather p-state information. */
185 speedstep_gen_pstates(&pstates);
186
187 /* Never turbo mode or Super LFM. */
188 num_states = pstates.num_states;
189 if (pstates.states[0].is_turbo)
190 --num_states;
191 if (pstates.states[pstates.num_states - 1].is_slfm)
192 --num_states;
193 /* Repeat lowest p-state if we haven't enough states. */
194 const int num_lowest_pstate =
195 (num_states < MSR_EMTTM_TABLE_NUM)
196 ? (MSR_EMTTM_TABLE_NUM - num_states) + 1
197 : 1;
198 /* Start from the lowest entry but skip Super LFM. */
199 if (pstates.states[pstates.num_states - 1].is_slfm)
200 pstate_idx = pstates.num_states - 2;
201 else
202 pstate_idx = pstates.num_states - 1;
203 for (i = 0; i < MSR_EMTTM_TABLE_NUM; ++i) {
204 if (i >= num_lowest_pstate)
205 --pstate_idx;
206 const sst_state_t *const pstate = &pstates.states[pstate_idx];
207 printk(BIOS_DEBUG, "writing P-State %d: %d, %d, "
208 "%2d, 0x%02x, %d; encoded: 0x%04x\n",
209 pstate_idx, pstate->dynfsb, pstate->nonint,
210 pstate->ratio, pstate->vid, pstate->power,
211 SPEEDSTEP_ENCODE_STATE(*pstate));
212 msr.hi = 0;
213 msr.lo = SPEEDSTEP_ENCODE_STATE(pstates.states[pstate_idx]) &
214 /* Don't set half ratios. */
215 ~SPEEDSTEP_RATIO_NONINT;
216 wrmsr(MSR_EMTTM_CR_TABLE(i), msr);
217 }
218
219 msr = rdmsr(MSR_EMTTM_CR_TABLE(5));
220 msr.lo |= (1 << 31); /* lock tables */
221 wrmsr(MSR_EMTTM_CR_TABLE(5), msr);
222}
223
224static void configure_misc(const int eist, const int tm2, const int emttm)
225{
226 msr_t msr;
227
228 const u32 sub_cstates = cpuid_edx(5);
229
230 msr = rdmsr(IA32_MISC_ENABLES);
231 msr.lo |= (1 << 3); /* TM1 enable */
232 if (tm2)
233 msr.lo |= (1 << 13); /* TM2 enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000234 msr.lo |= (1 << 17); /* Bidirectional PROCHOT# */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200235 msr.lo |= (1 << 18); /* MONITOR/MWAIT enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000236
237 msr.lo |= (1 << 10); /* FERR# multiplexing */
238
Nico Huber68d7c7a2012-10-02 11:46:11 +0200239 if (eist)
240 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000241
242 /* Enable C2E */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200243 if (((sub_cstates >> (2 * 4)) & 0xf) >= 2) {
244 msr.lo |= (1 << 26);
245 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000246
247 /* Enable C4E */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200248 if (((sub_cstates >> (4 * 4)) & 0xf) >= 2) {
249 msr.hi |= (1 << (32 - 32)); // C4E
250 msr.hi |= (1 << (33 - 32)); // Hard C4E
251 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000252
Nico Huber68d7c7a2012-10-02 11:46:11 +0200253 /* Enable EMTTM */
254 if (emttm)
255 msr.hi |= (1 << (36 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000256
Nico Huber68d7c7a2012-10-02 11:46:11 +0200257 /* Enable turbo mode */
258 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32)))
259 msr.hi &= ~(1 << (38 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000260
Nico Huber68d7c7a2012-10-02 11:46:11 +0200261 wrmsr(IA32_MISC_ENABLES, msr);
262
263 if (eist) {
264 msr.lo |= (1 << 20); /* Lock Enhanced SpeedStep Enable */
265 wrmsr(IA32_MISC_ENABLES, msr);
266 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000267}
268
269#define PIC_SENS_CFG 0x1aa
Nico Huber68d7c7a2012-10-02 11:46:11 +0200270static void configure_pic_thermal_sensors(const int tm2, const int quad)
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000271{
272 msr_t msr;
273
274 msr = rdmsr(PIC_SENS_CFG);
275
Nico Huber68d7c7a2012-10-02 11:46:11 +0200276 if (quad)
277 msr.lo |= (1 << 31);
278 else
279 msr.lo &= ~(1 << 31);
280 if (tm2)
281 msr.lo |= (1 << 20); /* Enable TM1 if TM2 fails. */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000282 msr.lo |= (1 << 21); // inter-core lock TM1
Nico Huber68d7c7a2012-10-02 11:46:11 +0200283 msr.lo |= (1 << 4); // Enable bypass filter /* What does it do? */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000284
285 wrmsr(PIC_SENS_CFG, msr);
286}
287
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000288static void model_1067x_init(device_t cpu)
289{
290 char processor_name[49];
291
Nico Huber68d7c7a2012-10-02 11:46:11 +0200292
293 /* Gather some information: */
294
295 const struct cpuid_result cpuid1 = cpuid(1);
296
297 /* Read stepping. */
298 const char stepping = cpuid1.eax & 0xf;
299 /* Read number of cores. */
300 const char cores = (cpuid1.ebx >> 16) & 0xf;
301 /* Is this a quad core? */
302 const char quad = cores > 2;
303 /* Is this even a multiprocessor? */
304 const char mp = cores > 1;
305
306 /* Enable EMTTM on uni- and on multi-processors if it's not disabled. */
307 const char emttm = !mp || !(rdmsr(MSR_EXTENDED_CONFIG).lo & 4);
308
309 /* Is enhanced speedstep supported? */
310 const char eist = (cpuid1.ecx & (1 << 7)) &&
311 !(rdmsr(IA32_PLATFORM_ID).lo & (1 << 17));
312 /* Test for TM2 only if EIST is available. */
313 const char tm2 = eist && (cpuid1.ecx & (1 << 8));
314
315
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000316 /* Turn on caching if we haven't already */
317 x86_enable_cache();
318
319 /* Update the microcode */
Alexandru Gagniuc2c38f502013-12-06 23:14:54 -0600320 intel_update_microcode_from_cbfs();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000321
322 /* Print processor name */
323 fill_processor_name(processor_name);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000324 printk(BIOS_INFO, "CPU: %s.\n", processor_name);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000325
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000326 /* Setup MTRRs */
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100327 x86_setup_mtrrs();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000328 x86_mtrr_check();
329
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000330 /* Enable the local cpu apics */
331 setup_lapic();
332
333 /* Initialize the APIC timer */
334 init_timer();
335
336 /* Enable virtualization */
337 enable_vmx();
338
339 /* Configure C States */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200340 configure_c_states(quad);
341
342 /* Configure P States */
343 configure_p_states(stepping, cores);
344
345 /* EMTTM */
346 if (emttm)
347 configure_emttm_tables();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000348
349 /* Configure Enhanced SpeedStep and Thermal Sensors */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200350 configure_misc(eist, tm2, emttm);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000351
352 /* PIC thermal sensor control */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200353 configure_pic_thermal_sensors(tm2, quad);
Sven Schnelle51676b12012-07-29 19:18:03 +0200354
355 /* Start up my cpu siblings */
356 intel_sibling_init(cpu);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000357}
358
359static struct device_operations cpu_dev_ops = {
360 .init = model_1067x_init,
361};
362
363static struct cpu_device_id cpu_table[] = {
364 { X86_VENDOR_INTEL, 0x10676 }, /* Intel Core 2 Solo/Core Duo */
Stefan Reinauerc104cb02010-10-18 00:21:39 +0000365 { X86_VENDOR_INTEL, 0x10677 },
366 { X86_VENDOR_INTEL, 0x1067A },
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000367 { 0, 0 },
368};
369
370static const struct cpu_driver driver __cpu_driver = {
371 .ops = &cpu_dev_ops,
372 .id_table = cpu_table,
373};
374
Nico Huber68d7c7a2012-10-02 11:46:11 +0200375struct chip_operations cpu_intel_model_1067x_ops = {
376 CHIP_NAME("Intel Penryn CPU")
377};