blob: 4462d8c69d575f0bb70b8651111199bebbaa743e [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
61static int media_device_get_info(struct media_device *dev,
Sakari Ailusbcd50812016-05-03 18:42:13 -030062 struct media_device_info *info)
Laurent Pinchart140d8812010-08-18 11:41:22 -030063{
Sakari Ailusbcd50812016-05-03 18:42:13 -030064 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030065
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020066 if (dev->driver_name[0])
Sakari Ailusbcd50812016-05-03 18:42:13 -030067 strlcpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020068 else
Sakari Ailusbcd50812016-05-03 18:42:13 -030069 strlcpy(info->driver, dev->dev->driver->name,
70 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020071
Sakari Ailusbcd50812016-05-03 18:42:13 -030072 strlcpy(info->model, dev->model, sizeof(info->model));
73 strlcpy(info->serial, dev->serial, sizeof(info->serial));
74 strlcpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030075
Sakari Ailusbcd50812016-05-03 18:42:13 -030076 info->media_version = MEDIA_API_VERSION;
77 info->hw_revision = dev->hw_revision;
78 info->driver_version = dev->driver_version;
Laurent Pinchart140d8812010-08-18 11:41:22 -030079
Nicolas THERYb17d3942012-08-07 05:24:59 -030080 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030081}
82
Laurent Pinchart16513332009-12-09 08:40:01 -030083static struct media_entity *find_entity(struct media_device *mdev, u32 id)
84{
85 struct media_entity *entity;
86 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
87
88 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
89
Laurent Pinchart16513332009-12-09 08:40:01 -030090 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030091 if (((media_entity_id(entity) == id) && !next) ||
92 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030093 return entity;
94 }
95 }
96
Laurent Pinchart16513332009-12-09 08:40:01 -030097 return NULL;
98}
99
100static long media_device_enum_entities(struct media_device *mdev,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300101 struct media_entity_desc *entd)
Laurent Pinchart16513332009-12-09 08:40:01 -0300102{
103 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300104
Sakari Ailusbcd50812016-05-03 18:42:13 -0300105 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300106 if (ent == NULL)
107 return -EINVAL;
108
Sakari Ailusbcd50812016-05-03 18:42:13 -0300109 memset(entd, 0, sizeof(*entd));
110
111 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300112 if (ent->name)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300113 strlcpy(entd->name, ent->name, sizeof(entd->name));
114 entd->type = ent->function;
115 entd->revision = 0; /* Unused */
116 entd->flags = ent->flags;
117 entd->group_id = 0; /* Unused */
118 entd->pads = ent->num_pads;
119 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300120
121 /*
122 * Workaround for a bug at media-ctl <= v1.10 that makes it to
123 * do the wrong thing if the entity function doesn't belong to
124 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
125 * Ranges.
126 *
127 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
128 * or, otherwise, will be silently ignored by media-ctl when
129 * printing the graphviz diagram. So, map them into the devnode
130 * old range.
131 */
132 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus719f1762017-01-02 08:32:47 -0200133 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300134 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300135 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300136 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300137 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300138 }
139
Sakari Ailusbcd50812016-05-03 18:42:13 -0300140 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
141
Laurent Pinchart16513332009-12-09 08:40:01 -0300142 return 0;
143}
144
145static void media_device_kpad_to_upad(const struct media_pad *kpad,
146 struct media_pad_desc *upad)
147{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300148 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300149 upad->index = kpad->index;
150 upad->flags = kpad->flags;
151}
152
Sakari Ailusbcd50812016-05-03 18:42:13 -0300153static long media_device_enum_links(struct media_device *mdev,
154 struct media_links_enum *links)
Laurent Pinchart16513332009-12-09 08:40:01 -0300155{
156 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300157
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300158 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300159 if (entity == NULL)
160 return -EINVAL;
161
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300162 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300163 unsigned int p;
164
165 for (p = 0; p < entity->num_pads; p++) {
166 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300167
168 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300169 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300170 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300171 return -EFAULT;
172 }
173 }
174
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300175 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200176 struct media_link *link;
177 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300178
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200179 list_for_each_entry(link, &entity->links, list) {
180 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300181
182 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200183 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300184 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200185 memset(&klink_desc, 0, sizeof(klink_desc));
186 media_device_kpad_to_upad(link->source,
187 &klink_desc.source);
188 media_device_kpad_to_upad(link->sink,
189 &klink_desc.sink);
190 klink_desc.flags = link->flags;
191 if (copy_to_user(ulink_desc, &klink_desc,
192 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300193 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200194 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300195 }
196 }
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300197
198 return 0;
199}
200
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300201static long media_device_setup_link(struct media_device *mdev,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300202 struct media_link_desc *linkd)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300203{
204 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300205 struct media_entity *source;
206 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300207
208 /* Find the source and sink entities and link.
209 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300210 source = find_entity(mdev, linkd->source.entity);
211 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300212
213 if (source == NULL || sink == NULL)
214 return -EINVAL;
215
Sakari Ailusbcd50812016-05-03 18:42:13 -0300216 if (linkd->source.index >= source->num_pads ||
217 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300218 return -EINVAL;
219
Sakari Ailusbcd50812016-05-03 18:42:13 -0300220 link = media_entity_find_link(&source->pads[linkd->source.index],
221 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300222 if (link == NULL)
223 return -EINVAL;
224
225 /* 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
Sakari Ailusbcd50812016-05-03 18:42:13 -0300229static long media_device_get_topology(struct media_device *mdev,
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300230 struct media_v2_topology *topo)
231{
232 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;
262 strncpy(kentity.name, entity->name,
263 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;
270
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;
305
306 /* Get pads and number of pads */
307 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200308 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300309 media_device_for_each_pad(pad, mdev) {
310 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200311 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300312 continue;
313
314 if (i > topo->num_pads) {
315 ret = -ENOSPC;
316 continue;
317 }
318
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200319 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300320
321 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200322 kpad.id = pad->graph_obj.id;
323 kpad.entity_id = pad->entity->graph_obj.id;
324 kpad.flags = pad->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300325
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200326 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300327 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200328 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300329 }
330 topo->num_pads = i;
331
332 /* Get links and number of links */
333 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200334 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300335 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300336 if (link->is_backlink)
337 continue;
338
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300339 i++;
340
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200341 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300342 continue;
343
344 if (i > topo->num_links) {
345 ret = -ENOSPC;
346 continue;
347 }
348
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200349 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300350
351 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200352 klink.id = link->graph_obj.id;
353 klink.source_id = link->gobj0->id;
354 klink.sink_id = link->gobj1->id;
355 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300356
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200357 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300358 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200359 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300360 }
361 topo->num_links = i;
362
363 return ret;
364}
365
Sakari Ailusbcd50812016-05-03 18:42:13 -0300366static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300367{
Sakari Ailusbcd50812016-05-03 18:42:13 -0300368 /* All media IOCTLs are _IOWR() */
369 if (copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200370 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300371
Dan Carpentera5c82e52015-12-15 09:00:40 -0200372 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300373}
374
Sakari Ailusbcd50812016-05-03 18:42:13 -0300375static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
376{
377 /* All media IOCTLs are _IOWR() */
378 if (copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
379 return -EFAULT;
380
381 return 0;
382}
383
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300384/* Do acquire the graph mutex */
385#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
386
387#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
388 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
389 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300390 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300391 .flags = fl, \
392 .arg_from_user = from_user, \
393 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300394 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300395
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300396#define MEDIA_IOC(__cmd, func, fl) \
397 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300398
Sakari Ailuscf439d52016-04-27 09:39:17 -0300399/* the table is indexed by _IOC_NR(cmd) */
400struct media_ioctl_info {
401 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300402 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300403 long (*fn)(struct media_device *dev, void *arg);
404 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
405 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300406};
407
408static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300409 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
410 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
411 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
412 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
413 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300414};
415
Laurent Pinchart140d8812010-08-18 11:41:22 -0300416static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300417 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300418{
419 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300420 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300421 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300422 void __user *arg = (void __user *)__arg;
423 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300424 long ret;
425
Sakari Ailuscf439d52016-04-27 09:39:17 -0300426 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
427 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
428 return -ENOIOCTLCMD;
429
Sakari Ailus69752642016-05-03 18:35:12 -0300430 info = &ioctl_info[_IOC_NR(cmd)];
431
Sakari Ailusbcd50812016-05-03 18:42:13 -0300432 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
433 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
434 if (!karg)
435 return -ENOMEM;
436 }
437
438 if (info->arg_from_user) {
439 ret = info->arg_from_user(karg, arg, cmd);
440 if (ret)
441 goto out_free;
442 }
443
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300444 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
445 mutex_lock(&dev->graph_mutex);
446
Sakari Ailusbcd50812016-05-03 18:42:13 -0300447 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300448
449 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
450 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300451
Sakari Ailusbcd50812016-05-03 18:42:13 -0300452 if (!ret && info->arg_to_user)
453 ret = info->arg_to_user(arg, karg, cmd);
454
455out_free:
456 if (karg != __karg)
457 kfree(karg);
458
Laurent Pinchart140d8812010-08-18 11:41:22 -0300459 return ret;
460}
461
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300462#ifdef CONFIG_COMPAT
463
464struct media_links_enum32 {
465 __u32 entity;
466 compat_uptr_t pads; /* struct media_pad_desc * */
467 compat_uptr_t links; /* struct media_link_desc * */
468 __u32 reserved[4];
469};
470
471static long media_device_enum_links32(struct media_device *mdev,
472 struct media_links_enum32 __user *ulinks)
473{
474 struct media_links_enum links;
475 compat_uptr_t pads_ptr, links_ptr;
476
477 memset(&links, 0, sizeof(links));
478
479 if (get_user(links.entity, &ulinks->entity)
480 || get_user(pads_ptr, &ulinks->pads)
481 || get_user(links_ptr, &ulinks->links))
482 return -EFAULT;
483
484 links.pads = compat_ptr(pads_ptr);
485 links.links = compat_ptr(links_ptr);
486
Sakari Ailusbcd50812016-05-03 18:42:13 -0300487 return media_device_enum_links(mdev, &links);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300488}
489
490#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
491
492static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
493 unsigned long arg)
494{
495 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300496 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300497 long ret;
498
499 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300500 case MEDIA_IOC_ENUM_LINKS32:
501 mutex_lock(&dev->graph_mutex);
502 ret = media_device_enum_links32(dev,
503 (struct media_links_enum32 __user *)arg);
504 mutex_unlock(&dev->graph_mutex);
505 break;
506
507 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300508 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300509 }
510
511 return ret;
512}
513#endif /* CONFIG_COMPAT */
514
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300515static const struct media_file_operations media_device_fops = {
516 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300517 .open = media_device_open,
518 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300519#ifdef CONFIG_COMPAT
520 .compat_ioctl = media_device_compat_ioctl,
521#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300522 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300523};
524
525/* -----------------------------------------------------------------------------
526 * sysfs
527 */
528
529static ssize_t show_model(struct device *cd,
530 struct device_attribute *attr, char *buf)
531{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300532 struct media_devnode *devnode = to_media_devnode(cd);
533 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300534
535 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
536}
537
538static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
539
540/* -----------------------------------------------------------------------------
541 * Registration/unregistration
542 */
543
544static void media_device_release(struct media_devnode *mdev)
545{
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300546 dev_dbg(mdev->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300547}
548
549/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200550 * media_device_register_entity - Register an entity with a media device
551 * @mdev: The media device
552 * @entity: The entity
553 */
554int __must_check media_device_register_entity(struct media_device *mdev,
555 struct media_entity *entity)
556{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200557 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200558 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200559 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200560
561 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
562 entity->function == MEDIA_ENT_F_UNKNOWN)
563 dev_warn(mdev->dev,
564 "Entity type for entity %s was not initialized!\n",
565 entity->name);
566
567 /* Warn if we apparently re-register an entity */
568 WARN_ON(entity->graph_obj.mdev != NULL);
569 entity->graph_obj.mdev = mdev;
570 INIT_LIST_HEAD(&entity->links);
571 entity->num_links = 0;
572 entity->num_backlinks = 0;
573
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200574 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
575 return -ENOMEM;
576
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300577 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200578
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200579 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
580 &entity->internal_idx);
581 if (ret < 0) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300582 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200583 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200584 }
585
586 mdev->entity_internal_idx_max =
587 max(mdev->entity_internal_idx_max, entity->internal_idx);
588
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200589 /* Initialize media_gobj embedded at the entity */
590 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
591
592 /* Initialize objects at the pads */
593 for (i = 0; i < entity->num_pads; i++)
594 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
595 &entity->pads[i].graph_obj);
596
Shuah Khanafcbdb52016-02-11 21:41:21 -0200597 /* invoke entity_notify callbacks */
598 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list) {
599 (notify)->notify(entity, notify->notify_data);
600 }
601
Sakari Ailus0c426c42016-02-21 13:25:08 -0300602 if (mdev->entity_internal_idx_max
603 >= mdev->pm_count_walk.ent_enum.idx_max) {
604 struct media_entity_graph new = { .top = 0 };
605
606 /*
607 * Initialise the new graph walk before cleaning up
608 * the old one in order not to spoil the graph walk
609 * object of the media device if graph walk init fails.
610 */
611 ret = media_entity_graph_walk_init(&new, mdev);
612 if (ret) {
613 mutex_unlock(&mdev->graph_mutex);
614 return ret;
615 }
616 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
617 mdev->pm_count_walk = new;
618 }
619 mutex_unlock(&mdev->graph_mutex);
620
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200621 return 0;
622}
623EXPORT_SYMBOL_GPL(media_device_register_entity);
624
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200625static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200626{
627 struct media_device *mdev = entity->graph_obj.mdev;
628 struct media_link *link, *tmp;
629 struct media_interface *intf;
630 unsigned int i;
631
Sakari Ailus665faa92015-12-16 11:32:17 -0200632 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
633
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200634 /* Remove all interface links pointing to this entity */
635 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
636 list_for_each_entry_safe(link, tmp, &intf->links, list) {
637 if (link->entity == entity)
638 __media_remove_intf_link(link);
639 }
640 }
641
642 /* Remove all data links that belong to this entity */
643 __media_entity_remove_links(entity);
644
645 /* Remove all pads that belong to this entity */
646 for (i = 0; i < entity->num_pads; i++)
647 media_gobj_destroy(&entity->pads[i].graph_obj);
648
649 /* Remove the entity */
650 media_gobj_destroy(&entity->graph_obj);
651
Shuah Khanafcbdb52016-02-11 21:41:21 -0200652 /* invoke entity_notify callbacks to handle entity removal?? */
653
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200654 entity->graph_obj.mdev = NULL;
655}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200656
657void media_device_unregister_entity(struct media_entity *entity)
658{
659 struct media_device *mdev = entity->graph_obj.mdev;
660
661 if (mdev == NULL)
662 return;
663
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300664 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200665 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300666 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200667}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200668EXPORT_SYMBOL_GPL(media_device_unregister_entity);
669
670/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200671 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300672 * @mdev: The media device
673 *
674 * The caller is responsible for initializing the media device before
675 * registration. The following fields must be set:
676 *
677 * - dev must point to the parent device
678 * - model must be filled with the device model name
679 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200680void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300681{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300682 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300683 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300684 INIT_LIST_HEAD(&mdev->pads);
685 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200686 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300687 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200688 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300689
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200690 dev_dbg(mdev->dev, "Media device initialized\n");
691}
692EXPORT_SYMBOL_GPL(media_device_init);
693
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200694void media_device_cleanup(struct media_device *mdev)
695{
Sakari Ailus665faa92015-12-16 11:32:17 -0200696 ida_destroy(&mdev->entity_internal_idx);
697 mdev->entity_internal_idx_max = 0;
Sakari Ailus0c426c42016-02-21 13:25:08 -0300698 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200699 mutex_destroy(&mdev->graph_mutex);
700}
701EXPORT_SYMBOL_GPL(media_device_cleanup);
702
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200703int __must_check __media_device_register(struct media_device *mdev,
704 struct module *owner)
705{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300706 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200707 int ret;
708
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300709 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
710 if (!devnode)
711 return -ENOMEM;
712
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300713 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300714 mdev->devnode = devnode;
715 devnode->fops = &media_device_fops;
716 devnode->parent = mdev->dev;
717 devnode->release = media_device_release;
Javier Martinez Canillas8a950792015-12-11 20:57:09 -0200718
719 /* Set version 0 to indicate user-space that the graph is static */
720 mdev->topology_version = 0;
721
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300722 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300723 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300724 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300725 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300726 return ret;
727 }
728
729 ret = device_create_file(&devnode->dev, &dev_attr_model);
730 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300731 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300732 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300733 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300734 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300735 return ret;
736 }
737
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300738 dev_dbg(mdev->dev, "Media device registered\n");
739
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300740 return 0;
741}
Sakari Ailus85de7212013-12-12 12:38:17 -0300742EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300743
Shuah Khanafcbdb52016-02-11 21:41:21 -0200744int __must_check media_device_register_entity_notify(struct media_device *mdev,
745 struct media_entity_notify *nptr)
746{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300747 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200748 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300749 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200750 return 0;
751}
752EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
753
754/*
755 * Note: Should be called with mdev->lock held.
756 */
757static void __media_device_unregister_entity_notify(struct media_device *mdev,
758 struct media_entity_notify *nptr)
759{
760 list_del(&nptr->list);
761}
762
763void media_device_unregister_entity_notify(struct media_device *mdev,
764 struct media_entity_notify *nptr)
765{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300766 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200767 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300768 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200769}
770EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
771
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300772void media_device_unregister(struct media_device *mdev)
773{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300774 struct media_entity *entity;
775 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300776 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200777 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300778
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200779 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200780 return;
781
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300782 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200783
784 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300785 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300786 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200787 return;
788 }
789
Shuah Khan6f0dd242016-06-10 14:37:23 -0300790 /* Clear the devnode register bit to avoid races with media dev open */
791 media_devnode_unregister_prepare(mdev->devnode);
792
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300793 /* Remove all entities from the media device */
794 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200795 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300796
Shuah Khanafcbdb52016-02-11 21:41:21 -0200797 /* Remove all entity_notify callbacks from the media device */
798 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
799 __media_device_unregister_entity_notify(mdev, notify);
800
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300801 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300802 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
803 graph_obj.list) {
804 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200805 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300806 kfree(intf);
807 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200808
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300809 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300810
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300811 dev_dbg(mdev->dev, "Media device unregistered\n");
812
Shuah Khan6f0dd242016-06-10 14:37:23 -0300813 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
814 media_devnode_unregister(mdev->devnode);
815 /* devnode free is handled in media_devnode_*() */
816 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300817}
818EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300819
Shuah Khand062f912015-06-03 12:12:53 -0300820static void media_device_release_devres(struct device *dev, void *res)
821{
822}
823
Shuah Khand062f912015-06-03 12:12:53 -0300824struct media_device *media_device_get_devres(struct device *dev)
825{
826 struct media_device *mdev;
827
828 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
829 if (mdev)
830 return mdev;
831
832 mdev = devres_alloc(media_device_release_devres,
833 sizeof(struct media_device), GFP_KERNEL);
834 if (!mdev)
835 return NULL;
836 return devres_get(dev, mdev, NULL, NULL);
837}
838EXPORT_SYMBOL_GPL(media_device_get_devres);
839
Shuah Khand062f912015-06-03 12:12:53 -0300840struct media_device *media_device_find_devres(struct device *dev)
841{
842 return devres_find(dev, media_device_release_devres, NULL, NULL);
843}
844EXPORT_SYMBOL_GPL(media_device_find_devres);
Shuah Khane576d602015-06-05 17:11:54 -0300845
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300846#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300847void media_device_pci_init(struct media_device *mdev,
848 struct pci_dev *pci_dev,
849 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300850{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300851 mdev->dev = &pci_dev->dev;
852
853 if (name)
854 strlcpy(mdev->model, name, sizeof(mdev->model));
855 else
856 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
857
858 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
859
860 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
861 | pci_dev->subsystem_device;
862
863 mdev->driver_version = LINUX_VERSION_CODE;
864
865 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300866}
867EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300868#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300869
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300870#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300871void __media_device_usb_init(struct media_device *mdev,
872 struct usb_device *udev,
873 const char *board_name,
874 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300875{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300876 mdev->dev = &udev->dev;
877
878 if (driver_name)
879 strlcpy(mdev->driver_name, driver_name,
880 sizeof(mdev->driver_name));
881
882 if (board_name)
883 strlcpy(mdev->model, board_name, sizeof(mdev->model));
884 else if (udev->product)
885 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
886 else
887 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
888 if (udev->serial)
889 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
890 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
891 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
892 mdev->driver_version = LINUX_VERSION_CODE;
893
894 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300895}
896EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300897#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300898
899
Shuah Khane576d602015-06-05 17:11:54 -0300900#endif /* CONFIG_MEDIA_CONTROLLER */