[libcamera-devel] [RFC PATCH v2 3/5] libcamera: ipu3: Disable a sensor test pattern mode at initialization

Jacopo Mondi jacopo at jmondi.org
Tue Jun 22 12:34:40 CEST 2021


Hi Hiro,

On Tue, Jun 22, 2021 at 11:36:52AM +0900, Hirokazu Honda wrote:
> Turns off a sensor test pattern mode at the initialization of the
> sensor. Without this, the camera sensor is configured with the last
> test pattern mode that has been set.
>
> Signed-off-by: Hirokazu Honda <hiroh at chromium.org>
> ---
>  src/libcamera/pipeline/ipu3/cio2.cpp | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/src/libcamera/pipeline/ipu3/cio2.cpp b/src/libcamera/pipeline/ipu3/cio2.cpp
> index 1be2cbcd..8548f749 100644
> --- a/src/libcamera/pipeline/ipu3/cio2.cpp
> +++ b/src/libcamera/pipeline/ipu3/cio2.cpp
> @@ -9,6 +9,7 @@
>
>  #include <linux/media-bus-format.h>
>
> +#include <libcamera/control_ids.h>
>  #include <libcamera/formats.h>
>  #include <libcamera/geometry.h>
>  #include <libcamera/stream.h>
> @@ -192,6 +193,13 @@ int CIO2Device::configure(const Size &size, V4L2DeviceFormat *outputFormat)
>
>  	LOG(IPU3, Debug) << "CIO2 output format " << outputFormat->toString();
>
> +	ret = sensor_->setTestPatternMode(controls::draft::TestPatternModeOff);
> +	if (ret) {
> +		LOG(IPU3, Error)
> +			<< "Failed to reset test pattern mode: " << ret;
> +		return ret;
> +	}
> +

Now I see why you need all the checks in the previous patch. But, do
we need to do so ? Isn't the application which is in control of the
test pattern ? Shouldn't the app explicitly disable it if they want to
?

>  	return 0;
>  }
>
> --
> 2.32.0.288.g62a8d224e6-goog
>


More information about the libcamera-devel mailing list