1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/watchdog/nxp,s32g2-swt.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: NXP Software Watchdog Timer (SWT) 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Daniel Lezcano <daniel.lezcano@kernel.org> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel VadotallOf: 13*ae5de77eSEmmanuel Vadot - $ref: watchdog.yaml# 14*ae5de77eSEmmanuel Vadot 15*ae5de77eSEmmanuel Vadotproperties: 16*ae5de77eSEmmanuel Vadot compatible: 17*ae5de77eSEmmanuel Vadot oneOf: 18*ae5de77eSEmmanuel Vadot - const: nxp,s32g2-swt 19*ae5de77eSEmmanuel Vadot - items: 20*ae5de77eSEmmanuel Vadot - const: nxp,s32g3-swt 21*ae5de77eSEmmanuel Vadot - const: nxp,s32g2-swt 22*ae5de77eSEmmanuel Vadot 23*ae5de77eSEmmanuel Vadot reg: 24*ae5de77eSEmmanuel Vadot maxItems: 1 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot clocks: 27*ae5de77eSEmmanuel Vadot items: 28*ae5de77eSEmmanuel Vadot - description: Counter clock 29*ae5de77eSEmmanuel Vadot - description: Module clock 30*ae5de77eSEmmanuel Vadot - description: Register clock 31*ae5de77eSEmmanuel Vadot 32*ae5de77eSEmmanuel Vadot clock-names: 33*ae5de77eSEmmanuel Vadot items: 34*ae5de77eSEmmanuel Vadot - const: counter 35*ae5de77eSEmmanuel Vadot - const: module 36*ae5de77eSEmmanuel Vadot - const: register 37*ae5de77eSEmmanuel Vadot 38*ae5de77eSEmmanuel Vadotrequired: 39*ae5de77eSEmmanuel Vadot - compatible 40*ae5de77eSEmmanuel Vadot - reg 41*ae5de77eSEmmanuel Vadot - clocks 42*ae5de77eSEmmanuel Vadot - clock-names 43*ae5de77eSEmmanuel Vadot 44*ae5de77eSEmmanuel VadotunevaluatedProperties: false 45*ae5de77eSEmmanuel Vadot 46*ae5de77eSEmmanuel Vadotexamples: 47*ae5de77eSEmmanuel Vadot - | 48*ae5de77eSEmmanuel Vadot watchdog@40100000 { 49*ae5de77eSEmmanuel Vadot compatible = "nxp,s32g2-swt"; 50*ae5de77eSEmmanuel Vadot reg = <0x40100000 0x1000>; 51*ae5de77eSEmmanuel Vadot clocks = <&clks 0x3a>, <&clks 0x3b>, <&clks 0x3c>; 52*ae5de77eSEmmanuel Vadot clock-names = "counter", "module", "register"; 53*ae5de77eSEmmanuel Vadot timeout-sec = <10>; 54*ae5de77eSEmmanuel Vadot }; 55