aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeth Heasley <seth.heasley@intel.com>2013-06-19 20:04:25 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-13 16:48:03 -0500
commit090f74fcaa3d2488978001f6bf83031a2e69ff25 (patch)
treec4e8d736c90418b335a6aa7d739a1997719d4baf
parentb4760389e5d8ae0a75c8d0fcbd38927c5c61d0b5 (diff)
mfd: lpc_ich: iTCO_wdt patch for Intel Coleto Creek DeviceIDs
commit 283aae8ab88e695a660c610d6535ca44bc5b8835 upstream. This patch adds the LPC Controller DeviceIDs for iTCO Watchdog for the Intel Coleto Creek PCH. Signed-off-by: Seth Heasley <seth.heasley@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Cc: "Chan, Wei Sern" <wei.sern.chan@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/mfd/lpc_ich.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
index 330cd44771be..4be5be34194f 100644
--- a/drivers/mfd/lpc_ich.c
+++ b/drivers/mfd/lpc_ich.c
@@ -52,6 +52,7 @@
52 * document number TBD : Lynx Point-LP 52 * document number TBD : Lynx Point-LP
53 * document number TBD : Wellsburg 53 * document number TBD : Wellsburg
54 * document number TBD : Avoton SoC 54 * document number TBD : Avoton SoC
55 * document number TBD : Coleto Creek
55 */ 56 */
56 57
57#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 58#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
@@ -209,6 +210,7 @@ enum lpc_chipsets {
209 LPC_LPT_LP, /* Lynx Point-LP */ 210 LPC_LPT_LP, /* Lynx Point-LP */
210 LPC_WBG, /* Wellsburg */ 211 LPC_WBG, /* Wellsburg */
211 LPC_AVN, /* Avoton SoC */ 212 LPC_AVN, /* Avoton SoC */
213 LPC_COLETO, /* Coleto Creek */
212}; 214};
213 215
214struct lpc_ich_info lpc_chipset_info[] = { 216struct lpc_ich_info lpc_chipset_info[] = {
@@ -497,6 +499,10 @@ struct lpc_ich_info lpc_chipset_info[] = {
497 .name = "Avoton SoC", 499 .name = "Avoton SoC",
498 .iTCO_version = 1, 500 .iTCO_version = 1,
499 }, 501 },
502 [LPC_COLETO] = {
503 .name = "Coleto Creek",
504 .iTCO_version = 2,
505 },
500}; 506};
501 507
502/* 508/*
@@ -714,6 +720,7 @@ static DEFINE_PCI_DEVICE_TABLE(lpc_ich_ids) = {
714 { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN}, 720 { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN},
715 { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN}, 721 { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN},
716 { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN}, 722 { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN},
723 { PCI_VDEVICE(INTEL, 0x2390), LPC_COLETO},
717 { 0, }, /* End of list */ 724 { 0, }, /* End of list */
718}; 725};
719MODULE_DEVICE_TABLE(pci, lpc_ich_ids); 726MODULE_DEVICE_TABLE(pci, lpc_ich_ids);