Device tree addresses not set in the mux control?

We are working on setting up a device tree for Orin Nx for dual camera support, starting with the tegra24_p3767 template, snippet shown below. My question is regarding the addresses for the max-gpios and i2c-parent and reset-, they dont seem defined in this overlay (0xffffffff), do these get set/reset by some other mechanism or must they be set here? I know were are using gio06 for this. Thanks
cam_i2cmux {
status = “okay”;
compatible = “i2c-mux-gpio”;
#address-cells = <0x01>;
#size-cells = <0x00>;
mux-gpios = <0xffffffff 0x13 0x00>;
i2c-parent = <0xffffffff>;

				i2c@0 {
					status = "okay";
					reg = <0x00>;
					#address-cells = <0x01>;
					#size-cells = <0x00>;

					rbpcv2_imx219_a@10 {
						status = "disabled";
					};

					rbpcv3_imx477_a@1a {
						reset-gpios = <0xffffffff 0x3e 0x00>;

updated note: I see that GPIO06 is the carrier board reference, so it is connected to GPO9_SP12_CSN on the SoC

Check this document for i2c-mux-gpio

https://www.kernel.org/doc/Documentation/i2c/muxes/i2c-mux-gpio

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.