* [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp
@ 2010-09-02 12:44 Jan Beulich
2010-09-02 21:25 ` Fenghua Yu
0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2010-09-02 12:44 UTC (permalink / raw)
To: mingo, tglx, hpa; +Cc: r.marek, fenghua.yu, lm-sensors, linux-kernel
- using cpuid_eax() to determine feature availability on other than
the current CPU is invalid
- feature availability shopuld also be check in the hotplug code path
- pkgtemp doesn't depend on PCI altogether (apparently just inherited
from coretemp)
- coretemp really only needs PCI for Atom support
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Rudolf Marek <r.marek@assembler.cz>
Cc: Fenghua Yu <fenghua.yu@intel.com>
---
arch/x86/include/asm/cpufeature.h | 1 +
arch/x86/kernel/cpu/scattered.c | 1 +
drivers/hwmon/Kconfig | 5 +++--
drivers/hwmon/coretemp.c | 30 ++++++++++++++----------------
drivers/hwmon/pkgtemp.c | 11 +++--------
5 files changed, 22 insertions(+), 26 deletions(-)
--- linux-2.6.36-rc3/arch/x86/include/asm/cpufeature.h
+++ 2.6.36-rc3-x86-hwmon/arch/x86/include/asm/cpufeature.h
@@ -168,6 +168,7 @@
#define X86_FEATURE_XSAVEOPT (7*32+ 4) /* Optimized Xsave */
#define X86_FEATURE_PLN (7*32+ 5) /* Intel Power Limit Notification */
#define X86_FEATURE_PTS (7*32+ 6) /* Intel Package Thermal Status */
+#define X86_FEATURE_DTS (7*32+31) /* Digital Thermal Sensor */
/* Virtualization flags: Linux defined, word 8 */
#define X86_FEATURE_TPR_SHADOW (8*32+ 0) /* Intel TPR Shadow */
--- linux-2.6.36-rc3/arch/x86/kernel/cpu/scattered.c
+++ 2.6.36-rc3-x86-hwmon/arch/x86/kernel/cpu/scattered.c
@@ -31,6 +31,7 @@ void __cpuinit init_scattered_cpuid_feat
const struct cpuid_bit *cb;
static const struct cpuid_bit __cpuinitconst cpuid_bits[] = {
+ { X86_FEATURE_DTS, CR_EAX, 0, 0x00000006, 0 },
{ X86_FEATURE_IDA, CR_EAX, 1, 0x00000006, 0 },
{ X86_FEATURE_ARAT, CR_EAX, 2, 0x00000006, 0 },
{ X86_FEATURE_PLN, CR_EAX, 4, 0x00000006, 0 },
--- linux-2.6.36-rc3/drivers/hwmon/Kconfig
+++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/Kconfig
@@ -401,7 +401,8 @@ config SENSORS_GL520SM
config SENSORS_CORETEMP
tristate "Intel Core/Core2/Atom temperature sensor"
- depends on X86 && PCI && EXPERIMENTAL
+ depends on X86 && EXPERIMENTAL
+ depends on PCI || (!MATOM && !GENERIC_CPU && !X86_GENERIC)
help
If you say yes here you get support for the temperature
sensor inside your CPU. Most of the family 6 CPUs
@@ -409,7 +410,7 @@ config SENSORS_CORETEMP
config SENSORS_PKGTEMP
tristate "Intel processor package temperature sensor"
- depends on X86 && PCI && EXPERIMENTAL
+ depends on X86 && EXPERIMENTAL
help
If you say yes here you get support for the package level temperature
sensor inside your CPU. Check documentation/driver for details.
--- linux-2.6.36-rc3/drivers/hwmon/coretemp.c
+++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/coretemp.c
@@ -423,9 +423,18 @@ static int __cpuinit coretemp_device_add
int err;
struct platform_device *pdev;
struct pdev_entry *pdev_entry;
-#ifdef CONFIG_SMP
struct cpuinfo_x86 *c = &cpu_data(cpu);
-#endif
+
+ /*
+ * 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 (!cpu_has(c, X86_FEATURE_DTS)) {
+ printk(KERN_INFO DRVNAME ": CPU (model=0x%x)"
+ " has no thermal sensor.\n", c->x86_model);
+ return 0;
+ }
mutex_lock(&pdev_list_mutex);
@@ -527,20 +536,9 @@ static int __init coretemp_init(void)
if (err)
goto exit;
- for_each_online_cpu(i) {
- struct cpuinfo_x86 *c = &cpu_data(i);
- /*
- * 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 (c->cpuid_level >= 6 && (cpuid_eax(0x06) & 0x01))
- coretemp_device_add(i);
- else {
- printk(KERN_INFO DRVNAME ": CPU (model=0x%x)"
- " has no thermal sensor.\n", c->x86_model);
- }
- }
+ for_each_online_cpu(i)
+ coretemp_device_add(i);
+
if (list_empty(&pdev_list)) {
err = -ENODEV;
goto exit_driver_unreg;
--- linux-2.6.36-rc3/drivers/hwmon/pkgtemp.c
+++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/pkgtemp.c
@@ -33,7 +33,6 @@
#include <linux/list.h>
#include <linux/platform_device.h>
#include <linux/cpu.h>
-#include <linux/pci.h>
#include <asm/msr.h>
#include <asm/processor.h>
@@ -281,9 +280,10 @@ static int __cpuinit pkgtemp_device_add(
int err;
struct platform_device *pdev;
struct pdev_entry *pdev_entry;
-#ifdef CONFIG_SMP
struct cpuinfo_x86 *c = &cpu_data(cpu);
-#endif
+
+ if (!cpu_has(c, X86_FEATURE_PTS))
+ return 0;
mutex_lock(&pdev_list_mutex);
@@ -399,11 +399,6 @@ static int __init pkgtemp_init(void)
goto exit;
for_each_online_cpu(i) {
- struct cpuinfo_x86 *c = &cpu_data(i);
-
- if (!cpu_has(c, X86_FEATURE_PTS))
- continue;
-
err = pkgtemp_device_add(i);
if (err)
goto exit_devices_unreg;
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp
2010-09-02 12:44 [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp Jan Beulich
@ 2010-09-02 21:25 ` Fenghua Yu
2010-09-03 7:08 ` Jan Beulich
2010-09-07 8:03 ` [lm-sensors] " Jean Delvare
0 siblings, 2 replies; 4+ messages in thread
From: Fenghua Yu @ 2010-09-02 21:25 UTC (permalink / raw)
To: Jan Beulich
Cc: mingo@elte.hu, tglx@linutronix.de, hpa@zytor.com,
r.marek@assembler.cz, Yu, Fenghua, lm-sensors@lm-sensors.org,
linux-kernel@vger.kernel.org
On Thu, Sep 02, 2010 at 05:44:07AM -0700, Jan Beulich wrote:
> - using cpuid_eax() to determine feature availability on other than
> the current CPU is invalid
> - feature availability shopuld also be check in the hotplug code path
> - pkgtemp doesn't depend on PCI altogether (apparently just inherited
> from coretemp)
> - coretemp really only needs PCI for Atom support
>
Could you split the patch into small patches since it handles a few different
things?
> Signed-off-by: Jan Beulich <jbeulich@novell.com>
> Cc: Rudolf Marek <r.marek@assembler.cz>
> Cc: Fenghua Yu <fenghua.yu@intel.com>
>
> ---
> arch/x86/include/asm/cpufeature.h | 1 +
> arch/x86/kernel/cpu/scattered.c | 1 +
> drivers/hwmon/Kconfig | 5 +++--
> drivers/hwmon/coretemp.c | 30 ++++++++++++++----------------
> drivers/hwmon/pkgtemp.c | 11 +++--------
> 5 files changed, 22 insertions(+), 26 deletions(-)
>
> --- linux-2.6.36-rc3/arch/x86/include/asm/cpufeature.h
> +++ 2.6.36-rc3-x86-hwmon/arch/x86/include/asm/cpufeature.h
> @@ -168,6 +168,7 @@
> #define X86_FEATURE_XSAVEOPT (7*32+ 4) /* Optimized Xsave */
> #define X86_FEATURE_PLN (7*32+ 5) /* Intel Power Limit Notification */
> #define X86_FEATURE_PTS (7*32+ 6) /* Intel Package Thermal Status */
> +#define X86_FEATURE_DTS (7*32+31) /* Digital Thermal Sensor */
Is there any paticular reason to chose 7*32+31 instead of 7*32+7?
>
> /* Virtualization flags: Linux defined, word 8 */
> #define X86_FEATURE_TPR_SHADOW (8*32+ 0) /* Intel TPR Shadow */
> --- linux-2.6.36-rc3/arch/x86/kernel/cpu/scattered.c
> +++ 2.6.36-rc3-x86-hwmon/arch/x86/kernel/cpu/scattered.c
> @@ -31,6 +31,7 @@ void __cpuinit init_scattered_cpuid_feat
> const struct cpuid_bit *cb;
>
> static const struct cpuid_bit __cpuinitconst cpuid_bits[] = {
> + { X86_FEATURE_DTS, CR_EAX, 0, 0x00000006, 0 },
> { X86_FEATURE_IDA, CR_EAX, 1, 0x00000006, 0 },
> { X86_FEATURE_ARAT, CR_EAX, 2, 0x00000006, 0 },
> { X86_FEATURE_PLN, CR_EAX, 4, 0x00000006, 0 },
> --- linux-2.6.36-rc3/drivers/hwmon/Kconfig
> +++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/Kconfig
> @@ -401,7 +401,8 @@ config SENSORS_GL520SM
>
> config SENSORS_CORETEMP
> tristate "Intel Core/Core2/Atom temperature sensor"
> - depends on X86 && PCI && EXPERIMENTAL
> + depends on X86 && EXPERIMENTAL
> + depends on PCI || (!MATOM && !GENERIC_CPU && !X86_GENERIC)
> help
> If you say yes here you get support for the temperature
> sensor inside your CPU. Most of the family 6 CPUs
> @@ -409,7 +410,7 @@ config SENSORS_CORETEMP
>
> config SENSORS_PKGTEMP
> tristate "Intel processor package temperature sensor"
> - depends on X86 && PCI && EXPERIMENTAL
> + depends on X86 && EXPERIMENTAL
> help
> If you say yes here you get support for the package level temperature
> sensor inside your CPU. Check documentation/driver for details.
> --- linux-2.6.36-rc3/drivers/hwmon/coretemp.c
> +++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/coretemp.c
> @@ -423,9 +423,18 @@ static int __cpuinit coretemp_device_add
> int err;
> struct platform_device *pdev;
> struct pdev_entry *pdev_entry;
> -#ifdef CONFIG_SMP
> struct cpuinfo_x86 *c = &cpu_data(cpu);
> -#endif
> +
> + /*
> + * 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 (!cpu_has(c, X86_FEATURE_DTS)) {
> + printk(KERN_INFO DRVNAME ": CPU (model=0x%x)"
> + " has no thermal sensor.\n", c->x86_model);
> + return 0;
Return an error (e.g. -ENODEV) could be better because there is no device for
this driver. Then caller may handle this error accordingly (no caller handles
the error currently, though).
> + }
>
> mutex_lock(&pdev_list_mutex);
>
> @@ -527,20 +536,9 @@ static int __init coretemp_init(void)
> if (err)
> goto exit;
>
> - for_each_online_cpu(i) {
> - struct cpuinfo_x86 *c = &cpu_data(i);
> - /*
> - * 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 (c->cpuid_level >= 6 && (cpuid_eax(0x06) & 0x01))
> - coretemp_device_add(i);
> - else {
> - printk(KERN_INFO DRVNAME ": CPU (model=0x%x)"
> - " has no thermal sensor.\n", c->x86_model);
> - }
> - }
> + for_each_online_cpu(i)
> + coretemp_device_add(i);
> +
> if (list_empty(&pdev_list)) {
> err = -ENODEV;
> goto exit_driver_unreg;
> --- linux-2.6.36-rc3/drivers/hwmon/pkgtemp.c
> +++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/pkgtemp.c
> @@ -33,7 +33,6 @@
> #include <linux/list.h>
> #include <linux/platform_device.h>
> #include <linux/cpu.h>
> -#include <linux/pci.h>
> #include <asm/msr.h>
> #include <asm/processor.h>
>
> @@ -281,9 +280,10 @@ static int __cpuinit pkgtemp_device_add(
> int err;
> struct platform_device *pdev;
> struct pdev_entry *pdev_entry;
> -#ifdef CONFIG_SMP
> struct cpuinfo_x86 *c = &cpu_data(cpu);
> -#endif
> +
> + if (!cpu_has(c, X86_FEATURE_PTS))
> + return 0;
Return -ENODEV could be better.
>
> mutex_lock(&pdev_list_mutex);
>
> @@ -399,11 +399,6 @@ static int __init pkgtemp_init(void)
> goto exit;
>
> for_each_online_cpu(i) {
> - struct cpuinfo_x86 *c = &cpu_data(i);
> -
> - if (!cpu_has(c, X86_FEATURE_PTS))
> - continue;
> -
> err = pkgtemp_device_add(i);
> if (err)
> goto exit_devices_unreg;
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp
2010-09-02 21:25 ` Fenghua Yu
@ 2010-09-03 7:08 ` Jan Beulich
2010-09-07 8:03 ` [lm-sensors] " Jean Delvare
1 sibling, 0 replies; 4+ messages in thread
From: Jan Beulich @ 2010-09-03 7:08 UTC (permalink / raw)
To: Fenghua Yu
Cc: r.marek@assembler.cz, mingo@elte.hu, tglx@linutronix.de,
lm-sensors@lm-sensors.org, linux-kernel@vger.kernel.org,
hpa@zytor.com
>>> On 02.09.10 at 23:25, Fenghua Yu <fenghua.yu@intel.com> wrote:
>> --- linux-2.6.36-rc3/arch/x86/include/asm/cpufeature.h
>> +++ 2.6.36-rc3-x86-hwmon/arch/x86/include/asm/cpufeature.h
>> @@ -168,6 +168,7 @@
>> #define X86_FEATURE_XSAVEOPT (7*32+ 4) /* Optimized Xsave */
>> #define X86_FEATURE_PLN (7*32+ 5) /* Intel Power Limit Notification */
>> #define X86_FEATURE_PTS (7*32+ 6) /* Intel Package Thermal Status */
>> +#define X86_FEATURE_DTS (7*32+31) /* Digital Thermal Sensor */
>
> Is there any paticular reason to chose 7*32+31 instead of 7*32+7?
Oh, right, I actually wanted to changes this before final submission
(I coded it this way locally to avoid eventual collisions until I would
get to submit this).
>> --- linux-2.6.36-rc3/drivers/hwmon/coretemp.c
>> +++ 2.6.36-rc3-x86-hwmon/drivers/hwmon/coretemp.c
>> @@ -423,9 +423,18 @@ static int __cpuinit coretemp_device_add
>> int err;
>> struct platform_device *pdev;
>> struct pdev_entry *pdev_entry;
>> -#ifdef CONFIG_SMP
>> struct cpuinfo_x86 *c = &cpu_data(cpu);
>> -#endif
>> +
>> + /*
>> + * 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 (!cpu_has(c, X86_FEATURE_DTS)) {
>> + printk(KERN_INFO DRVNAME ": CPU (model=0x%x)"
>> + " has no thermal sensor.\n", c->x86_model);
>> + return 0;
>
> Return an error (e.g. -ENODEV) could be better because there is no device for
> this driver. Then caller may handle this error accordingly (no caller
> handles
> the error currently, though).
No, the intention of the change is for the code to remain logically
the same as it was - since the failed check previously only resulted
in a message getting printed, returning an error indication
(irrespective of there not being a check at the call sites) didn't
seem right to me.
Jan
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [lm-sensors] [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp
2010-09-02 21:25 ` Fenghua Yu
2010-09-03 7:08 ` Jan Beulich
@ 2010-09-07 8:03 ` Jean Delvare
1 sibling, 0 replies; 4+ messages in thread
From: Jean Delvare @ 2010-09-07 8:03 UTC (permalink / raw)
To: Jan Beulich
Cc: Fenghua Yu, linux-kernel@vger.kernel.org,
lm-sensors@lm-sensors.org, hpa@zytor.com, mingo@elte.hu,
tglx@linutronix.de
On Thu, 2 Sep 2010 14:25:05 -0700, Fenghua Yu wrote:
> On Thu, Sep 02, 2010 at 05:44:07AM -0700, Jan Beulich wrote:
> > - using cpuid_eax() to determine feature availability on other than
> > the current CPU is invalid
> > - feature availability shopuld also be check in the hotplug code path
> > - pkgtemp doesn't depend on PCI altogether (apparently just inherited
> > from coretemp)
> > - coretemp really only needs PCI for Atom support
> >
>
> Could you split the patch into small patches since it handles a few different
> things?
I can only second this request. This should be split into per-driver
patches or per-bug patches, or even both.
Jan, can you please send updated patches? I can't apply that one as is.
Thanks.
--
Jean Delvare
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-09-07 8:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-02 12:44 [PATCH] x86/hwmon: fix configuration and initialization of coretemp and pkgtemp Jan Beulich
2010-09-02 21:25 ` Fenghua Yu
2010-09-03 7:08 ` Jan Beulich
2010-09-07 8:03 ` [lm-sensors] " Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox