linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pinctrl: dt-bindings: Fix some errors in the lgm and pinmux schema
@ 2020-01-13 21:34 Linus Walleij
  2020-01-14  2:33 ` Tanwar, Rahul
  0 siblings, 1 reply; 2+ messages in thread
From: Linus Walleij @ 2020-01-13 21:34 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij, Rob Herring, Rahul Tanwar

This fixes some problems that caused build errors in the
lgm-io schema file:

- No "bindings" infix in the schema id
- Move the allOf inclusion for pinconf and pinmux nodes into
  the patternProperties for the -pins node
- We want "groups" not "group" to be compulsory for a pinmux
  node blended with a pin config node.
- Fix the generic pinmux-schema to list "groups" rather than
  "group" for a pinmux node, this might have led to some confusion.

This is a first user of the generic schema so a bit of a bumpy
road.

Cc: Rob Herring <robh+dt@kernel.org>
Cc: Rahul Tanwar <rahul.tanwar@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
This was applied directly to fix compile errors in -next
so please advice quickly if I added further bugs...
---
 .../devicetree/bindings/pinctrl/intel,lgm-io.yaml   | 13 ++++++-------
 .../devicetree/bindings/pinctrl/pinmux-node.yaml    |  2 +-
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml b/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
index a386fb520510..cd2b436350ef 100644
--- a/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
 %YAML 1.2
 ---
-$id: http://devicetree.org/schemas/bindings/pinctrl/intel,lgm-io.yaml#
+$id: http://devicetree.org/schemas/pinctrl/intel,lgm-io.yaml#
 $schema: http://devicetree.org/meta-schemas/core.yaml#
 
 title: Intel Lightning Mountain SoC pinmux & GPIO controller binding
@@ -13,10 +13,6 @@ description: |
   Pinmux & GPIO controller controls pin multiplexing & configuration including
   GPIO function selection & GPIO attributes configuration.
 
-allOf:
-  - $ref: pincfg-node.yaml#
-  - $ref: pinmux-node.yaml#
-
 properties:
   compatible:
     const: intel,lgm-io
@@ -28,13 +24,16 @@ properties:
 patternProperties:
   '-pins$':
     type: object
+    allOf:
+      - $ref: pincfg-node.yaml#
+      - $ref: pinmux-node.yaml#
     description:
       Pinctrl node's client devices use subnodes for desired pin configuration.
       Client device subnodes use below standard properties.
 
     properties:
       function: true
-      group: true
+      groups: true
       pins: true
       pinmux: true
       bias-pull-up: true
@@ -46,7 +45,7 @@ patternProperties:
 
     required:
       - function
-      - group
+      - groups
 
     additionalProperties: false
 
diff --git a/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml b/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
index 777623a57fd5..732d9075560b 100644
--- a/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
@@ -114,7 +114,7 @@ properties:
       specific binding for the hardware defines whether the entries are integers
       or strings, and their meaning.
 
-  group:
+  groups:
     $ref: /schemas/types.yaml#/definitions/string-array
     description:
       the group to apply the properties to, if the driver supports
-- 
2.23.0


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

* Re: [PATCH] pinctrl: dt-bindings: Fix some errors in the lgm and pinmux schema
  2020-01-13 21:34 [PATCH] pinctrl: dt-bindings: Fix some errors in the lgm and pinmux schema Linus Walleij
@ 2020-01-14  2:33 ` Tanwar, Rahul
  0 siblings, 0 replies; 2+ messages in thread
From: Tanwar, Rahul @ 2020-01-14  2:33 UTC (permalink / raw)
  To: Linus Walleij, linux-gpio; +Cc: Rob Herring


Thanks a lot Linus. Sorry for the inconvenience.

Hi Rob,

Sorry about the mistake. FWIW, i did run make dt_binding_check and ensured
that CHKDT step passes. But its obvious that i missed something. Let me
figureout what i missed to avoid making same mistakes in future.

Regards,
Rahul


On 14/1/2020 5:34 AM, Linus Walleij wrote:
> This fixes some problems that caused build errors in the
> lgm-io schema file:
>
> - No "bindings" infix in the schema id
> - Move the allOf inclusion for pinconf and pinmux nodes into
>   the patternProperties for the -pins node
> - We want "groups" not "group" to be compulsory for a pinmux
>   node blended with a pin config node.
> - Fix the generic pinmux-schema to list "groups" rather than
>   "group" for a pinmux node, this might have led to some confusion.
>
> This is a first user of the generic schema so a bit of a bumpy
> road.
>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Rahul Tanwar <rahul.tanwar@linux.intel.com>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> This was applied directly to fix compile errors in -next
> so please advice quickly if I added further bugs...
> ---
>  .../devicetree/bindings/pinctrl/intel,lgm-io.yaml   | 13 ++++++-------
>  .../devicetree/bindings/pinctrl/pinmux-node.yaml    |  2 +-
>  2 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml b/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
> index a386fb520510..cd2b436350ef 100644
> --- a/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/intel,lgm-io.yaml
> @@ -1,7 +1,7 @@
>  # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>  %YAML 1.2
>  ---
> -$id: http://devicetree.org/schemas/bindings/pinctrl/intel,lgm-io.yaml#
> +$id: http://devicetree.org/schemas/pinctrl/intel,lgm-io.yaml#
>  $schema: http://devicetree.org/meta-schemas/core.yaml#
>  
>  title: Intel Lightning Mountain SoC pinmux & GPIO controller binding
> @@ -13,10 +13,6 @@ description: |
>    Pinmux & GPIO controller controls pin multiplexing & configuration including
>    GPIO function selection & GPIO attributes configuration.
>  
> -allOf:
> -  - $ref: pincfg-node.yaml#
> -  - $ref: pinmux-node.yaml#
> -
>  properties:
>    compatible:
>      const: intel,lgm-io
> @@ -28,13 +24,16 @@ properties:
>  patternProperties:
>    '-pins$':
>      type: object
> +    allOf:
> +      - $ref: pincfg-node.yaml#
> +      - $ref: pinmux-node.yaml#
>      description:
>        Pinctrl node's client devices use subnodes for desired pin configuration.
>        Client device subnodes use below standard properties.
>  
>      properties:
>        function: true
> -      group: true
> +      groups: true
>        pins: true
>        pinmux: true
>        bias-pull-up: true
> @@ -46,7 +45,7 @@ patternProperties:
>  
>      required:
>        - function
> -      - group
> +      - groups
>  
>      additionalProperties: false
>  
> diff --git a/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml b/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
> index 777623a57fd5..732d9075560b 100644
> --- a/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/pinmux-node.yaml
> @@ -114,7 +114,7 @@ properties:
>        specific binding for the hardware defines whether the entries are integers
>        or strings, and their meaning.
>  
> -  group:
> +  groups:
>      $ref: /schemas/types.yaml#/definitions/string-array
>      description:
>        the group to apply the properties to, if the driver supports


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

end of thread, other threads:[~2020-01-14  2:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13 21:34 [PATCH] pinctrl: dt-bindings: Fix some errors in the lgm and pinmux schema Linus Walleij
2020-01-14  2:33 ` Tanwar, Rahul

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