UBIFS: make debugging messages light again
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / hwmon / coretemp.c
blob6163cfa95c3ebcb148ee3037925b977867ce8675
1 /*
2 * coretemp.c - Linux kernel module for hardware monitoring
4 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
6 * Inspired from many hwmon drivers
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.
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.
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.
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/module.h>
26 #include <linux/init.h>
27 #include <linux/slab.h>
28 #include <linux/jiffies.h>
29 #include <linux/hwmon.h>
30 #include <linux/sysfs.h>
31 #include <linux/hwmon-sysfs.h>
32 #include <linux/err.h>
33 #include <linux/mutex.h>
34 #include <linux/list.h>
35 #include <linux/platform_device.h>
36 #include <linux/cpu.h>
37 #include <linux/pci.h>
38 #include <linux/smp.h>
39 #include <asm/msr.h>
40 #include <asm/processor.h>
42 #define DRVNAME "coretemp"
44 #define BASE_SYSFS_ATTR_NO 2 /* Sysfs Base attr no for coretemp */
45 #define NUM_REAL_CORES 16 /* Number of Real cores per cpu */
46 #define CORETEMP_NAME_LENGTH 17 /* String Length of attrs */
47 #define MAX_ATTRS 5 /* Maximum no of per-core attrs */
48 #define MAX_CORE_DATA (NUM_REAL_CORES + BASE_SYSFS_ATTR_NO)
50 #ifdef CONFIG_SMP
51 #define TO_PHYS_ID(cpu) cpu_data(cpu).phys_proc_id
52 #define TO_CORE_ID(cpu) cpu_data(cpu).cpu_core_id
53 #define for_each_sibling(i, cpu) for_each_cpu(i, cpu_sibling_mask(cpu))
54 #else
55 #define TO_PHYS_ID(cpu) (cpu)
56 #define TO_CORE_ID(cpu) (cpu)
57 #define for_each_sibling(i, cpu) for (i = 0; false; )
58 #endif
59 #define TO_ATTR_NO(cpu) (TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO)
62 * Per-Core Temperature Data
63 * @last_updated: The time when the current temperature value was updated
64 * earlier (in jiffies).
65 * @cpu_core_id: The CPU Core from which temperature values should be read
66 * This value is passed as "id" field to rdmsr/wrmsr functions.
67 * @status_reg: One of IA32_THERM_STATUS or IA32_PACKAGE_THERM_STATUS,
68 * from where the temperature values should be read.
69 * @is_pkg_data: If this is 1, the temp_data holds pkgtemp data.
70 * Otherwise, temp_data holds coretemp data.
71 * @valid: If this is 1, the current temperature is valid.
73 struct temp_data {
74 int temp;
75 int ttarget;
76 int tjmax;
77 unsigned long last_updated;
78 unsigned int cpu;
79 u32 cpu_core_id;
80 u32 status_reg;
81 bool is_pkg_data;
82 bool valid;
83 struct sensor_device_attribute sd_attrs[MAX_ATTRS];
84 char attr_name[MAX_ATTRS][CORETEMP_NAME_LENGTH];
85 struct mutex update_lock;
88 /* Platform Data per Physical CPU */
89 struct platform_data {
90 struct device *hwmon_dev;
91 u16 phys_proc_id;
92 struct temp_data *core_data[MAX_CORE_DATA];
93 struct device_attribute name_attr;
96 struct pdev_entry {
97 struct list_head list;
98 struct platform_device *pdev;
99 u16 phys_proc_id;
102 static LIST_HEAD(pdev_list);
103 static DEFINE_MUTEX(pdev_list_mutex);
105 static ssize_t show_name(struct device *dev,
106 struct device_attribute *devattr, char *buf)
108 return sprintf(buf, "%s\n", DRVNAME);
111 static ssize_t show_label(struct device *dev,
112 struct device_attribute *devattr, char *buf)
114 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
115 struct platform_data *pdata = dev_get_drvdata(dev);
116 struct temp_data *tdata = pdata->core_data[attr->index];
118 if (tdata->is_pkg_data)
119 return sprintf(buf, "Physical id %u\n", pdata->phys_proc_id);
121 return sprintf(buf, "Core %u\n", tdata->cpu_core_id);
124 static ssize_t show_crit_alarm(struct device *dev,
125 struct device_attribute *devattr, char *buf)
127 u32 eax, edx;
128 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
129 struct platform_data *pdata = dev_get_drvdata(dev);
130 struct temp_data *tdata = pdata->core_data[attr->index];
132 rdmsr_on_cpu(tdata->cpu, tdata->status_reg, &eax, &edx);
134 return sprintf(buf, "%d\n", (eax >> 5) & 1);
137 static ssize_t show_tjmax(struct device *dev,
138 struct device_attribute *devattr, char *buf)
140 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
141 struct platform_data *pdata = dev_get_drvdata(dev);
143 return sprintf(buf, "%d\n", pdata->core_data[attr->index]->tjmax);
146 static ssize_t show_ttarget(struct device *dev,
147 struct device_attribute *devattr, char *buf)
149 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
150 struct platform_data *pdata = dev_get_drvdata(dev);
152 return sprintf(buf, "%d\n", pdata->core_data[attr->index]->ttarget);
155 static ssize_t show_temp(struct device *dev,
156 struct device_attribute *devattr, char *buf)
158 u32 eax, edx;
159 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
160 struct platform_data *pdata = dev_get_drvdata(dev);
161 struct temp_data *tdata = pdata->core_data[attr->index];
163 mutex_lock(&tdata->update_lock);
165 /* Check whether the time interval has elapsed */
166 if (!tdata->valid || time_after(jiffies, tdata->last_updated + HZ)) {
167 rdmsr_on_cpu(tdata->cpu, tdata->status_reg, &eax, &edx);
168 tdata->valid = 0;
169 /* Check whether the data is valid */
170 if (eax & 0x80000000) {
171 tdata->temp = tdata->tjmax -
172 ((eax >> 16) & 0x7f) * 1000;
173 tdata->valid = 1;
175 tdata->last_updated = jiffies;
178 mutex_unlock(&tdata->update_lock);
179 return tdata->valid ? sprintf(buf, "%d\n", tdata->temp) : -EAGAIN;
182 static int adjust_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
184 /* The 100C is default for both mobile and non mobile CPUs */
186 int tjmax = 100000;
187 int tjmax_ee = 85000;
188 int usemsr_ee = 1;
189 int err;
190 u32 eax, edx;
191 struct pci_dev *host_bridge;
193 /* Early chips have no MSR for TjMax */
195 if (c->x86_model == 0xf && c->x86_mask < 4)
196 usemsr_ee = 0;
198 /* Atom CPUs */
200 if (c->x86_model == 0x1c) {
201 usemsr_ee = 0;
203 host_bridge = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
205 if (host_bridge && host_bridge->vendor == PCI_VENDOR_ID_INTEL
206 && (host_bridge->device == 0xa000 /* NM10 based nettop */
207 || host_bridge->device == 0xa010)) /* NM10 based netbook */
208 tjmax = 100000;
209 else
210 tjmax = 90000;
212 pci_dev_put(host_bridge);
215 if (c->x86_model > 0xe && usemsr_ee) {
216 u8 platform_id;
219 * Now we can detect the mobile CPU using Intel provided table
220 * http://softwarecommunity.intel.com/Wiki/Mobility/720.htm
221 * For Core2 cores, check MSR 0x17, bit 28 1 = Mobile CPU
223 err = rdmsr_safe_on_cpu(id, 0x17, &eax, &edx);
224 if (err) {
225 dev_warn(dev,
226 "Unable to access MSR 0x17, assuming desktop"
227 " CPU\n");
228 usemsr_ee = 0;
229 } else if (c->x86_model < 0x17 && !(eax & 0x10000000)) {
231 * Trust bit 28 up to Penryn, I could not find any
232 * documentation on that; if you happen to know
233 * someone at Intel please ask
235 usemsr_ee = 0;
236 } else {
237 /* Platform ID bits 52:50 (EDX starts at bit 32) */
238 platform_id = (edx >> 18) & 0x7;
241 * Mobile Penryn CPU seems to be platform ID 7 or 5
242 * (guesswork)
244 if (c->x86_model == 0x17 &&
245 (platform_id == 5 || platform_id == 7)) {
247 * If MSR EE bit is set, set it to 90 degrees C,
248 * otherwise 105 degrees C
250 tjmax_ee = 90000;
251 tjmax = 105000;
256 if (usemsr_ee) {
257 err = rdmsr_safe_on_cpu(id, 0xee, &eax, &edx);
258 if (err) {
259 dev_warn(dev,
260 "Unable to access MSR 0xEE, for Tjmax, left"
261 " at default\n");
262 } else if (eax & 0x40000000) {
263 tjmax = tjmax_ee;
265 } else if (tjmax == 100000) {
267 * If we don't use msr EE it means we are desktop CPU
268 * (with exeception of Atom)
270 dev_warn(dev, "Using relative temperature scale!\n");
273 return tjmax;
276 static int get_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
278 /* The 100C is default for both mobile and non mobile CPUs */
279 int err;
280 u32 eax, edx;
281 u32 val;
284 * A new feature of current Intel(R) processors, the
285 * IA32_TEMPERATURE_TARGET contains the TjMax value
287 err = rdmsr_safe_on_cpu(id, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
288 if (err) {
289 dev_warn(dev, "Unable to read TjMax from CPU.\n");
290 } else {
291 val = (eax >> 16) & 0xff;
293 * If the TjMax is not plausible, an assumption
294 * will be used
296 if (val) {
297 dev_info(dev, "TjMax is %d C.\n", val);
298 return val * 1000;
303 * An assumption is made for early CPUs and unreadable MSR.
304 * NOTE: the calculated value may not be correct.
306 return adjust_tjmax(c, id, dev);
309 static void __devinit get_ucode_rev_on_cpu(void *edx)
311 u32 eax;
313 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
314 sync_core();
315 rdmsr(MSR_IA32_UCODE_REV, eax, *(u32 *)edx);
318 static int get_pkg_tjmax(unsigned int cpu, struct device *dev)
320 int err;
321 u32 eax, edx, val;
323 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
324 if (!err) {
325 val = (eax >> 16) & 0xff;
326 if (val)
327 return val * 1000;
329 dev_warn(dev, "Unable to read Pkg-TjMax from CPU:%u\n", cpu);
330 return 100000; /* Default TjMax: 100 degree celsius */
333 static int create_name_attr(struct platform_data *pdata, struct device *dev)
335 sysfs_attr_init(&pdata->name_attr.attr);
336 pdata->name_attr.attr.name = "name";
337 pdata->name_attr.attr.mode = S_IRUGO;
338 pdata->name_attr.show = show_name;
339 return device_create_file(dev, &pdata->name_attr);
342 static int create_core_attrs(struct temp_data *tdata, struct device *dev,
343 int attr_no)
345 int err, i;
346 static ssize_t (*rd_ptr[MAX_ATTRS]) (struct device *dev,
347 struct device_attribute *devattr, char *buf) = {
348 show_label, show_crit_alarm, show_ttarget,
349 show_temp, show_tjmax };
350 static const char *names[MAX_ATTRS] = {
351 "temp%d_label", "temp%d_crit_alarm",
352 "temp%d_max", "temp%d_input",
353 "temp%d_crit" };
355 for (i = 0; i < MAX_ATTRS; i++) {
356 snprintf(tdata->attr_name[i], CORETEMP_NAME_LENGTH, names[i],
357 attr_no);
358 sysfs_attr_init(&tdata->sd_attrs[i].dev_attr.attr);
359 tdata->sd_attrs[i].dev_attr.attr.name = tdata->attr_name[i];
360 tdata->sd_attrs[i].dev_attr.attr.mode = S_IRUGO;
361 tdata->sd_attrs[i].dev_attr.show = rd_ptr[i];
362 tdata->sd_attrs[i].dev_attr.store = NULL;
363 tdata->sd_attrs[i].index = attr_no;
364 err = device_create_file(dev, &tdata->sd_attrs[i].dev_attr);
365 if (err)
366 goto exit_free;
368 return 0;
370 exit_free:
371 while (--i >= 0)
372 device_remove_file(dev, &tdata->sd_attrs[i].dev_attr);
373 return err;
376 static void update_ttarget(__u8 cpu_model, struct temp_data *tdata,
377 struct device *dev)
379 int err;
380 u32 eax, edx;
383 * Initialize ttarget value. Eventually this will be
384 * initialized with the value from MSR_IA32_THERM_INTERRUPT
385 * register. If IA32_TEMPERATURE_TARGET is supported, this
386 * value will be over written below.
387 * To Do: Patch to initialize ttarget from MSR_IA32_THERM_INTERRUPT
389 tdata->ttarget = tdata->tjmax - 20000;
392 * Read the still undocumented IA32_TEMPERATURE_TARGET. It exists
393 * on older CPUs but not in this register,
394 * Atoms don't have it either.
396 if (cpu_model > 0xe && cpu_model != 0x1c) {
397 err = rdmsr_safe_on_cpu(tdata->cpu,
398 MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
399 if (err) {
400 dev_warn(dev,
401 "Unable to read IA32_TEMPERATURE_TARGET MSR\n");
402 } else {
403 tdata->ttarget = tdata->tjmax -
404 ((eax >> 8) & 0xff) * 1000;
409 static int __devinit chk_ucode_version(struct platform_device *pdev)
411 struct cpuinfo_x86 *c = &cpu_data(pdev->id);
412 int err;
413 u32 edx;
416 * Check if we have problem with errata AE18 of Core processors:
417 * Readings might stop update when processor visited too deep sleep,
418 * fixed for stepping D0 (6EC).
420 if (c->x86_model == 0xe && c->x86_mask < 0xc) {
421 /* check for microcode update */
422 err = smp_call_function_single(pdev->id, get_ucode_rev_on_cpu,
423 &edx, 1);
424 if (err) {
425 dev_err(&pdev->dev,
426 "Cannot determine microcode revision of "
427 "CPU#%u (%d)!\n", pdev->id, err);
428 return -ENODEV;
429 } else if (edx < 0x39) {
430 dev_err(&pdev->dev,
431 "Errata AE18 not fixed, update BIOS or "
432 "microcode of the CPU!\n");
433 return -ENODEV;
436 return 0;
439 static struct platform_device *coretemp_get_pdev(unsigned int cpu)
441 u16 phys_proc_id = TO_PHYS_ID(cpu);
442 struct pdev_entry *p;
444 mutex_lock(&pdev_list_mutex);
446 list_for_each_entry(p, &pdev_list, list)
447 if (p->phys_proc_id == phys_proc_id) {
448 mutex_unlock(&pdev_list_mutex);
449 return p->pdev;
452 mutex_unlock(&pdev_list_mutex);
453 return NULL;
456 static struct temp_data *init_temp_data(unsigned int cpu, int pkg_flag)
458 struct temp_data *tdata;
460 tdata = kzalloc(sizeof(struct temp_data), GFP_KERNEL);
461 if (!tdata)
462 return NULL;
464 tdata->status_reg = pkg_flag ? MSR_IA32_PACKAGE_THERM_STATUS :
465 MSR_IA32_THERM_STATUS;
466 tdata->is_pkg_data = pkg_flag;
467 tdata->cpu = cpu;
468 tdata->cpu_core_id = TO_CORE_ID(cpu);
469 mutex_init(&tdata->update_lock);
470 return tdata;
473 static int create_core_data(struct platform_data *pdata,
474 struct platform_device *pdev,
475 unsigned int cpu, int pkg_flag)
477 struct temp_data *tdata;
478 struct cpuinfo_x86 *c = &cpu_data(cpu);
479 u32 eax, edx;
480 int err, attr_no;
483 * Find attr number for sysfs:
484 * We map the attr number to core id of the CPU
485 * The attr number is always core id + 2
486 * The Pkgtemp will always show up as temp1_*, if available
488 attr_no = pkg_flag ? 1 : TO_ATTR_NO(cpu);
490 if (attr_no > MAX_CORE_DATA - 1)
491 return -ERANGE;
494 * Provide a single set of attributes for all HT siblings of a core
495 * to avoid duplicate sensors (the processor ID and core ID of all
496 * HT siblings of a core are the same).
497 * Skip if a HT sibling of this core is already registered.
498 * This is not an error.
500 if (pdata->core_data[attr_no] != NULL)
501 return 0;
503 tdata = init_temp_data(cpu, pkg_flag);
504 if (!tdata)
505 return -ENOMEM;
507 /* Test if we can access the status register */
508 err = rdmsr_safe_on_cpu(cpu, tdata->status_reg, &eax, &edx);
509 if (err)
510 goto exit_free;
512 /* We can access status register. Get Critical Temperature */
513 if (pkg_flag)
514 tdata->tjmax = get_pkg_tjmax(pdev->id, &pdev->dev);
515 else
516 tdata->tjmax = get_tjmax(c, cpu, &pdev->dev);
518 update_ttarget(c->x86_model, tdata, &pdev->dev);
519 pdata->core_data[attr_no] = tdata;
521 /* Create sysfs interfaces */
522 err = create_core_attrs(tdata, &pdev->dev, attr_no);
523 if (err)
524 goto exit_free;
526 return 0;
527 exit_free:
528 kfree(tdata);
529 return err;
532 static void coretemp_add_core(unsigned int cpu, int pkg_flag)
534 struct platform_data *pdata;
535 struct platform_device *pdev = coretemp_get_pdev(cpu);
536 int err;
538 if (!pdev)
539 return;
541 pdata = platform_get_drvdata(pdev);
542 if (!pdata)
543 return;
545 err = create_core_data(pdata, pdev, cpu, pkg_flag);
546 if (err)
547 dev_err(&pdev->dev, "Adding Core %u failed\n", cpu);
550 static void coretemp_remove_core(struct platform_data *pdata,
551 struct device *dev, int indx)
553 int i;
554 struct temp_data *tdata = pdata->core_data[indx];
556 /* Remove the sysfs attributes */
557 for (i = 0; i < MAX_ATTRS; i++)
558 device_remove_file(dev, &tdata->sd_attrs[i].dev_attr);
560 kfree(pdata->core_data[indx]);
561 pdata->core_data[indx] = NULL;
564 static int __devinit coretemp_probe(struct platform_device *pdev)
566 struct platform_data *pdata;
567 int err;
569 /* Check the microcode version of the CPU */
570 err = chk_ucode_version(pdev);
571 if (err)
572 return err;
574 /* Initialize the per-package data structures */
575 pdata = kzalloc(sizeof(struct platform_data), GFP_KERNEL);
576 if (!pdata)
577 return -ENOMEM;
579 err = create_name_attr(pdata, &pdev->dev);
580 if (err)
581 goto exit_free;
583 pdata->phys_proc_id = TO_PHYS_ID(pdev->id);
584 platform_set_drvdata(pdev, pdata);
586 pdata->hwmon_dev = hwmon_device_register(&pdev->dev);
587 if (IS_ERR(pdata->hwmon_dev)) {
588 err = PTR_ERR(pdata->hwmon_dev);
589 dev_err(&pdev->dev, "Class registration failed (%d)\n", err);
590 goto exit_name;
592 return 0;
594 exit_name:
595 device_remove_file(&pdev->dev, &pdata->name_attr);
596 platform_set_drvdata(pdev, NULL);
597 exit_free:
598 kfree(pdata);
599 return err;
602 static int __devexit coretemp_remove(struct platform_device *pdev)
604 struct platform_data *pdata = platform_get_drvdata(pdev);
605 int i;
607 for (i = MAX_CORE_DATA - 1; i >= 0; --i)
608 if (pdata->core_data[i])
609 coretemp_remove_core(pdata, &pdev->dev, i);
611 device_remove_file(&pdev->dev, &pdata->name_attr);
612 hwmon_device_unregister(pdata->hwmon_dev);
613 platform_set_drvdata(pdev, NULL);
614 kfree(pdata);
615 return 0;
618 static struct platform_driver coretemp_driver = {
619 .driver = {
620 .owner = THIS_MODULE,
621 .name = DRVNAME,
623 .probe = coretemp_probe,
624 .remove = __devexit_p(coretemp_remove),
627 static int __cpuinit coretemp_device_add(unsigned int cpu)
629 int err;
630 struct platform_device *pdev;
631 struct pdev_entry *pdev_entry;
633 mutex_lock(&pdev_list_mutex);
635 pdev = platform_device_alloc(DRVNAME, cpu);
636 if (!pdev) {
637 err = -ENOMEM;
638 pr_err("Device allocation failed\n");
639 goto exit;
642 pdev_entry = kzalloc(sizeof(struct pdev_entry), GFP_KERNEL);
643 if (!pdev_entry) {
644 err = -ENOMEM;
645 goto exit_device_put;
648 err = platform_device_add(pdev);
649 if (err) {
650 pr_err("Device addition failed (%d)\n", err);
651 goto exit_device_free;
654 pdev_entry->pdev = pdev;
655 pdev_entry->phys_proc_id = TO_PHYS_ID(cpu);
657 list_add_tail(&pdev_entry->list, &pdev_list);
658 mutex_unlock(&pdev_list_mutex);
660 return 0;
662 exit_device_free:
663 kfree(pdev_entry);
664 exit_device_put:
665 platform_device_put(pdev);
666 exit:
667 mutex_unlock(&pdev_list_mutex);
668 return err;
671 static void coretemp_device_remove(unsigned int cpu)
673 struct pdev_entry *p, *n;
674 u16 phys_proc_id = TO_PHYS_ID(cpu);
676 mutex_lock(&pdev_list_mutex);
677 list_for_each_entry_safe(p, n, &pdev_list, list) {
678 if (p->phys_proc_id != phys_proc_id)
679 continue;
680 platform_device_unregister(p->pdev);
681 list_del(&p->list);
682 kfree(p);
684 mutex_unlock(&pdev_list_mutex);
687 static bool is_any_core_online(struct platform_data *pdata)
689 int i;
691 /* Find online cores, except pkgtemp data */
692 for (i = MAX_CORE_DATA - 1; i >= 0; --i) {
693 if (pdata->core_data[i] &&
694 !pdata->core_data[i]->is_pkg_data) {
695 return true;
698 return false;
701 static void __cpuinit get_core_online(unsigned int cpu)
703 struct cpuinfo_x86 *c = &cpu_data(cpu);
704 struct platform_device *pdev = coretemp_get_pdev(cpu);
705 int err;
708 * CPUID.06H.EAX[0] indicates whether the CPU has thermal
709 * sensors. We check this bit only, all the early CPUs
710 * without thermal sensors will be filtered out.
712 if (!cpu_has(c, X86_FEATURE_DTS))
713 return;
715 if (!pdev) {
717 * Alright, we have DTS support.
718 * We are bringing the _first_ core in this pkg
719 * online. So, initialize per-pkg data structures and
720 * then bring this core online.
722 err = coretemp_device_add(cpu);
723 if (err)
724 return;
726 * Check whether pkgtemp support is available.
727 * If so, add interfaces for pkgtemp.
729 if (cpu_has(c, X86_FEATURE_PTS))
730 coretemp_add_core(cpu, 1);
733 * Physical CPU device already exists.
734 * So, just add interfaces for this core.
736 coretemp_add_core(cpu, 0);
739 static void __cpuinit put_core_offline(unsigned int cpu)
741 int i, indx;
742 struct platform_data *pdata;
743 struct platform_device *pdev = coretemp_get_pdev(cpu);
745 /* If the physical CPU device does not exist, just return */
746 if (!pdev)
747 return;
749 pdata = platform_get_drvdata(pdev);
750 if (!pdata)
751 return;
753 indx = TO_ATTR_NO(cpu);
755 if (pdata->core_data[indx] && pdata->core_data[indx]->cpu == cpu)
756 coretemp_remove_core(pdata, &pdev->dev, indx);
759 * If a HT sibling of a core is taken offline, but another HT sibling
760 * of the same core is still online, register the alternate sibling.
761 * This ensures that exactly one set of attributes is provided as long
762 * as at least one HT sibling of a core is online.
764 for_each_sibling(i, cpu) {
765 if (i != cpu) {
766 get_core_online(i);
768 * Display temperature sensor data for one HT sibling
769 * per core only, so abort the loop after one such
770 * sibling has been found.
772 break;
776 * If all cores in this pkg are offline, remove the device.
777 * coretemp_device_remove calls unregister_platform_device,
778 * which in turn calls coretemp_remove. This removes the
779 * pkgtemp entry and does other clean ups.
781 if (!is_any_core_online(pdata))
782 coretemp_device_remove(cpu);
785 static int __cpuinit coretemp_cpu_callback(struct notifier_block *nfb,
786 unsigned long action, void *hcpu)
788 unsigned int cpu = (unsigned long) hcpu;
790 switch (action) {
791 case CPU_ONLINE:
792 case CPU_DOWN_FAILED:
793 get_core_online(cpu);
794 break;
795 case CPU_DOWN_PREPARE:
796 put_core_offline(cpu);
797 break;
799 return NOTIFY_OK;
802 static struct notifier_block coretemp_cpu_notifier __refdata = {
803 .notifier_call = coretemp_cpu_callback,
806 static int __init coretemp_init(void)
808 int i, err = -ENODEV;
810 /* quick check if we run Intel */
811 if (cpu_data(0).x86_vendor != X86_VENDOR_INTEL)
812 goto exit;
814 err = platform_driver_register(&coretemp_driver);
815 if (err)
816 goto exit;
818 for_each_online_cpu(i)
819 get_core_online(i);
821 #ifndef CONFIG_HOTPLUG_CPU
822 if (list_empty(&pdev_list)) {
823 err = -ENODEV;
824 goto exit_driver_unreg;
826 #endif
828 register_hotcpu_notifier(&coretemp_cpu_notifier);
829 return 0;
831 #ifndef CONFIG_HOTPLUG_CPU
832 exit_driver_unreg:
833 platform_driver_unregister(&coretemp_driver);
834 #endif
835 exit:
836 return err;
839 static void __exit coretemp_exit(void)
841 struct pdev_entry *p, *n;
843 unregister_hotcpu_notifier(&coretemp_cpu_notifier);
844 mutex_lock(&pdev_list_mutex);
845 list_for_each_entry_safe(p, n, &pdev_list, list) {
846 platform_device_unregister(p->pdev);
847 list_del(&p->list);
848 kfree(p);
850 mutex_unlock(&pdev_list_mutex);
851 platform_driver_unregister(&coretemp_driver);
854 MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
855 MODULE_DESCRIPTION("Intel Core temperature monitor");
856 MODULE_LICENSE("GPL");
858 module_init(coretemp_init)
859 module_exit(coretemp_exit)