All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform
@ 2020-12-22 16:03 Muhammad Husaini Zulkifli
  2020-12-23 20:13 ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Muhammad Husaini Zulkifli @ 2020-12-22 16:03 UTC (permalink / raw)
  To: davem, peppe.cavallaro, alexandre.torgue, joabreu, kuba, netdev
  Cc: noor.azura.ahmad.tarmizi, weifeng.voon

From: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>

Add TGL-H PCI info and PCI IDs for the new TSN Controller to the list
of supported devices.

Signed-off-by: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>
Signed-off-by: Voon Weifeng <weifeng.voon@intel.com>
Signed-off-by: Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
index 55dbb1a930da..d3608db576f7 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
@@ -723,6 +723,8 @@ static SIMPLE_DEV_PM_OPS(intel_eth_pm_ops, intel_eth_pci_suspend,
 #define PCI_DEVICE_ID_INTEL_EHL_PSE1_RGMII1G_ID		0x4bb0
 #define PCI_DEVICE_ID_INTEL_EHL_PSE1_SGMII1G_ID		0x4bb1
 #define PCI_DEVICE_ID_INTEL_EHL_PSE1_SGMII2G5_ID	0x4bb2
+#define PCI_DEVICE_ID_INTEL_TGLH_SGMII1G_0_ID		0x43ac
+#define PCI_DEVICE_ID_INTEL_TGLH_SGMII1G_1_ID		0x43a2
 #define PCI_DEVICE_ID_INTEL_TGL_SGMII1G_ID		0xa0ac
 
 static const struct pci_device_id intel_eth_pci_id_table[] = {
@@ -737,6 +739,8 @@ static const struct pci_device_id intel_eth_pci_id_table[] = {
 	{ PCI_DEVICE_DATA(INTEL, EHL_PSE1_SGMII1G_ID, &ehl_pse1_sgmii1g_info) },
 	{ PCI_DEVICE_DATA(INTEL, EHL_PSE1_SGMII2G5_ID, &ehl_pse1_sgmii1g_info) },
 	{ PCI_DEVICE_DATA(INTEL, TGL_SGMII1G_ID, &tgl_sgmii1g_info) },
+	{ PCI_DEVICE_DATA(INTEL, TGLH_SGMII1G_0_ID, &tgl_sgmii1g_info) },
+	{ PCI_DEVICE_DATA(INTEL, TGLH_SGMII1G_1_ID, &tgl_sgmii1g_info) },
 	{}
 };
 MODULE_DEVICE_TABLE(pci, intel_eth_pci_id_table);
-- 
2.17.1


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

* Re: [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform
  2020-12-22 16:03 [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform Muhammad Husaini Zulkifli
@ 2020-12-23 20:13 ` Jakub Kicinski
  2020-12-24  1:23   ` Wong, Vee Khee
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2020-12-23 20:13 UTC (permalink / raw)
  To: Muhammad Husaini Zulkifli
  Cc: davem, peppe.cavallaro, alexandre.torgue, joabreu, netdev,
	noor.azura.ahmad.tarmizi, weifeng.voon

On Wed, 23 Dec 2020 00:03:37 +0800 Muhammad Husaini Zulkifli wrote:
> From: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>
> 
> Add TGL-H PCI info and PCI IDs for the new TSN Controller to the list
> of supported devices.
> 
> Signed-off-by: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>
> Signed-off-by: Voon Weifeng <weifeng.voon@intel.com>
> Signed-off-by: Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>

Applied, thanks. Are these needed in the 5.10 LTS branch?

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

* RE: [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform
  2020-12-23 20:13 ` Jakub Kicinski
@ 2020-12-24  1:23   ` Wong, Vee Khee
  2020-12-24  1:42     ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Wong, Vee Khee @ 2020-12-24  1:23 UTC (permalink / raw)
  To: Jakub Kicinski, Zulkifli, Muhammad Husaini
  Cc: davem, peppe.cavallaro, alexandre.torgue, joabreu, netdev,
	Ahmad Tarmizi, Noor Azura, Voon, Weifeng



> -----Original Message-----
> From: Jakub Kicinski <kuba@kernel.org>
> Sent: Thursday, December 24, 2020 4:14 AM
> To: Zulkifli, Muhammad Husaini <muhammad.husaini.zulkifli@intel.com>
> Cc: davem@davemloft.net; peppe.cavallaro@st.com;
> alexandre.torgue@st.com; joabreu@synopsys.com;
> netdev@vger.kernel.org; Ahmad Tarmizi, Noor Azura
> <noor.azura.ahmad.tarmizi@intel.com>; Voon, Weifeng
> <weifeng.voon@intel.com>
> Subject: Re: [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H
> platform
> 
> On Wed, 23 Dec 2020 00:03:37 +0800 Muhammad Husaini Zulkifli wrote:
> > From: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>
> >
> > Add TGL-H PCI info and PCI IDs for the new TSN Controller to the list
> > of supported devices.
> >
> > Signed-off-by: Noor Azura Ahmad Tarmizi
> <noor.azura.ahmad.tarmizi@intel.com>
> > Signed-off-by: Voon Weifeng <weifeng.voon@intel.com>
> > Signed-off-by: Muhammad Husaini Zulkifli
> <muhammad.husaini.zulkifli@intel.com>
> 
> Applied, thanks. Are these needed in the 5.10 LTS branch?

Yes, these are needed in the 5.10 LTS branch.

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

* Re: [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform
  2020-12-24  1:23   ` Wong, Vee Khee
@ 2020-12-24  1:42     ` Jakub Kicinski
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2020-12-24  1:42 UTC (permalink / raw)
  To: Wong, Vee Khee
  Cc: Zulkifli, Muhammad Husaini, davem, peppe.cavallaro,
	alexandre.torgue, joabreu, netdev, Ahmad Tarmizi, Noor Azura,
	Voon, Weifeng

On Thu, 24 Dec 2020 01:23:25 +0000 Wong, Vee Khee wrote:
> > On Wed, 23 Dec 2020 00:03:37 +0800 Muhammad Husaini Zulkifli wrote:  
> > > From: Noor Azura Ahmad Tarmizi <noor.azura.ahmad.tarmizi@intel.com>
> > >
> > > Add TGL-H PCI info and PCI IDs for the new TSN Controller to the list
> > > of supported devices.
> > >
> > > Signed-off-by: Noor Azura Ahmad Tarmizi  
> > <noor.azura.ahmad.tarmizi@intel.com>  
> > > Signed-off-by: Voon Weifeng <weifeng.voon@intel.com>
> > > Signed-off-by: Muhammad Husaini Zulkifli  
> > <muhammad.husaini.zulkifli@intel.com>
> > 
> > Applied, thanks. Are these needed in the 5.10 LTS branch?  
> 
> Yes, these are needed in the 5.10 LTS branch.

Okay, queued.

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

end of thread, other threads:[~2020-12-24  1:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-22 16:03 [PATCH net-next v1] stmmac: intel: Add PCI IDs for TGL-H platform Muhammad Husaini Zulkifli
2020-12-23 20:13 ` Jakub Kicinski
2020-12-24  1:23   ` Wong, Vee Khee
2020-12-24  1:42     ` Jakub Kicinski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.