Hi,
I am working on kernel 5.10 and imx8qxp. An eeprom is connected on i2c_mipi_csi0, the dts is below:
&i2c_mipi_csi0 {
#address-cells = <1>;
#size-cells = <0>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i2c_mipi_csi0>;
clock-frequency = <100000>;
status = "okay";
eeprom@50 {
compatible = "atmel,24c64";
reg = <0x50>;
pagesize = <32>;
status = "okay";
};
};
pinctrl_i2c_mipi_csi0: i2c-mipi-csi0grp {
fsl,pins = <
IMX8QXP_MIPI_CSI0_I2C0_SCL_MIPI_CSI0_I2C0_SCL 0xc2000020
IMX8QXP_MIPI_CSI0_I2C0_SDA_MIPI_CSI0_I2C0_SDA 0xc2000020
>;
};
but I only got results as:

There is no device of i2c_mipi_csi0. I don't know where I was wrong. Could you help me with this? thanks a lot!
Li