]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: amd: acp: Add i2s master clock generation support for acp7.1 platform
authorVenkata Prasad Potturu <venkataprasad.potturu@amd.com>
Tue, 3 Sep 2024 11:34:26 +0000 (17:04 +0530)
committerMark Brown <broonie@kernel.org>
Tue, 3 Sep 2024 11:57:49 +0000 (12:57 +0100)
Add i2s master generation support for acp7.1 platform based on pci device
id.

Signed-off-by: Venkata Prasad Potturu <venkataprasad.potturu@amd.com>
Link: https://patch.msgid.link/20240903113427.182997-12-venkataprasad.potturu@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/amd/acp/acp70.c

index 3b3bd15964fcd5f619e7136c3f59c1ad063cec93..1b0b59a229249aa9bcc2310c2bceb689d39c1d67 100644 (file)
@@ -140,8 +140,17 @@ static struct snd_soc_dai_driver acp70_dai[] = {
 static int acp70_i2s_master_clock_generate(struct acp_dev_data *adata)
 {
        struct pci_dev *smn_dev;
+       u32 device_id;
+
+       if (adata->platform == ACP70)
+               device_id = 0x1507;
+       else if (adata->platform == ACP71)
+               device_id = 0x1122;
+       else
+               return -ENODEV;
+
+       smn_dev = pci_get_device(PCI_VENDOR_ID_AMD, device_id, NULL);
 
-       smn_dev = pci_get_device(PCI_VENDOR_ID_AMD, 0x1507, NULL);
        if (!smn_dev)
                return -ENODEV;