Commit 283aae8ab88e695a660c610d6535ca44bc5b8835
Committed by
Samuel Ortiz
1 parent
89ce43fbbc
Exists in
smarc-imx_3.14.28_1.0.0_ga
and in
1 other branch
mfd: lpc_ich: iTCO_wdt patch for Intel Coleto Creek DeviceIDs
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>
Showing 1 changed file with 7 additions and 0 deletions Side-by-side Diff
drivers/mfd/lpc_ich.c
... | ... | @@ -52,6 +52,7 @@ |
52 | 52 | * document number TBD : Lynx Point-LP |
53 | 53 | * document number TBD : Wellsburg |
54 | 54 | * document number TBD : Avoton SoC |
55 | + * document number TBD : Coleto Creek | |
55 | 56 | */ |
56 | 57 | |
57 | 58 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
... | ... | @@ -209,6 +210,7 @@ |
209 | 210 | LPC_LPT_LP, /* Lynx Point-LP */ |
210 | 211 | LPC_WBG, /* Wellsburg */ |
211 | 212 | LPC_AVN, /* Avoton SoC */ |
213 | + LPC_COLETO, /* Coleto Creek */ | |
212 | 214 | }; |
213 | 215 | |
214 | 216 | struct lpc_ich_info lpc_chipset_info[] = { |
... | ... | @@ -497,6 +499,10 @@ |
497 | 499 | .name = "Avoton SoC", |
498 | 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 @@ |
714 | 720 | { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN}, |
715 | 721 | { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN}, |
716 | 722 | { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN}, |
723 | + { PCI_VDEVICE(INTEL, 0x2390), LPC_COLETO}, | |
717 | 724 | { 0, }, /* End of list */ |
718 | 725 | }; |
719 | 726 | MODULE_DEVICE_TABLE(pci, lpc_ich_ids); |