blob: 4779a517fb0f2360241fe1f63dad1d451647391b [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);
152 if (conf->slfm && (msr.lo & (1 << 27))) /* Super LFM supported? */
153 msr.lo |= (1 << 28); /* Enable Super LFM. */
154 wrmsr(MSR_EXTENDED_CONFIG, msr);
155
156 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32))) {
157 /* Turbo supported? */
158 if ((stepping == 0xa) && (cores < 4)) {
159 msr = rdmsr(MSR_FSB_FREQ);
160 msr.lo |= (1 << 3); /* Enable hysteresis. */
161 wrmsr(MSR_FSB_FREQ, msr);
162 }
163 msr = rdmsr(IA32_PERF_CTL);
164 msr.hi &= ~(1 << (32 - 32)); /* Clear turbo disable. */
165 wrmsr(IA32_PERF_CTL, msr);
166 }
167
Patrick Georgi644e83b2013-02-09 15:35:30 +0100168 msr = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200169 msr.lo &= ~(1 << 11); /* Enable hw coordination. */
170 msr.lo |= (1 << 15); /* Lock config until next reset. */
Patrick Georgi644e83b2013-02-09 15:35:30 +0100171 wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200172}
173
174#define MSR_EMTTM_CR_TABLE(x) (0xa8 + (x))
175#define MSR_EMTTM_TABLE_NUM 6
176static void configure_emttm_tables(void)
177{
178 int i;
179 int num_states, pstate_idx;
180 msr_t msr;
181 sst_table_t pstates;
182
183 /* Gather p-state information. */
184 speedstep_gen_pstates(&pstates);
185
186 /* Never turbo mode or Super LFM. */
187 num_states = pstates.num_states;
188 if (pstates.states[0].is_turbo)
189 --num_states;
190 if (pstates.states[pstates.num_states - 1].is_slfm)
191 --num_states;
192 /* Repeat lowest p-state if we haven't enough states. */
193 const int num_lowest_pstate =
194 (num_states < MSR_EMTTM_TABLE_NUM)
195 ? (MSR_EMTTM_TABLE_NUM - num_states) + 1
196 : 1;
197 /* Start from the lowest entry but skip Super LFM. */
198 if (pstates.states[pstates.num_states - 1].is_slfm)
199 pstate_idx = pstates.num_states - 2;
200 else
201 pstate_idx = pstates.num_states - 1;
202 for (i = 0; i < MSR_EMTTM_TABLE_NUM; ++i) {
203 if (i >= num_lowest_pstate)
204 --pstate_idx;
205 const sst_state_t *const pstate = &pstates.states[pstate_idx];
206 printk(BIOS_DEBUG, "writing P-State %d: %d, %d, "
207 "%2d, 0x%02x, %d; encoded: 0x%04x\n",
208 pstate_idx, pstate->dynfsb, pstate->nonint,
209 pstate->ratio, pstate->vid, pstate->power,
210 SPEEDSTEP_ENCODE_STATE(*pstate));
211 msr.hi = 0;
212 msr.lo = SPEEDSTEP_ENCODE_STATE(pstates.states[pstate_idx]) &
213 /* Don't set half ratios. */
214 ~SPEEDSTEP_RATIO_NONINT;
215 wrmsr(MSR_EMTTM_CR_TABLE(i), msr);
216 }
217
218 msr = rdmsr(MSR_EMTTM_CR_TABLE(5));
219 msr.lo |= (1 << 31); /* lock tables */
220 wrmsr(MSR_EMTTM_CR_TABLE(5), msr);
221}
222
223static void configure_misc(const int eist, const int tm2, const int emttm)
224{
225 msr_t msr;
226
227 const u32 sub_cstates = cpuid_edx(5);
228
229 msr = rdmsr(IA32_MISC_ENABLES);
230 msr.lo |= (1 << 3); /* TM1 enable */
231 if (tm2)
232 msr.lo |= (1 << 13); /* TM2 enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000233 msr.lo |= (1 << 17); /* Bidirectional PROCHOT# */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200234 msr.lo |= (1 << 18); /* MONITOR/MWAIT enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000235
236 msr.lo |= (1 << 10); /* FERR# multiplexing */
237
Nico Huber68d7c7a2012-10-02 11:46:11 +0200238 if (eist)
239 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000240
241 /* Enable C2E */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200242 if (((sub_cstates >> (2 * 4)) & 0xf) >= 2) {
243 msr.lo |= (1 << 26);
244 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000245
246 /* Enable C4E */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200247 if (((sub_cstates >> (4 * 4)) & 0xf) >= 2) {
248 msr.hi |= (1 << (32 - 32)); // C4E
249 msr.hi |= (1 << (33 - 32)); // Hard C4E
250 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000251
Nico Huber68d7c7a2012-10-02 11:46:11 +0200252 /* Enable EMTTM */
253 if (emttm)
254 msr.hi |= (1 << (36 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000255
Nico Huber68d7c7a2012-10-02 11:46:11 +0200256 /* Enable turbo mode */
257 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32)))
258 msr.hi &= ~(1 << (38 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000259
Nico Huber68d7c7a2012-10-02 11:46:11 +0200260 wrmsr(IA32_MISC_ENABLES, msr);
261
262 if (eist) {
263 msr.lo |= (1 << 20); /* Lock Enhanced SpeedStep Enable */
264 wrmsr(IA32_MISC_ENABLES, msr);
265 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000266}
267
268#define PIC_SENS_CFG 0x1aa
Nico Huber68d7c7a2012-10-02 11:46:11 +0200269static void configure_pic_thermal_sensors(const int tm2, const int quad)
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000270{
271 msr_t msr;
272
273 msr = rdmsr(PIC_SENS_CFG);
274
Nico Huber68d7c7a2012-10-02 11:46:11 +0200275 if (quad)
276 msr.lo |= (1 << 31);
277 else
278 msr.lo &= ~(1 << 31);
279 if (tm2)
280 msr.lo |= (1 << 20); /* Enable TM1 if TM2 fails. */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000281 msr.lo |= (1 << 21); // inter-core lock TM1
Nico Huber68d7c7a2012-10-02 11:46:11 +0200282 msr.lo |= (1 << 4); // Enable bypass filter /* What does it do? */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000283
284 wrmsr(PIC_SENS_CFG, msr);
285}
286
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000287static void model_1067x_init(device_t cpu)
288{
289 char processor_name[49];
290
Nico Huber68d7c7a2012-10-02 11:46:11 +0200291
292 /* Gather some information: */
293
294 const struct cpuid_result cpuid1 = cpuid(1);
295
296 /* Read stepping. */
297 const char stepping = cpuid1.eax & 0xf;
298 /* Read number of cores. */
299 const char cores = (cpuid1.ebx >> 16) & 0xf;
300 /* Is this a quad core? */
301 const char quad = cores > 2;
302 /* Is this even a multiprocessor? */
303 const char mp = cores > 1;
304
305 /* Enable EMTTM on uni- and on multi-processors if it's not disabled. */
306 const char emttm = !mp || !(rdmsr(MSR_EXTENDED_CONFIG).lo & 4);
307
308 /* Is enhanced speedstep supported? */
309 const char eist = (cpuid1.ecx & (1 << 7)) &&
310 !(rdmsr(IA32_PLATFORM_ID).lo & (1 << 17));
311 /* Test for TM2 only if EIST is available. */
312 const char tm2 = eist && (cpuid1.ecx & (1 << 8));
313
314
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000315 /* Turn on caching if we haven't already */
316 x86_enable_cache();
317
318 /* Update the microcode */
Alexandru Gagniuc2c38f502013-12-06 23:14:54 -0600319 intel_update_microcode_from_cbfs();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000320
321 /* Print processor name */
322 fill_processor_name(processor_name);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000323 printk(BIOS_INFO, "CPU: %s.\n", processor_name);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000324
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000325 /* Setup MTRRs */
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100326 x86_setup_mtrrs();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000327 x86_mtrr_check();
328
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000329 /* Enable the local cpu apics */
330 setup_lapic();
331
332 /* Initialize the APIC timer */
333 init_timer();
334
335 /* Enable virtualization */
336 enable_vmx();
337
338 /* Configure C States */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200339 configure_c_states(quad);
340
341 /* Configure P States */
342 configure_p_states(stepping, cores);
343
344 /* EMTTM */
345 if (emttm)
346 configure_emttm_tables();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000347
348 /* Configure Enhanced SpeedStep and Thermal Sensors */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200349 configure_misc(eist, tm2, emttm);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000350
351 /* PIC thermal sensor control */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200352 configure_pic_thermal_sensors(tm2, quad);
Sven Schnelle51676b12012-07-29 19:18:03 +0200353
354 /* Start up my cpu siblings */
355 intel_sibling_init(cpu);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000356}
357
358static struct device_operations cpu_dev_ops = {
359 .init = model_1067x_init,
360};
361
362static struct cpu_device_id cpu_table[] = {
363 { X86_VENDOR_INTEL, 0x10676 }, /* Intel Core 2 Solo/Core Duo */
Stefan Reinauerc104cb02010-10-18 00:21:39 +0000364 { X86_VENDOR_INTEL, 0x10677 },
365 { X86_VENDOR_INTEL, 0x1067A },
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000366 { 0, 0 },
367};
368
369static const struct cpu_driver driver __cpu_driver = {
370 .ops = &cpu_dev_ops,
371 .id_table = cpu_table,
372};
373
Nico Huber68d7c7a2012-10-02 11:46:11 +0200374struct chip_operations cpu_intel_model_1067x_ops = {
375 CHIP_NAME("Intel Penryn CPU")
376};