blob: d1f3c07109ffff3c59302a399d95ae87459f3225 [file] [log] [blame]
Simon Glass92312062019-04-25 21:58:51 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2016 Google, Inc
4 *
5 * Based on code from coreboot src/soc/intel/broadwell/cpu.c
6 */
7
8#include <common.h>
9#include <dm.h>
10#include <cpu.h>
11#include <asm/cpu.h>
12#include <asm/cpu_x86.h>
13#include <asm/cpu_common.h>
14#include <asm/intel_regs.h>
15#include <asm/msr.h>
16#include <asm/post.h>
17#include <asm/turbo.h>
18#include <asm/arch/cpu.h>
19#include <asm/arch/pch.h>
20#include <asm/arch/rcb.h>
21
22struct cpu_broadwell_priv {
23 bool ht_disabled;
24};
25
26/* Convert time in seconds to POWER_LIMIT_1_TIME MSR value */
27static const u8 power_limit_time_sec_to_msr[] = {
28 [0] = 0x00,
29 [1] = 0x0a,
30 [2] = 0x0b,
31 [3] = 0x4b,
32 [4] = 0x0c,
33 [5] = 0x2c,
34 [6] = 0x4c,
35 [7] = 0x6c,
36 [8] = 0x0d,
37 [10] = 0x2d,
38 [12] = 0x4d,
39 [14] = 0x6d,
40 [16] = 0x0e,
41 [20] = 0x2e,
42 [24] = 0x4e,
43 [28] = 0x6e,
44 [32] = 0x0f,
45 [40] = 0x2f,
46 [48] = 0x4f,
47 [56] = 0x6f,
48 [64] = 0x10,
49 [80] = 0x30,
50 [96] = 0x50,
51 [112] = 0x70,
52 [128] = 0x11,
53};
54
55/* Convert POWER_LIMIT_1_TIME MSR value to seconds */
56static const u8 power_limit_time_msr_to_sec[] = {
57 [0x00] = 0,
58 [0x0a] = 1,
59 [0x0b] = 2,
60 [0x4b] = 3,
61 [0x0c] = 4,
62 [0x2c] = 5,
63 [0x4c] = 6,
64 [0x6c] = 7,
65 [0x0d] = 8,
66 [0x2d] = 10,
67 [0x4d] = 12,
68 [0x6d] = 14,
69 [0x0e] = 16,
70 [0x2e] = 20,
71 [0x4e] = 24,
72 [0x6e] = 28,
73 [0x0f] = 32,
74 [0x2f] = 40,
75 [0x4f] = 48,
76 [0x6f] = 56,
77 [0x10] = 64,
78 [0x30] = 80,
79 [0x50] = 96,
80 [0x70] = 112,
81 [0x11] = 128,
82};
83
Simon Glass12c81b22019-09-25 08:11:40 -060084#if defined(CONFIG_SPL_BUILD) && !defined(CONFIG_TPL_BUILD)
85int arch_cpu_init(void)
86{
87 return 0;
88}
89#endif
90
Simon Glass92312062019-04-25 21:58:51 -060091/*
92 * The core 100MHz BLCK is disabled in deeper c-states. One needs to calibrate
93 * the 100MHz BCLCK against the 24MHz BLCK to restore the clocks properly
94 * when a core is woken up
95 */
96static int pcode_ready(void)
97{
98 int wait_count;
99 const int delay_step = 10;
100
101 wait_count = 0;
102 do {
103 if (!(readl(MCHBAR_REG(BIOS_MAILBOX_INTERFACE)) &
104 MAILBOX_RUN_BUSY))
105 return 0;
106 wait_count += delay_step;
107 udelay(delay_step);
108 } while (wait_count < 1000);
109
110 return -ETIMEDOUT;
111}
112
113static u32 pcode_mailbox_read(u32 command)
114{
115 int ret;
116
117 ret = pcode_ready();
118 if (ret) {
119 debug("PCODE: mailbox timeout on wait ready\n");
120 return ret;
121 }
122
123 /* Send command and start transaction */
124 writel(command | MAILBOX_RUN_BUSY, MCHBAR_REG(BIOS_MAILBOX_INTERFACE));
125
126 ret = pcode_ready();
127 if (ret) {
128 debug("PCODE: mailbox timeout on completion\n");
129 return ret;
130 }
131
132 /* Read mailbox */
133 return readl(MCHBAR_REG(BIOS_MAILBOX_DATA));
134}
135
136static int pcode_mailbox_write(u32 command, u32 data)
137{
138 int ret;
139
140 ret = pcode_ready();
141 if (ret) {
142 debug("PCODE: mailbox timeout on wait ready\n");
143 return ret;
144 }
145
146 writel(data, MCHBAR_REG(BIOS_MAILBOX_DATA));
147
148 /* Send command and start transaction */
149 writel(command | MAILBOX_RUN_BUSY, MCHBAR_REG(BIOS_MAILBOX_INTERFACE));
150
151 ret = pcode_ready();
152 if (ret) {
153 debug("PCODE: mailbox timeout on completion\n");
154 return ret;
155 }
156
157 return 0;
158}
159
160/* @dev is the CPU device */
161static void initialize_vr_config(struct udevice *dev)
162{
163 int ramp, min_vid;
164 msr_t msr;
165
166 debug("Initializing VR config\n");
167
168 /* Configure VR_CURRENT_CONFIG */
169 msr = msr_read(MSR_VR_CURRENT_CONFIG);
170 /*
171 * Preserve bits 63 and 62. Bit 62 is PSI4 enable, but it is only valid
172 * on ULT systems
173 */
174 msr.hi &= 0xc0000000;
175 msr.hi |= (0x01 << (52 - 32)); /* PSI3 threshold - 1A */
176 msr.hi |= (0x05 << (42 - 32)); /* PSI2 threshold - 5A */
177 msr.hi |= (0x14 << (32 - 32)); /* PSI1 threshold - 20A */
178 msr.hi |= (1 << (62 - 32)); /* Enable PSI4 */
179 /* Leave the max instantaneous current limit (12:0) to default */
180 msr_write(MSR_VR_CURRENT_CONFIG, msr);
181
182 /* Configure VR_MISC_CONFIG MSR */
183 msr = msr_read(MSR_VR_MISC_CONFIG);
184 /* Set the IOUT_SLOPE scalar applied to dIout in U10.1.9 format */
185 msr.hi &= ~(0x3ff << (40 - 32));
186 msr.hi |= (0x200 << (40 - 32)); /* 1.0 */
187 /* Set IOUT_OFFSET to 0 */
188 msr.hi &= ~0xff;
189 /* Set entry ramp rate to slow */
190 msr.hi &= ~(1 << (51 - 32));
191 /* Enable decay mode on C-state entry */
192 msr.hi |= (1 << (52 - 32));
193 /* Set the slow ramp rate */
194 msr.hi &= ~(0x3 << (53 - 32));
195 /* Configure the C-state exit ramp rate */
196 ramp = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
197 "intel,slow-ramp", -1);
198 if (ramp != -1) {
199 /* Configured slow ramp rate */
200 msr.hi |= ((ramp & 0x3) << (53 - 32));
201 /* Set exit ramp rate to slow */
202 msr.hi &= ~(1 << (50 - 32));
203 } else {
204 /* Fast ramp rate / 4 */
205 msr.hi |= (0x01 << (53 - 32));
206 /* Set exit ramp rate to fast */
207 msr.hi |= (1 << (50 - 32));
208 }
209 /* Set MIN_VID (31:24) to allow CPU to have full control */
210 msr.lo &= ~0xff000000;
211 min_vid = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
212 "intel,min-vid", 0);
213 msr.lo |= (min_vid & 0xff) << 24;
214 msr_write(MSR_VR_MISC_CONFIG, msr);
215
216 /* Configure VR_MISC_CONFIG2 MSR */
217 msr = msr_read(MSR_VR_MISC_CONFIG2);
218 msr.lo &= ~0xffff;
219 /*
220 * Allow CPU to control minimum voltage completely (15:8) and
221 * set the fast ramp voltage in 10mV steps
222 */
223 if (cpu_get_family_model() == BROADWELL_FAMILY_ULT)
224 msr.lo |= 0x006a; /* 1.56V */
225 else
226 msr.lo |= 0x006f; /* 1.60V */
227 msr_write(MSR_VR_MISC_CONFIG2, msr);
228
229 /* Set C9/C10 VCC Min */
230 pcode_mailbox_write(MAILBOX_BIOS_CMD_WRITE_C9C10_VOLTAGE, 0x1f1f);
231}
232
233static int calibrate_24mhz_bclk(void)
234{
235 int err_code;
236 int ret;
237
238 ret = pcode_ready();
239 if (ret)
240 return ret;
241
242 /* A non-zero value initiates the PCODE calibration */
243 writel(~0, MCHBAR_REG(BIOS_MAILBOX_DATA));
244 writel(MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_FSM_MEASURE_INTVL,
245 MCHBAR_REG(BIOS_MAILBOX_INTERFACE));
246
247 ret = pcode_ready();
248 if (ret)
249 return ret;
250
251 err_code = readl(MCHBAR_REG(BIOS_MAILBOX_INTERFACE)) & 0xff;
252
253 debug("PCODE: 24MHz BLCK calibration response: %d\n", err_code);
254
255 /* Read the calibrated value */
256 writel(MAILBOX_RUN_BUSY | MAILBOX_BIOS_CMD_READ_CALIBRATION,
257 MCHBAR_REG(BIOS_MAILBOX_INTERFACE));
258
259 ret = pcode_ready();
260 if (ret)
261 return ret;
262
263 debug("PCODE: 24MHz BLCK calibration value: 0x%08x\n",
264 readl(MCHBAR_REG(BIOS_MAILBOX_DATA)));
265
266 return 0;
267}
268
269static void configure_pch_power_sharing(void)
270{
271 u32 pch_power, pch_power_ext, pmsync, pmsync2;
272 int i;
273
274 /* Read PCH Power levels from PCODE */
275 pch_power = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER);
276 pch_power_ext = pcode_mailbox_read(MAILBOX_BIOS_CMD_READ_PCH_POWER_EXT);
277
278 debug("PCH Power: PCODE Levels 0x%08x 0x%08x\n", pch_power,
279 pch_power_ext);
280
281 pmsync = readl(RCB_REG(PMSYNC_CONFIG));
282 pmsync2 = readl(RCB_REG(PMSYNC_CONFIG2));
283
284 /*
285 * Program PMSYNC_TPR_CONFIG PCH power limit values
286 * pmsync[0:4] = mailbox[0:5]
287 * pmsync[8:12] = mailbox[6:11]
288 * pmsync[16:20] = mailbox[12:17]
289 */
290 for (i = 0; i < 3; i++) {
291 u32 level = pch_power & 0x3f;
292
293 pch_power >>= 6;
294 pmsync &= ~(0x1f << (i * 8));
295 pmsync |= (level & 0x1f) << (i * 8);
296 }
297 writel(pmsync, RCB_REG(PMSYNC_CONFIG));
298
299 /*
300 * Program PMSYNC_TPR_CONFIG2 Extended PCH power limit values
301 * pmsync2[0:4] = mailbox[23:18]
302 * pmsync2[8:12] = mailbox_ext[6:11]
303 * pmsync2[16:20] = mailbox_ext[12:17]
304 * pmsync2[24:28] = mailbox_ext[18:22]
305 */
306 pmsync2 &= ~0x1f;
307 pmsync2 |= pch_power & 0x1f;
308
309 for (i = 1; i < 4; i++) {
310 u32 level = pch_power_ext & 0x3f;
311
312 pch_power_ext >>= 6;
313 pmsync2 &= ~(0x1f << (i * 8));
314 pmsync2 |= (level & 0x1f) << (i * 8);
315 }
316 writel(pmsync2, RCB_REG(PMSYNC_CONFIG2));
317}
318
319static int bsp_init_before_ap_bringup(struct udevice *dev)
320{
321 int ret;
322
323 initialize_vr_config(dev);
324 ret = calibrate_24mhz_bclk();
325 if (ret)
326 return ret;
327 configure_pch_power_sharing();
328
329 return 0;
330}
331
332static int cpu_config_tdp_levels(void)
333{
334 msr_t platform_info;
335
336 /* Bits 34:33 indicate how many levels supported */
337 platform_info = msr_read(MSR_PLATFORM_INFO);
338 return (platform_info.hi >> 1) & 3;
339}
340
341static void set_max_ratio(void)
342{
343 msr_t msr, perf_ctl;
344
345 perf_ctl.hi = 0;
346
347 /* Check for configurable TDP option */
348 if (turbo_get_state() == TURBO_ENABLED) {
Simon Glassbdeb2bc2019-09-25 08:11:47 -0600349 msr = msr_read(MSR_TURBO_RATIO_LIMIT);
Simon Glass92312062019-04-25 21:58:51 -0600350 perf_ctl.lo = (msr.lo & 0xff) << 8;
351 } else if (cpu_config_tdp_levels()) {
352 /* Set to nominal TDP ratio */
353 msr = msr_read(MSR_CONFIG_TDP_NOMINAL);
354 perf_ctl.lo = (msr.lo & 0xff) << 8;
355 } else {
356 /* Platform Info bits 15:8 give max ratio */
357 msr = msr_read(MSR_PLATFORM_INFO);
358 perf_ctl.lo = msr.lo & 0xff00;
359 }
Simon Glasse2493a72019-09-25 08:56:35 -0600360 msr_write(MSR_IA32_PERF_CTL, perf_ctl);
Simon Glass92312062019-04-25 21:58:51 -0600361
362 debug("cpu: frequency set to %d\n",
363 ((perf_ctl.lo >> 8) & 0xff) * CPU_BCLK);
364}
365
366int broadwell_init(struct udevice *dev)
367{
368 struct cpu_broadwell_priv *priv = dev_get_priv(dev);
369 int num_threads;
370 int num_cores;
371 msr_t msr;
372 int ret;
373
374 msr = msr_read(CORE_THREAD_COUNT_MSR);
375 num_threads = (msr.lo >> 0) & 0xffff;
376 num_cores = (msr.lo >> 16) & 0xffff;
377 debug("CPU has %u cores, %u threads enabled\n", num_cores,
378 num_threads);
379
380 priv->ht_disabled = num_threads == num_cores;
381
382 ret = bsp_init_before_ap_bringup(dev);
383 if (ret)
384 return ret;
385
386 set_max_ratio();
387
388 return ret;
389}
390
391static void configure_mca(void)
392{
393 msr_t msr;
394 const unsigned int mcg_cap_msr = 0x179;
395 int i;
396 int num_banks;
397
398 msr = msr_read(mcg_cap_msr);
399 num_banks = msr.lo & 0xff;
400 msr.lo = 0;
401 msr.hi = 0;
402 /*
403 * TODO(adurbin): This should only be done on a cold boot. Also, some
404 * of these banks are core vs package scope. For now every CPU clears
405 * every bank
406 */
407 for (i = 0; i < num_banks; i++)
408 msr_write(MSR_IA32_MC0_STATUS + (i * 4), msr);
409}
410
411static void enable_lapic_tpr(void)
412{
413 msr_t msr;
414
415 msr = msr_read(MSR_PIC_MSG_CONTROL);
416 msr.lo &= ~(1 << 10); /* Enable APIC TPR updates */
417 msr_write(MSR_PIC_MSG_CONTROL, msr);
418}
419
420static void configure_c_states(void)
421{
422 msr_t msr;
423
424 msr = msr_read(MSR_PMG_CST_CONFIG_CONTROL);
425 msr.lo |= (1 << 31); /* Timed MWAIT Enable */
426 msr.lo |= (1 << 30); /* Package c-state Undemotion Enable */
427 msr.lo |= (1 << 29); /* Package c-state Demotion Enable */
428 msr.lo |= (1 << 28); /* C1 Auto Undemotion Enable */
429 msr.lo |= (1 << 27); /* C3 Auto Undemotion Enable */
430 msr.lo |= (1 << 26); /* C1 Auto Demotion Enable */
431 msr.lo |= (1 << 25); /* C3 Auto Demotion Enable */
432 msr.lo &= ~(1 << 10); /* Disable IO MWAIT redirection */
433 /* The deepest package c-state defaults to factory-configured value */
434 msr_write(MSR_PMG_CST_CONFIG_CONTROL, msr);
435
436 msr = msr_read(MSR_MISC_PWR_MGMT);
437 msr.lo &= ~(1 << 0); /* Enable P-state HW_ALL coordination */
438 msr_write(MSR_MISC_PWR_MGMT, msr);
439
440 msr = msr_read(MSR_POWER_CTL);
441 msr.lo |= (1 << 18); /* Enable Energy Perf Bias MSR 0x1b0 */
442 msr.lo |= (1 << 1); /* C1E Enable */
443 msr.lo |= (1 << 0); /* Bi-directional PROCHOT# */
444 msr_write(MSR_POWER_CTL, msr);
445
446 /* C-state Interrupt Response Latency Control 0 - package C3 latency */
447 msr.hi = 0;
448 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_0_LIMIT;
449 msr_write(MSR_C_STATE_LATENCY_CONTROL_0, msr);
450
451 /* C-state Interrupt Response Latency Control 1 */
452 msr.hi = 0;
453 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_1_LIMIT;
454 msr_write(MSR_C_STATE_LATENCY_CONTROL_1, msr);
455
456 /* C-state Interrupt Response Latency Control 2 - package C6/C7 short */
457 msr.hi = 0;
458 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_2_LIMIT;
459 msr_write(MSR_C_STATE_LATENCY_CONTROL_2, msr);
460
461 /* C-state Interrupt Response Latency Control 3 - package C8 */
462 msr.hi = 0;
463 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_3_LIMIT;
464 msr_write(MSR_C_STATE_LATENCY_CONTROL_3, msr);
465
466 /* C-state Interrupt Response Latency Control 4 - package C9 */
467 msr.hi = 0;
468 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_4_LIMIT;
469 msr_write(MSR_C_STATE_LATENCY_CONTROL_4, msr);
470
471 /* C-state Interrupt Response Latency Control 5 - package C10 */
472 msr.hi = 0;
473 msr.lo = IRTL_VALID | IRTL_1024_NS | C_STATE_LATENCY_CONTROL_5_LIMIT;
474 msr_write(MSR_C_STATE_LATENCY_CONTROL_5, msr);
475}
476
477static void configure_misc(void)
478{
479 msr_t msr;
480
481 msr = msr_read(MSR_IA32_MISC_ENABLE);
482 msr.lo |= (1 << 0); /* Fast String enable */
483 msr.lo |= (1 << 3); /* TM1/TM2/EMTTM enable */
484 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
485 msr_write(MSR_IA32_MISC_ENABLE, msr);
486
487 /* Disable thermal interrupts */
488 msr.lo = 0;
489 msr.hi = 0;
490 msr_write(MSR_IA32_THERM_INTERRUPT, msr);
491
492 /* Enable package critical interrupt only */
493 msr.lo = 1 << 4;
494 msr.hi = 0;
495 msr_write(MSR_IA32_PACKAGE_THERM_INTERRUPT, msr);
496}
497
Simon Glass92312062019-04-25 21:58:51 -0600498static void configure_dca_cap(void)
499{
500 struct cpuid_result cpuid_regs;
501 msr_t msr;
502
503 /* Check feature flag in CPUID.(EAX=1):ECX[18]==1 */
504 cpuid_regs = cpuid(1);
505 if (cpuid_regs.ecx & (1 << 18)) {
506 msr = msr_read(MSR_IA32_PLATFORM_DCA_CAP);
507 msr.lo |= 1;
508 msr_write(MSR_IA32_PLATFORM_DCA_CAP, msr);
509 }
510}
511
512static void set_energy_perf_bias(u8 policy)
513{
514 msr_t msr;
515 int ecx;
516
517 /* Determine if energy efficient policy is supported */
518 ecx = cpuid_ecx(0x6);
519 if (!(ecx & (1 << 3)))
520 return;
521
522 /* Energy Policy is bits 3:0 */
523 msr = msr_read(MSR_IA32_ENERGY_PERFORMANCE_BIAS);
524 msr.lo &= ~0xf;
525 msr.lo |= policy & 0xf;
526 msr_write(MSR_IA32_ENERGY_PERFORMANCE_BIAS, msr);
527
528 debug("cpu: energy policy set to %u\n", policy);
529}
530
531/* All CPUs including BSP will run the following function */
532static void cpu_core_init(struct udevice *dev)
533{
534 /* Clear out pending MCEs */
535 configure_mca();
536
537 /* Enable the local cpu apics */
538 enable_lapic_tpr();
539
540 /* Configure C States */
541 configure_c_states();
542
543 /* Configure Enhanced SpeedStep and Thermal Sensors */
544 configure_misc();
545
546 /* Thermal throttle activation offset */
Simon Glass246ac082019-09-25 08:56:36 -0600547 cpu_configure_thermal_target(dev);
Simon Glass92312062019-04-25 21:58:51 -0600548
549 /* Enable Direct Cache Access */
550 configure_dca_cap();
551
552 /* Set energy policy */
553 set_energy_perf_bias(ENERGY_POLICY_NORMAL);
554
555 /* Enable Turbo */
556 turbo_enable();
557}
558
559/*
560 * Configure processor power limits if possible
561 * This must be done AFTER set of BIOS_RESET_CPL
562 */
563void cpu_set_power_limits(int power_limit_1_time)
564{
565 msr_t msr;
566 msr_t limit;
567 uint power_unit;
568 uint tdp, min_power, max_power, max_time;
569 u8 power_limit_1_val;
570
571 msr = msr_read(MSR_PLATFORM_INFO);
572 if (power_limit_1_time > ARRAY_SIZE(power_limit_time_sec_to_msr))
573 power_limit_1_time = 28;
574
575 if (!(msr.lo & PLATFORM_INFO_SET_TDP))
576 return;
577
578 /* Get units */
579 msr = msr_read(MSR_PKG_POWER_SKU_UNIT);
580 power_unit = 2 << ((msr.lo & 0xf) - 1);
581
582 /* Get power defaults for this SKU */
583 msr = msr_read(MSR_PKG_POWER_SKU);
584 tdp = msr.lo & 0x7fff;
585 min_power = (msr.lo >> 16) & 0x7fff;
586 max_power = msr.hi & 0x7fff;
587 max_time = (msr.hi >> 16) & 0x7f;
588
589 debug("CPU TDP: %u Watts\n", tdp / power_unit);
590
591 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time)
592 power_limit_1_time = power_limit_time_msr_to_sec[max_time];
593
594 if (min_power > 0 && tdp < min_power)
595 tdp = min_power;
596
597 if (max_power > 0 && tdp > max_power)
598 tdp = max_power;
599
600 power_limit_1_val = power_limit_time_sec_to_msr[power_limit_1_time];
601
602 /* Set long term power limit to TDP */
603 limit.lo = 0;
604 limit.lo |= tdp & PKG_POWER_LIMIT_MASK;
605 limit.lo |= PKG_POWER_LIMIT_EN;
606 limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) <<
607 PKG_POWER_LIMIT_TIME_SHIFT;
608
609 /* Set short term power limit to 1.25 * TDP */
610 limit.hi = 0;
611 limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK;
612 limit.hi |= PKG_POWER_LIMIT_EN;
613 /* Power limit 2 time is only programmable on server SKU */
614
615 msr_write(MSR_PKG_POWER_LIMIT, limit);
616
617 /* Set power limit values in MCHBAR as well */
618 writel(limit.lo, MCHBAR_REG(MCH_PKG_POWER_LIMIT_LO));
619 writel(limit.hi, MCHBAR_REG(MCH_PKG_POWER_LIMIT_HI));
620
621 /* Set DDR RAPL power limit by copying from MMIO to MSR */
622 msr.lo = readl(MCHBAR_REG(MCH_DDR_POWER_LIMIT_LO));
623 msr.hi = readl(MCHBAR_REG(MCH_DDR_POWER_LIMIT_HI));
624 msr_write(MSR_DDR_RAPL_LIMIT, msr);
625
626 /* Use nominal TDP values for CPUs with configurable TDP */
627 if (cpu_config_tdp_levels()) {
628 msr = msr_read(MSR_CONFIG_TDP_NOMINAL);
629 limit.hi = 0;
630 limit.lo = msr.lo & 0xff;
631 msr_write(MSR_TURBO_ACTIVATION_RATIO, limit);
632 }
633}
634
635static int broadwell_get_info(struct udevice *dev, struct cpu_info *info)
636{
Simon Glassd3abc5d2019-09-25 08:11:35 -0600637 return cpu_intel_get_info(info, BROADWELL_BCLK);
Simon Glass92312062019-04-25 21:58:51 -0600638}
639
640static int broadwell_get_count(struct udevice *dev)
641{
642 return 4;
643}
644
645static int cpu_x86_broadwell_probe(struct udevice *dev)
646{
647 if (dev->seq == 0) {
648 cpu_core_init(dev);
649 return broadwell_init(dev);
650 }
651
652 return 0;
653}
654
655static const struct cpu_ops cpu_x86_broadwell_ops = {
656 .get_desc = cpu_x86_get_desc,
657 .get_info = broadwell_get_info,
658 .get_count = broadwell_get_count,
659 .get_vendor = cpu_x86_get_vendor,
660};
661
662static const struct udevice_id cpu_x86_broadwell_ids[] = {
663 { .compatible = "intel,core-i3-gen5" },
664 { }
665};
666
667U_BOOT_DRIVER(cpu_x86_broadwell_drv) = {
668 .name = "cpu_x86_broadwell",
669 .id = UCLASS_CPU,
670 .of_match = cpu_x86_broadwell_ids,
671 .bind = cpu_x86_bind,
672 .probe = cpu_x86_broadwell_probe,
673 .ops = &cpu_x86_broadwell_ops,
674 .priv_auto_alloc_size = sizeof(struct cpu_broadwell_priv),
675 .flags = DM_FLAG_PRE_RELOC,
676};