blob: adc99cfd48cd6ba02d34dddcf6db477230378269 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 *
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>
25#include <device/pci.h>
26#include <string.h>
27#include <arch/acpi.h>
28#include <cpu/cpu.h>
29#include <cpu/x86/mtrr.h>
30#include <cpu/x86/msr.h>
31#include <cpu/x86/lapic.h>
32#include <cpu/intel/microcode.h>
33#include <cpu/intel/speedstep.h>
34#include <cpu/intel/turbo.h>
35#include <cpu/x86/cache.h>
36#include <cpu/x86/name.h>
Aaron Durbinf24262d2013-04-10 14:59:21 -050037#include <delay.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050038#include <pc80/mc146818rtc.h>
Aaron Durbin7c351312013-04-10 14:46:25 -050039#include <northbridge/intel/haswell/haswell.h>
40#include <southbridge/intel/lynxpoint/pch.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050041#include "haswell.h"
42#include "chip.h"
43
Aaron Durbin7c351312013-04-10 14:46:25 -050044/* Intel suggested latency times in units of 1024ns. */
45#define C_STATE_LATENCY_CONTROL_0_LIMIT 0x42
46#define C_STATE_LATENCY_CONTROL_1_LIMIT 0x73
47#define C_STATE_LATENCY_CONTROL_2_LIMIT 0x91
48#define C_STATE_LATENCY_CONTROL_3_LIMIT 0xe4
49#define C_STATE_LATENCY_CONTROL_4_LIMIT 0x145
50#define C_STATE_LATENCY_CONTROL_5_LIMIT 0x1ef
51
52#define C_STATE_LATENCY_MICRO_SECONDS(limit, base) \
53 (((1 << ((base)*5)) * (limit)) / 1000)
54#define C_STATE_LATENCY_FROM_LAT_REG(reg) \
55 C_STATE_LATENCY_MICRO_SECONDS(C_STATE_LATENCY_CONTROL_ ##reg## _LIMIT, \
56 (IRTL_1024_NS >> 10))
57
Aaron Durbin76c37002012-10-30 09:03:43 -050058/*
Aaron Durbin7c351312013-04-10 14:46:25 -050059 * List of supported C-states in this processor. Only the ULT parts support C8,
60 * C9, and C10.
Aaron Durbin76c37002012-10-30 09:03:43 -050061 */
Aaron Durbin7c351312013-04-10 14:46:25 -050062enum {
63 C_STATE_C0, /* 0 */
64 C_STATE_C1, /* 1 */
65 C_STATE_C1E, /* 2 */
66 C_STATE_C3, /* 3 */
67 C_STATE_C6_SHORT_LAT, /* 4 */
68 C_STATE_C6_LONG_LAT, /* 5 */
69 C_STATE_C7_SHORT_LAT, /* 6 */
70 C_STATE_C7_LONG_LAT, /* 7 */
71 C_STATE_C7S_SHORT_LAT, /* 8 */
72 C_STATE_C7S_LONG_LAT, /* 9 */
73 C_STATE_C8, /* 10 */
74 C_STATE_C9, /* 11 */
75 C_STATE_C10, /* 12 */
76 NUM_C_STATES
Aaron Durbin76c37002012-10-30 09:03:43 -050077};
Aaron Durbin7c351312013-04-10 14:46:25 -050078
79#define MWAIT_RES(state, sub_state) \
80 { \
81 .addrl = (((state) << 4) | (sub_state)), \
82 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
83 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
84 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
85 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
86 }
87
88static acpi_cstate_t cstate_map[NUM_C_STATES] = {
89 [C_STATE_C0] = { },
90 [C_STATE_C1] = {
91 .latency = 0,
92 .power = 1000,
93 .resource = MWAIT_RES(0,0),
94 },
95 [C_STATE_C1E] = {
96 .latency = 0,
97 .power = 1000,
98 .resource = MWAIT_RES(0,1),
99 },
100 [C_STATE_C3] = {
101 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
102 .power = 900,
103 .resource = MWAIT_RES(1, 0),
104 },
105 [C_STATE_C6_SHORT_LAT] = {
106 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
107 .power = 800,
108 .resource = MWAIT_RES(2, 0),
109 },
110 [C_STATE_C6_LONG_LAT] = {
111 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
112 .power = 800,
113 .resource = MWAIT_RES(2, 1),
114 },
115 [C_STATE_C7_SHORT_LAT] = {
116 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
117 .power = 700,
118 .resource = MWAIT_RES(3, 0),
119 },
120 [C_STATE_C7_LONG_LAT] = {
121 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
122 .power = 700,
123 .resource = MWAIT_RES(3, 1),
124 },
125 [C_STATE_C7S_SHORT_LAT] = {
126 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
127 .power = 700,
128 .resource = MWAIT_RES(3, 2),
129 },
130 [C_STATE_C7S_LONG_LAT] = {
131 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
132 .power = 700,
133 .resource = MWAIT_RES(3, 3),
134 },
135 [C_STATE_C8] = {
136 .latency = C_STATE_LATENCY_FROM_LAT_REG(3),
137 .power = 600,
138 .resource = MWAIT_RES(4, 0),
139 },
140 [C_STATE_C9] = {
141 .latency = C_STATE_LATENCY_FROM_LAT_REG(4),
142 .power = 500,
143 .resource = MWAIT_RES(5, 0),
144 },
145 [C_STATE_C10] = {
146 .latency = C_STATE_LATENCY_FROM_LAT_REG(5),
147 .power = 400,
148 .resource = MWAIT_RES(6, 0),
149 },
150};
Aaron Durbin76c37002012-10-30 09:03:43 -0500151
152/* Convert time in seconds to POWER_LIMIT_1_TIME MSR value */
153static const u8 power_limit_time_sec_to_msr[] = {
154 [0] = 0x00,
155 [1] = 0x0a,
156 [2] = 0x0b,
157 [3] = 0x4b,
158 [4] = 0x0c,
159 [5] = 0x2c,
160 [6] = 0x4c,
161 [7] = 0x6c,
162 [8] = 0x0d,
163 [10] = 0x2d,
164 [12] = 0x4d,
165 [14] = 0x6d,
166 [16] = 0x0e,
167 [20] = 0x2e,
168 [24] = 0x4e,
169 [28] = 0x6e,
170 [32] = 0x0f,
171 [40] = 0x2f,
172 [48] = 0x4f,
173 [56] = 0x6f,
174 [64] = 0x10,
175 [80] = 0x30,
176 [96] = 0x50,
177 [112] = 0x70,
178 [128] = 0x11,
179};
180
181/* Convert POWER_LIMIT_1_TIME MSR value to seconds */
182static const u8 power_limit_time_msr_to_sec[] = {
183 [0x00] = 0,
184 [0x0a] = 1,
185 [0x0b] = 2,
186 [0x4b] = 3,
187 [0x0c] = 4,
188 [0x2c] = 5,
189 [0x4c] = 6,
190 [0x6c] = 7,
191 [0x0d] = 8,
192 [0x2d] = 10,
193 [0x4d] = 12,
194 [0x6d] = 14,
195 [0x0e] = 16,
196 [0x2e] = 20,
197 [0x4e] = 24,
198 [0x6e] = 28,
199 [0x0f] = 32,
200 [0x2f] = 40,
201 [0x4f] = 48,
202 [0x6f] = 56,
203 [0x10] = 64,
204 [0x30] = 80,
205 [0x50] = 96,
206 [0x70] = 112,
207 [0x11] = 128,
208};
209
Aaron Durbin7c351312013-04-10 14:46:25 -0500210/* Dynamically determine if the part is ULT. */
211static int is_ult(void)
212{
213 static int ult = -1;
214
215 if (ult < 0)
216 ult = (cpuid_eax(1) > 0x40650);
217
218 return ult;
219}
220
Aaron Durbinf24262d2013-04-10 14:59:21 -0500221/* The core 100MHz BLCK is disabled in deeper c-states. One needs to calibrate
222 * the 100MHz BCLCK against the 24MHz BLCK to restore the clocks properly
223 * when a core is woken up. */
224static int pcode_ready(void)
225{
226 int wait_count;
227 const int delay_step = 10;
228
229 wait_count = 0;
230 do {
231 if (!(MCHBAR32(BIOS_MAILBOX_INTERFACE) & MAILBOX_RUN_BUSY))
232 return 0;
233 wait_count += delay_step;
234 udelay(delay_step);
235 } while (wait_count < 1000);
236
237 return -1;
238}
239
240static void calibrate_24mhz_bclk(void)
241{
242 int err_code;
243
244 if (pcode_ready() < 0) {
245 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
246 return;
247 }
248
249 /* A non-zero value initiates the PCODE calibration. */
250 MCHBAR32(BIOS_MAILBOX_DATA) = ~0;
251 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
252 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_FSM_MEASURE_INTVL;
253
254 if (pcode_ready() < 0) {
255 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
256 return;
257 }
258
259 err_code = MCHBAR32(BIOS_MAILBOX_INTERFACE) & 0xff;
260
261 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration response: %d\n",
262 err_code);
263
264 /* Read the calibrated value. */
265 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
266 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_READ_CALIBRATION;
267
268 if (pcode_ready() < 0) {
269 printk(BIOS_ERR, "PCODE: mailbox timeout on read.\n");
270 return;
271 }
272
273 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration value: 0x%08x\n",
274 MCHBAR32(BIOS_MAILBOX_DATA));
275}
276
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700277static u32 pcode_mailbox_read(u32 command)
278{
279 if (pcode_ready() < 0) {
280 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
281 return 0;
282 }
283
284 /* Send command and start transaction */
285 MCHBAR32(BIOS_MAILBOX_INTERFACE) = command | MAILBOX_RUN_BUSY;
286
287 if (pcode_ready() < 0) {
288 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
289 return 0;
290 }
291
292 /* Read mailbox */
293 return MCHBAR32(BIOS_MAILBOX_DATA);
294}
295
Aaron Durbin16cbf892013-07-03 16:21:28 -0500296static void initialize_vr_config(void)
297{
298 msr_t msr;
299
300 printk(BIOS_DEBUG, "Initializing VR config.\n");
301
302 /* Configure VR_CURRENT_CONFIG. */
303 msr = rdmsr(MSR_VR_CURRENT_CONFIG);
304 /* Preserve bits 63 and 62. Bit 62 is PSI4 enable, but it is only valid
305 * on ULT systems. */
306 msr.hi &= 0xc0000000;
307 msr.hi |= (0x01 << (52 - 32)); /* PSI3 threshold - 1A. */
308 msr.hi |= (0x05 << (42 - 32)); /* PSI2 threshold - 5A. */
309 msr.hi |= (0x0f << (32 - 32)); /* PSI1 threshold - 15A. */
310
311 if (is_ult())
312 msr.hi |= (1 << (62 - 32)); /* Enable PSI4 */
313 /* Leave the max instantaneous current limit (12:0) to default. */
314 wrmsr(MSR_VR_CURRENT_CONFIG, msr);
315
316 /* Configure VR_MISC_CONFIG MSR. */
317 msr = rdmsr(MSR_VR_MISC_CONFIG);
318 /* Set the IOUT_SLOPE scalar applied to dIout in U10.1.9 format. */
319 msr.hi &= ~(0x3ff << (40 - 32));
320 msr.hi |= (0x200 << (40 - 32)); /* 1.0 */
321 /* Set IOUT_OFFSET to 0. */
322 msr.hi &= ~0xff;
323 /* Set exit ramp rate to fast. */
324 msr.hi |= (1 << (50 - 32));
325 /* Set entry ramp rate to slow. */
326 msr.hi &= ~(1 << (51 - 32));
327 /* Enable decay mode on C-state entry. */
328 msr.hi |= (1 << (52 - 32));
329 /* Set the slow ramp rate to be fast ramp rate / 4 */
330 msr.hi &= ~(0x3 << (53 - 32));
331 msr.hi |= (0x01 << (53 - 32));
332 /* Set MIN_VID (31:24) to allow CPU to have full control. */
333 msr.lo &= ~0xff000000;
334 wrmsr(MSR_VR_MISC_CONFIG, msr);
335
336 /* Configure VR_MISC_CONFIG2 MSR. */
337 if (is_ult()) {
338 msr = rdmsr(MSR_VR_MISC_CONFIG2);
339 msr.lo &= ~0xffff;
340 /* Allow CPU to control minimum voltage completely (15:8) and
341 * set the fast ramp voltage to 1110mV (0x6f in 10mV steps). */
342 msr.lo |= 0x006f;
343 wrmsr(MSR_VR_MISC_CONFIG2, msr);
344 }
345}
346
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700347static void configure_pch_power_sharing(void)
348{
349 u32 pch_power, pch_power_ext, pmsync, pmsync2;
350 int i;
351
352 /* Read PCH Power levels from PCODE */
353 pch_power = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER);
354 pch_power_ext = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER_EXT);
355
356 printk(BIOS_INFO, "PCH Power: PCODE Levels 0x%08x 0x%08x\n",
357 pch_power, pch_power_ext);
358
359 pmsync = RCBA32(PMSYNC_CONFIG);
360 pmsync2 = RCBA32(PMSYNC_CONFIG2);
361
362 /* Program PMSYNC_TPR_CONFIG PCH power limit values
363 * pmsync[0:4] = mailbox[0:5]
364 * pmsync[8:12] = mailbox[6:11]
365 * pmsync[16:20] = mailbox[12:17]
366 */
367 for (i = 0; i < 3; i++) {
368 u32 level = pch_power & 0x3f;
369 pch_power >>= 6;
370 pmsync &= ~(0x1f << (i * 8));
371 pmsync |= (level & 0x1f) << (i * 8);
372 }
373 RCBA32(PMSYNC_CONFIG) = pmsync;
374
375 /* Program PMSYNC_TPR_CONFIG2 Extended PCH power limit values
376 * pmsync2[0:4] = mailbox[23:18]
377 * pmsync2[8:12] = mailbox_ext[6:11]
378 * pmsync2[16:20] = mailbox_ext[12:17]
379 * pmsync2[24:28] = mailbox_ext[18:22]
380 */
381 pmsync2 &= ~0x1f;
382 pmsync2 |= pch_power & 0x1f;
383
384 for (i = 1; i < 4; i++) {
385 u32 level = pch_power_ext & 0x3f;
386 pch_power_ext >>= 6;
387 pmsync2 &= ~(0x1f << (i * 8));
388 pmsync2 |= (level & 0x1f) << (i * 8);
389 }
390 RCBA32(PMSYNC_CONFIG2) = pmsync2;
391}
392
Aaron Durbin76c37002012-10-30 09:03:43 -0500393int cpu_config_tdp_levels(void)
394{
395 msr_t platform_info;
396
397 /* Bits 34:33 indicate how many levels supported */
398 platform_info = rdmsr(MSR_PLATFORM_INFO);
399 return (platform_info.hi >> 1) & 3;
400}
401
402/*
403 * Configure processor power limits if possible
404 * This must be done AFTER set of BIOS_RESET_CPL
405 */
406void set_power_limits(u8 power_limit_1_time)
407{
408 msr_t msr = rdmsr(MSR_PLATFORM_INFO);
409 msr_t limit;
410 unsigned power_unit;
411 unsigned tdp, min_power, max_power, max_time;
412 u8 power_limit_1_val;
413
414 if (power_limit_1_time > ARRAY_SIZE(power_limit_time_sec_to_msr))
Duncan Lauriec70353f2013-06-28 14:40:38 -0700415 power_limit_1_time = 28;
Aaron Durbin76c37002012-10-30 09:03:43 -0500416
417 if (!(msr.lo & PLATFORM_INFO_SET_TDP))
418 return;
419
420 /* Get units */
421 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
422 power_unit = 2 << ((msr.lo & 0xf) - 1);
423
424 /* Get power defaults for this SKU */
425 msr = rdmsr(MSR_PKG_POWER_SKU);
426 tdp = msr.lo & 0x7fff;
427 min_power = (msr.lo >> 16) & 0x7fff;
428 max_power = msr.hi & 0x7fff;
429 max_time = (msr.hi >> 16) & 0x7f;
430
431 printk(BIOS_DEBUG, "CPU TDP: %u Watts\n", tdp / power_unit);
432
433 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time)
434 power_limit_1_time = power_limit_time_msr_to_sec[max_time];
435
436 if (min_power > 0 && tdp < min_power)
437 tdp = min_power;
438
439 if (max_power > 0 && tdp > max_power)
440 tdp = max_power;
441
442 power_limit_1_val = power_limit_time_sec_to_msr[power_limit_1_time];
443
444 /* Set long term power limit to TDP */
445 limit.lo = 0;
446 limit.lo |= tdp & PKG_POWER_LIMIT_MASK;
447 limit.lo |= PKG_POWER_LIMIT_EN;
448 limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) <<
449 PKG_POWER_LIMIT_TIME_SHIFT;
450
451 /* Set short term power limit to 1.25 * TDP */
452 limit.hi = 0;
453 limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK;
454 limit.hi |= PKG_POWER_LIMIT_EN;
Duncan Lauriec70353f2013-06-28 14:40:38 -0700455 /* Power limit 2 time is only programmable on server SKU */
Aaron Durbin76c37002012-10-30 09:03:43 -0500456
457 wrmsr(MSR_PKG_POWER_LIMIT, limit);
458
Duncan Lauriec70353f2013-06-28 14:40:38 -0700459 /* Set power limit values in MCHBAR as well */
460 MCHBAR32(MCH_PKG_POWER_LIMIT_LO) = limit.lo;
461 MCHBAR32(MCH_PKG_POWER_LIMIT_HI) = limit.hi;
462
463 /* Set DDR RAPL power limit by copying from MMIO to MSR */
464 msr.lo = MCHBAR32(MCH_DDR_POWER_LIMIT_LO);
465 msr.hi = MCHBAR32(MCH_DDR_POWER_LIMIT_HI);
466 wrmsr(MSR_DDR_RAPL_LIMIT, msr);
467
Aaron Durbin76c37002012-10-30 09:03:43 -0500468 /* Use nominal TDP values for CPUs with configurable TDP */
469 if (cpu_config_tdp_levels()) {
470 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
471 limit.hi = 0;
472 limit.lo = msr.lo & 0xff;
473 wrmsr(MSR_TURBO_ACTIVATION_RATIO, limit);
474 }
475}
476
Aaron Durbin76c37002012-10-30 09:03:43 -0500477static void configure_c_states(void)
478{
479 msr_t msr;
480
481 msr = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
Aaron Durbin7c351312013-04-10 14:46:25 -0500482 msr.lo |= (1 << 30); // Package c-state Undemotion Enable
483 msr.lo |= (1 << 29); // Package c-state Demotion Enable
Aaron Durbin76c37002012-10-30 09:03:43 -0500484 msr.lo |= (1 << 28); // C1 Auto Undemotion Enable
485 msr.lo |= (1 << 27); // C3 Auto Undemotion Enable
486 msr.lo |= (1 << 26); // C1 Auto Demotion Enable
487 msr.lo |= (1 << 25); // C3 Auto Demotion Enable
488 msr.lo &= ~(1 << 10); // Disable IO MWAIT redirection
Duncan Laurie1c097102013-05-07 13:19:56 -0700489 /* The deepest package c-state defaults to factory-configured value. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500490 wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr);
491
492 msr = rdmsr(MSR_PMG_IO_CAPTURE_BASE);
Aaron Durbin7c351312013-04-10 14:46:25 -0500493 msr.lo &= ~0xffff;
494 msr.lo |= (get_pmbase() + 0x14); // LVL_2 base address
495 /* The deepest package c-state defaults to factory-configured value. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500496 wrmsr(MSR_PMG_IO_CAPTURE_BASE, msr);
497
498 msr = rdmsr(MSR_MISC_PWR_MGMT);
499 msr.lo &= ~(1 << 0); // Enable P-state HW_ALL coordination
500 wrmsr(MSR_MISC_PWR_MGMT, msr);
501
502 msr = rdmsr(MSR_POWER_CTL);
503 msr.lo |= (1 << 18); // Enable Energy Perf Bias MSR 0x1b0
504 msr.lo |= (1 << 1); // C1E Enable
505 msr.lo |= (1 << 0); // Bi-directional PROCHOT#
506 wrmsr(MSR_POWER_CTL, msr);
507
Aaron Durbin7c351312013-04-10 14:46:25 -0500508 /* C-state Interrupt Response Latency Control 0 - package C3 latency */
Aaron Durbin76c37002012-10-30 09:03:43 -0500509 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500510 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_0_LIMIT;
511 wrmsr(MSR_C_STATE_LATENCY_CONTROL_0, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500512
Aaron Durbin7c351312013-04-10 14:46:25 -0500513 /* C-state Interrupt Response Latency Control 1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500514 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500515 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_1_LIMIT;
516 wrmsr(MSR_C_STATE_LATENCY_CONTROL_1, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500517
Aaron Durbin7c351312013-04-10 14:46:25 -0500518 /* C-state Interrupt Response Latency Control 2 - package C6/C7 short */
Aaron Durbin76c37002012-10-30 09:03:43 -0500519 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500520 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_2_LIMIT;
521 wrmsr(MSR_C_STATE_LATENCY_CONTROL_2, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500522
Aaron Durbin7c351312013-04-10 14:46:25 -0500523 /* Haswell ULT only supoprts the 3-5 latency response registers.*/
524 if (is_ult()) {
525 /* C-state Interrupt Response Latency Control 3 - package C8 */
526 msr.hi = 0;
527 msr.lo = IRTL_VALID | IRTL_1024_NS |
528 C_STATE_LATENCY_CONTROL_3_LIMIT;
529 wrmsr(MSR_C_STATE_LATENCY_CONTROL_3, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500530
Aaron Durbin7c351312013-04-10 14:46:25 -0500531 /* C-state Interrupt Response Latency Control 4 - package C9 */
532 msr.hi = 0;
533 msr.lo = IRTL_VALID | IRTL_1024_NS |
534 C_STATE_LATENCY_CONTROL_4_LIMIT;
535 wrmsr(MSR_C_STATE_LATENCY_CONTROL_4, msr);
536
537 /* C-state Interrupt Response Latency Control 5 - package C10 */
538 msr.hi = 0;
539 msr.lo = IRTL_VALID | IRTL_1024_NS |
540 C_STATE_LATENCY_CONTROL_5_LIMIT;
541 wrmsr(MSR_C_STATE_LATENCY_CONTROL_5, msr);
542 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500543}
Aaron Durbin76c37002012-10-30 09:03:43 -0500544
545static void configure_thermal_target(void)
546{
547 struct cpu_intel_haswell_config *conf;
548 device_t lapic;
549 msr_t msr;
550
551 /* Find pointer to CPU configuration */
552 lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
553 if (!lapic || !lapic->chip_info)
554 return;
555 conf = lapic->chip_info;
556
Martin Roth4c3ab732013-07-08 16:23:54 -0600557 /* Set TCC activation offset if supported */
Aaron Durbin76c37002012-10-30 09:03:43 -0500558 msr = rdmsr(MSR_PLATFORM_INFO);
559 if ((msr.lo & (1 << 30)) && conf->tcc_offset) {
560 msr = rdmsr(MSR_TEMPERATURE_TARGET);
561 msr.lo &= ~(0xf << 24); /* Bits 27:24 */
562 msr.lo |= (conf->tcc_offset & 0xf) << 24;
563 wrmsr(MSR_TEMPERATURE_TARGET, msr);
564 }
565}
566
567static void configure_misc(void)
568{
569 msr_t msr;
570
571 msr = rdmsr(IA32_MISC_ENABLE);
572 msr.lo |= (1 << 0); /* Fast String enable */
573 msr.lo |= (1 << 3); /* TM1/TM2/EMTTM enable */
574 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
575 wrmsr(IA32_MISC_ENABLE, msr);
576
577 /* Disable Thermal interrupts */
578 msr.lo = 0;
579 msr.hi = 0;
580 wrmsr(IA32_THERM_INTERRUPT, msr);
581
582 /* Enable package critical interrupt only */
583 msr.lo = 1 << 4;
584 msr.hi = 0;
585 wrmsr(IA32_PACKAGE_THERM_INTERRUPT, msr);
586}
587
588static void enable_lapic_tpr(void)
589{
590 msr_t msr;
591
592 msr = rdmsr(MSR_PIC_MSG_CONTROL);
593 msr.lo &= ~(1 << 10); /* Enable APIC TPR updates */
594 wrmsr(MSR_PIC_MSG_CONTROL, msr);
595}
596
597static void configure_dca_cap(void)
598{
599 struct cpuid_result cpuid_regs;
600 msr_t msr;
601
602 /* Check feature flag in CPUID.(EAX=1):ECX[18]==1 */
603 cpuid_regs = cpuid(1);
604 if (cpuid_regs.ecx & (1 << 18)) {
605 msr = rdmsr(IA32_PLATFORM_DCA_CAP);
606 msr.lo |= 1;
607 wrmsr(IA32_PLATFORM_DCA_CAP, msr);
608 }
609}
610
611static void set_max_ratio(void)
612{
613 msr_t msr, perf_ctl;
614
615 perf_ctl.hi = 0;
616
617 /* Check for configurable TDP option */
618 if (cpu_config_tdp_levels()) {
619 /* Set to nominal TDP ratio */
620 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
621 perf_ctl.lo = (msr.lo & 0xff) << 8;
622 } else {
623 /* Platform Info bits 15:8 give max ratio */
624 msr = rdmsr(MSR_PLATFORM_INFO);
625 perf_ctl.lo = msr.lo & 0xff00;
626 }
627 wrmsr(IA32_PERF_CTL, perf_ctl);
628
629 printk(BIOS_DEBUG, "haswell: frequency set to %d\n",
630 ((perf_ctl.lo >> 8) & 0xff) * HASWELL_BCLK);
631}
632
633static void set_energy_perf_bias(u8 policy)
634{
635 msr_t msr;
Aaron Durbindc278f82012-12-11 17:15:13 -0600636 int ecx;
637
638 /* Determine if energy efficient policy is supported. */
639 ecx = cpuid_ecx(0x6);
640 if (!(ecx & (1 << 3)))
641 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500642
643 /* Energy Policy is bits 3:0 */
644 msr = rdmsr(IA32_ENERGY_PERFORMANCE_BIAS);
645 msr.lo &= ~0xf;
646 msr.lo |= policy & 0xf;
647 wrmsr(IA32_ENERGY_PERFORMANCE_BIAS, msr);
648
649 printk(BIOS_DEBUG, "haswell: energy policy set to %u\n",
650 policy);
651}
652
653static void configure_mca(void)
654{
655 msr_t msr;
Aaron Durbin24614af2013-01-12 01:07:28 -0600656 const unsigned int mcg_cap_msr = 0x179;
Aaron Durbin76c37002012-10-30 09:03:43 -0500657 int i;
Aaron Durbin24614af2013-01-12 01:07:28 -0600658 int num_banks;
Aaron Durbin76c37002012-10-30 09:03:43 -0500659
Aaron Durbin24614af2013-01-12 01:07:28 -0600660 msr = rdmsr(mcg_cap_msr);
661 num_banks = msr.lo & 0xff;
Aaron Durbin76c37002012-10-30 09:03:43 -0500662 msr.lo = msr.hi = 0;
Aaron Durbin24614af2013-01-12 01:07:28 -0600663 /* TODO(adurbin): This should only be done on a cold boot. Also, some
664 * of these banks are core vs package scope. For now every CPU clears
665 * every bank. */
666 for (i = 0; i < num_banks; i++)
Aaron Durbin76c37002012-10-30 09:03:43 -0500667 wrmsr(IA32_MC0_STATUS + (i * 4), msr);
668}
669
Aaron Durbin305b1f02013-01-15 08:27:05 -0600670static void bsp_init_before_ap_bringup(struct bus *cpu_bus)
Aaron Durbin76c37002012-10-30 09:03:43 -0500671{
Aaron Durbin305b1f02013-01-15 08:27:05 -0600672 struct device_path cpu_path;
673 struct cpu_info *info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500674 char processor_name[49];
Aaron Durbin76c37002012-10-30 09:03:43 -0500675
676 /* Print processor name */
677 fill_processor_name(processor_name);
678 printk(BIOS_INFO, "CPU: %s.\n", processor_name);
679
Aaron Durbin305b1f02013-01-15 08:27:05 -0600680 /* Ensure the local apic is enabled */
681 enable_lapic();
682
683 /* Set the device path of the boot cpu. */
684 cpu_path.type = DEVICE_PATH_APIC;
685 cpu_path.apic.apic_id = lapicid();
686
687 /* Find the device structure for the boot cpu. */
688 info = cpu_info();
689 info->cpu = alloc_find_dev(cpu_bus, &cpu_path);
690
691 if (info->index != 0)
692 printk(BIOS_CRIT, "BSP index(%d) != 0!\n", info->index);
693
Aaron Durbin7af20692013-01-14 14:54:41 -0600694 /* Setup MTRRs based on physical address size. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500695 x86_setup_fixed_mtrrs();
Aaron Durbin7af20692013-01-14 14:54:41 -0600696 x86_setup_var_mtrrs(cpuid_eax(0x80000008) & 0xff, 2);
Aaron Durbin76c37002012-10-30 09:03:43 -0500697 x86_mtrr_check();
698
Aaron Durbin16cbf892013-07-03 16:21:28 -0500699 initialize_vr_config();
700
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700701 if (is_ult()) {
Aaron Durbinf24262d2013-04-10 14:59:21 -0500702 calibrate_24mhz_bclk();
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700703 configure_pch_power_sharing();
704 }
Aaron Durbinf24262d2013-04-10 14:59:21 -0500705
Aaron Durbin305b1f02013-01-15 08:27:05 -0600706 /* Call through the cpu driver's initialization. */
707 cpu_initialize(0);
Aaron Durbin7af20692013-01-14 14:54:41 -0600708}
709
Aaron Durbin305b1f02013-01-15 08:27:05 -0600710/* All CPUs including BSP will run the following function. */
711static void haswell_init(device_t cpu)
Aaron Durbin7af20692013-01-14 14:54:41 -0600712{
713 /* Clear out pending MCEs */
714 configure_mca();
715
Aaron Durbin76c37002012-10-30 09:03:43 -0500716 /* Enable the local cpu apics */
717 enable_lapic_tpr();
718 setup_lapic();
719
720 /* Configure C States */
Aaron Durbin7c351312013-04-10 14:46:25 -0500721 configure_c_states();
Aaron Durbin76c37002012-10-30 09:03:43 -0500722
723 /* Configure Enhanced SpeedStep and Thermal Sensors */
724 configure_misc();
725
726 /* Thermal throttle activation offset */
727 configure_thermal_target();
728
729 /* Enable Direct Cache Access */
730 configure_dca_cap();
731
732 /* Set energy policy */
733 set_energy_perf_bias(ENERGY_POLICY_NORMAL);
734
735 /* Set Max Ratio */
736 set_max_ratio();
737
738 /* Enable Turbo */
739 enable_turbo();
Aaron Durbin7af20692013-01-14 14:54:41 -0600740}
Aaron Durbin76c37002012-10-30 09:03:43 -0500741
Aaron Durbin7af20692013-01-14 14:54:41 -0600742void bsp_init_and_start_aps(struct bus *cpu_bus)
743{
Aaron Durbin305b1f02013-01-15 08:27:05 -0600744 int max_cpus;
745 int num_aps;
746 const void *microcode_patch;
747
Martin Roth4c3ab732013-07-08 16:23:54 -0600748 /* Perform any necessary BSP initialization before APs are brought up.
749 * This call also allows the BSP to prepare for any secondary effects
Aaron Durbin7af20692013-01-14 14:54:41 -0600750 * from calling cpu_initialize() such as smm_init(). */
Aaron Durbin305b1f02013-01-15 08:27:05 -0600751 bsp_init_before_ap_bringup(cpu_bus);
Aaron Durbin7af20692013-01-14 14:54:41 -0600752
Aaron Durbin305b1f02013-01-15 08:27:05 -0600753 microcode_patch = intel_microcode_find();
Aaron Durbin7af20692013-01-14 14:54:41 -0600754
Aaron Durbin305b1f02013-01-15 08:27:05 -0600755 /* This needs to be called after the mtrr setup so the BSP mtrrs
756 * can be mirrored by the APs. */
757 if (setup_ap_init(cpu_bus, &max_cpus, microcode_patch)) {
758 printk(BIOS_CRIT, "AP setup initialization failed. "
759 "No APs will be brought up.\n");
760 return;
Aaron Durbin7af20692013-01-14 14:54:41 -0600761 }
Aaron Durbin305b1f02013-01-15 08:27:05 -0600762
763 num_aps = max_cpus - 1;
764 if (start_aps(cpu_bus, num_aps)) {
765 printk(BIOS_CRIT, "AP startup failed. Trying to continue.\n");
766 }
767
768 if (smm_initialize()) {
Martin Roth4c3ab732013-07-08 16:23:54 -0600769 printk(BIOS_CRIT, "SMM Initialization failed...\n");
Aaron Durbin305b1f02013-01-15 08:27:05 -0600770 return;
771 }
772
Aaron Durbin305b1f02013-01-15 08:27:05 -0600773 /* After SMM relocation a 2nd microcode load is required. */
774 intel_microcode_load_unlocked(microcode_patch);
Aaron Durbin23f50162013-04-03 09:55:22 -0500775
776 /* Enable ROM caching if option was selected. */
777 x86_mtrr_enable_rom_caching();
Aaron Durbin76c37002012-10-30 09:03:43 -0500778}
779
780static struct device_operations cpu_dev_ops = {
781 .init = haswell_init,
782};
783
784static struct cpu_device_id cpu_table[] = {
785 { X86_VENDOR_INTEL, 0x306c1 }, /* Intel Haswell 4+2 A0 */
786 { X86_VENDOR_INTEL, 0x306c2 }, /* Intel Haswell 4+2 B0 */
Duncan Laurie512540492012-12-17 11:24:45 -0800787 { X86_VENDOR_INTEL, 0x40650 }, /* Intel Haswell ULT B0 */
788 { X86_VENDOR_INTEL, 0x40651 }, /* Intel Haswell ULT B1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500789 { 0, 0 },
790};
791
792static const struct cpu_driver driver __cpu_driver = {
793 .ops = &cpu_dev_ops,
794 .id_table = cpu_table,
Aaron Durbin7c351312013-04-10 14:46:25 -0500795 .cstates = cstate_map,
Aaron Durbin76c37002012-10-30 09:03:43 -0500796};
797