Convert the device tree bindings for the Oxford Semiconductor OXNAS reset controllers to YAML schema to allow participating in DT validation. Signed-off-by: Philipp Zabel <p.zabel@xxxxxxxxxxxxxx> Cc: Neil Armstrong <narmstrong@xxxxxxxxxxxx> --- .../devicetree/bindings/reset/oxnas,reset.txt | 32 ------------- .../bindings/reset/oxsemi,oxnas-reset.yaml | 48 +++++++++++++++++++ 2 files changed, 48 insertions(+), 32 deletions(-) delete mode 100644 Documentation/devicetree/bindings/reset/oxnas,reset.txt create mode 100644 Documentation/devicetree/bindings/reset/oxsemi,oxnas-reset.yaml diff --git a/Documentation/devicetree/bindings/reset/oxnas,reset.txt b/Documentation/devicetree/bindings/reset/oxnas,reset.txt deleted file mode 100644 index d27ccb5d04fc..000000000000 --- a/Documentation/devicetree/bindings/reset/oxnas,reset.txt +++ /dev/null @@ -1,32 +0,0 @@ -Oxford Semiconductor OXNAS SoC Family RESET Controller -================================================ - -Please also refer to reset.txt in this directory for common reset -controller binding usage. - -Required properties: -- compatible: For OX810SE, should be "oxsemi,ox810se-reset" - For OX820, should be "oxsemi,ox820-reset" -- #reset-cells: 1, see below - -Parent node should have the following properties : -- compatible: For OX810SE, should be : - "oxsemi,ox810se-sys-ctrl", "syscon", "simple-mfd" - For OX820, should be : - "oxsemi,ox820-sys-ctrl", "syscon", "simple-mfd" - -Reset indices are in dt-bindings include files : -- For OX810SE: include/dt-bindings/reset/oxsemi,ox810se.h -- For OX820: include/dt-bindings/reset/oxsemi,ox820.h - -example: - -sys: sys-ctrl@000000 { - compatible = "oxsemi,ox810se-sys-ctrl", "syscon", "simple-mfd"; - reg = <0x000000 0x100000>; - - reset: reset-controller { - compatible = "oxsemi,ox810se-reset"; - #reset-cells = <1>; - }; -}; diff --git a/Documentation/devicetree/bindings/reset/oxsemi,oxnas-reset.yaml b/Documentation/devicetree/bindings/reset/oxsemi,oxnas-reset.yaml new file mode 100644 index 000000000000..3cd2ce85a056 --- /dev/null +++ b/Documentation/devicetree/bindings/reset/oxsemi,oxnas-reset.yaml @@ -0,0 +1,48 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/reset/oxsemi,oxnas-reset.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Oxford Semiconductor OXNAS SoC Family RESET Controller + +maintainers: + - Neil Armstrong <narmstrong@xxxxxxxxxxxx> + +description: | + Reset indices are in dt bindings include files: + - For OX810SE: include/dt-bindings/reset/oxsemi,ox810se.h + - For OX820: include/dt-bindings/reset/oxsemi,ox820.h + +properties: + compatible: + enum: + - oxsemi,ox810se-reset + - oxsemi,ox820-reset + + reg: + maxItems: 1 + + '#reset-cells': + const: 1 + +required: + - compatible + - '#reset-cells' + +additionalProperties: false + +examples: + - | + // For OX810SE: + #include <dt-bindings/reset/oxsemi,ox810se.h> + + sys: sys-ctrl@000000 { + compatible = "oxsemi,ox810se-sys-ctrl", "syscon", "simple-mfd"; + reg = <0x000000 0x100000>; + + reset: reset-controller { + compatible = "oxsemi,ox810se-reset"; + #reset-cells = <1>; + }; + }; -- 2.30.2