2023-10-20 12:03:21

by Siddharth Vadapalli

[permalink] [raw]
Subject: [PATCH] misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support

Add DEVICE_ID for J721S2 and enable support for endpoints configured
with this DEVICE_ID in the pci_endpoint_test driver.

Signed-off-by: Siddharth Vadapalli <[email protected]>
---
drivers/misc/pci_endpoint_test.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/drivers/misc/pci_endpoint_test.c b/drivers/misc/pci_endpoint_test.c
index ed4d0ef5e5c3..7e1acc68d435 100644
--- a/drivers/misc/pci_endpoint_test.c
+++ b/drivers/misc/pci_endpoint_test.c
@@ -71,6 +71,7 @@
#define PCI_DEVICE_ID_TI_AM654 0xb00c
#define PCI_DEVICE_ID_TI_J7200 0xb00f
#define PCI_DEVICE_ID_TI_AM64 0xb010
+#define PCI_DEVICE_ID_TI_J721S2 0xb013
#define PCI_DEVICE_ID_LS1088A 0x80c0
#define PCI_DEVICE_ID_IMX8 0x0808

@@ -999,6 +1000,9 @@ static const struct pci_device_id pci_endpoint_test_tbl[] = {
{ PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_AM64),
.driver_data = (kernel_ulong_t)&j721e_data,
},
+ { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721S2),
+ .driver_data = (kernel_ulong_t)&j721e_data,
+ },
{ }
};
MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl);
--
2.34.1


2023-10-25 17:09:04

by Manivannan Sadhasivam

[permalink] [raw]
Subject: Re: [PATCH] misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support

On Fri, Oct 20, 2023 at 05:32:48PM +0530, Siddharth Vadapalli wrote:
> Add DEVICE_ID for J721S2 and enable support for endpoints configured
> with this DEVICE_ID in the pci_endpoint_test driver.
>
> Signed-off-by: Siddharth Vadapalli <[email protected]>

Reviewed-by: Manivannan Sadhasivam <[email protected]>

- Mani

> ---
> drivers/misc/pci_endpoint_test.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/misc/pci_endpoint_test.c b/drivers/misc/pci_endpoint_test.c
> index ed4d0ef5e5c3..7e1acc68d435 100644
> --- a/drivers/misc/pci_endpoint_test.c
> +++ b/drivers/misc/pci_endpoint_test.c
> @@ -71,6 +71,7 @@
> #define PCI_DEVICE_ID_TI_AM654 0xb00c
> #define PCI_DEVICE_ID_TI_J7200 0xb00f
> #define PCI_DEVICE_ID_TI_AM64 0xb010
> +#define PCI_DEVICE_ID_TI_J721S2 0xb013
> #define PCI_DEVICE_ID_LS1088A 0x80c0
> #define PCI_DEVICE_ID_IMX8 0x0808
>
> @@ -999,6 +1000,9 @@ static const struct pci_device_id pci_endpoint_test_tbl[] = {
> { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_AM64),
> .driver_data = (kernel_ulong_t)&j721e_data,
> },
> + { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721S2),
> + .driver_data = (kernel_ulong_t)&j721e_data,
> + },
> { }
> };
> MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl);
> --
> 2.34.1
>

--
மணிவண்ணன் சதாசிவம்