]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - Documentation/media-framework.txt
[media] media: get rid of unused "extra_links" param on media_entity_init()
[mirror_ubuntu-artful-kernel.git] / Documentation / media-framework.txt
CommitLineData
176fb0d1
LP
1Linux kernel media framework
2============================
3
4This document describes the Linux kernel media framework, its data structures,
5functions and their usage.
6
7
8Introduction
9------------
10
11The media controller API is documented in DocBook format in
395cf969
PB
12Documentation/DocBook/media/v4l/media-controller.xml. This document will focus
13on the kernel-side implementation of the media framework.
176fb0d1
LP
14
15
53e269c1
LP
16Abstract media device model
17---------------------------
18
19Discovering a device internal topology, and configuring it at runtime, is one
20of the goals of the media framework. To achieve this, hardware devices are
f884ab15 21modelled as an oriented graph of building blocks called entities connected
53e269c1
LP
22through pads.
23
24An entity is a basic media hardware building block. It can correspond to
25a large variety of logical blocks such as physical hardware devices
26(CMOS sensor for instance), logical hardware devices (a building block
27in a System-on-Chip image processing pipeline), DMA channels or physical
28connectors.
29
30A pad is a connection endpoint through which an entity can interact with
31other entities. Data (not restricted to video) produced by an entity
32flows from the entity's output to one or more entity inputs. Pads should
33not be confused with physical pins at chip boundaries.
34
35A link is a point-to-point oriented connection between two pads, either
36on the same entity or on different entities. Data flows from a source
37pad to a sink pad.
38
39
176fb0d1
LP
40Media device
41------------
42
43A media device is represented by a struct media_device instance, defined in
44include/media/media-device.h. Allocation of the structure is handled by the
45media device driver, usually by embedding the media_device instance in a
46larger driver-specific structure.
47
48Drivers register media device instances by calling
49
50 media_device_register(struct media_device *mdev);
51
52The caller is responsible for initializing the media_device structure before
53registration. The following fields must be set:
54
55 - dev must point to the parent device (usually a pci_dev, usb_interface or
56 platform_device instance).
57
58 - model must be filled with the device model name as a NUL-terminated UTF-8
59 string. The device/model revision must not be stored in this field.
60
61The following fields are optional:
62
63 - serial is a unique serial number stored as a NUL-terminated ASCII string.
64 The field is big enough to store a GUID in text form. If the hardware
65 doesn't provide a unique serial number this field must be left empty.
66
67 - bus_info represents the location of the device in the system as a
68 NUL-terminated ASCII string. For PCI/PCIe devices bus_info must be set to
69 "PCI:" (or "PCIe:") followed by the value of pci_name(). For USB devices,
70 the usb_make_path() function must be used. This field is used by
71 applications to distinguish between otherwise identical devices that don't
72 provide a serial number.
73
74 - hw_revision is the hardware device revision in a driver-specific format.
75 When possible the revision should be formatted with the KERNEL_VERSION
76 macro.
77
78 - driver_version is formatted with the KERNEL_VERSION macro. The version
79 minor must be incremented when new features are added to the userspace API
80 without breaking binary compatibility. The version major must be
81 incremented when binary compatibility is broken.
82
83Upon successful registration a character device named media[0-9]+ is created.
84The device major and minor numbers are dynamic. The model name is exported as
85a sysfs attribute.
86
87Drivers unregister media device instances by calling
88
89 media_device_unregister(struct media_device *mdev);
90
91Unregistering a media device that hasn't been registered is *NOT* safe.
53e269c1
LP
92
93
94Entities, pads and links
95------------------------
96
97- Entities
98
99Entities are represented by a struct media_entity instance, defined in
100include/media/media-entity.h. The structure is usually embedded into a
101higher-level structure, such as a v4l2_subdev or video_device instance,
102although drivers can allocate entities directly.
103
104Drivers initialize entities by calling
105
106 media_entity_init(struct media_entity *entity, u16 num_pads,
18095107 107 struct media_pad *pads);
53e269c1
LP
108
109The media_entity name, type, flags, revision and group_id fields can be
110initialized before or after calling media_entity_init. Entities embedded in
111higher-level standard structures can have some of those fields set by the
112higher-level framework.
113
114As the number of pads is known in advance, the pads array is not allocated
115dynamically but is managed by the entity driver. Most drivers will embed the
116pads array in a driver-specific structure, avoiding dynamic allocation.
117
118Drivers must set the direction of every pad in the pads array before calling
119media_entity_init. The function will initialize the other pads fields.
120
121Unlike the number of pads, the total number of links isn't always known in
122advance by the entity driver. As an initial estimate, media_entity_init
18095107
MCC
123pre-allocates a number of links equal to the number of pads. The links array
124will be reallocated if it grows beyond the initial estimate.
53e269c1
LP
125
126Drivers register entities with a media device by calling
127
128 media_device_register_entity(struct media_device *mdev,
129 struct media_entity *entity);
130
131Entities are identified by a unique positive integer ID. Drivers can provide an
132ID by filling the media_entity id field prior to registration, or request the
133media controller framework to assign an ID automatically. Drivers that provide
134IDs manually must ensure that all IDs are unique. IDs are not guaranteed to be
135contiguous even when they are all assigned automatically by the framework.
136
137Drivers unregister entities by calling
138
139 media_device_unregister_entity(struct media_entity *entity);
140
141Unregistering an entity will not change the IDs of the other entities, and the
142ID will never be reused for a newly registered entity.
143
144When a media device is unregistered, all its entities are unregistered
145automatically. No manual entities unregistration is then required.
146
147Drivers free resources associated with an entity by calling
148
149 media_entity_cleanup(struct media_entity *entity);
150
151This function must be called during the cleanup phase after unregistering the
152entity. Note that the media_entity instance itself must be freed explicitly by
153the driver if required.
154
155Entities have flags that describe the entity capabilities and state.
156
157 MEDIA_ENT_FL_DEFAULT indicates the default entity for a given type.
158 This can be used to report the default audio and video devices or the
159 default camera sensor.
160
161Logical entity groups can be defined by setting the group ID of all member
162entities to the same non-zero value. An entity group serves no purpose in the
163kernel, but is reported to userspace during entities enumeration. The group_id
164field belongs to the media device driver and must not by touched by entity
165drivers.
166
167Media device drivers should define groups if several entities are logically
168bound together. Example usages include reporting
169
170 - ALSA, VBI and video nodes that carry the same media stream
171 - lens and flash controllers associated with a sensor
172
173- Pads
174
175Pads are represented by a struct media_pad instance, defined in
176include/media/media-entity.h. Each entity stores its pads in a pads array
177managed by the entity driver. Drivers usually embed the array in a
178driver-specific structure.
179
180Pads are identified by their entity and their 0-based index in the pads array.
181Both information are stored in the media_pad structure, making the media_pad
182pointer the canonical way to store and pass link references.
183
184Pads have flags that describe the pad capabilities and state.
185
186 MEDIA_PAD_FL_SINK indicates that the pad supports sinking data.
187 MEDIA_PAD_FL_SOURCE indicates that the pad supports sourcing data.
188
189One and only one of MEDIA_PAD_FL_SINK and MEDIA_PAD_FL_SOURCE must be set for
190each pad.
191
192- Links
193
194Links are represented by a struct media_link instance, defined in
195include/media/media-entity.h. Each entity stores all links originating at or
25985edc 196targeting any of its pads in a links array. A given link is thus stored
53e269c1
LP
197twice, once in the source entity and once in the target entity. The array is
198pre-allocated and grows dynamically as needed.
199
200Drivers create links by calling
201
202 media_entity_create_link(struct media_entity *source, u16 source_pad,
203 struct media_entity *sink, u16 sink_pad,
204 u32 flags);
205
206An entry in the link array of each entity is allocated and stores pointers
207to source and sink pads.
208
209Links have flags that describe the link capabilities and state.
210
211 MEDIA_LNK_FL_ENABLED indicates that the link is enabled and can be used
212 to transfer media data. When two or more links target a sink pad, only
213 one of them can be enabled at a time.
214 MEDIA_LNK_FL_IMMUTABLE indicates that the link enabled state can't be
215 modified at runtime. If MEDIA_LNK_FL_IMMUTABLE is set, then
216 MEDIA_LNK_FL_ENABLED must also be set since an immutable link is always
217 enabled.
a5ccc48a
SA
218
219
220Graph traversal
221---------------
222
223The media framework provides APIs to iterate over entities in a graph.
224
225To iterate over all entities belonging to a media device, drivers can use the
226media_device_for_each_entity macro, defined in include/media/media-device.h.
227
228 struct media_entity *entity;
229
230 media_device_for_each_entity(entity, mdev) {
231 /* entity will point to each entity in turn */
232 ...
233 }
234
235Drivers might also need to iterate over all entities in a graph that can be
236reached only through enabled links starting at a given entity. The media
237framework provides a depth-first graph traversal API for that purpose.
238
239Note that graphs with cycles (whether directed or undirected) are *NOT*
240supported by the graph traversal API. To prevent infinite loops, the graph
241traversal code limits the maximum depth to MEDIA_ENTITY_ENUM_MAX_DEPTH,
242currently defined as 16.
243
244Drivers initiate a graph traversal by calling
245
246 media_entity_graph_walk_start(struct media_entity_graph *graph,
247 struct media_entity *entity);
248
249The graph structure, provided by the caller, is initialized to start graph
250traversal at the given entity.
251
252Drivers can then retrieve the next entity by calling
253
254 media_entity_graph_walk_next(struct media_entity_graph *graph);
255
256When the graph traversal is complete the function will return NULL.
257
258Graph traversal can be interrupted at any moment. No cleanup function call is
259required and the graph structure can be freed normally.
503c3d82 260
97548ed4
LP
261Helper functions can be used to find a link between two given pads, or a pad
262connected to another pad through an enabled link
263
264 media_entity_find_link(struct media_pad *source,
265 struct media_pad *sink);
266
1bddf1b3 267 media_entity_remote_pad(struct media_pad *pad);
97548ed4
LP
268
269Refer to the kerneldoc documentation for more information.
270
503c3d82
LP
271
272Use count and power handling
273----------------------------
274
275Due to the wide differences between drivers regarding power management needs,
276the media controller does not implement power management. However, the
277media_entity structure includes a use_count field that media drivers can use to
278track the number of users of every entity for power management needs.
279
280The use_count field is owned by media drivers and must not be touched by entity
281drivers. Access to the field must be protected by the media device graph_mutex
282lock.
97548ed4
LP
283
284
285Links setup
286-----------
287
288Link properties can be modified at runtime by calling
289
290 media_entity_setup_link(struct media_link *link, u32 flags);
291
292The flags argument contains the requested new link flags.
293
294The only configurable property is the ENABLED link flag to enable/disable a
295link. Links marked with the IMMUTABLE link flag can not be enabled or disabled.
296
297When a link is enabled or disabled, the media framework calls the
298link_setup operation for the two entities at the source and sink of the link,
299in that order. If the second link_setup call fails, another link_setup call is
300made on the first entity to restore the original link flags.
301
302Media device drivers can be notified of link setup operations by setting the
303media_device::link_notify pointer to a callback function. If provided, the
304notification callback will be called before enabling and after disabling
305links.
306
307Entity drivers must implement the link_setup operation if any of their links
308is non-immutable. The operation must either configure the hardware or store
309the configuration information to be applied later.
310
311Link configuration must not have any side effect on other links. If an enabled
3751e329 312link at a sink pad prevents another link at the same pad from being enabled,
97548ed4
LP
313the link_setup operation must return -EBUSY and can't implicitly disable the
314first enabled link.
e02188c9
LP
315
316
317Pipelines and media streams
318---------------------------
319
320When starting streaming, drivers must notify all entities in the pipeline to
321prevent link states from being modified during streaming by calling
322
323 media_entity_pipeline_start(struct media_entity *entity,
324 struct media_pipeline *pipe);
325
326The function will mark all entities connected to the given entity through
327enabled links, either directly or indirectly, as streaming.
328
329The media_pipeline instance pointed to by the pipe argument will be stored in
330every entity in the pipeline. Drivers should embed the media_pipeline structure
331in higher-level pipeline structures and can then access the pipeline through
332the media_entity pipe field.
333
334Calls to media_entity_pipeline_start() can be nested. The pipeline pointer must
335be identical for all nested calls to the function.
336
af88be38 337media_entity_pipeline_start() may return an error. In that case, it will
c240ac9b 338clean up any of the changes it did by itself.
af88be38 339
e02188c9
LP
340When stopping the stream, drivers must notify the entities with
341
342 media_entity_pipeline_stop(struct media_entity *entity);
343
344If multiple calls to media_entity_pipeline_start() have been made the same
345number of media_entity_pipeline_stop() calls are required to stop streaming. The
346media_entity pipe field is reset to NULL on the last nested stop call.
347
348Link configuration will fail with -EBUSY by default if either end of the link is
349a streaming entity. Links that can be modified while streaming must be marked
350with the MEDIA_LNK_FL_DYNAMIC flag.
351
352If other operations need to be disallowed on streaming entities (such as
25985edc 353changing entities configuration parameters) drivers can explicitly check the
e02188c9
LP
354media_entity stream_count field to find out if an entity is streaming. This
355operation must be done with the media_device graph_mutex held.
af88be38
SA
356
357
358Link validation
359---------------
360
361Link validation is performed by media_entity_pipeline_start() for any
362entity which has sink pads in the pipeline. The
363media_entity::link_validate() callback is used for that purpose. In
364link_validate() callback, entity driver should check that the properties of
365the source pad of the connected entity and its own sink pad match. It is up
366to the type of the entity (and in the end, the properties of the hardware)
367what matching actually means.
368
369Subsystems should facilitate link validation by providing subsystem specific
370helper functions to provide easy access for commonly needed information, and
371in the end provide a way to use driver-specific callbacks.