-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge series "Add Yellow Carp platform ASoC driver" from Vijendar Muk…
…unda <Vijendar.Mukunda@amd.com>: Yellow Carp platform is new APU series based on acp6.x design. This patch set adds an ASoC driver for the ACP (Audio CoProcessor) block on AMD Yellow Carp APU with DMIC endpoint support. changes since v1: - fixed SPDX commenting style in acp6x pci driver. - fixed Copyright commenting style in acp6x pci driver, pdm dma driver and machine driver files. - fixed local variable check logic in acp6x_power_on() function. - fixed Kconfig indentation issue - removed irq_flag local variable in irq handler. - add dmi info check in machine driver probe Vijendar Mukunda (13): ASoC: amd: add Yellow Carp ACP6x IP register header ASoC: amd: add Yellow Carp ACP PCI driver ASoC: amd: add acp6x init/de-init functions ASoC: amd: add platform devices for acp6x pdm driver and dmic driver ASoC: amd: add acp6x pdm platform driver ASoC: amd: add acp6x irq handler ASoC: amd: add acp6x pdm driver dma ops ASoC: amd: add acp6x pci driver pm ops ASoC: amd: add acp6x pdm driver pm ops ASoC: amd: enable Yellow carp acp6x drivers build ASoC: amd: create platform device for acp6x machine driver ASoC: amd: add YC machine driver using dmic ASoC: amd: enable Yellow Carp platform machine driver build sound/soc/amd/Kconfig | 21 + sound/soc/amd/Makefile | 1 + sound/soc/amd/yc/Makefile | 9 + sound/soc/amd/yc/acp6x-mach.c | 194 ++++++++++ sound/soc/amd/yc/acp6x-pdm-dma.c | 448 ++++++++++++++++++++++ sound/soc/amd/yc/acp6x.h | 107 ++++++ sound/soc/amd/yc/acp6x_chip_offset_byte.h | 444 +++++++++++++++++++++ sound/soc/amd/yc/pci-acp6x.c | 338 ++++++++++++++++ 8 files changed, 1562 insertions(+) create mode 100644 sound/soc/amd/yc/Makefile create mode 100644 sound/soc/amd/yc/acp6x-mach.c create mode 100644 sound/soc/amd/yc/acp6x-pdm-dma.c create mode 100644 sound/soc/amd/yc/acp6x.h create mode 100644 sound/soc/amd/yc/acp6x_chip_offset_byte.h create mode 100644 sound/soc/amd/yc/pci-acp6x.c -- 2.25.1
- Loading branch information
Showing
8 changed files
with
1,562 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SPDX-License-Identifier: GPL-2.0+ | ||
# Yellow Carp platform Support | ||
snd-pci-acp6x-objs := pci-acp6x.o | ||
snd-acp6x-pdm-dma-objs := acp6x-pdm-dma.o | ||
snd-soc-acp6x-mach-objs := acp6x-mach.o | ||
|
||
obj-$(CONFIG_SND_SOC_AMD_ACP6x) += snd-pci-acp6x.o | ||
obj-$(CONFIG_SND_SOC_AMD_ACP6x) += snd-acp6x-pdm-dma.o | ||
obj-$(CONFIG_SND_SOC_AMD_YC_MACH) += snd-soc-acp6x-mach.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Machine driver for AMD Yellow Carp platform using DMIC | ||
* | ||
* Copyright 2021 Advanced Micro Devices, Inc. | ||
*/ | ||
|
||
#include <sound/soc.h> | ||
#include <sound/soc-dapm.h> | ||
#include <linux/module.h> | ||
#include <sound/pcm.h> | ||
#include <sound/pcm_params.h> | ||
#include <linux/io.h> | ||
#include <linux/dmi.h> | ||
|
||
#include "acp6x.h" | ||
|
||
#define DRV_NAME "acp_yc_mach" | ||
|
||
SND_SOC_DAILINK_DEF(acp6x_pdm, | ||
DAILINK_COMP_ARRAY(COMP_CPU("acp_yc_pdm_dma.0"))); | ||
|
||
SND_SOC_DAILINK_DEF(dmic_codec, | ||
DAILINK_COMP_ARRAY(COMP_CODEC("dmic-codec.0", | ||
"dmic-hifi"))); | ||
|
||
SND_SOC_DAILINK_DEF(pdm_platform, | ||
DAILINK_COMP_ARRAY(COMP_PLATFORM("acp_yc_pdm_dma.0"))); | ||
|
||
static struct snd_soc_dai_link acp6x_dai_pdm[] = { | ||
{ | ||
.name = "acp6x-dmic-capture", | ||
.stream_name = "DMIC capture", | ||
.capture_only = 1, | ||
SND_SOC_DAILINK_REG(acp6x_pdm, dmic_codec, pdm_platform), | ||
}, | ||
}; | ||
|
||
static struct snd_soc_card acp6x_card = { | ||
.name = "acp6x", | ||
.owner = THIS_MODULE, | ||
.dai_link = acp6x_dai_pdm, | ||
.num_links = 1, | ||
}; | ||
|
||
static const struct dmi_system_id yc_acp_quirk_table[] = { | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D2"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D3"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D4"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D5"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CF"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CG"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CQ"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CR"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21AW"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21AX"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21BN"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21BQ"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CH"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CJ"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CK"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21CL"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D8"), | ||
} | ||
}, | ||
{ | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "21D9"), | ||
} | ||
}, | ||
{} | ||
}; | ||
|
||
static int acp6x_probe(struct platform_device *pdev) | ||
{ | ||
struct acp6x_pdm *machine = NULL; | ||
struct snd_soc_card *card; | ||
int ret; | ||
const struct dmi_system_id *dmi_id; | ||
|
||
dmi_id = dmi_first_match(yc_acp_quirk_table); | ||
if (!dmi_id) | ||
return -ENODEV; | ||
card = &acp6x_card; | ||
acp6x_card.dev = &pdev->dev; | ||
|
||
platform_set_drvdata(pdev, card); | ||
snd_soc_card_set_drvdata(card, machine); | ||
ret = devm_snd_soc_register_card(&pdev->dev, card); | ||
if (ret) { | ||
return dev_err_probe(&pdev->dev, ret, | ||
"snd_soc_register_card(%s) failed\n", | ||
card->name); | ||
} | ||
return 0; | ||
} | ||
|
||
static struct platform_driver acp6x_mach_driver = { | ||
.driver = { | ||
.name = "acp_yc_mach", | ||
.pm = &snd_soc_pm_ops, | ||
}, | ||
.probe = acp6x_probe, | ||
}; | ||
|
||
module_platform_driver(acp6x_mach_driver); | ||
|
||
MODULE_AUTHOR("Vijendar.Mukunda@amd.com"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_ALIAS("platform:" DRV_NAME); |
Oops, something went wrong.