All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Jan Dakinevich <jan.dakinevich@salutedevices.com>
Cc: Stephen Boyd <sboyd@kernel.org>,
	linux-kernel@vger.kernel.org,
	 Liam Girdwood <lgirdwood@gmail.com>,
	 Neil Armstrong <neil.armstrong@linaro.org>,
	alsa-devel@alsa-project.org,
	 Linus Walleij <linus.walleij@linaro.org>,
	Jaroslav Kysela <perex@perex.cz>,
	 linux-clk@vger.kernel.org,
	Michael Turquette <mturquette@baylibre.com>,
	 Mark Brown <broonie@kernel.org>,
	 Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	 kernel@salutedevices.com, linux-amlogic@lists.infradead.org,
	 devicetree@vger.kernel.org,
	 Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	 linux-sound@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
	 linux-arm-kernel@lists.infradead.org,
	 Philipp Zabel <p.zabel@pengutronix.de>,
	 Jerome Brunet <jbrunet@baylibre.com>,
	Kevin Hilman <khilman@baylibre.com>,
	 linux-gpio@vger.kernel.org, Takashi Iwai <tiwai@suse.com>
Subject: Re: [PATCH 00/25] Introduce support of audio for Amlogic A1 SoC family
Date: Fri, 15 Mar 2024 09:50:41 -0600	[thread overview]
Message-ID: <171051663959.1379925.16000374378934819942.robh@kernel.org> (raw)
In-Reply-To: <20240314232201.2102178-1-jan.dakinevich@salutedevices.com>


On Fri, 15 Mar 2024 02:21:36 +0300, Jan Dakinevich wrote:
> This series includes the following:
> 
>  - new audio clock and reset controller data and adaptation for it of existing
>    code (patches 0001..0004);
> 
>  - adaptation of existing audio components for A1 Soc (patches 0005..0021);
> 
>  - handy cosmetics for dai-link naming (patches 0022..0023);
> 
>  - integration of audio devices into common trees (patch 0024);
> 
>  - audio support bring up on Amlogic ad402 reference board (patch 0025). This
>    patch is not actually checked on real hardware (because all ad402 that we had
>    were burned out). This patch is based on ad402's schematics and on experience
>    with our own hardware (which is very close to reference board);
> 
> Dmitry Rokosov (2):
>   ASoC: dt-bindings: meson: introduce link-name optional property
>   ASoC: meson: implement link-name optional property in meson card utils
> 
> Jan Dakinevich (23):
>   clk: meson: a1: restrict an amount of 'hifi_pll' params
>   clk: meson: axg: move reset controller's code to separate module
>   dt-bindings: clock: meson: add A1 audio clock and reset controller
>     bindings
>   clk: meson: a1: add the audio clock controller driver
>   ASoC: meson: codec-glue: add support for capture stream
>   ASoC: meson: g12a-toacodec: fix "Lane Select" width
>   ASoC: meson: g12a-toacodec: rework the definition of bits
>   ASoC: dt-bindings: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: t9015: prepare to adding new platforms
>   ASoC: dt-bindings: meson: t9015: add support for A1 SoC family
>   ASoC: meson: t9015: add support for A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: document 'sysrate' property
>   ASoC: meson: axg-pdm: introduce 'sysrate' property
>   pinctrl/meson: fix typo in PDM's pin name
>   ASoC: dt-bindings: meson: meson-axg-audio-arb: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-fifo: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-sound-card: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-formatters: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-iface: claim support of A1 SoC
>     family
>   arm64: dts: meson: a1: add audio devices
>   arm64: dts: ad402: enable audio
> 
>  .../bindings/clock/amlogic,a1-audio-clkc.yaml |  83 +++
>  .../reset/amlogic,meson-axg-audio-arb.yaml    |  10 +-
>  .../bindings/sound/amlogic,axg-fifo.yaml      |   8 +
>  .../bindings/sound/amlogic,axg-pdm.yaml       |   5 +
>  .../sound/amlogic,axg-sound-card.yaml         |  12 +-
>  .../sound/amlogic,axg-tdm-formatters.yaml     |  22 +-
>  .../bindings/sound/amlogic,axg-tdm-iface.yaml |   6 +-
>  .../bindings/sound/amlogic,g12a-toacodec.yaml |   1 +
>  .../bindings/sound/amlogic,gx-sound-card.yaml |   6 +
>  .../bindings/sound/amlogic,t9015.yaml         |   4 +-
>  .../arm64/boot/dts/amlogic/meson-a1-ad402.dts | 126 ++++
>  arch/arm64/boot/dts/amlogic/meson-a1.dtsi     | 471 +++++++++++++++
>  drivers/clk/meson/Kconfig                     |  18 +
>  drivers/clk/meson/Makefile                    |   2 +
>  drivers/clk/meson/a1-audio.c                  | 556 ++++++++++++++++++
>  drivers/clk/meson/a1-audio.h                  |  58 ++
>  drivers/clk/meson/a1-pll.c                    |   8 +-
>  drivers/clk/meson/axg-audio.c                 |  95 +--
>  drivers/clk/meson/meson-audio-rstc.c          | 109 ++++
>  drivers/clk/meson/meson-audio-rstc.h          |  12 +
>  drivers/pinctrl/meson/pinctrl-meson-a1.c      |   6 +-
>  .../dt-bindings/clock/amlogic,a1-audio-clkc.h | 122 ++++
>  .../reset/amlogic,meson-a1-audio-reset.h      |  29 +
>  .../dt-bindings/sound/meson-g12a-toacodec.h   |   5 +
>  sound/soc/meson/axg-pdm.c                     |  10 +-
>  sound/soc/meson/g12a-toacodec.c               | 298 ++++++++--
>  sound/soc/meson/meson-card-utils.c            |  12 +-
>  sound/soc/meson/meson-codec-glue.c            | 174 ++++--
>  sound/soc/meson/meson-codec-glue.h            |  23 +
>  sound/soc/meson/t9015.c                       | 326 +++++++++-
>  30 files changed, 2394 insertions(+), 223 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/clock/amlogic,a1-audio-clkc.yaml
>  create mode 100644 drivers/clk/meson/a1-audio.c
>  create mode 100644 drivers/clk/meson/a1-audio.h
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.c
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.h
>  create mode 100644 include/dt-bindings/clock/amlogic,a1-audio-clkc.h
>  create mode 100644 include/dt-bindings/reset/amlogic,meson-a1-audio-reset.h
> 
> --
> 2.34.1
> 
> 
> 


My bot found new DTB warnings on the .dts files added or changed in this
series.

Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.

If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:

  pip3 install dtschema --upgrade


New warnings running 'make CHECK_DTBS=y amlogic/meson-a1-ad402.dtb' for 20240314232201.2102178-1-jan.dakinevich@salutedevices.com:

arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@4800: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
	from schema $id: http://devicetree.org/schemas/sound/amlogic,t9015.yaml#
arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@1000: Unevaluated properties are not allowed ('power-domains' was unexpected)
	from schema $id: http://devicetree.org/schemas/sound/amlogic,axg-pdm.yaml#






WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh@kernel.org>
To: Jan Dakinevich <jan.dakinevich@salutedevices.com>
Cc: Stephen Boyd <sboyd@kernel.org>,
	linux-kernel@vger.kernel.org,
	 Liam Girdwood <lgirdwood@gmail.com>,
	 Neil Armstrong <neil.armstrong@linaro.org>,
	alsa-devel@alsa-project.org,
	 Linus Walleij <linus.walleij@linaro.org>,
	Jaroslav Kysela <perex@perex.cz>,
	 linux-clk@vger.kernel.org,
	Michael Turquette <mturquette@baylibre.com>,
	 Mark Brown <broonie@kernel.org>,
	 Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	 kernel@salutedevices.com, linux-amlogic@lists.infradead.org,
	 devicetree@vger.kernel.org,
	 Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	 linux-sound@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
	 linux-arm-kernel@lists.infradead.org,
	 Philipp Zabel <p.zabel@pengutronix.de>,
	 Jerome Brunet <jbrunet@baylibre.com>,
	Kevin Hilman <khilman@baylibre.com>,
	 linux-gpio@vger.kernel.org, Takashi Iwai <tiwai@suse.com>
Subject: Re: [PATCH 00/25] Introduce support of audio for Amlogic A1 SoC family
Date: Fri, 15 Mar 2024 09:50:41 -0600	[thread overview]
Message-ID: <171051663959.1379925.16000374378934819942.robh@kernel.org> (raw)
In-Reply-To: <20240314232201.2102178-1-jan.dakinevich@salutedevices.com>


On Fri, 15 Mar 2024 02:21:36 +0300, Jan Dakinevich wrote:
> This series includes the following:
> 
>  - new audio clock and reset controller data and adaptation for it of existing
>    code (patches 0001..0004);
> 
>  - adaptation of existing audio components for A1 Soc (patches 0005..0021);
> 
>  - handy cosmetics for dai-link naming (patches 0022..0023);
> 
>  - integration of audio devices into common trees (patch 0024);
> 
>  - audio support bring up on Amlogic ad402 reference board (patch 0025). This
>    patch is not actually checked on real hardware (because all ad402 that we had
>    were burned out). This patch is based on ad402's schematics and on experience
>    with our own hardware (which is very close to reference board);
> 
> Dmitry Rokosov (2):
>   ASoC: dt-bindings: meson: introduce link-name optional property
>   ASoC: meson: implement link-name optional property in meson card utils
> 
> Jan Dakinevich (23):
>   clk: meson: a1: restrict an amount of 'hifi_pll' params
>   clk: meson: axg: move reset controller's code to separate module
>   dt-bindings: clock: meson: add A1 audio clock and reset controller
>     bindings
>   clk: meson: a1: add the audio clock controller driver
>   ASoC: meson: codec-glue: add support for capture stream
>   ASoC: meson: g12a-toacodec: fix "Lane Select" width
>   ASoC: meson: g12a-toacodec: rework the definition of bits
>   ASoC: dt-bindings: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: t9015: prepare to adding new platforms
>   ASoC: dt-bindings: meson: t9015: add support for A1 SoC family
>   ASoC: meson: t9015: add support for A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: document 'sysrate' property
>   ASoC: meson: axg-pdm: introduce 'sysrate' property
>   pinctrl/meson: fix typo in PDM's pin name
>   ASoC: dt-bindings: meson: meson-axg-audio-arb: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-fifo: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-sound-card: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-formatters: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-iface: claim support of A1 SoC
>     family
>   arm64: dts: meson: a1: add audio devices
>   arm64: dts: ad402: enable audio
> 
>  .../bindings/clock/amlogic,a1-audio-clkc.yaml |  83 +++
>  .../reset/amlogic,meson-axg-audio-arb.yaml    |  10 +-
>  .../bindings/sound/amlogic,axg-fifo.yaml      |   8 +
>  .../bindings/sound/amlogic,axg-pdm.yaml       |   5 +
>  .../sound/amlogic,axg-sound-card.yaml         |  12 +-
>  .../sound/amlogic,axg-tdm-formatters.yaml     |  22 +-
>  .../bindings/sound/amlogic,axg-tdm-iface.yaml |   6 +-
>  .../bindings/sound/amlogic,g12a-toacodec.yaml |   1 +
>  .../bindings/sound/amlogic,gx-sound-card.yaml |   6 +
>  .../bindings/sound/amlogic,t9015.yaml         |   4 +-
>  .../arm64/boot/dts/amlogic/meson-a1-ad402.dts | 126 ++++
>  arch/arm64/boot/dts/amlogic/meson-a1.dtsi     | 471 +++++++++++++++
>  drivers/clk/meson/Kconfig                     |  18 +
>  drivers/clk/meson/Makefile                    |   2 +
>  drivers/clk/meson/a1-audio.c                  | 556 ++++++++++++++++++
>  drivers/clk/meson/a1-audio.h                  |  58 ++
>  drivers/clk/meson/a1-pll.c                    |   8 +-
>  drivers/clk/meson/axg-audio.c                 |  95 +--
>  drivers/clk/meson/meson-audio-rstc.c          | 109 ++++
>  drivers/clk/meson/meson-audio-rstc.h          |  12 +
>  drivers/pinctrl/meson/pinctrl-meson-a1.c      |   6 +-
>  .../dt-bindings/clock/amlogic,a1-audio-clkc.h | 122 ++++
>  .../reset/amlogic,meson-a1-audio-reset.h      |  29 +
>  .../dt-bindings/sound/meson-g12a-toacodec.h   |   5 +
>  sound/soc/meson/axg-pdm.c                     |  10 +-
>  sound/soc/meson/g12a-toacodec.c               | 298 ++++++++--
>  sound/soc/meson/meson-card-utils.c            |  12 +-
>  sound/soc/meson/meson-codec-glue.c            | 174 ++++--
>  sound/soc/meson/meson-codec-glue.h            |  23 +
>  sound/soc/meson/t9015.c                       | 326 +++++++++-
>  30 files changed, 2394 insertions(+), 223 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/clock/amlogic,a1-audio-clkc.yaml
>  create mode 100644 drivers/clk/meson/a1-audio.c
>  create mode 100644 drivers/clk/meson/a1-audio.h
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.c
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.h
>  create mode 100644 include/dt-bindings/clock/amlogic,a1-audio-clkc.h
>  create mode 100644 include/dt-bindings/reset/amlogic,meson-a1-audio-reset.h
> 
> --
> 2.34.1
> 
> 
> 


My bot found new DTB warnings on the .dts files added or changed in this
series.

Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.

If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:

  pip3 install dtschema --upgrade


New warnings running 'make CHECK_DTBS=y amlogic/meson-a1-ad402.dtb' for 20240314232201.2102178-1-jan.dakinevich@salutedevices.com:

arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@4800: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
	from schema $id: http://devicetree.org/schemas/sound/amlogic,t9015.yaml#
arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@1000: Unevaluated properties are not allowed ('power-domains' was unexpected)
	from schema $id: http://devicetree.org/schemas/sound/amlogic,axg-pdm.yaml#






_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh@kernel.org>
To: Jan Dakinevich <jan.dakinevich@salutedevices.com>
Cc: Stephen Boyd <sboyd@kernel.org>,
	linux-kernel@vger.kernel.org,
	 Liam Girdwood <lgirdwood@gmail.com>,
	 Neil Armstrong <neil.armstrong@linaro.org>,
	alsa-devel@alsa-project.org,
	 Linus Walleij <linus.walleij@linaro.org>,
	Jaroslav Kysela <perex@perex.cz>,
	 linux-clk@vger.kernel.org,
	Michael Turquette <mturquette@baylibre.com>,
	 Mark Brown <broonie@kernel.org>,
	 Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	 kernel@salutedevices.com, linux-amlogic@lists.infradead.org,
	 devicetree@vger.kernel.org,
	 Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	 linux-sound@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
	 linux-arm-kernel@lists.infradead.org,
	 Philipp Zabel <p.zabel@pengutronix.de>,
	 Jerome Brunet <jbrunet@baylibre.com>,
	Kevin Hilman <khilman@baylibre.com>,
	 linux-gpio@vger.kernel.org, Takashi Iwai <tiwai@suse.com>
Subject: Re: [PATCH 00/25] Introduce support of audio for Amlogic A1 SoC family
Date: Fri, 15 Mar 2024 09:50:41 -0600	[thread overview]
Message-ID: <171051663959.1379925.16000374378934819942.robh@kernel.org> (raw)
In-Reply-To: <20240314232201.2102178-1-jan.dakinevich@salutedevices.com>


On Fri, 15 Mar 2024 02:21:36 +0300, Jan Dakinevich wrote:
> This series includes the following:
> 
>  - new audio clock and reset controller data and adaptation for it of existing
>    code (patches 0001..0004);
> 
>  - adaptation of existing audio components for A1 Soc (patches 0005..0021);
> 
>  - handy cosmetics for dai-link naming (patches 0022..0023);
> 
>  - integration of audio devices into common trees (patch 0024);
> 
>  - audio support bring up on Amlogic ad402 reference board (patch 0025). This
>    patch is not actually checked on real hardware (because all ad402 that we had
>    were burned out). This patch is based on ad402's schematics and on experience
>    with our own hardware (which is very close to reference board);
> 
> Dmitry Rokosov (2):
>   ASoC: dt-bindings: meson: introduce link-name optional property
>   ASoC: meson: implement link-name optional property in meson card utils
> 
> Jan Dakinevich (23):
>   clk: meson: a1: restrict an amount of 'hifi_pll' params
>   clk: meson: axg: move reset controller's code to separate module
>   dt-bindings: clock: meson: add A1 audio clock and reset controller
>     bindings
>   clk: meson: a1: add the audio clock controller driver
>   ASoC: meson: codec-glue: add support for capture stream
>   ASoC: meson: g12a-toacodec: fix "Lane Select" width
>   ASoC: meson: g12a-toacodec: rework the definition of bits
>   ASoC: dt-bindings: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: g12a-toacodec: add support for A1 SoC family
>   ASoC: meson: t9015: prepare to adding new platforms
>   ASoC: dt-bindings: meson: t9015: add support for A1 SoC family
>   ASoC: meson: t9015: add support for A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: document 'sysrate' property
>   ASoC: meson: axg-pdm: introduce 'sysrate' property
>   pinctrl/meson: fix typo in PDM's pin name
>   ASoC: dt-bindings: meson: meson-axg-audio-arb: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-fifo: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-pdm: claim support of A1 SoC family
>   ASoC: dt-bindings: meson: axg-sound-card: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-formatters: claim support of A1 SoC
>     family
>   ASoC: dt-bindings: meson: axg-tdm-iface: claim support of A1 SoC
>     family
>   arm64: dts: meson: a1: add audio devices
>   arm64: dts: ad402: enable audio
> 
>  .../bindings/clock/amlogic,a1-audio-clkc.yaml |  83 +++
>  .../reset/amlogic,meson-axg-audio-arb.yaml    |  10 +-
>  .../bindings/sound/amlogic,axg-fifo.yaml      |   8 +
>  .../bindings/sound/amlogic,axg-pdm.yaml       |   5 +
>  .../sound/amlogic,axg-sound-card.yaml         |  12 +-
>  .../sound/amlogic,axg-tdm-formatters.yaml     |  22 +-
>  .../bindings/sound/amlogic,axg-tdm-iface.yaml |   6 +-
>  .../bindings/sound/amlogic,g12a-toacodec.yaml |   1 +
>  .../bindings/sound/amlogic,gx-sound-card.yaml |   6 +
>  .../bindings/sound/amlogic,t9015.yaml         |   4 +-
>  .../arm64/boot/dts/amlogic/meson-a1-ad402.dts | 126 ++++
>  arch/arm64/boot/dts/amlogic/meson-a1.dtsi     | 471 +++++++++++++++
>  drivers/clk/meson/Kconfig                     |  18 +
>  drivers/clk/meson/Makefile                    |   2 +
>  drivers/clk/meson/a1-audio.c                  | 556 ++++++++++++++++++
>  drivers/clk/meson/a1-audio.h                  |  58 ++
>  drivers/clk/meson/a1-pll.c                    |   8 +-
>  drivers/clk/meson/axg-audio.c                 |  95 +--
>  drivers/clk/meson/meson-audio-rstc.c          | 109 ++++
>  drivers/clk/meson/meson-audio-rstc.h          |  12 +
>  drivers/pinctrl/meson/pinctrl-meson-a1.c      |   6 +-
>  .../dt-bindings/clock/amlogic,a1-audio-clkc.h | 122 ++++
>  .../reset/amlogic,meson-a1-audio-reset.h      |  29 +
>  .../dt-bindings/sound/meson-g12a-toacodec.h   |   5 +
>  sound/soc/meson/axg-pdm.c                     |  10 +-
>  sound/soc/meson/g12a-toacodec.c               | 298 ++++++++--
>  sound/soc/meson/meson-card-utils.c            |  12 +-
>  sound/soc/meson/meson-codec-glue.c            | 174 ++++--
>  sound/soc/meson/meson-codec-glue.h            |  23 +
>  sound/soc/meson/t9015.c                       | 326 +++++++++-
>  30 files changed, 2394 insertions(+), 223 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/clock/amlogic,a1-audio-clkc.yaml
>  create mode 100644 drivers/clk/meson/a1-audio.c
>  create mode 100644 drivers/clk/meson/a1-audio.h
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.c
>  create mode 100644 drivers/clk/meson/meson-audio-rstc.h
>  create mode 100644 include/dt-bindings/clock/amlogic,a1-audio-clkc.h
>  create mode 100644 include/dt-bindings/reset/amlogic,meson-a1-audio-reset.h
> 
> --
> 2.34.1
> 
> 
> 


My bot found new DTB warnings on the .dts files added or changed in this
series.

Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.

If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:

  pip3 install dtschema --upgrade


New warnings running 'make CHECK_DTBS=y amlogic/meson-a1-ad402.dtb' for 20240314232201.2102178-1-jan.dakinevich@salutedevices.com:

arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@4800: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
	from schema $id: http://devicetree.org/schemas/sound/amlogic,t9015.yaml#
arch/arm64/boot/dts/amlogic/meson-a1-ad402.dtb: audio-controller@1000: Unevaluated properties are not allowed ('power-domains' was unexpected)
	from schema $id: http://devicetree.org/schemas/sound/amlogic,axg-pdm.yaml#






_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

  parent reply	other threads:[~2024-03-15 15:50 UTC|newest]

Thread overview: 255+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-14 23:21 [PATCH 00/25] Introduce support of audio for Amlogic A1 SoC family Jan Dakinevich
2024-03-14 23:21 ` Jan Dakinevich
2024-03-14 23:21 ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 01/25] clk: meson: a1: restrict an amount of 'hifi_pll' params Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15  8:58   ` Jerome Brunet
2024-03-15  8:58     ` Jerome Brunet
2024-03-15  8:58     ` Jerome Brunet
2024-03-17 14:17     ` Jan Dakinevich
2024-03-17 14:17       ` Jan Dakinevich
2024-03-17 14:17       ` Jan Dakinevich
2024-03-18 10:17       ` Jerome Brunet
2024-03-18 10:17         ` Jerome Brunet
2024-03-18 10:17         ` Jerome Brunet
2024-03-18 22:35         ` Jan Dakinevich
2024-03-18 22:35           ` Jan Dakinevich
2024-03-18 22:35           ` Jan Dakinevich
2024-03-19  8:21           ` Jerome Brunet
2024-03-19  8:21             ` Jerome Brunet
2024-03-19  8:21             ` Jerome Brunet
2024-03-19 13:53             ` Dmitry Rokosov
2024-03-19 13:53               ` Dmitry Rokosov
2024-03-19 13:53               ` Dmitry Rokosov
2024-03-14 23:21 ` [PATCH 02/25] clk: meson: axg: move reset controller's code to separate module Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 03/25] dt-bindings: clock: meson: add A1 audio clock and reset controller bindings Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15  9:56   ` Krzysztof Kozlowski
2024-03-15  9:56     ` Krzysztof Kozlowski
2024-03-15  9:56     ` Krzysztof Kozlowski
2024-03-14 23:21 ` [PATCH 04/25] clk: meson: a1: add the audio clock controller driver Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15  9:20   ` Jerome Brunet
2024-03-15  9:20     ` Jerome Brunet
2024-03-15  9:20     ` Jerome Brunet
2024-03-19  1:47     ` Jan Dakinevich
2024-03-19  1:47       ` Jan Dakinevich
2024-03-19  1:47       ` Jan Dakinevich
2024-03-19  8:30       ` Jerome Brunet
2024-03-19  8:30         ` Jerome Brunet
2024-03-19  8:30         ` Jerome Brunet
2024-03-23 18:02         ` Jan Dakinevich
2024-03-23 18:02           ` Jan Dakinevich
2024-03-23 18:02           ` Jan Dakinevich
2024-03-26 15:26           ` Jerome Brunet
2024-03-26 15:26             ` Jerome Brunet
2024-03-26 15:26             ` Jerome Brunet
2024-03-26 18:44             ` Jan Dakinevich
2024-03-26 18:44               ` Jan Dakinevich
2024-03-26 18:44               ` Jan Dakinevich
2024-03-27 12:57               ` Jerome Brunet
2024-03-27 12:57                 ` Jerome Brunet
2024-03-27 12:57                 ` Jerome Brunet
2024-03-14 23:21 ` [PATCH 05/25] ASoC: meson: codec-glue: add support for capture stream Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 06/25] ASoC: meson: g12a-toacodec: fix "Lane Select" width Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 10:00   ` Jerome Brunet
2024-03-15 10:00     ` Jerome Brunet
2024-03-15 10:00     ` Jerome Brunet
2024-03-15 13:17   ` Dan Carpenter
2024-03-15 13:17     ` Dan Carpenter
2024-03-15 13:17     ` Dan Carpenter
2024-03-24 17:51   ` Jan Dakinevich
2024-03-24 17:51     ` Jan Dakinevich
2024-03-24 17:51     ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 07/25] ASoC: meson: g12a-toacodec: rework the definition of bits Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 08/25] ASoC: dt-bindings: meson: g12a-toacodec: add support for A1 SoC family Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15  9:58   ` Krzysztof Kozlowski
2024-03-15  9:58     ` Krzysztof Kozlowski
2024-03-15  9:58     ` Krzysztof Kozlowski
2024-03-17 14:29     ` Jan Dakinevich
2024-03-17 14:29       ` Jan Dakinevich
2024-03-17 14:29       ` Jan Dakinevich
2024-03-17 14:46       ` Krzysztof Kozlowski
2024-03-17 14:46         ` Krzysztof Kozlowski
2024-03-17 14:46         ` Krzysztof Kozlowski
2024-03-17 15:11         ` Jan Dakinevich
2024-03-17 15:11           ` Jan Dakinevich
2024-03-17 15:11           ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 09/25] ASoC: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 13:33   ` Mark Brown
2024-03-15 13:33     ` Mark Brown
2024-03-15 13:33     ` Mark Brown
2024-03-17 15:19     ` Jan Dakinevich
2024-03-17 15:19       ` Jan Dakinevich
2024-03-17 15:19       ` Jan Dakinevich
2024-03-18 10:42       ` Jerome Brunet
2024-03-18 10:42         ` Jerome Brunet
2024-03-18 10:42         ` Jerome Brunet
2024-03-18 13:30       ` Mark Brown
2024-03-18 13:30         ` Mark Brown
2024-03-18 13:30         ` Mark Brown
2024-03-14 23:21 ` [PATCH 10/25] ASoC: meson: t9015: prepare to adding new platforms Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 11/25] ASoC: dt-bindings: meson: t9015: add support for A1 SoC family Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:03   ` Rob Herring
2024-03-17 19:03     ` Rob Herring
2024-03-17 19:03     ` Rob Herring
2024-03-17 23:39     ` Jan Dakinevich
2024-03-17 23:39       ` Jan Dakinevich
2024-03-17 23:39       ` Jan Dakinevich
2024-03-18  7:46       ` Krzysztof Kozlowski
2024-03-18  7:46         ` Krzysztof Kozlowski
2024-03-18  7:46         ` Krzysztof Kozlowski
2024-03-14 23:21 ` [PATCH 12/25] ASoC: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 13:36   ` Mark Brown
2024-03-15 13:36     ` Mark Brown
2024-03-15 13:36     ` Mark Brown
2024-03-17 16:27     ` Jan Dakinevich
2024-03-17 16:27       ` Jan Dakinevich
2024-03-17 16:27       ` Jan Dakinevich
2024-03-18 13:48       ` Mark Brown
2024-03-18 13:48         ` Mark Brown
2024-03-18 13:48         ` Mark Brown
2024-03-18 22:43         ` Jan Dakinevich
2024-03-18 22:43           ` Jan Dakinevich
2024-03-18 22:43           ` Jan Dakinevich
2024-03-18 10:46   ` Jerome Brunet
2024-03-18 10:46     ` Jerome Brunet
2024-03-18 10:46     ` Jerome Brunet
2024-03-19  0:17     ` Jan Dakinevich
2024-03-19  0:17       ` Jan Dakinevich
2024-03-19  0:17       ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 13/25] ASoC: dt-bindings: meson: axg-pdm: document 'sysrate' property Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 10:00   ` Krzysztof Kozlowski
2024-03-15 10:00     ` Krzysztof Kozlowski
2024-03-15 10:00     ` Krzysztof Kozlowski
2024-03-15 10:22     ` Jerome Brunet
2024-03-15 10:22       ` Jerome Brunet
2024-03-15 10:22       ` Jerome Brunet
2024-03-17 15:52       ` Jan Dakinevich
2024-03-17 15:52         ` Jan Dakinevich
2024-03-17 15:52         ` Jan Dakinevich
2024-03-18 10:55         ` Jerome Brunet
2024-03-18 10:55           ` Jerome Brunet
2024-03-18 10:55           ` Jerome Brunet
2024-03-18 12:19           ` Jerome Brunet
2024-03-18 12:19             ` Jerome Brunet
2024-03-18 12:19             ` Jerome Brunet
2024-03-19  0:30             ` Jan Dakinevich
2024-03-19  0:30               ` Jan Dakinevich
2024-03-19  0:30               ` Jan Dakinevich
2024-03-19  0:35           ` Jan Dakinevich
2024-03-19  0:35             ` Jan Dakinevich
2024-03-19  0:35             ` Jan Dakinevich
2024-03-19  5:17         ` Krzysztof Kozlowski
2024-03-19  5:17           ` Krzysztof Kozlowski
2024-03-19  5:17           ` Krzysztof Kozlowski
2024-03-17 15:55     ` Jan Dakinevich
2024-03-17 15:55       ` Jan Dakinevich
2024-03-17 15:55       ` Jan Dakinevich
2024-03-17 16:27       ` Krzysztof Kozlowski
2024-03-17 16:27         ` Krzysztof Kozlowski
2024-03-17 16:27         ` Krzysztof Kozlowski
2024-03-17 16:35         ` Jan Dakinevich
2024-03-17 16:35           ` Jan Dakinevich
2024-03-17 16:35           ` Jan Dakinevich
2024-03-19  5:17           ` Krzysztof Kozlowski
2024-03-19  5:17             ` Krzysztof Kozlowski
2024-03-19  5:17             ` Krzysztof Kozlowski
2024-03-14 23:21 ` [PATCH 14/25] ASoC: meson: axg-pdm: introduce " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 15/25] pinctrl/meson: fix typo in PDM's pin name Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 16/25] ASoC: dt-bindings: meson: meson-axg-audio-arb: claim support of A1 SoC family Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:10   ` Rob Herring
2024-03-17 19:10     ` Rob Herring
2024-03-17 19:10     ` Rob Herring
2024-03-14 23:21 ` [PATCH 17/25] ASoC: dt-bindings: meson: axg-fifo: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:13   ` Rob Herring
2024-03-17 19:13     ` Rob Herring
2024-03-17 19:13     ` Rob Herring
2024-03-14 23:21 ` [PATCH 18/25] ASoC: dt-bindings: meson: axg-pdm: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:14   ` Rob Herring
2024-03-17 19:14     ` Rob Herring
2024-03-17 19:14     ` Rob Herring
2024-03-14 23:21 ` [PATCH 19/25] ASoC: dt-bindings: meson: axg-sound-card: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 10:06   ` Jerome Brunet
2024-03-15 10:06     ` Jerome Brunet
2024-03-15 10:06     ` Jerome Brunet
2024-03-17 16:39     ` Jan Dakinevich
2024-03-17 16:39       ` Jan Dakinevich
2024-03-17 16:39       ` Jan Dakinevich
2024-03-14 23:21 ` [PATCH 20/25] ASoC: dt-bindings: meson: axg-tdm-formatters: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:16   ` Rob Herring
2024-03-17 19:16     ` Rob Herring
2024-03-17 19:16     ` Rob Herring
2024-03-14 23:21 ` [PATCH 21/25] ASoC: dt-bindings: meson: axg-tdm-iface: " Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-15 10:13   ` Jerome Brunet
2024-03-15 10:13     ` Jerome Brunet
2024-03-15 10:13     ` Jerome Brunet
2024-03-14 23:21 ` [PATCH 22/25] ASoC: dt-bindings: meson: introduce link-name optional property Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-17 19:45   ` Rob Herring
2024-03-17 19:45     ` Rob Herring
2024-03-17 19:45     ` Rob Herring
2024-03-18  7:27     ` Dmitry Rokosov
2024-03-18  7:27       ` Dmitry Rokosov
2024-03-18  7:27       ` Dmitry Rokosov
2024-03-14 23:21 ` [PATCH 23/25] ASoC: meson: implement link-name optional property in meson card utils Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:21   ` Jan Dakinevich
2024-03-14 23:22 ` [PATCH 24/25] arm64: dts: meson: a1: add audio devices Jan Dakinevich
2024-03-14 23:22   ` Jan Dakinevich
2024-03-14 23:22   ` Jan Dakinevich
2024-03-14 23:22 ` [PATCH 25/25] arm64: dts: ad402: enable audio Jan Dakinevich
2024-03-14 23:22   ` Jan Dakinevich
2024-03-14 23:22   ` Jan Dakinevich
2024-03-15 10:01 ` [PATCH 00/25] Introduce support of audio for Amlogic A1 SoC family Jerome Brunet
2024-03-15 10:01   ` Jerome Brunet
2024-03-15 10:01   ` Jerome Brunet
2024-03-15 15:50 ` Rob Herring [this message]
2024-03-15 15:50   ` Rob Herring
2024-03-15 15:50   ` Rob Herring
2024-03-15 16:53 ` Neil Armstrong
2024-03-15 16:53   ` Neil Armstrong
2024-03-15 16:53   ` Neil Armstrong
2024-03-18  7:30   ` Dmitry Rokosov
2024-03-18  7:30     ` Dmitry Rokosov
2024-03-18  7:30     ` Dmitry Rokosov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=171051663959.1379925.16000374378934819942.robh@kernel.org \
    --to=robh@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jan.dakinevich@salutedevices.com \
    --cc=jbrunet@baylibre.com \
    --cc=kernel@salutedevices.com \
    --cc=khilman@baylibre.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=mturquette@baylibre.com \
    --cc=neil.armstrong@linaro.org \
    --cc=p.zabel@pengutronix.de \
    --cc=perex@perex.cz \
    --cc=sboyd@kernel.org \
    --cc=tiwai@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.