blob: a7b21a7f4c640e03f727a607c7ad15747fe343ac [file] [log] [blame]
Laurent Pinchart53e269c2009-12-09 08:40:00 -03001/*
2 * Media entity
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_ENTITY_H
24#define _MEDIA_ENTITY_H
25
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -030026#include <linux/bitops.h>
Sakari Ailus0149a2e2013-12-13 08:58:37 -030027#include <linux/kernel.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030028#include <linux/list.h>
Laurent Pinchart16513332009-12-09 08:40:01 -030029#include <linux/media.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030030
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -030031/* Enums used internally at the media controller to represent graphs */
32
33/**
34 * enum media_gobj_type - type of a graph object
35 *
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -030036 * @MEDIA_GRAPH_ENTITY: Identify a media entity
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -030037 * @MEDIA_GRAPH_PAD: Identify a media pad
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -030038 * @MEDIA_GRAPH_LINK: Identify a media link
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030039 * @MEDIA_GRAPH_INTF_DEVNODE: Identify a media Kernel API interface via
40 * a device node
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -030041 */
42enum media_gobj_type {
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -030043 MEDIA_GRAPH_ENTITY,
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -030044 MEDIA_GRAPH_PAD,
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -030045 MEDIA_GRAPH_LINK,
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030046 MEDIA_GRAPH_INTF_DEVNODE,
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -030047};
48
49#define MEDIA_BITS_PER_TYPE 8
50#define MEDIA_BITS_PER_LOCAL_ID (32 - MEDIA_BITS_PER_TYPE)
51#define MEDIA_LOCAL_ID_MASK GENMASK(MEDIA_BITS_PER_LOCAL_ID - 1, 0)
52
53/* Structs to represent the objects that belong to a media graph */
54
55/**
56 * struct media_gobj - Define a graph object.
57 *
58 * @id: Non-zero object ID identifier. The ID should be unique
59 * inside a media_device, as it is composed by
60 * MEDIA_BITS_PER_TYPE to store the type plus
61 * MEDIA_BITS_PER_LOCAL_ID to store a per-type ID
62 * (called as "local ID").
63 *
64 * All objects on the media graph should have this struct embedded
65 */
66struct media_gobj {
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -030067 struct media_device *mdev;
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -030068 u32 id;
69};
70
71
Laurent Pincharte02188c2010-08-25 09:00:41 -030072struct media_pipeline {
73};
74
Laurent Pinchart53e269c2009-12-09 08:40:00 -030075struct media_link {
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -030076 struct media_gobj graph_obj;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -030077 struct list_head list;
Mauro Carvalho Chehab4b8a3c02015-08-20 09:10:07 -030078 union {
79 struct media_gobj *gobj0;
80 struct media_pad *source;
81 };
82 union {
83 struct media_gobj *gobj1;
84 struct media_pad *sink;
85 };
Laurent Pinchart53e269c2009-12-09 08:40:00 -030086 struct media_link *reverse; /* Link in the reverse direction */
87 unsigned long flags; /* Link flags (MEDIA_LNK_FL_*) */
88};
89
90struct media_pad {
Mauro Carvalho Chehab4b8a3c02015-08-20 09:10:07 -030091 struct media_gobj graph_obj; /* must be first field in struct */
Laurent Pinchart53e269c2009-12-09 08:40:00 -030092 struct media_entity *entity; /* Entity this pad belongs to */
93 u16 index; /* Pad index in the entity pads array */
94 unsigned long flags; /* Pad flags (MEDIA_PAD_FL_*) */
95};
96
Laurent Pinchart5a5394b2014-03-26 00:01:44 -030097/**
98 * struct media_entity_operations - Media entity operations
99 * @link_setup: Notify the entity of link changes. The operation can
100 * return an error, in which case link setup will be
101 * cancelled. Optional.
102 * @link_validate: Return whether a link is valid from the entity point of
103 * view. The media_entity_pipeline_start() function
104 * validates all links by calling this operation. Optional.
105 */
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300106struct media_entity_operations {
107 int (*link_setup)(struct media_entity *entity,
108 const struct media_pad *local,
109 const struct media_pad *remote, u32 flags);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300110 int (*link_validate)(struct media_link *link);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300111};
112
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300113struct media_entity {
Mauro Carvalho Chehab4b8a3c02015-08-20 09:10:07 -0300114 struct media_gobj graph_obj; /* must be first field in struct */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300115 struct list_head list;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300116 const char *name; /* Entity name */
117 u32 type; /* Entity type (MEDIA_ENT_T_*) */
118 u32 revision; /* Entity revision, driver specific */
119 unsigned long flags; /* Entity flags (MEDIA_ENT_FL_*) */
120 u32 group_id; /* Entity group ID */
121
122 u16 num_pads; /* Number of sink and source pads */
123 u16 num_links; /* Number of existing links, both
124 * enabled and disabled */
125 u16 num_backlinks; /* Number of backlinks */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300126
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300127 struct media_pad *pads; /* Pads array (num_pads objects) */
Mauro Carvalho Chehab4b8a3c02015-08-20 09:10:07 -0300128 struct list_head links; /* Pad-to-pad links list */
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300129
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300130 const struct media_entity_operations *ops; /* Entity operations */
131
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300132 /* Reference counts must never be negative, but are signed integers on
133 * purpose: a simple WARN_ON(<0) check can be used to detect reference
134 * count bugs that would make them negative.
135 */
Laurent Pincharte02188c2010-08-25 09:00:41 -0300136 int stream_count; /* Stream count for the entity. */
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300137 int use_count; /* Use count for the entity. */
138
Laurent Pincharte02188c2010-08-25 09:00:41 -0300139 struct media_pipeline *pipe; /* Pipeline this entity belongs to. */
140
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300141 union {
142 /* Node specifications */
143 struct {
144 u32 major;
145 u32 minor;
Mauro Carvalho Chehabe31a0ba2015-01-02 12:18:23 -0300146 } dev;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300147
148 /* Sub-device specifications */
149 /* Nothing needed yet */
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300150 } info;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300151};
152
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300153/**
154 * struct media_intf_devnode - Define a Kernel API interface
155 *
156 * @graph_obj: embedded graph object
157 * @type: Type of the interface as defined at the
158 * uapi/media/media.h header, e. g.
159 * MEDIA_INTF_T_*
160 * @flags: Interface flags as defined at uapi/media/media.h
161 */
162struct media_interface {
163 struct media_gobj graph_obj;
164 u32 type;
165 u32 flags;
166};
167
168/**
169 * struct media_intf_devnode - Define a Kernel API interface via a device node
170 *
171 * @intf: embedded interface object
172 * @major: Major number of a device node
173 * @minor: Minor number of a device node
174 */
175struct media_intf_devnode {
176 struct media_interface intf;
177 u32 major;
178 u32 minor;
179};
180
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300181static inline u32 media_entity_type(struct media_entity *entity)
182{
183 return entity->type & MEDIA_ENT_TYPE_MASK;
184}
185
186static inline u32 media_entity_subtype(struct media_entity *entity)
187{
188 return entity->type & MEDIA_ENT_SUBTYPE_MASK;
189}
190
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300191static inline u32 media_entity_id(struct media_entity *entity)
192{
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300193 return entity->graph_obj.id;
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300194}
195
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300196static inline enum media_gobj_type media_type(struct media_gobj *gobj)
197{
198 return gobj->id >> MEDIA_BITS_PER_LOCAL_ID;
199}
200
201static inline u32 media_localid(struct media_gobj *gobj)
202{
203 return gobj->id & MEDIA_LOCAL_ID_MASK;
204}
205
206static inline u32 media_gobj_gen_id(enum media_gobj_type type, u32 local_id)
207{
208 u32 id;
209
210 id = type << MEDIA_BITS_PER_LOCAL_ID;
211 id |= local_id & MEDIA_LOCAL_ID_MASK;
212
213 return id;
214}
215
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300216#define MEDIA_ENTITY_ENUM_MAX_DEPTH 16
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -0300217#define MEDIA_ENTITY_ENUM_MAX_ID 64
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300218
Mauro Carvalho Chehabef69ee12015-10-01 18:07:53 -0300219/*
220 * The number of pads can't be bigger than the number of entities,
221 * as the worse-case scenario is to have one entity linked up to
222 * MEDIA_ENTITY_ENUM_MAX_ID - 1 entities.
223 */
224#define MEDIA_ENTITY_MAX_PADS (MEDIA_ENTITY_ENUM_MAX_ID - 1)
225
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300226struct media_entity_graph {
227 struct {
228 struct media_entity *entity;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300229 struct list_head *link;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300230 } stack[MEDIA_ENTITY_ENUM_MAX_DEPTH];
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -0300231
232 DECLARE_BITMAP(entities, MEDIA_ENTITY_ENUM_MAX_ID);
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300233 int top;
234};
235
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300236#define gobj_to_entity(gobj) \
237 container_of(gobj, struct media_entity, graph_obj)
238
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300239#define gobj_to_pad(gobj) \
240 container_of(gobj, struct media_pad, graph_obj)
241
242#define gobj_to_link(gobj) \
243 container_of(gobj, struct media_link, graph_obj)
244
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300245#define gobj_to_link(gobj) \
246 container_of(gobj, struct media_link, graph_obj)
247
248#define gobj_to_pad(gobj) \
249 container_of(gobj, struct media_pad, graph_obj)
250
251#define gobj_to_intf(gobj) \
252 container_of(gobj, struct media_interface, graph_obj)
253
254#define intf_to_devnode(intf) \
255 container_of(intf, struct media_intf_devnode, intf)
256
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300257void media_gobj_init(struct media_device *mdev,
258 enum media_gobj_type type,
259 struct media_gobj *gobj);
260void media_gobj_remove(struct media_gobj *gobj);
261
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300262int media_entity_init(struct media_entity *entity, u16 num_pads,
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300263 struct media_pad *pads);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300264void media_entity_cleanup(struct media_entity *entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300265
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -0300266int media_create_pad_link(struct media_entity *source, u16 source_pad,
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300267 struct media_entity *sink, u16 sink_pad, u32 flags);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300268void __media_entity_remove_links(struct media_entity *entity);
269void media_entity_remove_links(struct media_entity *entity);
270
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300271int __media_entity_setup_link(struct media_link *link, u32 flags);
272int media_entity_setup_link(struct media_link *link, u32 flags);
273struct media_link *media_entity_find_link(struct media_pad *source,
274 struct media_pad *sink);
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300275struct media_pad *media_entity_remote_pad(struct media_pad *pad);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300276
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300277struct media_entity *media_entity_get(struct media_entity *entity);
278void media_entity_put(struct media_entity *entity);
279
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300280void media_entity_graph_walk_start(struct media_entity_graph *graph,
281 struct media_entity *entity);
282struct media_entity *
283media_entity_graph_walk_next(struct media_entity_graph *graph);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300284__must_check int media_entity_pipeline_start(struct media_entity *entity,
285 struct media_pipeline *pipe);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300286void media_entity_pipeline_stop(struct media_entity *entity);
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300287
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300288struct media_intf_devnode *media_devnode_create(struct media_device *mdev,
289 u32 type, u32 flags,
290 u32 major, u32 minor,
291 gfp_t gfp_flags);
292void media_devnode_remove(struct media_intf_devnode *devnode);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300293#define media_entity_call(entity, operation, args...) \
294 (((entity)->ops && (entity)->ops->operation) ? \
295 (entity)->ops->operation((entity) , ##args) : -ENOIOCTLCMD)
296
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300297#endif