hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Device tree bindings for i2c-cbus-gpio driver
 
Required properties:
   - compatible = "i2c-cbus-gpio";
   - gpios: clk, dat, sel
   - #address-cells = <1>;
   - #size-cells = <0>;
 
Optional properties:
   - child nodes conforming to i2c bus binding
 
Example:
 
i2c@0 {
   compatible = "i2c-cbus-gpio";
   gpios = <&gpio 66 0 /* clk */
        &gpio 65 0 /* dat */
        &gpio 64 0 /* sel */
       >;
   #address-cells = <1>;
   #size-cells = <0>;
 
   retu: retu@1 {
       compatible = "nokia,retu";
       reg = <0x1>;
   };
};