blob: 2340dd0b03ff6211e0053ccfd8d50141107ffcec [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 Durbin76c37002012-10-30 09:03:43 -050034#include <pc80/mc146818rtc.h>
Aaron Durbin7c351312013-04-10 14:46:25 -050035#include <northbridge/intel/haswell/haswell.h>
36#include <southbridge/intel/lynxpoint/pch.h>
Matt DeVilliered6fe2f2016-12-14 16:12:43 -060037#include <cpu/intel/common/common.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050038#include "haswell.h"
39#include "chip.h"
40
Aaron Durbin7c351312013-04-10 14:46:25 -050041/* Intel suggested latency times in units of 1024ns. */
42#define C_STATE_LATENCY_CONTROL_0_LIMIT 0x42
43#define C_STATE_LATENCY_CONTROL_1_LIMIT 0x73
44#define C_STATE_LATENCY_CONTROL_2_LIMIT 0x91
45#define C_STATE_LATENCY_CONTROL_3_LIMIT 0xe4
46#define C_STATE_LATENCY_CONTROL_4_LIMIT 0x145
47#define C_STATE_LATENCY_CONTROL_5_LIMIT 0x1ef
48
49#define C_STATE_LATENCY_MICRO_SECONDS(limit, base) \
50 (((1 << ((base)*5)) * (limit)) / 1000)
51#define C_STATE_LATENCY_FROM_LAT_REG(reg) \
52 C_STATE_LATENCY_MICRO_SECONDS(C_STATE_LATENCY_CONTROL_ ##reg## _LIMIT, \
Lee Leahy7b5f12b92017-03-15 17:16:59 -070053 (IRTL_1024_NS >> 10))
Aaron Durbin7c351312013-04-10 14:46:25 -050054
Aaron Durbin76c37002012-10-30 09:03:43 -050055/*
Aaron Durbin7c351312013-04-10 14:46:25 -050056 * List of supported C-states in this processor. Only the ULT parts support C8,
57 * C9, and C10.
Aaron Durbin76c37002012-10-30 09:03:43 -050058 */
Aaron Durbin7c351312013-04-10 14:46:25 -050059enum {
60 C_STATE_C0, /* 0 */
61 C_STATE_C1, /* 1 */
62 C_STATE_C1E, /* 2 */
63 C_STATE_C3, /* 3 */
64 C_STATE_C6_SHORT_LAT, /* 4 */
65 C_STATE_C6_LONG_LAT, /* 5 */
66 C_STATE_C7_SHORT_LAT, /* 6 */
67 C_STATE_C7_LONG_LAT, /* 7 */
68 C_STATE_C7S_SHORT_LAT, /* 8 */
69 C_STATE_C7S_LONG_LAT, /* 9 */
70 C_STATE_C8, /* 10 */
71 C_STATE_C9, /* 11 */
72 C_STATE_C10, /* 12 */
73 NUM_C_STATES
Aaron Durbin76c37002012-10-30 09:03:43 -050074};
Aaron Durbin7c351312013-04-10 14:46:25 -050075
76#define MWAIT_RES(state, sub_state) \
77 { \
78 .addrl = (((state) << 4) | (sub_state)), \
79 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
80 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
81 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
82 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
83 }
84
85static acpi_cstate_t cstate_map[NUM_C_STATES] = {
86 [C_STATE_C0] = { },
87 [C_STATE_C1] = {
88 .latency = 0,
89 .power = 1000,
Lee Leahy9d62e7e2017-03-15 17:40:50 -070090 .resource = MWAIT_RES(0, 0),
Aaron Durbin7c351312013-04-10 14:46:25 -050091 },
92 [C_STATE_C1E] = {
93 .latency = 0,
94 .power = 1000,
Lee Leahy9d62e7e2017-03-15 17:40:50 -070095 .resource = MWAIT_RES(0, 1),
Aaron Durbin7c351312013-04-10 14:46:25 -050096 },
97 [C_STATE_C3] = {
98 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
99 .power = 900,
100 .resource = MWAIT_RES(1, 0),
101 },
102 [C_STATE_C6_SHORT_LAT] = {
103 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
104 .power = 800,
105 .resource = MWAIT_RES(2, 0),
106 },
107 [C_STATE_C6_LONG_LAT] = {
108 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
109 .power = 800,
110 .resource = MWAIT_RES(2, 1),
111 },
112 [C_STATE_C7_SHORT_LAT] = {
113 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
114 .power = 700,
115 .resource = MWAIT_RES(3, 0),
116 },
117 [C_STATE_C7_LONG_LAT] = {
118 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
119 .power = 700,
120 .resource = MWAIT_RES(3, 1),
121 },
122 [C_STATE_C7S_SHORT_LAT] = {
123 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
124 .power = 700,
125 .resource = MWAIT_RES(3, 2),
126 },
127 [C_STATE_C7S_LONG_LAT] = {
128 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
129 .power = 700,
130 .resource = MWAIT_RES(3, 3),
131 },
132 [C_STATE_C8] = {
133 .latency = C_STATE_LATENCY_FROM_LAT_REG(3),
134 .power = 600,
135 .resource = MWAIT_RES(4, 0),
136 },
137 [C_STATE_C9] = {
138 .latency = C_STATE_LATENCY_FROM_LAT_REG(4),
139 .power = 500,
140 .resource = MWAIT_RES(5, 0),
141 },
142 [C_STATE_C10] = {
143 .latency = C_STATE_LATENCY_FROM_LAT_REG(5),
144 .power = 400,
145 .resource = MWAIT_RES(6, 0),
146 },
147};
Aaron Durbin76c37002012-10-30 09:03:43 -0500148
149/* Convert time in seconds to POWER_LIMIT_1_TIME MSR value */
150static const u8 power_limit_time_sec_to_msr[] = {
151 [0] = 0x00,
152 [1] = 0x0a,
153 [2] = 0x0b,
154 [3] = 0x4b,
155 [4] = 0x0c,
156 [5] = 0x2c,
157 [6] = 0x4c,
158 [7] = 0x6c,
159 [8] = 0x0d,
160 [10] = 0x2d,
161 [12] = 0x4d,
162 [14] = 0x6d,
163 [16] = 0x0e,
164 [20] = 0x2e,
165 [24] = 0x4e,
166 [28] = 0x6e,
167 [32] = 0x0f,
168 [40] = 0x2f,
169 [48] = 0x4f,
170 [56] = 0x6f,
171 [64] = 0x10,
172 [80] = 0x30,
173 [96] = 0x50,
174 [112] = 0x70,
175 [128] = 0x11,
176};
177
178/* Convert POWER_LIMIT_1_TIME MSR value to seconds */
179static const u8 power_limit_time_msr_to_sec[] = {
180 [0x00] = 0,
181 [0x0a] = 1,
182 [0x0b] = 2,
183 [0x4b] = 3,
184 [0x0c] = 4,
185 [0x2c] = 5,
186 [0x4c] = 6,
187 [0x6c] = 7,
188 [0x0d] = 8,
189 [0x2d] = 10,
190 [0x4d] = 12,
191 [0x6d] = 14,
192 [0x0e] = 16,
193 [0x2e] = 20,
194 [0x4e] = 24,
195 [0x6e] = 28,
196 [0x0f] = 32,
197 [0x2f] = 40,
198 [0x4f] = 48,
199 [0x6f] = 56,
200 [0x10] = 64,
201 [0x30] = 80,
202 [0x50] = 96,
203 [0x70] = 112,
204 [0x11] = 128,
205};
206
Duncan Laurie118d1052013-07-09 15:34:25 -0700207int haswell_family_model(void)
208{
209 return cpuid_eax(1) & 0x0fff0ff0;
210}
211
212int haswell_stepping(void)
213{
214 return cpuid_eax(1) & 0xf;
215}
216
Aaron Durbin7c351312013-04-10 14:46:25 -0500217/* Dynamically determine if the part is ULT. */
Duncan Laurie118d1052013-07-09 15:34:25 -0700218int haswell_is_ult(void)
Aaron Durbin7c351312013-04-10 14:46:25 -0500219{
220 static int ult = -1;
221
222 if (ult < 0)
Duncan Laurie118d1052013-07-09 15:34:25 -0700223 ult = !!(haswell_family_model() == HASWELL_FAMILY_ULT);
Aaron Durbin7c351312013-04-10 14:46:25 -0500224
225 return ult;
226}
227
Aaron Durbinf24262d2013-04-10 14:59:21 -0500228/* The core 100MHz BLCK is disabled in deeper c-states. One needs to calibrate
229 * the 100MHz BCLCK against the 24MHz BLCK to restore the clocks properly
230 * when a core is woken up. */
231static int pcode_ready(void)
232{
233 int wait_count;
234 const int delay_step = 10;
235
236 wait_count = 0;
237 do {
238 if (!(MCHBAR32(BIOS_MAILBOX_INTERFACE) & MAILBOX_RUN_BUSY))
239 return 0;
240 wait_count += delay_step;
241 udelay(delay_step);
242 } while (wait_count < 1000);
243
244 return -1;
245}
246
247static void calibrate_24mhz_bclk(void)
248{
249 int err_code;
250
251 if (pcode_ready() < 0) {
252 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
253 return;
254 }
255
256 /* A non-zero value initiates the PCODE calibration. */
257 MCHBAR32(BIOS_MAILBOX_DATA) = ~0;
258 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
259 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_FSM_MEASURE_INTVL;
260
261 if (pcode_ready() < 0) {
262 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
263 return;
264 }
265
266 err_code = MCHBAR32(BIOS_MAILBOX_INTERFACE) & 0xff;
267
268 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration response: %d\n",
269 err_code);
270
271 /* Read the calibrated value. */
272 MCHBAR32(BIOS_MAILBOX_INTERFACE) =
273 MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_READ_CALIBRATION;
274
275 if (pcode_ready() < 0) {
276 printk(BIOS_ERR, "PCODE: mailbox timeout on read.\n");
277 return;
278 }
279
280 printk(BIOS_DEBUG, "PCODE: 24MHz BLCK calibration value: 0x%08x\n",
281 MCHBAR32(BIOS_MAILBOX_DATA));
282}
283
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700284static u32 pcode_mailbox_read(u32 command)
285{
286 if (pcode_ready() < 0) {
287 printk(BIOS_ERR, "PCODE: mailbox timeout on wait ready.\n");
288 return 0;
289 }
290
291 /* Send command and start transaction */
292 MCHBAR32(BIOS_MAILBOX_INTERFACE) = command | MAILBOX_RUN_BUSY;
293
294 if (pcode_ready() < 0) {
295 printk(BIOS_ERR, "PCODE: mailbox timeout on completion.\n");
296 return 0;
297 }
298
299 /* Read mailbox */
300 return MCHBAR32(BIOS_MAILBOX_DATA);
301}
302
Aaron Durbin16cbf892013-07-03 16:21:28 -0500303static void initialize_vr_config(void)
304{
305 msr_t msr;
306
307 printk(BIOS_DEBUG, "Initializing VR config.\n");
308
309 /* Configure VR_CURRENT_CONFIG. */
310 msr = rdmsr(MSR_VR_CURRENT_CONFIG);
311 /* Preserve bits 63 and 62. Bit 62 is PSI4 enable, but it is only valid
312 * on ULT systems. */
313 msr.hi &= 0xc0000000;
314 msr.hi |= (0x01 << (52 - 32)); /* PSI3 threshold - 1A. */
315 msr.hi |= (0x05 << (42 - 32)); /* PSI2 threshold - 5A. */
316 msr.hi |= (0x0f << (32 - 32)); /* PSI1 threshold - 15A. */
317
Duncan Laurie118d1052013-07-09 15:34:25 -0700318 if (haswell_is_ult())
Aaron Durbin16cbf892013-07-03 16:21:28 -0500319 msr.hi |= (1 << (62 - 32)); /* Enable PSI4 */
320 /* Leave the max instantaneous current limit (12:0) to default. */
321 wrmsr(MSR_VR_CURRENT_CONFIG, msr);
322
323 /* Configure VR_MISC_CONFIG MSR. */
324 msr = rdmsr(MSR_VR_MISC_CONFIG);
325 /* Set the IOUT_SLOPE scalar applied to dIout in U10.1.9 format. */
326 msr.hi &= ~(0x3ff << (40 - 32));
327 msr.hi |= (0x200 << (40 - 32)); /* 1.0 */
328 /* Set IOUT_OFFSET to 0. */
329 msr.hi &= ~0xff;
330 /* Set exit ramp rate to fast. */
331 msr.hi |= (1 << (50 - 32));
332 /* Set entry ramp rate to slow. */
333 msr.hi &= ~(1 << (51 - 32));
334 /* Enable decay mode on C-state entry. */
335 msr.hi |= (1 << (52 - 32));
Tristan Corrickfdf907e2018-10-31 02:27:12 +1300336 if (haswell_is_ult()) {
337 /* Set the slow ramp rate to be fast ramp rate / 4 */
338 msr.hi &= ~(0x3 << (53 - 32));
339 msr.hi |= (0x01 << (53 - 32));
340 }
Aaron Durbin16cbf892013-07-03 16:21:28 -0500341 /* Set MIN_VID (31:24) to allow CPU to have full control. */
342 msr.lo &= ~0xff000000;
343 wrmsr(MSR_VR_MISC_CONFIG, msr);
344
345 /* Configure VR_MISC_CONFIG2 MSR. */
Duncan Laurie118d1052013-07-09 15:34:25 -0700346 if (haswell_is_ult()) {
Aaron Durbin16cbf892013-07-03 16:21:28 -0500347 msr = rdmsr(MSR_VR_MISC_CONFIG2);
348 msr.lo &= ~0xffff;
349 /* Allow CPU to control minimum voltage completely (15:8) and
350 * set the fast ramp voltage to 1110mV (0x6f in 10mV steps). */
351 msr.lo |= 0x006f;
352 wrmsr(MSR_VR_MISC_CONFIG2, msr);
353 }
354}
355
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700356static void configure_pch_power_sharing(void)
357{
358 u32 pch_power, pch_power_ext, pmsync, pmsync2;
359 int i;
360
361 /* Read PCH Power levels from PCODE */
362 pch_power = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER);
363 pch_power_ext = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER_EXT);
364
365 printk(BIOS_INFO, "PCH Power: PCODE Levels 0x%08x 0x%08x\n",
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700366 pch_power, pch_power_ext);
Duncan Lauriee1e87e02013-04-26 10:35:19 -0700367
368 pmsync = RCBA32(PMSYNC_CONFIG);
369 pmsync2 = RCBA32(PMSYNC_CONFIG2);
370
371 /* Program PMSYNC_TPR_CONFIG PCH power limit values
372 * pmsync[0:4] = mailbox[0:5]
373 * pmsync[8:12] = mailbox[6:11]
374 * pmsync[16:20] = mailbox[12:17]
375 */
376 for (i = 0; i < 3; i++) {
377 u32 level = pch_power & 0x3f;
378 pch_power >>= 6;
379 pmsync &= ~(0x1f << (i * 8));
380 pmsync |= (level & 0x1f) << (i * 8);
381 }
382 RCBA32(PMSYNC_CONFIG) = pmsync;
383
384 /* Program PMSYNC_TPR_CONFIG2 Extended PCH power limit values
385 * pmsync2[0:4] = mailbox[23:18]
386 * pmsync2[8:12] = mailbox_ext[6:11]
387 * pmsync2[16:20] = mailbox_ext[12:17]
388 * pmsync2[24:28] = mailbox_ext[18:22]
389 */
390 pmsync2 &= ~0x1f;
391 pmsync2 |= pch_power & 0x1f;
392
393 for (i = 1; i < 4; i++) {
394 u32 level = pch_power_ext & 0x3f;
395 pch_power_ext >>= 6;
396 pmsync2 &= ~(0x1f << (i * 8));
397 pmsync2 |= (level & 0x1f) << (i * 8);
398 }
399 RCBA32(PMSYNC_CONFIG2) = pmsync2;
400}
401
Aaron Durbin76c37002012-10-30 09:03:43 -0500402int cpu_config_tdp_levels(void)
403{
404 msr_t platform_info;
405
406 /* Bits 34:33 indicate how many levels supported */
407 platform_info = rdmsr(MSR_PLATFORM_INFO);
408 return (platform_info.hi >> 1) & 3;
409}
410
411/*
412 * Configure processor power limits if possible
413 * This must be done AFTER set of BIOS_RESET_CPL
414 */
415void set_power_limits(u8 power_limit_1_time)
416{
417 msr_t msr = rdmsr(MSR_PLATFORM_INFO);
418 msr_t limit;
Lee Leahy73a28942017-03-15 17:52:06 -0700419 unsigned int power_unit;
420 unsigned int tdp, min_power, max_power, max_time;
Aaron Durbin76c37002012-10-30 09:03:43 -0500421 u8 power_limit_1_val;
422
Edward O'Callaghan5cfef132014-08-03 20:00:47 +1000423 if (power_limit_1_time >= ARRAY_SIZE(power_limit_time_sec_to_msr))
Lee Leahycdc50482017-03-15 18:26:18 -0700424 power_limit_1_time = ARRAY_SIZE(power_limit_time_sec_to_msr)
425 - 1;
Aaron Durbin76c37002012-10-30 09:03:43 -0500426
427 if (!(msr.lo & PLATFORM_INFO_SET_TDP))
428 return;
429
430 /* Get units */
431 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
432 power_unit = 2 << ((msr.lo & 0xf) - 1);
433
434 /* Get power defaults for this SKU */
435 msr = rdmsr(MSR_PKG_POWER_SKU);
436 tdp = msr.lo & 0x7fff;
437 min_power = (msr.lo >> 16) & 0x7fff;
438 max_power = msr.hi & 0x7fff;
439 max_time = (msr.hi >> 16) & 0x7f;
440
441 printk(BIOS_DEBUG, "CPU TDP: %u Watts\n", tdp / power_unit);
442
443 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time)
444 power_limit_1_time = power_limit_time_msr_to_sec[max_time];
445
446 if (min_power > 0 && tdp < min_power)
447 tdp = min_power;
448
449 if (max_power > 0 && tdp > max_power)
450 tdp = max_power;
451
452 power_limit_1_val = power_limit_time_sec_to_msr[power_limit_1_time];
453
454 /* Set long term power limit to TDP */
455 limit.lo = 0;
456 limit.lo |= tdp & PKG_POWER_LIMIT_MASK;
457 limit.lo |= PKG_POWER_LIMIT_EN;
458 limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) <<
459 PKG_POWER_LIMIT_TIME_SHIFT;
460
461 /* Set short term power limit to 1.25 * TDP */
462 limit.hi = 0;
463 limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK;
464 limit.hi |= PKG_POWER_LIMIT_EN;
Duncan Lauriec70353f2013-06-28 14:40:38 -0700465 /* Power limit 2 time is only programmable on server SKU */
Aaron Durbin76c37002012-10-30 09:03:43 -0500466
467 wrmsr(MSR_PKG_POWER_LIMIT, limit);
468
Duncan Lauriec70353f2013-06-28 14:40:38 -0700469 /* Set power limit values in MCHBAR as well */
470 MCHBAR32(MCH_PKG_POWER_LIMIT_LO) = limit.lo;
471 MCHBAR32(MCH_PKG_POWER_LIMIT_HI) = limit.hi;
472
473 /* Set DDR RAPL power limit by copying from MMIO to MSR */
474 msr.lo = MCHBAR32(MCH_DDR_POWER_LIMIT_LO);
475 msr.hi = MCHBAR32(MCH_DDR_POWER_LIMIT_HI);
476 wrmsr(MSR_DDR_RAPL_LIMIT, msr);
477
Aaron Durbin76c37002012-10-30 09:03:43 -0500478 /* Use nominal TDP values for CPUs with configurable TDP */
479 if (cpu_config_tdp_levels()) {
480 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
481 limit.hi = 0;
482 limit.lo = msr.lo & 0xff;
483 wrmsr(MSR_TURBO_ACTIVATION_RATIO, limit);
484 }
485}
486
Aaron Durbin76c37002012-10-30 09:03:43 -0500487static void configure_c_states(void)
488{
489 msr_t msr;
490
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200491 msr = rdmsr(MSR_PKG_CST_CONFIG_CONTROL);
Aaron Durbin7c351312013-04-10 14:46:25 -0500492 msr.lo |= (1 << 30); // Package c-state Undemotion Enable
493 msr.lo |= (1 << 29); // Package c-state Demotion Enable
Aaron Durbin76c37002012-10-30 09:03:43 -0500494 msr.lo |= (1 << 28); // C1 Auto Undemotion Enable
495 msr.lo |= (1 << 27); // C3 Auto Undemotion Enable
496 msr.lo |= (1 << 26); // C1 Auto Demotion Enable
497 msr.lo |= (1 << 25); // C3 Auto Demotion Enable
498 msr.lo &= ~(1 << 10); // Disable IO MWAIT redirection
Duncan Laurie1c097102013-05-07 13:19:56 -0700499 /* The deepest package c-state defaults to factory-configured value. */
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200500 wrmsr(MSR_PKG_CST_CONFIG_CONTROL, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500501
502 msr = rdmsr(MSR_PMG_IO_CAPTURE_BASE);
Aaron Durbin7c351312013-04-10 14:46:25 -0500503 msr.lo &= ~0xffff;
504 msr.lo |= (get_pmbase() + 0x14); // LVL_2 base address
505 /* The deepest package c-state defaults to factory-configured value. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500506 wrmsr(MSR_PMG_IO_CAPTURE_BASE, msr);
507
508 msr = rdmsr(MSR_MISC_PWR_MGMT);
509 msr.lo &= ~(1 << 0); // Enable P-state HW_ALL coordination
510 wrmsr(MSR_MISC_PWR_MGMT, msr);
511
512 msr = rdmsr(MSR_POWER_CTL);
513 msr.lo |= (1 << 18); // Enable Energy Perf Bias MSR 0x1b0
514 msr.lo |= (1 << 1); // C1E Enable
515 msr.lo |= (1 << 0); // Bi-directional PROCHOT#
516 wrmsr(MSR_POWER_CTL, msr);
517
Aaron Durbin7c351312013-04-10 14:46:25 -0500518 /* C-state Interrupt Response Latency Control 0 - package C3 latency */
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_0_LIMIT;
521 wrmsr(MSR_C_STATE_LATENCY_CONTROL_0, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500522
Aaron Durbin7c351312013-04-10 14:46:25 -0500523 /* C-state Interrupt Response Latency Control 1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500524 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500525 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_1_LIMIT;
526 wrmsr(MSR_C_STATE_LATENCY_CONTROL_1, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500527
Aaron Durbin7c351312013-04-10 14:46:25 -0500528 /* C-state Interrupt Response Latency Control 2 - package C6/C7 short */
Aaron Durbin76c37002012-10-30 09:03:43 -0500529 msr.hi = 0;
Aaron Durbin7c351312013-04-10 14:46:25 -0500530 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_2_LIMIT;
531 wrmsr(MSR_C_STATE_LATENCY_CONTROL_2, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500532
Aaron Durbin7c351312013-04-10 14:46:25 -0500533 /* Haswell ULT only supoprts the 3-5 latency response registers.*/
Duncan Laurie118d1052013-07-09 15:34:25 -0700534 if (haswell_is_ult()) {
Aaron Durbin7c351312013-04-10 14:46:25 -0500535 /* C-state Interrupt Response Latency Control 3 - package C8 */
536 msr.hi = 0;
537 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700538 C_STATE_LATENCY_CONTROL_3_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500539 wrmsr(MSR_C_STATE_LATENCY_CONTROL_3, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500540
Aaron Durbin7c351312013-04-10 14:46:25 -0500541 /* C-state Interrupt Response Latency Control 4 - package C9 */
542 msr.hi = 0;
543 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700544 C_STATE_LATENCY_CONTROL_4_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500545 wrmsr(MSR_C_STATE_LATENCY_CONTROL_4, msr);
546
547 /* C-state Interrupt Response Latency Control 5 - package C10 */
548 msr.hi = 0;
549 msr.lo = IRTL_VALID | IRTL_1024_NS |
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700550 C_STATE_LATENCY_CONTROL_5_LIMIT;
Aaron Durbin7c351312013-04-10 14:46:25 -0500551 wrmsr(MSR_C_STATE_LATENCY_CONTROL_5, msr);
552 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500553}
Aaron Durbin76c37002012-10-30 09:03:43 -0500554
555static void configure_thermal_target(void)
556{
557 struct cpu_intel_haswell_config *conf;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100558 struct device *lapic;
Aaron Durbin76c37002012-10-30 09:03:43 -0500559 msr_t msr;
560
561 /* Find pointer to CPU configuration */
562 lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
563 if (!lapic || !lapic->chip_info)
564 return;
565 conf = lapic->chip_info;
566
Martin Roth4c3ab732013-07-08 16:23:54 -0600567 /* Set TCC activation offset if supported */
Aaron Durbin76c37002012-10-30 09:03:43 -0500568 msr = rdmsr(MSR_PLATFORM_INFO);
569 if ((msr.lo & (1 << 30)) && conf->tcc_offset) {
570 msr = rdmsr(MSR_TEMPERATURE_TARGET);
571 msr.lo &= ~(0xf << 24); /* Bits 27:24 */
572 msr.lo |= (conf->tcc_offset & 0xf) << 24;
573 wrmsr(MSR_TEMPERATURE_TARGET, msr);
574 }
575}
576
577static void configure_misc(void)
578{
579 msr_t msr;
580
581 msr = rdmsr(IA32_MISC_ENABLE);
582 msr.lo |= (1 << 0); /* Fast String enable */
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700583 msr.lo |= (1 << 3); /* TM1/TM2/EMTTM enable */
Aaron Durbin76c37002012-10-30 09:03:43 -0500584 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
585 wrmsr(IA32_MISC_ENABLE, msr);
586
587 /* Disable Thermal interrupts */
588 msr.lo = 0;
589 msr.hi = 0;
590 wrmsr(IA32_THERM_INTERRUPT, msr);
591
592 /* Enable package critical interrupt only */
593 msr.lo = 1 << 4;
594 msr.hi = 0;
595 wrmsr(IA32_PACKAGE_THERM_INTERRUPT, msr);
596}
597
598static void enable_lapic_tpr(void)
599{
600 msr_t msr;
601
602 msr = rdmsr(MSR_PIC_MSG_CONTROL);
603 msr.lo &= ~(1 << 10); /* Enable APIC TPR updates */
604 wrmsr(MSR_PIC_MSG_CONTROL, msr);
605}
606
607static void configure_dca_cap(void)
608{
609 struct cpuid_result cpuid_regs;
610 msr_t msr;
611
612 /* Check feature flag in CPUID.(EAX=1):ECX[18]==1 */
613 cpuid_regs = cpuid(1);
614 if (cpuid_regs.ecx & (1 << 18)) {
615 msr = rdmsr(IA32_PLATFORM_DCA_CAP);
616 msr.lo |= 1;
617 wrmsr(IA32_PLATFORM_DCA_CAP, msr);
618 }
619}
620
621static void set_max_ratio(void)
622{
623 msr_t msr, perf_ctl;
624
625 perf_ctl.hi = 0;
626
627 /* Check for configurable TDP option */
628 if (cpu_config_tdp_levels()) {
629 /* Set to nominal TDP ratio */
630 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
631 perf_ctl.lo = (msr.lo & 0xff) << 8;
632 } else {
633 /* Platform Info bits 15:8 give max ratio */
634 msr = rdmsr(MSR_PLATFORM_INFO);
635 perf_ctl.lo = msr.lo & 0xff00;
636 }
637 wrmsr(IA32_PERF_CTL, perf_ctl);
638
639 printk(BIOS_DEBUG, "haswell: frequency set to %d\n",
640 ((perf_ctl.lo >> 8) & 0xff) * HASWELL_BCLK);
641}
642
643static void set_energy_perf_bias(u8 policy)
644{
645 msr_t msr;
Aaron Durbindc278f82012-12-11 17:15:13 -0600646 int ecx;
647
648 /* Determine if energy efficient policy is supported. */
649 ecx = cpuid_ecx(0x6);
650 if (!(ecx & (1 << 3)))
651 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500652
653 /* Energy Policy is bits 3:0 */
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200654 msr = rdmsr(IA32_ENERGY_PERF_BIAS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500655 msr.lo &= ~0xf;
656 msr.lo |= policy & 0xf;
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200657 wrmsr(IA32_ENERGY_PERF_BIAS, msr);
Aaron Durbin76c37002012-10-30 09:03:43 -0500658
659 printk(BIOS_DEBUG, "haswell: energy policy set to %u\n",
660 policy);
661}
662
663static void configure_mca(void)
664{
665 msr_t msr;
666 int i;
Aaron Durbin24614af2013-01-12 01:07:28 -0600667 int num_banks;
Aaron Durbin76c37002012-10-30 09:03:43 -0500668
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200669 msr = rdmsr(IA32_MCG_CAP);
Aaron Durbin24614af2013-01-12 01:07:28 -0600670 num_banks = msr.lo & 0xff;
Aaron Durbin76c37002012-10-30 09:03:43 -0500671 msr.lo = msr.hi = 0;
Aaron Durbin24614af2013-01-12 01:07:28 -0600672 /* TODO(adurbin): This should only be done on a cold boot. Also, some
673 * of these banks are core vs package scope. For now every CPU clears
674 * every bank. */
675 for (i = 0; i < num_banks; i++)
Aaron Durbin76c37002012-10-30 09:03:43 -0500676 wrmsr(IA32_MC0_STATUS + (i * 4), msr);
677}
678
Aaron Durbin305b1f02013-01-15 08:27:05 -0600679/* All CPUs including BSP will run the following function. */
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100680static void haswell_init(struct device *cpu)
Aaron Durbin7af20692013-01-14 14:54:41 -0600681{
682 /* Clear out pending MCEs */
683 configure_mca();
684
Elyes HAOUASd6e96862016-08-21 10:12:15 +0200685 /* Enable the local CPU APICs */
Aaron Durbin76c37002012-10-30 09:03:43 -0500686 enable_lapic_tpr();
687 setup_lapic();
688
Matt DeVilliered6fe2f2016-12-14 16:12:43 -0600689 /* Set virtualization based on Kconfig option */
690 set_vmx();
Matt DeVillierb2a14fb2014-07-07 18:48:16 -0500691
Aaron Durbin76c37002012-10-30 09:03:43 -0500692 /* Configure C States */
Aaron Durbin7c351312013-04-10 14:46:25 -0500693 configure_c_states();
Aaron Durbin76c37002012-10-30 09:03:43 -0500694
695 /* Configure Enhanced SpeedStep and Thermal Sensors */
696 configure_misc();
697
698 /* Thermal throttle activation offset */
699 configure_thermal_target();
700
701 /* Enable Direct Cache Access */
702 configure_dca_cap();
703
704 /* Set energy policy */
705 set_energy_perf_bias(ENERGY_POLICY_NORMAL);
706
707 /* Set Max Ratio */
708 set_max_ratio();
709
710 /* Enable Turbo */
711 enable_turbo();
Aaron Durbin7af20692013-01-14 14:54:41 -0600712}
Aaron Durbin76c37002012-10-30 09:03:43 -0500713
Aaron Durbin014baea2014-03-28 22:01:05 -0500714/* MP initialization support. */
715static const void *microcode_patch;
Aaron Durbin014baea2014-03-28 22:01:05 -0500716
Aaron Durbin463af332016-05-03 17:26:35 -0500717static void pre_mp_init(void)
Aaron Durbin014baea2014-03-28 22:01:05 -0500718{
Aaron Durbin463af332016-05-03 17:26:35 -0500719 /* Setup MTRRs based on physical address size. */
720 x86_setup_mtrrs_with_detect();
721 x86_mtrr_check();
722
723 initialize_vr_config();
724
725 if (haswell_is_ult()) {
726 calibrate_24mhz_bclk();
727 configure_pch_power_sharing();
728 }
Aaron Durbin014baea2014-03-28 22:01:05 -0500729}
730
Aaron Durbin463af332016-05-03 17:26:35 -0500731static int get_cpu_count(void)
Aaron Durbin014baea2014-03-28 22:01:05 -0500732{
Aaron Durbin463af332016-05-03 17:26:35 -0500733 msr_t msr;
Aaron Durbin014baea2014-03-28 22:01:05 -0500734 int num_threads;
735 int num_cores;
Aaron Durbin014baea2014-03-28 22:01:05 -0500736
737 msr = rdmsr(CORE_THREAD_COUNT_MSR);
738 num_threads = (msr.lo >> 0) & 0xffff;
739 num_cores = (msr.lo >> 16) & 0xffff;
740 printk(BIOS_DEBUG, "CPU has %u cores, %u threads enabled.\n",
741 num_cores, num_threads);
742
Aaron Durbin463af332016-05-03 17:26:35 -0500743 return num_threads;
744}
Aaron Durbin7af20692013-01-14 14:54:41 -0600745
Aaron Durbin463af332016-05-03 17:26:35 -0500746static void get_microcode_info(const void **microcode, int *parallel)
747{
Aaron Durbin305b1f02013-01-15 08:27:05 -0600748 microcode_patch = intel_microcode_find();
Aaron Durbin463af332016-05-03 17:26:35 -0500749 *microcode = microcode_patch;
750 *parallel = 1;
751}
Aaron Durbin7af20692013-01-14 14:54:41 -0600752
Aaron Durbin463af332016-05-03 17:26:35 -0500753static void per_cpu_smm_trigger(void)
754{
755 /* Relocate the SMM handler. */
756 smm_relocate();
Aaron Durbin305b1f02013-01-15 08:27:05 -0600757
Aaron Durbin463af332016-05-03 17:26:35 -0500758 /* After SMM relocation a 2nd microcode load is required. */
759 intel_microcode_load_unlocked(microcode_patch);
760}
761
762static void post_mp_init(void)
763{
764 /* Now that all APs have been relocated as well as the BSP let SMIs
765 * start flowing. */
766 southbridge_smm_enable_smi();
767
768 /* Lock down the SMRAM space. */
769 smm_lock();
770}
771
772static const struct mp_ops mp_ops = {
773 .pre_mp_init = pre_mp_init,
774 .get_cpu_count = get_cpu_count,
775 .get_smm_info = smm_info,
776 .get_microcode_info = get_microcode_info,
Aaron Durbin463af332016-05-03 17:26:35 -0500777 .pre_mp_smm_init = smm_initialize,
778 .per_cpu_smm_trigger = per_cpu_smm_trigger,
779 .relocation_handler = smm_relocation_handler,
780 .post_mp_init = post_mp_init,
781};
782
783void bsp_init_and_start_aps(struct bus *cpu_bus)
784{
Lee Leahy26eeb0f2017-03-15 18:08:50 -0700785 if (mp_init_with_smm(cpu_bus, &mp_ops))
Aaron Durbin014baea2014-03-28 22:01:05 -0500786 printk(BIOS_ERR, "MP initialization failure.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500787}
788
789static struct device_operations cpu_dev_ops = {
790 .init = haswell_init,
791};
792
Jonathan Neuschäfer8f06ce32017-11-20 01:56:44 +0100793static const struct cpu_device_id cpu_table[] = {
Aaron Durbin76c37002012-10-30 09:03:43 -0500794 { X86_VENDOR_INTEL, 0x306c1 }, /* Intel Haswell 4+2 A0 */
795 { X86_VENDOR_INTEL, 0x306c2 }, /* Intel Haswell 4+2 B0 */
Tristan Corrick22f97002018-10-31 02:22:39 +1300796 { X86_VENDOR_INTEL, 0x306c3 }, /* Intel Haswell C0 */
Duncan Laurie512540492012-12-17 11:24:45 -0800797 { X86_VENDOR_INTEL, 0x40650 }, /* Intel Haswell ULT B0 */
798 { X86_VENDOR_INTEL, 0x40651 }, /* Intel Haswell ULT B1 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500799 { 0, 0 },
800};
801
802static const struct cpu_driver driver __cpu_driver = {
803 .ops = &cpu_dev_ops,
804 .id_table = cpu_table,
Aaron Durbin7c351312013-04-10 14:46:25 -0500805 .cstates = cstate_map,
Aaron Durbin76c37002012-10-30 09:03:43 -0500806};