[media] v4l: vsp1: Move subdev initialization code to vsp1_entity_init()
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Sun, 15 Nov 2015 21:42:01 +0000 (19:42 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 13 Apr 2016 20:51:24 +0000 (17:51 -0300)
Don't duplicate the code in every module driver, centralize it in a
single place.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/vsp1/vsp1_bru.c
drivers/media/platform/vsp1/vsp1_entity.c
drivers/media/platform/vsp1/vsp1_entity.h
drivers/media/platform/vsp1/vsp1_hsit.c
drivers/media/platform/vsp1/vsp1_lif.c
drivers/media/platform/vsp1/vsp1_lut.c
drivers/media/platform/vsp1/vsp1_rpf.c
drivers/media/platform/vsp1/vsp1_sru.c
drivers/media/platform/vsp1/vsp1_uds.c
drivers/media/platform/vsp1/vsp1_wpf.c

index 6a6e9d84f1cae04f5211831f52518da078f29cb0..2ca80d3dda1fa512e6771aa5b1e6421762e5e19d 100644 (file)
@@ -405,7 +405,6 @@ static struct v4l2_subdev_ops bru_ops = {
 
 struct vsp1_bru *vsp1_bru_create(struct vsp1_device *vsp1)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_bru *bru;
        int ret;
 
@@ -415,24 +414,11 @@ struct vsp1_bru *vsp1_bru_create(struct vsp1_device *vsp1)
 
        bru->entity.type = VSP1_ENTITY_BRU;
 
-       ret = vsp1_entity_init(vsp1, &bru->entity,
-                              vsp1->info->num_bru_inputs + 1);
+       ret = vsp1_entity_init(vsp1, &bru->entity, "bru",
+                              vsp1->info->num_bru_inputs + 1, &bru_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &bru->entity.subdev;
-       v4l2_subdev_init(subdev, &bru_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s bru",
-                dev_name(vsp1->dev));
-       v4l2_set_subdevdata(subdev, bru);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        /* Initialize the control handler. */
        v4l2_ctrl_handler_init(&bru->ctrls, 1);
        v4l2_ctrl_new_std(&bru->ctrls, &bru_ctrl_ops, V4L2_CID_BG_COLOR,
index 7b2301dbd5844471d94c71b3aab38b967388bca7..8432c49fbd75451ff7067b298931f70bb27ec0f4 100644 (file)
@@ -70,8 +70,8 @@ vsp1_entity_get_pad_format(struct vsp1_entity *entity,
  * formats are initialized on the file handle. Otherwise active formats are
  * initialized on the device.
  */
-void vsp1_entity_init_formats(struct v4l2_subdev *subdev,
-                           struct v4l2_subdev_pad_config *cfg)
+static void vsp1_entity_init_formats(struct v4l2_subdev *subdev,
+                                    struct v4l2_subdev_pad_config *cfg)
 {
        struct v4l2_subdev_format format;
        unsigned int pad;
@@ -159,9 +159,12 @@ static const struct vsp1_route vsp1_routes[] = {
 };
 
 int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
-                    unsigned int num_pads)
+                    const char *name, unsigned int num_pads,
+                    const struct v4l2_subdev_ops *ops)
 {
+       struct v4l2_subdev *subdev;
        unsigned int i;
+       int ret;
 
        for (i = 0; i < ARRAY_SIZE(vsp1_routes); ++i) {
                if (vsp1_routes[i].type == entity->type &&
@@ -196,8 +199,25 @@ int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
        entity->pads[num_pads - 1].flags = MEDIA_PAD_FL_SOURCE;
 
        /* Initialize the media entity. */
-       return media_entity_pads_init(&entity->subdev.entity, num_pads,
-                                entity->pads);
+       ret = media_entity_pads_init(&entity->subdev.entity, num_pads,
+                                    entity->pads);
+       if (ret < 0)
+               return ret;
+
+       /* Initialize the V4L2 subdev. */
+       subdev = &entity->subdev;
+       v4l2_subdev_init(subdev, ops);
+
+       subdev->entity.ops = &vsp1->media_ops;
+       subdev->internal_ops = &vsp1_subdev_internal_ops;
+       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
+
+       snprintf(subdev->name, sizeof(subdev->name), "%s %s",
+                dev_name(vsp1->dev), name);
+
+       vsp1_entity_init_formats(subdev, NULL);
+
+       return 0;
 }
 
 void vsp1_entity_destroy(struct vsp1_entity *entity)
index 203872164f8e61a4ea55d31e3796eee115f79d53..d76090059ced860706eaf56a0c5d509f06cb145a 100644 (file)
@@ -81,7 +81,8 @@ static inline struct vsp1_entity *to_vsp1_entity(struct v4l2_subdev *subdev)
 }
 
 int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
-                    unsigned int num_pads);
+                    const char *name, unsigned int num_pads,
+                    const struct v4l2_subdev_ops *ops);
 void vsp1_entity_destroy(struct vsp1_entity *entity);
 
 extern const struct v4l2_subdev_internal_ops vsp1_subdev_internal_ops;
@@ -94,8 +95,6 @@ struct v4l2_mbus_framefmt *
 vsp1_entity_get_pad_format(struct vsp1_entity *entity,
                           struct v4l2_subdev_pad_config *cfg,
                           unsigned int pad, u32 which);
-void vsp1_entity_init_formats(struct v4l2_subdev *subdev,
-                             struct v4l2_subdev_pad_config *cfg);
 
 void vsp1_entity_route_setup(struct vsp1_entity *source);
 
index e820fe0b4f0006314ffdcaad0c9e556989117fae..49ff74b51e03fcb179e288d1a9012eae3cfe634a 100644 (file)
@@ -180,7 +180,6 @@ static struct v4l2_subdev_ops hsit_ops = {
 
 struct vsp1_hsit *vsp1_hsit_create(struct vsp1_device *vsp1, bool inverse)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_hsit *hsit;
        int ret;
 
@@ -195,22 +194,10 @@ struct vsp1_hsit *vsp1_hsit_create(struct vsp1_device *vsp1, bool inverse)
        else
                hsit->entity.type = VSP1_ENTITY_HST;
 
-       ret = vsp1_entity_init(vsp1, &hsit->entity, 2);
+       ret = vsp1_entity_init(vsp1, &hsit->entity, inverse ? "hsi" : "hst", 2,
+                              &hsit_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &hsit->entity.subdev;
-       v4l2_subdev_init(subdev, &hsit_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s %s",
-                dev_name(vsp1->dev), inverse ? "hsi" : "hst");
-       v4l2_set_subdevdata(subdev, hsit);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        return hsit;
 }
index be0ea166016c40fc3d83c47e88eb76d0c5ca3f7a..ead6cc3aa3faf82ce7e467e496daab461c870ee3 100644 (file)
@@ -207,7 +207,6 @@ static struct v4l2_subdev_ops lif_ops = {
 
 struct vsp1_lif *vsp1_lif_create(struct vsp1_device *vsp1)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_lif *lif;
        int ret;
 
@@ -217,22 +216,9 @@ struct vsp1_lif *vsp1_lif_create(struct vsp1_device *vsp1)
 
        lif->entity.type = VSP1_ENTITY_LIF;
 
-       ret = vsp1_entity_init(vsp1, &lif->entity, 2);
+       ret = vsp1_entity_init(vsp1, &lif->entity, "lif", 2, &lif_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &lif->entity.subdev;
-       v4l2_subdev_init(subdev, &lif_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s lif",
-                dev_name(vsp1->dev));
-       v4l2_set_subdevdata(subdev, lif);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        return lif;
 }
index 3af849dbee5a2baa4a162c687cec064e30f493e5..6ba6a58fbac66977c1e2c46f33920a61732d2858 100644 (file)
@@ -221,7 +221,6 @@ static struct v4l2_subdev_ops lut_ops = {
 
 struct vsp1_lut *vsp1_lut_create(struct vsp1_device *vsp1)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_lut *lut;
        int ret;
 
@@ -231,22 +230,9 @@ struct vsp1_lut *vsp1_lut_create(struct vsp1_device *vsp1)
 
        lut->entity.type = VSP1_ENTITY_LUT;
 
-       ret = vsp1_entity_init(vsp1, &lut->entity, 2);
+       ret = vsp1_entity_init(vsp1, &lut->entity, "lut", 2, &lut_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &lut->entity.subdev;
-       v4l2_subdev_init(subdev, &lut_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s lut",
-                dev_name(vsp1->dev));
-       v4l2_set_subdevdata(subdev, lut);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        return lut;
 }
index 09919db7e0ea4d78b92d0963b15bacd0d5d8db3a..8d9e511fd61ae865ab1608c35e63b9cbf25c6f83 100644 (file)
@@ -164,8 +164,8 @@ static const struct vsp1_rwpf_operations rpf_vdev_ops = {
 
 struct vsp1_rwpf *vsp1_rpf_create(struct vsp1_device *vsp1, unsigned int index)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_rwpf *rpf;
+       char name[6];
        int ret;
 
        rpf = devm_kzalloc(vsp1->dev, sizeof(*rpf), GFP_KERNEL);
@@ -180,23 +180,11 @@ struct vsp1_rwpf *vsp1_rpf_create(struct vsp1_device *vsp1, unsigned int index)
        rpf->entity.type = VSP1_ENTITY_RPF;
        rpf->entity.index = index;
 
-       ret = vsp1_entity_init(vsp1, &rpf->entity, 2);
+       sprintf(name, "rpf.%u", index);
+       ret = vsp1_entity_init(vsp1, &rpf->entity, name, 2, &rpf_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &rpf->entity.subdev;
-       v4l2_subdev_init(subdev, &rpf_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s rpf.%u",
-                dev_name(vsp1->dev), index);
-       v4l2_set_subdevdata(subdev, rpf);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        /* Initialize the control handler. */
        ret = vsp1_rwpf_init_ctrls(rpf);
        if (ret < 0) {
index 19b7923cb137dd5186a63606d289c470676943a3..c8642bf8b1a1811a9af4791b81fac4b670c785dd 100644 (file)
@@ -324,7 +324,6 @@ static struct v4l2_subdev_ops sru_ops = {
 
 struct vsp1_sru *vsp1_sru_create(struct vsp1_device *vsp1)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_sru *sru;
        int ret;
 
@@ -334,23 +333,10 @@ struct vsp1_sru *vsp1_sru_create(struct vsp1_device *vsp1)
 
        sru->entity.type = VSP1_ENTITY_SRU;
 
-       ret = vsp1_entity_init(vsp1, &sru->entity, 2);
+       ret = vsp1_entity_init(vsp1, &sru->entity, "sru", 2, &sru_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &sru->entity.subdev;
-       v4l2_subdev_init(subdev, &sru_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s sru",
-                dev_name(vsp1->dev));
-       v4l2_set_subdevdata(subdev, sru);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        /* Initialize the control handler. */
        v4l2_ctrl_handler_init(&sru->ctrls, 1);
        v4l2_ctrl_new_custom(&sru->ctrls, &sru_intensity_control, NULL);
index 83ec8942f8e7477b56a3bb57135cc83fdf2e6c31..34689adda8104c869c92ab7ca3b086ee58fc2168 100644 (file)
@@ -322,8 +322,8 @@ static struct v4l2_subdev_ops uds_ops = {
 
 struct vsp1_uds *vsp1_uds_create(struct vsp1_device *vsp1, unsigned int index)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_uds *uds;
+       char name[6];
        int ret;
 
        uds = devm_kzalloc(vsp1->dev, sizeof(*uds), GFP_KERNEL);
@@ -333,22 +333,10 @@ struct vsp1_uds *vsp1_uds_create(struct vsp1_device *vsp1, unsigned int index)
        uds->entity.type = VSP1_ENTITY_UDS;
        uds->entity.index = index;
 
-       ret = vsp1_entity_init(vsp1, &uds->entity, 2);
+       sprintf(name, "uds.%u", index);
+       ret = vsp1_entity_init(vsp1, &uds->entity, name, 2, &uds_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &uds->entity.subdev;
-       v4l2_subdev_init(subdev, &uds_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s uds.%u",
-                dev_name(vsp1->dev), index);
-       v4l2_set_subdevdata(subdev, uds);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        return uds;
 }
index d889997b7948c51354db3096799736e420a18c9b..b81595eb51dcba05e5580a79cbecb00d80459816 100644 (file)
@@ -179,8 +179,8 @@ static void vsp1_wpf_destroy(struct vsp1_entity *entity)
 
 struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index)
 {
-       struct v4l2_subdev *subdev;
        struct vsp1_rwpf *wpf;
+       char name[6];
        int ret;
 
        wpf = devm_kzalloc(vsp1->dev, sizeof(*wpf), GFP_KERNEL);
@@ -196,7 +196,8 @@ struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index)
        wpf->entity.type = VSP1_ENTITY_WPF;
        wpf->entity.index = index;
 
-       ret = vsp1_entity_init(vsp1, &wpf->entity, 2);
+       sprintf(name, "wpf.%u", index);
+       ret = vsp1_entity_init(vsp1, &wpf->entity, name, 2, &wpf_ops);
        if (ret < 0)
                return ERR_PTR(ret);
 
@@ -207,19 +208,6 @@ struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index)
                goto error;
        }
 
-       /* Initialize the V4L2 subdev. */
-       subdev = &wpf->entity.subdev;
-       v4l2_subdev_init(subdev, &wpf_ops);
-
-       subdev->entity.ops = &vsp1->media_ops;
-       subdev->internal_ops = &vsp1_subdev_internal_ops;
-       snprintf(subdev->name, sizeof(subdev->name), "%s wpf.%u",
-                dev_name(vsp1->dev), index);
-       v4l2_set_subdevdata(subdev, wpf);
-       subdev->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
-
-       vsp1_entity_init_formats(subdev, NULL);
-
        /* Initialize the control handler. */
        ret = vsp1_rwpf_init_ctrls(wpf);
        if (ret < 0) {
This page took 0.034423 seconds and 5 git commands to generate.