1# SPDX-License-Identifier: (GPL-2.0-or-later) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/fsi/ibm,fsi2spi.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: IBM FSI-attached SPI controllers 8 9maintainers: 10 - Eddie James <eajames@linux.ibm.com> 11 12description: | 13 This binding describes an FSI CFAM engine called the FSI2SPI. Therefore this 14 node will always be a child of an FSI CFAM node; see fsi.txt for details on 15 FSI slave and CFAM nodes. This FSI2SPI engine provides access to a number of 16 SPI controllers. 17 18properties: 19 compatible: 20 enum: 21 - ibm,fsi2spi 22 23 reg: 24 items: 25 - description: FSI slave address 26 27required: 28 - compatible 29 - reg 30 31additionalProperties: false 32 33examples: 34 - | 35 fsi2spi@1c00 { 36 compatible = "ibm,fsi2spi"; 37 reg = <0x1c00 0x400>; 38 }; 39