[media] media: Entity use count
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Sun, 7 Mar 2010 18:04:59 +0000 (15:04 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 22 Mar 2011 07:53:12 +0000 (04:53 -0300)
Due to the wide differences between drivers regarding power management
needs, the media controller does not implement power management.
However, the media_entity structure includes a use_count field that
media drivers can use to track the number of users of every entity for
power management needs.

The use_count field is owned by media drivers and must not be touched by
entity drivers. Access to the field must be protected by the media
device graph_mutex lock.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Documentation/media-framework.txt
drivers/media/media-device.c
drivers/media/media-entity.c
include/media/media-device.h
include/media/media-entity.h

index ab17f33ddedcf7e88ed875db576bd2e19d74b05d..78ae02095372cac2408a603cc825db98e3df6d17 100644 (file)
@@ -258,3 +258,16 @@ When the graph traversal is complete the function will return NULL.
 
 Graph traversal can be interrupted at any moment. No cleanup function call is
 required and the graph structure can be freed normally.
+
+
+Use count and power handling
+----------------------------
+
+Due to the wide differences between drivers regarding power management needs,
+the media controller does not implement power management. However, the
+media_entity structure includes a use_count field that media drivers can use to
+track the number of users of every entity for power management needs.
+
+The use_count field is owned by media drivers and must not be touched by entity
+drivers. Access to the field must be protected by the media device graph_mutex
+lock.
index a36509a1df0900c836a01050879cbf209d4f69b5..d2bc809d7a2afb9fc6769e9f752239fd117ffc60 100644 (file)
@@ -73,6 +73,7 @@ int __must_check media_device_register(struct media_device *mdev)
        mdev->entity_id = 1;
        INIT_LIST_HEAD(&mdev->entities);
        spin_lock_init(&mdev->lock);
+       mutex_init(&mdev->graph_mutex);
 
        /* Register the device node. */
        mdev->devnode.fops = &media_device_fops;
index 166f2b5505ce1c2a8885d44a5f67d638b17144d2..3e7e2d569cec7e0eaf69ea0428f28846d7c020de 100644 (file)
@@ -23,6 +23,7 @@
 #include <linux/module.h>
 #include <linux/slab.h>
 #include <media/media-entity.h>
+#include <media/media-device.h>
 
 /**
  * media_entity_init - Initialize a media entity
@@ -195,6 +196,51 @@ media_entity_graph_walk_next(struct media_entity_graph *graph)
 }
 EXPORT_SYMBOL_GPL(media_entity_graph_walk_next);
 
+/* -----------------------------------------------------------------------------
+ * Module use count
+ */
+
+/*
+ * media_entity_get - Get a reference to the parent module
+ * @entity: The entity
+ *
+ * Get a reference to the parent media device module.
+ *
+ * The function will return immediately if @entity is NULL.
+ *
+ * Return a pointer to the entity on success or NULL on failure.
+ */
+struct media_entity *media_entity_get(struct media_entity *entity)
+{
+       if (entity == NULL)
+               return NULL;
+
+       if (entity->parent->dev &&
+           !try_module_get(entity->parent->dev->driver->owner))
+               return NULL;
+
+       return entity;
+}
+EXPORT_SYMBOL_GPL(media_entity_get);
+
+/*
+ * media_entity_put - Release the reference to the parent module
+ * @entity: The entity
+ *
+ * Release the reference count acquired by media_entity_get().
+ *
+ * The function will return immediately if @entity is NULL.
+ */
+void media_entity_put(struct media_entity *entity)
+{
+       if (entity == NULL)
+               return;
+
+       if (entity->parent->dev)
+               module_put(entity->parent->dev->driver->owner);
+}
+EXPORT_SYMBOL_GPL(media_entity_put);
+
 /* -----------------------------------------------------------------------------
  * Links management
  */
index a8390fe87e83fcd4ce59c61d0c7222717b8b531c..5d2bff4fc9e086a9ac5d2d7f9d89000ca2ebd145 100644 (file)
@@ -25,6 +25,7 @@
 
 #include <linux/device.h>
 #include <linux/list.h>
+#include <linux/mutex.h>
 #include <linux/spinlock.h>
 
 #include <media/media-devnode.h>
@@ -42,6 +43,7 @@
  * @entity_id: ID of the next entity to be registered
  * @entities:  List of registered entities
  * @lock:      Entities list lock
+ * @graph_mutex: Entities graph operation lock
  *
  * This structure represents an abstract high-level media device. It allows easy
  * access to entities and provides basic media device-level support. The
@@ -69,6 +71,8 @@ struct media_device {
 
        /* Protects the entities list */
        spinlock_t lock;
+       /* Serializes graph operations. */
+       struct mutex graph_mutex;
 };
 
 /* media_devnode to media_device */
index 28f61f6ee549941198673c649b8fc2eb2f7d6ad2..a9b31d98e3c6748c45c576d2ea6bba119e052cb2 100644 (file)
@@ -81,6 +81,12 @@ struct media_entity {
        struct media_pad *pads;         /* Pads array (num_pads elements) */
        struct media_link *links;       /* Links array (max_links elements)*/
 
+       /* Reference counts must never be negative, but are signed integers on
+        * purpose: a simple WARN_ON(<0) check can be used to detect reference
+        * count bugs that would make them negative.
+        */
+       int use_count;                  /* Use count for the entity. */
+
        union {
                /* Node specifications */
                struct {
@@ -129,6 +135,9 @@ void media_entity_cleanup(struct media_entity *entity);
 int media_entity_create_link(struct media_entity *source, u16 source_pad,
                struct media_entity *sink, u16 sink_pad, u32 flags);
 
+struct media_entity *media_entity_get(struct media_entity *entity);
+void media_entity_put(struct media_entity *entity);
+
 void media_entity_graph_walk_start(struct media_entity_graph *graph,
                struct media_entity *entity);
 struct media_entity *