[media] media: use unsigned for pad index
[deliverable/linux.git] / include / media / media-device.h
CommitLineData
176fb0d1
LP
1/*
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
176fb0d1 26#include <linux/list.h>
503c3d82 27#include <linux/mutex.h>
53e269c1 28#include <linux/spinlock.h>
176fb0d1
LP
29
30#include <media/media-devnode.h>
53e269c1 31#include <media/media-entity.h>
176fb0d1 32
cc2dd94a
MCC
33/**
34 * DOC: Media Controller
35 *
db7ee32a
MCC
36 * The media controller userspace API is documented in DocBook format in
37 * Documentation/DocBook/media/v4l/media-controller.xml. This document focus
cc2dd94a
MCC
38 * on the kernel-side implementation of the media framework.
39 *
db7ee32a 40 * * Abstract media device model:
cc2dd94a
MCC
41 *
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 *
db7ee32a 63 * * Media device:
cc2dd94a 64 *
db7ee32a 65 * A media device is represented by a struct &media_device instance, defined in
cc2dd94a 66 * include/media/media-device.h. Allocation of the structure is handled by the
db7ee32a 67 * media device driver, usually by embedding the &media_device instance in a
cc2dd94a
MCC
68 * larger driver-specific structure.
69 *
70 * Drivers register media device instances by calling
db7ee32a
MCC
71 * __media_device_register() via the macro media_device_register()
72 * and unregistered by calling
73 * media_device_unregister().
cc2dd94a 74 *
db7ee32a 75 * * Entities, pads and links:
cc2dd94a
MCC
76 *
77 * - Entities
78 *
db7ee32a 79 * Entities are represented by a struct &media_entity instance, defined in
cc2dd94a
MCC
80 * 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
db7ee32a 85 * media_entity_pads_init().
cc2dd94a
MCC
86 *
87 * Drivers register entities with a media device by calling
db7ee32a
MCC
88 * media_device_register_entity()
89 * and unregistred by calling
90 * media_device_unregister_entity().
cc2dd94a 91 *
db7ee32a 92 * - Interfaces
cc2dd94a 93 *
db7ee32a
MCC
94 * 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.
cc2dd94a 98 *
db7ee32a
MCC
99 * Drivers initialize and create device node interfaces by calling
100 * media_devnode_create()
101 * and remove them by calling:
102 * media_devnode_remove().
cc2dd94a
MCC
103 *
104 * - Pads
105 *
db7ee32a 106 * Pads are represented by a struct &media_pad instance, defined in
cc2dd94a
MCC
107 * 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 *
db7ee32a
MCC
111 * 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.
cc2dd94a
MCC
115 *
116 * Pads have flags that describe the pad capabilities and state.
117 *
db7ee32a
MCC
118 * %MEDIA_PAD_FL_SINK indicates that the pad supports sinking data.
119 * %MEDIA_PAD_FL_SOURCE indicates that the pad supports sourcing data.
cc2dd94a 120 *
db7ee32a
MCC
121 * NOTE: One and only one of %MEDIA_PAD_FL_SINK and %MEDIA_PAD_FL_SOURCE must
122 * be set for each pad.
cc2dd94a
MCC
123 *
124 * - Links
125 *
db7ee32a
MCC
126 * Links are represented by a struct &media_link instance, defined in
127 * include/media/media-entity.h. There are two types of links:
128 *
129 * 1. pad to pad links:
cc2dd94a 130 *
db7ee32a
MCC
131 * 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.
cc2dd94a 135 *
db7ee32a
MCC
136 * Drivers create pad to pad links by calling:
137 * media_create_pad_link() and remove with media_entity_remove_links().
cc2dd94a 138 *
db7ee32a 139 * 2. interface to entity links:
cc2dd94a 140 *
db7ee32a 141 * Associate one interface to a Link.
cc2dd94a 142 *
db7ee32a
MCC
143 * Drivers create interface to entity links by calling:
144 * media_create_intf_link() and remove with media_remove_intf_links().
cc2dd94a 145 *
db7ee32a 146 * NOTE:
cc2dd94a 147 *
db7ee32a
MCC
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:
cc2dd94a
MCC
155 *
156 * The media framework provides APIs to iterate over entities in a graph.
157 *
db7ee32a
MCC
158 * 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.
cc2dd94a
MCC
161 *
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
db7ee32a 179 * media_entity_graph_walk_start()
cc2dd94a
MCC
180 *
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
db7ee32a 185 * media_entity_graph_walk_next()
cc2dd94a
MCC
186 *
187 * When the graph traversal is complete the function will return NULL.
188 *
db7ee32a
MCC
189 * Graph traversal can be interrupted at any moment. No cleanup function call
190 * is required and the graph structure can be freed normally.
cc2dd94a
MCC
191 *
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
db7ee32a 194 * media_entity_find_link() and media_entity_remote_pad()
cc2dd94a 195 *
db7ee32a 196 * Use count and power handling:
cc2dd94a 197 *
db7ee32a
MCC
198 * 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.
cc2dd94a 203 *
db7ee32a
MCC
204 * 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.
cc2dd94a 207 *
db7ee32a 208 * Links setup:
cc2dd94a
MCC
209 *
210 * Link properties can be modified at runtime by calling
db7ee32a 211 * media_entity_setup_link()
cc2dd94a 212 *
db7ee32a 213 * Pipelines and media streams:
cc2dd94a
MCC
214 *
215 * When starting streaming, drivers must notify all entities in the pipeline to
216 * prevent link states from being modified during streaming by calling
db7ee32a 217 * media_entity_pipeline_start().
cc2dd94a
MCC
218 *
219 * The function will mark all entities connected to the given entity through
220 * enabled links, either directly or indirectly, as streaming.
221 *
db7ee32a
MCC
222 * 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.
cc2dd94a 226 *
db7ee32a
MCC
227 * Calls to media_entity_pipeline_start() can be nested. The pipeline pointer
228 * must be identical for all nested calls to the function.
cc2dd94a
MCC
229 *
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
db7ee32a 234 * media_entity_pipeline_stop().
cc2dd94a
MCC
235 *
236 * If multiple calls to media_entity_pipeline_start() have been made the same
db7ee32a
MCC
237 * 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.
cc2dd94a 239 *
db7ee32a
MCC
240 * 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.
cc2dd94a
MCC
243 *
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 *
db7ee32a 249 * Link validation:
cc2dd94a
MCC
250 *
251 * Link validation is performed by media_entity_pipeline_start() for any
252 * entity which has sink pads in the pipeline. The
db7ee32a
MCC
253 * &media_entity.@link_validate() callback is used for that purpose. In
254 * @link_validate() callback, entity driver should check that the properties of
cc2dd94a
MCC
255 * 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
313162d0
PG
264struct device;
265
176fb0d1
LP
266/**
267 * struct media_device - Media device
268 * @dev: Parent device
269 * @devnode: Media device node
270 * @model: Device model name
271 * @serial: Device serial number (optional)
272 * @bus_info: Unique and stable device location identifier
273 * @hw_revision: Hardware device revision
274 * @driver_version: Device driver version
2521fdac
MCC
275 * @topology_version: Monotonic counter for storing the version of the graph
276 * topology. Should be incremented each time the topology changes.
bfab2aac 277 * @entity_id: Unique ID used on the last entity registered
18710dc6 278 * @pad_id: Unique ID used on the last pad registered
6b6a4278 279 * @link_id: Unique ID used on the last link registered
27e543fa 280 * @intf_devnode_id: Unique ID used on the last interface devnode registered
53e269c1 281 * @entities: List of registered entities
57cf79b7 282 * @interfaces: List of registered interfaces
9155d859
MCC
283 * @pads: List of registered pads
284 * @links: List of registered links
53e269c1 285 * @lock: Entities list lock
503c3d82 286 * @graph_mutex: Entities graph operation lock
813f5c0a 287 * @link_notify: Link state change notification callback
176fb0d1
LP
288 *
289 * This structure represents an abstract high-level media device. It allows easy
290 * access to entities and provides basic media device-level support. The
291 * structure can be allocated directly or embedded in a larger structure.
292 *
293 * The parent @dev is a physical device. It must be set before registering the
294 * media device.
295 *
296 * @model is a descriptive model name exported through sysfs. It doesn't have to
297 * be unique.
298 */
299struct media_device {
300 /* dev->driver_data points to this struct. */
301 struct device *dev;
302 struct media_devnode devnode;
303
304 char model[32];
305 char serial[40];
306 char bus_info[32];
307 u32 hw_revision;
308 u32 driver_version;
53e269c1 309
2521fdac
MCC
310 u32 topology_version;
311
53e269c1 312 u32 entity_id;
18710dc6 313 u32 pad_id;
6b6a4278 314 u32 link_id;
27e543fa 315 u32 intf_devnode_id;
bfab2aac 316
53e269c1 317 struct list_head entities;
57cf79b7 318 struct list_head interfaces;
9155d859
MCC
319 struct list_head pads;
320 struct list_head links;
53e269c1 321
a08fad1e 322 /* Protects the graph objects creation/removal */
53e269c1 323 spinlock_t lock;
503c3d82
LP
324 /* Serializes graph operations. */
325 struct mutex graph_mutex;
97548ed4 326
813f5c0a
SN
327 int (*link_notify)(struct media_link *link, u32 flags,
328 unsigned int notification);
176fb0d1
LP
329};
330
e576d60b
SK
331#ifdef CONFIG_MEDIA_CONTROLLER
332
813f5c0a
SN
333/* Supported link_notify @notification values. */
334#define MEDIA_DEV_NOTIFY_PRE_LINK_CH 0
335#define MEDIA_DEV_NOTIFY_POST_LINK_CH 1
336
176fb0d1
LP
337/* media_devnode to media_device */
338#define to_media_device(node) container_of(node, struct media_device, devnode)
339
db7ee32a
MCC
340/**
341 * __media_device_register() - Registers a media device element
342 *
343 * @mdev: pointer to struct &media_device
344 * @owner: should be filled with %THIS_MODULE
345 *
346 * Users, should, instead, call the media_device_register() macro.
347 *
348 * The caller is responsible for initializing the media_device structure before
349 * registration. The following fields must be set:
350 *
351 * - dev must point to the parent device (usually a &pci_dev, &usb_interface or
352 * &platform_device instance).
353 *
354 * - model must be filled with the device model name as a NUL-terminated UTF-8
355 * string. The device/model revision must not be stored in this field.
356 *
357 * The following fields are optional:
358 *
359 * - serial is a unique serial number stored as a NUL-terminated ASCII string.
360 * The field is big enough to store a GUID in text form. If the hardware
361 * doesn't provide a unique serial number this field must be left empty.
362 *
363 * - bus_info represents the location of the device in the system as a
364 * NUL-terminated ASCII string. For PCI/PCIe devices bus_info must be set to
365 * "PCI:" (or "PCIe:") followed by the value of pci_name(). For USB devices,
366 * the usb_make_path() function must be used. This field is used by
367 * applications to distinguish between otherwise identical devices that don't
368 * provide a serial number.
369 *
370 * - hw_revision is the hardware device revision in a driver-specific format.
371 * When possible the revision should be formatted with the KERNEL_VERSION
372 * macro.
373 *
374 * - driver_version is formatted with the KERNEL_VERSION macro. The version
375 * minor must be incremented when new features are added to the userspace API
376 * without breaking binary compatibility. The version major must be
377 * incremented when binary compatibility is broken.
378 *
379 * Notes:
380 *
381 * Upon successful registration a character device named media[0-9]+ is created.
382 * The device major and minor numbers are dynamic. The model name is exported as
383 * a sysfs attribute.
384 *
385 * Unregistering a media device that hasn't been registered is *NOT* safe.
386 */
85de721c
SA
387int __must_check __media_device_register(struct media_device *mdev,
388 struct module *owner);
389#define media_device_register(mdev) __media_device_register(mdev, THIS_MODULE)
db7ee32a
MCC
390
391/**
392 * __media_device_unregister() - Unegisters a media device element
393 *
394 * @mdev: pointer to struct &media_device
395 */
176fb0d1
LP
396void media_device_unregister(struct media_device *mdev);
397
db7ee32a
MCC
398/**
399 * media_device_register_entity() - registers a media entity inside a
400 * previously registered media device.
401 *
402 * @mdev: pointer to struct &media_device
403 * @entity: pointer to struct &media_entity to be registered
404 *
405 * Entities are identified by a unique positive integer ID. The media
406 * controller framework will such ID automatically. IDs are not guaranteed
407 * to be contiguous, and the ID number can change on newer Kernel versions.
408 * So, neither the driver nor userspace should hardcode ID numbers to refer
409 * to the entities, but, instead, use the framework to find the ID, when
410 * needed.
411 *
412 * The media_entity name, type and flags fields should be initialized before
413 * calling media_device_register_entity(). Entities embedded in higher-level
414 * standard structures can have some of those fields set by the higher-level
415 * framework.
416 *
417 * If the device has pads, media_entity_pads_init() should be called before
418 * this function. Otherwise, the &media_entity.@pad and &media_entity.@num_pads
419 * should be zeroed before calling this function.
420 *
421 * Entities have flags that describe the entity capabilities and state:
422 *
423 * %MEDIA_ENT_FL_DEFAULT indicates the default entity for a given type.
424 * This can be used to report the default audio and video devices or the
425 * default camera sensor.
426 */
53e269c1
LP
427int __must_check media_device_register_entity(struct media_device *mdev,
428 struct media_entity *entity);
db7ee32a
MCC
429
430/*
431 * media_device_unregister_entity() - unregisters a media entity.
432 *
433 * @entity: pointer to struct &media_entity to be unregistered
434 *
435 * All links associated with the entity and all PADs are automatically
436 * unregistered from the media_device when this function is called.
437 *
438 * Unregistering an entity will not change the IDs of the other entities and
439 * the previoully used ID will never be reused for a newly registered entities.
440 *
441 * When a media device is unregistered, all its entities are unregistered
442 * automatically. No manual entities unregistration is then required.
443 *
444 * Note: the media_entity instance itself must be freed explicitly by
445 * the driver if required.
446 */
53e269c1 447void media_device_unregister_entity(struct media_entity *entity);
d062f911
SK
448struct media_device *media_device_get_devres(struct device *dev);
449struct media_device *media_device_find_devres(struct device *dev);
53e269c1
LP
450
451/* Iterate over all entities. */
452#define media_device_for_each_entity(entity, mdev) \
05bfa9fa 453 list_for_each_entry(entity, &(mdev)->entities, graph_obj.list)
53e269c1 454
cf975a4b
MCC
455/* Iterate over all interfaces. */
456#define media_device_for_each_intf(intf, mdev) \
05bfa9fa 457 list_for_each_entry(intf, &(mdev)->interfaces, graph_obj.list)
cf975a4b 458
9155d859
MCC
459/* Iterate over all pads. */
460#define media_device_for_each_pad(pad, mdev) \
461 list_for_each_entry(pad, &(mdev)->pads, graph_obj.list)
462
463/* Iterate over all links. */
464#define media_device_for_each_link(link, mdev) \
465 list_for_each_entry(link, &(mdev)->links, graph_obj.list)
e576d60b
SK
466#else
467static inline int media_device_register(struct media_device *mdev)
468{
469 return 0;
470}
471static inline void media_device_unregister(struct media_device *mdev)
472{
473}
474static inline int media_device_register_entity(struct media_device *mdev,
475 struct media_entity *entity)
476{
477 return 0;
478}
479static inline void media_device_unregister_entity(struct media_entity *entity)
480{
481}
482static inline struct media_device *media_device_get_devres(struct device *dev)
483{
484 return NULL;
485}
486static inline struct media_device *media_device_find_devres(struct device *dev)
487{
488 return NULL;
489}
490#endif /* CONFIG_MEDIA_CONTROLLER */
176fb0d1 491#endif
This page took 0.19642 seconds and 5 git commands to generate.