[media] s5p-fimc: Ensure proper s_power() call order in the ISP datapaths
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Tue, 20 Nov 2012 11:54:22 +0000 (08:54 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 31 Mar 2013 14:02:02 +0000 (11:02 -0300)
Since the FIMC-IS firmware communicates with an image sensor directly
through the ISP I2C bus controllers the sub-devices power supplies
cannot be simply enabled from left to right or disabled from right
to left along the processing pipeline. Thus a subdev index to call
s_power() on is looked up from a table, rather than doing the op call
based on increasing/decreasing indexes.

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/s5p-fimc/fimc-mdevice.c

index b2248990729527066bdb24dd4c32e91ae4b591c0..77075a4d1145e3e1f0b1229d705c99ab7b44ba0c 100644 (file)
@@ -128,23 +128,33 @@ static int __subdev_set_power(struct v4l2_subdev *sd, int on)
  *
  * Needs to be called with the graph mutex held.
  */
-static int fimc_pipeline_s_power(struct fimc_pipeline *p, bool state)
+static int fimc_pipeline_s_power(struct fimc_pipeline *p, bool on)
 {
-       unsigned int i;
-       int ret;
+       static const u8 seq[2][IDX_MAX - 1] = {
+               { IDX_IS_ISP, IDX_SENSOR, IDX_CSIS, IDX_FLITE },
+               { IDX_CSIS, IDX_FLITE, IDX_SENSOR, IDX_IS_ISP },
+       };
+       int i, ret = 0;
 
        if (p->subdevs[IDX_SENSOR] == NULL)
                return -ENXIO;
 
-       for (i = 0; i < IDX_MAX; i++) {
-               unsigned int idx = state ? (IDX_MAX - 1) - i : i;
+       for (i = 0; i < IDX_MAX - 1; i++) {
+               unsigned int idx = seq[on][i];
+
+               ret = __subdev_set_power(p->subdevs[idx], on);
+
 
-               ret = __subdev_set_power(p->subdevs[idx], state);
                if (ret < 0 && ret != -ENXIO)
-                       return ret;
+                       goto error;
        }
-
        return 0;
+error:
+       for (; i >= 0; i--) {
+               unsigned int idx = seq[on][i];
+               __subdev_set_power(p->subdevs[idx], !on);
+       }
+       return ret;
 }
 
 /**
This page took 0.028545 seconds and 5 git commands to generate.