From: Laurent Pinchart Date: Sun, 14 Feb 2016 00:33:07 +0000 (+0200) Subject: greybus: camera: Don't configure CSI TX in test only mode X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~679 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=640924d2172da9b6f8a0c9372c3ea3b83f68e2f8;p=karo-tx-linux.git greybus: camera: Don't configure CSI TX in test only mode When the GB_CAMERA_CONFIGURE_STREAMS_TEST_ONLY flag is set by the caller the configure streams operation should only test the requested settings without modifying the hardware state. This applies for both the module, the UniPro links power modes and the AP bridge settings. Return early when the flag is set to avoid modifying the AP bridge CSI TX settings. Signed-off-by: Laurent Pinchart Reviewed-by: Gjorgji Rosikopulos Tested-by: Jacopo Mondi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/camera.c b/drivers/staging/greybus/camera.c index 7eef6eceec6c..bb8bc175dc0a 100644 --- a/drivers/staging/greybus/camera.c +++ b/drivers/staging/greybus/camera.c @@ -242,26 +242,21 @@ static int gb_camera_configure_streams(struct gb_camera *gcam, } } - if (nstreams && resp->flags & GB_CAMERA_CONFIGURE_STREAMS_ADJUSTED) { + if ((resp->flags & GB_CAMERA_CONFIGURE_STREAMS_ADJUSTED) || + (*flags & GB_CAMERA_CONFIGURE_STREAMS_TEST_ONLY)) { *flags = resp->flags; *num_streams = resp->num_streams; goto done; } /* Setup unipro link speed. */ - if (nstreams && !(*flags & GB_CAMERA_CONFIGURE_STREAMS_TEST_ONLY)) { - ret = gb_camera_set_power_mode(gcam, true); - if (ret < 0) - goto done; - } else if (nstreams == 0) { - ret = gb_camera_set_power_mode(gcam, false); - if (ret < 0) - goto done; - } + ret = gb_camera_set_power_mode(gcam, nstreams != 0); + if (ret < 0) + goto done; + /* Configure the CSI transmitter. Hardcode the parameters for now. */ memset(&csi_cfg, 0, sizeof(csi_cfg)); - /* Configure the CSI transmitter. Hardcode the parameters for now. */ if (nstreams) { csi_cfg.csi_id = 1; csi_cfg.clock_mode = 0;