Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML

Convert Broadcom Kona family reset manager bindings to DT schema.

Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Link: https://lore.kernel.org/r/20230527141222.GA5048@standask-GA-A55M-S2HP
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>

authored by

Stanislav Jakubek and committed by
Florian Fainelli
7121458e 9ad7f375

+31 -14
-14
Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.txt
··· 1 - Broadcom Kona Family Reset Manager 2 - ---------------------------------- 3 - 4 - The reset manager is used on the Broadcom BCM21664 SoC. 5 - 6 - Required properties: 7 - - compatible: brcm,bcm21664-resetmgr 8 - - reg: memory address & range 9 - 10 - Example: 11 - brcm,resetmgr@35001f00 { 12 - compatible = "brcm,bcm21664-resetmgr"; 13 - reg = <0x35001f00 0x24>; 14 - };
+31
Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/power/reset/brcm,bcm21664-resetmgr.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Broadcom Kona family reset manager 8 + 9 + maintainers: 10 + - Florian Fainelli <f.fainelli@gmail.com> 11 + 12 + properties: 13 + compatible: 14 + const: brcm,bcm21664-resetmgr 15 + 16 + reg: 17 + maxItems: 1 18 + 19 + required: 20 + - compatible 21 + - reg 22 + 23 + additionalProperties: false 24 + 25 + examples: 26 + - | 27 + reset-controller@35001f00 { 28 + compatible = "brcm,bcm21664-resetmgr"; 29 + reg = <0x35001f00 0x24>; 30 + }; 31 + ...