diff mbox series

[SRU,OEM-6.0,11/14] ASoC: amd: create platform device for acp6.2 machine driver

Message ID 20220914051633.20418-12-hui.wang@canonical.com
State New
Headers show
Series AMD ACP 6.2 DMIC support | expand

Commit Message

Hui Wang Sept. 14, 2022, 5:16 a.m. UTC
From: Syed Saba Kareem <Syed.SabaKareem@amd.com>

BugLink: https://bugs.launchpad.net/bugs/1989518

Create platform device for acp6.2 machine driver.

Signed-off-by: Syed Saba Kareem <Syed.SabaKareem@amd.com>
Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
Link: https://lore.kernel.org/r/20220827165657.2343818-12-Syed.SabaKareem@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 76dd567591c89f92dea97b581988538312ae584f linux-next)
Signed-off-by: Hui Wang <hui.wang@canonical.com>
---
 sound/soc/amd/ps/acp62.h  | 2 +-
 sound/soc/amd/ps/pci-ps.c | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/sound/soc/amd/ps/acp62.h b/sound/soc/amd/ps/acp62.h
index 2ee53fcd33e9..8b30aefa4cd0 100644
--- a/sound/soc/amd/ps/acp62.h
+++ b/sound/soc/amd/ps/acp62.h
@@ -10,7 +10,7 @@ 
 #define ACP_DEVICE_ID 0x15E2
 #define ACP6x_REG_START		0x1240000
 #define ACP6x_REG_END		0x1250200
-#define ACP6x_DEVS		2
+#define ACP6x_DEVS		3
 #define ACP6x_PDM_MODE		1
 
 #define ACP_SOFT_RESET_SOFTRESET_AUDDONE_MASK	0x00010001
diff --git a/sound/soc/amd/ps/pci-ps.c b/sound/soc/amd/ps/pci-ps.c
index 075d9a23205d..dff2e2376bbf 100644
--- a/sound/soc/amd/ps/pci-ps.c
+++ b/sound/soc/amd/ps/pci-ps.c
@@ -233,6 +233,10 @@  static int snd_acp62_probe(struct pci_dev *pci,
 			pdevinfo[1].id = 0;
 			pdevinfo[1].parent = &pci->dev;
 
+			pdevinfo[2].name = "acp_ps_mach";
+			pdevinfo[2].id = 0;
+			pdevinfo[2].parent = &pci->dev;
+
 			for (index = 0; index < ACP6x_DEVS; index++) {
 				adata->pdev[index] =
 					platform_device_register_full(&pdevinfo[index]);