Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * coretemp.c - Linux kernel module for hardware monitoring |
| 3 | * |
| 4 | * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz> |
| 5 | * |
| 6 | * Inspired from many hwmon drivers |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of 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 Street, Fifth Floor, Boston, MA |
| 20 | * 02110-1301 USA. |
| 21 | */ |
| 22 | |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/jiffies.h> |
| 28 | #include <linux/hwmon.h> |
| 29 | #include <linux/sysfs.h> |
| 30 | #include <linux/hwmon-sysfs.h> |
| 31 | #include <linux/err.h> |
| 32 | #include <linux/mutex.h> |
| 33 | #include <linux/list.h> |
| 34 | #include <linux/platform_device.h> |
| 35 | #include <linux/cpu.h> |
Yong Wang | 1fe63ab | 2010-01-10 20:52:34 +0100 | [diff] [blame] | 36 | #include <linux/pci.h> |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 37 | #include <asm/msr.h> |
| 38 | #include <asm/processor.h> |
| 39 | |
| 40 | #define DRVNAME "coretemp" |
| 41 | |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 42 | typedef enum { SHOW_TEMP, SHOW_TJMAX, SHOW_TTARGET, SHOW_LABEL, |
| 43 | SHOW_NAME } SHOW; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Functions declaration |
| 47 | */ |
| 48 | |
| 49 | static struct coretemp_data *coretemp_update_device(struct device *dev); |
| 50 | |
| 51 | struct coretemp_data { |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 52 | struct device *hwmon_dev; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 53 | struct mutex update_lock; |
| 54 | const char *name; |
| 55 | u32 id; |
Jean Delvare | 3f4f09b | 2010-07-09 16:22:51 +0200 | [diff] [blame] | 56 | u16 core_id; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 57 | char valid; /* zero until following fields are valid */ |
| 58 | unsigned long last_updated; /* in jiffies */ |
| 59 | int temp; |
| 60 | int tjmax; |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 61 | int ttarget; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 62 | u8 alarm; |
| 63 | }; |
| 64 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 65 | /* |
| 66 | * Sysfs stuff |
| 67 | */ |
| 68 | |
| 69 | static ssize_t show_name(struct device *dev, struct device_attribute |
| 70 | *devattr, char *buf) |
| 71 | { |
| 72 | int ret; |
| 73 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
| 74 | struct coretemp_data *data = dev_get_drvdata(dev); |
| 75 | |
| 76 | if (attr->index == SHOW_NAME) |
| 77 | ret = sprintf(buf, "%s\n", data->name); |
| 78 | else /* show label */ |
Jean Delvare | 3f4f09b | 2010-07-09 16:22:51 +0200 | [diff] [blame] | 79 | ret = sprintf(buf, "Core %d\n", data->core_id); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 80 | return ret; |
| 81 | } |
| 82 | |
| 83 | static ssize_t show_alarm(struct device *dev, struct device_attribute |
| 84 | *devattr, char *buf) |
| 85 | { |
| 86 | struct coretemp_data *data = coretemp_update_device(dev); |
| 87 | /* read the Out-of-spec log, never clear */ |
| 88 | return sprintf(buf, "%d\n", data->alarm); |
| 89 | } |
| 90 | |
| 91 | static ssize_t show_temp(struct device *dev, |
| 92 | struct device_attribute *devattr, char *buf) |
| 93 | { |
| 94 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
| 95 | struct coretemp_data *data = coretemp_update_device(dev); |
| 96 | int err; |
| 97 | |
| 98 | if (attr->index == SHOW_TEMP) |
| 99 | err = data->valid ? sprintf(buf, "%d\n", data->temp) : -EAGAIN; |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 100 | else if (attr->index == SHOW_TJMAX) |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 101 | err = sprintf(buf, "%d\n", data->tjmax); |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 102 | else |
| 103 | err = sprintf(buf, "%d\n", data->ttarget); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 104 | return err; |
| 105 | } |
| 106 | |
| 107 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, |
| 108 | SHOW_TEMP); |
| 109 | static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, show_temp, NULL, |
| 110 | SHOW_TJMAX); |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 111 | static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, show_temp, NULL, |
| 112 | SHOW_TTARGET); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 113 | static DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL); |
| 114 | static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, show_name, NULL, SHOW_LABEL); |
| 115 | static SENSOR_DEVICE_ATTR(name, S_IRUGO, show_name, NULL, SHOW_NAME); |
| 116 | |
| 117 | static struct attribute *coretemp_attributes[] = { |
| 118 | &sensor_dev_attr_name.dev_attr.attr, |
| 119 | &sensor_dev_attr_temp1_label.dev_attr.attr, |
| 120 | &dev_attr_temp1_crit_alarm.attr, |
| 121 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 122 | &sensor_dev_attr_temp1_crit.dev_attr.attr, |
| 123 | NULL |
| 124 | }; |
| 125 | |
| 126 | static const struct attribute_group coretemp_group = { |
| 127 | .attrs = coretemp_attributes, |
| 128 | }; |
| 129 | |
| 130 | static struct coretemp_data *coretemp_update_device(struct device *dev) |
| 131 | { |
| 132 | struct coretemp_data *data = dev_get_drvdata(dev); |
| 133 | |
| 134 | mutex_lock(&data->update_lock); |
| 135 | |
| 136 | if (!data->valid || time_after(jiffies, data->last_updated + HZ)) { |
| 137 | u32 eax, edx; |
| 138 | |
| 139 | data->valid = 0; |
| 140 | rdmsr_on_cpu(data->id, MSR_IA32_THERM_STATUS, &eax, &edx); |
| 141 | data->alarm = (eax >> 5) & 1; |
| 142 | /* update only if data has been valid */ |
| 143 | if (eax & 0x80000000) { |
| 144 | data->temp = data->tjmax - (((eax >> 16) |
| 145 | & 0x7f) * 1000); |
| 146 | data->valid = 1; |
| 147 | } else { |
| 148 | dev_dbg(dev, "Temperature data invalid (0x%x)\n", eax); |
| 149 | } |
| 150 | data->last_updated = jiffies; |
| 151 | } |
| 152 | |
| 153 | mutex_unlock(&data->update_lock); |
| 154 | return data; |
| 155 | } |
| 156 | |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 157 | static int __devinit adjust_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev) |
| 158 | { |
| 159 | /* The 100C is default for both mobile and non mobile CPUs */ |
| 160 | |
| 161 | int tjmax = 100000; |
Rudolf Marek | eccfed4 | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 162 | int tjmax_ee = 85000; |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 163 | int usemsr_ee = 1; |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 164 | int err; |
| 165 | u32 eax, edx; |
Yong Wang | 1fe63ab | 2010-01-10 20:52:34 +0100 | [diff] [blame] | 166 | struct pci_dev *host_bridge; |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 167 | |
| 168 | /* Early chips have no MSR for TjMax */ |
| 169 | |
| 170 | if ((c->x86_model == 0xf) && (c->x86_mask < 4)) { |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 171 | usemsr_ee = 0; |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 172 | } |
| 173 | |
Yong Wang | 1fe63ab | 2010-01-10 20:52:34 +0100 | [diff] [blame] | 174 | /* Atom CPUs */ |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 175 | |
| 176 | if (c->x86_model == 0x1c) { |
| 177 | usemsr_ee = 0; |
Yong Wang | 1fe63ab | 2010-01-10 20:52:34 +0100 | [diff] [blame] | 178 | |
| 179 | host_bridge = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0)); |
| 180 | |
| 181 | if (host_bridge && host_bridge->vendor == PCI_VENDOR_ID_INTEL |
| 182 | && (host_bridge->device == 0xa000 /* NM10 based nettop */ |
| 183 | || host_bridge->device == 0xa010)) /* NM10 based netbook */ |
| 184 | tjmax = 100000; |
| 185 | else |
| 186 | tjmax = 90000; |
| 187 | |
| 188 | pci_dev_put(host_bridge); |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | if ((c->x86_model > 0xe) && (usemsr_ee)) { |
Rudolf Marek | eccfed4 | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 192 | u8 platform_id; |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 193 | |
| 194 | /* Now we can detect the mobile CPU using Intel provided table |
| 195 | http://softwarecommunity.intel.com/Wiki/Mobility/720.htm |
| 196 | For Core2 cores, check MSR 0x17, bit 28 1 = Mobile CPU |
| 197 | */ |
| 198 | |
| 199 | err = rdmsr_safe_on_cpu(id, 0x17, &eax, &edx); |
| 200 | if (err) { |
| 201 | dev_warn(dev, |
| 202 | "Unable to access MSR 0x17, assuming desktop" |
| 203 | " CPU\n"); |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 204 | usemsr_ee = 0; |
Rudolf Marek | eccfed4 | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 205 | } else if (c->x86_model < 0x17 && !(eax & 0x10000000)) { |
| 206 | /* Trust bit 28 up to Penryn, I could not find any |
| 207 | documentation on that; if you happen to know |
| 208 | someone at Intel please ask */ |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 209 | usemsr_ee = 0; |
Rudolf Marek | eccfed4 | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 210 | } else { |
| 211 | /* Platform ID bits 52:50 (EDX starts at bit 32) */ |
| 212 | platform_id = (edx >> 18) & 0x7; |
| 213 | |
| 214 | /* Mobile Penryn CPU seems to be platform ID 7 or 5 |
| 215 | (guesswork) */ |
| 216 | if ((c->x86_model == 0x17) && |
| 217 | ((platform_id == 5) || (platform_id == 7))) { |
| 218 | /* If MSR EE bit is set, set it to 90 degrees C, |
| 219 | otherwise 105 degrees C */ |
| 220 | tjmax_ee = 90000; |
| 221 | tjmax = 105000; |
| 222 | } |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 226 | if (usemsr_ee) { |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 227 | |
| 228 | err = rdmsr_safe_on_cpu(id, 0xee, &eax, &edx); |
| 229 | if (err) { |
| 230 | dev_warn(dev, |
| 231 | "Unable to access MSR 0xEE, for Tjmax, left" |
Dean Nelson | 4d7a564 | 2010-03-29 22:03:00 +0200 | [diff] [blame] | 232 | " at default\n"); |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 233 | } else if (eax & 0x40000000) { |
Rudolf Marek | eccfed4 | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 234 | tjmax = tjmax_ee; |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 235 | } |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 236 | /* if we dont use msr EE it means we are desktop CPU (with exeception |
| 237 | of Atom) */ |
| 238 | } else if (tjmax == 100000) { |
Rudolf Marek | 118a887 | 2008-02-17 22:59:39 +0100 | [diff] [blame] | 239 | dev_warn(dev, "Using relative temperature scale!\n"); |
| 240 | } |
| 241 | |
| 242 | return tjmax; |
| 243 | } |
| 244 | |
Carsten Emde | a321ced | 2010-05-24 14:33:41 -0700 | [diff] [blame] | 245 | static int __devinit get_tjmax(struct cpuinfo_x86 *c, u32 id, |
| 246 | struct device *dev) |
| 247 | { |
| 248 | /* The 100C is default for both mobile and non mobile CPUs */ |
| 249 | int err; |
| 250 | u32 eax, edx; |
| 251 | u32 val; |
| 252 | |
| 253 | /* A new feature of current Intel(R) processors, the |
| 254 | IA32_TEMPERATURE_TARGET contains the TjMax value */ |
| 255 | err = rdmsr_safe_on_cpu(id, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx); |
| 256 | if (err) { |
| 257 | dev_warn(dev, "Unable to read TjMax from CPU.\n"); |
| 258 | } else { |
| 259 | val = (eax >> 16) & 0xff; |
| 260 | /* |
| 261 | * If the TjMax is not plausible, an assumption |
| 262 | * will be used |
| 263 | */ |
| 264 | if ((val > 80) && (val < 120)) { |
| 265 | dev_info(dev, "TjMax is %d C.\n", val); |
| 266 | return val * 1000; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | /* |
| 271 | * An assumption is made for early CPUs and unreadable MSR. |
| 272 | * NOTE: the given value may not be correct. |
| 273 | */ |
| 274 | |
| 275 | switch (c->x86_model) { |
| 276 | case 0xe: |
| 277 | case 0xf: |
| 278 | case 0x16: |
| 279 | case 0x1a: |
| 280 | dev_warn(dev, "TjMax is assumed as 100 C!\n"); |
| 281 | return 100000; |
| 282 | break; |
| 283 | case 0x17: |
| 284 | case 0x1c: /* Atom CPUs */ |
| 285 | return adjust_tjmax(c, id, dev); |
| 286 | break; |
| 287 | default: |
| 288 | dev_warn(dev, "CPU (model=0x%x) is not supported yet," |
| 289 | " using default TjMax of 100C.\n", c->x86_model); |
| 290 | return 100000; |
| 291 | } |
| 292 | } |
| 293 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 294 | static int __devinit coretemp_probe(struct platform_device *pdev) |
| 295 | { |
| 296 | struct coretemp_data *data; |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 297 | struct cpuinfo_x86 *c = &cpu_data(pdev->id); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 298 | int err; |
| 299 | u32 eax, edx; |
| 300 | |
| 301 | if (!(data = kzalloc(sizeof(struct coretemp_data), GFP_KERNEL))) { |
| 302 | err = -ENOMEM; |
| 303 | dev_err(&pdev->dev, "Out of memory\n"); |
| 304 | goto exit; |
| 305 | } |
| 306 | |
| 307 | data->id = pdev->id; |
Jean Delvare | 3f4f09b | 2010-07-09 16:22:51 +0200 | [diff] [blame] | 308 | #ifdef CONFIG_SMP |
| 309 | data->core_id = c->cpu_core_id; |
| 310 | #endif |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 311 | data->name = "coretemp"; |
| 312 | mutex_init(&data->update_lock); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 313 | |
| 314 | /* test if we can access the THERM_STATUS MSR */ |
| 315 | err = rdmsr_safe_on_cpu(data->id, MSR_IA32_THERM_STATUS, &eax, &edx); |
| 316 | if (err) { |
| 317 | dev_err(&pdev->dev, |
| 318 | "Unable to access THERM_STATUS MSR, giving up\n"); |
| 319 | goto exit_free; |
| 320 | } |
| 321 | |
Rudolf Marek | 67f363b | 2007-05-27 22:17:43 +0200 | [diff] [blame] | 322 | /* Check if we have problem with errata AE18 of Core processors: |
| 323 | Readings might stop update when processor visited too deep sleep, |
| 324 | fixed for stepping D0 (6EC). |
| 325 | */ |
| 326 | |
| 327 | if ((c->x86_model == 0xe) && (c->x86_mask < 0xc)) { |
| 328 | /* check for microcode update */ |
| 329 | rdmsr_on_cpu(data->id, MSR_IA32_UCODE_REV, &eax, &edx); |
| 330 | if (edx < 0x39) { |
Jean Delvare | 6d79af7 | 2007-06-23 17:16:24 -0700 | [diff] [blame] | 331 | err = -ENODEV; |
Rudolf Marek | 67f363b | 2007-05-27 22:17:43 +0200 | [diff] [blame] | 332 | dev_err(&pdev->dev, |
| 333 | "Errata AE18 not fixed, update BIOS or " |
| 334 | "microcode of the CPU!\n"); |
| 335 | goto exit_free; |
| 336 | } |
| 337 | } |
| 338 | |
Carsten Emde | a321ced | 2010-05-24 14:33:41 -0700 | [diff] [blame] | 339 | data->tjmax = get_tjmax(c, data->id, &pdev->dev); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 340 | platform_set_drvdata(pdev, data); |
| 341 | |
Carsten Emde | a321ced | 2010-05-24 14:33:41 -0700 | [diff] [blame] | 342 | /* |
| 343 | * read the still undocumented IA32_TEMPERATURE_TARGET. It exists |
| 344 | * on older CPUs but not in this register, |
| 345 | * Atoms don't have it either. |
| 346 | */ |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 347 | |
Rudolf Marek | 708a62b | 2009-09-23 22:59:42 +0200 | [diff] [blame] | 348 | if ((c->x86_model > 0xe) && (c->x86_model != 0x1c)) { |
Carsten Emde | a321ced | 2010-05-24 14:33:41 -0700 | [diff] [blame] | 349 | err = rdmsr_safe_on_cpu(data->id, MSR_IA32_TEMPERATURE_TARGET, |
| 350 | &eax, &edx); |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 351 | if (err) { |
| 352 | dev_warn(&pdev->dev, "Unable to read" |
| 353 | " IA32_TEMPERATURE_TARGET MSR\n"); |
| 354 | } else { |
| 355 | data->ttarget = data->tjmax - |
| 356 | (((eax >> 8) & 0xff) * 1000); |
| 357 | err = device_create_file(&pdev->dev, |
| 358 | &sensor_dev_attr_temp1_max.dev_attr); |
| 359 | if (err) |
| 360 | goto exit_free; |
| 361 | } |
| 362 | } |
| 363 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 364 | if ((err = sysfs_create_group(&pdev->dev.kobj, &coretemp_group))) |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 365 | goto exit_dev; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 366 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 367 | data->hwmon_dev = hwmon_device_register(&pdev->dev); |
| 368 | if (IS_ERR(data->hwmon_dev)) { |
| 369 | err = PTR_ERR(data->hwmon_dev); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 370 | dev_err(&pdev->dev, "Class registration failed (%d)\n", |
| 371 | err); |
| 372 | goto exit_class; |
| 373 | } |
| 374 | |
| 375 | return 0; |
| 376 | |
| 377 | exit_class: |
| 378 | sysfs_remove_group(&pdev->dev.kobj, &coretemp_group); |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 379 | exit_dev: |
| 380 | device_remove_file(&pdev->dev, &sensor_dev_attr_temp1_max.dev_attr); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 381 | exit_free: |
| 382 | kfree(data); |
| 383 | exit: |
| 384 | return err; |
| 385 | } |
| 386 | |
| 387 | static int __devexit coretemp_remove(struct platform_device *pdev) |
| 388 | { |
| 389 | struct coretemp_data *data = platform_get_drvdata(pdev); |
| 390 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 391 | hwmon_device_unregister(data->hwmon_dev); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 392 | sysfs_remove_group(&pdev->dev.kobj, &coretemp_group); |
Rudolf Marek | 6369a288 | 2008-01-18 00:42:54 +0100 | [diff] [blame] | 393 | device_remove_file(&pdev->dev, &sensor_dev_attr_temp1_max.dev_attr); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 394 | platform_set_drvdata(pdev, NULL); |
| 395 | kfree(data); |
| 396 | return 0; |
| 397 | } |
| 398 | |
| 399 | static struct platform_driver coretemp_driver = { |
| 400 | .driver = { |
| 401 | .owner = THIS_MODULE, |
| 402 | .name = DRVNAME, |
| 403 | }, |
| 404 | .probe = coretemp_probe, |
| 405 | .remove = __devexit_p(coretemp_remove), |
| 406 | }; |
| 407 | |
| 408 | struct pdev_entry { |
| 409 | struct list_head list; |
| 410 | struct platform_device *pdev; |
| 411 | unsigned int cpu; |
Jean Delvare | d883b9f | 2010-07-09 16:22:49 +0200 | [diff] [blame] | 412 | #ifdef CONFIG_SMP |
| 413 | u16 phys_proc_id; |
| 414 | u16 cpu_core_id; |
| 415 | #endif |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 416 | }; |
| 417 | |
| 418 | static LIST_HEAD(pdev_list); |
| 419 | static DEFINE_MUTEX(pdev_list_mutex); |
| 420 | |
| 421 | static int __cpuinit coretemp_device_add(unsigned int cpu) |
| 422 | { |
| 423 | int err; |
| 424 | struct platform_device *pdev; |
| 425 | struct pdev_entry *pdev_entry; |
Jean Delvare | d883b9f | 2010-07-09 16:22:49 +0200 | [diff] [blame] | 426 | #ifdef CONFIG_SMP |
| 427 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
| 428 | #endif |
| 429 | |
| 430 | mutex_lock(&pdev_list_mutex); |
| 431 | |
| 432 | #ifdef CONFIG_SMP |
| 433 | /* Skip second HT entry of each core */ |
| 434 | list_for_each_entry(pdev_entry, &pdev_list, list) { |
| 435 | if (c->phys_proc_id == pdev_entry->phys_proc_id && |
| 436 | c->cpu_core_id == pdev_entry->cpu_core_id) { |
| 437 | err = 0; /* Not an error */ |
| 438 | goto exit; |
| 439 | } |
| 440 | } |
| 441 | #endif |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 442 | |
| 443 | pdev = platform_device_alloc(DRVNAME, cpu); |
| 444 | if (!pdev) { |
| 445 | err = -ENOMEM; |
| 446 | printk(KERN_ERR DRVNAME ": Device allocation failed\n"); |
| 447 | goto exit; |
| 448 | } |
| 449 | |
| 450 | pdev_entry = kzalloc(sizeof(struct pdev_entry), GFP_KERNEL); |
| 451 | if (!pdev_entry) { |
| 452 | err = -ENOMEM; |
| 453 | goto exit_device_put; |
| 454 | } |
| 455 | |
| 456 | err = platform_device_add(pdev); |
| 457 | if (err) { |
| 458 | printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n", |
| 459 | err); |
| 460 | goto exit_device_free; |
| 461 | } |
| 462 | |
| 463 | pdev_entry->pdev = pdev; |
| 464 | pdev_entry->cpu = cpu; |
Jean Delvare | d883b9f | 2010-07-09 16:22:49 +0200 | [diff] [blame] | 465 | #ifdef CONFIG_SMP |
| 466 | pdev_entry->phys_proc_id = c->phys_proc_id; |
| 467 | pdev_entry->cpu_core_id = c->cpu_core_id; |
| 468 | #endif |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 469 | list_add_tail(&pdev_entry->list, &pdev_list); |
| 470 | mutex_unlock(&pdev_list_mutex); |
| 471 | |
| 472 | return 0; |
| 473 | |
| 474 | exit_device_free: |
| 475 | kfree(pdev_entry); |
| 476 | exit_device_put: |
| 477 | platform_device_put(pdev); |
| 478 | exit: |
Jean Delvare | d883b9f | 2010-07-09 16:22:49 +0200 | [diff] [blame] | 479 | mutex_unlock(&pdev_list_mutex); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 480 | return err; |
| 481 | } |
| 482 | |
| 483 | #ifdef CONFIG_HOTPLUG_CPU |
Adrian Bunk | d2bc7b1 | 2007-07-06 01:23:06 +0200 | [diff] [blame] | 484 | static void coretemp_device_remove(unsigned int cpu) |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 485 | { |
| 486 | struct pdev_entry *p, *n; |
| 487 | mutex_lock(&pdev_list_mutex); |
| 488 | list_for_each_entry_safe(p, n, &pdev_list, list) { |
| 489 | if (p->cpu == cpu) { |
| 490 | platform_device_unregister(p->pdev); |
| 491 | list_del(&p->list); |
| 492 | kfree(p); |
| 493 | } |
| 494 | } |
| 495 | mutex_unlock(&pdev_list_mutex); |
| 496 | } |
| 497 | |
Sam Ravnborg | ba7c192 | 2008-02-17 13:22:51 +0100 | [diff] [blame] | 498 | static int __cpuinit coretemp_cpu_callback(struct notifier_block *nfb, |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 499 | unsigned long action, void *hcpu) |
| 500 | { |
| 501 | unsigned int cpu = (unsigned long) hcpu; |
| 502 | |
| 503 | switch (action) { |
| 504 | case CPU_ONLINE: |
Chen Gong | 0dca94b | 2010-08-09 17:21:09 -0700 | [diff] [blame^] | 505 | case CPU_ONLINE_FROZEN: |
Rafael J. Wysocki | 561d9a9 | 2007-12-03 18:01:50 +0100 | [diff] [blame] | 506 | case CPU_DOWN_FAILED: |
Chen Gong | 0dca94b | 2010-08-09 17:21:09 -0700 | [diff] [blame^] | 507 | case CPU_DOWN_FAILED_FROZEN: |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 508 | coretemp_device_add(cpu); |
| 509 | break; |
Rafael J. Wysocki | 561d9a9 | 2007-12-03 18:01:50 +0100 | [diff] [blame] | 510 | case CPU_DOWN_PREPARE: |
Chen Gong | 0dca94b | 2010-08-09 17:21:09 -0700 | [diff] [blame^] | 511 | case CPU_DOWN_PREPARE_FROZEN: |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 512 | coretemp_device_remove(cpu); |
| 513 | break; |
| 514 | } |
| 515 | return NOTIFY_OK; |
| 516 | } |
| 517 | |
Sam Ravnborg | ba7c192 | 2008-02-17 13:22:51 +0100 | [diff] [blame] | 518 | static struct notifier_block coretemp_cpu_notifier __refdata = { |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 519 | .notifier_call = coretemp_cpu_callback, |
| 520 | }; |
| 521 | #endif /* !CONFIG_HOTPLUG_CPU */ |
| 522 | |
| 523 | static int __init coretemp_init(void) |
| 524 | { |
| 525 | int i, err = -ENODEV; |
| 526 | struct pdev_entry *p, *n; |
| 527 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 528 | /* quick check if we run Intel */ |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 529 | if (cpu_data(0).x86_vendor != X86_VENDOR_INTEL) |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 530 | goto exit; |
| 531 | |
| 532 | err = platform_driver_register(&coretemp_driver); |
| 533 | if (err) |
| 534 | goto exit; |
| 535 | |
| 536 | for_each_online_cpu(i) { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 537 | struct cpuinfo_x86 *c = &cpu_data(i); |
Carsten Emde | 5db47b0 | 2010-05-24 14:33:39 -0700 | [diff] [blame] | 538 | /* |
| 539 | * CPUID.06H.EAX[0] indicates whether the CPU has thermal |
| 540 | * sensors. We check this bit only, all the early CPUs |
| 541 | * without thermal sensors will be filtered out. |
| 542 | */ |
| 543 | if (c->cpuid_level >= 6 && (cpuid_eax(0x06) & 0x01)) { |
| 544 | err = coretemp_device_add(i); |
| 545 | if (err) |
| 546 | goto exit_devices_unreg; |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 547 | |
Carsten Emde | 5db47b0 | 2010-05-24 14:33:39 -0700 | [diff] [blame] | 548 | } else { |
| 549 | printk(KERN_INFO DRVNAME ": CPU (model=0x%x)" |
| 550 | " has no thermal sensor.\n", c->x86_model); |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 551 | } |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 552 | } |
| 553 | if (list_empty(&pdev_list)) { |
| 554 | err = -ENODEV; |
| 555 | goto exit_driver_unreg; |
| 556 | } |
| 557 | |
| 558 | #ifdef CONFIG_HOTPLUG_CPU |
| 559 | register_hotcpu_notifier(&coretemp_cpu_notifier); |
| 560 | #endif |
| 561 | return 0; |
| 562 | |
| 563 | exit_devices_unreg: |
| 564 | mutex_lock(&pdev_list_mutex); |
| 565 | list_for_each_entry_safe(p, n, &pdev_list, list) { |
| 566 | platform_device_unregister(p->pdev); |
| 567 | list_del(&p->list); |
| 568 | kfree(p); |
| 569 | } |
| 570 | mutex_unlock(&pdev_list_mutex); |
| 571 | exit_driver_unreg: |
Chen Gong | 0dca94b | 2010-08-09 17:21:09 -0700 | [diff] [blame^] | 572 | #ifndef CONFIG_HOTPLUG_CPU |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 573 | platform_driver_unregister(&coretemp_driver); |
Chen Gong | 0dca94b | 2010-08-09 17:21:09 -0700 | [diff] [blame^] | 574 | #endif |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 575 | exit: |
| 576 | return err; |
| 577 | } |
| 578 | |
| 579 | static void __exit coretemp_exit(void) |
| 580 | { |
| 581 | struct pdev_entry *p, *n; |
| 582 | #ifdef CONFIG_HOTPLUG_CPU |
| 583 | unregister_hotcpu_notifier(&coretemp_cpu_notifier); |
| 584 | #endif |
| 585 | mutex_lock(&pdev_list_mutex); |
| 586 | list_for_each_entry_safe(p, n, &pdev_list, list) { |
| 587 | platform_device_unregister(p->pdev); |
| 588 | list_del(&p->list); |
| 589 | kfree(p); |
| 590 | } |
| 591 | mutex_unlock(&pdev_list_mutex); |
| 592 | platform_driver_unregister(&coretemp_driver); |
| 593 | } |
| 594 | |
| 595 | MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>"); |
| 596 | MODULE_DESCRIPTION("Intel Core temperature monitor"); |
| 597 | MODULE_LICENSE("GPL"); |
| 598 | |
| 599 | module_init(coretemp_init) |
| 600 | module_exit(coretemp_exit) |