blob: cd722f540c347c312bbf8b48c34e87234678520a [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Thomas Jourdan1a692d82009-07-01 17:01:17 +00002
3#include <console/console.h>
4#include <device/device.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +00005#include <cpu/cpu.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +00006#include <cpu/x86/msr.h>
7#include <cpu/x86/lapic.h>
Stefan Reinauer2a27b202010-12-11 22:14:44 +00008#include <cpu/intel/speedstep.h>
Thomas Jourdan1a692d82009-07-01 17:01:17 +00009#include <cpu/x86/cache.h>
Uwe Hermannaac8f662010-09-29 09:54:16 +000010#include <cpu/x86/name.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030011#include <cpu/intel/smm_reloc.h>
Elyes HAOUAS273c3482020-06-15 18:29:43 +020012
Nico Huber68d7c7a2012-10-02 11:46:11 +020013#include "chip.h"
14
Thomas Jourdan1a692d82009-07-01 17:01:17 +000015static void init_timer(void)
16{
Elyes HAOUASd6e96862016-08-21 10:12:15 +020017 /* Set the APIC timer to no interrupts and periodic mode */
Lee Leahy9d62e7e2017-03-15 17:40:50 -070018 lapic_write(LAPIC_LVTT, (1 << 17) | (1 << 16) | (0 << 12) | (0 << 0));
Thomas Jourdan1a692d82009-07-01 17:01:17 +000019
20 /* Set the divider to 1, no divider */
21 lapic_write(LAPIC_TDCR, LAPIC_TDR_DIV_1);
22
23 /* Set the initial counter to 0xffffffff */
24 lapic_write(LAPIC_TMICT, 0xffffffff);
25}
26
Nico Huber68d7c7a2012-10-02 11:46:11 +020027#define MSR_BBL_CR_CTL3 0x11e
Thomas Jourdan1a692d82009-07-01 17:01:17 +000028
Nico Huber68d7c7a2012-10-02 11:46:11 +020029static void configure_c_states(const int quad)
Thomas Jourdan1a692d82009-07-01 17:01:17 +000030{
31 msr_t msr;
32
Nico Huber68d7c7a2012-10-02 11:46:11 +020033 /* Find pointer to CPU configuration. */
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +110034 const struct device *lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
Nico Huber68d7c7a2012-10-02 11:46:11 +020035 const struct cpu_intel_model_1067x_config *const conf =
36 (lapic && lapic->chip_info) ? lapic->chip_info : NULL;
37
38 /* Is C5 requested and supported? */
39 const int c5 = conf && conf->c5 &&
40 (rdmsr(MSR_BBL_CR_CTL3).lo & (3 << 30)) &&
41 !(rdmsr(MSR_FSB_FREQ).lo & (1 << 31));
42 /* Is C6 requested and supported? */
43 const int c6 = conf && conf->c6 &&
44 ((cpuid_edx(5) >> (6 * 4)) & 0xf) && c5;
45
46 const int cst_range = (c6 ? 6 : (c5 ? 5 : 4)) - 2; /* zero means lvl2 */
47
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +020048 msr = rdmsr(MSR_PKG_CST_CONFIG_CONTROL);
Thomas Jourdan1a692d82009-07-01 17:01:17 +000049 msr.lo &= ~(1 << 9); // Issue a single stop grant cycle upon stpclk
Nico Huber68d7c7a2012-10-02 11:46:11 +020050 msr.lo |= (1 << 8);
Lee Leahy26eeb0f2017-03-15 18:08:50 -070051 if (quad)
Nico Huber68d7c7a2012-10-02 11:46:11 +020052 msr.lo = (msr.lo & ~(7 << 0)) | (4 << 0);
Nico Huber68d7c7a2012-10-02 11:46:11 +020053 if (c5) {
54 msr.lo &= ~(1 << 13);
55 msr.lo &= ~(7 << 0);
56 msr.lo |= (1 << 3); /* Enable dynamic L2. */
57 msr.lo |= (1 << 14); /* Enable deeper sleep */
58 }
59 /* Next two fields seem to be mutually exclusive: */
60 msr.lo &= ~(7 << 4);
61 msr.lo |= (1 << 10); /* Enable IO MWAIT redirection. */
62 if (c6)
63 msr.lo |= (1 << 25);
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +020064 wrmsr(MSR_PKG_CST_CONFIG_CONTROL, msr);
Thomas Jourdan1a692d82009-07-01 17:01:17 +000065
66 /* Set Processor MWAIT IO BASE */
67 msr.hi = 0;
Lee Leahycdc50482017-03-15 18:26:18 -070068 msr.lo = ((PMB0_BASE + 4) & 0xffff) | (((PMB1_BASE + 9) & 0xffff)
69 << 16);
Patrick Georgi644e83b2013-02-09 15:35:30 +010070 wrmsr(MSR_PMG_IO_BASE_ADDR, msr);
Thomas Jourdan1a692d82009-07-01 17:01:17 +000071
72 /* Set IO Capture Address */
73 msr.hi = 0;
Nico Huber68d7c7a2012-10-02 11:46:11 +020074 msr.lo = ((PMB0_BASE + 4) & 0xffff) | ((cst_range & 0xffff) << 16);
Patrick Georgi644e83b2013-02-09 15:35:30 +010075 wrmsr(MSR_PMG_IO_CAPTURE_ADDR, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +020076
77 if (c5) {
78 msr = rdmsr(MSR_BBL_CR_CTL3);
79 msr.lo &= ~(7 << 25);
80 msr.lo |= (2 << 25);
81 msr.lo &= ~(3 << 30);
82 msr.lo |= (1 << 30);
83 wrmsr(MSR_BBL_CR_CTL3, msr);
84 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +000085}
86
Nico Huber68d7c7a2012-10-02 11:46:11 +020087static void configure_p_states(const char stepping, const char cores)
Thomas Jourdan1a692d82009-07-01 17:01:17 +000088{
89 msr_t msr;
90
Nico Huber68d7c7a2012-10-02 11:46:11 +020091 /* Find pointer to CPU configuration. */
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +110092 const struct device *lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
Nico Huber68d7c7a2012-10-02 11:46:11 +020093 struct cpu_intel_model_1067x_config *const conf =
94 (lapic && lapic->chip_info) ? lapic->chip_info : NULL;
95
96 msr = rdmsr(MSR_EXTENDED_CONFIG);
Patrick Georgif17c58b2014-08-09 20:48:12 +020097 /* Super LFM supported? */
98 if (conf && conf->slfm && (msr.lo & (1 << 27)))
Nico Huber68d7c7a2012-10-02 11:46:11 +020099 msr.lo |= (1 << 28); /* Enable Super LFM. */
100 wrmsr(MSR_EXTENDED_CONFIG, msr);
101
102 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32))) {
103 /* Turbo supported? */
104 if ((stepping == 0xa) && (cores < 4)) {
105 msr = rdmsr(MSR_FSB_FREQ);
106 msr.lo |= (1 << 3); /* Enable hysteresis. */
107 wrmsr(MSR_FSB_FREQ, msr);
108 }
109 msr = rdmsr(IA32_PERF_CTL);
110 msr.hi &= ~(1 << (32 - 32)); /* Clear turbo disable. */
111 wrmsr(IA32_PERF_CTL, msr);
112 }
113
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200114 msr = rdmsr(MSR_PKG_CST_CONFIG_CONTROL);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200115 msr.lo &= ~(1 << 11); /* Enable hw coordination. */
116 msr.lo |= (1 << 15); /* Lock config until next reset. */
Elyes HAOUAS4e6b7902018-10-02 08:44:47 +0200117 wrmsr(MSR_PKG_CST_CONFIG_CONTROL, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200118}
119
120#define MSR_EMTTM_CR_TABLE(x) (0xa8 + (x))
121#define MSR_EMTTM_TABLE_NUM 6
122static void configure_emttm_tables(void)
123{
124 int i;
125 int num_states, pstate_idx;
126 msr_t msr;
127 sst_table_t pstates;
128
129 /* Gather p-state information. */
130 speedstep_gen_pstates(&pstates);
131
132 /* Never turbo mode or Super LFM. */
133 num_states = pstates.num_states;
134 if (pstates.states[0].is_turbo)
135 --num_states;
136 if (pstates.states[pstates.num_states - 1].is_slfm)
137 --num_states;
138 /* Repeat lowest p-state if we haven't enough states. */
139 const int num_lowest_pstate =
140 (num_states < MSR_EMTTM_TABLE_NUM)
141 ? (MSR_EMTTM_TABLE_NUM - num_states) + 1
142 : 1;
143 /* Start from the lowest entry but skip Super LFM. */
144 if (pstates.states[pstates.num_states - 1].is_slfm)
145 pstate_idx = pstates.num_states - 2;
146 else
147 pstate_idx = pstates.num_states - 1;
148 for (i = 0; i < MSR_EMTTM_TABLE_NUM; ++i) {
149 if (i >= num_lowest_pstate)
150 --pstate_idx;
151 const sst_state_t *const pstate = &pstates.states[pstate_idx];
152 printk(BIOS_DEBUG, "writing P-State %d: %d, %d, "
153 "%2d, 0x%02x, %d; encoded: 0x%04x\n",
154 pstate_idx, pstate->dynfsb, pstate->nonint,
155 pstate->ratio, pstate->vid, pstate->power,
156 SPEEDSTEP_ENCODE_STATE(*pstate));
157 msr.hi = 0;
158 msr.lo = SPEEDSTEP_ENCODE_STATE(pstates.states[pstate_idx]) &
159 /* Don't set half ratios. */
160 ~SPEEDSTEP_RATIO_NONINT;
161 wrmsr(MSR_EMTTM_CR_TABLE(i), msr);
162 }
163
164 msr = rdmsr(MSR_EMTTM_CR_TABLE(5));
165 msr.lo |= (1 << 31); /* lock tables */
166 wrmsr(MSR_EMTTM_CR_TABLE(5), msr);
167}
168
Michael Büchler70fea012020-09-09 01:04:27 +0200169#define IA32_PECI_CTL 0x5a0
170
Nico Huber68d7c7a2012-10-02 11:46:11 +0200171static void configure_misc(const int eist, const int tm2, const int emttm)
172{
173 msr_t msr;
174
175 const u32 sub_cstates = cpuid_edx(5);
176
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200177 msr = rdmsr(IA32_MISC_ENABLE);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200178 msr.lo |= (1 << 3); /* TM1 enable */
179 if (tm2)
180 msr.lo |= (1 << 13); /* TM2 enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000181 msr.lo |= (1 << 17); /* Bidirectional PROCHOT# */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200182 msr.lo |= (1 << 18); /* MONITOR/MWAIT enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000183
184 msr.lo |= (1 << 10); /* FERR# multiplexing */
185
Nico Huber68d7c7a2012-10-02 11:46:11 +0200186 if (eist)
187 msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000188
189 /* Enable C2E */
Lee Leahy26eeb0f2017-03-15 18:08:50 -0700190 if (((sub_cstates >> (2 * 4)) & 0xf) >= 2)
Nico Huber68d7c7a2012-10-02 11:46:11 +0200191 msr.lo |= (1 << 26);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000192
193 /* Enable C4E */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200194 if (((sub_cstates >> (4 * 4)) & 0xf) >= 2) {
195 msr.hi |= (1 << (32 - 32)); // C4E
196 msr.hi |= (1 << (33 - 32)); // Hard C4E
197 }
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000198
Nico Huber68d7c7a2012-10-02 11:46:11 +0200199 /* Enable EMTTM */
200 if (emttm)
201 msr.hi |= (1 << (36 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000202
Nico Huber68d7c7a2012-10-02 11:46:11 +0200203 /* Enable turbo mode */
204 if (rdmsr(MSR_FSB_CLOCK_VCC).hi & (1 << (63 - 32)))
205 msr.hi &= ~(1 << (38 - 32));
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000206
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200207 wrmsr(IA32_MISC_ENABLE, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200208
209 if (eist) {
210 msr.lo |= (1 << 20); /* Lock Enhanced SpeedStep Enable */
Elyes HAOUAS419bfbc2018-10-01 08:47:51 +0200211 wrmsr(IA32_MISC_ENABLE, msr);
Nico Huber68d7c7a2012-10-02 11:46:11 +0200212 }
Michael Büchler70fea012020-09-09 01:04:27 +0200213
214 /* Enable PECI
215 WARNING: due to Erratum AW67 described in Intel document #318733
216 the microcode must be updated before this MSR is written to. */
217 msr = rdmsr(IA32_PECI_CTL);
218 msr.lo |= 1;
219 wrmsr(IA32_PECI_CTL, msr);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000220}
221
222#define PIC_SENS_CFG 0x1aa
Nico Huber68d7c7a2012-10-02 11:46:11 +0200223static void configure_pic_thermal_sensors(const int tm2, const int quad)
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000224{
225 msr_t msr;
226
227 msr = rdmsr(PIC_SENS_CFG);
228
Nico Huber68d7c7a2012-10-02 11:46:11 +0200229 if (quad)
230 msr.lo |= (1 << 31);
231 else
232 msr.lo &= ~(1 << 31);
233 if (tm2)
234 msr.lo |= (1 << 20); /* Enable TM1 if TM2 fails. */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000235 msr.lo |= (1 << 21); // inter-core lock TM1
Nico Huber68d7c7a2012-10-02 11:46:11 +0200236 msr.lo |= (1 << 4); // Enable bypass filter /* What does it do? */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000237
238 wrmsr(PIC_SENS_CFG, msr);
239}
240
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100241static void model_1067x_init(struct device *cpu)
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000242{
243 char processor_name[49];
244
Nico Huber68d7c7a2012-10-02 11:46:11 +0200245
246 /* Gather some information: */
247
248 const struct cpuid_result cpuid1 = cpuid(1);
249
250 /* Read stepping. */
251 const char stepping = cpuid1.eax & 0xf;
252 /* Read number of cores. */
253 const char cores = (cpuid1.ebx >> 16) & 0xf;
254 /* Is this a quad core? */
255 const char quad = cores > 2;
256 /* Is this even a multiprocessor? */
257 const char mp = cores > 1;
258
259 /* Enable EMTTM on uni- and on multi-processors if it's not disabled. */
260 const char emttm = !mp || !(rdmsr(MSR_EXTENDED_CONFIG).lo & 4);
261
262 /* Is enhanced speedstep supported? */
263 const char eist = (cpuid1.ecx & (1 << 7)) &&
264 !(rdmsr(IA32_PLATFORM_ID).lo & (1 << 17));
265 /* Test for TM2 only if EIST is available. */
266 const char tm2 = eist && (cpuid1.ecx & (1 << 8));
267
268
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000269 /* Turn on caching if we haven't already */
270 x86_enable_cache();
271
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000272 /* Print processor name */
273 fill_processor_name(processor_name);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000274 printk(BIOS_INFO, "CPU: %s.\n", processor_name);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000275
Elyes HAOUASd6e96862016-08-21 10:12:15 +0200276 /* Enable the local CPU APICs */
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000277 setup_lapic();
278
279 /* Initialize the APIC timer */
280 init_timer();
281
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000282 /* Configure C States */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200283 configure_c_states(quad);
284
285 /* Configure P States */
286 configure_p_states(stepping, cores);
287
288 /* EMTTM */
289 if (emttm)
290 configure_emttm_tables();
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000291
292 /* Configure Enhanced SpeedStep and Thermal Sensors */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200293 configure_misc(eist, tm2, emttm);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000294
295 /* PIC thermal sensor control */
Nico Huber68d7c7a2012-10-02 11:46:11 +0200296 configure_pic_thermal_sensors(tm2, quad);
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000297}
298
299static struct device_operations cpu_dev_ops = {
300 .init = model_1067x_init,
301};
302
Jonathan Neuschäfer8f06ce32017-11-20 01:56:44 +0100303static const struct cpu_device_id cpu_table[] = {
Angel Pons10857062020-08-05 23:40:00 +0200304 { X86_VENDOR_INTEL, 0x10676 },
Stefan Reinauerc104cb02010-10-18 00:21:39 +0000305 { X86_VENDOR_INTEL, 0x10677 },
306 { X86_VENDOR_INTEL, 0x1067A },
Thomas Jourdan1a692d82009-07-01 17:01:17 +0000307 { 0, 0 },
308};
309
310static const struct cpu_driver driver __cpu_driver = {
311 .ops = &cpu_dev_ops,
312 .id_table = cpu_table,
313};
314
Nico Huber68d7c7a2012-10-02 11:46:11 +0200315struct chip_operations cpu_intel_model_1067x_ops = {
316 CHIP_NAME("Intel Penryn CPU")
317};