blob: 6153174689cfe6ebba5a738db95da8ef8c94f7db [file] [log] [blame]
Stefan Reinauer5c554632012-04-04 00:09:50 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 coresystems GmbH
5 * Copyright (C) 2011 The Chromium OS 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 <types.h>
24#include <console/console.h>
25#include <arch/acpi.h>
26#include <arch/acpigen.h>
27#include <arch/cpu.h>
28#include <cpu/x86/msr.h>
29#include <cpu/intel/acpi.h>
30#include <cpu/intel/speedstep.h>
31#include <cpu/intel/turbo.h>
32#include <device/device.h>
33#include <device/pci.h>
34#include "model_206ax.h"
35#include "chip.h"
36
37static int get_cores_per_package(void)
38{
39 struct cpuinfo_x86 c;
40 struct cpuid_result result;
41 int cores = 1;
42
43 get_fms(&c, cpuid_eax(1));
44 if (c.x86 != 6)
45 return 1;
46
Stefan Reinauerbb31f3a2012-05-11 16:30:54 -070047 result = cpuid_ext(0xb, 1);
48 cores = result.ebx & 0xff;
Stefan Reinauer5c554632012-04-04 00:09:50 +020049
50 return cores;
51}
52
53static int generate_cstate_entries(acpi_cstate_t *cstates,
54 int c1, int c2, int c3)
55{
56 int length, cstate_count = 0;
57
58 /* Count number of active C-states */
59 if (c1 > 0)
60 ++cstate_count;
61 if (c2 > 0)
62 ++cstate_count;
63 if (c3 > 0)
64 ++cstate_count;
65 if (!cstate_count)
66 return 0;
67
68 length = acpigen_write_package(cstate_count + 1);
69 length += acpigen_write_byte(cstate_count);
70
71 /* Add an entry if the level is enabled */
Stefan Reinauerc31384e2012-04-27 23:13:39 +020072 if (c1 > 0) {
73 cstates[c1].ctype = 1;
74 length += acpigen_write_CST_package_entry(&cstates[c1]);
75 }
76 if (c2 > 0) {
77 cstates[c2].ctype = 2;
78 length += acpigen_write_CST_package_entry(&cstates[c2]);
79 }
80 if (c3 > 0) {
81 cstates[c2].ctype = 2;
82 length += acpigen_write_CST_package_entry(&cstates[c3]);
83 }
Stefan Reinauer5c554632012-04-04 00:09:50 +020084
85 acpigen_patch_len(length - 1);
86 return length;
87}
88
89static int generate_C_state_entries(void)
90{
91 struct cpu_info *info;
92 struct cpu_driver *cpu;
93 int len, lenif;
94 device_t lapic;
95 struct cpu_intel_model_206ax_config *conf = NULL;
96
97 /* Find the SpeedStep CPU in the device tree using magic APIC ID */
98 lapic = dev_find_lapic(SPEEDSTEP_APIC_MAGIC);
99 if (!lapic)
100 return 0;
101 conf = lapic->chip_info;
102 if (!conf)
103 return 0;
104
105 /* Find CPU map of supported C-states */
106 info = cpu_info();
107 if (!info)
108 return 0;
109 cpu = find_cpu_driver(info->cpu);
110 if (!cpu || !cpu->cstates)
111 return 0;
112
113 len = acpigen_emit_byte(0x14); /* MethodOp */
114 len += acpigen_write_len_f(); /* PkgLength */
115 len += acpigen_emit_namestring("_CST");
116 len += acpigen_emit_byte(0x00); /* No Arguments */
117
118 /* If running on AC power */
119 len += acpigen_emit_byte(0xa0); /* IfOp */
120 lenif = acpigen_write_len_f(); /* PkgLength */
121 lenif += acpigen_emit_namestring("PWRS");
122 lenif += acpigen_emit_byte(0xa4); /* ReturnOp */
123 lenif += generate_cstate_entries(cpu->cstates, conf->c1_acpower,
124 conf->c2_acpower, conf->c3_acpower);
125 acpigen_patch_len(lenif - 1);
126 len += lenif;
127
128 /* Else on battery power */
129 len += acpigen_emit_byte(0xa4); /* ReturnOp */
130 len += generate_cstate_entries(cpu->cstates, conf->c1_battery,
131 conf->c2_battery, conf->c3_battery);
132 acpigen_patch_len(len - 1);
133 return len;
134}
135
136static acpi_tstate_t tss_table_fine[] = {
137 { 100, 1000, 0, 0x00, 0 },
138 { 94, 940, 0, 0x1f, 0 },
139 { 88, 880, 0, 0x1e, 0 },
140 { 82, 820, 0, 0x1d, 0 },
141 { 75, 760, 0, 0x1c, 0 },
142 { 69, 700, 0, 0x1b, 0 },
143 { 63, 640, 0, 0x1a, 0 },
144 { 57, 580, 0, 0x19, 0 },
145 { 50, 520, 0, 0x18, 0 },
146 { 44, 460, 0, 0x17, 0 },
147 { 38, 400, 0, 0x16, 0 },
148 { 32, 340, 0, 0x15, 0 },
149 { 25, 280, 0, 0x14, 0 },
150 { 19, 220, 0, 0x13, 0 },
151 { 13, 160, 0, 0x12, 0 },
152};
153
154static acpi_tstate_t tss_table_coarse[] = {
155 { 100, 1000, 0, 0x00, 0 },
156 { 88, 875, 0, 0x1f, 0 },
157 { 75, 750, 0, 0x1e, 0 },
158 { 63, 625, 0, 0x1d, 0 },
159 { 50, 500, 0, 0x1c, 0 },
160 { 38, 375, 0, 0x1b, 0 },
161 { 25, 250, 0, 0x1a, 0 },
162 { 13, 125, 0, 0x19, 0 },
163};
164
165static int generate_T_state_entries(int core, int cores_per_package)
166{
167 int len;
168
169 /* Indicate SW_ALL coordination for T-states */
170 len = acpigen_write_TSD_package(core, cores_per_package, SW_ALL);
171
172 /* Indicate FFixedHW so OS will use MSR */
173 len += acpigen_write_empty_PTC();
174
175 /* Set a T-state limit that can be modified in NVS */
176 len += acpigen_write_TPC("\\TLVL");
177
178 /*
179 * CPUID.(EAX=6):EAX[5] indicates support
180 * for extended throttle levels.
181 */
182 if (cpuid_eax(6) & (1 << 5))
183 len += acpigen_write_TSS_package(
184 ARRAY_SIZE(tss_table_fine), tss_table_fine);
185 else
186 len += acpigen_write_TSS_package(
187 ARRAY_SIZE(tss_table_coarse), tss_table_coarse);
188
189 return len;
190}
191
192static int calculate_power(int tdp, int p1_ratio, int ratio)
193{
194 u32 m;
195 u32 power;
196
197 /*
198 * M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
199 *
200 * Power = (ratio / p1_ratio) * m * tdp
201 */
202
203 m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
204 m = (m * m) / 1000;
205
206 power = ((ratio * 100000 / p1_ratio) / 100);
207 power *= (m / 100) * (tdp / 1000);
208 power /= 1000;
209
210 return (int)power;
211}
212
213static int generate_P_state_entries(int core, int cores_per_package)
214{
215 int len, len_pss;
216 int ratio_min, ratio_max, ratio_turbo, ratio_step;
217 int coord_type, power_max, power_unit, num_entries;
218 int ratio, power, clock, clock_max;
219 msr_t msr;
220
221 /* Determine P-state coordination type from MISC_PWR_MGMT[0] */
222 msr = rdmsr(MSR_MISC_PWR_MGMT);
223 if (msr.lo & MISC_PWR_MGMT_EIST_HW_DIS)
224 coord_type = SW_ANY;
225 else
226 coord_type = HW_ALL;
227
228 /* Get bus ratio limits and calculate clock speeds */
229 msr = rdmsr(MSR_PLATFORM_INFO);
230 ratio_min = (msr.hi >> (40-32)) & 0xff; /* Max Efficiency Ratio */
231 ratio_max = (msr.lo >> 8) & 0xff; /* Max Non-Turbo Ratio */
232 clock_max = ratio_max * SANDYBRIDGE_BCLK;
233
234 /* Calculate CPU TDP in mW */
235 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
236 power_unit = 2 << ((msr.lo & 0xf) - 1);
237 msr = rdmsr(MSR_PKG_POWER_SKU);
238 power_max = ((msr.lo & 0x7fff) / power_unit) * 1000;
239
240 /* Write _PCT indicating use of FFixedHW */
241 len = acpigen_write_empty_PCT();
242
243 /* Write _PPC with no limit on supported P-state */
244 len += acpigen_write_PPC(0);
245
246 /* Write PSD indicating configured coordination type */
247 len += acpigen_write_PSD_package(core, cores_per_package, coord_type);
248
249 /* Add P-state entries in _PSS table */
250 len += acpigen_write_name("_PSS");
251
252 /* Determine ratio points */
253 ratio_step = PSS_RATIO_STEP;
254 num_entries = (ratio_max - ratio_min) / ratio_step;
255 while (num_entries > PSS_MAX_ENTRIES-1) {
256 ratio_step <<= 1;
257 num_entries >>= 1;
258 }
259
260 /* P[T] is Turbo state if enabled */
261 if (get_turbo_state() == TURBO_ENABLED) {
262 /* _PSS package count including Turbo */
263 len_pss = acpigen_write_package(num_entries + 2);
264
265 msr = rdmsr(MSR_TURBO_RATIO_LIMIT);
266 ratio_turbo = msr.lo & 0xff;
267
268 /* Add entry for Turbo ratio */
269 len_pss += acpigen_write_PSS_package(
270 clock_max + 1, /*MHz*/
271 power_max, /*mW*/
272 PSS_LATENCY_TRANSITION, /*lat1*/
273 PSS_LATENCY_BUSMASTER, /*lat2*/
274 ratio_turbo << 8, /*control*/
275 ratio_turbo << 8); /*status*/
276 } else {
277 /* _PSS package count without Turbo */
278 len_pss = acpigen_write_package(num_entries + 1);
279 }
280
281 /* First regular entry is max non-turbo ratio */
282 len_pss += acpigen_write_PSS_package(
283 clock_max, /*MHz*/
284 power_max, /*mW*/
285 PSS_LATENCY_TRANSITION, /*lat1*/
286 PSS_LATENCY_BUSMASTER, /*lat2*/
287 ratio_max << 8, /*control*/
288 ratio_max << 8); /*status*/
289
290 /* Generate the remaining entries */
291 for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
292 ratio >= ratio_min; ratio -= ratio_step) {
293
294 /* Calculate power at this ratio */
295 power = calculate_power(power_max, ratio_max, ratio);
296 clock = ratio * SANDYBRIDGE_BCLK;
297
298 len_pss += acpigen_write_PSS_package(
299 clock, /*MHz*/
300 power, /*mW*/
301 PSS_LATENCY_TRANSITION, /*lat1*/
302 PSS_LATENCY_BUSMASTER, /*lat2*/
303 ratio << 8, /*control*/
304 ratio << 8); /*status*/
305 }
306
307 /* Fix package length */
308 len_pss--;
309 acpigen_patch_len(len_pss);
310
311 return len + len_pss;
312}
313
314void generate_cpu_entries(void)
315{
316 int len_pr;
317 int coreID, cpuID, pcontrol_blk = PMB0_BASE, plen = 6;
318 int totalcores = dev_count_cpu();
319 int cores_per_package = get_cores_per_package();
320 int numcpus = totalcores/cores_per_package;
321
322 printk(BIOS_DEBUG, "Found %d CPU(s) with %d core(s) each.\n",
323 numcpus, cores_per_package);
324
325 for (cpuID=1; cpuID <=numcpus; cpuID++) {
326 for (coreID=1; coreID<=cores_per_package; coreID++) {
327 if (coreID>1) {
328 pcontrol_blk = 0;
329 plen = 0;
330 }
331
332 /* Generate processor \_PR.CPUx */
333 len_pr = acpigen_write_processor(
334 (cpuID-1)*cores_per_package+coreID-1,
335 pcontrol_blk, plen);
336
337 /* Generate P-state tables */
338 len_pr += generate_P_state_entries(
339 cpuID-1, cores_per_package);
340
341 /* Generate C-state tables */
342 len_pr += generate_C_state_entries();
343
344 /* Generate T-state tables */
345 len_pr += generate_T_state_entries(
346 cpuID-1, cores_per_package);
347
348 len_pr--;
349 acpigen_patch_len(len_pr);
350 }
351 }
352}
353
354struct chip_operations cpu_intel_model_206ax_ops = {
355 CHIP_NAME(CONFIG_CPU_MODEL_NAME)
356};