libcamera: libipa: Add vd55g1 support for libipa

Values are sourced initially from the vd55g1 user manual.

Signed-off-by: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Benjamin Mugnier
2025-09-17 15:42:14 +02:00
committed by Kieran Bingham
parent 59db8f9863
commit 481c659c7e

View File

@@ -745,6 +745,18 @@ public:
};
REGISTER_CAMERA_SENSOR_HELPER("ov13858", CameraSensorHelperOv13858)
class CameraSensorHelperVd55g1 : public CameraSensorHelper
{
public:
CameraSensorHelperVd55g1()
{
/* From datasheet: 0x40 at 10bits. */
blackLevel_ = 4096;
gain_ = AnalogueGainLinear{ 0, 32, -1, 32 };
}
};
REGISTER_CAMERA_SENSOR_HELPER("vd55g1", CameraSensorHelperVd55g1)
class CameraSensorHelperVd56g3 : public CameraSensorHelper
{
public: