linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] Intel device IDs for PCH
       [not found] <[PATCH V2] Intel device IDs for PCH>
@ 2015-11-06 23:19 ` Alexandra Yates
  2015-11-11  8:26   ` Lee Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandra Yates @ 2015-11-06 23:19 UTC (permalink / raw)
  To: ptyser, sameo, lee.jones, linux-kernel; +Cc: Alexandra Yates

Adding Intel codename Lewisburg platform device IDs for PCH.

Signed-off-by: Alexandra Yates <alexandra.yates@linux.intel.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
---
 drivers/mfd/lpc_ich.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
index c5a9a08..1486033 100644
--- a/drivers/mfd/lpc_ich.c
+++ b/drivers/mfd/lpc_ich.c
@@ -55,6 +55,7 @@
  *	document number TBD : Coleto Creek
  *	document number TBD : Wildcat Point-LP
  *	document number TBD : 9 Series
+ *	document number TBD : Lewisburg
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
@@ -219,6 +220,7 @@ enum lpc_chipsets {
 	LPC_COLETO,	/* Coleto Creek */
 	LPC_WPT_LP,	/* Wildcat Point-LP */
 	LPC_BRASWELL,	/* Braswell SoC */
+	LPC_LEWISBURG,	/* Lewisburg */
 	LPC_9S,		/* 9 Series */
 };
 
@@ -527,6 +529,10 @@ static struct lpc_ich_info lpc_chipset_info[] = {
 		.name = "Braswell SoC",
 		.iTCO_version = 3,
 	},
+	[LPC_LEWISBURG] = {
+		.name = "Lewisburg",
+		.iTCO_version = 2,
+	},
 	[LPC_9S] = {
 		.name = "9 Series",
 		.iTCO_version = 2,
@@ -763,6 +769,15 @@ static const struct pci_device_id lpc_ich_ids[] = {
 	{ PCI_VDEVICE(INTEL, 0x9cc6), LPC_WPT_LP},
 	{ PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP},
 	{ PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP},
+	{ PCI_VDEVICE(INTEL, 0xa1c1), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c2), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c3), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c4), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c5), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c6), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa1c7), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa242), LPC_LEWISBURG},
+	{ PCI_VDEVICE(INTEL, 0xa243), LPC_LEWISBURG},
 	{ 0, },			/* End of list */
 };
 MODULE_DEVICE_TABLE(pci, lpc_ich_ids);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH V2] Intel device IDs for PCH
  2015-11-06 23:19 ` [PATCH V2] Intel device IDs for PCH Alexandra Yates
@ 2015-11-11  8:26   ` Lee Jones
  0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2015-11-11  8:26 UTC (permalink / raw)
  To: Alexandra Yates; +Cc: ptyser, sameo, linux-kernel

On Fri, 06 Nov 2015, Alexandra Yates wrote:

> Adding Intel codename Lewisburg platform device IDs for PCH.
> 
> Signed-off-by: Alexandra Yates <alexandra.yates@linux.intel.com>
> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
> ---
>  drivers/mfd/lpc_ich.c | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)

Applied, thanks.

> diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
> index c5a9a08..1486033 100644
> --- a/drivers/mfd/lpc_ich.c
> +++ b/drivers/mfd/lpc_ich.c
> @@ -55,6 +55,7 @@
>   *	document number TBD : Coleto Creek
>   *	document number TBD : Wildcat Point-LP
>   *	document number TBD : 9 Series
> + *	document number TBD : Lewisburg
>   */
>  
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> @@ -219,6 +220,7 @@ enum lpc_chipsets {
>  	LPC_COLETO,	/* Coleto Creek */
>  	LPC_WPT_LP,	/* Wildcat Point-LP */
>  	LPC_BRASWELL,	/* Braswell SoC */
> +	LPC_LEWISBURG,	/* Lewisburg */
>  	LPC_9S,		/* 9 Series */
>  };
>  
> @@ -527,6 +529,10 @@ static struct lpc_ich_info lpc_chipset_info[] = {
>  		.name = "Braswell SoC",
>  		.iTCO_version = 3,
>  	},
> +	[LPC_LEWISBURG] = {
> +		.name = "Lewisburg",
> +		.iTCO_version = 2,
> +	},
>  	[LPC_9S] = {
>  		.name = "9 Series",
>  		.iTCO_version = 2,
> @@ -763,6 +769,15 @@ static const struct pci_device_id lpc_ich_ids[] = {
>  	{ PCI_VDEVICE(INTEL, 0x9cc6), LPC_WPT_LP},
>  	{ PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP},
>  	{ PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP},
> +	{ PCI_VDEVICE(INTEL, 0xa1c1), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c2), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c3), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c4), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c5), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c6), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa1c7), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa242), LPC_LEWISBURG},
> +	{ PCI_VDEVICE(INTEL, 0xa243), LPC_LEWISBURG},
>  	{ 0, },			/* End of list */
>  };
>  MODULE_DEVICE_TABLE(pci, lpc_ich_ids);

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-11  8:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <[PATCH V2] Intel device IDs for PCH>
2015-11-06 23:19 ` [PATCH V2] Intel device IDs for PCH Alexandra Yates
2015-11-11  8:26   ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).