blob: 73a2dba475d005c1ea967a094a3a7e62552f7b1d [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
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -030023/* We need to access legacy defines from linux/media.h */
24#define __NEED_MEDIA_LEGACY_API
25
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -030026#include <linux/compat.h>
27#include <linux/export.h>
Sakari Ailus665faa92015-12-16 11:32:17 -020028#include <linux/idr.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030029#include <linux/ioctl.h>
Laurent Pinchart140d8812010-08-18 11:41:22 -030030#include <linux/media.h>
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -030031#include <linux/slab.h>
Mauro Carvalho Chehab497e80c2015-12-11 07:23:09 -020032#include <linux/types.h>
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -030033#include <linux/pci.h>
34#include <linux/usb.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030035
36#include <media/media-device.h>
37#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030038#include <media/media-entity.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030039
Shuah Khane576d602015-06-05 17:11:54 -030040#ifdef CONFIG_MEDIA_CONTROLLER
41
Laurent Pinchart140d8812010-08-18 11:41:22 -030042/* -----------------------------------------------------------------------------
43 * Userspace API
44 */
45
Sakari Ailus0629e992016-02-22 17:47:04 -030046static inline void __user *media_get_uptr(__u64 arg)
47{
48 return (void __user *)(uintptr_t)arg;
49}
50
Laurent Pinchart140d8812010-08-18 11:41:22 -030051static int media_device_open(struct file *filp)
52{
53 return 0;
54}
55
56static int media_device_close(struct file *filp)
57{
58 return 0;
59}
60
Sami Tolvanenf6387642018-05-07 14:09:46 -040061static long media_device_get_info(struct media_device *dev, void *arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -030062{
Sami Tolvanenf6387642018-05-07 14:09:46 -040063 struct media_device_info *info = arg;
64
Sakari Ailusbcd50812016-05-03 18:42:13 -030065 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030066
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020067 if (dev->driver_name[0])
Sakari Ailusbcd50812016-05-03 18:42:13 -030068 strlcpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020069 else
Sakari Ailusbcd50812016-05-03 18:42:13 -030070 strlcpy(info->driver, dev->dev->driver->name,
71 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020072
Sakari Ailusbcd50812016-05-03 18:42:13 -030073 strlcpy(info->model, dev->model, sizeof(info->model));
74 strlcpy(info->serial, dev->serial, sizeof(info->serial));
75 strlcpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030076
Sakari Ailusbcd50812016-05-03 18:42:13 -030077 info->media_version = MEDIA_API_VERSION;
78 info->hw_revision = dev->hw_revision;
79 info->driver_version = dev->driver_version;
Laurent Pinchart140d8812010-08-18 11:41:22 -030080
Nicolas THERYb17d3942012-08-07 05:24:59 -030081 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030082}
83
Laurent Pinchart16513332009-12-09 08:40:01 -030084static struct media_entity *find_entity(struct media_device *mdev, u32 id)
85{
86 struct media_entity *entity;
87 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
88
89 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
90
Laurent Pinchart16513332009-12-09 08:40:01 -030091 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030092 if (((media_entity_id(entity) == id) && !next) ||
93 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030094 return entity;
95 }
96 }
97
Laurent Pinchart16513332009-12-09 08:40:01 -030098 return NULL;
99}
100
Sami Tolvanenf6387642018-05-07 14:09:46 -0400101static long media_device_enum_entities(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300102{
Sami Tolvanenf6387642018-05-07 14:09:46 -0400103 struct media_entity_desc *entd = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300104 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300105
Sakari Ailusbcd50812016-05-03 18:42:13 -0300106 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300107 if (ent == NULL)
108 return -EINVAL;
109
Sakari Ailusbcd50812016-05-03 18:42:13 -0300110 memset(entd, 0, sizeof(*entd));
111
112 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300113 if (ent->name)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300114 strlcpy(entd->name, ent->name, sizeof(entd->name));
115 entd->type = ent->function;
116 entd->revision = 0; /* Unused */
117 entd->flags = ent->flags;
118 entd->group_id = 0; /* Unused */
119 entd->pads = ent->num_pads;
120 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300121
122 /*
123 * Workaround for a bug at media-ctl <= v1.10 that makes it to
124 * do the wrong thing if the entity function doesn't belong to
125 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
126 * Ranges.
127 *
128 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
129 * or, otherwise, will be silently ignored by media-ctl when
130 * printing the graphviz diagram. So, map them into the devnode
131 * old range.
132 */
133 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus719f1762017-01-02 08:32:47 -0200134 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300135 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300136 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300137 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300138 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300139 }
140
Sakari Ailusbcd50812016-05-03 18:42:13 -0300141 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
142
Laurent Pinchart16513332009-12-09 08:40:01 -0300143 return 0;
144}
145
146static void media_device_kpad_to_upad(const struct media_pad *kpad,
147 struct media_pad_desc *upad)
148{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300149 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300150 upad->index = kpad->index;
151 upad->flags = kpad->flags;
152}
153
Sami Tolvanenf6387642018-05-07 14:09:46 -0400154static long media_device_enum_links(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300155{
Sami Tolvanenf6387642018-05-07 14:09:46 -0400156 struct media_links_enum *links = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300157 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300158
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300159 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300160 if (entity == NULL)
161 return -EINVAL;
162
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300163 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300164 unsigned int p;
165
166 for (p = 0; p < entity->num_pads; p++) {
167 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300168
169 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300170 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300171 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300172 return -EFAULT;
173 }
174 }
175
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300176 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200177 struct media_link *link;
178 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300179
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200180 list_for_each_entry(link, &entity->links, list) {
181 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300182
183 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200184 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300185 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200186 memset(&klink_desc, 0, sizeof(klink_desc));
187 media_device_kpad_to_upad(link->source,
188 &klink_desc.source);
189 media_device_kpad_to_upad(link->sink,
190 &klink_desc.sink);
191 klink_desc.flags = link->flags;
192 if (copy_to_user(ulink_desc, &klink_desc,
193 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300194 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200195 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300196 }
197 }
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300198
199 return 0;
200}
201
Sami Tolvanenf6387642018-05-07 14:09:46 -0400202static long media_device_setup_link(struct media_device *mdev, void *arg)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300203{
Sami Tolvanenf6387642018-05-07 14:09:46 -0400204 struct media_link_desc *linkd = arg;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300205 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300206 struct media_entity *source;
207 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300208
209 /* Find the source and sink entities and link.
210 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300211 source = find_entity(mdev, linkd->source.entity);
212 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300213
214 if (source == NULL || sink == NULL)
215 return -EINVAL;
216
Sakari Ailusbcd50812016-05-03 18:42:13 -0300217 if (linkd->source.index >= source->num_pads ||
218 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300219 return -EINVAL;
220
Sakari Ailusbcd50812016-05-03 18:42:13 -0300221 link = media_entity_find_link(&source->pads[linkd->source.index],
222 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300223 if (link == NULL)
224 return -EINVAL;
225
226 /* Setup the link on both entities. */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300227 return __media_entity_setup_link(link, linkd->flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300228}
229
Sami Tolvanenf6387642018-05-07 14:09:46 -0400230static long media_device_get_topology(struct media_device *mdev, void *arg)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300231{
Sami Tolvanenf6387642018-05-07 14:09:46 -0400232 struct media_v2_topology *topo = arg;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300233 struct media_entity *entity;
234 struct media_interface *intf;
235 struct media_pad *pad;
236 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300237 struct media_v2_entity kentity, __user *uentity;
238 struct media_v2_interface kintf, __user *uintf;
239 struct media_v2_pad kpad, __user *upad;
240 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300241 unsigned int i;
242 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300243
244 topo->topology_version = mdev->topology_version;
245
246 /* Get entities and number of entities */
247 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200248 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300249 media_device_for_each_entity(entity, mdev) {
250 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200251 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300252 continue;
253
254 if (i > topo->num_entities) {
255 ret = -ENOSPC;
256 continue;
257 }
258
259 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200260 memset(&kentity, 0, sizeof(kentity));
261 kentity.id = entity->graph_obj.id;
262 kentity.function = entity->function;
263 strncpy(kentity.name, entity->name,
264 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300265
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200266 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300267 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200268 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300269 }
270 topo->num_entities = i;
271
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;
306
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;
332
333 /* Get links and number of links */
334 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200335 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300336 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300337 if (link->is_backlink)
338 continue;
339
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300340 i++;
341
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200342 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300343 continue;
344
345 if (i > topo->num_links) {
346 ret = -ENOSPC;
347 continue;
348 }
349
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200350 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300351
352 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200353 klink.id = link->graph_obj.id;
354 klink.source_id = link->gobj0->id;
355 klink.sink_id = link->gobj1->id;
356 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300357
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200358 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300359 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200360 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300361 }
362 topo->num_links = i;
363
364 return ret;
365}
366
Sakari Ailusbcd50812016-05-03 18:42:13 -0300367static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300368{
Sakari Ailusbcd50812016-05-03 18:42:13 -0300369 /* All media IOCTLs are _IOWR() */
370 if (copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200371 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300372
Dan Carpentera5c82e52015-12-15 09:00:40 -0200373 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300374}
375
Sakari Ailusbcd50812016-05-03 18:42:13 -0300376static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
377{
378 /* All media IOCTLs are _IOWR() */
379 if (copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
380 return -EFAULT;
381
382 return 0;
383}
384
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300385/* Do acquire the graph mutex */
386#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
387
388#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
389 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
390 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300391 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300392 .flags = fl, \
393 .arg_from_user = from_user, \
394 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300395 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300396
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300397#define MEDIA_IOC(__cmd, func, fl) \
398 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300399
Sakari Ailuscf439d52016-04-27 09:39:17 -0300400/* the table is indexed by _IOC_NR(cmd) */
401struct media_ioctl_info {
402 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300403 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300404 long (*fn)(struct media_device *dev, void *arg);
405 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
406 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300407};
408
409static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300410 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
411 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
412 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
413 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
414 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300415};
416
Laurent Pinchart140d8812010-08-18 11:41:22 -0300417static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300418 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300419{
420 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300421 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300422 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300423 void __user *arg = (void __user *)__arg;
424 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300425 long ret;
426
Sakari Ailuscf439d52016-04-27 09:39:17 -0300427 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
428 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
429 return -ENOIOCTLCMD;
430
Sakari Ailus69752642016-05-03 18:35:12 -0300431 info = &ioctl_info[_IOC_NR(cmd)];
432
Sakari Ailusbcd50812016-05-03 18:42:13 -0300433 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
434 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
435 if (!karg)
436 return -ENOMEM;
437 }
438
439 if (info->arg_from_user) {
440 ret = info->arg_from_user(karg, arg, cmd);
441 if (ret)
442 goto out_free;
443 }
444
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300445 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
446 mutex_lock(&dev->graph_mutex);
447
Sakari Ailusbcd50812016-05-03 18:42:13 -0300448 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300449
450 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
451 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300452
Sakari Ailusbcd50812016-05-03 18:42:13 -0300453 if (!ret && info->arg_to_user)
454 ret = info->arg_to_user(arg, karg, cmd);
455
456out_free:
457 if (karg != __karg)
458 kfree(karg);
459
Laurent Pinchart140d8812010-08-18 11:41:22 -0300460 return ret;
461}
462
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300463#ifdef CONFIG_COMPAT
464
465struct media_links_enum32 {
466 __u32 entity;
467 compat_uptr_t pads; /* struct media_pad_desc * */
468 compat_uptr_t links; /* struct media_link_desc * */
469 __u32 reserved[4];
470};
471
472static long media_device_enum_links32(struct media_device *mdev,
473 struct media_links_enum32 __user *ulinks)
474{
475 struct media_links_enum links;
476 compat_uptr_t pads_ptr, links_ptr;
Jungo Lin78979612019-04-02 21:44:27 -0400477 int ret;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300478
479 memset(&links, 0, sizeof(links));
480
481 if (get_user(links.entity, &ulinks->entity)
482 || get_user(pads_ptr, &ulinks->pads)
483 || get_user(links_ptr, &ulinks->links))
484 return -EFAULT;
485
486 links.pads = compat_ptr(pads_ptr);
487 links.links = compat_ptr(links_ptr);
488
Jungo Lin78979612019-04-02 21:44:27 -0400489 ret = media_device_enum_links(mdev, &links);
490 if (ret)
491 return ret;
492
Hans Verkuil36212c32019-05-27 05:31:13 -0400493 if (copy_to_user(ulinks->reserved, links.reserved,
494 sizeof(ulinks->reserved)))
495 return -EFAULT;
Jungo Lin78979612019-04-02 21:44:27 -0400496 return 0;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300497}
498
499#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
500
501static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
502 unsigned long arg)
503{
504 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300505 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300506 long ret;
507
508 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300509 case MEDIA_IOC_ENUM_LINKS32:
510 mutex_lock(&dev->graph_mutex);
511 ret = media_device_enum_links32(dev,
512 (struct media_links_enum32 __user *)arg);
513 mutex_unlock(&dev->graph_mutex);
514 break;
515
516 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300517 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300518 }
519
520 return ret;
521}
522#endif /* CONFIG_COMPAT */
523
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300524static const struct media_file_operations media_device_fops = {
525 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300526 .open = media_device_open,
527 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300528#ifdef CONFIG_COMPAT
529 .compat_ioctl = media_device_compat_ioctl,
530#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300531 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300532};
533
534/* -----------------------------------------------------------------------------
535 * sysfs
536 */
537
538static ssize_t show_model(struct device *cd,
539 struct device_attribute *attr, char *buf)
540{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300541 struct media_devnode *devnode = to_media_devnode(cd);
542 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300543
544 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
545}
546
547static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
548
549/* -----------------------------------------------------------------------------
550 * Registration/unregistration
551 */
552
553static void media_device_release(struct media_devnode *mdev)
554{
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300555 dev_dbg(mdev->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300556}
557
558/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200559 * media_device_register_entity - Register an entity with a media device
560 * @mdev: The media device
561 * @entity: The entity
562 */
563int __must_check media_device_register_entity(struct media_device *mdev,
564 struct media_entity *entity)
565{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200566 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200567 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200568 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200569
570 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
571 entity->function == MEDIA_ENT_F_UNKNOWN)
572 dev_warn(mdev->dev,
573 "Entity type for entity %s was not initialized!\n",
574 entity->name);
575
576 /* Warn if we apparently re-register an entity */
577 WARN_ON(entity->graph_obj.mdev != NULL);
578 entity->graph_obj.mdev = mdev;
579 INIT_LIST_HEAD(&entity->links);
580 entity->num_links = 0;
581 entity->num_backlinks = 0;
582
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200583 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
584 return -ENOMEM;
585
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300586 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200587
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200588 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
589 &entity->internal_idx);
590 if (ret < 0) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300591 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200592 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200593 }
594
595 mdev->entity_internal_idx_max =
596 max(mdev->entity_internal_idx_max, entity->internal_idx);
597
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200598 /* Initialize media_gobj embedded at the entity */
599 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
600
601 /* Initialize objects at the pads */
602 for (i = 0; i < entity->num_pads; i++)
603 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
604 &entity->pads[i].graph_obj);
605
Shuah Khanafcbdb52016-02-11 21:41:21 -0200606 /* invoke entity_notify callbacks */
607 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list) {
608 (notify)->notify(entity, notify->notify_data);
609 }
610
Sakari Ailus0c426c42016-02-21 13:25:08 -0300611 if (mdev->entity_internal_idx_max
612 >= mdev->pm_count_walk.ent_enum.idx_max) {
613 struct media_entity_graph new = { .top = 0 };
614
615 /*
616 * Initialise the new graph walk before cleaning up
617 * the old one in order not to spoil the graph walk
618 * object of the media device if graph walk init fails.
619 */
620 ret = media_entity_graph_walk_init(&new, mdev);
621 if (ret) {
622 mutex_unlock(&mdev->graph_mutex);
623 return ret;
624 }
625 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
626 mdev->pm_count_walk = new;
627 }
628 mutex_unlock(&mdev->graph_mutex);
629
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200630 return 0;
631}
632EXPORT_SYMBOL_GPL(media_device_register_entity);
633
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200634static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200635{
636 struct media_device *mdev = entity->graph_obj.mdev;
637 struct media_link *link, *tmp;
638 struct media_interface *intf;
639 unsigned int i;
640
Sakari Ailus665faa92015-12-16 11:32:17 -0200641 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
642
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200643 /* Remove all interface links pointing to this entity */
644 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
645 list_for_each_entry_safe(link, tmp, &intf->links, list) {
646 if (link->entity == entity)
647 __media_remove_intf_link(link);
648 }
649 }
650
651 /* Remove all data links that belong to this entity */
652 __media_entity_remove_links(entity);
653
654 /* Remove all pads that belong to this entity */
655 for (i = 0; i < entity->num_pads; i++)
656 media_gobj_destroy(&entity->pads[i].graph_obj);
657
658 /* Remove the entity */
659 media_gobj_destroy(&entity->graph_obj);
660
Shuah Khanafcbdb52016-02-11 21:41:21 -0200661 /* invoke entity_notify callbacks to handle entity removal?? */
662
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200663 entity->graph_obj.mdev = NULL;
664}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200665
666void media_device_unregister_entity(struct media_entity *entity)
667{
668 struct media_device *mdev = entity->graph_obj.mdev;
669
670 if (mdev == NULL)
671 return;
672
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300673 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200674 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300675 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200676}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200677EXPORT_SYMBOL_GPL(media_device_unregister_entity);
678
679/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200680 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300681 * @mdev: The media device
682 *
683 * The caller is responsible for initializing the media device before
684 * registration. The following fields must be set:
685 *
686 * - dev must point to the parent device
687 * - model must be filled with the device model name
688 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200689void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300690{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300691 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300692 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300693 INIT_LIST_HEAD(&mdev->pads);
694 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200695 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300696 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200697 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300698
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200699 dev_dbg(mdev->dev, "Media device initialized\n");
700}
701EXPORT_SYMBOL_GPL(media_device_init);
702
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200703void media_device_cleanup(struct media_device *mdev)
704{
Sakari Ailus665faa92015-12-16 11:32:17 -0200705 ida_destroy(&mdev->entity_internal_idx);
706 mdev->entity_internal_idx_max = 0;
Sakari Ailus0c426c42016-02-21 13:25:08 -0300707 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200708 mutex_destroy(&mdev->graph_mutex);
709}
710EXPORT_SYMBOL_GPL(media_device_cleanup);
711
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200712int __must_check __media_device_register(struct media_device *mdev,
713 struct module *owner)
714{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300715 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200716 int ret;
717
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300718 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
719 if (!devnode)
720 return -ENOMEM;
721
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300722 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300723 mdev->devnode = devnode;
724 devnode->fops = &media_device_fops;
725 devnode->parent = mdev->dev;
726 devnode->release = media_device_release;
Javier Martinez Canillas8a950792015-12-11 20:57:09 -0200727
728 /* Set version 0 to indicate user-space that the graph is static */
729 mdev->topology_version = 0;
730
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300731 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300732 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;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300735 return ret;
736 }
737
738 ret = device_create_file(&devnode->dev, &dev_attr_model);
739 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300740 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300741 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300742 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300743 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300744 return ret;
745 }
746
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300747 dev_dbg(mdev->dev, "Media device registered\n");
748
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300749 return 0;
750}
Sakari Ailus85de7212013-12-12 12:38:17 -0300751EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300752
Shuah Khanafcbdb52016-02-11 21:41:21 -0200753int __must_check media_device_register_entity_notify(struct media_device *mdev,
754 struct media_entity_notify *nptr)
755{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300756 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200757 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300758 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200759 return 0;
760}
761EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
762
763/*
764 * Note: Should be called with mdev->lock held.
765 */
766static void __media_device_unregister_entity_notify(struct media_device *mdev,
767 struct media_entity_notify *nptr)
768{
769 list_del(&nptr->list);
770}
771
772void media_device_unregister_entity_notify(struct media_device *mdev,
773 struct media_entity_notify *nptr)
774{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300775 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200776 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300777 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200778}
779EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
780
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300781void media_device_unregister(struct media_device *mdev)
782{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300783 struct media_entity *entity;
784 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300785 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200786 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300787
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200788 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200789 return;
790
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300791 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200792
793 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300794 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300795 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200796 return;
797 }
798
Shuah Khan6f0dd242016-06-10 14:37:23 -0300799 /* Clear the devnode register bit to avoid races with media dev open */
800 media_devnode_unregister_prepare(mdev->devnode);
801
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300802 /* Remove all entities from the media device */
803 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200804 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300805
Shuah Khanafcbdb52016-02-11 21:41:21 -0200806 /* Remove all entity_notify callbacks from the media device */
807 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
808 __media_device_unregister_entity_notify(mdev, notify);
809
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300810 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300811 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
812 graph_obj.list) {
813 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200814 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300815 kfree(intf);
816 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200817
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300818 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300819
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300820 dev_dbg(mdev->dev, "Media device unregistered\n");
821
Shuah Khan6f0dd242016-06-10 14:37:23 -0300822 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
823 media_devnode_unregister(mdev->devnode);
824 /* devnode free is handled in media_devnode_*() */
825 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300826}
827EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300828
Shuah Khand062f912015-06-03 12:12:53 -0300829static void media_device_release_devres(struct device *dev, void *res)
830{
831}
832
Shuah Khand062f912015-06-03 12:12:53 -0300833struct media_device *media_device_get_devres(struct device *dev)
834{
835 struct media_device *mdev;
836
837 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
838 if (mdev)
839 return mdev;
840
841 mdev = devres_alloc(media_device_release_devres,
842 sizeof(struct media_device), GFP_KERNEL);
843 if (!mdev)
844 return NULL;
845 return devres_get(dev, mdev, NULL, NULL);
846}
847EXPORT_SYMBOL_GPL(media_device_get_devres);
848
Shuah Khand062f912015-06-03 12:12:53 -0300849struct media_device *media_device_find_devres(struct device *dev)
850{
851 return devres_find(dev, media_device_release_devres, NULL, NULL);
852}
853EXPORT_SYMBOL_GPL(media_device_find_devres);
Shuah Khane576d602015-06-05 17:11:54 -0300854
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300855#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300856void media_device_pci_init(struct media_device *mdev,
857 struct pci_dev *pci_dev,
858 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300859{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300860 mdev->dev = &pci_dev->dev;
861
862 if (name)
863 strlcpy(mdev->model, name, sizeof(mdev->model));
864 else
865 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
866
867 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
868
869 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
870 | pci_dev->subsystem_device;
871
872 mdev->driver_version = LINUX_VERSION_CODE;
873
874 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300875}
876EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300877#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300878
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300879#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300880void __media_device_usb_init(struct media_device *mdev,
881 struct usb_device *udev,
882 const char *board_name,
883 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300884{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300885 mdev->dev = &udev->dev;
886
887 if (driver_name)
888 strlcpy(mdev->driver_name, driver_name,
889 sizeof(mdev->driver_name));
890
891 if (board_name)
892 strlcpy(mdev->model, board_name, sizeof(mdev->model));
893 else if (udev->product)
894 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
895 else
896 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
897 if (udev->serial)
898 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
899 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
900 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
901 mdev->driver_version = LINUX_VERSION_CODE;
902
903 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300904}
905EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300906#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300907
908
Shuah Khane576d602015-06-05 17:11:54 -0300909#endif /* CONFIG_MEDIA_CONTROLLER */