blob: 4d1c13de494bfb9f7a4957311225211250480b5d [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
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -030023#include <linux/compat.h>
24#include <linux/export.h>
Sakari Ailus665faa92015-12-16 11:32:17 -020025#include <linux/idr.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030026#include <linux/ioctl.h>
Laurent Pinchart140d8812010-08-18 11:41:22 -030027#include <linux/media.h>
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -030028#include <linux/slab.h>
Mauro Carvalho Chehab497e80c2015-12-11 07:23:09 -020029#include <linux/types.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030030
31#include <media/media-device.h>
32#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030033#include <media/media-entity.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030034
Shuah Khane576d602015-06-05 17:11:54 -030035#ifdef CONFIG_MEDIA_CONTROLLER
36
Laurent Pinchart140d8812010-08-18 11:41:22 -030037/* -----------------------------------------------------------------------------
38 * Userspace API
39 */
40
41static int media_device_open(struct file *filp)
42{
43 return 0;
44}
45
46static int media_device_close(struct file *filp)
47{
48 return 0;
49}
50
51static int media_device_get_info(struct media_device *dev,
52 struct media_device_info __user *__info)
53{
54 struct media_device_info info;
55
56 memset(&info, 0, sizeof(info));
57
58 strlcpy(info.driver, dev->dev->driver->name, sizeof(info.driver));
59 strlcpy(info.model, dev->model, sizeof(info.model));
60 strlcpy(info.serial, dev->serial, sizeof(info.serial));
61 strlcpy(info.bus_info, dev->bus_info, sizeof(info.bus_info));
62
63 info.media_version = MEDIA_API_VERSION;
64 info.hw_revision = dev->hw_revision;
65 info.driver_version = dev->driver_version;
66
Nicolas THERYb17d3942012-08-07 05:24:59 -030067 if (copy_to_user(__info, &info, sizeof(*__info)))
68 return -EFAULT;
69 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030070}
71
Laurent Pinchart16513332009-12-09 08:40:01 -030072static struct media_entity *find_entity(struct media_device *mdev, u32 id)
73{
74 struct media_entity *entity;
75 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
76
77 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
78
79 spin_lock(&mdev->lock);
80
81 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030082 if (((media_entity_id(entity) == id) && !next) ||
83 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030084 spin_unlock(&mdev->lock);
85 return entity;
86 }
87 }
88
89 spin_unlock(&mdev->lock);
90
91 return NULL;
92}
93
94static long media_device_enum_entities(struct media_device *mdev,
95 struct media_entity_desc __user *uent)
96{
97 struct media_entity *ent;
98 struct media_entity_desc u_ent;
99
Salva Peiróe6a62342014-04-30 19:48:02 +0200100 memset(&u_ent, 0, sizeof(u_ent));
Laurent Pinchart16513332009-12-09 08:40:01 -0300101 if (copy_from_user(&u_ent.id, &uent->id, sizeof(u_ent.id)))
102 return -EFAULT;
103
104 ent = find_entity(mdev, u_ent.id);
105
106 if (ent == NULL)
107 return -EINVAL;
108
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300109 u_ent.id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300110 if (ent->name)
111 strlcpy(u_ent.name, ent->name, sizeof(u_ent.name));
Mauro Carvalho Chehab0e576b72015-09-06 09:33:39 -0300112 u_ent.type = ent->function;
Mauro Carvalho Chehab8ed8c882015-12-11 08:02:19 -0200113 u_ent.revision = 0; /* Unused */
Laurent Pinchart16513332009-12-09 08:40:01 -0300114 u_ent.flags = ent->flags;
Mauro Carvalho Chehab8ed8c882015-12-11 08:02:19 -0200115 u_ent.group_id = 0; /* Unused */
Laurent Pinchart16513332009-12-09 08:40:01 -0300116 u_ent.pads = ent->num_pads;
117 u_ent.links = ent->num_links - ent->num_backlinks;
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300118 memcpy(&u_ent.raw, &ent->info, sizeof(ent->info));
Laurent Pinchart16513332009-12-09 08:40:01 -0300119 if (copy_to_user(uent, &u_ent, sizeof(u_ent)))
120 return -EFAULT;
121 return 0;
122}
123
124static void media_device_kpad_to_upad(const struct media_pad *kpad,
125 struct media_pad_desc *upad)
126{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300127 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300128 upad->index = kpad->index;
129 upad->flags = kpad->flags;
130}
131
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300132static long __media_device_enum_links(struct media_device *mdev,
133 struct media_links_enum *links)
Laurent Pinchart16513332009-12-09 08:40:01 -0300134{
135 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300136
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300137 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300138 if (entity == NULL)
139 return -EINVAL;
140
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300141 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300142 unsigned int p;
143
144 for (p = 0; p < entity->num_pads; p++) {
145 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300146
147 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300148 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300149 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300150 return -EFAULT;
151 }
152 }
153
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300154 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200155 struct media_link *link;
156 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300157
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200158 list_for_each_entry(link, &entity->links, list) {
159 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300160
161 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200162 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300163 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200164 memset(&klink_desc, 0, sizeof(klink_desc));
165 media_device_kpad_to_upad(link->source,
166 &klink_desc.source);
167 media_device_kpad_to_upad(link->sink,
168 &klink_desc.sink);
169 klink_desc.flags = link->flags;
170 if (copy_to_user(ulink_desc, &klink_desc,
171 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300172 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200173 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300174 }
175 }
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300176
177 return 0;
178}
179
180static long media_device_enum_links(struct media_device *mdev,
181 struct media_links_enum __user *ulinks)
182{
183 struct media_links_enum links;
184 int rval;
185
186 if (copy_from_user(&links, ulinks, sizeof(links)))
187 return -EFAULT;
188
189 rval = __media_device_enum_links(mdev, &links);
190 if (rval < 0)
191 return rval;
192
Laurent Pinchart16513332009-12-09 08:40:01 -0300193 if (copy_to_user(ulinks, &links, sizeof(*ulinks)))
194 return -EFAULT;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300195
Laurent Pinchart16513332009-12-09 08:40:01 -0300196 return 0;
197}
198
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300199static long media_device_setup_link(struct media_device *mdev,
200 struct media_link_desc __user *_ulink)
201{
202 struct media_link *link = NULL;
203 struct media_link_desc ulink;
204 struct media_entity *source;
205 struct media_entity *sink;
206 int ret;
207
208 if (copy_from_user(&ulink, _ulink, sizeof(ulink)))
209 return -EFAULT;
210
211 /* Find the source and sink entities and link.
212 */
213 source = find_entity(mdev, ulink.source.entity);
214 sink = find_entity(mdev, ulink.sink.entity);
215
216 if (source == NULL || sink == NULL)
217 return -EINVAL;
218
219 if (ulink.source.index >= source->num_pads ||
220 ulink.sink.index >= sink->num_pads)
221 return -EINVAL;
222
223 link = media_entity_find_link(&source->pads[ulink.source.index],
224 &sink->pads[ulink.sink.index]);
225 if (link == NULL)
226 return -EINVAL;
227
228 /* Setup the link on both entities. */
229 ret = __media_entity_setup_link(link, ulink.flags);
230
231 if (copy_to_user(_ulink, &ulink, sizeof(ulink)))
232 return -EFAULT;
233
234 return ret;
235}
236
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300237static long __media_device_get_topology(struct media_device *mdev,
238 struct media_v2_topology *topo)
239{
240 struct media_entity *entity;
241 struct media_interface *intf;
242 struct media_pad *pad;
243 struct media_link *link;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200244 struct media_v2_entity kentity, *uentity;
245 struct media_v2_interface kintf, *uintf;
246 struct media_v2_pad kpad, *upad;
247 struct media_v2_link klink, *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300248 unsigned int i;
249 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300250
251 topo->topology_version = mdev->topology_version;
252
253 /* Get entities and number of entities */
254 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200255 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300256 media_device_for_each_entity(entity, mdev) {
257 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200258 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300259 continue;
260
261 if (i > topo->num_entities) {
262 ret = -ENOSPC;
263 continue;
264 }
265
266 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200267 memset(&kentity, 0, sizeof(kentity));
268 kentity.id = entity->graph_obj.id;
269 kentity.function = entity->function;
270 strncpy(kentity.name, entity->name,
271 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300272
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200273 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300274 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200275 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300276 }
277 topo->num_entities = i;
278
279 /* Get interfaces and number of interfaces */
280 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200281 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300282 media_device_for_each_intf(intf, mdev) {
283 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200284 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300285 continue;
286
287 if (i > topo->num_interfaces) {
288 ret = -ENOSPC;
289 continue;
290 }
291
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200292 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300293
294 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200295 kintf.id = intf->graph_obj.id;
296 kintf.intf_type = intf->type;
297 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300298
299 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
300 struct media_intf_devnode *devnode;
301
302 devnode = intf_to_devnode(intf);
303
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200304 kintf.devnode.major = devnode->major;
305 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300306 }
307
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200308 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300309 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200310 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300311 }
312 topo->num_interfaces = i;
313
314 /* Get pads and number of pads */
315 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200316 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300317 media_device_for_each_pad(pad, mdev) {
318 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200319 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300320 continue;
321
322 if (i > topo->num_pads) {
323 ret = -ENOSPC;
324 continue;
325 }
326
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200327 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300328
329 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200330 kpad.id = pad->graph_obj.id;
331 kpad.entity_id = pad->entity->graph_obj.id;
332 kpad.flags = pad->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300333
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200334 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300335 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200336 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300337 }
338 topo->num_pads = i;
339
340 /* Get links and number of links */
341 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200342 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300343 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300344 if (link->is_backlink)
345 continue;
346
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300347 i++;
348
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200349 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300350 continue;
351
352 if (i > topo->num_links) {
353 ret = -ENOSPC;
354 continue;
355 }
356
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200357 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300358
359 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200360 klink.id = link->graph_obj.id;
361 klink.source_id = link->gobj0->id;
362 klink.sink_id = link->gobj1->id;
363 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300364
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200365 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300366 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200367 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300368 }
369 topo->num_links = i;
370
371 return ret;
372}
373
374static long media_device_get_topology(struct media_device *mdev,
375 struct media_v2_topology __user *utopo)
376{
377 struct media_v2_topology ktopo;
378 int ret;
379
Dan Carpentera5c82e52015-12-15 09:00:40 -0200380 if (copy_from_user(&ktopo, utopo, sizeof(ktopo)))
381 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300382
383 ret = __media_device_get_topology(mdev, &ktopo);
384 if (ret < 0)
385 return ret;
386
Dan Carpentera5c82e52015-12-15 09:00:40 -0200387 if (copy_to_user(utopo, &ktopo, sizeof(*utopo)))
388 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300389
Dan Carpentera5c82e52015-12-15 09:00:40 -0200390 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300391}
392
Laurent Pinchart140d8812010-08-18 11:41:22 -0300393static long media_device_ioctl(struct file *filp, unsigned int cmd,
394 unsigned long arg)
395{
396 struct media_devnode *devnode = media_devnode_data(filp);
397 struct media_device *dev = to_media_device(devnode);
398 long ret;
399
400 switch (cmd) {
401 case MEDIA_IOC_DEVICE_INFO:
402 ret = media_device_get_info(dev,
403 (struct media_device_info __user *)arg);
404 break;
405
Laurent Pinchart16513332009-12-09 08:40:01 -0300406 case MEDIA_IOC_ENUM_ENTITIES:
407 ret = media_device_enum_entities(dev,
408 (struct media_entity_desc __user *)arg);
409 break;
410
411 case MEDIA_IOC_ENUM_LINKS:
412 mutex_lock(&dev->graph_mutex);
413 ret = media_device_enum_links(dev,
414 (struct media_links_enum __user *)arg);
415 mutex_unlock(&dev->graph_mutex);
416 break;
417
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300418 case MEDIA_IOC_SETUP_LINK:
419 mutex_lock(&dev->graph_mutex);
420 ret = media_device_setup_link(dev,
421 (struct media_link_desc __user *)arg);
422 mutex_unlock(&dev->graph_mutex);
423 break;
424
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300425 case MEDIA_IOC_G_TOPOLOGY:
426 mutex_lock(&dev->graph_mutex);
427 ret = media_device_get_topology(dev,
428 (struct media_v2_topology __user *)arg);
429 mutex_unlock(&dev->graph_mutex);
430 break;
Mauro Carvalho Chehab333a6512016-01-25 07:29:13 -0200431
Laurent Pinchart140d8812010-08-18 11:41:22 -0300432 default:
433 ret = -ENOIOCTLCMD;
434 }
435
436 return ret;
437}
438
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300439#ifdef CONFIG_COMPAT
440
441struct media_links_enum32 {
442 __u32 entity;
443 compat_uptr_t pads; /* struct media_pad_desc * */
444 compat_uptr_t links; /* struct media_link_desc * */
445 __u32 reserved[4];
446};
447
448static long media_device_enum_links32(struct media_device *mdev,
449 struct media_links_enum32 __user *ulinks)
450{
451 struct media_links_enum links;
452 compat_uptr_t pads_ptr, links_ptr;
453
454 memset(&links, 0, sizeof(links));
455
456 if (get_user(links.entity, &ulinks->entity)
457 || get_user(pads_ptr, &ulinks->pads)
458 || get_user(links_ptr, &ulinks->links))
459 return -EFAULT;
460
461 links.pads = compat_ptr(pads_ptr);
462 links.links = compat_ptr(links_ptr);
463
464 return __media_device_enum_links(mdev, &links);
465}
466
467#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
468
469static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
470 unsigned long arg)
471{
472 struct media_devnode *devnode = media_devnode_data(filp);
473 struct media_device *dev = to_media_device(devnode);
474 long ret;
475
476 switch (cmd) {
477 case MEDIA_IOC_DEVICE_INFO:
478 case MEDIA_IOC_ENUM_ENTITIES:
479 case MEDIA_IOC_SETUP_LINK:
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300480 case MEDIA_IOC_G_TOPOLOGY:
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300481 return media_device_ioctl(filp, cmd, arg);
482
483 case MEDIA_IOC_ENUM_LINKS32:
484 mutex_lock(&dev->graph_mutex);
485 ret = media_device_enum_links32(dev,
486 (struct media_links_enum32 __user *)arg);
487 mutex_unlock(&dev->graph_mutex);
488 break;
489
490 default:
491 ret = -ENOIOCTLCMD;
492 }
493
494 return ret;
495}
496#endif /* CONFIG_COMPAT */
497
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300498static const struct media_file_operations media_device_fops = {
499 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300500 .open = media_device_open,
501 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300502#ifdef CONFIG_COMPAT
503 .compat_ioctl = media_device_compat_ioctl,
504#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300505 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300506};
507
508/* -----------------------------------------------------------------------------
509 * sysfs
510 */
511
512static ssize_t show_model(struct device *cd,
513 struct device_attribute *attr, char *buf)
514{
515 struct media_device *mdev = to_media_device(to_media_devnode(cd));
516
517 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
518}
519
520static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
521
522/* -----------------------------------------------------------------------------
523 * Registration/unregistration
524 */
525
526static void media_device_release(struct media_devnode *mdev)
527{
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300528 dev_dbg(mdev->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300529}
530
531/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200532 * media_device_register_entity - Register an entity with a media device
533 * @mdev: The media device
534 * @entity: The entity
535 */
536int __must_check media_device_register_entity(struct media_device *mdev,
537 struct media_entity *entity)
538{
539 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200540 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200541
542 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
543 entity->function == MEDIA_ENT_F_UNKNOWN)
544 dev_warn(mdev->dev,
545 "Entity type for entity %s was not initialized!\n",
546 entity->name);
547
548 /* Warn if we apparently re-register an entity */
549 WARN_ON(entity->graph_obj.mdev != NULL);
550 entity->graph_obj.mdev = mdev;
551 INIT_LIST_HEAD(&entity->links);
552 entity->num_links = 0;
553 entity->num_backlinks = 0;
554
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200555 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
556 return -ENOMEM;
557
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200558 spin_lock(&mdev->lock);
Sakari Ailus665faa92015-12-16 11:32:17 -0200559
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200560 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
561 &entity->internal_idx);
562 if (ret < 0) {
Sakari Ailus665faa92015-12-16 11:32:17 -0200563 spin_unlock(&mdev->lock);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200564 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200565 }
566
567 mdev->entity_internal_idx_max =
568 max(mdev->entity_internal_idx_max, entity->internal_idx);
569
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200570 /* Initialize media_gobj embedded at the entity */
571 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
572
573 /* Initialize objects at the pads */
574 for (i = 0; i < entity->num_pads; i++)
575 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
576 &entity->pads[i].graph_obj);
577
578 spin_unlock(&mdev->lock);
579
580 return 0;
581}
582EXPORT_SYMBOL_GPL(media_device_register_entity);
583
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200584static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200585{
586 struct media_device *mdev = entity->graph_obj.mdev;
587 struct media_link *link, *tmp;
588 struct media_interface *intf;
589 unsigned int i;
590
Sakari Ailus665faa92015-12-16 11:32:17 -0200591 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
592
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200593 /* Remove all interface links pointing to this entity */
594 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
595 list_for_each_entry_safe(link, tmp, &intf->links, list) {
596 if (link->entity == entity)
597 __media_remove_intf_link(link);
598 }
599 }
600
601 /* Remove all data links that belong to this entity */
602 __media_entity_remove_links(entity);
603
604 /* Remove all pads that belong to this entity */
605 for (i = 0; i < entity->num_pads; i++)
606 media_gobj_destroy(&entity->pads[i].graph_obj);
607
608 /* Remove the entity */
609 media_gobj_destroy(&entity->graph_obj);
610
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200611 entity->graph_obj.mdev = NULL;
612}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200613
614void media_device_unregister_entity(struct media_entity *entity)
615{
616 struct media_device *mdev = entity->graph_obj.mdev;
617
618 if (mdev == NULL)
619 return;
620
621 spin_lock(&mdev->lock);
622 __media_device_unregister_entity(entity);
623 spin_unlock(&mdev->lock);
624}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200625EXPORT_SYMBOL_GPL(media_device_unregister_entity);
626
627/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200628 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300629 * @mdev: The media device
630 *
631 * The caller is responsible for initializing the media device before
632 * registration. The following fields must be set:
633 *
634 * - dev must point to the parent device
635 * - model must be filled with the device model name
636 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200637void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300638{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300639 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300640 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300641 INIT_LIST_HEAD(&mdev->pads);
642 INIT_LIST_HEAD(&mdev->links);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300643 spin_lock_init(&mdev->lock);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300644 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200645 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300646
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200647 dev_dbg(mdev->dev, "Media device initialized\n");
648}
649EXPORT_SYMBOL_GPL(media_device_init);
650
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200651void media_device_cleanup(struct media_device *mdev)
652{
Sakari Ailus665faa92015-12-16 11:32:17 -0200653 ida_destroy(&mdev->entity_internal_idx);
654 mdev->entity_internal_idx_max = 0;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200655 mutex_destroy(&mdev->graph_mutex);
656}
657EXPORT_SYMBOL_GPL(media_device_cleanup);
658
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200659int __must_check __media_device_register(struct media_device *mdev,
660 struct module *owner)
661{
662 int ret;
663
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300664 /* Register the device node. */
665 mdev->devnode.fops = &media_device_fops;
666 mdev->devnode.parent = mdev->dev;
667 mdev->devnode.release = media_device_release;
Javier Martinez Canillas8a950792015-12-11 20:57:09 -0200668
669 /* Set version 0 to indicate user-space that the graph is static */
670 mdev->topology_version = 0;
671
Sakari Ailus85de7212013-12-12 12:38:17 -0300672 ret = media_devnode_register(&mdev->devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300673 if (ret < 0)
674 return ret;
675
676 ret = device_create_file(&mdev->devnode.dev, &dev_attr_model);
677 if (ret < 0) {
678 media_devnode_unregister(&mdev->devnode);
679 return ret;
680 }
681
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300682 dev_dbg(mdev->dev, "Media device registered\n");
683
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300684 return 0;
685}
Sakari Ailus85de7212013-12-12 12:38:17 -0300686EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300687
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300688void media_device_unregister(struct media_device *mdev)
689{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300690 struct media_entity *entity;
691 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300692 struct media_interface *intf, *tmp_intf;
693
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200694 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200695 return;
696
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200697 spin_lock(&mdev->lock);
698
699 /* Check if mdev was ever registered at all */
700 if (!media_devnode_is_registered(&mdev->devnode)) {
701 spin_unlock(&mdev->lock);
702 return;
703 }
704
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300705 /* Remove all entities from the media device */
706 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200707 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300708
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300709 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300710 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
711 graph_obj.list) {
712 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200713 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300714 kfree(intf);
715 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200716
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300717 spin_unlock(&mdev->lock);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300718
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300719 device_remove_file(&mdev->devnode.dev, &dev_attr_model);
720 media_devnode_unregister(&mdev->devnode);
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300721
722 dev_dbg(mdev->dev, "Media device unregistered\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300723}
724EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300725
Shuah Khand062f912015-06-03 12:12:53 -0300726static void media_device_release_devres(struct device *dev, void *res)
727{
728}
729
Shuah Khand062f912015-06-03 12:12:53 -0300730struct media_device *media_device_get_devres(struct device *dev)
731{
732 struct media_device *mdev;
733
734 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
735 if (mdev)
736 return mdev;
737
738 mdev = devres_alloc(media_device_release_devres,
739 sizeof(struct media_device), GFP_KERNEL);
740 if (!mdev)
741 return NULL;
742 return devres_get(dev, mdev, NULL, NULL);
743}
744EXPORT_SYMBOL_GPL(media_device_get_devres);
745
Shuah Khand062f912015-06-03 12:12:53 -0300746struct media_device *media_device_find_devres(struct device *dev)
747{
748 return devres_find(dev, media_device_release_devres, NULL, NULL);
749}
750EXPORT_SYMBOL_GPL(media_device_find_devres);
Shuah Khane576d602015-06-05 17:11:54 -0300751
752#endif /* CONFIG_MEDIA_CONTROLLER */