brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 28cd516 Raw
52 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2# Copyright (C) 2022-2023 Texas Instruments Incorporated - https://www.ti.com/3%YAML 1.24---5$id: http://devicetree.org/schemas/mfd/ti,nspire-misc.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: TI Nspire MISC hardware block9 10maintainers:11  - Andrew Davis <afd@ti.com>12 13description:14  System controller node represents a register region containing a set15  of miscellaneous registers. The registers are not cohesive enough to16  represent as any specific type of device. Currently there is a reset17  controller.18 19properties:20  compatible:21    items:22      - enum:23          - ti,nspire-misc24      - const: syscon25      - const: simple-mfd26 27  reg:28    maxItems: 129 30  reboot:31    $ref: /schemas/power/reset/syscon-reboot.yaml#32 33required:34  - compatible35  - reg36  - reboot37 38additionalProperties: false39 40examples:41  - |42    misc: misc@900a0000 {43      compatible = "ti,nspire-misc", "syscon", "simple-mfd";44      reg = <0x900a0000 0x1000>;45 46      reboot {47        compatible = "syscon-reboot";48        offset = <0x08>;49        value = <0x02>;50      };51    };52