Skip to content

Commit

Permalink
ASoC: SOF: amd: Add pci revision id check
Browse files Browse the repository at this point in the history
[ Upstream commit 1d4a846 ]

Add pci revision id check for renoir and rembrandt platforms.

Signed-off-by: Venkata Prasad Potturu <venkataprasad.potturu@amd.com>
Link: https://lore.kernel.org/r/20230523072009.2379198-1-venkataprasad.potturu@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Venkata-Prasad-Potturu authored and gregkh committed Aug 23, 2023
1 parent a740b0c commit 7235fb8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sound/soc/sof/amd/acp.h
Expand Up @@ -55,6 +55,9 @@

#define ACP_DSP_TO_HOST_IRQ 0x04

#define ACP_RN_PCI_ID 0x01
#define ACP_RMB_PCI_ID 0x6F

#define HOST_BRIDGE_CZN 0x1630
#define HOST_BRIDGE_RMB 0x14B5
#define ACP_SHA_STAT 0x8000
Expand Down
3 changes: 3 additions & 0 deletions sound/soc/sof/amd/pci-rmb.c
Expand Up @@ -65,6 +65,9 @@ static int acp_pci_rmb_probe(struct pci_dev *pci, const struct pci_device_id *pc
{
unsigned int flag;

if (pci->revision != ACP_RMB_PCI_ID)
return -ENODEV;

flag = snd_amd_acp_find_config(pci);
if (flag != FLAG_AMD_SOF && flag != FLAG_AMD_SOF_ONLY_DMIC)
return -ENODEV;
Expand Down
3 changes: 3 additions & 0 deletions sound/soc/sof/amd/pci-rn.c
Expand Up @@ -65,6 +65,9 @@ static int acp_pci_rn_probe(struct pci_dev *pci, const struct pci_device_id *pci
{
unsigned int flag;

if (pci->revision != ACP_RN_PCI_ID)
return -ENODEV;

flag = snd_amd_acp_find_config(pci);
if (flag != FLAG_AMD_SOF && flag != FLAG_AMD_SOF_ONLY_DMIC)
return -ENODEV;
Expand Down

0 comments on commit 7235fb8

Please sign in to comment.