cba62c8b49
This patch chain add audio support for SC7180 soc by doing the required modification in existing common lpass-cpu/lpass-platform driver. This also fixes some concurrency issue. This patch series is already tested by Srinivas on Dragon Board 410c. Changes since v5: - Fixed remove api in lpass-sc7180.c - Addressed comments by Rob in yaml Documentation. Ajit Pandey (4): ASoC: qcom: Add common array to initialize soc based core clocks ASoC: qcom: lpass-platform: Replace card->dev with component->dev include: dt-bindings: sound: Add sc7180-lpass bindings header ASoC: qcom: lpass-sc7180: Add platform driver for lpass audio Rohit kumar (8): ASoC: qcom: lpass-cpu: Move ahbix clk to platform specific function ASoC: qcom: lpass-platform: fix memory leak ASoC: qcom: lpass: Use regmap_field for i2sctl and dmactl registers ASoC: qcom: lpass-cpu: fix concurrency issue dt-bindings: sound: lpass-cpu: Add sc7180 lpass cpu node ASoC: qcom: lpass-cpu: Use platform_get_resource ASoC: qcom: lpass-platform: Use platform_get_irq dt-bindings: sound: lpass-cpu: Move to yaml format .../devicetree/bindings/sound/qcom,lpass-cpu.txt | 79 -------- .../devicetree/bindings/sound/qcom,lpass-cpu.yaml | 189 ++++++++++++++++++ include/dt-bindings/sound/sc7180-lpass.h | 10 + sound/soc/qcom/Kconfig | 5 + sound/soc/qcom/Makefile | 2 + sound/soc/qcom/lpass-apq8016.c | 86 ++++++-- sound/soc/qcom/lpass-cpu.c | 204 ++++++++++--------- sound/soc/qcom/lpass-ipq806x.c | 67 +++++++ sound/soc/qcom/lpass-lpaif-reg.h | 157 ++++++++------- sound/soc/qcom/lpass-platform.c | 155 +++++++++++---- sound/soc/qcom/lpass-sc7180.c | 216 +++++++++++++++++++++ sound/soc/qcom/lpass.h | 63 +++++- 12 files changed, 934 insertions(+), 299 deletions(-) delete mode 100644 Documentation/devicetree/bindings/sound/qcom,lpass-cpu.txt create mode 100644 Documentation/devicetree/bindings/sound/qcom,lpass-cpu.yaml create mode 100644 include/dt-bindings/sound/sc7180-lpass.h create mode 100644 sound/soc/qcom/lpass-sc7180.c -- Qualcomm India Private Limited, on behalf of Qualcomm Innovation Center, Inc., is a member of Code Aurora Forum, a Linux Foundation Collaborative Project.
120 lines
2.7 KiB
Plaintext
120 lines
2.7 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menuconfig SND_SOC_QCOM
|
|
tristate "ASoC support for QCOM platforms"
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
help
|
|
Say Y or M if you want to add support to use audio devices
|
|
in Qualcomm Technologies SOC-based platforms.
|
|
|
|
if SND_SOC_QCOM
|
|
|
|
config SND_SOC_LPASS_CPU
|
|
tristate
|
|
select REGMAP_MMIO
|
|
|
|
config SND_SOC_LPASS_PLATFORM
|
|
tristate
|
|
select REGMAP_MMIO
|
|
|
|
config SND_SOC_LPASS_IPQ806X
|
|
tristate
|
|
select SND_SOC_LPASS_CPU
|
|
select SND_SOC_LPASS_PLATFORM
|
|
|
|
config SND_SOC_LPASS_APQ8016
|
|
tristate
|
|
select SND_SOC_LPASS_CPU
|
|
select SND_SOC_LPASS_PLATFORM
|
|
|
|
config SND_SOC_LPASS_SC7180
|
|
tristate
|
|
select SND_SOC_LPASS_CPU
|
|
select SND_SOC_LPASS_PLATFORM
|
|
|
|
config SND_SOC_STORM
|
|
tristate "ASoC I2S support for Storm boards"
|
|
select SND_SOC_LPASS_IPQ806X
|
|
select SND_SOC_MAX98357A
|
|
help
|
|
Say Y or M if you want add support for SoC audio on the
|
|
Qualcomm Technologies IPQ806X-based Storm board.
|
|
|
|
config SND_SOC_APQ8016_SBC
|
|
tristate "SoC Audio support for APQ8016 SBC platforms"
|
|
select SND_SOC_LPASS_APQ8016
|
|
select SND_SOC_QCOM_COMMON
|
|
help
|
|
Support for Qualcomm Technologies LPASS audio block in
|
|
APQ8016 SOC-based systems.
|
|
Say Y if you want to use audio devices on MI2S.
|
|
|
|
config SND_SOC_QCOM_COMMON
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_COMMON
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_CORE
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_AFE
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_AFE_DAI
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_ADM
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_ROUTING
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_ASM
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6_ASM_DAI
|
|
select SND_SOC_COMPRESS
|
|
tristate
|
|
|
|
config SND_SOC_QDSP6
|
|
tristate "SoC ALSA audio driver for QDSP6"
|
|
depends on QCOM_APR
|
|
select SND_SOC_QDSP6_COMMON
|
|
select SND_SOC_QDSP6_CORE
|
|
select SND_SOC_QDSP6_AFE
|
|
select SND_SOC_QDSP6_AFE_DAI
|
|
select SND_SOC_QDSP6_ADM
|
|
select SND_SOC_QDSP6_ROUTING
|
|
select SND_SOC_QDSP6_ASM
|
|
select SND_SOC_QDSP6_ASM_DAI
|
|
help
|
|
To add support for MSM QDSP6 Soc Audio.
|
|
This will enable sound soc platform specific
|
|
audio drivers. This includes q6asm, q6adm,
|
|
q6afe interfaces to DSP using apr.
|
|
|
|
config SND_SOC_MSM8996
|
|
tristate "SoC Machine driver for MSM8996 and APQ8096 boards"
|
|
depends on QCOM_APR
|
|
select SND_SOC_QDSP6
|
|
select SND_SOC_QCOM_COMMON
|
|
help
|
|
Support for Qualcomm Technologies LPASS audio block in
|
|
APQ8096 SoC-based systems.
|
|
Say Y if you want to use audio device on this SoCs
|
|
|
|
config SND_SOC_SDM845
|
|
tristate "SoC Machine driver for SDM845 boards"
|
|
depends on QCOM_APR && I2C && SOUNDWIRE
|
|
select SND_SOC_QDSP6
|
|
select SND_SOC_QCOM_COMMON
|
|
select SND_SOC_RT5663
|
|
select SND_SOC_MAX98927
|
|
imply SND_SOC_CROS_EC_CODEC
|
|
help
|
|
To add support for audio on Qualcomm Technologies Inc.
|
|
SDM845 SoC-based systems.
|
|
Say Y if you want to use audio device on this SoCs.
|
|
|
|
endif #SND_SOC_QCOM
|