diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2014-03-10 17:34:58 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-19 05:00:05 -0400 |
commit | 6111ec70357022ccd037399c13f69900431850b4 (patch) | |
tree | 576143aa6cac64c0d68f802bc0a580195e42b22c | |
parent | 117bbfe25cfc2e968be1f7976ac460a5cd3d734e (diff) |
mfd: lpc_ich: Add support for Intel Bay Trail SoC
This patch adds the LPC Controller Device IDs for Watchdog and GPIO for
the Intel Bay Trail Atom SoC.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/lpc_ich.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c index 2f657c7472b2..3f10ea3f45d1 100644 --- a/drivers/mfd/lpc_ich.c +++ b/drivers/mfd/lpc_ich.c | |||
@@ -213,6 +213,7 @@ enum lpc_chipsets { | |||
213 | LPC_LPT_LP, /* Lynx Point-LP */ | 213 | LPC_LPT_LP, /* Lynx Point-LP */ |
214 | LPC_WBG, /* Wellsburg */ | 214 | LPC_WBG, /* Wellsburg */ |
215 | LPC_AVN, /* Avoton SoC */ | 215 | LPC_AVN, /* Avoton SoC */ |
216 | LPC_BAYTRAIL, /* Bay Trail SoC */ | ||
216 | LPC_COLETO, /* Coleto Creek */ | 217 | LPC_COLETO, /* Coleto Creek */ |
217 | LPC_WPT_LP, /* Wildcat Point-LP */ | 218 | LPC_WPT_LP, /* Wildcat Point-LP */ |
218 | }; | 219 | }; |
@@ -505,6 +506,10 @@ static struct lpc_ich_info lpc_chipset_info[] = { | |||
505 | .iTCO_version = 3, | 506 | .iTCO_version = 3, |
506 | .gpio_version = AVOTON_GPIO, | 507 | .gpio_version = AVOTON_GPIO, |
507 | }, | 508 | }, |
509 | [LPC_BAYTRAIL] = { | ||
510 | .name = "Bay Trail SoC", | ||
511 | .iTCO_version = 3, | ||
512 | }, | ||
508 | [LPC_COLETO] = { | 513 | [LPC_COLETO] = { |
509 | .name = "Coleto Creek", | 514 | .name = "Coleto Creek", |
510 | .iTCO_version = 2, | 515 | .iTCO_version = 2, |
@@ -730,6 +735,7 @@ static const struct pci_device_id lpc_ich_ids[] = { | |||
730 | { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN}, | 735 | { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN}, |
731 | { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN}, | 736 | { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN}, |
732 | { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN}, | 737 | { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN}, |
738 | { PCI_VDEVICE(INTEL, 0x0f1c), LPC_BAYTRAIL}, | ||
733 | { PCI_VDEVICE(INTEL, 0x2390), LPC_COLETO}, | 739 | { PCI_VDEVICE(INTEL, 0x2390), LPC_COLETO}, |
734 | { PCI_VDEVICE(INTEL, 0x9cc1), LPC_WPT_LP}, | 740 | { PCI_VDEVICE(INTEL, 0x9cc1), LPC_WPT_LP}, |
735 | { PCI_VDEVICE(INTEL, 0x9cc2), LPC_WPT_LP}, | 741 | { PCI_VDEVICE(INTEL, 0x9cc2), LPC_WPT_LP}, |