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

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: watchdog: brcm,kona-wdt: convert txt file to yaml

Converted txt file to yaml. No additional changes.

Signed-off-by: Nikita Bondarenko <n2h9z4@gmail.com>
Link: https://lore.kernel.org/r/20230418170341.28805-1-n2h9z4@gmail.com
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Nikita Bondarenko and committed by
Rob Herring
c5125108 6592d293

+41 -15
-15
Documentation/devicetree/bindings/watchdog/brcm,kona-wdt.txt
··· 1 - Broadcom Kona Family Watchdog Timer 2 - ----------------------------------- 3 - 4 - This watchdog timer is used in the following Broadcom SoCs: 5 - BCM11130, BCM11140, BCM11351, BCM28145, BCM28155 6 - 7 - Required properties: 8 - - compatible = "brcm,bcm11351-wdt", "brcm,kona-wdt"; 9 - - reg: memory address & range 10 - 11 - Example: 12 - watchdog@35002f40 { 13 - compatible = "brcm,bcm11351-wdt", "brcm,kona-wdt"; 14 - reg = <0x35002f40 0x6c>; 15 - };
+41
Documentation/devicetree/bindings/watchdog/brcm,kona-wdt.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/watchdog/brcm,kona-wdt.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Broadcom Kona Family Watchdog Timer 8 + 9 + description: | 10 + This watchdog timer is used in the following Broadcom SoCs: 11 + BCM11130, BCM11140, BCM11351, BCM28145, BCM28155 12 + 13 + maintainers: 14 + - Florian Fainelli <f.fainelli@gmail.com> 15 + - Ray Jui <rjui@broadcom.com> 16 + - Scott Branden <sbranden@broadcom.com> 17 + 18 + allOf: 19 + - $ref: watchdog.yaml# 20 + 21 + properties: 22 + compatible: 23 + items: 24 + - const: brcm,bcm11351-wdt 25 + - const: brcm,kona-wdt 26 + 27 + reg: 28 + maxItems: 1 29 + 30 + required: 31 + - compatible 32 + - reg 33 + 34 + unevaluatedProperties: false 35 + 36 + examples: 37 + - | 38 + watchdog@35002f40 { 39 + compatible = "brcm,bcm11351-wdt", "brcm,kona-wdt"; 40 + reg = <0x35002f40 0x6c>; 41 + };