brintos

brintos / linux-shallow public Read only

0
0
Text · 896 B · e49ace3 Raw
45 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 master8 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 CFAM14  (see fsi.txt). The I2CR translates I2C bus operations to FSI CFAM reads and15  writes or SCOM operations, thereby acting as an FSI master.16 17properties:18  compatible:19    enum:20      - ibm,i2cr-fsi-master21 22  reg:23    maxItems: 124 25required:26  - compatible27  - reg28 29allOf:30  - $ref: fsi-controller.yaml#31 32unevaluatedProperties: false33 34examples:35  - |36    i2c {37      #address-cells = <1>;38      #size-cells = <0>;39 40      i2cr@20 {41        compatible = "ibm,i2cr-fsi-master";42        reg = <0x20>;43      };44    };45