]> rtime.felk.cvut.cz Git - vajnamar/linux-xlnx.git/commitdiff
[media] media: Introduce internal index for media entities
authorSakari Ailus <sakari.ailus@linux.intel.com>
Wed, 16 Dec 2015 13:32:17 +0000 (11:32 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 11 Jan 2016 14:19:17 +0000 (12:19 -0200)
The internal index can be used internally by the framework in order to keep
track of entities for a purpose or another. The internal index is constant
while it's registered to a media device, but the same index may be re-used
once the entity having that index is unregistered.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/media-device.c
include/media/media-device.h
include/media/media-entity.h

index 30e3354d7481480034c2ec6a96dc8ccb13976ab0..ce97f8f196f3b8399163567a3be5d5e18a118f99 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <linux/compat.h>
 #include <linux/export.h>
+#include <linux/idr.h>
 #include <linux/ioctl.h>
 #include <linux/media.h>
 #include <linux/slab.h>
@@ -551,6 +552,17 @@ int __must_check media_device_register_entity(struct media_device *mdev,
        entity->num_backlinks = 0;
 
        spin_lock(&mdev->lock);
+
+       entity->internal_idx = ida_simple_get(&mdev->entity_internal_idx, 1, 0,
+                                             GFP_KERNEL);
+       if (entity->internal_idx < 0) {
+               spin_unlock(&mdev->lock);
+               return entity->internal_idx;
+       }
+
+       mdev->entity_internal_idx_max =
+               max(mdev->entity_internal_idx_max, entity->internal_idx);
+
        /* Initialize media_gobj embedded at the entity */
        media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
 
@@ -579,6 +591,8 @@ static void __media_device_unregister_entity(struct media_entity *entity)
        struct media_interface *intf;
        unsigned int i;
 
+       ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
+
        /* Remove all interface links pointing to this entity */
        list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
                list_for_each_entry_safe(link, tmp, &intf->links, list) {
@@ -632,6 +646,7 @@ void media_device_init(struct media_device *mdev)
        INIT_LIST_HEAD(&mdev->links);
        spin_lock_init(&mdev->lock);
        mutex_init(&mdev->graph_mutex);
+       ida_init(&mdev->entity_internal_idx);
 
        dev_dbg(mdev->dev, "Media device initialized\n");
 }
@@ -644,6 +659,8 @@ EXPORT_SYMBOL_GPL(media_device_init);
  */
 void media_device_cleanup(struct media_device *mdev)
 {
+       ida_destroy(&mdev->entity_internal_idx);
+       mdev->entity_internal_idx_max = 0;
        mutex_destroy(&mdev->graph_mutex);
 }
 EXPORT_SYMBOL_GPL(media_device_cleanup);
index e01bbc427fcd92f6b0f3f1f4795024fe1ebba9cd..2ab4e68038429e079b5eaff8c8c78fabcebdd186 100644 (file)
  * in the end provide a way to use driver-specific callbacks.
  */
 
+struct ida;
 struct device;
 
 /**
@@ -278,6 +279,7 @@ struct device;
  * @pad_id:    Unique ID used on the last pad registered
  * @link_id:   Unique ID used on the last link registered
  * @intf_devnode_id: Unique ID used on the last interface devnode registered
+ * @entity_internal_idx: Allocated internal entity indices
  * @entities:  List of registered entities
  * @interfaces:        List of registered interfaces
  * @pads:      List of registered pads
@@ -313,6 +315,8 @@ struct media_device {
        u32 pad_id;
        u32 link_id;
        u32 intf_devnode_id;
+       struct ida entity_internal_idx;
+       int entity_internal_idx_max;
 
        struct list_head entities;
        struct list_head interfaces;
index 81aca1f5a09afcad7e8ccda39b5ceea74407d46e..30e8f9fd3efab88480c79437641b6a041c545ccb 100644 (file)
@@ -157,6 +157,8 @@ struct media_entity_operations {
  * @num_pads:  Number of sink and source pads.
  * @num_links: Total number of links, forward and back, enabled and disabled.
  * @num_backlinks: Number of backlinks
+ * @internal_idx: An unique internal entity specific number. The numbers are
+ *             re-used if entities are unregistered or registered again.
  * @pads:      Pads array with the size defined by @num_pads.
  * @links:     List of data links.
  * @ops:       Entity operations.
@@ -183,6 +185,7 @@ struct media_entity {
        u16 num_pads;
        u16 num_links;
        u16 num_backlinks;
+       int internal_idx;
 
        struct media_pad *pads;
        struct list_head links;