1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/mfd/renesas,r2a11302ft.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Renesas R2A11302FT Power Supply ICs for R-Car 8 9maintainers: 10 - Wolfram Sang <wsa+renesas@sang-engineering.com> 11 12description: | 13 The Renesas R2A11302FT PMIC is used with Renesas R-Car Gen1/Gen2 14 based SoCs. 15 16 FIXME: The binding is incomplete and resembles the information gathered 17 so far. 18 19properties: 20 compatible: 21 const: renesas,r2a11302ft 22 23 reg: 24 maxItems: 1 25 26 spi-max-frequency: 27 maximum: 6000000 28 29 spi-cpol: true 30 31 spi-cpha: true 32 33required: 34 - compatible 35 - reg 36 - spi-cpol 37 - spi-cpha 38 39allOf: 40 - $ref: /schemas/spi/spi-peripheral-props.yaml# 41 42unevaluatedProperties: false 43 44examples: 45 - | 46 spi { 47 #address-cells = <1>; 48 #size-cells = <0>; 49 50 pmic@0 { 51 compatible = "renesas,r2a11302ft"; 52 reg = <0>; 53 spi-max-frequency = <6000000>; 54 spi-cpol; 55 spi-cpha; 56 }; 57 }; 58... 59