mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 15:41:39 +00:00
ASoC: amd: Additional DAI for I2S SP instance.
I2S SP instance has separate BCLK and LRCLK for Tx and Rx. Creating additional DAI for Rx. Signed-off-by: Ravulapati Vishnu vardhan rao <Vishnuvardhanrao.Ravulapati@amd.com> Link: https://lore.kernel.org/r/1579261510-12580-1-git-send-email-Vishnuvardhanrao.Ravulapati@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
f9f5bbf578
commit
a174a6c226
@ -13,7 +13,7 @@
|
||||
#define TDM_ENABLE 1
|
||||
#define TDM_DISABLE 0
|
||||
|
||||
#define ACP3x_DEVS 3
|
||||
#define ACP3x_DEVS 4
|
||||
#define ACP3x_PHY_BASE_ADDRESS 0x1240000
|
||||
#define ACP3x_I2S_MODE 0
|
||||
#define ACP3x_REG_START 0x1240000
|
||||
|
@ -225,7 +225,13 @@ static int snd_acp3x_probe(struct pci_dev *pci,
|
||||
pdevinfo[2].id = 1;
|
||||
pdevinfo[2].parent = &pci->dev;
|
||||
pdevinfo[2].num_res = 1;
|
||||
pdevinfo[2].res = &adata->res[2];
|
||||
pdevinfo[2].res = &adata->res[1];
|
||||
|
||||
pdevinfo[3].name = "acp3x_i2s_playcap";
|
||||
pdevinfo[3].id = 2;
|
||||
pdevinfo[3].parent = &pci->dev;
|
||||
pdevinfo[3].num_res = 1;
|
||||
pdevinfo[3].res = &adata->res[2];
|
||||
for (i = 0; i < ACP3x_DEVS; i++) {
|
||||
adata->pdev[i] =
|
||||
platform_device_register_full(&pdevinfo[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user