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

From: Christophe Leroy
Date: Fri Feb 17 2023 - 01:32:12 EST




Le 17/02/2023 à 00:52, Michael Ellerman a écrit :
> 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?


It is a sound series, I was expecting it to go via sound tree, that's
the reason why I asked and got an Acked-by: from fsl soc maintainers.

Mark, is that ok for you or do you expect this series to go via soc tree ?

Thanks
Christophe

>
> 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