linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
@ 2020-06-23 11:40 Masahiro Yamada
  2020-07-14  2:22 ` Rob Herring
  2020-07-14 16:39 ` Mark Brown
  0 siblings, 2 replies; 8+ messages in thread
From: Masahiro Yamada @ 2020-06-23 11:40 UTC (permalink / raw)
  To: Rob Herring, Frank Rowand, devicetree
  Cc: Katsuhiro Suzuki, Masahiro Yamada, -,
	Liam Girdwood, Mark Brown, linux-arm-kernel, linux-kernel

Convert the UniPhier EVEA sound codec binding to DT schema format.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

Changes in v2:
  - Add schema for subnode 'port'

 .../sound/socionext,uniphier-evea.yaml        | 70 +++++++++++++++++++
 .../bindings/sound/uniphier,evea.txt          | 26 -------
 2 files changed, 70 insertions(+), 26 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml
 delete mode 100644 Documentation/devicetree/bindings/sound/uniphier,evea.txt

diff --git a/Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml b/Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml
new file mode 100644
index 000000000000..228168f685cf
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml
@@ -0,0 +1,70 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/sound/socionext,uniphier-evea.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: UniPhier EVEA SoC-internal sound codec
+
+maintainers:
+  - <alsa-devel@alsa-project.org>
+
+properties:
+  compatible:
+    const: socionext,uniphier-evea
+
+  reg:
+    maxItems: 1
+
+  clock-names:
+    items:
+      - const: evea
+      - const: exiv
+
+  clocks:
+    minItems: 2
+    maxItems: 2
+
+  reset-names:
+    items:
+      - const: evea
+      - const: exiv
+      - const: adamv
+
+  resets:
+    minItems: 3
+    maxItems: 3
+
+  "#sound-dai-cells":
+    const: 1
+
+patternProperties:
+  "^port@[0-9]$":
+    type: object
+    properties:
+      endpoint: true
+    required:
+      - endpoint
+
+additionalProperties: false
+
+required:
+  - compatible
+  - reg
+  - clock-names
+  - clocks
+  - reset-names
+  - resets
+  - "#sound-dai-cells"
+
+examples:
+  - |
+    codec@57900000 {
+        compatible = "socionext,uniphier-evea";
+        reg = <0x57900000 0x1000>;
+        clock-names = "evea", "exiv";
+        clocks = <&sys_clk 41>, <&sys_clk 42>;
+        reset-names = "evea", "exiv", "adamv";
+        resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>;
+        #sound-dai-cells = <1>;
+    };
diff --git a/Documentation/devicetree/bindings/sound/uniphier,evea.txt b/Documentation/devicetree/bindings/sound/uniphier,evea.txt
deleted file mode 100644
index 3f31b235f18b..000000000000
--- a/Documentation/devicetree/bindings/sound/uniphier,evea.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-Socionext EVEA - UniPhier SoC internal codec driver
-
-Required properties:
-- compatible      : should be "socionext,uniphier-evea".
-- reg             : offset and length of the register set for the device.
-- clock-names     : should include following entries:
-                    "evea", "exiv"
-- clocks          : a list of phandle, should contain an entry for each
-                    entries in clock-names.
-- reset-names     : should include following entries:
-                    "evea", "exiv", "adamv"
-- resets          : a list of phandle, should contain reset entries of
-                    reset-names.
-- #sound-dai-cells: should be 1.
-
-Example:
-
-	codec {
-		compatible = "socionext,uniphier-evea";
-		reg = <0x57900000 0x1000>;
-		clock-names = "evea", "exiv";
-		clocks = <&sys_clk 41>, <&sys_clk 42>;
-		reset-names = "evea", "exiv", "adamv";
-		resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>;
-		#sound-dai-cells = <1>;
-	};
-- 
2.25.1


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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-06-23 11:40 [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema Masahiro Yamada
@ 2020-07-14  2:22 ` Rob Herring
  2020-07-14  6:13   ` Masahiro Yamada
  2020-07-14 16:39 ` Mark Brown
  1 sibling, 1 reply; 8+ messages in thread
From: Rob Herring @ 2020-07-14  2:22 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Frank Rowand, Katsuhiro Suzuki, devicetree, Liam Girdwood,
	linux-kernel, -,
	linux-arm-kernel, Mark Brown, Rob Herring

On Tue, 23 Jun 2020 20:40:05 +0900, Masahiro Yamada wrote:
> Convert the UniPhier EVEA sound codec binding to DT schema format.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
> Changes in v2:
>   - Add schema for subnode 'port'
> 
>  .../sound/socionext,uniphier-evea.yaml        | 70 +++++++++++++++++++
>  .../bindings/sound/uniphier,evea.txt          | 26 -------
>  2 files changed, 70 insertions(+), 26 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml
>  delete mode 100644 Documentation/devicetree/bindings/sound/uniphier,evea.txt
> 

Reviewed-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-07-14  2:22 ` Rob Herring
@ 2020-07-14  6:13   ` Masahiro Yamada
  2020-07-14  9:52     ` Mark Brown
  0 siblings, 1 reply; 8+ messages in thread
From: Masahiro Yamada @ 2020-07-14  6:13 UTC (permalink / raw)
  To: Rob Herring
  Cc: Frank Rowand, Katsuhiro Suzuki, DTML, Liam Girdwood,
	Linux Kernel Mailing List, -,
	linux-arm-kernel, Mark Brown, Rob Herring

On Tue, Jul 14, 2020 at 11:22 AM Rob Herring <robh@kernel.org> wrote:
>
> On Tue, 23 Jun 2020 20:40:05 +0900, Masahiro Yamada wrote:
> > Convert the UniPhier EVEA sound codec binding to DT schema format.
> >
> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> > ---
> >
> > Changes in v2:
> >   - Add schema for subnode 'port'
> >
> >  .../sound/socionext,uniphier-evea.yaml        | 70 +++++++++++++++++++
> >  .../bindings/sound/uniphier,evea.txt          | 26 -------
> >  2 files changed, 70 insertions(+), 26 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/sound/socionext,uniphier-evea.yaml
> >  delete mode 100644 Documentation/devicetree/bindings/sound/uniphier,evea.txt
> >
>
> Reviewed-by: Rob Herring <robh@kernel.org>


What do you mean by Reviewed-by ?
Do you expect this to go to the asoc tree?

I just thought the schema conversion
would go through the dt tree.



-- 
Best Regards
Masahiro Yamada

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-07-14  6:13   ` Masahiro Yamada
@ 2020-07-14  9:52     ` Mark Brown
  2020-07-14 11:08       ` Masahiro Yamada
  2020-07-14 17:52       ` Rob Herring
  0 siblings, 2 replies; 8+ messages in thread
From: Mark Brown @ 2020-07-14  9:52 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Rob Herring, Frank Rowand, Katsuhiro Suzuki, DTML, Liam Girdwood,
	Linux Kernel Mailing List, -,
	linux-arm-kernel, Rob Herring

[-- Attachment #1: Type: text/plain, Size: 365 bytes --]

On Tue, Jul 14, 2020 at 03:13:26PM +0900, Masahiro Yamada wrote:

> What do you mean by Reviewed-by ?
> Do you expect this to go to the asoc tree?

> I just thought the schema conversion
> would go through the dt tree.

No, bindings changes usually go through the subsystem - if there's any
other work on the binding then it'll usually also involve driver
changes.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-07-14  9:52     ` Mark Brown
@ 2020-07-14 11:08       ` Masahiro Yamada
  2020-07-14 11:31         ` Mark Brown
  2020-07-14 17:52       ` Rob Herring
  1 sibling, 1 reply; 8+ messages in thread
From: Masahiro Yamada @ 2020-07-14 11:08 UTC (permalink / raw)
  To: Mark Brown
  Cc: Rob Herring, Frank Rowand, Katsuhiro Suzuki, DTML, Liam Girdwood,
	Linux Kernel Mailing List, -,
	linux-arm-kernel, Rob Herring

On Tue, Jul 14, 2020 at 6:53 PM Mark Brown <broonie@kernel.org> wrote:
>
> On Tue, Jul 14, 2020 at 03:13:26PM +0900, Masahiro Yamada wrote:
>
> > What do you mean by Reviewed-by ?
> > Do you expect this to go to the asoc tree?
>
> > I just thought the schema conversion
> > would go through the dt tree.
>
> No, bindings changes usually go through the subsystem - if there's any
> other work on the binding then it'll usually also involve driver
> changes.

OK, then please apply the following two if they look good.

https://lore.kernel.org/patchwork/patch/1261568/
https://lore.kernel.org/patchwork/patch/1261569/

Both got Rob's Reviewed-by.

-- 
Best Regards
Masahiro Yamada

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-07-14 11:08       ` Masahiro Yamada
@ 2020-07-14 11:31         ` Mark Brown
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2020-07-14 11:31 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Rob Herring, Frank Rowand, Katsuhiro Suzuki, DTML, Liam Girdwood,
	Linux Kernel Mailing List, -,
	linux-arm-kernel, Rob Herring

[-- Attachment #1: Type: text/plain, Size: 507 bytes --]

On Tue, Jul 14, 2020 at 08:08:45PM +0900, Masahiro Yamada wrote:
> On Tue, Jul 14, 2020 at 6:53 PM Mark Brown <broonie@kernel.org> wrote:

> > No, bindings changes usually go through the subsystem - if there's any
> > other work on the binding then it'll usually also involve driver
> > changes.

> OK, then please apply the following two if they look good.

> https://lore.kernel.org/patchwork/patch/1261568/
> https://lore.kernel.org/patchwork/patch/1261569/

> Both got Rob's Reviewed-by.

Only today...

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-06-23 11:40 [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema Masahiro Yamada
  2020-07-14  2:22 ` Rob Herring
@ 2020-07-14 16:39 ` Mark Brown
  1 sibling, 0 replies; 8+ messages in thread
From: Mark Brown @ 2020-07-14 16:39 UTC (permalink / raw)
  To: Frank Rowand, devicetree, Masahiro Yamada, Rob Herring
  Cc: -, Liam Girdwood, linux-kernel, Katsuhiro Suzuki, linux-arm-kernel

On Tue, 23 Jun 2020 20:40:05 +0900, Masahiro Yamada wrote:
> Convert the UniPhier EVEA sound codec binding to DT schema format.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: Convert UniPhier EVEA codec to json-schema
      commit: 08277cd63797d97185284bc3e86d085fb9ff2adc

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* Re: [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema
  2020-07-14  9:52     ` Mark Brown
  2020-07-14 11:08       ` Masahiro Yamada
@ 2020-07-14 17:52       ` Rob Herring
  1 sibling, 0 replies; 8+ messages in thread
From: Rob Herring @ 2020-07-14 17:52 UTC (permalink / raw)
  To: Mark Brown, Masahiro Yamada
  Cc: Frank Rowand, Katsuhiro Suzuki, DTML, Liam Girdwood,
	Linux Kernel Mailing List, -,
	linux-arm-kernel

On Tue, Jul 14, 2020 at 3:53 AM Mark Brown <broonie@kernel.org> wrote:
>
> On Tue, Jul 14, 2020 at 03:13:26PM +0900, Masahiro Yamada wrote:
>
> > What do you mean by Reviewed-by ?
> > Do you expect this to go to the asoc tree?

Yes.

> > I just thought the schema conversion
> > would go through the dt tree.
>
> No, bindings changes usually go through the subsystem - if there's any
> other work on the binding then it'll usually also involve driver
> changes.

I have been taking some conversions so I can test them when they are
standalone, there's a low chance of other changes, and the maintainer
tends to be slow to apply and pickup fixes (not Mark).

Rob

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

end of thread, other threads:[~2020-07-14 17:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-23 11:40 [PATCH v2] dt-bindings: ASoC: Convert UniPhier EVEA codec to json-schema Masahiro Yamada
2020-07-14  2:22 ` Rob Herring
2020-07-14  6:13   ` Masahiro Yamada
2020-07-14  9:52     ` Mark Brown
2020-07-14 11:08       ` Masahiro Yamada
2020-07-14 11:31         ` Mark Brown
2020-07-14 17:52       ` Rob Herring
2020-07-14 16:39 ` 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).