Path: blob/master/Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-or-later)1%YAML 1.22---3$id: http://devicetree.org/schemas/fsi/ibm,fsi2spi.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: IBM FSI-attached SPI controllers78maintainers:9- Eddie James <eajames@linux.ibm.com>1011description:12This binding describes an FSI CFAM engine called the FSI2SPI. Therefore this13node will always be a child of an FSI CFAM node. This FSI2SPI engine provides14access to a number of SPI controllers.1516properties:17compatible:18enum:19- ibm,fsi2spi2021reg:22items:23- description: FSI slave address2425"#address-cells":26const: 12728"#size-cells":29const: 03031patternProperties:32"^spi@[0-9a-f]+$":33type: object34$ref: /schemas/spi/ibm,spi-fsi.yaml3536required:37- compatible38- reg3940additionalProperties: false4142examples:43- |44fsi2spi@1c00 {45compatible = "ibm,fsi2spi";46reg = <0x1c00 0x400>;47#address-cells = <1>;48#size-cells = <0>;4950spi@0 {51compatible = "ibm,spi-fsi";52reg = <0>;53#address-cells = <1>;54#size-cells = <0>;5556eeprom@0 {57compatible = "atmel,at25";58reg = <0>;59address-width = <24>;60pagesize = <256>;61size = <0x80000>;62spi-max-frequency = <1000000>;63};64};65};666768