blob: 35e81f7c0d2f1d6b3dbd6f1579538e2283336509 [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.
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030017 */
18
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -030019/* We need to access legacy defines from linux/media.h */
20#define __NEED_MEDIA_LEGACY_API
21
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -030022#include <linux/compat.h>
23#include <linux/export.h>
Sakari Ailus665faa92015-12-16 11:32:17 -020024#include <linux/idr.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030025#include <linux/ioctl.h>
Laurent Pinchart140d8812010-08-18 11:41:22 -030026#include <linux/media.h>
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -030027#include <linux/slab.h>
Mauro Carvalho Chehab497e80c2015-12-11 07:23:09 -020028#include <linux/types.h>
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -030029#include <linux/pci.h>
30#include <linux/usb.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030031
32#include <media/media-device.h>
33#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030034#include <media/media-entity.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030035
Shuah Khane576d60b2015-06-05 17:11:54 -030036#ifdef CONFIG_MEDIA_CONTROLLER
37
Laurent Pinchart140d8812010-08-18 11:41:22 -030038/* -----------------------------------------------------------------------------
39 * Userspace API
40 */
41
Sakari Ailus0629e992016-02-22 17:47:04 -030042static inline void __user *media_get_uptr(__u64 arg)
43{
44 return (void __user *)(uintptr_t)arg;
45}
46
Laurent Pinchart140d8812010-08-18 11:41:22 -030047static int media_device_open(struct file *filp)
48{
49 return 0;
50}
51
52static int media_device_close(struct file *filp)
53{
54 return 0;
55}
56
57static int media_device_get_info(struct media_device *dev,
Sakari Ailusbcd50812016-05-03 18:42:13 -030058 struct media_device_info *info)
Laurent Pinchart140d8812010-08-18 11:41:22 -030059{
Sakari Ailusbcd50812016-05-03 18:42:13 -030060 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030061
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020062 if (dev->driver_name[0])
Sakari Ailusbcd50812016-05-03 18:42:13 -030063 strlcpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020064 else
Sakari Ailusbcd50812016-05-03 18:42:13 -030065 strlcpy(info->driver, dev->dev->driver->name,
66 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020067
Sakari Ailusbcd50812016-05-03 18:42:13 -030068 strlcpy(info->model, dev->model, sizeof(info->model));
69 strlcpy(info->serial, dev->serial, sizeof(info->serial));
70 strlcpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030071
Hans Verkuil6c2c1882017-07-28 03:25:06 -040072 info->media_version = LINUX_VERSION_CODE;
73 info->driver_version = info->media_version;
Sakari Ailusbcd50812016-05-03 18:42:13 -030074 info->hw_revision = dev->hw_revision;
Laurent Pinchart140d8812010-08-18 11:41:22 -030075
Nicolas THERYb17d3942012-08-07 05:24:59 -030076 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030077}
78
Laurent Pinchart16513332009-12-09 08:40:01 -030079static struct media_entity *find_entity(struct media_device *mdev, u32 id)
80{
81 struct media_entity *entity;
82 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
83
84 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
85
Laurent Pinchart16513332009-12-09 08:40:01 -030086 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030087 if (((media_entity_id(entity) == id) && !next) ||
88 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030089 return entity;
90 }
91 }
92
Laurent Pinchart16513332009-12-09 08:40:01 -030093 return NULL;
94}
95
96static long media_device_enum_entities(struct media_device *mdev,
Sakari Ailusbcd50812016-05-03 18:42:13 -030097 struct media_entity_desc *entd)
Laurent Pinchart16513332009-12-09 08:40:01 -030098{
99 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300100
Sakari Ailusbcd50812016-05-03 18:42:13 -0300101 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300102 if (ent == NULL)
103 return -EINVAL;
104
Sakari Ailusbcd50812016-05-03 18:42:13 -0300105 memset(entd, 0, sizeof(*entd));
106
107 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300108 if (ent->name)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300109 strlcpy(entd->name, ent->name, sizeof(entd->name));
110 entd->type = ent->function;
111 entd->revision = 0; /* Unused */
112 entd->flags = ent->flags;
113 entd->group_id = 0; /* Unused */
114 entd->pads = ent->num_pads;
115 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300116
117 /*
118 * Workaround for a bug at media-ctl <= v1.10 that makes it to
119 * do the wrong thing if the entity function doesn't belong to
120 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
121 * Ranges.
122 *
123 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
124 * or, otherwise, will be silently ignored by media-ctl when
125 * printing the graphviz diagram. So, map them into the devnode
126 * old range.
127 */
128 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus98d85f32017-01-02 08:32:47 -0200129 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300130 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300131 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300132 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300133 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300134 }
135
Sakari Ailusbcd50812016-05-03 18:42:13 -0300136 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
137
Laurent Pinchart16513332009-12-09 08:40:01 -0300138 return 0;
139}
140
141static void media_device_kpad_to_upad(const struct media_pad *kpad,
142 struct media_pad_desc *upad)
143{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300144 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300145 upad->index = kpad->index;
146 upad->flags = kpad->flags;
147}
148
Sakari Ailusbcd50812016-05-03 18:42:13 -0300149static long media_device_enum_links(struct media_device *mdev,
150 struct media_links_enum *links)
Laurent Pinchart16513332009-12-09 08:40:01 -0300151{
152 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300153
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300154 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300155 if (entity == NULL)
156 return -EINVAL;
157
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300158 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300159 unsigned int p;
160
161 for (p = 0; p < entity->num_pads; p++) {
162 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300163
164 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300165 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300166 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300167 return -EFAULT;
168 }
169 }
170
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300171 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200172 struct media_link *link;
173 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300174
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200175 list_for_each_entry(link, &entity->links, list) {
176 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300177
178 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200179 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300180 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200181 memset(&klink_desc, 0, sizeof(klink_desc));
182 media_device_kpad_to_upad(link->source,
183 &klink_desc.source);
184 media_device_kpad_to_upad(link->sink,
185 &klink_desc.sink);
186 klink_desc.flags = link->flags;
187 if (copy_to_user(ulink_desc, &klink_desc,
188 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300189 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200190 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300191 }
192 }
Hans Verkuilfcab7572018-02-03 13:46:05 -0500193 memset(links->reserved, 0, sizeof(links->reserved));
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300194
195 return 0;
196}
197
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300198static long media_device_setup_link(struct media_device *mdev,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300199 struct media_link_desc *linkd)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300200{
201 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300202 struct media_entity *source;
203 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300204
205 /* Find the source and sink entities and link.
206 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300207 source = find_entity(mdev, linkd->source.entity);
208 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300209
210 if (source == NULL || sink == NULL)
211 return -EINVAL;
212
Sakari Ailusbcd50812016-05-03 18:42:13 -0300213 if (linkd->source.index >= source->num_pads ||
214 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300215 return -EINVAL;
216
Sakari Ailusbcd50812016-05-03 18:42:13 -0300217 link = media_entity_find_link(&source->pads[linkd->source.index],
218 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300219 if (link == NULL)
220 return -EINVAL;
221
Hans Verkuilfcab7572018-02-03 13:46:05 -0500222 memset(linkd->reserved, 0, sizeof(linkd->reserved));
223
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300224 /* Setup the link on both entities. */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300225 return __media_entity_setup_link(link, linkd->flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300226}
227
Sakari Ailusbcd50812016-05-03 18:42:13 -0300228static long media_device_get_topology(struct media_device *mdev,
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300229 struct media_v2_topology *topo)
230{
231 struct media_entity *entity;
232 struct media_interface *intf;
233 struct media_pad *pad;
234 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300235 struct media_v2_entity kentity, __user *uentity;
236 struct media_v2_interface kintf, __user *uintf;
237 struct media_v2_pad kpad, __user *upad;
238 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300239 unsigned int i;
240 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300241
242 topo->topology_version = mdev->topology_version;
243
244 /* Get entities and number of entities */
245 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200246 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300247 media_device_for_each_entity(entity, mdev) {
248 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200249 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300250 continue;
251
252 if (i > topo->num_entities) {
253 ret = -ENOSPC;
254 continue;
255 }
256
257 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200258 memset(&kentity, 0, sizeof(kentity));
259 kentity.id = entity->graph_obj.id;
260 kentity.function = entity->function;
Xiongfeng Wang81b9de42018-01-08 07:40:59 -0500261 strlcpy(kentity.name, entity->name,
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200262 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300263
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200264 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300265 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200266 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300267 }
268 topo->num_entities = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500269 topo->reserved1 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300270
271 /* Get interfaces and number of interfaces */
272 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200273 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300274 media_device_for_each_intf(intf, mdev) {
275 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200276 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300277 continue;
278
279 if (i > topo->num_interfaces) {
280 ret = -ENOSPC;
281 continue;
282 }
283
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200284 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300285
286 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200287 kintf.id = intf->graph_obj.id;
288 kintf.intf_type = intf->type;
289 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300290
291 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
292 struct media_intf_devnode *devnode;
293
294 devnode = intf_to_devnode(intf);
295
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200296 kintf.devnode.major = devnode->major;
297 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300298 }
299
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200300 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300301 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200302 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300303 }
304 topo->num_interfaces = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500305 topo->reserved2 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300306
307 /* Get pads and number of pads */
308 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200309 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300310 media_device_for_each_pad(pad, mdev) {
311 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200312 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300313 continue;
314
315 if (i > topo->num_pads) {
316 ret = -ENOSPC;
317 continue;
318 }
319
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200320 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300321
322 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200323 kpad.id = pad->graph_obj.id;
324 kpad.entity_id = pad->entity->graph_obj.id;
325 kpad.flags = pad->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300326
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200327 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300328 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200329 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300330 }
331 topo->num_pads = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500332 topo->reserved3 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300333
334 /* Get links and number of links */
335 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200336 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300337 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300338 if (link->is_backlink)
339 continue;
340
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300341 i++;
342
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200343 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300344 continue;
345
346 if (i > topo->num_links) {
347 ret = -ENOSPC;
348 continue;
349 }
350
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200351 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300352
353 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200354 klink.id = link->graph_obj.id;
355 klink.source_id = link->gobj0->id;
356 klink.sink_id = link->gobj1->id;
357 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300358
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200359 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300360 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200361 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300362 }
363 topo->num_links = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500364 topo->reserved4 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300365
366 return ret;
367}
368
Sakari Ailusbcd50812016-05-03 18:42:13 -0300369static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300370{
Sakari Ailusbcd50812016-05-03 18:42:13 -0300371 /* All media IOCTLs are _IOWR() */
372 if (copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200373 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300374
Dan Carpentera5c82e52015-12-15 09:00:40 -0200375 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300376}
377
Sakari Ailusbcd50812016-05-03 18:42:13 -0300378static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
379{
380 /* All media IOCTLs are _IOWR() */
381 if (copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
382 return -EFAULT;
383
384 return 0;
385}
386
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300387/* Do acquire the graph mutex */
388#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
389
390#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
391 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
392 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300393 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300394 .flags = fl, \
395 .arg_from_user = from_user, \
396 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300397 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300398
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300399#define MEDIA_IOC(__cmd, func, fl) \
400 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300401
Sakari Ailuscf439d52016-04-27 09:39:17 -0300402/* the table is indexed by _IOC_NR(cmd) */
403struct media_ioctl_info {
404 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300405 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300406 long (*fn)(struct media_device *dev, void *arg);
407 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
408 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300409};
410
411static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300412 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
413 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
414 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
415 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
416 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300417};
418
Laurent Pinchart140d8812010-08-18 11:41:22 -0300419static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300420 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300421{
422 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300423 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300424 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300425 void __user *arg = (void __user *)__arg;
426 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300427 long ret;
428
Sakari Ailuscf439d52016-04-27 09:39:17 -0300429 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
430 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
431 return -ENOIOCTLCMD;
432
Sakari Ailus69752642016-05-03 18:35:12 -0300433 info = &ioctl_info[_IOC_NR(cmd)];
434
Sakari Ailusbcd50812016-05-03 18:42:13 -0300435 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
436 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
437 if (!karg)
438 return -ENOMEM;
439 }
440
441 if (info->arg_from_user) {
442 ret = info->arg_from_user(karg, arg, cmd);
443 if (ret)
444 goto out_free;
445 }
446
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300447 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
448 mutex_lock(&dev->graph_mutex);
449
Sakari Ailusbcd50812016-05-03 18:42:13 -0300450 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300451
452 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
453 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300454
Sakari Ailusbcd50812016-05-03 18:42:13 -0300455 if (!ret && info->arg_to_user)
456 ret = info->arg_to_user(arg, karg, cmd);
457
458out_free:
459 if (karg != __karg)
460 kfree(karg);
461
Laurent Pinchart140d8812010-08-18 11:41:22 -0300462 return ret;
463}
464
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300465#ifdef CONFIG_COMPAT
466
467struct media_links_enum32 {
468 __u32 entity;
469 compat_uptr_t pads; /* struct media_pad_desc * */
470 compat_uptr_t links; /* struct media_link_desc * */
471 __u32 reserved[4];
472};
473
474static long media_device_enum_links32(struct media_device *mdev,
475 struct media_links_enum32 __user *ulinks)
476{
477 struct media_links_enum links;
478 compat_uptr_t pads_ptr, links_ptr;
479
480 memset(&links, 0, sizeof(links));
481
482 if (get_user(links.entity, &ulinks->entity)
483 || get_user(pads_ptr, &ulinks->pads)
484 || get_user(links_ptr, &ulinks->links))
485 return -EFAULT;
486
487 links.pads = compat_ptr(pads_ptr);
488 links.links = compat_ptr(links_ptr);
489
Sakari Ailusbcd50812016-05-03 18:42:13 -0300490 return media_device_enum_links(mdev, &links);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300491}
492
493#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
494
495static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
496 unsigned long arg)
497{
498 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300499 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300500 long ret;
501
502 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300503 case MEDIA_IOC_ENUM_LINKS32:
504 mutex_lock(&dev->graph_mutex);
505 ret = media_device_enum_links32(dev,
506 (struct media_links_enum32 __user *)arg);
507 mutex_unlock(&dev->graph_mutex);
508 break;
509
510 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300511 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300512 }
513
514 return ret;
515}
516#endif /* CONFIG_COMPAT */
517
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300518static const struct media_file_operations media_device_fops = {
519 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300520 .open = media_device_open,
521 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300522#ifdef CONFIG_COMPAT
523 .compat_ioctl = media_device_compat_ioctl,
524#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300525 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300526};
527
528/* -----------------------------------------------------------------------------
529 * sysfs
530 */
531
532static ssize_t show_model(struct device *cd,
533 struct device_attribute *attr, char *buf)
534{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300535 struct media_devnode *devnode = to_media_devnode(cd);
536 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300537
538 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
539}
540
541static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
542
543/* -----------------------------------------------------------------------------
544 * Registration/unregistration
545 */
546
Sakari Ailus552636be2017-07-13 11:23:49 -0400547static void media_device_release(struct media_devnode *devnode)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300548{
Sakari Ailus552636be2017-07-13 11:23:49 -0400549 dev_dbg(devnode->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300550}
551
552/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200553 * media_device_register_entity - Register an entity with a media device
554 * @mdev: The media device
555 * @entity: The entity
556 */
557int __must_check media_device_register_entity(struct media_device *mdev,
558 struct media_entity *entity)
559{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200560 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200561 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200562 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200563
564 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
565 entity->function == MEDIA_ENT_F_UNKNOWN)
566 dev_warn(mdev->dev,
567 "Entity type for entity %s was not initialized!\n",
568 entity->name);
569
570 /* Warn if we apparently re-register an entity */
571 WARN_ON(entity->graph_obj.mdev != NULL);
572 entity->graph_obj.mdev = mdev;
573 INIT_LIST_HEAD(&entity->links);
574 entity->num_links = 0;
575 entity->num_backlinks = 0;
576
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200577 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
578 return -ENOMEM;
579
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300580 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200581
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200582 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
583 &entity->internal_idx);
584 if (ret < 0) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300585 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200586 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200587 }
588
589 mdev->entity_internal_idx_max =
590 max(mdev->entity_internal_idx_max, entity->internal_idx);
591
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200592 /* Initialize media_gobj embedded at the entity */
593 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
594
595 /* Initialize objects at the pads */
596 for (i = 0; i < entity->num_pads; i++)
597 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
598 &entity->pads[i].graph_obj);
599
Shuah Khanafcbdb52016-02-11 21:41:21 -0200600 /* invoke entity_notify callbacks */
Sakari Ailus10e81bc2017-07-13 11:23:48 -0400601 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list)
602 notify->notify(entity, notify->notify_data);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200603
Sakari Ailus0c426c42016-02-21 13:25:08 -0300604 if (mdev->entity_internal_idx_max
605 >= mdev->pm_count_walk.ent_enum.idx_max) {
Sakari Ailus20b85222016-11-21 14:48:30 -0200606 struct media_graph new = { .top = 0 };
Sakari Ailus0c426c42016-02-21 13:25:08 -0300607
608 /*
609 * Initialise the new graph walk before cleaning up
610 * the old one in order not to spoil the graph walk
611 * object of the media device if graph walk init fails.
612 */
Sakari Ailus20b85222016-11-21 14:48:30 -0200613 ret = media_graph_walk_init(&new, mdev);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300614 if (ret) {
615 mutex_unlock(&mdev->graph_mutex);
616 return ret;
617 }
Sakari Ailus20b85222016-11-21 14:48:30 -0200618 media_graph_walk_cleanup(&mdev->pm_count_walk);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300619 mdev->pm_count_walk = new;
620 }
621 mutex_unlock(&mdev->graph_mutex);
622
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200623 return 0;
624}
625EXPORT_SYMBOL_GPL(media_device_register_entity);
626
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200627static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200628{
629 struct media_device *mdev = entity->graph_obj.mdev;
630 struct media_link *link, *tmp;
631 struct media_interface *intf;
632 unsigned int i;
633
Sakari Ailus665faa92015-12-16 11:32:17 -0200634 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
635
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200636 /* Remove all interface links pointing to this entity */
637 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
638 list_for_each_entry_safe(link, tmp, &intf->links, list) {
639 if (link->entity == entity)
640 __media_remove_intf_link(link);
641 }
642 }
643
644 /* Remove all data links that belong to this entity */
645 __media_entity_remove_links(entity);
646
647 /* Remove all pads that belong to this entity */
648 for (i = 0; i < entity->num_pads; i++)
649 media_gobj_destroy(&entity->pads[i].graph_obj);
650
651 /* Remove the entity */
652 media_gobj_destroy(&entity->graph_obj);
653
Shuah Khanafcbdb52016-02-11 21:41:21 -0200654 /* invoke entity_notify callbacks to handle entity removal?? */
655
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200656 entity->graph_obj.mdev = NULL;
657}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200658
659void media_device_unregister_entity(struct media_entity *entity)
660{
661 struct media_device *mdev = entity->graph_obj.mdev;
662
663 if (mdev == NULL)
664 return;
665
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300666 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200667 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300668 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200669}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200670EXPORT_SYMBOL_GPL(media_device_unregister_entity);
671
672/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200673 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300674 * @mdev: The media device
675 *
676 * The caller is responsible for initializing the media device before
677 * registration. The following fields must be set:
678 *
679 * - dev must point to the parent device
680 * - model must be filled with the device model name
681 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200682void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300683{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300684 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300685 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300686 INIT_LIST_HEAD(&mdev->pads);
687 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200688 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300689 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200690 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300691
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200692 dev_dbg(mdev->dev, "Media device initialized\n");
693}
694EXPORT_SYMBOL_GPL(media_device_init);
695
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200696void media_device_cleanup(struct media_device *mdev)
697{
Sakari Ailus665faa92015-12-16 11:32:17 -0200698 ida_destroy(&mdev->entity_internal_idx);
699 mdev->entity_internal_idx_max = 0;
Sakari Ailus20b85222016-11-21 14:48:30 -0200700 media_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200701 mutex_destroy(&mdev->graph_mutex);
702}
703EXPORT_SYMBOL_GPL(media_device_cleanup);
704
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200705int __must_check __media_device_register(struct media_device *mdev,
706 struct module *owner)
707{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300708 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200709 int ret;
710
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300711 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
712 if (!devnode)
713 return -ENOMEM;
714
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300715 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300716 mdev->devnode = devnode;
717 devnode->fops = &media_device_fops;
718 devnode->parent = mdev->dev;
719 devnode->release = media_device_release;
Javier Martinez Canillas8a9507962015-12-11 20:57:09 -0200720
721 /* Set version 0 to indicate user-space that the graph is static */
722 mdev->topology_version = 0;
723
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300724 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300725 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300726 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300727 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300728 return ret;
729 }
730
731 ret = device_create_file(&devnode->dev, &dev_attr_model);
732 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300733 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300734 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300735 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300736 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300737 return ret;
738 }
739
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300740 dev_dbg(mdev->dev, "Media device registered\n");
741
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300742 return 0;
743}
Sakari Ailus85de7212013-12-12 12:38:17 -0300744EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300745
Shuah Khanafcbdb52016-02-11 21:41:21 -0200746int __must_check media_device_register_entity_notify(struct media_device *mdev,
747 struct media_entity_notify *nptr)
748{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300749 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200750 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300751 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200752 return 0;
753}
754EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
755
756/*
757 * Note: Should be called with mdev->lock held.
758 */
759static void __media_device_unregister_entity_notify(struct media_device *mdev,
760 struct media_entity_notify *nptr)
761{
762 list_del(&nptr->list);
763}
764
765void media_device_unregister_entity_notify(struct media_device *mdev,
766 struct media_entity_notify *nptr)
767{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300768 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200769 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300770 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200771}
772EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
773
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300774void media_device_unregister(struct media_device *mdev)
775{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300776 struct media_entity *entity;
777 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300778 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200779 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300780
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200781 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200782 return;
783
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300784 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200785
786 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300787 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300788 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200789 return;
790 }
791
Shuah Khan6f0dd242016-06-10 14:37:23 -0300792 /* Clear the devnode register bit to avoid races with media dev open */
793 media_devnode_unregister_prepare(mdev->devnode);
794
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300795 /* Remove all entities from the media device */
796 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200797 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300798
Shuah Khanafcbdb52016-02-11 21:41:21 -0200799 /* Remove all entity_notify callbacks from the media device */
800 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
801 __media_device_unregister_entity_notify(mdev, notify);
802
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300803 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300804 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
805 graph_obj.list) {
Max Kellermanne7cd17a2016-08-09 18:33:03 -0300806 /*
807 * Unlink the interface, but don't free it here; the
808 * module which created it is responsible for freeing
809 * it
810 */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300811 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200812 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300813 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200814
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300815 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300816
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300817 dev_dbg(mdev->dev, "Media device unregistered\n");
818
Shuah Khan6f0dd242016-06-10 14:37:23 -0300819 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
820 media_devnode_unregister(mdev->devnode);
821 /* devnode free is handled in media_devnode_*() */
822 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300823}
824EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300825
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300826#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300827void media_device_pci_init(struct media_device *mdev,
828 struct pci_dev *pci_dev,
829 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300830{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300831 mdev->dev = &pci_dev->dev;
832
833 if (name)
834 strlcpy(mdev->model, name, sizeof(mdev->model));
835 else
836 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
837
838 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
839
840 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
841 | pci_dev->subsystem_device;
842
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300843 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300844}
845EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300846#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300847
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300848#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300849void __media_device_usb_init(struct media_device *mdev,
850 struct usb_device *udev,
851 const char *board_name,
852 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300853{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300854 mdev->dev = &udev->dev;
855
856 if (driver_name)
857 strlcpy(mdev->driver_name, driver_name,
858 sizeof(mdev->driver_name));
859
860 if (board_name)
861 strlcpy(mdev->model, board_name, sizeof(mdev->model));
862 else if (udev->product)
863 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
864 else
865 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
866 if (udev->serial)
867 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
868 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
869 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300870
871 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300872}
873EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300874#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300875
876
Shuah Khane576d60b2015-06-05 17:11:54 -0300877#endif /* CONFIG_MEDIA_CONTROLLER */