Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux/fpc-iii.git] / Documentation / devicetree / bindings / i2c / i2c-mux-pca954x.txt
blob34a3fb6f8488b26a9c5def9866898d807ee7df55
1 * NXP PCA954x I2C bus switch
3 Required Properties:
5   - compatible: Must contain one of the following.
6     "nxp,pca9540", "nxp,pca9542", "nxp,pca9543", "nxp,pca9544",
7     "nxp,pca9545", "nxp,pca9546", "nxp,pca9547", "nxp,pca9548"
9   - reg: The I2C address of the device.
11   The following required properties are defined externally:
13   - Standard I2C mux properties. See i2c-mux.txt in this directory.
14   - I2C child bus nodes. See i2c-mux.txt in this directory.
16 Optional Properties:
18   - reset-gpios: Reference to the GPIO connected to the reset input.
21 Example:
23         i2c-switch@74 {
24                 compatible = "nxp,pca9548";
25                 #address-cells = <1>;
26                 #size-cells = <0>;
27                 reg = <0x74>;
29                 i2c@2 {
30                         #address-cells = <1>;
31                         #size-cells = <0>;
32                         reg = <2>;
34                         eeprom@54 {
35                                 compatible = "at,24c08";
36                                 reg = <0x54>;
37                         };
38                 };
40                 i2c@4 {
41                         #address-cells = <1>;
42                         #size-cells = <0>;
43                         reg = <4>;
45                         rtc@51 {
46                                 compatible = "nxp,pcf8563";
47                                 reg = <0x51>;
48                         };
49                 };
50         };