blob: 2ab4e68038429e079b5eaff8c8c78fabcebdd186 [file] [log] [blame]
Laurent Pinchart176fb0d2009-12-09 08:39:58 -03001/*
2 * Media device
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23#ifndef _MEDIA_DEVICE_H
24#define _MEDIA_DEVICE_H
25
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030026#include <linux/list.h>
Laurent Pinchart503c3d822010-03-07 15:04:59 -030027#include <linux/mutex.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030028#include <linux/spinlock.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030029
30#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030031#include <media/media-entity.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030032
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020033/**
34 * DOC: Media Controller
35 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020036 * The media controller userspace API is documented in DocBook format in
37 * Documentation/DocBook/media/v4l/media-controller.xml. This document focus
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020038 * on the kernel-side implementation of the media framework.
39 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020040 * * Abstract media device model:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020041 *
42 * Discovering a device internal topology, and configuring it at runtime, is one
43 * of the goals of the media framework. To achieve this, hardware devices are
44 * modelled as an oriented graph of building blocks called entities connected
45 * through pads.
46 *
47 * An entity is a basic media hardware building block. It can correspond to
48 * a large variety of logical blocks such as physical hardware devices
49 * (CMOS sensor for instance), logical hardware devices (a building block
50 * in a System-on-Chip image processing pipeline), DMA channels or physical
51 * connectors.
52 *
53 * A pad is a connection endpoint through which an entity can interact with
54 * other entities. Data (not restricted to video) produced by an entity
55 * flows from the entity's output to one or more entity inputs. Pads should
56 * not be confused with physical pins at chip boundaries.
57 *
58 * A link is a point-to-point oriented connection between two pads, either
59 * on the same entity or on different entities. Data flows from a source
60 * pad to a sink pad.
61 *
62 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020063 * * Media device:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020064 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020065 * A media device is represented by a struct &media_device instance, defined in
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020066 * include/media/media-device.h. Allocation of the structure is handled by the
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020067 * media device driver, usually by embedding the &media_device instance in a
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020068 * larger driver-specific structure.
69 *
70 * Drivers register media device instances by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020071 * __media_device_register() via the macro media_device_register()
72 * and unregistered by calling
73 * media_device_unregister().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020074 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020075 * * Entities, pads and links:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020076 *
77 * - Entities
78 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020079 * Entities are represented by a struct &media_entity instance, defined in
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020080 * include/media/media-entity.h. The structure is usually embedded into a
81 * higher-level structure, such as a v4l2_subdev or video_device instance,
82 * although drivers can allocate entities directly.
83 *
84 * Drivers initialize entity pads by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020085 * media_entity_pads_init().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020086 *
87 * Drivers register entities with a media device by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020088 * media_device_register_entity()
89 * and unregistred by calling
90 * media_device_unregister_entity().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020091 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020092 * - Interfaces
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020093 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020094 * Interfaces are represented by a struct &media_interface instance, defined in
95 * include/media/media-entity.h. Currently, only one type of interface is
96 * defined: a device node. Such interfaces are represented by a struct
97 * &media_intf_devnode.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -020098 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -020099 * Drivers initialize and create device node interfaces by calling
100 * media_devnode_create()
101 * and remove them by calling:
102 * media_devnode_remove().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200103 *
104 * - Pads
105 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200106 * Pads are represented by a struct &media_pad instance, defined in
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200107 * include/media/media-entity.h. Each entity stores its pads in a pads array
108 * managed by the entity driver. Drivers usually embed the array in a
109 * driver-specific structure.
110 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200111 * Pads are identified by their entity and their 0-based index in the pads
112 * array.
113 * Both information are stored in the &media_pad structure, making the
114 * &media_pad pointer the canonical way to store and pass link references.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200115 *
116 * Pads have flags that describe the pad capabilities and state.
117 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200118 * %MEDIA_PAD_FL_SINK indicates that the pad supports sinking data.
119 * %MEDIA_PAD_FL_SOURCE indicates that the pad supports sourcing data.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200120 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200121 * NOTE: One and only one of %MEDIA_PAD_FL_SINK and %MEDIA_PAD_FL_SOURCE must
122 * be set for each pad.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200123 *
124 * - Links
125 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200126 * Links are represented by a struct &media_link instance, defined in
127 * include/media/media-entity.h. There are two types of links:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200128 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200129 * 1. pad to pad links:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200130 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200131 * Associate two entities via their PADs. Each entity has a list that points
132 * to all links originating at or targeting any of its pads.
133 * A given link is thus stored twice, once in the source entity and once in
134 * the target entity.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200135 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200136 * Drivers create pad to pad links by calling:
137 * media_create_pad_link() and remove with media_entity_remove_links().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200138 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200139 * 2. interface to entity links:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200140 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200141 * Associate one interface to a Link.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200142 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200143 * Drivers create interface to entity links by calling:
144 * media_create_intf_link() and remove with media_remove_intf_links().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200145 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200146 * NOTE:
147 *
148 * Links can only be created after having both ends already created.
149 *
150 * Links have flags that describe the link capabilities and state. The
151 * valid values are described at media_create_pad_link() and
152 * media_create_intf_link().
153 *
154 * Graph traversal:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200155 *
156 * The media framework provides APIs to iterate over entities in a graph.
157 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200158 * To iterate over all entities belonging to a media device, drivers can use
159 * the media_device_for_each_entity macro, defined in
160 * include/media/media-device.h.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200161 *
162 * struct media_entity *entity;
163 *
164 * media_device_for_each_entity(entity, mdev) {
165 * // entity will point to each entity in turn
166 * ...
167 * }
168 *
169 * Drivers might also need to iterate over all entities in a graph that can be
170 * reached only through enabled links starting at a given entity. The media
171 * framework provides a depth-first graph traversal API for that purpose.
172 *
173 * Note that graphs with cycles (whether directed or undirected) are *NOT*
174 * supported by the graph traversal API. To prevent infinite loops, the graph
175 * traversal code limits the maximum depth to MEDIA_ENTITY_ENUM_MAX_DEPTH,
176 * currently defined as 16.
177 *
178 * Drivers initiate a graph traversal by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200179 * media_entity_graph_walk_start()
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200180 *
181 * The graph structure, provided by the caller, is initialized to start graph
182 * traversal at the given entity.
183 *
184 * Drivers can then retrieve the next entity by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200185 * media_entity_graph_walk_next()
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200186 *
187 * When the graph traversal is complete the function will return NULL.
188 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200189 * Graph traversal can be interrupted at any moment. No cleanup function call
190 * is required and the graph structure can be freed normally.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200191 *
192 * Helper functions can be used to find a link between two given pads, or a pad
193 * connected to another pad through an enabled link
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200194 * media_entity_find_link() and media_entity_remote_pad()
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200195 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200196 * Use count and power handling:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200197 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200198 * Due to the wide differences between drivers regarding power management
199 * needs, the media controller does not implement power management. However,
200 * the &media_entity structure includes a use_count field that media drivers
201 * can use to track the number of users of every entity for power management
202 * needs.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200203 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200204 * The &media_entity.@use_count field is owned by media drivers and must not be
205 * touched by entity drivers. Access to the field must be protected by the
206 * &media_device.@graph_mutex lock.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200207 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200208 * Links setup:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200209 *
210 * Link properties can be modified at runtime by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200211 * media_entity_setup_link()
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200212 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200213 * Pipelines and media streams:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200214 *
215 * When starting streaming, drivers must notify all entities in the pipeline to
216 * prevent link states from being modified during streaming by calling
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200217 * media_entity_pipeline_start().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200218 *
219 * The function will mark all entities connected to the given entity through
220 * enabled links, either directly or indirectly, as streaming.
221 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200222 * The &media_pipeline instance pointed to by the pipe argument will be stored
223 * in every entity in the pipeline. Drivers should embed the &media_pipeline
224 * structure in higher-level pipeline structures and can then access the
225 * pipeline through the &media_entity pipe field.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200226 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200227 * Calls to media_entity_pipeline_start() can be nested. The pipeline pointer
228 * must be identical for all nested calls to the function.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200229 *
230 * media_entity_pipeline_start() may return an error. In that case, it will
231 * clean up any of the changes it did by itself.
232 *
233 * When stopping the stream, drivers must notify the entities with
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200234 * media_entity_pipeline_stop().
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200235 *
236 * If multiple calls to media_entity_pipeline_start() have been made the same
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200237 * number of media_entity_pipeline_stop() calls are required to stop streaming.
238 * The &media_entity pipe field is reset to NULL on the last nested stop call.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200239 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200240 * Link configuration will fail with -%EBUSY by default if either end of the
241 * link is a streaming entity. Links that can be modified while streaming must
242 * be marked with the %MEDIA_LNK_FL_DYNAMIC flag.
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200243 *
244 * If other operations need to be disallowed on streaming entities (such as
245 * changing entities configuration parameters) drivers can explicitly check the
246 * media_entity stream_count field to find out if an entity is streaming. This
247 * operation must be done with the media_device graph_mutex held.
248 *
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200249 * Link validation:
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200250 *
251 * Link validation is performed by media_entity_pipeline_start() for any
252 * entity which has sink pads in the pipeline. The
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200253 * &media_entity.@link_validate() callback is used for that purpose. In
254 * @link_validate() callback, entity driver should check that the properties of
Mauro Carvalho Chehabcc2dd942015-12-11 08:21:39 -0200255 * the source pad of the connected entity and its own sink pad match. It is up
256 * to the type of the entity (and in the end, the properties of the hardware)
257 * what matching actually means.
258 *
259 * Subsystems should facilitate link validation by providing subsystem specific
260 * helper functions to provide easy access for commonly needed information, and
261 * in the end provide a way to use driver-specific callbacks.
262 */
263
Sakari Ailus665faa92015-12-16 11:32:17 -0200264struct ida;
Paul Gortmaker313162d2012-01-30 11:46:54 -0500265struct device;
266
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300267/**
268 * struct media_device - Media device
269 * @dev: Parent device
270 * @devnode: Media device node
271 * @model: Device model name
272 * @serial: Device serial number (optional)
273 * @bus_info: Unique and stable device location identifier
274 * @hw_revision: Hardware device revision
275 * @driver_version: Device driver version
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300276 * @topology_version: Monotonic counter for storing the version of the graph
277 * topology. Should be incremented each time the topology changes.
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300278 * @entity_id: Unique ID used on the last entity registered
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300279 * @pad_id: Unique ID used on the last pad registered
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300280 * @link_id: Unique ID used on the last link registered
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300281 * @intf_devnode_id: Unique ID used on the last interface devnode registered
Sakari Ailus665faa92015-12-16 11:32:17 -0200282 * @entity_internal_idx: Allocated internal entity indices
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300283 * @entities: List of registered entities
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300284 * @interfaces: List of registered interfaces
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300285 * @pads: List of registered pads
286 * @links: List of registered links
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300287 * @lock: Entities list lock
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300288 * @graph_mutex: Entities graph operation lock
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -0300289 * @link_notify: Link state change notification callback
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300290 *
291 * This structure represents an abstract high-level media device. It allows easy
292 * access to entities and provides basic media device-level support. The
293 * structure can be allocated directly or embedded in a larger structure.
294 *
295 * The parent @dev is a physical device. It must be set before registering the
296 * media device.
297 *
298 * @model is a descriptive model name exported through sysfs. It doesn't have to
299 * be unique.
300 */
301struct media_device {
302 /* dev->driver_data points to this struct. */
303 struct device *dev;
304 struct media_devnode devnode;
305
306 char model[32];
307 char serial[40];
308 char bus_info[32];
309 u32 hw_revision;
310 u32 driver_version;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300311
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300312 u32 topology_version;
313
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300314 u32 entity_id;
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300315 u32 pad_id;
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300316 u32 link_id;
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300317 u32 intf_devnode_id;
Sakari Ailus665faa92015-12-16 11:32:17 -0200318 struct ida entity_internal_idx;
319 int entity_internal_idx_max;
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300320
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300321 struct list_head entities;
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300322 struct list_head interfaces;
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300323 struct list_head pads;
324 struct list_head links;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300325
Mauro Carvalho Chehaba08fad12015-12-09 19:47:35 -0200326 /* Protects the graph objects creation/removal */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300327 spinlock_t lock;
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300328 /* Serializes graph operations. */
329 struct mutex graph_mutex;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300330
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -0300331 int (*link_notify)(struct media_link *link, u32 flags,
332 unsigned int notification);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300333};
334
Shuah Khane576d602015-06-05 17:11:54 -0300335#ifdef CONFIG_MEDIA_CONTROLLER
336
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -0300337/* Supported link_notify @notification values. */
338#define MEDIA_DEV_NOTIFY_PRE_LINK_CH 0
339#define MEDIA_DEV_NOTIFY_POST_LINK_CH 1
340
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300341/* media_devnode to media_device */
342#define to_media_device(node) container_of(node, struct media_device, devnode)
343
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200344/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200345 * media_device_init() - Initializes a media device element
346 *
347 * @mdev: pointer to struct &media_device
348 *
349 * This function initializes the media device prior to its registration.
350 * The media device initialization and registration is split in two functions
351 * to avoid race conditions and make the media device available to user-space
352 * before the media graph has been completed.
353 *
354 * So drivers need to first initialize the media device, register any entity
355 * within the media device, create pad to pad links and then finally register
356 * the media device by calling media_device_register() as a final step.
357 */
358void media_device_init(struct media_device *mdev);
359
360/**
361 * media_device_cleanup() - Cleanups a media device element
362 *
363 * @mdev: pointer to struct &media_device
364 *
365 * This function that will destroy the graph_mutex that is
366 * initialized in media_device_init().
367 */
368void media_device_cleanup(struct media_device *mdev);
369
370/**
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200371 * __media_device_register() - Registers a media device element
372 *
373 * @mdev: pointer to struct &media_device
374 * @owner: should be filled with %THIS_MODULE
375 *
376 * Users, should, instead, call the media_device_register() macro.
377 *
378 * The caller is responsible for initializing the media_device structure before
379 * registration. The following fields must be set:
380 *
381 * - dev must point to the parent device (usually a &pci_dev, &usb_interface or
382 * &platform_device instance).
383 *
384 * - model must be filled with the device model name as a NUL-terminated UTF-8
385 * string. The device/model revision must not be stored in this field.
386 *
387 * The following fields are optional:
388 *
389 * - serial is a unique serial number stored as a NUL-terminated ASCII string.
390 * The field is big enough to store a GUID in text form. If the hardware
391 * doesn't provide a unique serial number this field must be left empty.
392 *
393 * - bus_info represents the location of the device in the system as a
394 * NUL-terminated ASCII string. For PCI/PCIe devices bus_info must be set to
395 * "PCI:" (or "PCIe:") followed by the value of pci_name(). For USB devices,
396 * the usb_make_path() function must be used. This field is used by
397 * applications to distinguish between otherwise identical devices that don't
398 * provide a serial number.
399 *
400 * - hw_revision is the hardware device revision in a driver-specific format.
401 * When possible the revision should be formatted with the KERNEL_VERSION
402 * macro.
403 *
404 * - driver_version is formatted with the KERNEL_VERSION macro. The version
405 * minor must be incremented when new features are added to the userspace API
406 * without breaking binary compatibility. The version major must be
407 * incremented when binary compatibility is broken.
408 *
409 * Notes:
410 *
411 * Upon successful registration a character device named media[0-9]+ is created.
412 * The device major and minor numbers are dynamic. The model name is exported as
413 * a sysfs attribute.
414 *
415 * Unregistering a media device that hasn't been registered is *NOT* safe.
416 */
Sakari Ailus85de7212013-12-12 12:38:17 -0300417int __must_check __media_device_register(struct media_device *mdev,
418 struct module *owner);
419#define media_device_register(mdev) __media_device_register(mdev, THIS_MODULE)
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200420
421/**
422 * __media_device_unregister() - Unegisters a media device element
423 *
424 * @mdev: pointer to struct &media_device
425 */
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300426void media_device_unregister(struct media_device *mdev);
427
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200428/**
429 * media_device_register_entity() - registers a media entity inside a
430 * previously registered media device.
431 *
432 * @mdev: pointer to struct &media_device
433 * @entity: pointer to struct &media_entity to be registered
434 *
435 * Entities are identified by a unique positive integer ID. The media
436 * controller framework will such ID automatically. IDs are not guaranteed
437 * to be contiguous, and the ID number can change on newer Kernel versions.
438 * So, neither the driver nor userspace should hardcode ID numbers to refer
439 * to the entities, but, instead, use the framework to find the ID, when
440 * needed.
441 *
442 * The media_entity name, type and flags fields should be initialized before
443 * calling media_device_register_entity(). Entities embedded in higher-level
444 * standard structures can have some of those fields set by the higher-level
445 * framework.
446 *
447 * If the device has pads, media_entity_pads_init() should be called before
448 * this function. Otherwise, the &media_entity.@pad and &media_entity.@num_pads
449 * should be zeroed before calling this function.
450 *
451 * Entities have flags that describe the entity capabilities and state:
452 *
453 * %MEDIA_ENT_FL_DEFAULT indicates the default entity for a given type.
454 * This can be used to report the default audio and video devices or the
455 * default camera sensor.
Mauro Carvalho Chehabd1b9da22015-12-11 12:41:12 -0200456 *
457 * NOTE: Drivers should set the entity function before calling this function.
458 * Please notice that the values %MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN and
459 * %MEDIA_ENT_F_UNKNOWN should not be used by the drivers.
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200460 */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300461int __must_check media_device_register_entity(struct media_device *mdev,
462 struct media_entity *entity);
Mauro Carvalho Chehabdb7ee322015-12-11 11:06:08 -0200463
464/*
465 * media_device_unregister_entity() - unregisters a media entity.
466 *
467 * @entity: pointer to struct &media_entity to be unregistered
468 *
469 * All links associated with the entity and all PADs are automatically
470 * unregistered from the media_device when this function is called.
471 *
472 * Unregistering an entity will not change the IDs of the other entities and
473 * the previoully used ID will never be reused for a newly registered entities.
474 *
475 * When a media device is unregistered, all its entities are unregistered
476 * automatically. No manual entities unregistration is then required.
477 *
478 * Note: the media_entity instance itself must be freed explicitly by
479 * the driver if required.
480 */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300481void media_device_unregister_entity(struct media_entity *entity);
Mauro Carvalho Chehabb6e4ca82015-12-13 08:36:58 -0200482
483/**
484 * media_device_get_devres() - get media device as device resource
485 * creates if one doesn't exist
486 *
487 * @dev: pointer to struct &device.
488 *
489 * Sometimes, the media controller &media_device needs to be shared by more
490 * than one driver. This function adds support for that, by dynamically
491 * allocating the &media_device and allowing it to be obtained from the
492 * struct &device associated with the common device where all sub-device
493 * components belong. So, for example, on an USB device with multiple
494 * interfaces, each interface may be handled by a separate per-interface
495 * drivers. While each interface have its own &device, they all share a
496 * common &device associated with the hole USB device.
497 */
Shuah Khand062f912015-06-03 12:12:53 -0300498struct media_device *media_device_get_devres(struct device *dev);
Mauro Carvalho Chehabb6e4ca82015-12-13 08:36:58 -0200499
500/**
501 * media_device_find_devres() - find media device as device resource
502 *
503 * @dev: pointer to struct &device.
504 */
Shuah Khand062f912015-06-03 12:12:53 -0300505struct media_device *media_device_find_devres(struct device *dev);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300506
507/* Iterate over all entities. */
508#define media_device_for_each_entity(entity, mdev) \
Mauro Carvalho Chehab05bfa9f2015-08-23 07:51:33 -0300509 list_for_each_entry(entity, &(mdev)->entities, graph_obj.list)
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300510
Mauro Carvalho Chehabcf975a42015-08-23 07:51:22 -0300511/* Iterate over all interfaces. */
512#define media_device_for_each_intf(intf, mdev) \
Mauro Carvalho Chehab05bfa9f2015-08-23 07:51:33 -0300513 list_for_each_entry(intf, &(mdev)->interfaces, graph_obj.list)
Mauro Carvalho Chehabcf975a42015-08-23 07:51:22 -0300514
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300515/* Iterate over all pads. */
516#define media_device_for_each_pad(pad, mdev) \
517 list_for_each_entry(pad, &(mdev)->pads, graph_obj.list)
518
519/* Iterate over all links. */
520#define media_device_for_each_link(link, mdev) \
521 list_for_each_entry(link, &(mdev)->links, graph_obj.list)
Shuah Khane576d602015-06-05 17:11:54 -0300522#else
523static inline int media_device_register(struct media_device *mdev)
524{
525 return 0;
526}
527static inline void media_device_unregister(struct media_device *mdev)
528{
529}
530static inline int media_device_register_entity(struct media_device *mdev,
531 struct media_entity *entity)
532{
533 return 0;
534}
535static inline void media_device_unregister_entity(struct media_entity *entity)
536{
537}
538static inline struct media_device *media_device_get_devres(struct device *dev)
539{
540 return NULL;
541}
542static inline struct media_device *media_device_find_devres(struct device *dev)
543{
544 return NULL;
545}
546#endif /* CONFIG_MEDIA_CONTROLLER */
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300547#endif