[media] omap3isp: Move setting constaints above media_entity_pipeline_start
authorSakari Ailus <sakari.ailus@iki.fi>
Mon, 16 Jan 2012 21:59:02 +0000 (18:59 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 14 May 2012 11:49:29 +0000 (08:49 -0300)
The clock rate for l3_ick will soon be read during pipeline validation which
is now part of media_entity_pipeline_start(). For that reason we set
constraints earlier on.

Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/omap3isp/ispvideo.c

index 1fa29cc9bb6df935fbc8e0d91cb20c3d28d61c0a..5e55477f120d2c2e4496ae13e58c7a35d678ded5 100644 (file)
@@ -304,7 +304,6 @@ static int isp_video_validate_pipeline(struct isp_pipeline *pipe)
        struct v4l2_subdev *subdev;
        int ret;
 
-       pipe->max_rate = pipe->l3_ick;
        pipe->entities = 0;
 
        subdev = isp_video_remote_subdev(pipe->output, NULL);
@@ -997,6 +996,12 @@ isp_video_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
         */
        pipe = video->video.entity.pipe
             ? to_isp_pipeline(&video->video.entity) : &video->pipe;
+
+       if (video->isp->pdata->set_constraints)
+               video->isp->pdata->set_constraints(video->isp, true);
+       pipe->l3_ick = clk_get_rate(video->isp->clock[ISP_CLK_L3_ICK]);
+       pipe->max_rate = pipe->l3_ick;
+
        media_entity_pipeline_start(&video->video.entity, &pipe->pipe);
 
        /* Verify that the currently configured format matches the output of
@@ -1029,10 +1034,6 @@ isp_video_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
                pipe->output = far_end;
        }
 
-       if (video->isp->pdata->set_constraints)
-               video->isp->pdata->set_constraints(video->isp, true);
-       pipe->l3_ick = clk_get_rate(video->isp->clock[ISP_CLK_L3_ICK]);
-
        /* Validate the pipeline and update its state. */
        ret = isp_video_validate_pipeline(pipe);
        if (ret < 0)
@@ -1078,9 +1079,9 @@ isp_video_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
 error:
        if (ret < 0) {
                omap3isp_video_queue_streamoff(&vfh->queue);
+               media_entity_pipeline_stop(&video->video.entity);
                if (video->isp->pdata->set_constraints)
                        video->isp->pdata->set_constraints(video->isp, false);
-               media_entity_pipeline_stop(&video->video.entity);
                /* The DMA queue must be emptied here, otherwise CCDC interrupts
                 * that will get triggered the next time the CCDC is powered up
                 * will try to access buffers that might have been freed but
This page took 0.026914 seconds and 5 git commands to generate.