xref: /freebsd/sys/contrib/device-tree/Bindings/timer/rda,8810pl-timer.yaml (revision d5b0e70f7e04d971691517ce1304d86a1e367e2e)
1*d5b0e70fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*d5b0e70fSEmmanuel Vadot%YAML 1.2
3*d5b0e70fSEmmanuel Vadot---
4*d5b0e70fSEmmanuel Vadot$id: http://devicetree.org/schemas/timer/rda,8810pl-timer.yaml#
5*d5b0e70fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*d5b0e70fSEmmanuel Vadot
7*d5b0e70fSEmmanuel Vadottitle: RDA Micro RDA8810PL Timer
8*d5b0e70fSEmmanuel Vadot
9*d5b0e70fSEmmanuel Vadotmaintainers:
10*d5b0e70fSEmmanuel Vadot  - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11*d5b0e70fSEmmanuel Vadot
12*d5b0e70fSEmmanuel Vadotproperties:
13*d5b0e70fSEmmanuel Vadot  compatible:
14*d5b0e70fSEmmanuel Vadot    const: rda,8810pl-timer
15*d5b0e70fSEmmanuel Vadot
16*d5b0e70fSEmmanuel Vadot  reg:
17*d5b0e70fSEmmanuel Vadot    maxItems: 1
18*d5b0e70fSEmmanuel Vadot
19*d5b0e70fSEmmanuel Vadot  interrupts:
20*d5b0e70fSEmmanuel Vadot    minItems: 2
21*d5b0e70fSEmmanuel Vadot    maxItems: 2
22*d5b0e70fSEmmanuel Vadot
23*d5b0e70fSEmmanuel Vadot  interrupt-names:
24*d5b0e70fSEmmanuel Vadot    items:
25*d5b0e70fSEmmanuel Vadot      - const: hwtimer
26*d5b0e70fSEmmanuel Vadot      - const: ostimer
27*d5b0e70fSEmmanuel Vadot
28*d5b0e70fSEmmanuel Vadotrequired:
29*d5b0e70fSEmmanuel Vadot  - compatible
30*d5b0e70fSEmmanuel Vadot  - reg
31*d5b0e70fSEmmanuel Vadot  - interrupts
32*d5b0e70fSEmmanuel Vadot  - interrupt-names
33*d5b0e70fSEmmanuel Vadot
34*d5b0e70fSEmmanuel VadotadditionalProperties: false
35*d5b0e70fSEmmanuel Vadot
36*d5b0e70fSEmmanuel Vadotexamples:
37*d5b0e70fSEmmanuel Vadot  - |
38*d5b0e70fSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/irq.h>
39*d5b0e70fSEmmanuel Vadot
40*d5b0e70fSEmmanuel Vadot    timer@20910000 {
41*d5b0e70fSEmmanuel Vadot      compatible = "rda,8810pl-timer";
42*d5b0e70fSEmmanuel Vadot      reg = <0x20910000 0x1000>;
43*d5b0e70fSEmmanuel Vadot      interrupts = <16 IRQ_TYPE_LEVEL_HIGH>,
44*d5b0e70fSEmmanuel Vadot                   <17 IRQ_TYPE_LEVEL_HIGH>;
45*d5b0e70fSEmmanuel Vadot      interrupt-names = "hwtimer", "ostimer";
46*d5b0e70fSEmmanuel Vadot    };
47*d5b0e70fSEmmanuel Vadot...
48