Re: [PATCH v5 00/10] Add the PowerQUICC audio support using the QMC

From: Michael Ellerman
Date: Thu Feb 16 2023 - 18:53:35 EST


Herve Codina <herve.codina@xxxxxxxxxxx> writes:
> Hi,
>
> This series adds support for audio using the QMC controller available in
> some Freescale PowerQUICC SoCs.

Who's going to take this series?

By lines of code it's mostly in drivers/soc/fsl, so I was expecting it
would go via that tree.

Or is it a sound series that should go via one of the sound trees?

cheers

...
> .../soc/fsl/cpm_qe/fsl,cpm1-scc-qmc.yaml | 172 ++
> .../bindings/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml | 234 +++
> .../bindings/sound/fsl,qmc-audio.yaml | 117 ++
> MAINTAINERS | 25 +
> arch/powerpc/platforms/8xx/cpm1.c | 2 +-
> drivers/soc/fsl/qe/Kconfig | 23 +
> drivers/soc/fsl/qe/Makefile | 2 +
> drivers/soc/fsl/qe/qmc.c | 1533 +++++++++++++++++
> drivers/soc/fsl/qe/tsa.c | 869 ++++++++++
> drivers/soc/fsl/qe/tsa.h | 42 +
> include/dt-bindings/soc/fsl,tsa.h | 13 +
> include/soc/fsl/qe/qmc.h | 71 +
> sound/soc/fsl/Kconfig | 9 +
> sound/soc/fsl/Makefile | 2 +
> sound/soc/fsl/fsl_qmc_audio.c | 735 ++++++++
> 15 files changed, 3848 insertions(+), 1 deletion(-)
> create mode 100644 Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-scc-qmc.yaml
> create mode 100644 Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml
> create mode 100644 Documentation/devicetree/bindings/sound/fsl,qmc-audio.yaml
> create mode 100644 drivers/soc/fsl/qe/qmc.c
> create mode 100644 drivers/soc/fsl/qe/tsa.c
> create mode 100644 drivers/soc/fsl/qe/tsa.h
> create mode 100644 include/dt-bindings/soc/fsl,tsa.h
> create mode 100644 include/soc/fsl/qe/qmc.h
> create mode 100644 sound/soc/fsl/fsl_qmc_audio.c