brintos

brintos / linux-shallow public Read only

0
0
Text · 916 B · fa5f2ed Raw
59 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/arm,pl031.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Arm Primecell PL031 Real Time Clock8 9select:10  properties:11    compatible:12      contains:13        const: arm,pl03114  required:15    - compatible16 17allOf:18  - $ref: rtc.yaml#19 20maintainers:21  - Rob Herring <robh@kernel.org>22 23properties:24  compatible:25    items:26      - const: arm,pl03127      - const: arm,primecell28 29  reg:30    maxItems: 131 32  interrupts:33    maxItems: 134 35  clocks:36    maxItems: 137 38  clock-names:39    maxItems: 140 41  start-year: true42 43required:44  - compatible45  - reg46  - clocks47  - clock-names48 49additionalProperties: false50 51examples:52  - |53    rtc@10017000 {54        compatible = "arm,pl031", "arm,primecell";55        reg = <0x10017000 0x1000>;56        clocks = <&pclk>;57        clock-names = "apb_pclk";58    };59