linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] ASoC: dt-bindings: Add sound-card-common.yaml
@ 2023-07-31  9:42 Krzysztof Kozlowski
  2023-07-31  9:42 ` [PATCH 01/12] ASoC: dt-bindings: amlogic,gx-sound-card: correct maxItems constraints Krzysztof Kozlowski
                   ` (12 more replies)
  0 siblings, 13 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-31  9:42 UTC (permalink / raw)
  To: Jerome Brunet, Liam Girdwood, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Shawn Guo, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam, NXP Linux Team,
	Matthias Brugger, AngeloGioacchino Del Regno, Sylwester Nawrocki,
	Jaroslav Kysela, Takashi Iwai, Shengjiu Wang, Rohit kumar,
	Cheng-Yi Chiang, Rao Mandadapu, Judy Hsiao, Trevor Wu,
	Jonathan Bakker, alsa-devel, devicetree, linux-kernel,
	linux-arm-kernel, linux-mediatek
  Cc: Krzysztof Kozlowski

Hi,

Almost every board machine / sound cards has "audio-routing" and "model"
properties, so we can make things simpler by introducing one common
binding.  It is also expected that given property has only one definition.

If the patchset looks good, then the next steps will be:
1. Convert more vendor audio-routing properties to audio-routing,
2. Add dai-links children to common binding.

Best regards,
Krzysztof

Krzysztof Kozlowski (12):
  ASoC: dt-bindings: amlogic,gx-sound-card: correct maxItems constraints
  ASoC: dt-bindings: Add common sound card properties
  ASoC: dt-bindings: mediatek,mt8188-mt6359: use common sound card
  ASoC: dt-bindings: samsung,aries-wm8994: use common sound card
  ASoC: dt-bindings: samsung,midas-audio: use common sound card
  ASoC: dt-bindings: samsung,odroid: use common sound card
  ASoC: dt-bindings: samsung,tm2: use common sound card
  ASoC: samsung: odroid: use of_property_present to check for property
  ASoC: samsung: aries_wm8994: parse audio-routing
  ASoC: samsung: midas_wm1811: parse audio-routing
  ASoC: samsung: odroid: parse audio-routing
  ASoC: samsung: tm2_wm5110: parse audio-routing

 .../sound/amlogic,axg-sound-card.yaml         | 15 +++--------
 .../bindings/sound/amlogic,gx-sound-card.yaml | 16 +++++------
 .../devicetree/bindings/sound/fsl,rpmsg.yaml  | 17 +++---------
 .../bindings/sound/google,sc7180-trogdor.yaml | 17 +++---------
 .../sound/google,sc7280-herobrine.yaml        | 17 +++---------
 .../bindings/sound/imx-audio-card.yaml        | 18 +++----------
 .../sound/mediatek,mt8188-mt6359.yaml         | 17 +++++-------
 .../bindings/sound/samsung,aries-wm8994.yaml  | 16 +++++------
 .../bindings/sound/samsung,midas-audio.yaml   | 16 +++++------
 .../bindings/sound/samsung,odroid.yaml        | 14 +++++-----
 .../bindings/sound/samsung,tm2.yaml           | 16 +++++------
 .../bindings/sound/sound-card-common.yaml     | 27 +++++++++++++++++++
 sound/soc/samsung/aries_wm8994.c              | 10 ++++---
 sound/soc/samsung/midas_wm1811.c              | 10 ++++---
 sound/soc/samsung/odroid.c                    | 15 ++++++-----
 sound/soc/samsung/tm2_wm5110.c                | 10 ++++---
 16 files changed, 119 insertions(+), 132 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/sound-card-common.yaml

-- 
2.34.1


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

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2023-08-17 22:36 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-31  9:42 [PATCH 00/12] ASoC: dt-bindings: Add sound-card-common.yaml Krzysztof Kozlowski
2023-07-31  9:42 ` [PATCH 01/12] ASoC: dt-bindings: amlogic,gx-sound-card: correct maxItems constraints Krzysztof Kozlowski
2023-07-31  9:52   ` Jerome Brunet
2023-07-31 14:46     ` Mark Brown
2023-08-10  6:29       ` Krzysztof Kozlowski
2023-07-31  9:42 ` [PATCH 02/12] ASoC: dt-bindings: Add common sound card properties Krzysztof Kozlowski
2023-07-31 10:43   ` AngeloGioacchino Del Regno
2023-07-31  9:42 ` [PATCH 03/12] ASoC: dt-bindings: mediatek,mt8188-mt6359: use common sound card Krzysztof Kozlowski
2023-07-31 10:43   ` AngeloGioacchino Del Regno
     [not found]   ` <169080070077.2404962.11506468692056687115.robh@kernel.org>
2023-07-31 14:38     ` Rob Herring
2023-07-31  9:42 ` [PATCH 04/12] ASoC: dt-bindings: samsung,aries-wm8994: " Krzysztof Kozlowski
2023-07-31 14:41   ` Rob Herring
2023-07-31  9:42 ` [PATCH 05/12] ASoC: dt-bindings: samsung,midas-audio: " Krzysztof Kozlowski
2023-07-31 14:41   ` Rob Herring
2023-07-31  9:42 ` [PATCH 06/12] ASoC: dt-bindings: samsung,odroid: " Krzysztof Kozlowski
2023-07-31 10:51   ` Rob Herring
2023-07-31  9:42 ` [PATCH 07/12] ASoC: dt-bindings: samsung,tm2: " Krzysztof Kozlowski
2023-07-31 14:43   ` Rob Herring
2023-07-31  9:42 ` [PATCH 08/12] ASoC: samsung: odroid: use of_property_present to check for property Krzysztof Kozlowski
2023-07-31  9:43 ` [PATCH 09/12] ASoC: samsung: aries_wm8994: parse audio-routing Krzysztof Kozlowski
2023-07-31  9:43 ` [PATCH 10/12] ASoC: samsung: midas_wm1811: " Krzysztof Kozlowski
2023-07-31  9:43 ` [PATCH 11/12] ASoC: samsung: odroid: " Krzysztof Kozlowski
2023-07-31  9:43 ` [PATCH 12/12] ASoC: samsung: tm2_wm5110: " Krzysztof Kozlowski
2023-08-17 22:36 ` (subset) [PATCH 00/12] ASoC: dt-bindings: Add sound-card-common.yaml Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).