misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support
authorSiddharth Vadapalli <s-vadapalli@ti.com>
Fri, 20 Oct 2023 12:02:48 +0000 (17:32 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Oct 2023 11:17:30 +0000 (13:17 +0200)
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 <s-vadapalli@ti.com>
Cc: stable <stable@kernel.org>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Link: https://lore.kernel.org/r/20231020120248.3168406-1-s-vadapalli@ti.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/pci_endpoint_test.c

index ed4d0ef5e5c3193b22cd65f1377ca7a922459e17..7e1acc68d43595f2d9de3e2d2b83a5b94d40eb10 100644 (file)
@@ -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);