xref: /freebsd/sys/contrib/device-tree/Bindings/watchdog/intel,keembay-wdt.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/watchdog/intel,keembay-wdt.yaml#
5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Intel Keem Bay SoC non-secure Watchdog Timer
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Wan Ahmad Zainie <wan.ahmad.zainie.wan.mohamad@intel.com>
11*5def4c47SEmmanuel Vadot
12*5def4c47SEmmanuel Vadotproperties:
13*5def4c47SEmmanuel Vadot  compatible:
14*5def4c47SEmmanuel Vadot    enum:
15*5def4c47SEmmanuel Vadot      - intel,keembay-wdt
16*5def4c47SEmmanuel Vadot
17*5def4c47SEmmanuel Vadot  reg:
18*5def4c47SEmmanuel Vadot    maxItems: 1
19*5def4c47SEmmanuel Vadot
20*5def4c47SEmmanuel Vadot  clocks:
21*5def4c47SEmmanuel Vadot    maxItems: 1
22*5def4c47SEmmanuel Vadot
23*5def4c47SEmmanuel Vadot  interrupts:
24*5def4c47SEmmanuel Vadot    items:
25*5def4c47SEmmanuel Vadot      - description: interrupt specifier for threshold interrupt line
26*5def4c47SEmmanuel Vadot      - description: interrupt specifier for timeout interrupt line
27*5def4c47SEmmanuel Vadot
28*5def4c47SEmmanuel Vadot  interrupt-names:
29*5def4c47SEmmanuel Vadot    items:
30*5def4c47SEmmanuel Vadot      - const: threshold
31*5def4c47SEmmanuel Vadot      - const: timeout
32*5def4c47SEmmanuel Vadot
33*5def4c47SEmmanuel Vadotrequired:
34*5def4c47SEmmanuel Vadot  - compatible
35*5def4c47SEmmanuel Vadot  - reg
36*5def4c47SEmmanuel Vadot  - interrupts
37*5def4c47SEmmanuel Vadot  - interrupt-names
38*5def4c47SEmmanuel Vadot  - clocks
39*5def4c47SEmmanuel Vadot
40*5def4c47SEmmanuel VadotadditionalProperties: false
41*5def4c47SEmmanuel Vadot
42*5def4c47SEmmanuel Vadotexamples:
43*5def4c47SEmmanuel Vadot  - |
44*5def4c47SEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
45*5def4c47SEmmanuel Vadot    #include <dt-bindings/interrupt-controller/irq.h>
46*5def4c47SEmmanuel Vadot    #define KEEM_BAY_A53_TIM
47*5def4c47SEmmanuel Vadot
48*5def4c47SEmmanuel Vadot    watchdog: watchdog@2033009c {
49*5def4c47SEmmanuel Vadot        compatible = "intel,keembay-wdt";
50*5def4c47SEmmanuel Vadot        reg = <0x2033009c 0x10>;
51*5def4c47SEmmanuel Vadot        interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>,
52*5def4c47SEmmanuel Vadot                     <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
53*5def4c47SEmmanuel Vadot        interrupt-names = "threshold", "timeout";
54*5def4c47SEmmanuel Vadot        clocks = <&scmi_clk KEEM_BAY_A53_TIM>;
55*5def4c47SEmmanuel Vadot    };
56*5def4c47SEmmanuel Vadot
57*5def4c47SEmmanuel Vadot...
58