Path: blob/main/sys/contrib/device-tree/Bindings/i2c/i2c-fsi.txt
48378 views
Device-tree bindings for FSI-attached I2C master and busses1-----------------------------------------------------------23Required properties:4- compatible = "ibm,i2c-fsi";5- reg = < address size >; : The FSI CFAM address and address6space size.7- #address-cells = <1>; : Number of address cells in child8nodes.9- #size-cells = <0>; : Number of size cells in child nodes.10- child nodes : Nodes to describe busses off the I2C11master.1213Child node required properties:14- reg = < port number > : The port number on the I2C master.1516Child node optional properties:17- child nodes : Nodes to describe devices on the I2C18bus.1920Examples:2122i2c@1800 {23compatible = "ibm,i2c-fsi";24reg = < 0x1800 0x400 >;25#address-cells = <1>;26#size-cells = <0>;2728i2c-bus@0 {29reg = <0>;30};3132i2c-bus@1 {33reg = <1>;3435eeprom@50 {36compatible = "vendor,dev-name";37};38};39};404142