We've common ASoC cpu driver for QCOM LPASS soc varaints. This patch chain add support for new variant SC7180 soc by doing the required modification in existing common lpass-cpu driver. Below is a brief summary of patch series:
PATCH v2 0001 ... 0004: Update lpass-cpu driver and documentation to make it more generic and support newer soc registers configuration. PATCH v2 0005 ... 0007: Add documentation and platform driver for newer SC7180 SOC variant.
Ajit Pandey (7): Documentation: device-tree: sound: Update lpass-cpu driver binding ASoC: qcom: Add common array to initialize soc based core clocks ASoC: qcom: lpass-cpu: Make "ahbix-clk" an optional clock. ASoC: qcom: lpass: Use regmap_field for i2sctl and dmactl registers include: dt-bindings: sound: Add sc7180-lpass bindings header device-tree: bindings: sound: lpass-cpu: Add new compatible soc ASoC: qcom: lpass-sc7180: Add platform driver for lpass audio
.../devicetree/bindings/sound/qcom,lpass-cpu.txt | 79 ------- .../devicetree/bindings/sound/qcom,lpass-cpu.yaml | 154 +++++++++++++ include/dt-bindings/sound/sc7180-lpass.h | 10 + sound/soc/qcom/Kconfig | 5 + sound/soc/qcom/Makefile | 2 + sound/soc/qcom/lpass-apq8016.c | 100 ++++++-- sound/soc/qcom/lpass-cpu.c | 116 ++++++---- sound/soc/qcom/lpass-lpaif-reg.h | 203 ++++++++++------- sound/soc/qcom/lpass-platform.c | 86 ++++--- sound/soc/qcom/lpass-sc7180.c | 252 +++++++++++++++++++++ sound/soc/qcom/lpass.h | 40 +++- 11 files changed, 790 insertions(+), 257 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