brintos

brintos / linux-shallow public Read only

0
0
Text · 743 B · daa7832 Raw
45 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/timer/ralink,rt2880-timer.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Timer present in Ralink family SoCs8 9maintainers:10  - Sergio Paracuellos <sergio.paracuellos@gmail.com>11 12properties:13  compatible:14    const: ralink,rt2880-timer15 16  reg:17    maxItems: 118 19  clocks:20    maxItems: 121 22  interrupts:23    maxItems: 124 25required:26  - compatible27  - reg28  - clocks29  - interrupts30 31additionalProperties: false32 33examples:34  - |35    timer@100 {36        compatible = "ralink,rt2880-timer";37        reg = <0x100 0x20>;38 39        clocks = <&sysc 3>;40 41        interrupt-parent = <&intc>;42        interrupts = <1>;43    };44...45