blob: ae59c31775557db78eebff5f826b0d19156eb0b7 [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
Sami Tolvanendaa36372018-05-07 14:09:46 -040057static long media_device_get_info(struct media_device *dev, void *arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -030058{
Sami Tolvanendaa36372018-05-07 14:09:46 -040059 struct media_device_info *info = arg;
60
Sakari Ailusbcd50812016-05-03 18:42:13 -030061 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030062
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020063 if (dev->driver_name[0])
Sakari Ailusbcd50812016-05-03 18:42:13 -030064 strlcpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020065 else
Sakari Ailusbcd50812016-05-03 18:42:13 -030066 strlcpy(info->driver, dev->dev->driver->name,
67 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020068
Sakari Ailusbcd50812016-05-03 18:42:13 -030069 strlcpy(info->model, dev->model, sizeof(info->model));
70 strlcpy(info->serial, dev->serial, sizeof(info->serial));
71 strlcpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030072
Hans Verkuil6c2c1882017-07-28 03:25:06 -040073 info->media_version = LINUX_VERSION_CODE;
74 info->driver_version = info->media_version;
Sakari Ailusbcd50812016-05-03 18:42:13 -030075 info->hw_revision = dev->hw_revision;
Laurent Pinchart140d8812010-08-18 11:41:22 -030076
Nicolas THERYb17d3942012-08-07 05:24:59 -030077 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030078}
79
Laurent Pinchart16513332009-12-09 08:40:01 -030080static struct media_entity *find_entity(struct media_device *mdev, u32 id)
81{
82 struct media_entity *entity;
83 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
84
85 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
86
Laurent Pinchart16513332009-12-09 08:40:01 -030087 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030088 if (((media_entity_id(entity) == id) && !next) ||
89 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030090 return entity;
91 }
92 }
93
Laurent Pinchart16513332009-12-09 08:40:01 -030094 return NULL;
95}
96
Sami Tolvanendaa36372018-05-07 14:09:46 -040097static long media_device_enum_entities(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -030098{
Sami Tolvanendaa36372018-05-07 14:09:46 -040099 struct media_entity_desc *entd = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300100 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300101
Sakari Ailusbcd50812016-05-03 18:42:13 -0300102 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300103 if (ent == NULL)
104 return -EINVAL;
105
Sakari Ailusbcd50812016-05-03 18:42:13 -0300106 memset(entd, 0, sizeof(*entd));
107
108 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300109 if (ent->name)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300110 strlcpy(entd->name, ent->name, sizeof(entd->name));
111 entd->type = ent->function;
112 entd->revision = 0; /* Unused */
113 entd->flags = ent->flags;
114 entd->group_id = 0; /* Unused */
115 entd->pads = ent->num_pads;
116 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300117
118 /*
119 * Workaround for a bug at media-ctl <= v1.10 that makes it to
120 * do the wrong thing if the entity function doesn't belong to
121 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
122 * Ranges.
123 *
124 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
125 * or, otherwise, will be silently ignored by media-ctl when
126 * printing the graphviz diagram. So, map them into the devnode
127 * old range.
128 */
129 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus98d85f32017-01-02 08:32:47 -0200130 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300131 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300132 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300133 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300134 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300135 }
136
Sakari Ailusbcd50812016-05-03 18:42:13 -0300137 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
138
Laurent Pinchart16513332009-12-09 08:40:01 -0300139 return 0;
140}
141
142static void media_device_kpad_to_upad(const struct media_pad *kpad,
143 struct media_pad_desc *upad)
144{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300145 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300146 upad->index = kpad->index;
147 upad->flags = kpad->flags;
148}
149
Sami Tolvanendaa36372018-05-07 14:09:46 -0400150static long media_device_enum_links(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300151{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400152 struct media_links_enum *links = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300153 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300154
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300155 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300156 if (entity == NULL)
157 return -EINVAL;
158
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300159 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300160 unsigned int p;
161
162 for (p = 0; p < entity->num_pads; p++) {
163 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300164
165 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300166 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300167 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300168 return -EFAULT;
169 }
170 }
171
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300172 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200173 struct media_link *link;
174 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300175
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200176 list_for_each_entry(link, &entity->links, list) {
177 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300178
179 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200180 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300181 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200182 memset(&klink_desc, 0, sizeof(klink_desc));
183 media_device_kpad_to_upad(link->source,
184 &klink_desc.source);
185 media_device_kpad_to_upad(link->sink,
186 &klink_desc.sink);
187 klink_desc.flags = link->flags;
188 if (copy_to_user(ulink_desc, &klink_desc,
189 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300190 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200191 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300192 }
193 }
Hans Verkuilfcab7572018-02-03 13:46:05 -0500194 memset(links->reserved, 0, sizeof(links->reserved));
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300195
196 return 0;
197}
198
Sami Tolvanendaa36372018-05-07 14:09:46 -0400199static long media_device_setup_link(struct media_device *mdev, void *arg)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300200{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400201 struct media_link_desc *linkd = arg;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300202 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300203 struct media_entity *source;
204 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300205
206 /* Find the source and sink entities and link.
207 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300208 source = find_entity(mdev, linkd->source.entity);
209 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300210
211 if (source == NULL || sink == NULL)
212 return -EINVAL;
213
Sakari Ailusbcd50812016-05-03 18:42:13 -0300214 if (linkd->source.index >= source->num_pads ||
215 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300216 return -EINVAL;
217
Sakari Ailusbcd50812016-05-03 18:42:13 -0300218 link = media_entity_find_link(&source->pads[linkd->source.index],
219 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300220 if (link == NULL)
221 return -EINVAL;
222
Hans Verkuilfcab7572018-02-03 13:46:05 -0500223 memset(linkd->reserved, 0, sizeof(linkd->reserved));
224
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300225 /* Setup the link on both entities. */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300226 return __media_entity_setup_link(link, linkd->flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300227}
228
Sami Tolvanendaa36372018-05-07 14:09:46 -0400229static long media_device_get_topology(struct media_device *mdev, void *arg)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300230{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400231 struct media_v2_topology *topo = arg;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300232 struct media_entity *entity;
233 struct media_interface *intf;
234 struct media_pad *pad;
235 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300236 struct media_v2_entity kentity, __user *uentity;
237 struct media_v2_interface kintf, __user *uintf;
238 struct media_v2_pad kpad, __user *upad;
239 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300240 unsigned int i;
241 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300242
243 topo->topology_version = mdev->topology_version;
244
245 /* Get entities and number of entities */
246 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200247 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300248 media_device_for_each_entity(entity, mdev) {
249 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200250 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300251 continue;
252
253 if (i > topo->num_entities) {
254 ret = -ENOSPC;
255 continue;
256 }
257
258 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200259 memset(&kentity, 0, sizeof(kentity));
260 kentity.id = entity->graph_obj.id;
261 kentity.function = entity->function;
Xiongfeng Wang81b9de42018-01-08 07:40:59 -0500262 strlcpy(kentity.name, entity->name,
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200263 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300264
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200265 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300266 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200267 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300268 }
269 topo->num_entities = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500270 topo->reserved1 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300271
272 /* Get interfaces and number of interfaces */
273 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200274 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300275 media_device_for_each_intf(intf, mdev) {
276 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200277 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300278 continue;
279
280 if (i > topo->num_interfaces) {
281 ret = -ENOSPC;
282 continue;
283 }
284
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200285 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300286
287 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200288 kintf.id = intf->graph_obj.id;
289 kintf.intf_type = intf->type;
290 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300291
292 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
293 struct media_intf_devnode *devnode;
294
295 devnode = intf_to_devnode(intf);
296
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200297 kintf.devnode.major = devnode->major;
298 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300299 }
300
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200301 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300302 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200303 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300304 }
305 topo->num_interfaces = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500306 topo->reserved2 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300307
308 /* Get pads and number of pads */
309 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200310 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300311 media_device_for_each_pad(pad, mdev) {
312 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200313 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300314 continue;
315
316 if (i > topo->num_pads) {
317 ret = -ENOSPC;
318 continue;
319 }
320
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200321 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300322
323 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200324 kpad.id = pad->graph_obj.id;
325 kpad.entity_id = pad->entity->graph_obj.id;
326 kpad.flags = pad->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300327
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200328 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300329 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200330 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300331 }
332 topo->num_pads = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500333 topo->reserved3 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300334
335 /* Get links and number of links */
336 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200337 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300338 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300339 if (link->is_backlink)
340 continue;
341
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300342 i++;
343
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200344 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300345 continue;
346
347 if (i > topo->num_links) {
348 ret = -ENOSPC;
349 continue;
350 }
351
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200352 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300353
354 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200355 klink.id = link->graph_obj.id;
356 klink.source_id = link->gobj0->id;
357 klink.sink_id = link->gobj1->id;
358 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300359
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200360 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300361 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200362 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300363 }
364 topo->num_links = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500365 topo->reserved4 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300366
367 return ret;
368}
369
Sakari Ailusbcd50812016-05-03 18:42:13 -0300370static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300371{
Sakari Ailusbcd50812016-05-03 18:42:13 -0300372 /* All media IOCTLs are _IOWR() */
373 if (copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200374 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300375
Dan Carpentera5c82e52015-12-15 09:00:40 -0200376 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300377}
378
Sakari Ailusbcd50812016-05-03 18:42:13 -0300379static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
380{
381 /* All media IOCTLs are _IOWR() */
382 if (copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
383 return -EFAULT;
384
385 return 0;
386}
387
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300388/* Do acquire the graph mutex */
389#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
390
391#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
392 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
393 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300394 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300395 .flags = fl, \
396 .arg_from_user = from_user, \
397 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300398 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300399
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300400#define MEDIA_IOC(__cmd, func, fl) \
401 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300402
Sakari Ailuscf439d52016-04-27 09:39:17 -0300403/* the table is indexed by _IOC_NR(cmd) */
404struct media_ioctl_info {
405 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300406 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300407 long (*fn)(struct media_device *dev, void *arg);
408 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
409 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300410};
411
412static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300413 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
414 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
415 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
416 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
417 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300418};
419
Laurent Pinchart140d8812010-08-18 11:41:22 -0300420static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300421 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300422{
423 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300424 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300425 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300426 void __user *arg = (void __user *)__arg;
427 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300428 long ret;
429
Sakari Ailuscf439d52016-04-27 09:39:17 -0300430 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
431 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
432 return -ENOIOCTLCMD;
433
Sakari Ailus69752642016-05-03 18:35:12 -0300434 info = &ioctl_info[_IOC_NR(cmd)];
435
Sakari Ailusbcd50812016-05-03 18:42:13 -0300436 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
437 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
438 if (!karg)
439 return -ENOMEM;
440 }
441
442 if (info->arg_from_user) {
443 ret = info->arg_from_user(karg, arg, cmd);
444 if (ret)
445 goto out_free;
446 }
447
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300448 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
449 mutex_lock(&dev->graph_mutex);
450
Sakari Ailusbcd50812016-05-03 18:42:13 -0300451 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300452
453 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
454 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300455
Sakari Ailusbcd50812016-05-03 18:42:13 -0300456 if (!ret && info->arg_to_user)
457 ret = info->arg_to_user(arg, karg, cmd);
458
459out_free:
460 if (karg != __karg)
461 kfree(karg);
462
Laurent Pinchart140d8812010-08-18 11:41:22 -0300463 return ret;
464}
465
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300466#ifdef CONFIG_COMPAT
467
468struct media_links_enum32 {
469 __u32 entity;
470 compat_uptr_t pads; /* struct media_pad_desc * */
471 compat_uptr_t links; /* struct media_link_desc * */
472 __u32 reserved[4];
473};
474
475static long media_device_enum_links32(struct media_device *mdev,
476 struct media_links_enum32 __user *ulinks)
477{
478 struct media_links_enum links;
479 compat_uptr_t pads_ptr, links_ptr;
480
481 memset(&links, 0, sizeof(links));
482
483 if (get_user(links.entity, &ulinks->entity)
484 || get_user(pads_ptr, &ulinks->pads)
485 || get_user(links_ptr, &ulinks->links))
486 return -EFAULT;
487
488 links.pads = compat_ptr(pads_ptr);
489 links.links = compat_ptr(links_ptr);
490
Sakari Ailusbcd50812016-05-03 18:42:13 -0300491 return media_device_enum_links(mdev, &links);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300492}
493
494#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
495
496static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
497 unsigned long arg)
498{
499 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300500 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300501 long ret;
502
503 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300504 case MEDIA_IOC_ENUM_LINKS32:
505 mutex_lock(&dev->graph_mutex);
506 ret = media_device_enum_links32(dev,
507 (struct media_links_enum32 __user *)arg);
508 mutex_unlock(&dev->graph_mutex);
509 break;
510
511 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300512 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300513 }
514
515 return ret;
516}
517#endif /* CONFIG_COMPAT */
518
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300519static const struct media_file_operations media_device_fops = {
520 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300521 .open = media_device_open,
522 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300523#ifdef CONFIG_COMPAT
524 .compat_ioctl = media_device_compat_ioctl,
525#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300526 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300527};
528
529/* -----------------------------------------------------------------------------
530 * sysfs
531 */
532
533static ssize_t show_model(struct device *cd,
534 struct device_attribute *attr, char *buf)
535{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300536 struct media_devnode *devnode = to_media_devnode(cd);
537 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300538
539 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
540}
541
542static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
543
544/* -----------------------------------------------------------------------------
545 * Registration/unregistration
546 */
547
Sakari Ailus552636be2017-07-13 11:23:49 -0400548static void media_device_release(struct media_devnode *devnode)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300549{
Sakari Ailus552636be2017-07-13 11:23:49 -0400550 dev_dbg(devnode->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300551}
552
553/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200554 * media_device_register_entity - Register an entity with a media device
555 * @mdev: The media device
556 * @entity: The entity
557 */
558int __must_check media_device_register_entity(struct media_device *mdev,
559 struct media_entity *entity)
560{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200561 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200562 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200563 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200564
565 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
566 entity->function == MEDIA_ENT_F_UNKNOWN)
567 dev_warn(mdev->dev,
568 "Entity type for entity %s was not initialized!\n",
569 entity->name);
570
571 /* Warn if we apparently re-register an entity */
572 WARN_ON(entity->graph_obj.mdev != NULL);
573 entity->graph_obj.mdev = mdev;
574 INIT_LIST_HEAD(&entity->links);
575 entity->num_links = 0;
576 entity->num_backlinks = 0;
577
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200578 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
579 return -ENOMEM;
580
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300581 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200582
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200583 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
584 &entity->internal_idx);
585 if (ret < 0) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300586 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200587 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200588 }
589
590 mdev->entity_internal_idx_max =
591 max(mdev->entity_internal_idx_max, entity->internal_idx);
592
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200593 /* Initialize media_gobj embedded at the entity */
594 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
595
596 /* Initialize objects at the pads */
597 for (i = 0; i < entity->num_pads; i++)
598 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
599 &entity->pads[i].graph_obj);
600
Shuah Khanafcbdb52016-02-11 21:41:21 -0200601 /* invoke entity_notify callbacks */
Sakari Ailus10e81bc2017-07-13 11:23:48 -0400602 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list)
603 notify->notify(entity, notify->notify_data);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200604
Sakari Ailus0c426c42016-02-21 13:25:08 -0300605 if (mdev->entity_internal_idx_max
606 >= mdev->pm_count_walk.ent_enum.idx_max) {
Sakari Ailus20b85222016-11-21 14:48:30 -0200607 struct media_graph new = { .top = 0 };
Sakari Ailus0c426c42016-02-21 13:25:08 -0300608
609 /*
610 * Initialise the new graph walk before cleaning up
611 * the old one in order not to spoil the graph walk
612 * object of the media device if graph walk init fails.
613 */
Sakari Ailus20b85222016-11-21 14:48:30 -0200614 ret = media_graph_walk_init(&new, mdev);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300615 if (ret) {
616 mutex_unlock(&mdev->graph_mutex);
617 return ret;
618 }
Sakari Ailus20b85222016-11-21 14:48:30 -0200619 media_graph_walk_cleanup(&mdev->pm_count_walk);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300620 mdev->pm_count_walk = new;
621 }
622 mutex_unlock(&mdev->graph_mutex);
623
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200624 return 0;
625}
626EXPORT_SYMBOL_GPL(media_device_register_entity);
627
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200628static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200629{
630 struct media_device *mdev = entity->graph_obj.mdev;
631 struct media_link *link, *tmp;
632 struct media_interface *intf;
633 unsigned int i;
634
Sakari Ailus665faa92015-12-16 11:32:17 -0200635 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
636
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200637 /* Remove all interface links pointing to this entity */
638 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
639 list_for_each_entry_safe(link, tmp, &intf->links, list) {
640 if (link->entity == entity)
641 __media_remove_intf_link(link);
642 }
643 }
644
645 /* Remove all data links that belong to this entity */
646 __media_entity_remove_links(entity);
647
648 /* Remove all pads that belong to this entity */
649 for (i = 0; i < entity->num_pads; i++)
650 media_gobj_destroy(&entity->pads[i].graph_obj);
651
652 /* Remove the entity */
653 media_gobj_destroy(&entity->graph_obj);
654
Shuah Khanafcbdb52016-02-11 21:41:21 -0200655 /* invoke entity_notify callbacks to handle entity removal?? */
656
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200657 entity->graph_obj.mdev = NULL;
658}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200659
660void media_device_unregister_entity(struct media_entity *entity)
661{
662 struct media_device *mdev = entity->graph_obj.mdev;
663
664 if (mdev == NULL)
665 return;
666
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300667 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200668 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300669 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200670}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200671EXPORT_SYMBOL_GPL(media_device_unregister_entity);
672
673/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200674 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300675 * @mdev: The media device
676 *
677 * The caller is responsible for initializing the media device before
678 * registration. The following fields must be set:
679 *
680 * - dev must point to the parent device
681 * - model must be filled with the device model name
682 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200683void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300684{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300685 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300686 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300687 INIT_LIST_HEAD(&mdev->pads);
688 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200689 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300690 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200691 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300692
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200693 dev_dbg(mdev->dev, "Media device initialized\n");
694}
695EXPORT_SYMBOL_GPL(media_device_init);
696
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200697void media_device_cleanup(struct media_device *mdev)
698{
Sakari Ailus665faa92015-12-16 11:32:17 -0200699 ida_destroy(&mdev->entity_internal_idx);
700 mdev->entity_internal_idx_max = 0;
Sakari Ailus20b85222016-11-21 14:48:30 -0200701 media_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200702 mutex_destroy(&mdev->graph_mutex);
703}
704EXPORT_SYMBOL_GPL(media_device_cleanup);
705
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200706int __must_check __media_device_register(struct media_device *mdev,
707 struct module *owner)
708{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300709 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200710 int ret;
711
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300712 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
713 if (!devnode)
714 return -ENOMEM;
715
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300716 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300717 mdev->devnode = devnode;
718 devnode->fops = &media_device_fops;
719 devnode->parent = mdev->dev;
720 devnode->release = media_device_release;
Javier Martinez Canillas8a9507962015-12-11 20:57:09 -0200721
722 /* Set version 0 to indicate user-space that the graph is static */
723 mdev->topology_version = 0;
724
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300725 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300726 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300727 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300728 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300729 return ret;
730 }
731
732 ret = device_create_file(&devnode->dev, &dev_attr_model);
733 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300734 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300735 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300736 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300737 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300738 return ret;
739 }
740
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300741 dev_dbg(mdev->dev, "Media device registered\n");
742
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300743 return 0;
744}
Sakari Ailus85de7212013-12-12 12:38:17 -0300745EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300746
Shuah Khanafcbdb52016-02-11 21:41:21 -0200747int __must_check media_device_register_entity_notify(struct media_device *mdev,
748 struct media_entity_notify *nptr)
749{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300750 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200751 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300752 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200753 return 0;
754}
755EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
756
757/*
758 * Note: Should be called with mdev->lock held.
759 */
760static void __media_device_unregister_entity_notify(struct media_device *mdev,
761 struct media_entity_notify *nptr)
762{
763 list_del(&nptr->list);
764}
765
766void media_device_unregister_entity_notify(struct media_device *mdev,
767 struct media_entity_notify *nptr)
768{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300769 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200770 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300771 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200772}
773EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
774
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300775void media_device_unregister(struct media_device *mdev)
776{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300777 struct media_entity *entity;
778 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300779 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200780 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300781
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200782 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200783 return;
784
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300785 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200786
787 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300788 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300789 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200790 return;
791 }
792
Shuah Khan6f0dd242016-06-10 14:37:23 -0300793 /* Clear the devnode register bit to avoid races with media dev open */
794 media_devnode_unregister_prepare(mdev->devnode);
795
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300796 /* Remove all entities from the media device */
797 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200798 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300799
Shuah Khanafcbdb52016-02-11 21:41:21 -0200800 /* Remove all entity_notify callbacks from the media device */
801 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
802 __media_device_unregister_entity_notify(mdev, notify);
803
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300804 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300805 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
806 graph_obj.list) {
Max Kellermanne7cd17a2016-08-09 18:33:03 -0300807 /*
808 * Unlink the interface, but don't free it here; the
809 * module which created it is responsible for freeing
810 * it
811 */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300812 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200813 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300814 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200815
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300816 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300817
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300818 dev_dbg(mdev->dev, "Media device unregistered\n");
819
Shuah Khan6f0dd242016-06-10 14:37:23 -0300820 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
821 media_devnode_unregister(mdev->devnode);
822 /* devnode free is handled in media_devnode_*() */
823 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300824}
825EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300826
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300827#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300828void media_device_pci_init(struct media_device *mdev,
829 struct pci_dev *pci_dev,
830 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300831{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300832 mdev->dev = &pci_dev->dev;
833
834 if (name)
835 strlcpy(mdev->model, name, sizeof(mdev->model));
836 else
837 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
838
839 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
840
841 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
842 | pci_dev->subsystem_device;
843
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300844 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300845}
846EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300847#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300848
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300849#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300850void __media_device_usb_init(struct media_device *mdev,
851 struct usb_device *udev,
852 const char *board_name,
853 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300854{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300855 mdev->dev = &udev->dev;
856
857 if (driver_name)
858 strlcpy(mdev->driver_name, driver_name,
859 sizeof(mdev->driver_name));
860
861 if (board_name)
862 strlcpy(mdev->model, board_name, sizeof(mdev->model));
863 else if (udev->product)
864 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
865 else
866 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
867 if (udev->serial)
868 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
869 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
870 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300871
872 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300873}
874EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300875#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300876
877
Shuah Khane576d60b2015-06-05 17:11:54 -0300878#endif /* CONFIG_MEDIA_CONTROLLER */