summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/rtc/alphascale,asm9260-rtc.yaml
blob: f955a7f638ade5a8defca1a11d8e8a7d0d8a622f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/rtc/alphascale,asm9260-rtc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Alphascale asm9260 SoC Real Time Clock

maintainers:
  - Javier Carrasco <javier.carrasco.cruz@gmail.com>

allOf:
  - $ref: rtc.yaml#

properties:
  compatible:
    const: alphascale,asm9260-rtc

  reg:
    maxItems: 1

  clocks:
    maxItems: 1

  clock-names:
    const: ahb

  interrupts:
    maxItems: 1

required:
  - compatible
  - reg
  - clocks
  - clock-names
  - interrupts

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/clock/alphascale,asm9260.h>

    rtc@800a0000 {
        compatible = "alphascale,asm9260-rtc";
        reg = <0x800a0000 0x100>;
        clocks = <&acc CLKID_AHB_RTC>;
        clock-names = "ahb";
        interrupts = <2>;
    };