aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/speedstep
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-07-21 21:41:42 +0000
committerStefan Reinauer <stepan@openbios.org>2009-07-21 21:41:42 +0000
commit4da810bd53f3e47fe0c5de64b5cec0910237a022 (patch)
treea84537f4ed6e80281e7b68c9ff415551df41389a /src/cpu/intel/speedstep
parentb657a3c9b726334aac89f1af16495eab3ebefc6b (diff)
add intel speedstep support and some PM fixes.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Peter Stuge <peter@stuge.se> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4454 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/speedstep')
-rw-r--r--src/cpu/intel/speedstep/Config.lb1
-rw-r--r--src/cpu/intel/speedstep/acpi.c137
2 files changed, 138 insertions, 0 deletions
diff --git a/src/cpu/intel/speedstep/Config.lb b/src/cpu/intel/speedstep/Config.lb
new file mode 100644
index 0000000000..6a75160fbb
--- /dev/null
+++ b/src/cpu/intel/speedstep/Config.lb
@@ -0,0 +1 @@
+object acpi.o
diff --git a/src/cpu/intel/speedstep/acpi.c b/src/cpu/intel/speedstep/acpi.c
new file mode 100644
index 0000000000..5bbb52fc02
--- /dev/null
+++ b/src/cpu/intel/speedstep/acpi.c
@@ -0,0 +1,137 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+#include <types.h>
+#include <console/console.h>
+#include <arch/acpi.h>
+#include <arch/acpigen.h>
+#include <arch/cpu.h>
+#include <cpu/x86/msr.h>
+#include <device/device.h>
+
+// XXX: PSS table values for power consumption are for Merom only
+
+int determine_total_number_of_cores(void)
+{
+ device_t cpu;
+ int count = 0;
+ for(cpu = all_devices; cpu; cpu = cpu->next) {
+ if ((cpu->path.type != DEVICE_PATH_APIC) ||
+ (cpu->bus->dev->path.type != DEVICE_PATH_APIC_CLUSTER)) {
+ continue;
+ }
+ if (!cpu->enabled) {
+ continue;
+ }
+ count++;
+ }
+ return count;
+}
+
+int get_fsb(void)
+{
+ u32 fsbcode=(rdmsr(0xcd).lo >> 4) & 7;
+ switch (fsbcode) {
+ case 0: return 266;
+ case 1: return 133;
+ case 2: return 200;
+ case 3: return 166;
+ case 5: return 100;
+ }
+ printk_debug("Warning: No supported FSB frequency. Assuming 200MHz\n");
+ return 200;
+}
+
+void generate_cpu_entries(void)
+{
+ int len_sc, len_pr, len_ps;
+ int coreID, cpuID, pcontrol_blk=0x510, plen=6;
+ msr_t msr;
+ len_sc = acpigen_write_scope("\\_PR_");
+ int totalcores = determine_total_number_of_cores();
+ int cores_per_package = (cpuid_ebx(1)>>16) & 0xff;
+ int numcpus = totalcores/cores_per_package; // this assumes that all CPUs share the same layout
+ printk_debug("Found %d CPU(s) with %d core(s) each.\n", numcpus, cores_per_package);
+
+ for (cpuID=1; cpuID <=numcpus; cpuID++) {
+ for (coreID=1; coreID<=cores_per_package; coreID++) {
+ if (coreID>1) {
+ pcontrol_blk = 0;
+ plen = 0;
+ }
+ len_pr = acpigen_write_processor((cpuID-1)*cores_per_package+coreID-1, pcontrol_blk, plen);
+ len_pr += acpigen_write_empty_PCT();
+ len_pr += acpigen_write_PSD_package(cpuID-1,cores_per_package,SW_ANY);
+ len_pr += acpigen_write_name("_PSS");
+
+ int max_states=8;
+ int busratio_step=2;
+#define IA32_PLATFORM_ID 0x017
+#define IA32_PERF_STS 0x198
+ msr = rdmsr(IA32_PERF_STS);
+ int busratio_min=(msr.lo >> 24) & 0x1f;
+ int busratio_max=(msr.hi >> (40-32)) & 0x1f;
+ int vid_min=msr.lo & 0x3f;
+ msr = rdmsr(IA32_PLATFORM_ID);
+ int vid_max=msr.lo & 0x3f;
+ int clock_max=get_fsb()*busratio_max;
+ int clock_min=get_fsb()*busratio_min;
+ printk_debug("clocks between %d and %d MHz.\n", clock_min, clock_max);
+#define MEROM_MIN_POWER 16000
+#define MEROM_MAX_POWER 35000
+ int power_max=MEROM_MAX_POWER;
+ int power_min=MEROM_MIN_POWER;
+
+ int num_states=(busratio_max-busratio_min)/busratio_step;
+ while (num_states > max_states-1) {
+ busratio_step <<= 1;
+ num_states >>= 1;
+ }
+ printk_debug("adding %x P-States between busratio %x and %x, incl. P0\n", num_states+1, busratio_min, busratio_max);
+ int vid_step=(vid_max-vid_min)/num_states;
+ int power_step=(power_max-power_min)/num_states;
+ int clock_step=(clock_max-clock_min)/num_states;
+ len_ps = acpigen_write_package(num_states+1); // for Super LFM, this must be increases by another one
+ len_ps += acpigen_write_PSS_package(clock_max /*mhz*/, power_max /*mW*/, 0 /*lat1*/, 0 /*lat2*/, (busratio_max<<8)|(vid_max) /*control*/, (busratio_max<<8)|(vid_max) /*status*/);
+ int current_busratio=busratio_min+((num_states-1)*busratio_step);
+ int current_vid=vid_min+((num_states-1)*vid_step);
+ int current_power=power_min+((num_states-1)*power_step);
+ int current_clock=clock_min+((num_states-1)*clock_step);
+ int i;
+ for (i=0;i<num_states; i++) {
+ len_ps += acpigen_write_PSS_package(current_clock /*mhz*/, current_power /*mW*/, 0 /*lat1*/, 0 /*lat2*/, (current_busratio<<8)|(current_vid) /*control*/, (current_busratio<<8)|(current_vid) /*status*/);
+ current_busratio -= busratio_step;
+ current_vid -= vid_step;
+ current_power -= power_step;
+ current_clock -= clock_step;
+ }
+ len_ps--;
+ acpigen_patch_len(len_ps);
+ len_pr += acpigen_write_PPC(0);
+ len_pr += len_ps;
+ len_pr--;
+ acpigen_patch_len(len_pr);
+ len_sc += len_pr;
+ }
+ }
+ acpigen_patch_len(len_sc-1);
+}
+