From: Geert Uytterhoeven Date: Mon, 2 May 2022 12:40:57 +0000 (+0200) Subject: dt-bindings: soc: renesas: Move renesas,prr from arm to soc X-Git-Tag: microblaze-v6.1~197^2~29^2~2 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=774fecc7ece1d5b7c604402ac2daede14825a467;p=linux-2.6-microblaze.git dt-bindings: soc: renesas: Move renesas,prr from arm to soc The Renesas Product Register DT binding is not a top-level DT binding, hence it does not belong under Documentation/devicetree/bindings/arm/. Move it to Documentation/devicetree/bindings/soc/renesas/. While at it, change the license from GPL-2.0 (only) to GPL-2.0-only OR BSD-2-Clause, to match common practices. Signed-off-by: Geert Uytterhoeven Acked-by: Krzysztof Kozlowski Acked-by: Simon Horman Link: https://lore.kernel.org/r/5f124fc332b4b866f5238ada7ac000f4639c88c3.1651495078.git.geert+renesas@glider.be --- diff --git a/Documentation/devicetree/bindings/arm/renesas,prr.yaml b/Documentation/devicetree/bindings/arm/renesas,prr.yaml deleted file mode 100644 index 1f80767da38b..000000000000 --- a/Documentation/devicetree/bindings/arm/renesas,prr.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0 -%YAML 1.2 ---- -$id: http://devicetree.org/schemas/arm/renesas,prr.yaml# -$schema: http://devicetree.org/meta-schemas/core.yaml# - -title: Renesas Product Register - -maintainers: - - Geert Uytterhoeven - - Magnus Damm - -description: | - Most Renesas ARM SoCs have a Product Register or Boundary Scan ID - Register that allows to retrieve SoC product and revision information. - If present, a device node for this register should be added. - -properties: - compatible: - enum: - - renesas,prr - - renesas,bsid - reg: - maxItems: 1 - -required: - - compatible - - reg - -additionalProperties: false - -examples: - - | - prr: chipid@ff000044 { - compatible = "renesas,prr"; - reg = <0xff000044 4>; - }; diff --git a/Documentation/devicetree/bindings/soc/renesas/renesas,prr.yaml b/Documentation/devicetree/bindings/soc/renesas/renesas,prr.yaml new file mode 100644 index 000000000000..654c96638e75 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/renesas/renesas,prr.yaml @@ -0,0 +1,37 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/soc/renesas/renesas,prr.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Renesas Product Register + +maintainers: + - Geert Uytterhoeven + - Magnus Damm + +description: | + Most Renesas ARM SoCs have a Product Register or Boundary Scan ID + Register that allows to retrieve SoC product and revision information. + If present, a device node for this register should be added. + +properties: + compatible: + enum: + - renesas,prr + - renesas,bsid + reg: + maxItems: 1 + +required: + - compatible + - reg + +additionalProperties: false + +examples: + - | + prr: chipid@ff000044 { + compatible = "renesas,prr"; + reg = <0xff000044 4>; + };