blob: bed24372e61fcd8c8f588321ceb4243b457afc88 [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
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -030019#include <linux/compat.h>
20#include <linux/export.h>
Sakari Ailus665faa92015-12-16 11:32:17 -020021#include <linux/idr.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030022#include <linux/ioctl.h>
Laurent Pinchart140d8812010-08-18 11:41:22 -030023#include <linux/media.h>
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -030024#include <linux/slab.h>
Mauro Carvalho Chehab497e80c2015-12-11 07:23:09 -020025#include <linux/types.h>
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -030026#include <linux/pci.h>
27#include <linux/usb.h>
Hans Verkuil87e1a882018-07-25 08:51:39 -040028#include <linux/version.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030029
30#include <media/media-device.h>
31#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030032#include <media/media-entity.h>
Hans Verkuil10905d72018-05-21 04:54:27 -040033#include <media/media-request.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030034
Shuah Khane576d60b2015-06-05 17:11:54 -030035#ifdef CONFIG_MEDIA_CONTROLLER
36
Hans Verkuile1a98c12018-06-15 09:19:46 -040037/*
38 * Legacy defines from linux/media.h. This is the only place we need this
39 * so we just define it here. The media.h header doesn't expose it to the
40 * kernel to prevent it from being used by drivers, but here (and only here!)
41 * we need it to handle the legacy behavior.
42 */
43#define MEDIA_ENT_SUBTYPE_MASK 0x0000ffff
44#define MEDIA_ENT_T_DEVNODE_UNKNOWN (MEDIA_ENT_F_OLD_BASE | \
45 MEDIA_ENT_SUBTYPE_MASK)
46
Laurent Pinchart140d8812010-08-18 11:41:22 -030047/* -----------------------------------------------------------------------------
48 * Userspace API
49 */
50
Sakari Ailus0629e992016-02-22 17:47:04 -030051static inline void __user *media_get_uptr(__u64 arg)
52{
53 return (void __user *)(uintptr_t)arg;
54}
55
Laurent Pinchart140d8812010-08-18 11:41:22 -030056static int media_device_open(struct file *filp)
57{
58 return 0;
59}
60
61static int media_device_close(struct file *filp)
62{
63 return 0;
64}
65
Sami Tolvanendaa36372018-05-07 14:09:46 -040066static long media_device_get_info(struct media_device *dev, void *arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -030067{
Sami Tolvanendaa36372018-05-07 14:09:46 -040068 struct media_device_info *info = arg;
69
Sakari Ailusbcd50812016-05-03 18:42:13 -030070 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030071
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020072 if (dev->driver_name[0])
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -040073 strscpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020074 else
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -040075 strscpy(info->driver, dev->dev->driver->name,
Sakari Ailusbcd50812016-05-03 18:42:13 -030076 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020077
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -040078 strscpy(info->model, dev->model, sizeof(info->model));
79 strscpy(info->serial, dev->serial, sizeof(info->serial));
80 strscpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030081
Hans Verkuil6c2c1882017-07-28 03:25:06 -040082 info->media_version = LINUX_VERSION_CODE;
83 info->driver_version = info->media_version;
Sakari Ailusbcd50812016-05-03 18:42:13 -030084 info->hw_revision = dev->hw_revision;
Laurent Pinchart140d8812010-08-18 11:41:22 -030085
Nicolas THERYb17d3942012-08-07 05:24:59 -030086 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030087}
88
Laurent Pinchart16513332009-12-09 08:40:01 -030089static struct media_entity *find_entity(struct media_device *mdev, u32 id)
90{
91 struct media_entity *entity;
92 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
93
94 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
95
Laurent Pinchart16513332009-12-09 08:40:01 -030096 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030097 if (((media_entity_id(entity) == id) && !next) ||
98 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030099 return entity;
100 }
101 }
102
Laurent Pinchart16513332009-12-09 08:40:01 -0300103 return NULL;
104}
105
Sami Tolvanendaa36372018-05-07 14:09:46 -0400106static long media_device_enum_entities(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300107{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400108 struct media_entity_desc *entd = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300109 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300110
Sakari Ailusbcd50812016-05-03 18:42:13 -0300111 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300112 if (ent == NULL)
113 return -EINVAL;
114
Sakari Ailusbcd50812016-05-03 18:42:13 -0300115 memset(entd, 0, sizeof(*entd));
116
117 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300118 if (ent->name)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400119 strscpy(entd->name, ent->name, sizeof(entd->name));
Sakari Ailusbcd50812016-05-03 18:42:13 -0300120 entd->type = ent->function;
121 entd->revision = 0; /* Unused */
122 entd->flags = ent->flags;
123 entd->group_id = 0; /* Unused */
124 entd->pads = ent->num_pads;
125 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300126
127 /*
128 * Workaround for a bug at media-ctl <= v1.10 that makes it to
129 * do the wrong thing if the entity function doesn't belong to
130 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
131 * Ranges.
132 *
133 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
134 * or, otherwise, will be silently ignored by media-ctl when
135 * printing the graphviz diagram. So, map them into the devnode
136 * old range.
137 */
138 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus98d85f32017-01-02 08:32:47 -0200139 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300140 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300141 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300142 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300143 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300144 }
145
Sakari Ailusbcd50812016-05-03 18:42:13 -0300146 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
147
Laurent Pinchart16513332009-12-09 08:40:01 -0300148 return 0;
149}
150
151static void media_device_kpad_to_upad(const struct media_pad *kpad,
152 struct media_pad_desc *upad)
153{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300154 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300155 upad->index = kpad->index;
156 upad->flags = kpad->flags;
157}
158
Sami Tolvanendaa36372018-05-07 14:09:46 -0400159static long media_device_enum_links(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300160{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400161 struct media_links_enum *links = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300162 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300163
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300164 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300165 if (entity == NULL)
166 return -EINVAL;
167
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300168 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300169 unsigned int p;
170
171 for (p = 0; p < entity->num_pads; p++) {
172 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300173
174 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300175 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300176 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300177 return -EFAULT;
178 }
179 }
180
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300181 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200182 struct media_link *link;
183 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300184
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200185 list_for_each_entry(link, &entity->links, list) {
186 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300187
188 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200189 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300190 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200191 memset(&klink_desc, 0, sizeof(klink_desc));
192 media_device_kpad_to_upad(link->source,
193 &klink_desc.source);
194 media_device_kpad_to_upad(link->sink,
195 &klink_desc.sink);
196 klink_desc.flags = link->flags;
197 if (copy_to_user(ulink_desc, &klink_desc,
198 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300199 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200200 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300201 }
202 }
Hans Verkuilfcab7572018-02-03 13:46:05 -0500203 memset(links->reserved, 0, sizeof(links->reserved));
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300204
205 return 0;
206}
207
Sami Tolvanendaa36372018-05-07 14:09:46 -0400208static long media_device_setup_link(struct media_device *mdev, void *arg)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300209{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400210 struct media_link_desc *linkd = arg;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300211 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300212 struct media_entity *source;
213 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300214
215 /* Find the source and sink entities and link.
216 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300217 source = find_entity(mdev, linkd->source.entity);
218 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300219
220 if (source == NULL || sink == NULL)
221 return -EINVAL;
222
Sakari Ailusbcd50812016-05-03 18:42:13 -0300223 if (linkd->source.index >= source->num_pads ||
224 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300225 return -EINVAL;
226
Sakari Ailusbcd50812016-05-03 18:42:13 -0300227 link = media_entity_find_link(&source->pads[linkd->source.index],
228 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300229 if (link == NULL)
230 return -EINVAL;
231
Hans Verkuilfcab7572018-02-03 13:46:05 -0500232 memset(linkd->reserved, 0, sizeof(linkd->reserved));
233
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300234 /* Setup the link on both entities. */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300235 return __media_entity_setup_link(link, linkd->flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300236}
237
Sami Tolvanendaa36372018-05-07 14:09:46 -0400238static long media_device_get_topology(struct media_device *mdev, void *arg)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300239{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400240 struct media_v2_topology *topo = arg;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300241 struct media_entity *entity;
242 struct media_interface *intf;
243 struct media_pad *pad;
244 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300245 struct media_v2_entity kentity, __user *uentity;
246 struct media_v2_interface kintf, __user *uintf;
247 struct media_v2_pad kpad, __user *upad;
248 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300249 unsigned int i;
250 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300251
252 topo->topology_version = mdev->topology_version;
253
254 /* Get entities and number of entities */
255 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200256 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300257 media_device_for_each_entity(entity, mdev) {
258 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200259 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300260 continue;
261
262 if (i > topo->num_entities) {
263 ret = -ENOSPC;
264 continue;
265 }
266
267 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200268 memset(&kentity, 0, sizeof(kentity));
269 kentity.id = entity->graph_obj.id;
270 kentity.function = entity->function;
Hans Verkuil588f4ee2018-02-28 05:41:11 -0500271 kentity.flags = entity->flags;
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400272 strscpy(kentity.name, entity->name,
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200273 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300274
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200275 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300276 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200277 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300278 }
279 topo->num_entities = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500280 topo->reserved1 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300281
282 /* Get interfaces and number of interfaces */
283 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200284 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300285 media_device_for_each_intf(intf, mdev) {
286 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200287 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300288 continue;
289
290 if (i > topo->num_interfaces) {
291 ret = -ENOSPC;
292 continue;
293 }
294
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200295 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300296
297 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200298 kintf.id = intf->graph_obj.id;
299 kintf.intf_type = intf->type;
300 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300301
302 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
303 struct media_intf_devnode *devnode;
304
305 devnode = intf_to_devnode(intf);
306
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200307 kintf.devnode.major = devnode->major;
308 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300309 }
310
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200311 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300312 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200313 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300314 }
315 topo->num_interfaces = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500316 topo->reserved2 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300317
318 /* Get pads and number of pads */
319 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200320 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300321 media_device_for_each_pad(pad, mdev) {
322 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200323 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300324 continue;
325
326 if (i > topo->num_pads) {
327 ret = -ENOSPC;
328 continue;
329 }
330
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200331 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300332
333 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200334 kpad.id = pad->graph_obj.id;
335 kpad.entity_id = pad->entity->graph_obj.id;
336 kpad.flags = pad->flags;
Hans Verkuil30b914c2018-02-27 07:24:09 -0500337 kpad.index = pad->index;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300338
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200339 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300340 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200341 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300342 }
343 topo->num_pads = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500344 topo->reserved3 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300345
346 /* Get links and number of links */
347 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200348 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300349 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300350 if (link->is_backlink)
351 continue;
352
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300353 i++;
354
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200355 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300356 continue;
357
358 if (i > topo->num_links) {
359 ret = -ENOSPC;
360 continue;
361 }
362
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200363 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300364
365 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200366 klink.id = link->graph_obj.id;
367 klink.source_id = link->gobj0->id;
368 klink.sink_id = link->gobj1->id;
369 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300370
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200371 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300372 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200373 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300374 }
375 topo->num_links = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500376 topo->reserved4 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300377
378 return ret;
379}
380
Hans Verkuil10905d72018-05-21 04:54:27 -0400381static long media_device_request_alloc(struct media_device *mdev,
382 int *alloc_fd)
383{
384 if (!mdev->ops || !mdev->ops->req_validate || !mdev->ops->req_queue)
385 return -ENOTTY;
386
387 return media_request_alloc(mdev, alloc_fd);
388}
389
Sakari Ailusbcd50812016-05-03 18:42:13 -0300390static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300391{
Hans Verkuil10905d72018-05-21 04:54:27 -0400392 if ((_IOC_DIR(cmd) & _IOC_WRITE) &&
393 copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200394 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300395
Dan Carpentera5c82e52015-12-15 09:00:40 -0200396 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300397}
398
Sakari Ailusbcd50812016-05-03 18:42:13 -0300399static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
400{
Hans Verkuil10905d72018-05-21 04:54:27 -0400401 if ((_IOC_DIR(cmd) & _IOC_READ) &&
402 copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300403 return -EFAULT;
404
405 return 0;
406}
407
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300408/* Do acquire the graph mutex */
409#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
410
411#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
412 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
413 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300414 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300415 .flags = fl, \
416 .arg_from_user = from_user, \
417 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300418 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300419
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300420#define MEDIA_IOC(__cmd, func, fl) \
421 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300422
Sakari Ailuscf439d52016-04-27 09:39:17 -0300423/* the table is indexed by _IOC_NR(cmd) */
424struct media_ioctl_info {
425 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300426 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300427 long (*fn)(struct media_device *dev, void *arg);
428 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
429 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300430};
431
432static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300433 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
434 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
435 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
436 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
437 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Hans Verkuil10905d72018-05-21 04:54:27 -0400438 MEDIA_IOC(REQUEST_ALLOC, media_device_request_alloc, 0),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300439};
440
Laurent Pinchart140d8812010-08-18 11:41:22 -0300441static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300442 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300443{
444 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300445 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300446 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300447 void __user *arg = (void __user *)__arg;
448 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300449 long ret;
450
Sakari Ailuscf439d52016-04-27 09:39:17 -0300451 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
452 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
453 return -ENOIOCTLCMD;
454
Sakari Ailus69752642016-05-03 18:35:12 -0300455 info = &ioctl_info[_IOC_NR(cmd)];
456
Sakari Ailusbcd50812016-05-03 18:42:13 -0300457 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
458 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
459 if (!karg)
460 return -ENOMEM;
461 }
462
463 if (info->arg_from_user) {
464 ret = info->arg_from_user(karg, arg, cmd);
465 if (ret)
466 goto out_free;
467 }
468
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300469 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
470 mutex_lock(&dev->graph_mutex);
471
Sakari Ailusbcd50812016-05-03 18:42:13 -0300472 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300473
474 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
475 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300476
Sakari Ailusbcd50812016-05-03 18:42:13 -0300477 if (!ret && info->arg_to_user)
478 ret = info->arg_to_user(arg, karg, cmd);
479
480out_free:
481 if (karg != __karg)
482 kfree(karg);
483
Laurent Pinchart140d8812010-08-18 11:41:22 -0300484 return ret;
485}
486
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300487#ifdef CONFIG_COMPAT
488
489struct media_links_enum32 {
490 __u32 entity;
491 compat_uptr_t pads; /* struct media_pad_desc * */
492 compat_uptr_t links; /* struct media_link_desc * */
493 __u32 reserved[4];
494};
495
496static long media_device_enum_links32(struct media_device *mdev,
497 struct media_links_enum32 __user *ulinks)
498{
499 struct media_links_enum links;
500 compat_uptr_t pads_ptr, links_ptr;
501
502 memset(&links, 0, sizeof(links));
503
504 if (get_user(links.entity, &ulinks->entity)
505 || get_user(pads_ptr, &ulinks->pads)
506 || get_user(links_ptr, &ulinks->links))
507 return -EFAULT;
508
509 links.pads = compat_ptr(pads_ptr);
510 links.links = compat_ptr(links_ptr);
511
Sakari Ailusbcd50812016-05-03 18:42:13 -0300512 return media_device_enum_links(mdev, &links);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300513}
514
515#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
516
517static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
518 unsigned long arg)
519{
520 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300521 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300522 long ret;
523
524 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300525 case MEDIA_IOC_ENUM_LINKS32:
526 mutex_lock(&dev->graph_mutex);
527 ret = media_device_enum_links32(dev,
528 (struct media_links_enum32 __user *)arg);
529 mutex_unlock(&dev->graph_mutex);
530 break;
531
532 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300533 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300534 }
535
536 return ret;
537}
538#endif /* CONFIG_COMPAT */
539
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300540static const struct media_file_operations media_device_fops = {
541 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300542 .open = media_device_open,
543 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300544#ifdef CONFIG_COMPAT
545 .compat_ioctl = media_device_compat_ioctl,
546#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300547 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300548};
549
550/* -----------------------------------------------------------------------------
551 * sysfs
552 */
553
554static ssize_t show_model(struct device *cd,
555 struct device_attribute *attr, char *buf)
556{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300557 struct media_devnode *devnode = to_media_devnode(cd);
558 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300559
560 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
561}
562
563static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
564
565/* -----------------------------------------------------------------------------
566 * Registration/unregistration
567 */
568
Sakari Ailus552636be2017-07-13 11:23:49 -0400569static void media_device_release(struct media_devnode *devnode)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300570{
Sakari Ailus552636be2017-07-13 11:23:49 -0400571 dev_dbg(devnode->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300572}
573
574/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200575 * media_device_register_entity - Register an entity with a media device
576 * @mdev: The media device
577 * @entity: The entity
578 */
579int __must_check media_device_register_entity(struct media_device *mdev,
580 struct media_entity *entity)
581{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200582 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200583 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200584 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200585
586 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
587 entity->function == MEDIA_ENT_F_UNKNOWN)
588 dev_warn(mdev->dev,
589 "Entity type for entity %s was not initialized!\n",
590 entity->name);
591
592 /* Warn if we apparently re-register an entity */
593 WARN_ON(entity->graph_obj.mdev != NULL);
594 entity->graph_obj.mdev = mdev;
595 INIT_LIST_HEAD(&entity->links);
596 entity->num_links = 0;
597 entity->num_backlinks = 0;
598
Matthew Wilcox5a2ab032018-06-18 08:35:52 -0400599 ret = ida_alloc_min(&mdev->entity_internal_idx, 1, GFP_KERNEL);
600 if (ret < 0)
601 return ret;
602 entity->internal_idx = ret;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200603
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300604 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200605 mdev->entity_internal_idx_max =
606 max(mdev->entity_internal_idx_max, entity->internal_idx);
607
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200608 /* Initialize media_gobj embedded at the entity */
609 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
610
611 /* Initialize objects at the pads */
612 for (i = 0; i < entity->num_pads; i++)
613 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
614 &entity->pads[i].graph_obj);
615
Shuah Khanafcbdb52016-02-11 21:41:21 -0200616 /* invoke entity_notify callbacks */
Sakari Ailus10e81bc2017-07-13 11:23:48 -0400617 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list)
618 notify->notify(entity, notify->notify_data);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200619
Sakari Ailus0c426c42016-02-21 13:25:08 -0300620 if (mdev->entity_internal_idx_max
621 >= mdev->pm_count_walk.ent_enum.idx_max) {
Sakari Ailus20b85222016-11-21 14:48:30 -0200622 struct media_graph new = { .top = 0 };
Sakari Ailus0c426c42016-02-21 13:25:08 -0300623
624 /*
625 * Initialise the new graph walk before cleaning up
626 * the old one in order not to spoil the graph walk
627 * object of the media device if graph walk init fails.
628 */
Sakari Ailus20b85222016-11-21 14:48:30 -0200629 ret = media_graph_walk_init(&new, mdev);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300630 if (ret) {
631 mutex_unlock(&mdev->graph_mutex);
632 return ret;
633 }
Sakari Ailus20b85222016-11-21 14:48:30 -0200634 media_graph_walk_cleanup(&mdev->pm_count_walk);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300635 mdev->pm_count_walk = new;
636 }
637 mutex_unlock(&mdev->graph_mutex);
638
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200639 return 0;
640}
641EXPORT_SYMBOL_GPL(media_device_register_entity);
642
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200643static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200644{
645 struct media_device *mdev = entity->graph_obj.mdev;
646 struct media_link *link, *tmp;
647 struct media_interface *intf;
648 unsigned int i;
649
Matthew Wilcox5a2ab032018-06-18 08:35:52 -0400650 ida_free(&mdev->entity_internal_idx, entity->internal_idx);
Sakari Ailus665faa92015-12-16 11:32:17 -0200651
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200652 /* Remove all interface links pointing to this entity */
653 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
654 list_for_each_entry_safe(link, tmp, &intf->links, list) {
655 if (link->entity == entity)
656 __media_remove_intf_link(link);
657 }
658 }
659
660 /* Remove all data links that belong to this entity */
661 __media_entity_remove_links(entity);
662
663 /* Remove all pads that belong to this entity */
664 for (i = 0; i < entity->num_pads; i++)
665 media_gobj_destroy(&entity->pads[i].graph_obj);
666
667 /* Remove the entity */
668 media_gobj_destroy(&entity->graph_obj);
669
Shuah Khanafcbdb52016-02-11 21:41:21 -0200670 /* invoke entity_notify callbacks to handle entity removal?? */
671
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200672 entity->graph_obj.mdev = NULL;
673}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200674
675void media_device_unregister_entity(struct media_entity *entity)
676{
677 struct media_device *mdev = entity->graph_obj.mdev;
678
679 if (mdev == NULL)
680 return;
681
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300682 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200683 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300684 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200685}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200686EXPORT_SYMBOL_GPL(media_device_unregister_entity);
687
688/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200689 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300690 * @mdev: The media device
691 *
692 * The caller is responsible for initializing the media device before
693 * registration. The following fields must be set:
694 *
695 * - dev must point to the parent device
696 * - model must be filled with the device model name
697 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200698void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300699{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300700 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300701 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300702 INIT_LIST_HEAD(&mdev->pads);
703 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200704 INIT_LIST_HEAD(&mdev->entity_notify);
Hans Verkuil10905d72018-05-21 04:54:27 -0400705
706 mutex_init(&mdev->req_queue_mutex);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300707 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200708 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300709
Hans Verkuil10905d72018-05-21 04:54:27 -0400710 atomic_set(&mdev->request_id, 0);
711
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200712 dev_dbg(mdev->dev, "Media device initialized\n");
713}
714EXPORT_SYMBOL_GPL(media_device_init);
715
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200716void media_device_cleanup(struct media_device *mdev)
717{
Sakari Ailus665faa92015-12-16 11:32:17 -0200718 ida_destroy(&mdev->entity_internal_idx);
719 mdev->entity_internal_idx_max = 0;
Sakari Ailus20b85222016-11-21 14:48:30 -0200720 media_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200721 mutex_destroy(&mdev->graph_mutex);
Hans Verkuil10905d72018-05-21 04:54:27 -0400722 mutex_destroy(&mdev->req_queue_mutex);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200723}
724EXPORT_SYMBOL_GPL(media_device_cleanup);
725
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200726int __must_check __media_device_register(struct media_device *mdev,
727 struct module *owner)
728{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300729 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200730 int ret;
731
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300732 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
733 if (!devnode)
734 return -ENOMEM;
735
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300736 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300737 mdev->devnode = devnode;
738 devnode->fops = &media_device_fops;
739 devnode->parent = mdev->dev;
740 devnode->release = media_device_release;
Javier Martinez Canillas8a9507962015-12-11 20:57:09 -0200741
742 /* Set version 0 to indicate user-space that the graph is static */
743 mdev->topology_version = 0;
744
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300745 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300746 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300747 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300748 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300749 return ret;
750 }
751
752 ret = device_create_file(&devnode->dev, &dev_attr_model);
753 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300754 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300755 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300756 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300757 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300758 return ret;
759 }
760
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300761 dev_dbg(mdev->dev, "Media device registered\n");
762
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300763 return 0;
764}
Sakari Ailus85de7212013-12-12 12:38:17 -0300765EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300766
Shuah Khanafcbdb52016-02-11 21:41:21 -0200767int __must_check media_device_register_entity_notify(struct media_device *mdev,
768 struct media_entity_notify *nptr)
769{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300770 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200771 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300772 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200773 return 0;
774}
775EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
776
777/*
778 * Note: Should be called with mdev->lock held.
779 */
780static void __media_device_unregister_entity_notify(struct media_device *mdev,
781 struct media_entity_notify *nptr)
782{
783 list_del(&nptr->list);
784}
785
786void media_device_unregister_entity_notify(struct media_device *mdev,
787 struct media_entity_notify *nptr)
788{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300789 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200790 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300791 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200792}
793EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
794
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300795void media_device_unregister(struct media_device *mdev)
796{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300797 struct media_entity *entity;
798 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300799 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200800 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300801
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200802 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200803 return;
804
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300805 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200806
807 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300808 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300809 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200810 return;
811 }
812
Shuah Khan6f0dd242016-06-10 14:37:23 -0300813 /* Clear the devnode register bit to avoid races with media dev open */
814 media_devnode_unregister_prepare(mdev->devnode);
815
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300816 /* Remove all entities from the media device */
817 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200818 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300819
Shuah Khanafcbdb52016-02-11 21:41:21 -0200820 /* Remove all entity_notify callbacks from the media device */
821 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
822 __media_device_unregister_entity_notify(mdev, notify);
823
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300824 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300825 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
826 graph_obj.list) {
Max Kellermanne7cd17a2016-08-09 18:33:03 -0300827 /*
828 * Unlink the interface, but don't free it here; the
829 * module which created it is responsible for freeing
830 * it
831 */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300832 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200833 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300834 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200835
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300836 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300837
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300838 dev_dbg(mdev->dev, "Media device unregistered\n");
839
Shuah Khan6f0dd242016-06-10 14:37:23 -0300840 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
841 media_devnode_unregister(mdev->devnode);
842 /* devnode free is handled in media_devnode_*() */
843 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300844}
845EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300846
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300847#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300848void media_device_pci_init(struct media_device *mdev,
849 struct pci_dev *pci_dev,
850 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300851{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300852 mdev->dev = &pci_dev->dev;
853
854 if (name)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400855 strscpy(mdev->model, name, sizeof(mdev->model));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300856 else
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400857 strscpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300858
859 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
860
861 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
862 | pci_dev->subsystem_device;
863
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300864 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300865}
866EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300867#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300868
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300869#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300870void __media_device_usb_init(struct media_device *mdev,
871 struct usb_device *udev,
872 const char *board_name,
873 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300874{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300875 mdev->dev = &udev->dev;
876
877 if (driver_name)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400878 strscpy(mdev->driver_name, driver_name,
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300879 sizeof(mdev->driver_name));
880
881 if (board_name)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400882 strscpy(mdev->model, board_name, sizeof(mdev->model));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300883 else if (udev->product)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400884 strscpy(mdev->model, udev->product, sizeof(mdev->model));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300885 else
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400886 strscpy(mdev->model, "unknown model", sizeof(mdev->model));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300887 if (udev->serial)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -0400888 strscpy(mdev->serial, udev->serial, sizeof(mdev->serial));
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300889 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
890 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300891
892 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300893}
894EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300895#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300896
897
Shuah Khane576d60b2015-06-05 17:11:54 -0300898#endif /* CONFIG_MEDIA_CONTROLLER */