xref: /freebsd/sys/contrib/device-tree/Bindings/spi/ibm,spi-fsi.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/spi/ibm,spi-fsi.yaml#
5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*0e8011faSEmmanuel Vadot
7*0e8011faSEmmanuel Vadottitle: IBM FSI-attached SPI Controller
8*0e8011faSEmmanuel Vadot
9*0e8011faSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - Eddie James <eajames@linux.ibm.com>
11*0e8011faSEmmanuel Vadot
12*0e8011faSEmmanuel Vadotdescription:
13*0e8011faSEmmanuel Vadot  A SPI controller found on IBM Power processors, accessed over FSI from a
14*0e8011faSEmmanuel Vadot  service processor. This node will always be a child node of an ibm,fsi2spi
15*0e8011faSEmmanuel Vadot  node.
16*0e8011faSEmmanuel Vadot
17*0e8011faSEmmanuel Vadotproperties:
18*0e8011faSEmmanuel Vadot  compatible:
19*0e8011faSEmmanuel Vadot    enum:
20*0e8011faSEmmanuel Vadot      - ibm,spi-fsi
21*0e8011faSEmmanuel Vadot
22*0e8011faSEmmanuel Vadot  reg:
23*0e8011faSEmmanuel Vadot    maxItems: 1
24*0e8011faSEmmanuel Vadot
25*0e8011faSEmmanuel Vadotrequired:
26*0e8011faSEmmanuel Vadot  - compatible
27*0e8011faSEmmanuel Vadot  - reg
28*0e8011faSEmmanuel Vadot
29*0e8011faSEmmanuel VadotallOf:
30*0e8011faSEmmanuel Vadot  - $ref: spi-controller.yaml#
31*0e8011faSEmmanuel Vadot
32*0e8011faSEmmanuel VadotunevaluatedProperties: false
33*0e8011faSEmmanuel Vadot
34*0e8011faSEmmanuel Vadotexamples:
35*0e8011faSEmmanuel Vadot  - |
36*0e8011faSEmmanuel Vadot    fsi {
37*0e8011faSEmmanuel Vadot        #address-cells = <1>;
38*0e8011faSEmmanuel Vadot        #size-cells = <0>;
39*0e8011faSEmmanuel Vadot
40*0e8011faSEmmanuel Vadot        spi@0 {
41*0e8011faSEmmanuel Vadot            compatible = "ibm,spi-fsi";
42*0e8011faSEmmanuel Vadot            reg = <0>;
43*0e8011faSEmmanuel Vadot            #address-cells = <1>;
44*0e8011faSEmmanuel Vadot            #size-cells = <0>;
45*0e8011faSEmmanuel Vadot
46*0e8011faSEmmanuel Vadot            eeprom@0 {
47*0e8011faSEmmanuel Vadot                compatible = "atmel,at25";
48*0e8011faSEmmanuel Vadot                reg = <0>;
49*0e8011faSEmmanuel Vadot                size = <0x80000>;
50*0e8011faSEmmanuel Vadot                address-width = <24>;
51*0e8011faSEmmanuel Vadot                pagesize = <256>;
52*0e8011faSEmmanuel Vadot                spi-max-frequency = <1000000>;
53*0e8011faSEmmanuel Vadot            };
54*0e8011faSEmmanuel Vadot        };
55*0e8011faSEmmanuel Vadot    };
56