blob: 3bae24b15eaa4cbd5e25485121e50ddcb5991af2 [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>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030033
Shuah Khane576d60b2015-06-05 17:11:54 -030034#ifdef CONFIG_MEDIA_CONTROLLER
35
Hans Verkuile1a98c12018-06-15 09:19:46 -040036/*
37 * Legacy defines from linux/media.h. This is the only place we need this
38 * so we just define it here. The media.h header doesn't expose it to the
39 * kernel to prevent it from being used by drivers, but here (and only here!)
40 * we need it to handle the legacy behavior.
41 */
42#define MEDIA_ENT_SUBTYPE_MASK 0x0000ffff
43#define MEDIA_ENT_T_DEVNODE_UNKNOWN (MEDIA_ENT_F_OLD_BASE | \
44 MEDIA_ENT_SUBTYPE_MASK)
45
Laurent Pinchart140d8812010-08-18 11:41:22 -030046/* -----------------------------------------------------------------------------
47 * Userspace API
48 */
49
Sakari Ailus0629e992016-02-22 17:47:04 -030050static inline void __user *media_get_uptr(__u64 arg)
51{
52 return (void __user *)(uintptr_t)arg;
53}
54
Laurent Pinchart140d8812010-08-18 11:41:22 -030055static int media_device_open(struct file *filp)
56{
57 return 0;
58}
59
60static int media_device_close(struct file *filp)
61{
62 return 0;
63}
64
Sami Tolvanendaa36372018-05-07 14:09:46 -040065static long media_device_get_info(struct media_device *dev, void *arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -030066{
Sami Tolvanendaa36372018-05-07 14:09:46 -040067 struct media_device_info *info = arg;
68
Sakari Ailusbcd50812016-05-03 18:42:13 -030069 memset(info, 0, sizeof(*info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030070
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020071 if (dev->driver_name[0])
Sakari Ailusbcd50812016-05-03 18:42:13 -030072 strlcpy(info->driver, dev->driver_name, sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020073 else
Sakari Ailusbcd50812016-05-03 18:42:13 -030074 strlcpy(info->driver, dev->dev->driver->name,
75 sizeof(info->driver));
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020076
Sakari Ailusbcd50812016-05-03 18:42:13 -030077 strlcpy(info->model, dev->model, sizeof(info->model));
78 strlcpy(info->serial, dev->serial, sizeof(info->serial));
79 strlcpy(info->bus_info, dev->bus_info, sizeof(info->bus_info));
Laurent Pinchart140d8812010-08-18 11:41:22 -030080
Hans Verkuil6c2c1882017-07-28 03:25:06 -040081 info->media_version = LINUX_VERSION_CODE;
82 info->driver_version = info->media_version;
Sakari Ailusbcd50812016-05-03 18:42:13 -030083 info->hw_revision = dev->hw_revision;
Laurent Pinchart140d8812010-08-18 11:41:22 -030084
Nicolas THERYb17d3942012-08-07 05:24:59 -030085 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030086}
87
Laurent Pinchart16513332009-12-09 08:40:01 -030088static struct media_entity *find_entity(struct media_device *mdev, u32 id)
89{
90 struct media_entity *entity;
91 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
92
93 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
94
Laurent Pinchart16513332009-12-09 08:40:01 -030095 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030096 if (((media_entity_id(entity) == id) && !next) ||
97 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030098 return entity;
99 }
100 }
101
Laurent Pinchart16513332009-12-09 08:40:01 -0300102 return NULL;
103}
104
Sami Tolvanendaa36372018-05-07 14:09:46 -0400105static long media_device_enum_entities(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300106{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400107 struct media_entity_desc *entd = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300108 struct media_entity *ent;
Laurent Pinchart16513332009-12-09 08:40:01 -0300109
Sakari Ailusbcd50812016-05-03 18:42:13 -0300110 ent = find_entity(mdev, entd->id);
Laurent Pinchart16513332009-12-09 08:40:01 -0300111 if (ent == NULL)
112 return -EINVAL;
113
Sakari Ailusbcd50812016-05-03 18:42:13 -0300114 memset(entd, 0, sizeof(*entd));
115
116 entd->id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300117 if (ent->name)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300118 strlcpy(entd->name, ent->name, sizeof(entd->name));
119 entd->type = ent->function;
120 entd->revision = 0; /* Unused */
121 entd->flags = ent->flags;
122 entd->group_id = 0; /* Unused */
123 entd->pads = ent->num_pads;
124 entd->links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300125
126 /*
127 * Workaround for a bug at media-ctl <= v1.10 that makes it to
128 * do the wrong thing if the entity function doesn't belong to
129 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
130 * Ranges.
131 *
132 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
133 * or, otherwise, will be silently ignored by media-ctl when
134 * printing the graphviz diagram. So, map them into the devnode
135 * old range.
136 */
137 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
Sakari Ailus98d85f32017-01-02 08:32:47 -0200138 ent->function > MEDIA_ENT_F_TUNER) {
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300139 if (is_media_entity_v4l2_subdev(ent))
Sakari Ailusbcd50812016-05-03 18:42:13 -0300140 entd->type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300141 else if (ent->function != MEDIA_ENT_F_IO_V4L)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300142 entd->type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300143 }
144
Sakari Ailusbcd50812016-05-03 18:42:13 -0300145 memcpy(&entd->raw, &ent->info, sizeof(ent->info));
146
Laurent Pinchart16513332009-12-09 08:40:01 -0300147 return 0;
148}
149
150static void media_device_kpad_to_upad(const struct media_pad *kpad,
151 struct media_pad_desc *upad)
152{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300153 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300154 upad->index = kpad->index;
155 upad->flags = kpad->flags;
156}
157
Sami Tolvanendaa36372018-05-07 14:09:46 -0400158static long media_device_enum_links(struct media_device *mdev, void *arg)
Laurent Pinchart16513332009-12-09 08:40:01 -0300159{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400160 struct media_links_enum *links = arg;
Laurent Pinchart16513332009-12-09 08:40:01 -0300161 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300162
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300163 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300164 if (entity == NULL)
165 return -EINVAL;
166
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300167 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300168 unsigned int p;
169
170 for (p = 0; p < entity->num_pads; p++) {
171 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300172
173 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300174 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300175 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300176 return -EFAULT;
177 }
178 }
179
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300180 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200181 struct media_link *link;
182 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300183
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200184 list_for_each_entry(link, &entity->links, list) {
185 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300186
187 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200188 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300189 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200190 memset(&klink_desc, 0, sizeof(klink_desc));
191 media_device_kpad_to_upad(link->source,
192 &klink_desc.source);
193 media_device_kpad_to_upad(link->sink,
194 &klink_desc.sink);
195 klink_desc.flags = link->flags;
196 if (copy_to_user(ulink_desc, &klink_desc,
197 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300198 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200199 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300200 }
201 }
Hans Verkuilfcab7572018-02-03 13:46:05 -0500202 memset(links->reserved, 0, sizeof(links->reserved));
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300203
204 return 0;
205}
206
Sami Tolvanendaa36372018-05-07 14:09:46 -0400207static long media_device_setup_link(struct media_device *mdev, void *arg)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300208{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400209 struct media_link_desc *linkd = arg;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300210 struct media_link *link = NULL;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300211 struct media_entity *source;
212 struct media_entity *sink;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300213
214 /* Find the source and sink entities and link.
215 */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300216 source = find_entity(mdev, linkd->source.entity);
217 sink = find_entity(mdev, linkd->sink.entity);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300218
219 if (source == NULL || sink == NULL)
220 return -EINVAL;
221
Sakari Ailusbcd50812016-05-03 18:42:13 -0300222 if (linkd->source.index >= source->num_pads ||
223 linkd->sink.index >= sink->num_pads)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300224 return -EINVAL;
225
Sakari Ailusbcd50812016-05-03 18:42:13 -0300226 link = media_entity_find_link(&source->pads[linkd->source.index],
227 &sink->pads[linkd->sink.index]);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300228 if (link == NULL)
229 return -EINVAL;
230
Hans Verkuilfcab7572018-02-03 13:46:05 -0500231 memset(linkd->reserved, 0, sizeof(linkd->reserved));
232
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300233 /* Setup the link on both entities. */
Sakari Ailusbcd50812016-05-03 18:42:13 -0300234 return __media_entity_setup_link(link, linkd->flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300235}
236
Sami Tolvanendaa36372018-05-07 14:09:46 -0400237static long media_device_get_topology(struct media_device *mdev, void *arg)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300238{
Sami Tolvanendaa36372018-05-07 14:09:46 -0400239 struct media_v2_topology *topo = arg;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300240 struct media_entity *entity;
241 struct media_interface *intf;
242 struct media_pad *pad;
243 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300244 struct media_v2_entity kentity, __user *uentity;
245 struct media_v2_interface kintf, __user *uintf;
246 struct media_v2_pad kpad, __user *upad;
247 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300248 unsigned int i;
249 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300250
251 topo->topology_version = mdev->topology_version;
252
253 /* Get entities and number of entities */
254 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200255 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300256 media_device_for_each_entity(entity, mdev) {
257 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200258 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300259 continue;
260
261 if (i > topo->num_entities) {
262 ret = -ENOSPC;
263 continue;
264 }
265
266 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200267 memset(&kentity, 0, sizeof(kentity));
268 kentity.id = entity->graph_obj.id;
269 kentity.function = entity->function;
Hans Verkuil588f4ee2018-02-28 05:41:11 -0500270 kentity.flags = entity->flags;
Xiongfeng Wang81b9de42018-01-08 07:40:59 -0500271 strlcpy(kentity.name, entity->name,
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200272 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300273
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200274 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300275 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200276 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300277 }
278 topo->num_entities = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500279 topo->reserved1 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300280
281 /* Get interfaces and number of interfaces */
282 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200283 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300284 media_device_for_each_intf(intf, mdev) {
285 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200286 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300287 continue;
288
289 if (i > topo->num_interfaces) {
290 ret = -ENOSPC;
291 continue;
292 }
293
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200294 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300295
296 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200297 kintf.id = intf->graph_obj.id;
298 kintf.intf_type = intf->type;
299 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300300
301 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
302 struct media_intf_devnode *devnode;
303
304 devnode = intf_to_devnode(intf);
305
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200306 kintf.devnode.major = devnode->major;
307 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300308 }
309
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200310 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300311 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200312 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300313 }
314 topo->num_interfaces = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500315 topo->reserved2 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300316
317 /* Get pads and number of pads */
318 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200319 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300320 media_device_for_each_pad(pad, mdev) {
321 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200322 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300323 continue;
324
325 if (i > topo->num_pads) {
326 ret = -ENOSPC;
327 continue;
328 }
329
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200330 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300331
332 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200333 kpad.id = pad->graph_obj.id;
334 kpad.entity_id = pad->entity->graph_obj.id;
335 kpad.flags = pad->flags;
Hans Verkuil30b914c2018-02-27 07:24:09 -0500336 kpad.index = pad->index;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300337
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200338 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300339 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200340 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300341 }
342 topo->num_pads = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500343 topo->reserved3 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300344
345 /* Get links and number of links */
346 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200347 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300348 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300349 if (link->is_backlink)
350 continue;
351
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300352 i++;
353
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200354 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300355 continue;
356
357 if (i > topo->num_links) {
358 ret = -ENOSPC;
359 continue;
360 }
361
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200362 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300363
364 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200365 klink.id = link->graph_obj.id;
366 klink.source_id = link->gobj0->id;
367 klink.sink_id = link->gobj1->id;
368 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300369
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200370 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300371 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200372 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300373 }
374 topo->num_links = i;
Hans Verkuilbaa9e912018-02-03 13:06:01 -0500375 topo->reserved4 = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300376
377 return ret;
378}
379
Sakari Ailusbcd50812016-05-03 18:42:13 -0300380static long copy_arg_from_user(void *karg, void __user *uarg, unsigned int cmd)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300381{
Sakari Ailusbcd50812016-05-03 18:42:13 -0300382 /* All media IOCTLs are _IOWR() */
383 if (copy_from_user(karg, uarg, _IOC_SIZE(cmd)))
Dan Carpentera5c82e52015-12-15 09:00:40 -0200384 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300385
Dan Carpentera5c82e52015-12-15 09:00:40 -0200386 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300387}
388
Sakari Ailusbcd50812016-05-03 18:42:13 -0300389static long copy_arg_to_user(void __user *uarg, void *karg, unsigned int cmd)
390{
391 /* All media IOCTLs are _IOWR() */
392 if (copy_to_user(uarg, karg, _IOC_SIZE(cmd)))
393 return -EFAULT;
394
395 return 0;
396}
397
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300398/* Do acquire the graph mutex */
399#define MEDIA_IOC_FL_GRAPH_MUTEX BIT(0)
400
401#define MEDIA_IOC_ARG(__cmd, func, fl, from_user, to_user) \
402 [_IOC_NR(MEDIA_IOC_##__cmd)] = { \
403 .cmd = MEDIA_IOC_##__cmd, \
Sakari Ailusbcd50812016-05-03 18:42:13 -0300404 .fn = (long (*)(struct media_device *, void *))func, \
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300405 .flags = fl, \
406 .arg_from_user = from_user, \
407 .arg_to_user = to_user, \
Sakari Ailus69752642016-05-03 18:35:12 -0300408 }
Sakari Ailuscf439d52016-04-27 09:39:17 -0300409
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300410#define MEDIA_IOC(__cmd, func, fl) \
411 MEDIA_IOC_ARG(__cmd, func, fl, copy_arg_from_user, copy_arg_to_user)
Sakari Ailusbcd50812016-05-03 18:42:13 -0300412
Sakari Ailuscf439d52016-04-27 09:39:17 -0300413/* the table is indexed by _IOC_NR(cmd) */
414struct media_ioctl_info {
415 unsigned int cmd;
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300416 unsigned short flags;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300417 long (*fn)(struct media_device *dev, void *arg);
418 long (*arg_from_user)(void *karg, void __user *uarg, unsigned int cmd);
419 long (*arg_to_user)(void __user *uarg, void *karg, unsigned int cmd);
Sakari Ailuscf439d52016-04-27 09:39:17 -0300420};
421
422static const struct media_ioctl_info ioctl_info[] = {
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300423 MEDIA_IOC(DEVICE_INFO, media_device_get_info, MEDIA_IOC_FL_GRAPH_MUTEX),
424 MEDIA_IOC(ENUM_ENTITIES, media_device_enum_entities, MEDIA_IOC_FL_GRAPH_MUTEX),
425 MEDIA_IOC(ENUM_LINKS, media_device_enum_links, MEDIA_IOC_FL_GRAPH_MUTEX),
426 MEDIA_IOC(SETUP_LINK, media_device_setup_link, MEDIA_IOC_FL_GRAPH_MUTEX),
427 MEDIA_IOC(G_TOPOLOGY, media_device_get_topology, MEDIA_IOC_FL_GRAPH_MUTEX),
Sakari Ailuscf439d52016-04-27 09:39:17 -0300428};
429
Laurent Pinchart140d8812010-08-18 11:41:22 -0300430static long media_device_ioctl(struct file *filp, unsigned int cmd,
Sakari Ailusbcd50812016-05-03 18:42:13 -0300431 unsigned long __arg)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300432{
433 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300434 struct media_device *dev = devnode->media_dev;
Sakari Ailus69752642016-05-03 18:35:12 -0300435 const struct media_ioctl_info *info;
Sakari Ailusbcd50812016-05-03 18:42:13 -0300436 void __user *arg = (void __user *)__arg;
437 char __karg[256], *karg = __karg;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300438 long ret;
439
Sakari Ailuscf439d52016-04-27 09:39:17 -0300440 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
441 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
442 return -ENOIOCTLCMD;
443
Sakari Ailus69752642016-05-03 18:35:12 -0300444 info = &ioctl_info[_IOC_NR(cmd)];
445
Sakari Ailusbcd50812016-05-03 18:42:13 -0300446 if (_IOC_SIZE(info->cmd) > sizeof(__karg)) {
447 karg = kmalloc(_IOC_SIZE(info->cmd), GFP_KERNEL);
448 if (!karg)
449 return -ENOMEM;
450 }
451
452 if (info->arg_from_user) {
453 ret = info->arg_from_user(karg, arg, cmd);
454 if (ret)
455 goto out_free;
456 }
457
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300458 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
459 mutex_lock(&dev->graph_mutex);
460
Sakari Ailusbcd50812016-05-03 18:42:13 -0300461 ret = info->fn(dev, karg);
Sakari Ailus7d4b6402016-04-27 10:15:52 -0300462
463 if (info->flags & MEDIA_IOC_FL_GRAPH_MUTEX)
464 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300465
Sakari Ailusbcd50812016-05-03 18:42:13 -0300466 if (!ret && info->arg_to_user)
467 ret = info->arg_to_user(arg, karg, cmd);
468
469out_free:
470 if (karg != __karg)
471 kfree(karg);
472
Laurent Pinchart140d8812010-08-18 11:41:22 -0300473 return ret;
474}
475
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300476#ifdef CONFIG_COMPAT
477
478struct media_links_enum32 {
479 __u32 entity;
480 compat_uptr_t pads; /* struct media_pad_desc * */
481 compat_uptr_t links; /* struct media_link_desc * */
482 __u32 reserved[4];
483};
484
485static long media_device_enum_links32(struct media_device *mdev,
486 struct media_links_enum32 __user *ulinks)
487{
488 struct media_links_enum links;
489 compat_uptr_t pads_ptr, links_ptr;
490
491 memset(&links, 0, sizeof(links));
492
493 if (get_user(links.entity, &ulinks->entity)
494 || get_user(pads_ptr, &ulinks->pads)
495 || get_user(links_ptr, &ulinks->links))
496 return -EFAULT;
497
498 links.pads = compat_ptr(pads_ptr);
499 links.links = compat_ptr(links_ptr);
500
Sakari Ailusbcd50812016-05-03 18:42:13 -0300501 return media_device_enum_links(mdev, &links);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300502}
503
504#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
505
506static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
507 unsigned long arg)
508{
509 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300510 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300511 long ret;
512
513 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300514 case MEDIA_IOC_ENUM_LINKS32:
515 mutex_lock(&dev->graph_mutex);
516 ret = media_device_enum_links32(dev,
517 (struct media_links_enum32 __user *)arg);
518 mutex_unlock(&dev->graph_mutex);
519 break;
520
521 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300522 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300523 }
524
525 return ret;
526}
527#endif /* CONFIG_COMPAT */
528
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300529static const struct media_file_operations media_device_fops = {
530 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300531 .open = media_device_open,
532 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300533#ifdef CONFIG_COMPAT
534 .compat_ioctl = media_device_compat_ioctl,
535#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300536 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300537};
538
539/* -----------------------------------------------------------------------------
540 * sysfs
541 */
542
543static ssize_t show_model(struct device *cd,
544 struct device_attribute *attr, char *buf)
545{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300546 struct media_devnode *devnode = to_media_devnode(cd);
547 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300548
549 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
550}
551
552static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
553
554/* -----------------------------------------------------------------------------
555 * Registration/unregistration
556 */
557
Sakari Ailus552636be2017-07-13 11:23:49 -0400558static void media_device_release(struct media_devnode *devnode)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300559{
Sakari Ailus552636be2017-07-13 11:23:49 -0400560 dev_dbg(devnode->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300561}
562
563/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200564 * media_device_register_entity - Register an entity with a media device
565 * @mdev: The media device
566 * @entity: The entity
567 */
568int __must_check media_device_register_entity(struct media_device *mdev,
569 struct media_entity *entity)
570{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200571 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200572 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200573 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200574
575 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
576 entity->function == MEDIA_ENT_F_UNKNOWN)
577 dev_warn(mdev->dev,
578 "Entity type for entity %s was not initialized!\n",
579 entity->name);
580
581 /* Warn if we apparently re-register an entity */
582 WARN_ON(entity->graph_obj.mdev != NULL);
583 entity->graph_obj.mdev = mdev;
584 INIT_LIST_HEAD(&entity->links);
585 entity->num_links = 0;
586 entity->num_backlinks = 0;
587
Matthew Wilcox5a2ab032018-06-18 08:35:52 -0400588 ret = ida_alloc_min(&mdev->entity_internal_idx, 1, GFP_KERNEL);
589 if (ret < 0)
590 return ret;
591 entity->internal_idx = ret;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200592
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300593 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200594 mdev->entity_internal_idx_max =
595 max(mdev->entity_internal_idx_max, entity->internal_idx);
596
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200597 /* Initialize media_gobj embedded at the entity */
598 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
599
600 /* Initialize objects at the pads */
601 for (i = 0; i < entity->num_pads; i++)
602 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
603 &entity->pads[i].graph_obj);
604
Shuah Khanafcbdb52016-02-11 21:41:21 -0200605 /* invoke entity_notify callbacks */
Sakari Ailus10e81bc2017-07-13 11:23:48 -0400606 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list)
607 notify->notify(entity, notify->notify_data);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200608
Sakari Ailus0c426c42016-02-21 13:25:08 -0300609 if (mdev->entity_internal_idx_max
610 >= mdev->pm_count_walk.ent_enum.idx_max) {
Sakari Ailus20b85222016-11-21 14:48:30 -0200611 struct media_graph new = { .top = 0 };
Sakari Ailus0c426c42016-02-21 13:25:08 -0300612
613 /*
614 * Initialise the new graph walk before cleaning up
615 * the old one in order not to spoil the graph walk
616 * object of the media device if graph walk init fails.
617 */
Sakari Ailus20b85222016-11-21 14:48:30 -0200618 ret = media_graph_walk_init(&new, mdev);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300619 if (ret) {
620 mutex_unlock(&mdev->graph_mutex);
621 return ret;
622 }
Sakari Ailus20b85222016-11-21 14:48:30 -0200623 media_graph_walk_cleanup(&mdev->pm_count_walk);
Sakari Ailus0c426c42016-02-21 13:25:08 -0300624 mdev->pm_count_walk = new;
625 }
626 mutex_unlock(&mdev->graph_mutex);
627
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200628 return 0;
629}
630EXPORT_SYMBOL_GPL(media_device_register_entity);
631
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200632static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200633{
634 struct media_device *mdev = entity->graph_obj.mdev;
635 struct media_link *link, *tmp;
636 struct media_interface *intf;
637 unsigned int i;
638
Matthew Wilcox5a2ab032018-06-18 08:35:52 -0400639 ida_free(&mdev->entity_internal_idx, entity->internal_idx);
Sakari Ailus665faa92015-12-16 11:32:17 -0200640
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200641 /* Remove all interface links pointing to this entity */
642 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
643 list_for_each_entry_safe(link, tmp, &intf->links, list) {
644 if (link->entity == entity)
645 __media_remove_intf_link(link);
646 }
647 }
648
649 /* Remove all data links that belong to this entity */
650 __media_entity_remove_links(entity);
651
652 /* Remove all pads that belong to this entity */
653 for (i = 0; i < entity->num_pads; i++)
654 media_gobj_destroy(&entity->pads[i].graph_obj);
655
656 /* Remove the entity */
657 media_gobj_destroy(&entity->graph_obj);
658
Shuah Khanafcbdb52016-02-11 21:41:21 -0200659 /* invoke entity_notify callbacks to handle entity removal?? */
660
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200661 entity->graph_obj.mdev = NULL;
662}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200663
664void media_device_unregister_entity(struct media_entity *entity)
665{
666 struct media_device *mdev = entity->graph_obj.mdev;
667
668 if (mdev == NULL)
669 return;
670
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300671 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200672 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300673 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200674}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200675EXPORT_SYMBOL_GPL(media_device_unregister_entity);
676
677/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200678 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300679 * @mdev: The media device
680 *
681 * The caller is responsible for initializing the media device before
682 * registration. The following fields must be set:
683 *
684 * - dev must point to the parent device
685 * - model must be filled with the device model name
686 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200687void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300688{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300689 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300690 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300691 INIT_LIST_HEAD(&mdev->pads);
692 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200693 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300694 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200695 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300696
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200697 dev_dbg(mdev->dev, "Media device initialized\n");
698}
699EXPORT_SYMBOL_GPL(media_device_init);
700
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200701void media_device_cleanup(struct media_device *mdev)
702{
Sakari Ailus665faa92015-12-16 11:32:17 -0200703 ida_destroy(&mdev->entity_internal_idx);
704 mdev->entity_internal_idx_max = 0;
Sakari Ailus20b85222016-11-21 14:48:30 -0200705 media_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200706 mutex_destroy(&mdev->graph_mutex);
707}
708EXPORT_SYMBOL_GPL(media_device_cleanup);
709
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200710int __must_check __media_device_register(struct media_device *mdev,
711 struct module *owner)
712{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300713 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200714 int ret;
715
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300716 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
717 if (!devnode)
718 return -ENOMEM;
719
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300720 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300721 mdev->devnode = devnode;
722 devnode->fops = &media_device_fops;
723 devnode->parent = mdev->dev;
724 devnode->release = media_device_release;
Javier Martinez Canillas8a9507962015-12-11 20:57:09 -0200725
726 /* Set version 0 to indicate user-space that the graph is static */
727 mdev->topology_version = 0;
728
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300729 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300730 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;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300733 return ret;
734 }
735
736 ret = device_create_file(&devnode->dev, &dev_attr_model);
737 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300738 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300739 mdev->devnode = NULL;
Shuah Khan6f0dd242016-06-10 14:37:23 -0300740 media_devnode_unregister_prepare(devnode);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300741 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300742 return ret;
743 }
744
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300745 dev_dbg(mdev->dev, "Media device registered\n");
746
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300747 return 0;
748}
Sakari Ailus85de7212013-12-12 12:38:17 -0300749EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300750
Shuah Khanafcbdb52016-02-11 21:41:21 -0200751int __must_check media_device_register_entity_notify(struct media_device *mdev,
752 struct media_entity_notify *nptr)
753{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300754 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200755 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300756 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200757 return 0;
758}
759EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
760
761/*
762 * Note: Should be called with mdev->lock held.
763 */
764static void __media_device_unregister_entity_notify(struct media_device *mdev,
765 struct media_entity_notify *nptr)
766{
767 list_del(&nptr->list);
768}
769
770void media_device_unregister_entity_notify(struct media_device *mdev,
771 struct media_entity_notify *nptr)
772{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300773 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200774 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300775 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200776}
777EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
778
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300779void media_device_unregister(struct media_device *mdev)
780{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300781 struct media_entity *entity;
782 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300783 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200784 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300785
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200786 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200787 return;
788
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300789 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200790
791 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300792 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300793 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200794 return;
795 }
796
Shuah Khan6f0dd242016-06-10 14:37:23 -0300797 /* Clear the devnode register bit to avoid races with media dev open */
798 media_devnode_unregister_prepare(mdev->devnode);
799
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300800 /* Remove all entities from the media device */
801 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200802 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300803
Shuah Khanafcbdb52016-02-11 21:41:21 -0200804 /* Remove all entity_notify callbacks from the media device */
805 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
806 __media_device_unregister_entity_notify(mdev, notify);
807
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300808 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300809 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
810 graph_obj.list) {
Max Kellermanne7cd17a2016-08-09 18:33:03 -0300811 /*
812 * Unlink the interface, but don't free it here; the
813 * module which created it is responsible for freeing
814 * it
815 */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300816 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200817 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300818 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200819
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300820 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300821
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300822 dev_dbg(mdev->dev, "Media device unregistered\n");
823
Shuah Khan6f0dd242016-06-10 14:37:23 -0300824 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
825 media_devnode_unregister(mdev->devnode);
826 /* devnode free is handled in media_devnode_*() */
827 mdev->devnode = NULL;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300828}
829EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300830
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300831#if IS_ENABLED(CONFIG_PCI)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300832void media_device_pci_init(struct media_device *mdev,
833 struct pci_dev *pci_dev,
834 const char *name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300835{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300836 mdev->dev = &pci_dev->dev;
837
838 if (name)
839 strlcpy(mdev->model, name, sizeof(mdev->model));
840 else
841 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
842
843 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
844
845 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
846 | pci_dev->subsystem_device;
847
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300848 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300849}
850EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300851#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300852
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300853#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300854void __media_device_usb_init(struct media_device *mdev,
855 struct usb_device *udev,
856 const char *board_name,
857 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300858{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300859 mdev->dev = &udev->dev;
860
861 if (driver_name)
862 strlcpy(mdev->driver_name, driver_name,
863 sizeof(mdev->driver_name));
864
865 if (board_name)
866 strlcpy(mdev->model, board_name, sizeof(mdev->model));
867 else if (udev->product)
868 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
869 else
870 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
871 if (udev->serial)
872 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
873 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
874 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300875
876 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300877}
878EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300879#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300880
881
Shuah Khane576d60b2015-06-05 17:11:54 -0300882#endif /* CONFIG_MEDIA_CONTROLLER */