xref: /freebsd/sys/contrib/device-tree/Bindings/fsi/ibm,i2cr-fsi-master.yaml (revision 9bc300465e48e19d794d88d0c158a2adb92c7197)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/fsi/ibm,i2cr-fsi-master.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: IBM I2C Responder virtual FSI master
8
9maintainers:
10  - Eddie James <eajames@linux.ibm.com>
11
12description: |
13  The I2C Responder (I2CR) is a an I2C device that's connected to an FSI CFAM
14  (see fsi.txt). The I2CR translates I2C bus operations to FSI CFAM reads and
15  writes or SCOM operations, thereby acting as an FSI master.
16
17properties:
18  compatible:
19    enum:
20      - ibm,i2cr-fsi-master
21
22  reg:
23    maxItems: 1
24
25required:
26  - compatible
27  - reg
28
29additionalProperties: false
30
31examples:
32  - |
33    i2c {
34      #address-cells = <1>;
35      #size-cells = <0>;
36
37      i2cr@20 {
38        compatible = "ibm,i2cr-fsi-master";
39        reg = <0x20>;
40      };
41    };
42