Re: [PATCH v6 5/5] media: i2c: max9286: Configure reverse channel amplitude

From: Jacopo Mondi
Date: Thu Jan 14 2021 - 03:09:57 EST


Hi Laurent,

On Thu, Jan 14, 2021 at 07:53:36AM +0200, Laurent Pinchart wrote:
> Hi Jacopo,
>
> >
> > All in all:
> > - yes, I think there might be a need to control the noise immunity
> > settings after initialization
> > - I think it should be done on the serializer side, possibly with a DT
> > property, possibly something like a boolean 'maxim,high-threshold-enable'
> > - the deserializer can query that information with a kAPI like
> > get_mbus_config() after the remote has probed
> > - Because of that there is no need for an additional deserializer property
> >
> > Hope this makes sense
>
> Now I get what you meant. Sorry for missing the point.
>
> While it would be technically feasible to query the property from the
> serializer at runtime, there's the additional issue that the
> deserializer has a single reverse channel amplitude setting for all the
> channels. We would need to ensure that the property is set to the same
> value in all camera DT nodes. Wouldn't it be best to then set it once
> only, in the deserializer node ?
>

To be honest I wouldn't mind a run-time error, or a fallback like "the
first one to probe is the authoritative one, the rest have to follow".
And don't forget we would need a serializer property anyway to tell
the chip if it has to enable its noise immunity threshold or not.

But anyway, the here introduced new property already requires
knwoledge on the deserializer about which camera is connected on the
other side. It's not so bad, as if cameras are described in a .dtsi or
.dtbo the deserializer property can be overridden. We can do the same
for an additional property.

ie. a deserializer-serializer 'maxim,high-threshold-enable' property

RDACM20: pre-programmed high threshold enable

-------------- rdacm20.dtsi -------------------
&gmsl {
maxim,reverse-channel-microvolt = <170000>;

i2c-mux {
i2c@0 {
camera@51 {
....

}

}

}
};
-------------------------------------------------

RDACM21: no pre-programmed high-threshold, high threshold enabled
after camera probe

-------------- rdacm21.dtsi -------------------
&gmsl {
maxim,reverse-channel-microvolt = <100000>;
maxim,high-threshold-enable;

i2c-mux {
i2c@0 {
camera@51 {
maxim,high-threshold-enable;
....

}

}

}
};
-------------------------------------------------

RDACM21: no high-threshold enabled at all

-------------- rdacm21.dtsi -------------------
&gmsl {
maxim,reverse-channel-microvolt = <100000>;

i2c-mux {
i2c@0 {
camera@51 {
....

}

}

}
};
-------------------------------------------------

For the serializer it's a boolean, for the deser we might need to
specify a voltage, so it might become an uint32
'maxim,high-threshold-microvolt' there.

-------------- rdacm21.dtsi -------------------
&gmsl {
maxim,reverse-channel-microvolt = <100000>;
maxim,high-threshold-microvolt = <170000>;

i2c-mux {
i2c@0 {
camera@51 {
maxim,high-threshold-enable;
....

}

}

}
};
-------------------------------------------------

> --
> Regards,
>
> Laurent Pinchart