[PATCH v2] scsi: ufs: ufs-pci: Add AMD device ID support

Rajeshkumar Sambandham posted 1 patch 5 days, 16 hours ago
drivers/ufs/host/ufshcd-pci.c | 1 +
1 file changed, 1 insertion(+)
[PATCH v2] scsi: ufs: ufs-pci: Add AMD device ID support
Posted by Rajeshkumar Sambandham 5 days, 16 hours ago
Add PCI device ID 0x1022:0x1B29 for AMD UFS controllers.

Signed-off-by: Rajeshkumar Sambandham <Rajeshkumar.Sambandham@amd.com>
---

v2:
 - Use PCI_VDEVICE to match other entries in the ufshcd_pci_tbl array.

 drivers/ufs/host/ufshcd-pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/ufs/host/ufshcd-pci.c b/drivers/ufs/host/ufshcd-pci.c
index 13293e83064c..f2433879b0eb 100644
--- a/drivers/ufs/host/ufshcd-pci.c
+++ b/drivers/ufs/host/ufshcd-pci.c
@@ -694,6 +694,7 @@ static const struct pci_device_id ufshcd_pci_tbl[] = {
 	{ PCI_VDEVICE(INTEL, 0xE447), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
 	{ PCI_VDEVICE(INTEL, 0x4D47), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
 	{ PCI_VDEVICE(INTEL, 0xD335), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
+	{ PCI_VDEVICE(AMD, 0x1B29), .driver_data = 0 },
 	{ }	/* terminate list */
 };
 
-- 
2.34.1
Re: [PATCH v2] scsi: ufs: ufs-pci: Add AMD device ID support
Posted by Adrian Hunter 5 days, 15 hours ago
On 02/06/2026 12:59, Rajeshkumar Sambandham wrote:
> Add PCI device ID 0x1022:0x1B29 for AMD UFS controllers.
> 
> Signed-off-by: Rajeshkumar Sambandham <Rajeshkumar.Sambandham@amd.com>

Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
> 
> v2:
>  - Use PCI_VDEVICE to match other entries in the ufshcd_pci_tbl array.
> 
>  drivers/ufs/host/ufshcd-pci.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/ufs/host/ufshcd-pci.c b/drivers/ufs/host/ufshcd-pci.c
> index 13293e83064c..f2433879b0eb 100644
> --- a/drivers/ufs/host/ufshcd-pci.c
> +++ b/drivers/ufs/host/ufshcd-pci.c
> @@ -694,6 +694,7 @@ static const struct pci_device_id ufshcd_pci_tbl[] = {
>  	{ PCI_VDEVICE(INTEL, 0xE447), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
>  	{ PCI_VDEVICE(INTEL, 0x4D47), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
>  	{ PCI_VDEVICE(INTEL, 0xD335), .driver_data = (kernel_ulong_t)&ufs_intel_mtl_hba_vops },
> +	{ PCI_VDEVICE(AMD, 0x1B29), .driver_data = 0 },
>  	{ }	/* terminate list */
>  };
>