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/mfd/zii,rave-sp.yaml# 5*5f62a964SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5f62a964SEmmanuel Vadot 7*5f62a964SEmmanuel Vadottitle: Zodiac Inflight Innovations RAVE Supervisory Processor 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 Supervisory Processor communicates with SoC over UART. It is 14*5f62a964SEmmanuel Vadot expected that its Device Tree node is specified as a child of a node 15*5f62a964SEmmanuel Vadot corresponding to UART controller used for communication. 16*5f62a964SEmmanuel Vadot 17*5f62a964SEmmanuel Vadotproperties: 18*5f62a964SEmmanuel Vadot compatible: 19*5f62a964SEmmanuel Vadot enum: 20*5f62a964SEmmanuel Vadot - zii,rave-sp-niu 21*5f62a964SEmmanuel Vadot - zii,rave-sp-mezz 22*5f62a964SEmmanuel Vadot - zii,rave-sp-esb 23*5f62a964SEmmanuel Vadot - zii,rave-sp-rdu1 24*5f62a964SEmmanuel Vadot - zii,rave-sp-rdu2 25*5f62a964SEmmanuel Vadot 26*5f62a964SEmmanuel Vadot "#address-cells": 27*5f62a964SEmmanuel Vadot const: 1 28*5f62a964SEmmanuel Vadot 29*5f62a964SEmmanuel Vadot "#size-cells": 30*5f62a964SEmmanuel Vadot const: 1 31*5f62a964SEmmanuel Vadot 32*5f62a964SEmmanuel Vadot watchdog: 33*5f62a964SEmmanuel Vadot $ref: /schemas/watchdog/zii,rave-sp-wdt.yaml 34*5f62a964SEmmanuel Vadot 35*5f62a964SEmmanuel Vadot backlight: 36*5f62a964SEmmanuel Vadot $ref: /schemas/leds/backlight/zii,rave-sp-backlight.yaml 37*5f62a964SEmmanuel Vadot 38*5f62a964SEmmanuel Vadot pwrbutton: 39*5f62a964SEmmanuel Vadot $ref: /schemas/input/zii,rave-sp-pwrbutton.yaml 40*5f62a964SEmmanuel Vadot 41*5f62a964SEmmanuel VadotpatternProperties: 42*5f62a964SEmmanuel Vadot '^eeprom@[0-9a-f]+$': 43*5f62a964SEmmanuel Vadot $ref: /schemas/nvmem/zii,rave-sp-eeprom.yaml 44*5f62a964SEmmanuel Vadot 45*5f62a964SEmmanuel Vadotrequired: 46*5f62a964SEmmanuel Vadot - compatible 47*5f62a964SEmmanuel Vadot 48*5f62a964SEmmanuel VadotallOf: 49*5f62a964SEmmanuel Vadot - $ref: /schemas/serial/serial-peripheral-props.yaml 50*5f62a964SEmmanuel Vadot 51*5f62a964SEmmanuel VadotunevaluatedProperties: false 52*5f62a964SEmmanuel Vadot 53*5f62a964SEmmanuel Vadotexamples: 54*5f62a964SEmmanuel Vadot - | 55*5f62a964SEmmanuel Vadot mfd { 56*5f62a964SEmmanuel Vadot compatible = "zii,rave-sp-rdu2"; 57*5f62a964SEmmanuel Vadot current-speed = <1000000>; 58*5f62a964SEmmanuel Vadot 59*5f62a964SEmmanuel Vadot watchdog { 60*5f62a964SEmmanuel Vadot compatible = "zii,rave-sp-watchdog"; 61*5f62a964SEmmanuel Vadot }; 62*5f62a964SEmmanuel Vadot }; 63*5f62a964SEmmanuel Vadot 64