aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/lpc_ich.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mfd/lpc_ich.c')
-rw-r--r--drivers/mfd/lpc_ich.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
index 7d8482ff5868..f35d4280b2f7 100644
--- a/drivers/mfd/lpc_ich.c
+++ b/drivers/mfd/lpc_ich.c
@@ -54,6 +54,7 @@
54 * document number TBD : Avoton SoC 54 * document number TBD : Avoton SoC
55 * document number TBD : Coleto Creek 55 * document number TBD : Coleto Creek
56 * document number TBD : Wildcat Point-LP 56 * document number TBD : Wildcat Point-LP
57 * document number TBD : 9 Series
57 */ 58 */
58 59
59#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 60#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
@@ -216,6 +217,8 @@ enum lpc_chipsets {
216 LPC_BAYTRAIL, /* Bay Trail SoC */ 217 LPC_BAYTRAIL, /* Bay Trail SoC */
217 LPC_COLETO, /* Coleto Creek */ 218 LPC_COLETO, /* Coleto Creek */
218 LPC_WPT_LP, /* Wildcat Point-LP */ 219 LPC_WPT_LP, /* Wildcat Point-LP */
220 LPC_BRASWELL, /* Braswell SoC */
221 LPC_9S, /* 9 Series */
219}; 222};
220 223
221static struct lpc_ich_info lpc_chipset_info[] = { 224static struct lpc_ich_info lpc_chipset_info[] = {
@@ -519,6 +522,14 @@ static struct lpc_ich_info lpc_chipset_info[] = {
519 .name = "Wildcat Point_LP", 522 .name = "Wildcat Point_LP",
520 .iTCO_version = 2, 523 .iTCO_version = 2,
521 }, 524 },
525 [LPC_BRASWELL] = {
526 .name = "Braswell SoC",
527 .iTCO_version = 3,
528 },
529 [LPC_9S] = {
530 .name = "9 Series",
531 .iTCO_version = 2,
532 },
522}; 533};
523 534
524/* 535/*
@@ -745,6 +756,12 @@ static const struct pci_device_id lpc_ich_ids[] = {
745 { PCI_VDEVICE(INTEL, 0x9cc6), LPC_WPT_LP}, 756 { PCI_VDEVICE(INTEL, 0x9cc6), LPC_WPT_LP},
746 { PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP}, 757 { PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP},
747 { PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP}, 758 { PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP},
759 { PCI_VDEVICE(INTEL, 0x229c), LPC_BRASWELL},
760 { PCI_VDEVICE(INTEL, 0x8cc1), LPC_9S},
761 { PCI_VDEVICE(INTEL, 0x8cc2), LPC_9S},
762 { PCI_VDEVICE(INTEL, 0x8cc3), LPC_9S},
763 { PCI_VDEVICE(INTEL, 0x8cc4), LPC_9S},
764 { PCI_VDEVICE(INTEL, 0x8cc6), LPC_9S},
748 { 0, }, /* End of list */ 765 { 0, }, /* End of list */
749}; 766};
750MODULE_DEVICE_TABLE(pci, lpc_ich_ids); 767MODULE_DEVICE_TABLE(pci, lpc_ich_ids);