2020-04-20 14:59:59

by Benjamin GAIGNARD

[permalink] [raw]
Subject: [PATCH 3/5] dt-bindings: bus: Add STM32 ETZPC firewall controller

Document STM32 ETZPC firewall controller bindings

Signed-off-by: Benjamin Gaignard <[email protected]>
---
.../bindings/bus/stm32/st,stm32-etzpc.yaml | 46 ++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.yaml

diff --git a/Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.yaml b/Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.yaml
new file mode 100644
index 000000000000..a684475ef339
--- /dev/null
+++ b/Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.yaml
@@ -0,0 +1,46 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/bus/stm32/st,stm32-etzpc.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: STM32 Extended TrustZone Protection controller
+
+maintainers:
+ - Benjamin Gaignard <[email protected]>
+
+description: STMicroelectronics's STM32 firewall bus controller implementation
+
+allOf:
+ - $ref: "firewall-provider.yaml#"
+ - $ref: /schemas/simple-bus.yaml#
+
+properties:
+ compatible:
+ contains:
+ enum:
+ - st,stm32-etzpc-bus
+
+ reg:
+ maxItems: 1
+
+ '#firewall-cells':
+ const: 2
+
+required:
+ - compatible
+ - reg
+ - '#firewall-cells'
+
+examples:
+ - |
+ soc {
+ compatible = "st,stm32-etzpc-bus", "simple-bus";
+ reg = <0x5c007000 0x400>;
+ #firewall-cells = <2>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges;
+ };
+
+...
--
2.15.0


2020-04-20 18:03:38

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH 3/5] dt-bindings: bus: Add STM32 ETZPC firewall controller

On Mon, 20 Apr 2020 15:47:58 +0200, Benjamin Gaignard wrote:
> Document STM32 ETZPC firewall controller bindings
>
> Signed-off-by: Benjamin Gaignard <[email protected]>
> ---
> .../bindings/bus/stm32/st,stm32-etzpc.yaml | 46 ++++++++++++++++++++++
> 1 file changed, 46 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.yaml
>

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

Documentation/devicetree/bindings/bus/stm32/st,stm32-etzpc.example.dts:17.5-24.11: Warning (unit_address_vs_reg): /example-0/soc: node has a reg or ranges property, but no unit name

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

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

pip3 install git+https://github.com/devicetree-org/dt-schema.git@master --upgrade

Please check and re-submit.