Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: lpc_ich: Add Device IDs for Intel 9 Series PCH

This patch adds the LPC Device IDs for the Intel 9 Series PCH.

Signed-off-by: James Ralston <james.d.ralston@intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

James Ralston and committed by
Lee Jones
fea31042 a0bc6072

+11
+11
drivers/mfd/lpc_ich.c
··· 54 54 * document number TBD : Avoton SoC 55 55 * document number TBD : Coleto Creek 56 56 * document number TBD : Wildcat Point-LP 57 + * document number TBD : 9 Series 57 58 */ 58 59 59 60 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt ··· 218 217 LPC_COLETO, /* Coleto Creek */ 219 218 LPC_WPT_LP, /* Wildcat Point-LP */ 220 219 LPC_BRASWELL, /* Braswell SoC */ 220 + LPC_9S, /* 9 Series */ 221 221 }; 222 222 223 223 static struct lpc_ich_info lpc_chipset_info[] = { ··· 526 524 .name = "Braswell SoC", 527 525 .iTCO_version = 3, 528 526 }, 527 + [LPC_9S] = { 528 + .name = "9 Series", 529 + .iTCO_version = 2, 530 + }, 529 531 }; 530 532 531 533 /* ··· 757 751 { PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP}, 758 752 { PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP}, 759 753 { PCI_VDEVICE(INTEL, 0x229c), LPC_BRASWELL}, 754 + { PCI_VDEVICE(INTEL, 0x8cc1), LPC_9S}, 755 + { PCI_VDEVICE(INTEL, 0x8cc2), LPC_9S}, 756 + { PCI_VDEVICE(INTEL, 0x8cc3), LPC_9S}, 757 + { PCI_VDEVICE(INTEL, 0x8cc4), LPC_9S}, 758 + { PCI_VDEVICE(INTEL, 0x8cc6), LPC_9S}, 760 759 { 0, }, /* End of list */ 761 760 }; 762 761 MODULE_DEVICE_TABLE(pci, lpc_ich_ids);