* [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding
@ 2020-12-10 12:21 József Horváth
2020-12-11 3:01 ` Rob Herring
2020-12-11 3:02 ` Rob Herring
0 siblings, 2 replies; 3+ messages in thread
From: József Horváth @ 2020-12-10 12:21 UTC (permalink / raw)
To: 'Rob Herring', 'Greg Kroah-Hartman',
'József Horváth', devicetree, linux-kernel,
devel
add: device tree binding schema
Signed-off-by: József Horváth <info@ministro.hu>
---
.../bindings/serial/silabs,si4455.yaml | 53 +++++++++++++++++++
MAINTAINERS | 2 +-
2 files changed, 54 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/serial/silabs,si4455.yaml
diff --git a/Documentation/devicetree/bindings/serial/silabs,si4455.yaml b/Documentation/devicetree/bindings/serial/silabs,si4455.yaml
new file mode 100644
index 000000000000..80a73a61755b
--- /dev/null
+++ b/Documentation/devicetree/bindings/serial/silabs,si4455.yaml
@@ -0,0 +1,53 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/serial/silabs,si4455.yaml#"
+$schema: "http://devicetree.org/meta-schemas/core.yaml#"
+
+title: Silicon Labs Si4455 device tree bindings
+
+maintainers:
+ - József Horváth <info@ministro.hu>
+
+allOf:
+ - $ref: "/schemas/serial.yaml#"
+
+properties:
+ compatible:
+ const: silabs,si4455
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ spi-max-frequency:
+ description: maximum clock frequency on SPI port
+ maximum: 500000
+
+ shutdown-gpios:
+ description: gpio pin for SDN
+ maxItems: 1
+
+required:
+ - reg
+ - interrupts
+ - spi-max-frequency
+ - shutdown-gpios
+
+additionalProperties: false
+
+examples:
+ - |
+ &spi0 {
+ serial0: si4455@0 {
+ compatible = "silabs,si4455";
+ reg = <0>;
+ interrupt-parent = <&gpio>;
+ interrupts = <7 IRQ_TYPE_LEVEL_LOW>;
+ shutdown-gpios = <&gpio 26 1>;
+ spi-max-frequency = <300000>;
+ };
+ };
+...
diff --git a/MAINTAINERS b/MAINTAINERS
index a29bc17d446d..16cc96971ac2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -15937,7 +15937,7 @@ F: drivers/platform/x86/touchscreen_dmi.c
SILICON LABS SI4455 SERIAL DRIVER
M: József Horváth <info@ministro.hu>
S: Maintained
-F: Documentation/devicetree/bindings/staging/serial/silabs,si4455.txt
+F: Documentation/devicetree/bindings/serial/silabs,si4455.yaml
F: drivers/tty/serial/si4455.c
F: drivers/tty/serial/si4455_api.h
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding
2020-12-10 12:21 [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding József Horváth
@ 2020-12-11 3:01 ` Rob Herring
2020-12-11 3:02 ` Rob Herring
1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring @ 2020-12-11 3:01 UTC (permalink / raw)
To: József Horváth
Cc: 'Greg Kroah-Hartman', devicetree, linux-kernel, devel
On Thu, Dec 10, 2020 at 12:21:56PM +0000, József Horváth wrote:
> add: device tree binding schema
For the subject, follow conventions of the directory. Something like:
dt-bindings: serial: Add SiLabs SI4455 schema
> Signed-off-by: József Horváth <info@ministro.hu>
> ---
> .../bindings/serial/silabs,si4455.yaml | 53 +++++++++++++++++++
> MAINTAINERS | 2 +-
> 2 files changed, 54 insertions(+), 1 deletion(-)
> create mode 100644 Documentation/devicetree/bindings/serial/silabs,si4455.yaml
>
> diff --git a/Documentation/devicetree/bindings/serial/silabs,si4455.yaml b/Documentation/devicetree/bindings/serial/silabs,si4455.yaml
> new file mode 100644
> index 000000000000..80a73a61755b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/serial/silabs,si4455.yaml
> @@ -0,0 +1,53 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: "http://devicetree.org/schemas/serial/silabs,si4455.yaml#"
> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
> +
> +title: Silicon Labs Si4455 device tree bindings
Add 'description' with some info on this h/w and possibly a link to
datasheet if available.
> +
> +maintainers:
> + - József Horváth <info@ministro.hu>
> +
> +allOf:
> + - $ref: "/schemas/serial.yaml#"
> +
> +properties:
> + compatible:
> + const: silabs,si4455
> +
> + reg:
> + maxItems: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + spi-max-frequency:
> + description: maximum clock frequency on SPI port
> + maximum: 500000
> +
> + shutdown-gpios:
> + description: gpio pin for SDN
> + maxItems: 1
> +
> +required:
> + - reg
> + - interrupts
> + - spi-max-frequency
> + - shutdown-gpios
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + &spi0 {
> + serial0: si4455@0 {
> + compatible = "silabs,si4455";
> + reg = <0>;
> + interrupt-parent = <&gpio>;
> + interrupts = <7 IRQ_TYPE_LEVEL_LOW>;
> + shutdown-gpios = <&gpio 26 1>;
> + spi-max-frequency = <300000>;
> + };
> + };
> +...
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a29bc17d446d..16cc96971ac2 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15937,7 +15937,7 @@ F: drivers/platform/x86/touchscreen_dmi.c
> SILICON LABS SI4455 SERIAL DRIVER
> M: József Horváth <info@ministro.hu>
> S: Maintained
> -F: Documentation/devicetree/bindings/staging/serial/silabs,si4455.txt
This is a new file, right?
> +F: Documentation/devicetree/bindings/serial/silabs,si4455.yaml
> F: drivers/tty/serial/si4455.c
> F: drivers/tty/serial/si4455_api.h
>
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding
2020-12-10 12:21 [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding József Horváth
2020-12-11 3:01 ` Rob Herring
@ 2020-12-11 3:02 ` Rob Herring
1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring @ 2020-12-11 3:02 UTC (permalink / raw)
To: József Horváth
Cc: devicetree, devel, linux-kernel, 'Rob Herring',
'Greg Kroah-Hartman'
On Thu, 10 Dec 2020 12:21:56 +0000, József Horváth wrote:
> add: device tree binding schema
>
> Signed-off-by: József Horváth <info@ministro.hu>
> ---
> .../bindings/serial/silabs,si4455.yaml | 53 +++++++++++++++++++
> MAINTAINERS | 2 +-
> 2 files changed, 54 insertions(+), 1 deletion(-)
> create mode 100644 Documentation/devicetree/bindings/serial/silabs,si4455.yaml
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
Error: Documentation/devicetree/bindings/serial/silabs,si4455.example.dts:19.9-14 syntax error
FATAL ERROR: Unable to parse input tree
make[1]: *** [scripts/Makefile.lib:342: Documentation/devicetree/bindings/serial/silabs,si4455.example.dt.yaml] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [Makefile:1364: dt_binding_check] Error 2
See https://patchwork.ozlabs.org/patch/1414082
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] 3+ messages in thread
end of thread, other threads:[~2020-12-11 3:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-10 12:21 [PATCH v1 2/2] Staging: silabs si4455 serial driver: docs device tree binding József Horváth
2020-12-11 3:01 ` Rob Herring
2020-12-11 3:02 ` Rob Herring
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).