blob: aa77964f683ef271ac7eed8dac218f63f030c2bc [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.
Aaron Durbin76c37002012-10-30 09:03:43 -050016 */
17
18#include <console/console.h>
19#include <device/device.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050020#include <string.h>
21#include <arch/acpi.h>
22#include <cpu/cpu.h>
23#include <cpu/x86/mtrr.h>
24#include <cpu/x86/msr.h>
Aaron Durbin014baea2014-03-28 22:01:05 -050025#include <cpu/x86/mp.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050026#include <cpu/x86/lapic.h>
27#include <cpu/intel/microcode.h>
28#include <cpu/intel/speedstep.h>
29#include <cpu/intel/turbo.h>
30#include <cpu/x86/cache.h>
31#include <cpu/x86/name.h>
Aaron Durbin6a360042014-02-13 10:30:42 -060032#include <cpu/x86/smm.h>
Aaron Durbinf24262d2013-04-10 14:59:21 -050033#include <delay.h>
Aaron Durbin7c351312013-04-10 14:46:25 -050034#include <northbridge/intel/haswell/haswell.h>
35#include <southbridge/intel/lynxpoint/pch.h>
Matt DeVilliered6fe2f2016-12-14 16:12:43 -060036#include <cpu/intel/common/common.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050037#include "haswell.h"
38#include "chip.h"
39
Aaron Durbin7c351312013-04-10 14:46:25 -050040/* Intel suggested latency times in units of 1024ns. */
41#define C_STATE_LATENCY_CONTROL_0_LIMIT 0x42
42#define C_STATE_LATENCY_CONTROL_1_LIMIT 0x73
43#define C_STATE_LATENCY_CONTROL_2_LIMIT 0x91
44#define C_STATE_LATENCY_CONTROL_3_LIMIT 0xe4
45#define C_STATE_LATENCY_CONTROL_4_LIMIT 0x145
46#define C_STATE_LATENCY_CONTROL_5_LIMIT 0x1ef
47
48#define C_STATE_LATENCY_MICRO_SECONDS(limit, base) \
49 (((1 << ((base)*5)) * (limit)) / 1000)
50#define C_STATE_LATENCY_FROM_LAT_REG(reg) \
51 C_STATE_LATENCY_MICRO_SECONDS(C_STATE_LATENCY_CONTROL_ ##reg## _LIMIT, \
Lee Leahy7b5f12b92017-03-15 17:16:59 -070052 (IRTL_1024_NS >> 10))
Aaron Durbin7c351312013-04-10 14:46:25 -050053
Aaron Durbin76c37002012-10-30 09:03:43 -050054/*
Aaron Durbin7c351312013-04-10 14:46:25 -050055 * List of supported C-states in this processor. Only the ULT parts support C8,
56 * C9, and C10.
Aaron Durbin76c37002012-10-30 09:03:43 -050057 */
Aaron Durbin7c351312013-04-10 14:46:25 -050058enum {
59 C_STATE_C0, /* 0 */
60 C_STATE_C1, /* 1 */
61 C_STATE_C1E, /* 2 */
62 C_STATE_C3, /* 3 */
63 C_STATE_C6_SHORT_LAT, /* 4 */
64 C_STATE_C6_LONG_LAT, /* 5 */
65 C_STATE_C7_SHORT_LAT, /* 6 */
66 C_STATE_C7_LONG_LAT, /* 7 */
67 C_STATE_C7S_SHORT_LAT, /* 8 */
68 C_STATE_C7S_LONG_LAT, /* 9 */
69 C_STATE_C8, /* 10 */
70 C_STATE_C9, /* 11 */
71 C_STATE_C10, /* 12 */
72 NUM_C_STATES
Aaron Durbin76c37002012-10-30 09:03:43 -050073};
Aaron Durbin7c351312013-04-10 14:46:25 -050074
75#define MWAIT_RES(state, sub_state) \
76 { \
77 .addrl = (((state) << 4) | (sub_state)), \
78 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
79 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
80 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
81 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
82 }
83
84static acpi_cstate_t cstate_map[NUM_C_STATES] = {
85 [C_STATE_C0] = { },
86 [C_STATE_C1] = {
87 .latency = 0,
88 .power = 1000,
Lee Leahy9d62e7e2017-03-15 17:40:50 -070089 .resource = MWAIT_RES(0, 0),
Aaron Durbin7c351312013-04-10 14:46:25 -050090 },
91 [C_STATE_C1E] = {
92 .latency = 0,
93 .power = 1000,
Lee Leahy9d62e7e2017-03-15 17:40:50 -070094 .resource = MWAIT_RES(0, 1),
Aaron Durbin7c351312013-04-10 14:46:25 -050095 },
96 [C_STATE_C3] = {
97 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
98 .power = 900,
99 .resource = MWAIT_RES(1, 0),
100 },
101 [C_STATE_C6_SHORT_LAT] = {
102 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
103 .power = 800,
104 .resource = MWAIT_RES(2, 0),
105 },
106 [C_STATE_C6_LONG_LAT] = {
107 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
108 .power = 800,
109 .resource = MWAIT_RES(2, 1),
110 },
111 [C_STATE_C7_SHORT_LAT] = {
112 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
113 .power = 700,
114 .resource = MWAIT_RES(3, 0),
115 },
116 [C_STATE_C7_LONG_LAT] = {
117 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
118 .power = 700,
119 .resource = MWAIT_RES(3, 1),
120 },
121 [C_STATE_C7S_SHORT_LAT] = {
122 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
123 .power = 700,
124 .resource = MWAIT_RES(3, 2),
125 },
126 [C_STATE_C7S_LONG_LAT] = {
127 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
128 .power = 700,
129 .resource = MWAIT_RES(3, 3),
130 },
131 [C_STATE_C8] = {
132 .latency = C_STATE_LATENCY_FROM_LAT_REG(3),
133 .power = 600,
134 .resource = MWAIT_RES(4, 0),
135 },
136 [C_STATE_C9] = {
137 .latency = C_STATE_LATENCY_FROM_LAT_REG(4),
138 .power = 500,
139 .resource = MWAIT_RES(5, 0),
140 },
141 [C_STATE_C10] = {
142 .latency = C_STATE_LATENCY_FROM_LAT_REG(5),
143 .power = 400,
144 .resource = MWAIT_RES(6, 0),
145 },
146};
Aaron Durbin76c37002012-10-30 09:03:43 -0500147
148/* Convert time in seconds to POWER_LIMIT_1_TIME MSR value */
149static const u8 power_limit_time_sec_to_msr[] = {
150 [0] = 0x00,
151 [1] = 0x0a,
152 [2] = 0x0b,
153 [3] = 0x4b,
154 [4] = 0x0c,
155 [5] = 0x2c,
156 [6] = 0x4c,
157 [7] = 0x6c,
158 [8] = 0x0d,
159 [10] = 0x2d,
160 [12] = 0x4d,
161 [14] = 0x6d,
162 [16] = 0x0e,
163 [20] = 0x2e,
164 [24] = 0x4e,
165 [28] = 0x6e,
166 [32] = 0x0f,
167 [40] = 0x2f,
168 [48] = 0x4f,
169 [56] = 0x6f,
170 [64] = 0x10,
171 [80] = 0x30,
172 [96] = 0x50,
173 [112] = 0x70,
174 [128] = 0x11,
175};
176
177/* Convert POWER_LIMIT_1_TIME MSR value to seconds */
178static const u8 power_limit_time_msr_to_sec[] = {
179 [0x00] = 0,
180 [0x0a] = 1,
181 [0x0b] = 2,
182 [0x4b] = 3,
183 [0x0c] = 4,
184 [0x2c] = 5,
185 [0x4c] = 6,
186 [0x6c] = 7,
187 [0x0d] = 8,
188 [0x2d] = 10,
189 [0x4d] = 12,
190 [0x6d] = 14,
191 [0x0e] = 16,
192 [0x2e] = 20,
193 [0x4e] = 24,
194 [0x6e] = 28,
195 [0x0f] = 32,
196 [0x2f] = 40,
197 [0x4f] = 48,
198 [0x6f] = 56,
199 [0x10] = 64,
200 [0x30] = 80,
201 [0x50] = 96,
202 [0x70] = 112,
203 [0x11] = 128,
204};
205
Duncan Laurie118d1052013-07-09 15:34:25 -0700206int haswell_family_model(void)
207{
208 return cpuid_eax(1) & 0x0fff0ff0;
209}
210
211int haswell_stepping(void)
212{
213 return cpuid_eax(1) & 0xf;
214}
215
Aaron Durbin7c351312013-04-10 14:46:25 -0500216/* Dynamically determine if the part is ULT. */
Duncan Laurie118d1052013-07-09 15:34:25 -0700217int haswell_is_ult(void)
Aaron Durbin7c351312013-04-10 14:46:25 -0500218{
219 static int ult = -1;
220
221 if (ult < 0)
Duncan Laurie118d1052013-07-09 15:34:25 -0700222 ult = !!(haswell_family_model() == HASWELL_FAMILY_ULT);
Aaron Durbin7c351312013-04-10 14:46:25 -0500223
224 return ult;
225}
226
Aaron Durbinf24262d2013-04-10 14:59:21 -0500227/* The core 100MHz BLCK is disabled in deeper c-states. One needs to calibrate
228 * the 100MHz BCLCK against the 24MHz BLCK to restore the clocks properly
229 * when a core is woken up. */
230static int pcode_ready(void)
231{
232 int wait_count;
233 const int delay_step = 10;
234
235 wait_count = 0;
236 do {
237 if (!(MCHBAR32(BIOS_MAILBOX_INTERFACE) & MAILBOX_RUN_BUSY))
238 return 0;
239 wait_count += delay_step;
240 udelay(delay_step);
241 } while (wait_count < 1000);
242
243 return -1;
244}
245
246static void calibrate_24mhz_bclk(void)
247{
248 int err_code;
249
250 if (pcode_ready() < 0) {
251 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
252 return;
253 }
254
255 /* A non-zero value initiates the PCODE calibration. */
256 MCHBAR32(BIOS_MAILBOX_DATA) = ~0;
257 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
258 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_FSM_MEASURE_INTVL;
259
260 if (pcode_ready() < 0) {
261 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
262 return;
263 }
264
265 err_code = MCHBAR32(BIOS_MAILBOX_INTERFACE) & 0xff;
266
267 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration response: %d\n",
268 err_code);
269
270 /* Read the calibrated value. */
271 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
272 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_READ_CALIBRATION;
273
274 if (pcode_ready() < 0) {
275 printk(BIOS_ERR, "PCODE: mailbox timeout on read.\n");
276 return;
277 }
278
279 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration value: 0x%08x\n",
280 MCHBAR32(BIOS_MAILBOX_DATA));
281}
282
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700283static u32 pcode_mailbox_read(u32 command)
284{
285 if (pcode_ready() < 0) {
286 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
287 return 0;
288 }
289
290 /* Send command and start transaction */
291 MCHBAR32(BIOS_MAILBOX_INTERFACE) = command | MAILBOX_RUN_BUSY;
292
293 if (pcode_ready() < 0) {
294 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
295 return 0;
296 }
297
298 /* Read mailbox */
299 return MCHBAR32(BIOS_MAILBOX_DATA);
300}
301
Aaron Durbin16cbf892013-07-03 16:21:28 -0500302static void initialize_vr_config(void)
303{
304 msr_t msr;
305
306 printk(BIOS_DEBUG, "Initializing VR config.\n");
307
308 /* Configure VR_CURRENT_CONFIG. */
309 msr = rdmsr(MSR_VR_CURRENT_CONFIG);
310 /* Preserve bits 63 and 62. Bit 62 is PSI4 enable, but it is only valid
311 * on ULT systems. */
312 msr.hi &= 0xc0000000;
313 msr.hi |= (0x01 << (52 - 32)); /* PSI3 threshold - 1A. */
314 msr.hi |= (0x05 << (42 - 32)); /* PSI2 threshold - 5A. */
315 msr.hi |= (0x0f << (32 - 32)); /* PSI1 threshold - 15A. */
316
Duncan Laurie118d1052013-07-09 15:34:25 -0700317 if (haswell_is_ult())
Aaron Durbin16cbf892013-07-03 16:21:28 -0500318 msr.hi |= (1 << (62 - 32)); /* Enable PSI4 */
319 /* Leave the max instantaneous current limit (12:0) to default. */
320 wrmsr(MSR_VR_CURRENT_CONFIG, msr);
321
322 /* Configure VR_MISC_CONFIG MSR. */
323 msr = rdmsr(MSR_VR_MISC_CONFIG);
324 /* Set the IOUT_SLOPE scalar applied to dIout in U10.1.9 format. */
325 msr.hi &= ~(0x3ff << (40 - 32));
326 msr.hi |= (0x200 << (40 - 32)); /* 1.0 */
327 /* Set IOUT_OFFSET to 0. */
328 msr.hi &= ~0xff;
329 /* Set exit ramp rate to fast. */
330 msr.hi |= (1 << (50 - 32));
331 /* Set entry ramp rate to slow. */
332 msr.hi &= ~(1 << (51 - 32));
333 /* Enable decay mode on C-state entry. */
334 msr.hi |= (1 << (52 - 32));
Tristan Corrickfdf907e2018-10-31 02:27:12 +1300335 if (haswell_is_ult()) {
336 /* Set the slow ramp rate to be fast ramp rate / 4 */
337 msr.hi &= ~(0x3 << (53 - 32));
338 msr.hi |= (0x01 << (53 - 32));
339 }
Aaron Durbin16cbf892013-07-03 16:21:28 -0500340 /* Set MIN_VID (31:24) to allow CPU to have full control. */
341 msr.lo &= ~0xff000000;
342 wrmsr(MSR_VR_MISC_CONFIG, msr);
343
344 /* Configure VR_MISC_CONFIG2 MSR. */
Duncan Laurie118d1052013-07-09 15:34:25 -0700345 if (haswell_is_ult()) {
Aaron Durbin16cbf892013-07-03 16:21:28 -0500346 msr = rdmsr(MSR_VR_MISC_CONFIG2);
347 msr.lo &= ~0xffff;
348 /* Allow CPU to control minimum voltage completely (15:8) and
349 * set the fast ramp voltage to 1110mV (0x6f in 10mV steps). */
350 msr.lo |= 0x006f;
351 wrmsr(MSR_VR_MISC_CONFIG2, msr);
352 }
353}
354
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700355static void configure_pch_power_sharing(void)
356{
357 u32 pch_power, pch_power_ext, pmsync, pmsync2;
358 int i;
359
360 /* Read PCH Power levels from PCODE */
361 pch_power = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER);
362 pch_power_ext = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER_EXT);
363
364 printk(BIOS_INFO, "PCH Power: PCODE Levels 0x%08x 0x%08x\n",
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700365 pch_power, pch_power_ext);
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700366
367 pmsync = RCBA32(PMSYNC_CONFIG);
368 pmsync2 = RCBA32(PMSYNC_CONFIG2);
369
370 /* Program PMSYNC_TPR_CONFIG PCH power limit values
371 * pmsync[0:4] = mailbox[0:5]
372 * pmsync[8:12] = mailbox[6:11]
373 * pmsync[16:20] = mailbox[12:17]
374 */
375 for (i = 0; i < 3; i++) {
376 u32 level = pch_power & 0x3f;
377 pch_power >>= 6;
378 pmsync &= ~(0x1f << (i * 8));
379 pmsync |= (level & 0x1f) << (i * 8);
380 }
381 RCBA32(PMSYNC_CONFIG) = pmsync;
382
383 /* Program PMSYNC_TPR_CONFIG2 Extended PCH power limit values
384 * pmsync2[0:4] = mailbox[23:18]
385 * pmsync2[8:12] = mailbox_ext[6:11]
386 * pmsync2[16:20] = mailbox_ext[12:17]
387 * pmsync2[24:28] = mailbox_ext[18:22]
388 */
389 pmsync2 &= ~0x1f;
390 pmsync2 |= pch_power & 0x1f;
391
392 for (i = 1; i < 4; i++) {
393 u32 level = pch_power_ext & 0x3f;
394 pch_power_ext >>= 6;
395 pmsync2 &= ~(0x1f << (i * 8));
396 pmsync2 |= (level & 0x1f) << (i * 8);
397 }
398 RCBA32(PMSYNC_CONFIG2) = pmsync2;
399}
400
Aaron Durbin76c37002012-10-30 09:03:43 -0500401int cpu_config_tdp_levels(void)
402{
403 msr_t platform_info;
404
405 /* Bits 34:33 indicate how many levels supported */
406 platform_info = rdmsr(MSR_PLATFORM_INFO);
407 return (platform_info.hi >> 1) & 3;
408}
409
410/*
411 * Configure processor power limits if possible
412 * This must be done AFTER set of BIOS_RESET_CPL
413 */
414void set_power_limits(u8 power_limit_1_time)
415{
416 msr_t msr = rdmsr(MSR_PLATFORM_INFO);
417 msr_t limit;
Lee Leahy73a28942017-03-15 17:52:06 -0700418 unsigned int power_unit;
419 unsigned int tdp, min_power, max_power, max_time;
Aaron Durbin76c37002012-10-30 09:03:43 -0500420 u8 power_limit_1_val;
421
Edward O'Callaghan5cfef132014-08-03 20:00:47 +1000422 if (power_limit_1_time >= ARRAY_SIZE(power_limit_time_sec_to_msr))
Lee Leahycdc50482017-03-15 18:26:18 -0700423 power_limit_1_time = ARRAY_SIZE(power_limit_time_sec_to_msr)
424 - 1;
Aaron Durbin76c37002012-10-30 09:03:43 -0500425
426 if (!(msr.lo & PLATFORM_INFO_SET_TDP))
427 return;
428
429 /* Get units */
430 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
431 power_unit = 2 << ((msr.lo & 0xf) - 1);
432
433 /* Get power defaults for this SKU */
434 msr = rdmsr(MSR_PKG_POWER_SKU);
435 tdp = msr.lo & 0x7fff;
436 min_power = (msr.lo >> 16) & 0x7fff;
437 max_power = msr.hi & 0x7fff;
438 max_time = (msr.hi >> 16) & 0x7f;
439
440 printk(BIOS_DEBUG, "CPU TDP: %u Watts\n", tdp / power_unit);
441
442 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time)
443 power_limit_1_time = power_limit_time_msr_to_sec[max_time];
444
445 if (min_power > 0 && tdp < min_power)
446 tdp = min_power;
447
448 if (max_power > 0 && tdp > max_power)
449 tdp = max_power;
450
451 power_limit_1_val = power_limit_time_sec_to_msr[power_limit_1_time];
452
453 /* Set long term power limit to TDP */
454 limit.lo = 0;
455 limit.lo |= tdp & PKG_POWER_LIMIT_MASK;
456 limit.lo |= PKG_POWER_LIMIT_EN;
457 limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) <<
458 PKG_POWER_LIMIT_TIME_SHIFT;
459
460 /* Set short term power limit to 1.25 * TDP */
461 limit.hi = 0;
462 limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK;
463 limit.hi |= PKG_POWER_LIMIT_EN;
Duncan Lauriec70353f2013-06-28 14:40:38 -0700464 /* Power limit 2 time is only programmable on server SKU */
Aaron Durbin76c37002012-10-30 09:03:43 -0500465
466 wrmsr(MSR_PKG_POWER_LIMIT, limit);
467
Duncan Lauriec70353f2013-06-28 14:40:38 -0700468 /* Set power limit values in MCHBAR as well */
469 MCHBAR32(MCH_PKG_POWER_LIMIT_LO) = limit.lo;
470 MCHBAR32(MCH_PKG_POWER_LIMIT_HI) = limit.hi;
471
472 /* Set DDR RAPL power limit by copying from MMIO to MSR */
473 msr.lo = MCHBAR32(MCH_DDR_POWER_LIMIT_LO);
474 msr.hi = MCHBAR32(MCH_DDR_POWER_LIMIT_HI);
475 wrmsr(MSR_DDR_RAPL_LIMIT, msr);
476
Aaron Durbin76c37002012-10-30 09:03:43 -0500477 /* Use nominal TDP values for CPUs with configurable TDP */
478 if (cpu_config_tdp_levels()) {
479 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
480 limit.hi = 0;
481 limit.lo = msr.lo & 0xff;
482 wrmsr(MSR_TURBO_ACTIVATION_RATIO, limit);
483 }
484}
485
Aaron Durbin76c37002012-10-30 09:03:43 -0500486static void configure_c_states(void)
487{
488 msr_t msr;
489
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200490 msr = rdmsr(MSR_PKG_CST_CONFIG_CONTROL);
Aaron Durbin7c351312013-04-10 14:46:25 -0500491 msr.lo |= (1 << 30); // Package c-state Undemotion Enable
492 msr.lo |= (1 << 29); // Package c-state Demotion Enable
Aaron Durbin76c37002012-10-30 09:03:43 -0500493 msr.lo |= (1 << 28); // C1 Auto Undemotion Enable
494 msr.lo |= (1 << 27); // C3 Auto Undemotion Enable
495 msr.lo |= (1 << 26); // C1 Auto Demotion Enable
496 msr.lo |= (1 << 25); // C3 Auto Demotion Enable
497 msr.lo &= ~(1 << 10); // Disable IO MWAIT redirection
Duncan Laurie1c097102013-05-07 13:19:56 -0700498 /* The deepest package c-state defaults to factory-configured value. */
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200499 wrmsr(MSR_PKG_CST_CONFIG_CONTROL, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500500
501 msr = rdmsr(MSR_PMG_IO_CAPTURE_BASE);
Aaron Durbin7c351312013-04-10 14:46:25 -0500502 msr.lo &= ~0xffff;
503 msr.lo |= (get_pmbase() + 0x14); // LVL_2 base address
504 /* The deepest package c-state defaults to factory-configured value. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500505 wrmsr(MSR_PMG_IO_CAPTURE_BASE, msr);
506
507 msr = rdmsr(MSR_MISC_PWR_MGMT);
508 msr.lo &= ~(1 << 0); // Enable P-state HW_ALL coordination
509 wrmsr(MSR_MISC_PWR_MGMT, msr);
510
511 msr = rdmsr(MSR_POWER_CTL);
512 msr.lo |= (1 << 18); // Enable Energy Perf Bias MSR 0x1b0
513 msr.lo |= (1 << 1); // C1E Enable
514 msr.lo |= (1 << 0); // Bi-directional PROCHOT#
515 wrmsr(MSR_POWER_CTL, msr);
516
Aaron Durbin7c351312013-04-10 14:46:25 -0500517 /* C-state Interrupt Response Latency Control 0 - package C3 latency */
Aaron Durbin76c37002012-10-30 09:03:43 -0500518 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500519 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_0_LIMIT;
520 wrmsr(MSR_C_STATE_LATENCY_CONTROL_0, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500521
Aaron Durbin7c351312013-04-10 14:46:25 -0500522 /* C-state Interrupt Response Latency Control 1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500523 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500524 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_1_LIMIT;
525 wrmsr(MSR_C_STATE_LATENCY_CONTROL_1, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500526
Aaron Durbin7c351312013-04-10 14:46:25 -0500527 /* C-state Interrupt Response Latency Control 2 - package C6/C7 short */
Aaron Durbin76c37002012-10-30 09:03:43 -0500528 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500529 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_2_LIMIT;
530 wrmsr(MSR_C_STATE_LATENCY_CONTROL_2, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500531
Aaron Durbin7c351312013-04-10 14:46:25 -0500532 /* Haswell ULT only supoprts the 3-5 latency response registers.*/
Duncan Laurie118d1052013-07-09 15:34:25 -0700533 if (haswell_is_ult()) {
Aaron Durbin7c351312013-04-10 14:46:25 -0500534 /* C-state Interrupt Response Latency Control 3 - package C8 */
535 msr.hi = 0;
536 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700537 C_STATE_LATENCY_CONTROL_3_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500538 wrmsr(MSR_C_STATE_LATENCY_CONTROL_3, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500539
Aaron Durbin7c351312013-04-10 14:46:25 -0500540 /* C-state Interrupt Response Latency Control 4 - package C9 */
541 msr.hi = 0;
542 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700543 C_STATE_LATENCY_CONTROL_4_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500544 wrmsr(MSR_C_STATE_LATENCY_CONTROL_4, msr);
545
546 /* C-state Interrupt Response Latency Control 5 - package C10 */
547 msr.hi = 0;
548 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700549 C_STATE_LATENCY_CONTROL_5_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500550 wrmsr(MSR_C_STATE_LATENCY_CONTROL_5, msr);
551 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500552}
Aaron Durbin76c37002012-10-30 09:03:43 -0500553
554static void configure_thermal_target(void)
555{
556 struct cpu_intel_haswell_config *conf;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100557 struct device *lapic;
Aaron Durbin76c37002012-10-30 09:03:43 -0500558 msr_t msr;
559
560 /* Find pointer to CPU configuration */
561 lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
562 if (!lapic || !lapic->chip_info)
563 return;
564 conf = lapic->chip_info;
565
Martin Roth4c3ab732013-07-08 16:23:54 -0600566 /* Set TCC activation offset if supported */
Aaron Durbin76c37002012-10-30 09:03:43 -0500567 msr = rdmsr(MSR_PLATFORM_INFO);
568 if ((msr.lo & (1 << 30)) && conf->tcc_offset) {
569 msr = rdmsr(MSR_TEMPERATURE_TARGET);
570 msr.lo &= ~(0xf << 24); /* Bits 27:24 */
571 msr.lo |= (conf->tcc_offset & 0xf) << 24;
572 wrmsr(MSR_TEMPERATURE_TARGET, msr);
573 }
574}
575
576static void configure_misc(void)
577{
578 msr_t msr;
579
580 msr = rdmsr(IA32_MISC_ENABLE);
581 msr.lo |= (1 << 0); /* Fast String enable */
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700582 msr.lo |= (1 << 3); /* TM1/TM2/EMTTM enable */
Aaron Durbin76c37002012-10-30 09:03:43 -0500583 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
584 wrmsr(IA32_MISC_ENABLE, msr);
585
586 /* Disable Thermal interrupts */
587 msr.lo = 0;
588 msr.hi = 0;
589 wrmsr(IA32_THERM_INTERRUPT, msr);
590
591 /* Enable package critical interrupt only */
592 msr.lo = 1 << 4;
593 msr.hi = 0;
594 wrmsr(IA32_PACKAGE_THERM_INTERRUPT, msr);
595}
596
597static void enable_lapic_tpr(void)
598{
599 msr_t msr;
600
601 msr = rdmsr(MSR_PIC_MSG_CONTROL);
602 msr.lo &= ~(1 << 10); /* Enable APIC TPR updates */
603 wrmsr(MSR_PIC_MSG_CONTROL, msr);
604}
605
606static void configure_dca_cap(void)
607{
Subrata Banik53b08c32018-12-10 14:11:35 +0530608 uint32_t feature_flag;
Aaron Durbin76c37002012-10-30 09:03:43 -0500609 msr_t msr;
610
611 /* Check feature flag in CPUID.(EAX=1):ECX[18]==1 */
Subrata Banik53b08c32018-12-10 14:11:35 +0530612 feature_flag = cpu_get_feature_flags_ecx();
613 if (feature_flag & CPUID_DCA) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500614 msr = rdmsr(IA32_PLATFORM_DCA_CAP);
615 msr.lo |= 1;
616 wrmsr(IA32_PLATFORM_DCA_CAP, msr);
617 }
618}
619
620static void set_max_ratio(void)
621{
622 msr_t msr, perf_ctl;
623
624 perf_ctl.hi = 0;
625
626 /* Check for configurable TDP option */
627 if (cpu_config_tdp_levels()) {
628 /* Set to nominal TDP ratio */
629 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
630 perf_ctl.lo = (msr.lo & 0xff) << 8;
631 } else {
632 /* Platform Info bits 15:8 give max ratio */
633 msr = rdmsr(MSR_PLATFORM_INFO);
634 perf_ctl.lo = msr.lo & 0xff00;
635 }
636 wrmsr(IA32_PERF_CTL, perf_ctl);
637
638 printk(BIOS_DEBUG, "haswell: frequency set to %d\n",
639 ((perf_ctl.lo >> 8) & 0xff) * HASWELL_BCLK);
640}
641
642static void set_energy_perf_bias(u8 policy)
643{
644 msr_t msr;
Aaron Durbindc278f82012-12-11 17:15:13 -0600645 int ecx;
646
647 /* Determine if energy efficient policy is supported. */
648 ecx = cpuid_ecx(0x6);
649 if (!(ecx & (1 << 3)))
650 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500651
652 /* Energy Policy is bits 3:0 */
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200653 msr = rdmsr(IA32_ENERGY_PERF_BIAS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500654 msr.lo &= ~0xf;
655 msr.lo |= policy & 0xf;
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200656 wrmsr(IA32_ENERGY_PERF_BIAS, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500657
658 printk(BIOS_DEBUG, "haswell: energy policy set to %u\n",
659 policy);
660}
661
662static void configure_mca(void)
663{
664 msr_t msr;
665 int i;
Aaron Durbin24614af2013-01-12 01:07:28 -0600666 int num_banks;
Aaron Durbin76c37002012-10-30 09:03:43 -0500667
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200668 msr = rdmsr(IA32_MCG_CAP);
Aaron Durbin24614af2013-01-12 01:07:28 -0600669 num_banks = msr.lo & 0xff;
Aaron Durbin76c37002012-10-30 09:03:43 -0500670 msr.lo = msr.hi = 0;
Aaron Durbin24614af2013-01-12 01:07:28 -0600671 /* TODO(adurbin): This should only be done on a cold boot. Also, some
672 * of these banks are core vs package scope. For now every CPU clears
673 * every bank. */
674 for (i = 0; i < num_banks; i++)
Aaron Durbin76c37002012-10-30 09:03:43 -0500675 wrmsr(IA32_MC0_STATUS + (i * 4), msr);
676}
677
Aaron Durbin305b1f02013-01-15 08:27:05 -0600678/* All CPUs including BSP will run the following function. */
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100679static void haswell_init(struct device *cpu)
Aaron Durbin7af20692013-01-14 14:54:41 -0600680{
681 /* Clear out pending MCEs */
682 configure_mca();
683
Elyes HAOUASd6e96862016-08-21 10:12:15 +0200684 /* Enable the local CPU APICs */
Aaron Durbin76c37002012-10-30 09:03:43 -0500685 enable_lapic_tpr();
686 setup_lapic();
687
Matt DeVilliered6fe2f2016-12-14 16:12:43 -0600688 /* Set virtualization based on Kconfig option */
Matt DeVillierf9aed652018-12-15 15:57:33 -0600689 set_vmx_and_lock();
Matt DeVillierb2a14fb2014-07-07 18:48:16 -0500690
Aaron Durbin76c37002012-10-30 09:03:43 -0500691 /* Configure C States */
Aaron Durbin7c351312013-04-10 14:46:25 -0500692 configure_c_states();
Aaron Durbin76c37002012-10-30 09:03:43 -0500693
694 /* Configure Enhanced SpeedStep and Thermal Sensors */
695 configure_misc();
696
697 /* Thermal throttle activation offset */
698 configure_thermal_target();
699
700 /* Enable Direct Cache Access */
701 configure_dca_cap();
702
703 /* Set energy policy */
704 set_energy_perf_bias(ENERGY_POLICY_NORMAL);
705
706 /* Set Max Ratio */
707 set_max_ratio();
708
709 /* Enable Turbo */
710 enable_turbo();
Aaron Durbin7af20692013-01-14 14:54:41 -0600711}
Aaron Durbin76c37002012-10-30 09:03:43 -0500712
Aaron Durbin014baea2014-03-28 22:01:05 -0500713/* MP initialization support. */
714static const void *microcode_patch;
Aaron Durbin014baea2014-03-28 22:01:05 -0500715
Aaron Durbin463af332016-05-03 17:26:35 -0500716static void pre_mp_init(void)
Aaron Durbin014baea2014-03-28 22:01:05 -0500717{
Aaron Durbin463af332016-05-03 17:26:35 -0500718 /* Setup MTRRs based on physical address size. */
719 x86_setup_mtrrs_with_detect();
720 x86_mtrr_check();
721
722 initialize_vr_config();
723
724 if (haswell_is_ult()) {
725 calibrate_24mhz_bclk();
726 configure_pch_power_sharing();
727 }
Aaron Durbin014baea2014-03-28 22:01:05 -0500728}
729
Aaron Durbin463af332016-05-03 17:26:35 -0500730static int get_cpu_count(void)
Aaron Durbin014baea2014-03-28 22:01:05 -0500731{
Aaron Durbin463af332016-05-03 17:26:35 -0500732 msr_t msr;
Aaron Durbin014baea2014-03-28 22:01:05 -0500733 int num_threads;
734 int num_cores;
Aaron Durbin014baea2014-03-28 22:01:05 -0500735
736 msr = rdmsr(CORE_THREAD_COUNT_MSR);
737 num_threads = (msr.lo >> 0) & 0xffff;
738 num_cores = (msr.lo >> 16) & 0xffff;
739 printk(BIOS_DEBUG, "CPU has %u cores, %u threads enabled.\n",
740 num_cores, num_threads);
741
Aaron Durbin463af332016-05-03 17:26:35 -0500742 return num_threads;
743}
Aaron Durbin7af20692013-01-14 14:54:41 -0600744
Aaron Durbin463af332016-05-03 17:26:35 -0500745static void get_microcode_info(const void **microcode, int *parallel)
746{
Aaron Durbin305b1f02013-01-15 08:27:05 -0600747 microcode_patch = intel_microcode_find();
Aaron Durbin463af332016-05-03 17:26:35 -0500748 *microcode = microcode_patch;
749 *parallel = 1;
750}
Aaron Durbin7af20692013-01-14 14:54:41 -0600751
Aaron Durbin463af332016-05-03 17:26:35 -0500752static void per_cpu_smm_trigger(void)
753{
754 /* Relocate the SMM handler. */
755 smm_relocate();
Aaron Durbin305b1f02013-01-15 08:27:05 -0600756
Aaron Durbin463af332016-05-03 17:26:35 -0500757 /* After SMM relocation a 2nd microcode load is required. */
758 intel_microcode_load_unlocked(microcode_patch);
759}
760
761static void post_mp_init(void)
762{
763 /* Now that all APs have been relocated as well as the BSP let SMIs
764 * start flowing. */
765 southbridge_smm_enable_smi();
766
767 /* Lock down the SMRAM space. */
768 smm_lock();
769}
770
771static const struct mp_ops mp_ops = {
772 .pre_mp_init = pre_mp_init,
773 .get_cpu_count = get_cpu_count,
774 .get_smm_info = smm_info,
775 .get_microcode_info = get_microcode_info,
Aaron Durbin463af332016-05-03 17:26:35 -0500776 .pre_mp_smm_init = smm_initialize,
777 .per_cpu_smm_trigger = per_cpu_smm_trigger,
778 .relocation_handler = smm_relocation_handler,
779 .post_mp_init = post_mp_init,
780};
781
782void bsp_init_and_start_aps(struct bus *cpu_bus)
783{
Lee Leahy26eeb0f2017-03-15 18:08:50 -0700784 if (mp_init_with_smm(cpu_bus, &mp_ops))
Aaron Durbin014baea2014-03-28 22:01:05 -0500785 printk(BIOS_ERR, "MP initialization failure.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500786}
787
788static struct device_operations cpu_dev_ops = {
789 .init = haswell_init,
790};
791
Jonathan Neuschäfer8f06ce32017-11-20 01:56:44 +0100792static const struct cpu_device_id cpu_table[] = {
Aaron Durbin76c37002012-10-30 09:03:43 -0500793 { X86_VENDOR_INTEL, 0x306c1 }, /* Intel Haswell 4+2 A0 */
794 { X86_VENDOR_INTEL, 0x306c2 }, /* Intel Haswell 4+2 B0 */
Tristan Corrick22f97002018-10-31 02:22:39 +1300795 { X86_VENDOR_INTEL, 0x306c3 }, /* Intel Haswell C0 */
Duncan Laurie512540492012-12-17 11:24:45 -0800796 { X86_VENDOR_INTEL, 0x40650 }, /* Intel Haswell ULT B0 */
797 { X86_VENDOR_INTEL, 0x40651 }, /* Intel Haswell ULT B1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500798 { 0, 0 },
799};
800
801static const struct cpu_driver driver __cpu_driver = {
802 .ops = &cpu_dev_ops,
803 .id_table = cpu_table,
Aaron Durbin7c351312013-04-10 14:46:25 -0500804 .cstates = cstate_map,
Aaron Durbin76c37002012-10-30 09:03:43 -0500805};