diff mbox series

usb: dwc3: pci: add support for the Intel Arrow Lake-H

Message ID 20240112143723.3823787-1-heikki.krogerus@linux.intel.com (mailing list archive)
State Superseded
Headers show
Series usb: dwc3: pci: add support for the Intel Arrow Lake-H | expand

Commit Message

Heikki Krogerus Jan. 12, 2024, 2:37 p.m. UTC
This patch adds the necessary PCI ID for Intel Arrow Lake-H
devices.

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: stable@vger.kernel.org
---
 drivers/usb/dwc3/dwc3-pci.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Thinh Nguyen Jan. 13, 2024, 1:39 a.m. UTC | #1
On Fri, Jan 12, 2024, Heikki Krogerus wrote:
> This patch adds the necessary PCI ID for Intel Arrow Lake-H
> devices.
> 
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Cc: stable@vger.kernel.org
> ---
>  drivers/usb/dwc3/dwc3-pci.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
> index 6604845c397c..39564e17f3b0 100644
> --- a/drivers/usb/dwc3/dwc3-pci.c
> +++ b/drivers/usb/dwc3/dwc3-pci.c
> @@ -51,6 +51,8 @@
>  #define PCI_DEVICE_ID_INTEL_MTLP		0x7ec1
>  #define PCI_DEVICE_ID_INTEL_MTLS		0x7f6f
>  #define PCI_DEVICE_ID_INTEL_MTL			0x7e7e
> +#define PCI_DEVICE_ID_INTEL_ARLH		0x7ec1
> +#define PCI_DEVICE_ID_INTEL_ARLH_PCH		0x777e
>  #define PCI_DEVICE_ID_INTEL_TGL			0x9a15
>  #define PCI_DEVICE_ID_AMD_MR			0x163a
>  
> @@ -421,6 +423,8 @@ static const struct pci_device_id dwc3_pci_id_table[] = {
>  	{ PCI_DEVICE_DATA(INTEL, MTLP, &dwc3_pci_intel_swnode) },
>  	{ PCI_DEVICE_DATA(INTEL, MTL, &dwc3_pci_intel_swnode) },
>  	{ PCI_DEVICE_DATA(INTEL, MTLS, &dwc3_pci_intel_swnode) },
> +	{ PCI_DEVICE_DATA(INTEL, ARLH, &dwc3_pci_intel_swnode) },
> +	{ PCI_DEVICE_DATA(INTEL, ARLH_PCH, &dwc3_pci_intel_swnode) },
>  	{ PCI_DEVICE_DATA(INTEL, TGL, &dwc3_pci_intel_swnode) },
>  
>  	{ PCI_DEVICE_DATA(AMD, NL_USB, &dwc3_pci_amd_swnode) },
> -- 
> 2.43.0
> 

Can you send a "v2" and a change log under the --- line next time?

Regardless whether you'd send a v2:

Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>

Thanks,
Thinh
Heikki Krogerus Jan. 15, 2024, 7:41 a.m. UTC | #2
On Sat, Jan 13, 2024 at 01:39:22AM +0000, Thinh Nguyen wrote:
> On Fri, Jan 12, 2024, Heikki Krogerus wrote:
> > This patch adds the necessary PCI ID for Intel Arrow Lake-H
> > devices.
> > 
> > Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> > Cc: stable@vger.kernel.org
> > ---
> >  drivers/usb/dwc3/dwc3-pci.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
> > index 6604845c397c..39564e17f3b0 100644
> > --- a/drivers/usb/dwc3/dwc3-pci.c
> > +++ b/drivers/usb/dwc3/dwc3-pci.c
> > @@ -51,6 +51,8 @@
> >  #define PCI_DEVICE_ID_INTEL_MTLP		0x7ec1
> >  #define PCI_DEVICE_ID_INTEL_MTLS		0x7f6f
> >  #define PCI_DEVICE_ID_INTEL_MTL			0x7e7e
> > +#define PCI_DEVICE_ID_INTEL_ARLH		0x7ec1
> > +#define PCI_DEVICE_ID_INTEL_ARLH_PCH		0x777e
> >  #define PCI_DEVICE_ID_INTEL_TGL			0x9a15
> >  #define PCI_DEVICE_ID_AMD_MR			0x163a
> >  
> > @@ -421,6 +423,8 @@ static const struct pci_device_id dwc3_pci_id_table[] = {
> >  	{ PCI_DEVICE_DATA(INTEL, MTLP, &dwc3_pci_intel_swnode) },
> >  	{ PCI_DEVICE_DATA(INTEL, MTL, &dwc3_pci_intel_swnode) },
> >  	{ PCI_DEVICE_DATA(INTEL, MTLS, &dwc3_pci_intel_swnode) },
> > +	{ PCI_DEVICE_DATA(INTEL, ARLH, &dwc3_pci_intel_swnode) },
> > +	{ PCI_DEVICE_DATA(INTEL, ARLH_PCH, &dwc3_pci_intel_swnode) },
> >  	{ PCI_DEVICE_DATA(INTEL, TGL, &dwc3_pci_intel_swnode) },
> >  
> >  	{ PCI_DEVICE_DATA(AMD, NL_USB, &dwc3_pci_amd_swnode) },
> > -- 
> > 2.43.0
> > 
> 
> Can you send a "v2" and a change log under the --- line next time?
> 
> Regardless whether you'd send a v2:
> 
> Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>

Yes, sorry about that. I'll send v3.
diff mbox series

Patch

diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
index 6604845c397c..39564e17f3b0 100644
--- a/drivers/usb/dwc3/dwc3-pci.c
+++ b/drivers/usb/dwc3/dwc3-pci.c
@@ -51,6 +51,8 @@ 
 #define PCI_DEVICE_ID_INTEL_MTLP		0x7ec1
 #define PCI_DEVICE_ID_INTEL_MTLS		0x7f6f
 #define PCI_DEVICE_ID_INTEL_MTL			0x7e7e
+#define PCI_DEVICE_ID_INTEL_ARLH		0x7ec1
+#define PCI_DEVICE_ID_INTEL_ARLH_PCH		0x777e
 #define PCI_DEVICE_ID_INTEL_TGL			0x9a15
 #define PCI_DEVICE_ID_AMD_MR			0x163a
 
@@ -421,6 +423,8 @@  static const struct pci_device_id dwc3_pci_id_table[] = {
 	{ PCI_DEVICE_DATA(INTEL, MTLP, &dwc3_pci_intel_swnode) },
 	{ PCI_DEVICE_DATA(INTEL, MTL, &dwc3_pci_intel_swnode) },
 	{ PCI_DEVICE_DATA(INTEL, MTLS, &dwc3_pci_intel_swnode) },
+	{ PCI_DEVICE_DATA(INTEL, ARLH, &dwc3_pci_intel_swnode) },
+	{ PCI_DEVICE_DATA(INTEL, ARLH_PCH, &dwc3_pci_intel_swnode) },
 	{ PCI_DEVICE_DATA(INTEL, TGL, &dwc3_pci_intel_swnode) },
 
 	{ PCI_DEVICE_DATA(AMD, NL_USB, &dwc3_pci_amd_swnode) },