1*5f62a964SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*5f62a964SEmmanuel Vadot%YAML 1.2 3*5f62a964SEmmanuel Vadot--- 4*5f62a964SEmmanuel Vadot$id: http://devicetree.org/schemas/watchdog/zii,rave-sp-wdt.yaml# 5*5f62a964SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5f62a964SEmmanuel Vadot 7*5f62a964SEmmanuel Vadottitle: Zodiac Inflight Innovations RAVE Supervisory Processor Watchdog 8*5f62a964SEmmanuel Vadot 9*5f62a964SEmmanuel Vadotmaintainers: 10*5f62a964SEmmanuel Vadot - Frank Li <Frank.Li@nxp.com> 11*5f62a964SEmmanuel Vadot 12*5f62a964SEmmanuel Vadotdescription: 13*5f62a964SEmmanuel Vadot RAVE SP watchdog device is a "MFD cell" device corresponding to 14*5f62a964SEmmanuel Vadot watchdog functionality of RAVE Supervisory Processor. It is expected 15*5f62a964SEmmanuel Vadot that its Device Tree node is specified as a child of the node 16*5f62a964SEmmanuel Vadot corresponding to the parent RAVE SP device (as documented in 17*5f62a964SEmmanuel Vadot Documentation/devicetree/bindings/mfd/zii,rave-sp.yaml) 18*5f62a964SEmmanuel Vadot 19*5f62a964SEmmanuel Vadotproperties: 20*5f62a964SEmmanuel Vadot compatible: 21*5f62a964SEmmanuel Vadot enum: 22*5f62a964SEmmanuel Vadot - zii,rave-sp-watchdog 23*5f62a964SEmmanuel Vadot - zii,rave-sp-watchdog-legacy 24*5f62a964SEmmanuel Vadot 25*5f62a964SEmmanuel Vadot nvmem-cell-names: 26*5f62a964SEmmanuel Vadot items: 27*5f62a964SEmmanuel Vadot - const: wdt_timeout 28*5f62a964SEmmanuel Vadot 29*5f62a964SEmmanuel Vadot nvmem-cells: 30*5f62a964SEmmanuel Vadot maxItems: 1 31*5f62a964SEmmanuel Vadot 32*5f62a964SEmmanuel Vadotrequired: 33*5f62a964SEmmanuel Vadot - compatible 34*5f62a964SEmmanuel Vadot 35*5f62a964SEmmanuel VadotallOf: 36*5f62a964SEmmanuel Vadot - $ref: watchdog.yaml# 37*5f62a964SEmmanuel Vadot 38*5f62a964SEmmanuel VadotunevaluatedProperties: false 39*5f62a964SEmmanuel Vadot 40*5f62a964SEmmanuel Vadotexamples: 41*5f62a964SEmmanuel Vadot - | 42*5f62a964SEmmanuel Vadot watchdog { 43*5f62a964SEmmanuel Vadot compatible = "zii,rave-sp-watchdog"; 44*5f62a964SEmmanuel Vadot nvmem-cells = <&wdt_timeout>; 45*5f62a964SEmmanuel Vadot nvmem-cell-names = "wdt_timeout"; 46*5f62a964SEmmanuel Vadot }; 47*5f62a964SEmmanuel Vadot 48