All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Fenghua Yu" <fenghua.yu@intel.com>
To: Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>,
	H Peter Anvin <hpa@zytor.com>, Len Brown <lenb@kernel.org>,
	Guenter Roeck <guenter.roeck@ericsson.com>,
	Chen Gong <gong.chen@linux.intel.com>,
	Jean Delvare <khali@linux-fr.org>,
	Huaxu Wan <huaxu.wan@intel.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	lm-sensors <lm-sensors@lm-sensors.org>,
	Fenghua Yu <fenghua.yu@intel.com>
Subject: [lm-sensors] [PATCH V3 0/5] Package Level Thermal Control and Power
Date: Fri, 30 Jul 2010 00:13:41 +0000	[thread overview]
Message-ID: <1280448826-12004-1-git-send-email-fenghua.yu@intel.com> (raw)

From: Fenghua Yu <fenghua.yu@intel.com>

The new MSRs PACKAGE_THERM_STATUS and PACKAGE_THERM_INTERRUPT and power limit
notification are published in Intel 64 and IA32 SDM and first implemented on
Intel Sandy Bridge platform. The following patch set supports the new features
in Linux kernel. 

Fenghua Yu (5):
  Package Level Thermal Control and Power Limit Notification: enable
    features
  Package Level Thermal Control and Power Limit Notification: pkgtemp
    hwmon driver
  Package Level Thermal Control and Power Limit Notification: thermal
    throttling handler
  Package Level Thermal Control and Power Limit Notification: power
    limit
  Package Level Thermal Control and Power Limit Notification: pkgtemp
    doc

 Documentation/hwmon/pkgtemp                |   36 +++
 arch/x86/configs/i386_defconfig            |    1 +
 arch/x86/configs/x86_64_defconfig          |    1 +
 arch/x86/include/asm/cpufeature.h          |    2 +
 arch/x86/include/asm/msr-index.h           |   17 +-
 arch/x86/kernel/cpu/addon_cpuid_features.c |    2 +
 arch/x86/kernel/cpu/mcheck/therm_throt.c   |  206 ++++++++++---
 drivers/hwmon/Kconfig                      |    7 +
 drivers/hwmon/Makefile                     |    1 +
 drivers/hwmon/pkgtemp.c                    |  456 ++++++++++++++++++++++++++++
 10 files changed, 688 insertions(+), 41 deletions(-)
 create mode 100644 Documentation/hwmon/pkgtemp
 create mode 100644 drivers/hwmon/pkgtemp.c


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

WARNING: multiple messages have this Message-ID (diff)
From: "Fenghua Yu" <fenghua.yu@intel.com>
To: "Ingo Molnar" <mingo@elte.hu>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"H Peter Anvin" <hpa@zytor.com>, "Len Brown" <lenb@kernel.org>,
	"Guenter Roeck" <guenter.roeck@ericsson.com>,
	"Chen Gong" <gong.chen@linux.intel.com>,
	"Jean Delvare" <khali@linux-fr.org>,
	"Huaxu Wan" <huaxu.wan@intel.com>
Cc: "linux-kernel" <linux-kernel@vger.kernel.org>,
	"lm-sensors" <lm-sensors@lm-sensors.org>,
	Fenghua Yu <fenghua.yu@intel.com>
Subject: [PATCH V3 0/5] Package Level Thermal Control and Power Limit Notification
Date: Thu, 29 Jul 2010 17:13:41 -0700	[thread overview]
Message-ID: <1280448826-12004-1-git-send-email-fenghua.yu@intel.com> (raw)

From: Fenghua Yu <fenghua.yu@intel.com>

The new MSRs PACKAGE_THERM_STATUS and PACKAGE_THERM_INTERRUPT and power limit
notification are published in Intel 64 and IA32 SDM and first implemented on
Intel Sandy Bridge platform. The following patch set supports the new features
in Linux kernel. 

Fenghua Yu (5):
  Package Level Thermal Control and Power Limit Notification: enable
    features
  Package Level Thermal Control and Power Limit Notification: pkgtemp
    hwmon driver
  Package Level Thermal Control and Power Limit Notification: thermal
    throttling handler
  Package Level Thermal Control and Power Limit Notification: power
    limit
  Package Level Thermal Control and Power Limit Notification: pkgtemp
    doc

 Documentation/hwmon/pkgtemp                |   36 +++
 arch/x86/configs/i386_defconfig            |    1 +
 arch/x86/configs/x86_64_defconfig          |    1 +
 arch/x86/include/asm/cpufeature.h          |    2 +
 arch/x86/include/asm/msr-index.h           |   17 +-
 arch/x86/kernel/cpu/addon_cpuid_features.c |    2 +
 arch/x86/kernel/cpu/mcheck/therm_throt.c   |  206 ++++++++++---
 drivers/hwmon/Kconfig                      |    7 +
 drivers/hwmon/Makefile                     |    1 +
 drivers/hwmon/pkgtemp.c                    |  456 ++++++++++++++++++++++++++++
 10 files changed, 688 insertions(+), 41 deletions(-)
 create mode 100644 Documentation/hwmon/pkgtemp
 create mode 100644 drivers/hwmon/pkgtemp.c


             reply	other threads:[~2010-07-30  0:13 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-30  0:13 Fenghua Yu [this message]
2010-07-30  0:13 ` [PATCH V3 0/5] Package Level Thermal Control and Power Limit Notification Fenghua Yu
2010-07-30  0:13 ` [lm-sensors] [PATCH V3 1/5] Package Level Thermal Control and Power Fenghua Yu
2010-07-30  0:13   ` [PATCH V3 1/5] Package Level Thermal Control and Power Limit Notification: enable features Fenghua Yu
2010-07-30 23:33   ` [tip:x86/cpu] x86, cpu: Package Level Thermal Control, Power Limit Notification definitions tip-bot for Fenghua Yu
2010-07-30  0:13 ` [lm-sensors] [PATCH V3 2/5] Package Level Thermal Control and Power Fenghua Yu
2010-07-30  0:13   ` [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver Fenghua Yu
2010-07-31  0:57   ` [lm-sensors] [PATCH V3 2/5] Package Level Thermal Control and H. Peter Anvin
2010-07-31  0:57     ` [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver H. Peter Anvin
2010-07-31  1:13     ` [lm-sensors] [PATCH V3 2/5] Package Level Thermal Control and Guenter Roeck
2010-07-31  1:13       ` [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver Guenter Roeck
2010-07-31  3:04       ` [lm-sensors] [PATCH V3 2/5] Package Level Thermal Control and H. Peter Anvin
2010-07-31  3:04         ` [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver H. Peter Anvin
2010-07-31  2:22     ` [lm-sensors] [PATCH V3 2/5] Package Level Thermal Control and Fenghua Yu
2010-07-31  2:22       ` [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver Fenghua Yu
2010-07-30  0:13 ` [lm-sensors] [PATCH V3 3/5] Package Level Thermal Control and Power Fenghua Yu
2010-07-30  0:13   ` [PATCH V3 3/5] Package Level Thermal Control and Power Limit Notification: thermal throttling handler Fenghua Yu
2010-08-04  0:01   ` [tip:x86/hwmon] x86, hwmon: Package Level Thermal/Power: " tip-bot for Fenghua Yu
2010-07-30  0:13 ` [lm-sensors] [PATCH V3 4/5] Package Level Thermal Control and Power Fenghua Yu
2010-07-30  0:13   ` [PATCH V3 4/5] Package Level Thermal Control and Power Limit Notification: power limit Fenghua Yu
2010-08-04  0:01   ` [tip:x86/hwmon] x86, hwmon: Package Level Thermal/Power: " tip-bot for Fenghua Yu
2010-07-30  0:13 ` [lm-sensors] [PATCH V3 5/5] Package Level Thermal Control and Power Fenghua Yu
2010-07-30  0:13   ` [PATCH V3 5/5] Package Level Thermal Control and Power Limit Notification: pkgtemp doc Fenghua Yu
2010-08-04  0:01   ` [tip:x86/hwmon] x86, hwmon: Package Level Thermal/Power: pkgtemp documentation tip-bot for Fenghua Yu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1280448826-12004-1-git-send-email-fenghua.yu@intel.com \
    --to=fenghua.yu@intel.com \
    --cc=gong.chen@linux.intel.com \
    --cc=guenter.roeck@ericsson.com \
    --cc=hpa@zytor.com \
    --cc=huaxu.wan@intel.com \
    --cc=khali@linux-fr.org \
    --cc=lenb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lm-sensors@lm-sensors.org \
    --cc=mingo@elte.hu \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.