linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC
@ 2020-12-09 16:57 Aswath Govindraju
  2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Aswath Govindraju @ 2020-12-09 16:57 UTC (permalink / raw)
  Cc: Sekhar Nori, Aswath Govindraju, Keerthy, Linus Walleij,
	Bartosz Golaszewski, Rob Herring, linux-gpio, devicetree,
	linux-kernel

Add compatible string for AM64 SoC in device tree binding of davinci GPIO
modules as the same IP is used.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 Documentation/devicetree/bindings/gpio/gpio-davinci.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/gpio/gpio-davinci.txt b/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
index cd91d61eac31..696ea46227d1 100644
--- a/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
+++ b/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
@@ -7,6 +7,7 @@ Required Properties:
 			"ti,k2g-gpio", "ti,keystone-gpio": for 66AK2G
 			"ti,am654-gpio", "ti,keystone-gpio": for TI K3 AM654
 			"ti,j721e-gpio", "ti,keystone-gpio": for J721E SoCs
+			"ti,am64-gpio", "ti,keystone-gpio": for AM64 SoCs
 
 - reg: Physical base address of the controller and the size of memory mapped
        registers.
-- 
2.17.1


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

* [PATCH] dt-bindings: usb: Add new compatible string for AM64 SoC
  2020-12-09 16:57 [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC Aswath Govindraju
@ 2020-12-09 16:57 ` Aswath Govindraju
  2020-12-09 19:33   ` Rob Herring
  2020-12-09 19:34   ` Rob Herring
  2020-12-09 16:57 ` [PATCH] dt-bindings: i2c: Add " Aswath Govindraju
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Aswath Govindraju @ 2020-12-09 16:57 UTC (permalink / raw)
  Cc: Sekhar Nori, Aswath Govindraju, Greg Kroah-Hartman, Rob Herring,
	Roger Quadros, linux-usb, devicetree, linux-kernel

Add compatible string in j721e-usb binding file as similar USB subsystem
is present in AM64.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
Acked-by: Roger Quadros <rogerq@ti.com>
---
 Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
index 388245b91a55..05d976bb06d0 100644
--- a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
+++ b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
@@ -11,8 +11,11 @@ maintainers:
 
 properties:
   compatible:
-    items:
-      - const: ti,j721e-usb
+    anyOf:
+      - items:
+	  - const: ti,j721e-usb
+      - items:
+	  - const: ti,am64-usb
 
   reg:
     description: module registers
-- 
2.17.1


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

* [PATCH] dt-bindings: i2c: Add compatible string for AM64 SoC
  2020-12-09 16:57 [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC Aswath Govindraju
  2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
@ 2020-12-09 16:57 ` Aswath Govindraju
  2020-12-10  2:49   ` Rob Herring
  2020-12-10  2:49 ` [PATCH] dt-bindings: gpio: " Rob Herring
  2021-01-06 10:19 ` Bartosz Golaszewski
  3 siblings, 1 reply; 9+ messages in thread
From: Aswath Govindraju @ 2020-12-09 16:57 UTC (permalink / raw)
  Cc: Sekhar Nori, Aswath Govindraju, Vignesh R, Rob Herring,
	linux-omap, linux-i2c, devicetree, linux-kernel

Add compatible string for AM64 SoC in device tree binding of OMAP I2C
modules as the same IP is used.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 Documentation/devicetree/bindings/i2c/i2c-omap.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-omap.txt b/Documentation/devicetree/bindings/i2c/i2c-omap.txt
index a44573d7c118..a425b91af48f 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-omap.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-omap.txt
@@ -8,6 +8,7 @@ Required properties :
 	"ti,omap4-i2c" for OMAP4+ SoCs
 	"ti,am654-i2c", "ti,omap4-i2c" for AM654 SoCs
 	"ti,j721e-i2c", "ti,omap4-i2c" for J721E SoCs
+	"ti,am64-i2c", "ti,omap4-i2c" for AM64 SoCs
 - ti,hwmods : Must be "i2c<n>", n being the instance number (1-based)
 - #address-cells = <1>;
 - #size-cells = <0>;
-- 
2.17.1


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

* Re: [PATCH] dt-bindings: usb: Add new compatible string for AM64 SoC
  2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
@ 2020-12-09 19:33   ` Rob Herring
  2020-12-09 19:34   ` Rob Herring
  1 sibling, 0 replies; 9+ messages in thread
From: Rob Herring @ 2020-12-09 19:33 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: linux-kernel, devicetree, linux-usb, Rob Herring, Roger Quadros,
	Greg Kroah-Hartman, Sekhar Nori

On Wed, 09 Dec 2020 22:27:32 +0530, Aswath Govindraju wrote:
> Add compatible string in j721e-usb binding file as similar USB subsystem
> is present in AM64.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> Acked-by: Roger Quadros <rogerq@ti.com>
> ---
>  Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 


My bot found errors running 'make dt_binding_check' on your patch:

yamllint warnings/errors:
./Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml:16:1: [error] syntax error: found character '\t' that cannot start any token (syntax)

dtschema/dtc warnings/errors:
Traceback (most recent call last):
  File "/usr/local/bin/dt-extract-example", line 45, in <module>
    binding = yaml.load(open(args.yamlfile, encoding='utf-8').read())
  File "/usr/local/lib/python3.8/dist-packages/ruamel/yaml/main.py", line 343, in load
    return constructor.get_single_data()
  File "/usr/local/lib/python3.8/dist-packages/ruamel/yaml/constructor.py", line 111, in get_single_data
    node = self.composer.get_single_node()
  File "_ruamel_yaml.pyx", line 706, in _ruamel_yaml.CParser.get_single_node
  File "_ruamel_yaml.pyx", line 724, in _ruamel_yaml.CParser._compose_document
  File "_ruamel_yaml.pyx", line 775, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 889, in _ruamel_yaml.CParser._compose_mapping_node
  File "_ruamel_yaml.pyx", line 775, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 889, in _ruamel_yaml.CParser._compose_mapping_node
  File "_ruamel_yaml.pyx", line 775, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 889, in _ruamel_yaml.CParser._compose_mapping_node
  File "_ruamel_yaml.pyx", line 773, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 850, in _ruamel_yaml.CParser._compose_sequence_node
  File "_ruamel_yaml.pyx", line 775, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 889, in _ruamel_yaml.CParser._compose_mapping_node
  File "_ruamel_yaml.pyx", line 731, in _ruamel_yaml.CParser._compose_node
  File "_ruamel_yaml.pyx", line 904, in _ruamel_yaml.CParser._parse_next_event
ruamel.yaml.scanner.ScannerError: while scanning for the next token
found character that cannot start any token
  in "<unicode string>", line 16, column 1
make[1]: *** [Documentation/devicetree/bindings/Makefile:20: Documentation/devicetree/bindings/usb/ti,j721e-usb.example.dts] Error 1
make[1]: *** Deleting file 'Documentation/devicetree/bindings/usb/ti,j721e-usb.example.dts'
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [Documentation/devicetree/bindings/Makefile:59: Documentation/devicetree/bindings/processed-schema-examples.json] Error 123
make: *** [Makefile:1364: dt_binding_check] Error 2


See https://patchwork.ozlabs.org/patch/1413512

The base for the patch is generally the last rc1. Any dependencies
should be noted.

If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:

pip3 install dtschema --upgrade

Please check and re-submit.


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

* Re: [PATCH] dt-bindings: usb: Add new compatible string for AM64 SoC
  2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
  2020-12-09 19:33   ` Rob Herring
@ 2020-12-09 19:34   ` Rob Herring
  2020-12-10  5:27     ` [EXTERNAL] " Aswath Govindraju
  1 sibling, 1 reply; 9+ messages in thread
From: Rob Herring @ 2020-12-09 19:34 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Sekhar Nori, Greg Kroah-Hartman, Roger Quadros, linux-usb,
	devicetree, linux-kernel

On Wed, Dec 09, 2020 at 10:27:32PM +0530, Aswath Govindraju wrote:
> Add compatible string in j721e-usb binding file as similar USB subsystem
> is present in AM64.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> Acked-by: Roger Quadros <rogerq@ti.com>
> ---
>  Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
> index 388245b91a55..05d976bb06d0 100644
> --- a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
> +++ b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
> @@ -11,8 +11,11 @@ maintainers:
>  
>  properties:
>    compatible:
> -    items:
> -      - const: ti,j721e-usb
> +    anyOf:
> +      - items:
> +	  - const: ti,j721e-usb
> +      - items:
> +	  - const: ti,am64-usb

Use 'enum'.

>  
>    reg:
>      description: module registers
> -- 
> 2.17.1
> 

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

* Re: [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC
  2020-12-09 16:57 [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC Aswath Govindraju
  2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
  2020-12-09 16:57 ` [PATCH] dt-bindings: i2c: Add " Aswath Govindraju
@ 2020-12-10  2:49 ` Rob Herring
  2021-01-06 10:19 ` Bartosz Golaszewski
  3 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2020-12-10  2:49 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Bartosz Golaszewski, Linus Walleij, devicetree, linux-kernel,
	Sekhar Nori, Keerthy, linux-gpio, Rob Herring

On Wed, 09 Dec 2020 22:27:31 +0530, Aswath Govindraju wrote:
> Add compatible string for AM64 SoC in device tree binding of davinci GPIO
> modules as the same IP is used.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> ---
>  Documentation/devicetree/bindings/gpio/gpio-davinci.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH] dt-bindings: i2c: Add compatible string for AM64 SoC
  2020-12-09 16:57 ` [PATCH] dt-bindings: i2c: Add " Aswath Govindraju
@ 2020-12-10  2:49   ` Rob Herring
  0 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2020-12-10  2:49 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: linux-kernel, linux-i2c, Rob Herring, devicetree, Vignesh R,
	linux-omap, Sekhar Nori

On Wed, 09 Dec 2020 22:27:33 +0530, Aswath Govindraju wrote:
> Add compatible string for AM64 SoC in device tree binding of OMAP I2C
> modules as the same IP is used.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> ---
>  Documentation/devicetree/bindings/i2c/i2c-omap.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [EXTERNAL] Re: [PATCH] dt-bindings: usb: Add new compatible string for AM64 SoC
  2020-12-09 19:34   ` Rob Herring
@ 2020-12-10  5:27     ` Aswath Govindraju
  0 siblings, 0 replies; 9+ messages in thread
From: Aswath Govindraju @ 2020-12-10  5:27 UTC (permalink / raw)
  To: Rob Herring
  Cc: Sekhar Nori, Greg Kroah-Hartman, Roger Quadros, linux-usb,
	devicetree, linux-kernel

Hi Robert,

On 10/12/20 1:04 am, Rob Herring wrote:
> On Wed, Dec 09, 2020 at 10:27:32PM +0530, Aswath Govindraju wrote:
>> Add compatible string in j721e-usb binding file as similar USB subsystem
>> is present in AM64.
>>
>> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
>> Acked-by: Roger Quadros <rogerq@ti.com>
>> ---
>>  Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml | 7 +++++--
>>  1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
>> index 388245b91a55..05d976bb06d0 100644
>> --- a/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
>> +++ b/Documentation/devicetree/bindings/usb/ti,j721e-usb.yaml
>> @@ -11,8 +11,11 @@ maintainers:
>>  
>>  properties:
>>    compatible:
>> -    items:
>> -      - const: ti,j721e-usb
>> +    anyOf:
>> +      - items:
>> +	  - const: ti,j721e-usb
>> +      - items:
>> +	  - const: ti,am64-usb
> 
> Use 'enum'.
> 
Thank you for the comments.

I used anyOf to mention that the compatible strings can be either used
separately or together in the DT files after referring [1].

Using enum brought in constraints such as if one compatible string is
used the other cannot be used.

The error that I made was use of '\t' at the start of the lines. I will
correct it and send a respin.


[1]https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/example-schema.yaml

Thanks,
Aswath

>>  
>>    reg:
>>      description: module registers
>> -- 
>> 2.17.1
>>


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

* Re: [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC
  2020-12-09 16:57 [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC Aswath Govindraju
                   ` (2 preceding siblings ...)
  2020-12-10  2:49 ` [PATCH] dt-bindings: gpio: " Rob Herring
@ 2021-01-06 10:19 ` Bartosz Golaszewski
  3 siblings, 0 replies; 9+ messages in thread
From: Bartosz Golaszewski @ 2021-01-06 10:19 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Sekhar Nori, Keerthy, Linus Walleij, Rob Herring, linux-gpio,
	linux-devicetree, LKML

On Wed, Dec 9, 2020 at 5:57 PM Aswath Govindraju <a-govindraju@ti.com> wrote:
>
> Add compatible string for AM64 SoC in device tree binding of davinci GPIO
> modules as the same IP is used.
>
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> ---
>  Documentation/devicetree/bindings/gpio/gpio-davinci.txt | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/gpio/gpio-davinci.txt b/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
> index cd91d61eac31..696ea46227d1 100644
> --- a/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
> +++ b/Documentation/devicetree/bindings/gpio/gpio-davinci.txt
> @@ -7,6 +7,7 @@ Required Properties:
>                         "ti,k2g-gpio", "ti,keystone-gpio": for 66AK2G
>                         "ti,am654-gpio", "ti,keystone-gpio": for TI K3 AM654
>                         "ti,j721e-gpio", "ti,keystone-gpio": for J721E SoCs
> +                       "ti,am64-gpio", "ti,keystone-gpio": for AM64 SoCs
>
>  - reg: Physical base address of the controller and the size of memory mapped
>         registers.
> --
> 2.17.1
>

Patch applied with Rob's Ack.

Thanks!
Bartosz

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

end of thread, other threads:[~2021-01-06 10:20 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-09 16:57 [PATCH] dt-bindings: gpio: Add compatible string for AM64 SoC Aswath Govindraju
2020-12-09 16:57 ` [PATCH] dt-bindings: usb: Add new " Aswath Govindraju
2020-12-09 19:33   ` Rob Herring
2020-12-09 19:34   ` Rob Herring
2020-12-10  5:27     ` [EXTERNAL] " Aswath Govindraju
2020-12-09 16:57 ` [PATCH] dt-bindings: i2c: Add " Aswath Govindraju
2020-12-10  2:49   ` Rob Herring
2020-12-10  2:49 ` [PATCH] dt-bindings: gpio: " Rob Herring
2021-01-06 10:19 ` Bartosz Golaszewski

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