Linux-libre 3.0.32-gnu1
[librecmc/linux-libre.git] / drivers / hwmon / coretemp.c
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
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>
41
42 #define DRVNAME "coretemp"
43
44 #define BASE_SYSFS_ATTR_NO      2       /* Sysfs Base attr no for coretemp */
45 #define NUM_REAL_CORES          32      /* 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)
49
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)
60
61 /*
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.
72  */
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;
86 };
87
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;
94 };
95
96 struct pdev_entry {
97         struct list_head list;
98         struct platform_device *pdev;
99         u16 phys_proc_id;
100 };
101
102 static LIST_HEAD(pdev_list);
103 static DEFINE_MUTEX(pdev_list_mutex);
104
105 static ssize_t show_name(struct device *dev,
106                         struct device_attribute *devattr, char *buf)
107 {
108         return sprintf(buf, "%s\n", DRVNAME);
109 }
110
111 static ssize_t show_label(struct device *dev,
112                                 struct device_attribute *devattr, char *buf)
113 {
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];
117
118         if (tdata->is_pkg_data)
119                 return sprintf(buf, "Physical id %u\n", pdata->phys_proc_id);
120
121         return sprintf(buf, "Core %u\n", tdata->cpu_core_id);
122 }
123
124 static ssize_t show_crit_alarm(struct device *dev,
125                                 struct device_attribute *devattr, char *buf)
126 {
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];
131
132         rdmsr_on_cpu(tdata->cpu, tdata->status_reg, &eax, &edx);
133
134         return sprintf(buf, "%d\n", (eax >> 5) & 1);
135 }
136
137 static ssize_t show_tjmax(struct device *dev,
138                         struct device_attribute *devattr, char *buf)
139 {
140         struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
141         struct platform_data *pdata = dev_get_drvdata(dev);
142
143         return sprintf(buf, "%d\n", pdata->core_data[attr->index]->tjmax);
144 }
145
146 static ssize_t show_ttarget(struct device *dev,
147                                 struct device_attribute *devattr, char *buf)
148 {
149         struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
150         struct platform_data *pdata = dev_get_drvdata(dev);
151
152         return sprintf(buf, "%d\n", pdata->core_data[attr->index]->ttarget);
153 }
154
155 static ssize_t show_temp(struct device *dev,
156                         struct device_attribute *devattr, char *buf)
157 {
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];
162
163         mutex_lock(&tdata->update_lock);
164
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;
174                 }
175                 tdata->last_updated = jiffies;
176         }
177
178         mutex_unlock(&tdata->update_lock);
179         return tdata->valid ? sprintf(buf, "%d\n", tdata->temp) : -EAGAIN;
180 }
181
182 static int adjust_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
183 {
184         /* The 100C is default for both mobile and non mobile CPUs */
185
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;
192
193         /* Early chips have no MSR for TjMax */
194
195         if (c->x86_model == 0xf && c->x86_mask < 4)
196                 usemsr_ee = 0;
197
198         /* Atom CPUs */
199
200         if (c->x86_model == 0x1c) {
201                 usemsr_ee = 0;
202
203                 host_bridge = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
204
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;
211
212                 pci_dev_put(host_bridge);
213         }
214
215         if (c->x86_model > 0xe && usemsr_ee) {
216                 u8 platform_id;
217
218                 /*
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
222                  */
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)) {
230                         /*
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
234                          */
235                         usemsr_ee = 0;
236                 } else {
237                         /* Platform ID bits 52:50 (EDX starts at bit 32) */
238                         platform_id = (edx >> 18) & 0x7;
239
240                         /*
241                          * Mobile Penryn CPU seems to be platform ID 7 or 5
242                          * (guesswork)
243                          */
244                         if (c->x86_model == 0x17 &&
245                             (platform_id == 5 || platform_id == 7)) {
246                                 /*
247                                  * If MSR EE bit is set, set it to 90 degrees C,
248                                  * otherwise 105 degrees C
249                                  */
250                                 tjmax_ee = 90000;
251                                 tjmax = 105000;
252                         }
253                 }
254         }
255
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;
264                 }
265         } else if (tjmax == 100000) {
266                 /*
267                  * If we don't use msr EE it means we are desktop CPU
268                  * (with exeception of Atom)
269                  */
270                 dev_warn(dev, "Using relative temperature scale!\n");
271         }
272
273         return tjmax;
274 }
275
276 static int get_tjmax(struct cpuinfo_x86 *c, u32 id, struct device *dev)
277 {
278         /* The 100C is default for both mobile and non mobile CPUs */
279         int err;
280         u32 eax, edx;
281         u32 val;
282
283         /*
284          * A new feature of current Intel(R) processors, the
285          * IA32_TEMPERATURE_TARGET contains the TjMax value
286          */
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;
292                 /*
293                  * If the TjMax is not plausible, an assumption
294                  * will be used
295                  */
296                 if (val) {
297                         dev_info(dev, "TjMax is %d C.\n", val);
298                         return val * 1000;
299                 }
300         }
301
302         /*
303          * An assumption is made for early CPUs and unreadable MSR.
304          * NOTE: the calculated value may not be correct.
305          */
306         return adjust_tjmax(c, id, dev);
307 }
308
309 static void __devinit get_ucode_rev_on_cpu(void *edx)
310 {
311         u32 eax;
312
313         wrmsr(MSR_IA32_UCODE_REV, 0, 0);
314         sync_core();
315         rdmsr(MSR_IA32_UCODE_REV, eax, *(u32 *)edx);
316 }
317
318 static int get_pkg_tjmax(unsigned int cpu, struct device *dev)
319 {
320         int err;
321         u32 eax, edx, val;
322
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;
328         }
329         dev_warn(dev, "Unable to read Pkg-TjMax from CPU:%u\n", cpu);
330         return 100000; /* Default TjMax: 100 degree celsius */
331 }
332
333 static int create_name_attr(struct platform_data *pdata, struct device *dev)
334 {
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);
340 }
341
342 static int create_core_attrs(struct temp_data *tdata, struct device *dev,
343                                 int attr_no)
344 {
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" };
354
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;
367         }
368         return 0;
369
370 exit_free:
371         while (--i >= 0)
372                 device_remove_file(dev, &tdata->sd_attrs[i].dev_attr);
373         return err;
374 }
375
376 static void update_ttarget(__u8 cpu_model, struct temp_data *tdata,
377                                 struct device *dev)
378 {
379         int err;
380         u32 eax, edx;
381
382         /*
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
388          */
389         tdata->ttarget = tdata->tjmax - 20000;
390
391         /*
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.
395          */
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;
405                 }
406         }
407 }
408
409 static int __devinit chk_ucode_version(struct platform_device *pdev)
410 {
411         struct cpuinfo_x86 *c = &cpu_data(pdev->id);
412         int err;
413         u32 edx;
414
415         /*
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).
419          */
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;
434                 }
435         }
436         return 0;
437 }
438
439 static struct platform_device *coretemp_get_pdev(unsigned int cpu)
440 {
441         u16 phys_proc_id = TO_PHYS_ID(cpu);
442         struct pdev_entry *p;
443
444         mutex_lock(&pdev_list_mutex);
445
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;
450                 }
451
452         mutex_unlock(&pdev_list_mutex);
453         return NULL;
454 }
455
456 static struct temp_data *init_temp_data(unsigned int cpu, int pkg_flag)
457 {
458         struct temp_data *tdata;
459
460         tdata = kzalloc(sizeof(struct temp_data), GFP_KERNEL);
461         if (!tdata)
462                 return NULL;
463
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;
471 }
472
473 static int create_core_data(struct platform_data *pdata,
474                                 struct platform_device *pdev,
475                                 unsigned int cpu, int pkg_flag)
476 {
477         struct temp_data *tdata;
478         struct cpuinfo_x86 *c = &cpu_data(cpu);
479         u32 eax, edx;
480         int err, attr_no;
481
482         /*
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
487          */
488         attr_no = pkg_flag ? 1 : TO_ATTR_NO(cpu);
489
490         if (attr_no > MAX_CORE_DATA - 1)
491                 return -ERANGE;
492
493         /*
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.
499          */
500         if (pdata->core_data[attr_no] != NULL)
501                 return 0;
502
503         tdata = init_temp_data(cpu, pkg_flag);
504         if (!tdata)
505                 return -ENOMEM;
506
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;
511
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);
517
518         update_ttarget(c->x86_model, tdata, &pdev->dev);
519         pdata->core_data[attr_no] = tdata;
520
521         /* Create sysfs interfaces */
522         err = create_core_attrs(tdata, &pdev->dev, attr_no);
523         if (err)
524                 goto exit_free;
525
526         return 0;
527 exit_free:
528         kfree(tdata);
529         return err;
530 }
531
532 static void coretemp_add_core(unsigned int cpu, int pkg_flag)
533 {
534         struct platform_data *pdata;
535         struct platform_device *pdev = coretemp_get_pdev(cpu);
536         int err;
537
538         if (!pdev)
539                 return;
540
541         pdata = platform_get_drvdata(pdev);
542         if (!pdata)
543                 return;
544
545         err = create_core_data(pdata, pdev, cpu, pkg_flag);
546         if (err)
547                 dev_err(&pdev->dev, "Adding Core %u failed\n", cpu);
548 }
549
550 static void coretemp_remove_core(struct platform_data *pdata,
551                                 struct device *dev, int indx)
552 {
553         int i;
554         struct temp_data *tdata = pdata->core_data[indx];
555
556         /* Remove the sysfs attributes */
557         for (i = 0; i < MAX_ATTRS; i++)
558                 device_remove_file(dev, &tdata->sd_attrs[i].dev_attr);
559
560         kfree(pdata->core_data[indx]);
561         pdata->core_data[indx] = NULL;
562 }
563
564 static int __devinit coretemp_probe(struct platform_device *pdev)
565 {
566         struct platform_data *pdata;
567         int err;
568
569         /* Check the microcode version of the CPU */
570         err = chk_ucode_version(pdev);
571         if (err)
572                 return err;
573
574         /* Initialize the per-package data structures */
575         pdata = kzalloc(sizeof(struct platform_data), GFP_KERNEL);
576         if (!pdata)
577                 return -ENOMEM;
578
579         err = create_name_attr(pdata, &pdev->dev);
580         if (err)
581                 goto exit_free;
582
583         pdata->phys_proc_id = TO_PHYS_ID(pdev->id);
584         platform_set_drvdata(pdev, pdata);
585
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;
591         }
592         return 0;
593
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;
600 }
601
602 static int __devexit coretemp_remove(struct platform_device *pdev)
603 {
604         struct platform_data *pdata = platform_get_drvdata(pdev);
605         int i;
606
607         for (i = MAX_CORE_DATA - 1; i >= 0; --i)
608                 if (pdata->core_data[i])
609                         coretemp_remove_core(pdata, &pdev->dev, i);
610
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;
616 }
617
618 static struct platform_driver coretemp_driver = {
619         .driver = {
620                 .owner = THIS_MODULE,
621                 .name = DRVNAME,
622         },
623         .probe = coretemp_probe,
624         .remove = __devexit_p(coretemp_remove),
625 };
626
627 static int __cpuinit coretemp_device_add(unsigned int cpu)
628 {
629         int err;
630         struct platform_device *pdev;
631         struct pdev_entry *pdev_entry;
632
633         mutex_lock(&pdev_list_mutex);
634
635         pdev = platform_device_alloc(DRVNAME, cpu);
636         if (!pdev) {
637                 err = -ENOMEM;
638                 pr_err("Device allocation failed\n");
639                 goto exit;
640         }
641
642         pdev_entry = kzalloc(sizeof(struct pdev_entry), GFP_KERNEL);
643         if (!pdev_entry) {
644                 err = -ENOMEM;
645                 goto exit_device_put;
646         }
647
648         err = platform_device_add(pdev);
649         if (err) {
650                 pr_err("Device addition failed (%d)\n", err);
651                 goto exit_device_free;
652         }
653
654         pdev_entry->pdev = pdev;
655         pdev_entry->phys_proc_id = TO_PHYS_ID(cpu);
656
657         list_add_tail(&pdev_entry->list, &pdev_list);
658         mutex_unlock(&pdev_list_mutex);
659
660         return 0;
661
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;
669 }
670
671 static void coretemp_device_remove(unsigned int cpu)
672 {
673         struct pdev_entry *p, *n;
674         u16 phys_proc_id = TO_PHYS_ID(cpu);
675
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);
683         }
684         mutex_unlock(&pdev_list_mutex);
685 }
686
687 static bool is_any_core_online(struct platform_data *pdata)
688 {
689         int i;
690
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;
696                 }
697         }
698         return false;
699 }
700
701 static void __cpuinit get_core_online(unsigned int cpu)
702 {
703         struct cpuinfo_x86 *c = &cpu_data(cpu);
704         struct platform_device *pdev = coretemp_get_pdev(cpu);
705         int err;
706
707         /*
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.
711          */
712         if (!cpu_has(c, X86_FEATURE_DTS))
713                 return;
714
715         if (!pdev) {
716                 /*
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.
721                  */
722                 err = coretemp_device_add(cpu);
723                 if (err)
724                         return;
725                 /*
726                  * Check whether pkgtemp support is available.
727                  * If so, add interfaces for pkgtemp.
728                  */
729                 if (cpu_has(c, X86_FEATURE_PTS))
730                         coretemp_add_core(cpu, 1);
731         }
732         /*
733          * Physical CPU device already exists.
734          * So, just add interfaces for this core.
735          */
736         coretemp_add_core(cpu, 0);
737 }
738
739 static void __cpuinit put_core_offline(unsigned int cpu)
740 {
741         int i, indx;
742         struct platform_data *pdata;
743         struct platform_device *pdev = coretemp_get_pdev(cpu);
744
745         /* If the physical CPU device does not exist, just return */
746         if (!pdev)
747                 return;
748
749         pdata = platform_get_drvdata(pdev);
750         if (!pdata)
751                 return;
752
753         indx = TO_ATTR_NO(cpu);
754
755         /* The core id is too big, just return */
756         if (indx > MAX_CORE_DATA - 1)
757                 return;
758
759         if (pdata->core_data[indx] && pdata->core_data[indx]->cpu == cpu)
760                 coretemp_remove_core(pdata, &pdev->dev, indx);
761
762         /*
763          * If a HT sibling of a core is taken offline, but another HT sibling
764          * of the same core is still online, register the alternate sibling.
765          * This ensures that exactly one set of attributes is provided as long
766          * as at least one HT sibling of a core is online.
767          */
768         for_each_sibling(i, cpu) {
769                 if (i != cpu) {
770                         get_core_online(i);
771                         /*
772                          * Display temperature sensor data for one HT sibling
773                          * per core only, so abort the loop after one such
774                          * sibling has been found.
775                          */
776                         break;
777                 }
778         }
779         /*
780          * If all cores in this pkg are offline, remove the device.
781          * coretemp_device_remove calls unregister_platform_device,
782          * which in turn calls coretemp_remove. This removes the
783          * pkgtemp entry and does other clean ups.
784          */
785         if (!is_any_core_online(pdata))
786                 coretemp_device_remove(cpu);
787 }
788
789 static int __cpuinit coretemp_cpu_callback(struct notifier_block *nfb,
790                                  unsigned long action, void *hcpu)
791 {
792         unsigned int cpu = (unsigned long) hcpu;
793
794         switch (action) {
795         case CPU_ONLINE:
796         case CPU_DOWN_FAILED:
797                 get_core_online(cpu);
798                 break;
799         case CPU_DOWN_PREPARE:
800                 put_core_offline(cpu);
801                 break;
802         }
803         return NOTIFY_OK;
804 }
805
806 static struct notifier_block coretemp_cpu_notifier __refdata = {
807         .notifier_call = coretemp_cpu_callback,
808 };
809
810 static int __init coretemp_init(void)
811 {
812         int i, err = -ENODEV;
813
814         /* quick check if we run Intel */
815         if (cpu_data(0).x86_vendor != X86_VENDOR_INTEL)
816                 goto exit;
817
818         err = platform_driver_register(&coretemp_driver);
819         if (err)
820                 goto exit;
821
822         for_each_online_cpu(i)
823                 get_core_online(i);
824
825 #ifndef CONFIG_HOTPLUG_CPU
826         if (list_empty(&pdev_list)) {
827                 err = -ENODEV;
828                 goto exit_driver_unreg;
829         }
830 #endif
831
832         register_hotcpu_notifier(&coretemp_cpu_notifier);
833         return 0;
834
835 #ifndef CONFIG_HOTPLUG_CPU
836 exit_driver_unreg:
837         platform_driver_unregister(&coretemp_driver);
838 #endif
839 exit:
840         return err;
841 }
842
843 static void __exit coretemp_exit(void)
844 {
845         struct pdev_entry *p, *n;
846
847         unregister_hotcpu_notifier(&coretemp_cpu_notifier);
848         mutex_lock(&pdev_list_mutex);
849         list_for_each_entry_safe(p, n, &pdev_list, list) {
850                 platform_device_unregister(p->pdev);
851                 list_del(&p->list);
852                 kfree(p);
853         }
854         mutex_unlock(&pdev_list_mutex);
855         platform_driver_unregister(&coretemp_driver);
856 }
857
858 MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
859 MODULE_DESCRIPTION("Intel Core temperature monitor");
860 MODULE_LICENSE("GPL");
861
862 module_init(coretemp_init)
863 module_exit(coretemp_exit)