This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Linux
Hello,
I am trying to bring up TCA9546(switch) and TCA9539(I2C expander) in uboot, so that i can bring up some peripherals connected via I2C switch(TCA9546)-->I2C expander(TCA9539). where can i get sample uboot drivers for both TCA9539 tand TCA9546 . Currently I am using psdk 3.04.
Thanks,
Arun
dts entry for switch and expander,
i2cswitch@70 {
compatible = "ti,tca9546";
#address-cells = <1>;
#size-cells = <0>;
reg = <0x70>;
i2c@1 {
#address-cells = <1>;
#size-cells = <0>;
reg = <1>;
tca9539@74 {
compatible = "ti,tca9539";
reg = <0x74>;
gpio-controller;
#gpio-cells = <2>;
};
};
};
Please let me know if anything wrong in dts entries
Thanks,
Arun