2019-05-27 14:55:12 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2007-05-08 23:22:02 +08:00
|
|
|
/*
|
|
|
|
* coretemp.c - Linux kernel module for hardware monitoring
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
|
|
|
|
*
|
|
|
|
* Inspired from many hwmon drivers
|
|
|
|
*/
|
|
|
|
|
2010-10-20 14:51:31 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2007-05-08 23:22:02 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/hwmon.h>
|
|
|
|
#include <linux/sysfs.h>
|
|
|
|
#include <linux/hwmon-sysfs.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/cpu.h>
|
2011-05-20 05:45:48 +08:00
|
|
|
#include <linux/smp.h>
|
2011-09-17 03:24:02 +08:00
|
|
|
#include <linux/moduleparam.h>
|
2013-05-28 03:20:19 +08:00
|
|
|
#include <linux/pci.h>
|
2007-05-08 23:22:02 +08:00
|
|
|
#include <asm/msr.h>
|
|
|
|
#include <asm/processor.h>
|
2012-01-26 07:09:10 +08:00
|
|
|
#include <asm/cpu_device_id.h>
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
#define DRVNAME "coretemp"
|
|
|
|
|
2011-09-17 03:24:02 +08:00
|
|
|
/*
|
|
|
|
* force_tjmax only matters when TjMax can't be read from the CPU itself.
|
|
|
|
* When set, it replaces the driver's suboptimal heuristic.
|
|
|
|
*/
|
|
|
|
static int force_tjmax;
|
|
|
|
module_param_named(tjmax, force_tjmax, int, 0444);
|
|
|
|
MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius");
|
|
|
|
|
2016-11-23 01:42:02 +08:00
|
|
|
#define PKG_SYSFS_ATTR_NO 1 /* Sysfs attribute for package temp */
|
2011-05-20 03:59:35 +08:00
|
|
|
#define BASE_SYSFS_ATTR_NO 2 /* Sysfs Base attr no for coretemp */
|
2015-10-12 19:53:32 +08:00
|
|
|
#define NUM_REAL_CORES 128 /* Number of Real cores per cpu */
|
2014-01-14 22:59:55 +08:00
|
|
|
#define CORETEMP_NAME_LENGTH 19 /* String Length of attrs */
|
2011-07-12 19:07:16 +08:00
|
|
|
#define MAX_CORE_ATTRS 4 /* Maximum no of basic attrs */
|
hwmon: (coretemp) Don't use threshold registers for tempX_max
With commit c814a4c7c4aad795835583344353963a0a673eb0, the meaning of tempX_max
was changed. It no longer returns the value of bits 8:15 of
MSR_IA32_TEMPERATURE_TARGET, but instead returns the value of CPU threshold
register T1. tempX_max_hyst was added to reflect the value of temperature
threshold register T0.
As it turns out, T0 and T1 are used on some systems, presumably by the BIOS.
Also, T0 and T1 don't have a well defined meaning. The thresholds may be used
as upper or lower limits, and it is not guaranteed that T0 <= T1. Thus, the new
attribute mapping does not reflect the actual usage of the threshold registers.
Also, register contents are changed during runtime by an entity other than the
hwmon driver, meaning the values cached by the driver do not reflect actual
register contents.
Revert most of c814a4c7c4aad795835583344353963a0a673eb0 to address the problem.
Support for T0 and T1 will be added back in with a separate commit, using new
attribute names.
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Durgadoss R <durgadoss.r@intel.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
2011-09-20 12:41:16 +08:00
|
|
|
#define TOTAL_ATTRS (MAX_CORE_ATTRS + 1)
|
2011-05-20 03:59:35 +08:00
|
|
|
#define MAX_CORE_DATA (NUM_REAL_CORES + BASE_SYSFS_ATTR_NO)
|
|
|
|
|
2012-01-21 01:31:17 +08:00
|
|
|
#define TO_CORE_ID(cpu) (cpu_data(cpu).cpu_core_id)
|
2011-12-21 08:52:22 +08:00
|
|
|
#define TO_ATTR_NO(cpu) (TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO)
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2015-05-26 21:11:30 +08:00
|
|
|
#define for_each_sibling(i, cpu) \
|
|
|
|
for_each_cpu(i, topology_sibling_cpumask(cpu))
|
2011-05-20 03:59:35 +08:00
|
|
|
#else
|
2011-05-24 03:06:41 +08:00
|
|
|
#define for_each_sibling(i, cpu) for (i = 0; false; )
|
2011-05-20 03:59:35 +08:00
|
|
|
#endif
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
/*
|
2011-05-20 03:59:35 +08:00
|
|
|
* Per-Core Temperature Data
|
|
|
|
* @last_updated: The time when the current temperature value was updated
|
|
|
|
* earlier (in jiffies).
|
|
|
|
* @cpu_core_id: The CPU Core from which temperature values should be read
|
|
|
|
* This value is passed as "id" field to rdmsr/wrmsr functions.
|
|
|
|
* @status_reg: One of IA32_THERM_STATUS or IA32_PACKAGE_THERM_STATUS,
|
|
|
|
* from where the temperature values should be read.
|
2011-07-12 19:07:16 +08:00
|
|
|
* @attr_size: Total number of pre-core attrs displayed in the sysfs.
|
2011-05-20 03:59:35 +08:00
|
|
|
* @is_pkg_data: If this is 1, the temp_data holds pkgtemp data.
|
|
|
|
* Otherwise, temp_data holds coretemp data.
|
|
|
|
* @valid: If this is 1, the current temperature is valid.
|
2007-05-08 23:22:02 +08:00
|
|
|
*/
|
2011-05-20 03:59:35 +08:00
|
|
|
struct temp_data {
|
2007-05-08 23:22:02 +08:00
|
|
|
int temp;
|
2008-01-18 07:42:54 +08:00
|
|
|
int ttarget;
|
2011-05-20 03:59:35 +08:00
|
|
|
int tjmax;
|
|
|
|
unsigned long last_updated;
|
|
|
|
unsigned int cpu;
|
|
|
|
u32 cpu_core_id;
|
|
|
|
u32 status_reg;
|
2011-07-12 19:07:16 +08:00
|
|
|
int attr_size;
|
2011-05-20 03:59:35 +08:00
|
|
|
bool is_pkg_data;
|
|
|
|
bool valid;
|
2011-07-12 19:07:16 +08:00
|
|
|
struct sensor_device_attribute sd_attrs[TOTAL_ATTRS];
|
|
|
|
char attr_name[TOTAL_ATTRS][CORETEMP_NAME_LENGTH];
|
2014-02-17 05:23:25 +08:00
|
|
|
struct attribute *attrs[TOTAL_ATTRS + 1];
|
|
|
|
struct attribute_group attr_group;
|
2011-05-20 03:59:35 +08:00
|
|
|
struct mutex update_lock;
|
2007-05-08 23:22:02 +08:00
|
|
|
};
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/* Platform Data per Physical CPU */
|
|
|
|
struct platform_data {
|
2016-11-23 01:42:02 +08:00
|
|
|
struct device *hwmon_dev;
|
2016-11-23 01:42:06 +08:00
|
|
|
u16 pkg_id;
|
2016-11-23 01:42:02 +08:00
|
|
|
struct cpumask cpumask;
|
|
|
|
struct temp_data *core_data[MAX_CORE_DATA];
|
2011-05-20 03:59:35 +08:00
|
|
|
struct device_attribute name_attr;
|
|
|
|
};
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
/* Keep track of how many zone pointers we allocated in init() */
|
|
|
|
static int max_zones __read_mostly;
|
|
|
|
/* Array of zone pointers. Serialized by cpu hotplug lock */
|
|
|
|
static struct platform_device **zone_devices;
|
2011-05-20 03:59:35 +08:00
|
|
|
|
|
|
|
static ssize_t show_label(struct device *dev,
|
|
|
|
struct device_attribute *devattr, char *buf)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
2011-05-20 03:59:35 +08:00
|
|
|
struct platform_data *pdata = dev_get_drvdata(dev);
|
|
|
|
struct temp_data *tdata = pdata->core_data[attr->index];
|
|
|
|
|
|
|
|
if (tdata->is_pkg_data)
|
2016-11-23 01:42:06 +08:00
|
|
|
return sprintf(buf, "Package id %u\n", pdata->pkg_id);
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
return sprintf(buf, "Core %u\n", tdata->cpu_core_id);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
static ssize_t show_crit_alarm(struct device *dev,
|
|
|
|
struct device_attribute *devattr, char *buf)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
2011-05-20 03:59:35 +08:00
|
|
|
u32 eax, edx;
|
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
|
|
struct platform_data *pdata = dev_get_drvdata(dev);
|
|
|
|
struct temp_data *tdata = pdata->core_data[attr->index];
|
|
|
|
|
2016-11-23 01:42:02 +08:00
|
|
|
mutex_lock(&tdata->update_lock);
|
2011-05-20 03:59:35 +08:00
|
|
|
rdmsr_on_cpu(tdata->cpu, tdata->status_reg, &eax, &edx);
|
2016-11-23 01:42:02 +08:00
|
|
|
mutex_unlock(&tdata->update_lock);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
|
|
|
return sprintf(buf, "%d\n", (eax >> 5) & 1);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
static ssize_t show_tjmax(struct device *dev,
|
|
|
|
struct device_attribute *devattr, char *buf)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
2011-05-20 03:59:35 +08:00
|
|
|
struct platform_data *pdata = dev_get_drvdata(dev);
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
return sprintf(buf, "%d\n", pdata->core_data[attr->index]->tjmax);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
static ssize_t show_ttarget(struct device *dev,
|
|
|
|
struct device_attribute *devattr, char *buf)
|
|
|
|
{
|
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
|
|
struct platform_data *pdata = dev_get_drvdata(dev);
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
return sprintf(buf, "%d\n", pdata->core_data[attr->index]->ttarget);
|
|
|
|
}
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
static ssize_t show_temp(struct device *dev,
|
|
|
|
struct device_attribute *devattr, char *buf)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
2011-05-20 03:59:35 +08:00
|
|
|
u32 eax, edx;
|
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
|
|
struct platform_data *pdata = dev_get_drvdata(dev);
|
|
|
|
struct temp_data *tdata = pdata->core_data[attr->index];
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
mutex_lock(&tdata->update_lock);
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/* Check whether the time interval has elapsed */
|
|
|
|
if (!tdata->valid || time_after(jiffies, tdata->last_updated + HZ)) {
|
|
|
|
rdmsr_on_cpu(tdata->cpu, tdata->status_reg, &eax, &edx);
|
2013-11-21 02:25:17 +08:00
|
|
|
/*
|
|
|
|
* Ignore the valid bit. In all observed cases the register
|
|
|
|
* value is either low or zero if the valid bit is 0.
|
|
|
|
* Return it instead of reporting an error which doesn't
|
|
|
|
* really help at all.
|
|
|
|
*/
|
|
|
|
tdata->temp = tdata->tjmax - ((eax >> 16) & 0x7f) * 1000;
|
|
|
|
tdata->valid = 1;
|
2011-05-20 03:59:35 +08:00
|
|
|
tdata->last_updated = jiffies;
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
mutex_unlock(&tdata->update_lock);
|
2013-11-21 02:25:17 +08:00
|
|
|
return sprintf(buf, "%d\n", tdata->temp);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2013-05-28 03:20:19 +08:00
|
|
|
struct tjmax_pci {
|
|
|
|
unsigned int device;
|
|
|
|
int tjmax;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct tjmax_pci tjmax_pci_table[] = {
|
2013-05-28 05:17:27 +08:00
|
|
|
{ 0x0708, 110000 }, /* CE41x0 (Sodaville ) */
|
2013-05-28 03:20:19 +08:00
|
|
|
{ 0x0c72, 102000 }, /* Atom S1240 (Centerton) */
|
|
|
|
{ 0x0c73, 95000 }, /* Atom S1220 (Centerton) */
|
|
|
|
{ 0x0c75, 95000 }, /* Atom S1260 (Centerton) */
|
|
|
|
};
|
|
|
|
|
2012-06-18 00:05:05 +08:00
|
|
|
struct tjmax {
|
|
|
|
char const *id;
|
|
|
|
int tjmax;
|
|
|
|
};
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static const struct tjmax tjmax_table[] = {
|
2012-10-10 04:23:57 +08:00
|
|
|
{ "CPU 230", 100000 }, /* Model 0x1c, stepping 2 */
|
|
|
|
{ "CPU 330", 125000 }, /* Model 0x1c, stepping 2 */
|
2012-06-18 00:05:05 +08:00
|
|
|
};
|
|
|
|
|
2012-10-10 03:45:23 +08:00
|
|
|
struct tjmax_model {
|
|
|
|
u8 model;
|
|
|
|
u8 mask;
|
|
|
|
int tjmax;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ANY 0xff
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static const struct tjmax_model tjmax_model_table[] = {
|
2012-11-17 13:55:24 +08:00
|
|
|
{ 0x1c, 10, 100000 }, /* D4xx, K4xx, N4xx, D5xx, K5xx, N5xx */
|
2012-10-10 03:45:23 +08:00
|
|
|
{ 0x1c, ANY, 90000 }, /* Z5xx, N2xx, possibly others
|
|
|
|
* Note: Also matches 230 and 330,
|
|
|
|
* which are covered by tjmax_table
|
|
|
|
*/
|
|
|
|
{ 0x26, ANY, 90000 }, /* Atom Tunnel Creek (Exx), Lincroft (Z6xx)
|
|
|
|
* Note: TjMax for E6xxT is 110C, but CPU type
|
|
|
|
* is undetectable by software
|
|
|
|
*/
|
|
|
|
{ 0x27, ANY, 90000 }, /* Atom Medfield (Z2460) */
|
2013-05-28 03:20:19 +08:00
|
|
|
{ 0x35, ANY, 90000 }, /* Atom Clover Trail/Cloverview (Z27x0) */
|
|
|
|
{ 0x36, ANY, 100000 }, /* Atom Cedar Trail/Cedarview (N2xxx, D2xxx)
|
|
|
|
* Also matches S12x0 (stepping 9), covered by
|
|
|
|
* PCI table
|
|
|
|
*/
|
2012-10-10 03:45:23 +08:00
|
|
|
};
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static int adjust_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
|
2008-02-18 05:59:39 +08:00
|
|
|
{
|
|
|
|
/* The 100C is default for both mobile and non mobile CPUs */
|
|
|
|
|
|
|
|
int tjmax = 100000;
|
2009-09-24 04:59:42 +08:00
|
|
|
int tjmax_ee = 85000;
|
2009-09-24 04:59:42 +08:00
|
|
|
int usemsr_ee = 1;
|
2008-02-18 05:59:39 +08:00
|
|
|
int err;
|
|
|
|
u32 eax, edx;
|
2012-06-18 00:05:05 +08:00
|
|
|
int i;
|
2017-11-22 13:30:56 +08:00
|
|
|
u16 devfn = PCI_DEVFN(0, 0);
|
|
|
|
struct pci_dev *host_bridge = pci_get_domain_bus_and_slot(0, 0, devfn);
|
2013-05-28 03:20:19 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Explicit tjmax table entries override heuristics.
|
|
|
|
* First try PCI host bridge IDs, followed by model ID strings
|
|
|
|
* and model/stepping information.
|
|
|
|
*/
|
|
|
|
if (host_bridge && host_bridge->vendor == PCI_VENDOR_ID_INTEL) {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(tjmax_pci_table); i++) {
|
|
|
|
if (host_bridge->device == tjmax_pci_table[i].device)
|
|
|
|
return tjmax_pci_table[i].tjmax;
|
|
|
|
}
|
|
|
|
}
|
2012-06-18 00:05:05 +08:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(tjmax_table); i++) {
|
|
|
|
if (strstr(c->x86_model_id, tjmax_table[i].id))
|
|
|
|
return tjmax_table[i].tjmax;
|
|
|
|
}
|
2008-02-18 05:59:39 +08:00
|
|
|
|
2012-10-10 03:45:23 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(tjmax_model_table); i++) {
|
|
|
|
const struct tjmax_model *tm = &tjmax_model_table[i];
|
|
|
|
if (c->x86_model == tm->model &&
|
2018-01-01 09:52:10 +08:00
|
|
|
(tm->mask == ANY || c->x86_stepping == tm->mask))
|
2012-10-10 03:45:23 +08:00
|
|
|
return tm->tjmax;
|
hwmon: (coretemp) Drop dependency on PCI for TjMax detection on Atom CPUs
So far, we use the NM10 Express Chipset PCI chip ID to detect TjMax for
Atom CPUs with model 0x1c. As it turns out, we can use the CPU stepping
(x86_mask) for the same purpose; stepping is 10 for all model 0x1c CPUs
with TjMax of 100 degrees C. This was verified by checking the output of
/proc/cpuinfo for the respective CPUs (D4xx, D5xx, N4xx, N5xx).
Other CPUs currently covered by the same code (Exx, Z6xx, Z2460) are not
supported by the NM10 Express Chipset. Most of those CPUs have TjMax of 90
degrees C, except for E6xxT models which have a TjMax of 110 degrees C.
E6xxT CPUs can however not be detected by software.
Calculate TjMax for Atom CPUs as follows. Note that the listed values are not
correct in some cases (230, 330). tjmax_table is used for those to override
the default values.
ID Stepping TjMax Models
0x1c 10 100 D4xx, N4xx, D5xx, N5xx
0x1c not 10 90 Z5xx, N2xx, 230, 330, others
0x26 - 90 Atom Tunnel Creek (Exx),
Lincroft (Z6xx)
0x27 - 90 Atom Medfield (Z2460)
0x36 - 100 Atom Cedar Trail (N2xxx, D2xxx)
Also drop the module dependency on PCI.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Jean Delvare <khali@linux-fr.org>
2012-10-10 03:27:12 +08:00
|
|
|
}
|
2010-01-11 03:52:34 +08:00
|
|
|
|
hwmon: (coretemp) Drop dependency on PCI for TjMax detection on Atom CPUs
So far, we use the NM10 Express Chipset PCI chip ID to detect TjMax for
Atom CPUs with model 0x1c. As it turns out, we can use the CPU stepping
(x86_mask) for the same purpose; stepping is 10 for all model 0x1c CPUs
with TjMax of 100 degrees C. This was verified by checking the output of
/proc/cpuinfo for the respective CPUs (D4xx, D5xx, N4xx, N5xx).
Other CPUs currently covered by the same code (Exx, Z6xx, Z2460) are not
supported by the NM10 Express Chipset. Most of those CPUs have TjMax of 90
degrees C, except for E6xxT models which have a TjMax of 110 degrees C.
E6xxT CPUs can however not be detected by software.
Calculate TjMax for Atom CPUs as follows. Note that the listed values are not
correct in some cases (230, 330). tjmax_table is used for those to override
the default values.
ID Stepping TjMax Models
0x1c 10 100 D4xx, N4xx, D5xx, N5xx
0x1c not 10 90 Z5xx, N2xx, 230, 330, others
0x26 - 90 Atom Tunnel Creek (Exx),
Lincroft (Z6xx)
0x27 - 90 Atom Medfield (Z2460)
0x36 - 100 Atom Cedar Trail (N2xxx, D2xxx)
Also drop the module dependency on PCI.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Jean Delvare <khali@linux-fr.org>
2012-10-10 03:27:12 +08:00
|
|
|
/* Early chips have no MSR for TjMax */
|
2010-01-11 03:52:34 +08:00
|
|
|
|
2018-01-01 09:52:10 +08:00
|
|
|
if (c->x86_model == 0xf && c->x86_stepping < 4)
|
2012-06-18 00:05:05 +08:00
|
|
|
usemsr_ee = 0;
|
2009-09-24 04:59:42 +08:00
|
|
|
|
2011-05-20 05:45:48 +08:00
|
|
|
if (c->x86_model > 0xe && usemsr_ee) {
|
2009-09-24 04:59:42 +08:00
|
|
|
u8 platform_id;
|
2008-02-18 05:59:39 +08:00
|
|
|
|
2011-05-20 05:45:48 +08:00
|
|
|
/*
|
|
|
|
* Now we can detect the mobile CPU using Intel provided table
|
|
|
|
* http://softwarecommunity.intel.com/Wiki/Mobility/720.htm
|
|
|
|
* For Core2 cores, check MSR 0x17, bit 28 1 = Mobile CPU
|
|
|
|
*/
|
2008-02-18 05:59:39 +08:00
|
|
|
err = rdmsr_safe_on_cpu(id, 0x17, &eax, &edx);
|
|
|
|
if (err) {
|
|
|
|
dev_warn(dev,
|
|
|
|
"Unable to access MSR 0x17, assuming desktop"
|
|
|
|
" CPU\n");
|
2009-09-24 04:59:42 +08:00
|
|
|
usemsr_ee = 0;
|
2009-09-24 04:59:42 +08:00
|
|
|
} else if (c->x86_model < 0x17 && !(eax & 0x10000000)) {
|
2011-05-20 05:45:48 +08:00
|
|
|
/*
|
|
|
|
* Trust bit 28 up to Penryn, I could not find any
|
|
|
|
* documentation on that; if you happen to know
|
|
|
|
* someone at Intel please ask
|
|
|
|
*/
|
2009-09-24 04:59:42 +08:00
|
|
|
usemsr_ee = 0;
|
2009-09-24 04:59:42 +08:00
|
|
|
} else {
|
|
|
|
/* Platform ID bits 52:50 (EDX starts at bit 32) */
|
|
|
|
platform_id = (edx >> 18) & 0x7;
|
|
|
|
|
2011-05-20 05:45:48 +08:00
|
|
|
/*
|
|
|
|
* Mobile Penryn CPU seems to be platform ID 7 or 5
|
|
|
|
* (guesswork)
|
|
|
|
*/
|
|
|
|
if (c->x86_model == 0x17 &&
|
|
|
|
(platform_id == 5 || platform_id == 7)) {
|
|
|
|
/*
|
|
|
|
* If MSR EE bit is set, set it to 90 degrees C,
|
|
|
|
* otherwise 105 degrees C
|
|
|
|
*/
|
2009-09-24 04:59:42 +08:00
|
|
|
tjmax_ee = 90000;
|
|
|
|
tjmax = 105000;
|
|
|
|
}
|
2008-02-18 05:59:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-24 04:59:42 +08:00
|
|
|
if (usemsr_ee) {
|
2008-02-18 05:59:39 +08:00
|
|
|
err = rdmsr_safe_on_cpu(id, 0xee, &eax, &edx);
|
|
|
|
if (err) {
|
|
|
|
dev_warn(dev,
|
|
|
|
"Unable to access MSR 0xEE, for Tjmax, left"
|
2010-03-30 04:03:00 +08:00
|
|
|
" at default\n");
|
2008-02-18 05:59:39 +08:00
|
|
|
} else if (eax & 0x40000000) {
|
2009-09-24 04:59:42 +08:00
|
|
|
tjmax = tjmax_ee;
|
2008-02-18 05:59:39 +08:00
|
|
|
}
|
2009-09-24 04:59:42 +08:00
|
|
|
} else if (tjmax == 100000) {
|
2011-05-20 05:45:48 +08:00
|
|
|
/*
|
|
|
|
* If we don't use msr EE it means we are desktop CPU
|
|
|
|
* (with exeception of Atom)
|
|
|
|
*/
|
2008-02-18 05:59:39 +08:00
|
|
|
dev_warn(dev, "Using relative temperature scale!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return tjmax;
|
|
|
|
}
|
|
|
|
|
2013-05-28 05:12:15 +08:00
|
|
|
static bool cpu_has_tjmax(struct cpuinfo_x86 *c)
|
|
|
|
{
|
|
|
|
u8 model = c->x86_model;
|
|
|
|
|
|
|
|
return model > 0xe &&
|
|
|
|
model != 0x1c &&
|
|
|
|
model != 0x26 &&
|
|
|
|
model != 0x27 &&
|
|
|
|
model != 0x35 &&
|
|
|
|
model != 0x36;
|
|
|
|
}
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static int get_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
|
2010-05-25 05:33:41 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u32 eax, edx;
|
|
|
|
u32 val;
|
|
|
|
|
2011-05-20 05:45:48 +08:00
|
|
|
/*
|
|
|
|
* A new feature of current Intel(R) processors, the
|
|
|
|
* IA32_TEMPERATURE_TARGET contains the TjMax value
|
|
|
|
*/
|
2010-05-25 05:33:41 +08:00
|
|
|
err = rdmsr_safe_on_cpu(id, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
|
|
|
|
if (err) {
|
2013-05-28 05:12:15 +08:00
|
|
|
if (cpu_has_tjmax(c))
|
2011-09-17 03:21:43 +08:00
|
|
|
dev_warn(dev, "Unable to read TjMax from CPU %u\n", id);
|
2010-05-25 05:33:41 +08:00
|
|
|
} else {
|
2014-05-01 05:08:14 +08:00
|
|
|
val = (eax >> 16) & 0xff;
|
2010-05-25 05:33:41 +08:00
|
|
|
/*
|
|
|
|
* If the TjMax is not plausible, an assumption
|
|
|
|
* will be used
|
|
|
|
*/
|
2014-05-01 05:08:14 +08:00
|
|
|
if (val) {
|
2011-09-17 03:21:43 +08:00
|
|
|
dev_dbg(dev, "TjMax is %d degrees C\n", val);
|
2010-05-25 05:33:41 +08:00
|
|
|
return val * 1000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-17 03:24:02 +08:00
|
|
|
if (force_tjmax) {
|
|
|
|
dev_notice(dev, "TjMax forced to %d degrees C by user\n",
|
|
|
|
force_tjmax);
|
|
|
|
return force_tjmax * 1000;
|
|
|
|
}
|
|
|
|
|
2010-05-25 05:33:41 +08:00
|
|
|
/*
|
|
|
|
* An assumption is made for early CPUs and unreadable MSR.
|
2011-05-31 21:54:21 +08:00
|
|
|
* NOTE: the calculated value may not be correct.
|
2010-05-25 05:33:41 +08:00
|
|
|
*/
|
2011-05-31 21:54:21 +08:00
|
|
|
return adjust_tjmax(c, id, dev);
|
2010-05-25 05:33:41 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static int create_core_attrs(struct temp_data *tdata, struct device *dev,
|
|
|
|
int attr_no)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
2014-02-17 05:23:25 +08:00
|
|
|
int i;
|
2011-09-23 18:36:53 +08:00
|
|
|
static ssize_t (*const rd_ptr[TOTAL_ATTRS]) (struct device *dev,
|
2011-05-20 03:59:35 +08:00
|
|
|
struct device_attribute *devattr, char *buf) = {
|
2011-07-12 19:07:16 +08:00
|
|
|
show_label, show_crit_alarm, show_temp, show_tjmax,
|
hwmon: (coretemp) Don't use threshold registers for tempX_max
With commit c814a4c7c4aad795835583344353963a0a673eb0, the meaning of tempX_max
was changed. It no longer returns the value of bits 8:15 of
MSR_IA32_TEMPERATURE_TARGET, but instead returns the value of CPU threshold
register T1. tempX_max_hyst was added to reflect the value of temperature
threshold register T0.
As it turns out, T0 and T1 are used on some systems, presumably by the BIOS.
Also, T0 and T1 don't have a well defined meaning. The thresholds may be used
as upper or lower limits, and it is not guaranteed that T0 <= T1. Thus, the new
attribute mapping does not reflect the actual usage of the threshold registers.
Also, register contents are changed during runtime by an entity other than the
hwmon driver, meaning the values cached by the driver do not reflect actual
register contents.
Revert most of c814a4c7c4aad795835583344353963a0a673eb0 to address the problem.
Support for T0 and T1 will be added back in with a separate commit, using new
attribute names.
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Durgadoss R <durgadoss.r@intel.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
2011-09-20 12:41:16 +08:00
|
|
|
show_ttarget };
|
2015-02-12 22:15:16 +08:00
|
|
|
static const char *const suffixes[TOTAL_ATTRS] = {
|
|
|
|
"label", "crit_alarm", "input", "crit", "max"
|
|
|
|
};
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2011-07-12 19:07:16 +08:00
|
|
|
for (i = 0; i < tdata->attr_size; i++) {
|
2015-02-12 22:15:16 +08:00
|
|
|
snprintf(tdata->attr_name[i], CORETEMP_NAME_LENGTH,
|
|
|
|
"temp%d_%s", attr_no, suffixes[i]);
|
2011-05-24 19:28:31 +08:00
|
|
|
sysfs_attr_init(&tdata->sd_attrs[i].dev_attr.attr);
|
2011-05-20 03:59:35 +08:00
|
|
|
tdata->sd_attrs[i].dev_attr.attr.name = tdata->attr_name[i];
|
2018-12-11 06:02:04 +08:00
|
|
|
tdata->sd_attrs[i].dev_attr.attr.mode = 0444;
|
2011-05-20 03:59:35 +08:00
|
|
|
tdata->sd_attrs[i].dev_attr.show = rd_ptr[i];
|
|
|
|
tdata->sd_attrs[i].index = attr_no;
|
2014-02-17 05:23:25 +08:00
|
|
|
tdata->attrs[i] = &tdata->sd_attrs[i].dev_attr.attr;
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
2014-02-17 05:23:25 +08:00
|
|
|
tdata->attr_group.attrs = tdata->attrs;
|
|
|
|
return sysfs_create_group(&dev->kobj, &tdata->attr_group);
|
2011-05-20 03:59:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static int chk_ucode_version(unsigned int cpu)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
2011-09-28 23:11:00 +08:00
|
|
|
struct cpuinfo_x86 *c = &cpu_data(cpu);
|
2007-05-28 04:17:43 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
|
|
|
* Check if we have problem with errata AE18 of Core processors:
|
|
|
|
* Readings might stop update when processor visited too deep sleep,
|
|
|
|
* fixed for stepping D0 (6EC).
|
|
|
|
*/
|
2018-01-01 09:52:10 +08:00
|
|
|
if (c->x86_model == 0xe && c->x86_stepping < 0xc && c->microcode < 0x39) {
|
2013-01-11 02:01:24 +08:00
|
|
|
pr_err("Errata AE18 not fixed, update BIOS or microcode of the CPU!\n");
|
2011-10-13 08:46:35 +08:00
|
|
|
return -ENODEV;
|
2007-05-28 04:17:43 +08:00
|
|
|
}
|
2011-05-20 03:59:35 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static struct platform_device *coretemp_get_pdev(unsigned int cpu)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
2019-05-14 01:59:01 +08:00
|
|
|
int id = topology_logical_die_id(cpu);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
if (id >= 0 && id < max_zones)
|
|
|
|
return zone_devices[id];
|
2011-05-20 03:59:35 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static struct temp_data *init_temp_data(unsigned int cpu, int pkg_flag)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
|
|
|
struct temp_data *tdata;
|
|
|
|
|
|
|
|
tdata = kzalloc(sizeof(struct temp_data), GFP_KERNEL);
|
|
|
|
if (!tdata)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tdata->status_reg = pkg_flag ? MSR_IA32_PACKAGE_THERM_STATUS :
|
|
|
|
MSR_IA32_THERM_STATUS;
|
|
|
|
tdata->is_pkg_data = pkg_flag;
|
|
|
|
tdata->cpu = cpu;
|
|
|
|
tdata->cpu_core_id = TO_CORE_ID(cpu);
|
2011-07-12 19:07:16 +08:00
|
|
|
tdata->attr_size = MAX_CORE_ATTRS;
|
2011-05-20 03:59:35 +08:00
|
|
|
mutex_init(&tdata->update_lock);
|
|
|
|
return tdata;
|
|
|
|
}
|
2007-05-28 04:17:43 +08:00
|
|
|
|
2013-06-20 02:02:20 +08:00
|
|
|
static int create_core_data(struct platform_device *pdev, unsigned int cpu,
|
|
|
|
int pkg_flag)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
|
|
|
struct temp_data *tdata;
|
2011-09-23 18:40:08 +08:00
|
|
|
struct platform_data *pdata = platform_get_drvdata(pdev);
|
2011-05-20 03:59:35 +08:00
|
|
|
struct cpuinfo_x86 *c = &cpu_data(cpu);
|
|
|
|
u32 eax, edx;
|
|
|
|
int err, attr_no;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2010-05-25 05:33:41 +08:00
|
|
|
/*
|
2011-05-20 03:59:35 +08:00
|
|
|
* Find attr number for sysfs:
|
|
|
|
* We map the attr number to core id of the CPU
|
|
|
|
* The attr number is always core id + 2
|
|
|
|
* The Pkgtemp will always show up as temp1_*, if available
|
2010-05-25 05:33:41 +08:00
|
|
|
*/
|
2016-11-23 01:42:02 +08:00
|
|
|
attr_no = pkg_flag ? PKG_SYSFS_ATTR_NO : TO_ATTR_NO(cpu);
|
2008-01-18 07:42:54 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
if (attr_no > MAX_CORE_DATA - 1)
|
|
|
|
return -ERANGE;
|
|
|
|
|
|
|
|
tdata = init_temp_data(cpu, pkg_flag);
|
|
|
|
if (!tdata)
|
|
|
|
return -ENOMEM;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/* Test if we can access the status register */
|
|
|
|
err = rdmsr_safe_on_cpu(cpu, tdata->status_reg, &eax, &edx);
|
|
|
|
if (err)
|
|
|
|
goto exit_free;
|
|
|
|
|
|
|
|
/* We can access status register. Get Critical Temperature */
|
2011-09-17 03:21:43 +08:00
|
|
|
tdata->tjmax = get_tjmax(c, cpu, &pdev->dev);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2011-07-12 19:07:16 +08:00
|
|
|
/*
|
hwmon: (coretemp) Don't use threshold registers for tempX_max
With commit c814a4c7c4aad795835583344353963a0a673eb0, the meaning of tempX_max
was changed. It no longer returns the value of bits 8:15 of
MSR_IA32_TEMPERATURE_TARGET, but instead returns the value of CPU threshold
register T1. tempX_max_hyst was added to reflect the value of temperature
threshold register T0.
As it turns out, T0 and T1 are used on some systems, presumably by the BIOS.
Also, T0 and T1 don't have a well defined meaning. The thresholds may be used
as upper or lower limits, and it is not guaranteed that T0 <= T1. Thus, the new
attribute mapping does not reflect the actual usage of the threshold registers.
Also, register contents are changed during runtime by an entity other than the
hwmon driver, meaning the values cached by the driver do not reflect actual
register contents.
Revert most of c814a4c7c4aad795835583344353963a0a673eb0 to address the problem.
Support for T0 and T1 will be added back in with a separate commit, using new
attribute names.
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Durgadoss R <durgadoss.r@intel.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
2011-09-20 12:41:16 +08:00
|
|
|
* Read the still undocumented bits 8:15 of IA32_TEMPERATURE_TARGET.
|
|
|
|
* The target temperature is available on older CPUs but not in this
|
|
|
|
* register. Atoms don't have the register at all.
|
2011-07-12 19:07:16 +08:00
|
|
|
*/
|
hwmon: (coretemp) Don't use threshold registers for tempX_max
With commit c814a4c7c4aad795835583344353963a0a673eb0, the meaning of tempX_max
was changed. It no longer returns the value of bits 8:15 of
MSR_IA32_TEMPERATURE_TARGET, but instead returns the value of CPU threshold
register T1. tempX_max_hyst was added to reflect the value of temperature
threshold register T0.
As it turns out, T0 and T1 are used on some systems, presumably by the BIOS.
Also, T0 and T1 don't have a well defined meaning. The thresholds may be used
as upper or lower limits, and it is not guaranteed that T0 <= T1. Thus, the new
attribute mapping does not reflect the actual usage of the threshold registers.
Also, register contents are changed during runtime by an entity other than the
hwmon driver, meaning the values cached by the driver do not reflect actual
register contents.
Revert most of c814a4c7c4aad795835583344353963a0a673eb0 to address the problem.
Support for T0 and T1 will be added back in with a separate commit, using new
attribute names.
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Durgadoss R <durgadoss.r@intel.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
2011-09-20 12:41:16 +08:00
|
|
|
if (c->x86_model > 0xe && c->x86_model != 0x1c) {
|
|
|
|
err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET,
|
|
|
|
&eax, &edx);
|
|
|
|
if (!err) {
|
|
|
|
tdata->ttarget
|
|
|
|
= tdata->tjmax - ((eax >> 8) & 0xff) * 1000;
|
|
|
|
tdata->attr_size++;
|
|
|
|
}
|
2011-07-12 19:07:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
pdata->core_data[attr_no] = tdata;
|
|
|
|
|
|
|
|
/* Create sysfs interfaces */
|
2014-02-17 07:49:04 +08:00
|
|
|
err = create_core_attrs(tdata, pdata->hwmon_dev, attr_no);
|
2011-05-20 03:59:35 +08:00
|
|
|
if (err)
|
|
|
|
goto exit_free;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
return 0;
|
2011-05-20 03:59:35 +08:00
|
|
|
exit_free:
|
2011-09-25 06:27:04 +08:00
|
|
|
pdata->core_data[attr_no] = NULL;
|
2011-05-20 03:59:35 +08:00
|
|
|
kfree(tdata);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-11-23 01:42:03 +08:00
|
|
|
static void
|
|
|
|
coretemp_add_core(struct platform_device *pdev, unsigned int cpu, int pkg_flag)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
2016-11-23 01:42:03 +08:00
|
|
|
if (create_core_data(pdev, cpu, pkg_flag))
|
2011-05-20 03:59:35 +08:00
|
|
|
dev_err(&pdev->dev, "Adding Core %u failed\n", cpu);
|
|
|
|
}
|
|
|
|
|
2016-11-23 01:42:03 +08:00
|
|
|
static void coretemp_remove_core(struct platform_data *pdata, int indx)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
|
|
|
struct temp_data *tdata = pdata->core_data[indx];
|
|
|
|
|
|
|
|
/* Remove the sysfs attributes */
|
2014-02-17 07:49:04 +08:00
|
|
|
sysfs_remove_group(&pdata->hwmon_dev->kobj, &tdata->attr_group);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
|
|
|
kfree(pdata->core_data[indx]);
|
|
|
|
pdata->core_data[indx] = NULL;
|
|
|
|
}
|
|
|
|
|
2012-11-20 02:22:35 +08:00
|
|
|
static int coretemp_probe(struct platform_device *pdev)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
2014-02-17 07:29:55 +08:00
|
|
|
struct device *dev = &pdev->dev;
|
2011-05-20 03:59:35 +08:00
|
|
|
struct platform_data *pdata;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
/* Initialize the per-zone data structures */
|
2014-02-17 07:29:55 +08:00
|
|
|
pdata = devm_kzalloc(dev, sizeof(struct platform_data), GFP_KERNEL);
|
2011-05-20 03:59:35 +08:00
|
|
|
if (!pdata)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-11-23 01:42:06 +08:00
|
|
|
pdata->pkg_id = pdev->id;
|
2011-05-20 03:59:35 +08:00
|
|
|
platform_set_drvdata(pdev, pdata);
|
|
|
|
|
2014-02-17 07:49:04 +08:00
|
|
|
pdata->hwmon_dev = devm_hwmon_device_register_with_groups(dev, DRVNAME,
|
|
|
|
pdata, NULL);
|
|
|
|
return PTR_ERR_OR_ZERO(pdata->hwmon_dev);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2012-11-20 02:25:51 +08:00
|
|
|
static int coretemp_remove(struct platform_device *pdev)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
2011-05-20 03:59:35 +08:00
|
|
|
struct platform_data *pdata = platform_get_drvdata(pdev);
|
|
|
|
int i;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
for (i = MAX_CORE_DATA - 1; i >= 0; --i)
|
|
|
|
if (pdata->core_data[i])
|
2014-02-17 07:49:04 +08:00
|
|
|
coretemp_remove_core(pdata, i);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2007-05-08 23:22:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver coretemp_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = DRVNAME,
|
|
|
|
},
|
|
|
|
.probe = coretemp_probe,
|
2012-11-20 02:21:20 +08:00
|
|
|
.remove = coretemp_remove,
|
2007-05-08 23:22:02 +08:00
|
|
|
};
|
|
|
|
|
2016-11-23 01:42:06 +08:00
|
|
|
static struct platform_device *coretemp_device_add(unsigned int cpu)
|
2007-05-08 23:22:02 +08:00
|
|
|
{
|
2019-05-14 01:59:01 +08:00
|
|
|
int err, zoneid = topology_logical_die_id(cpu);
|
2007-05-08 23:22:02 +08:00
|
|
|
struct platform_device *pdev;
|
2010-07-09 22:22:49 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
if (zoneid < 0)
|
2016-11-23 01:42:06 +08:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2010-07-09 22:22:49 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
pdev = platform_device_alloc(DRVNAME, zoneid);
|
2016-11-23 01:42:06 +08:00
|
|
|
if (!pdev)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
err = platform_device_add(pdev);
|
|
|
|
if (err) {
|
2016-11-23 01:42:06 +08:00
|
|
|
platform_device_put(pdev);
|
|
|
|
return ERR_PTR(err);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
zone_devices[zoneid] = pdev;
|
2016-11-23 01:42:06 +08:00
|
|
|
return pdev;
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
2016-11-23 01:42:04 +08:00
|
|
|
static int coretemp_cpu_online(unsigned int cpu)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
|
|
|
struct platform_device *pdev = coretemp_get_pdev(cpu);
|
2016-11-23 01:42:02 +08:00
|
|
|
struct cpuinfo_x86 *c = &cpu_data(cpu);
|
|
|
|
struct platform_data *pdata;
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2017-05-10 22:30:12 +08:00
|
|
|
/*
|
|
|
|
* Don't execute this on resume as the offline callback did
|
|
|
|
* not get executed on suspend.
|
|
|
|
*/
|
|
|
|
if (cpuhp_tasks_frozen)
|
|
|
|
return 0;
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
|
|
|
* CPUID.06H.EAX[0] indicates whether the CPU has thermal
|
|
|
|
* sensors. We check this bit only, all the early CPUs
|
|
|
|
* without thermal sensors will be filtered out.
|
|
|
|
*/
|
2012-06-23 01:58:06 +08:00
|
|
|
if (!cpu_has(c, X86_FEATURE_DTHERM))
|
2016-11-23 01:42:05 +08:00
|
|
|
return -ENODEV;
|
2011-05-20 03:59:35 +08:00
|
|
|
|
|
|
|
if (!pdev) {
|
2011-09-28 23:11:00 +08:00
|
|
|
/* Check the microcode version of the CPU */
|
|
|
|
if (chk_ucode_version(cpu))
|
2016-11-23 01:42:05 +08:00
|
|
|
return -EINVAL;
|
2011-09-28 23:11:00 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
|
|
|
* Alright, we have DTS support.
|
|
|
|
* We are bringing the _first_ core in this pkg
|
|
|
|
* online. So, initialize per-pkg data structures and
|
|
|
|
* then bring this core online.
|
|
|
|
*/
|
2016-11-23 01:42:06 +08:00
|
|
|
pdev = coretemp_device_add(cpu);
|
|
|
|
if (IS_ERR(pdev))
|
|
|
|
return PTR_ERR(pdev);
|
2016-11-23 01:42:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
|
|
|
* Check whether pkgtemp support is available.
|
|
|
|
* If so, add interfaces for pkgtemp.
|
|
|
|
*/
|
|
|
|
if (cpu_has(c, X86_FEATURE_PTS))
|
2016-11-23 01:42:03 +08:00
|
|
|
coretemp_add_core(pdev, cpu, 1);
|
2011-05-20 03:59:35 +08:00
|
|
|
}
|
2016-11-23 01:42:02 +08:00
|
|
|
|
|
|
|
pdata = platform_get_drvdata(pdev);
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
2016-11-23 01:42:02 +08:00
|
|
|
* Check whether a thread sibling is already online. If not add the
|
|
|
|
* interface for this CPU core.
|
2011-05-20 03:59:35 +08:00
|
|
|
*/
|
2016-11-23 01:42:02 +08:00
|
|
|
if (!cpumask_intersects(&pdata->cpumask, topology_sibling_cpumask(cpu)))
|
2016-11-23 01:42:03 +08:00
|
|
|
coretemp_add_core(pdev, cpu, 0);
|
2016-11-23 01:42:02 +08:00
|
|
|
|
|
|
|
cpumask_set_cpu(cpu, &pdata->cpumask);
|
2016-11-23 01:42:04 +08:00
|
|
|
return 0;
|
2011-05-20 03:59:35 +08:00
|
|
|
}
|
|
|
|
|
2016-11-23 01:42:04 +08:00
|
|
|
static int coretemp_cpu_offline(unsigned int cpu)
|
2011-05-20 03:59:35 +08:00
|
|
|
{
|
|
|
|
struct platform_device *pdev = coretemp_get_pdev(cpu);
|
2016-11-23 01:42:02 +08:00
|
|
|
struct platform_data *pd;
|
2016-11-23 01:42:02 +08:00
|
|
|
struct temp_data *tdata;
|
2016-11-23 01:42:02 +08:00
|
|
|
int indx, target;
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2017-05-10 22:30:12 +08:00
|
|
|
/*
|
|
|
|
* Don't execute this on suspend as the device remove locks
|
|
|
|
* up the machine.
|
|
|
|
*/
|
|
|
|
if (cpuhp_tasks_frozen)
|
|
|
|
return 0;
|
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/* If the physical CPU device does not exist, just return */
|
|
|
|
if (!pdev)
|
2016-11-23 01:42:04 +08:00
|
|
|
return 0;
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2012-04-30 21:18:01 +08:00
|
|
|
/* The core id is too big, just return */
|
2016-11-23 01:42:02 +08:00
|
|
|
indx = TO_ATTR_NO(cpu);
|
2012-04-30 21:18:01 +08:00
|
|
|
if (indx > MAX_CORE_DATA - 1)
|
2016-11-23 01:42:04 +08:00
|
|
|
return 0;
|
2012-04-30 21:18:01 +08:00
|
|
|
|
2016-11-23 01:42:02 +08:00
|
|
|
pd = platform_get_drvdata(pdev);
|
|
|
|
tdata = pd->core_data[indx];
|
|
|
|
|
|
|
|
cpumask_clear_cpu(cpu, &pd->cpumask);
|
2011-05-20 03:59:35 +08:00
|
|
|
|
2011-05-24 05:05:38 +08:00
|
|
|
/*
|
2016-11-23 01:42:02 +08:00
|
|
|
* If this is the last thread sibling, remove the CPU core
|
|
|
|
* interface, If there is still a sibling online, transfer the
|
|
|
|
* target cpu of that core interface to it.
|
2011-05-24 05:05:38 +08:00
|
|
|
*/
|
2016-11-23 01:42:02 +08:00
|
|
|
target = cpumask_any_and(&pd->cpumask, topology_sibling_cpumask(cpu));
|
|
|
|
if (target >= nr_cpu_ids) {
|
|
|
|
coretemp_remove_core(pd, indx);
|
|
|
|
} else if (tdata && tdata->cpu == cpu) {
|
|
|
|
mutex_lock(&tdata->update_lock);
|
|
|
|
tdata->cpu = target;
|
|
|
|
mutex_unlock(&tdata->update_lock);
|
2011-05-20 03:59:35 +08:00
|
|
|
}
|
2016-11-23 01:42:02 +08:00
|
|
|
|
2011-05-20 03:59:35 +08:00
|
|
|
/*
|
2016-11-23 01:42:06 +08:00
|
|
|
* If all cores in this pkg are offline, remove the device. This
|
|
|
|
* will invoke the platform driver remove function, which cleans up
|
|
|
|
* the rest.
|
2011-05-20 03:59:35 +08:00
|
|
|
*/
|
2016-11-23 01:42:02 +08:00
|
|
|
if (cpumask_empty(&pd->cpumask)) {
|
2019-05-14 01:59:01 +08:00
|
|
|
zone_devices[topology_logical_die_id(cpu)] = NULL;
|
2016-11-23 01:42:06 +08:00
|
|
|
platform_device_unregister(pdev);
|
2016-11-23 01:42:04 +08:00
|
|
|
return 0;
|
2016-11-23 01:42:02 +08:00
|
|
|
}
|
2016-11-23 01:42:06 +08:00
|
|
|
|
2016-11-23 01:42:02 +08:00
|
|
|
/*
|
|
|
|
* Check whether this core is the target for the package
|
|
|
|
* interface. We need to assign it to some other cpu.
|
|
|
|
*/
|
2016-11-23 01:42:02 +08:00
|
|
|
tdata = pd->core_data[PKG_SYSFS_ATTR_NO];
|
2016-11-23 01:42:02 +08:00
|
|
|
if (tdata && tdata->cpu == cpu) {
|
2016-11-23 01:42:02 +08:00
|
|
|
target = cpumask_first(&pd->cpumask);
|
2016-11-23 01:42:02 +08:00
|
|
|
mutex_lock(&tdata->update_lock);
|
|
|
|
tdata->cpu = target;
|
|
|
|
mutex_unlock(&tdata->update_lock);
|
|
|
|
}
|
2016-11-23 01:42:04 +08:00
|
|
|
return 0;
|
2011-05-20 03:59:35 +08:00
|
|
|
}
|
2012-07-30 17:33:00 +08:00
|
|
|
static const struct x86_cpu_id __initconst coretemp_ids[] = {
|
2020-03-20 21:13:57 +08:00
|
|
|
X86_MATCH_VENDOR_FEATURE(INTEL, X86_FEATURE_DTHERM, NULL),
|
2012-01-26 07:09:10 +08:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(x86cpu, coretemp_ids);
|
|
|
|
|
2016-11-23 01:42:04 +08:00
|
|
|
static enum cpuhp_state coretemp_hp_online;
|
|
|
|
|
2007-05-08 23:22:02 +08:00
|
|
|
static int __init coretemp_init(void)
|
|
|
|
{
|
2016-11-23 01:42:04 +08:00
|
|
|
int err;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2012-01-26 07:09:10 +08:00
|
|
|
/*
|
|
|
|
* CPUID.06H.EAX[0] indicates whether the CPU has thermal
|
|
|
|
* sensors. We check this bit only, all the early CPUs
|
|
|
|
* without thermal sensors will be filtered out.
|
|
|
|
*/
|
|
|
|
if (!x86_match_cpu(coretemp_ids))
|
|
|
|
return -ENODEV;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2019-05-14 01:59:01 +08:00
|
|
|
max_zones = topology_max_packages() * topology_max_die_per_package();
|
|
|
|
zone_devices = kcalloc(max_zones, sizeof(struct platform_device *),
|
2016-11-23 01:42:06 +08:00
|
|
|
GFP_KERNEL);
|
2019-05-14 01:59:01 +08:00
|
|
|
if (!zone_devices)
|
2016-11-23 01:42:06 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2007-05-08 23:22:02 +08:00
|
|
|
err = platform_driver_register(&coretemp_driver);
|
|
|
|
if (err)
|
2019-08-20 05:00:02 +08:00
|
|
|
goto outzone;
|
2007-05-08 23:22:02 +08:00
|
|
|
|
2016-11-23 01:42:04 +08:00
|
|
|
err = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hwmon/coretemp:online",
|
|
|
|
coretemp_cpu_online, coretemp_cpu_offline);
|
|
|
|
if (err < 0)
|
2016-11-23 01:42:05 +08:00
|
|
|
goto outdrv;
|
2016-11-23 01:42:04 +08:00
|
|
|
coretemp_hp_online = err;
|
2007-05-08 23:22:02 +08:00
|
|
|
return 0;
|
|
|
|
|
2016-11-23 01:42:05 +08:00
|
|
|
outdrv:
|
2007-05-08 23:22:02 +08:00
|
|
|
platform_driver_unregister(&coretemp_driver);
|
2019-08-20 05:00:02 +08:00
|
|
|
outzone:
|
2019-05-14 01:59:01 +08:00
|
|
|
kfree(zone_devices);
|
2007-05-08 23:22:02 +08:00
|
|
|
return err;
|
|
|
|
}
|
2016-11-23 01:42:04 +08:00
|
|
|
module_init(coretemp_init)
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
static void __exit coretemp_exit(void)
|
|
|
|
{
|
2016-11-23 01:42:04 +08:00
|
|
|
cpuhp_remove_state(coretemp_hp_online);
|
2007-05-08 23:22:02 +08:00
|
|
|
platform_driver_unregister(&coretemp_driver);
|
2019-05-14 01:59:01 +08:00
|
|
|
kfree(zone_devices);
|
2007-05-08 23:22:02 +08:00
|
|
|
}
|
2016-11-23 01:42:04 +08:00
|
|
|
module_exit(coretemp_exit)
|
2007-05-08 23:22:02 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
|
|
|
|
MODULE_DESCRIPTION("Intel Core temperature monitor");
|
|
|
|
MODULE_LICENSE("GPL");
|