libcamera: camera_sensor: Clear camera flips after opening the device

We clear the V4L2_CID_HFLIP and V4L2_CID_VFLIP controls immediately
after opening the camera device. This means the camera's Bayer format
and mbus codes will be in the sensor's "native" order, and we document
this to be the case so that it can be relied upon.

Clearing the flips is harmless where sensor flips do not affect the
Bayer order.

This also fixes a bug in the Raspberry Pi pipeline handler where the
native Bayer order was being computed wrongly, but the new behaviour
here will be helpful to other pipeline handlers too. A subsequent
commit will tidy up the Raspberry Pi pipeline handler in this area as
it can now be simplified.

Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
Fixes: 83a5128161 (pipeline: raspberrypi: Convert the pipeline handler to use media controller)
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
David Plowman 2022-01-13 14:15:57 +00:00 committed by Kieran Bingham
parent 6b160d91f9
commit 7f1e39e3e2

View file

@ -107,6 +107,17 @@ int CameraSensor::init()
if (ret < 0)
return ret;
/*
* Clear any flips to be sure we get the "native" Bayer order. This is
* harmless for sensors where the flips don't affect the Bayer order.
*/
ControlList ctrls(subdev_->controls());
if (subdev_->controls().find(V4L2_CID_HFLIP) != subdev_->controls().end())
ctrls.set(V4L2_CID_HFLIP, 0);
if (subdev_->controls().find(V4L2_CID_VFLIP) != subdev_->controls().end())
ctrls.set(V4L2_CID_VFLIP, 0);
subdev_->setControls(&ctrls);
/* Enumerate, sort and cache media bus codes and sizes. */
formats_ = subdev_->formats(pad_);
if (formats_.empty()) {
@ -461,6 +472,11 @@ int CameraSensor::initProperties()
/**
* \fn CameraSensor::mbusCodes()
* \brief Retrieve the media bus codes supported by the camera sensor
*
* Any Bayer formats are listed using the sensor's native Bayer order,
* that is, with the effect of V4L2_CID_HFLIP and V4L2_CID_VFLIP undone
* (where these controls exist).
*
* \return The supported media bus codes sorted in increasing order
*/