blob: 33a99524216a2fe51249dde5baceb41152e1f40a [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,
62 struct media_device_info __user *__info)
63{
64 struct media_device_info info;
65
66 memset(&info, 0, sizeof(info));
67
Mauro Carvalho Chehabbb07bd62016-02-11 14:24:23 -020068 if (dev->driver_name[0])
69 strlcpy(info.driver, dev->driver_name, sizeof(info.driver));
70 else
71 strlcpy(info.driver, dev->dev->driver->name, sizeof(info.driver));
72
Laurent Pinchart140d8812010-08-18 11:41:22 -030073 strlcpy(info.model, dev->model, sizeof(info.model));
74 strlcpy(info.serial, dev->serial, sizeof(info.serial));
75 strlcpy(info.bus_info, dev->bus_info, sizeof(info.bus_info));
76
77 info.media_version = MEDIA_API_VERSION;
78 info.hw_revision = dev->hw_revision;
79 info.driver_version = dev->driver_version;
80
Nicolas THERYb17d3942012-08-07 05:24:59 -030081 if (copy_to_user(__info, &info, sizeof(*__info)))
82 return -EFAULT;
83 return 0;
Laurent Pinchart140d8812010-08-18 11:41:22 -030084}
85
Laurent Pinchart16513332009-12-09 08:40:01 -030086static struct media_entity *find_entity(struct media_device *mdev, u32 id)
87{
88 struct media_entity *entity;
89 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
90
91 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
92
Laurent Pinchart16513332009-12-09 08:40:01 -030093 media_device_for_each_entity(entity, mdev) {
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -030094 if (((media_entity_id(entity) == id) && !next) ||
95 ((media_entity_id(entity) > id) && next)) {
Laurent Pinchart16513332009-12-09 08:40:01 -030096 return entity;
97 }
98 }
99
Laurent Pinchart16513332009-12-09 08:40:01 -0300100 return NULL;
101}
102
103static long media_device_enum_entities(struct media_device *mdev,
104 struct media_entity_desc __user *uent)
105{
106 struct media_entity *ent;
107 struct media_entity_desc u_ent;
108
Salva Peiróe6a62342014-04-30 19:48:02 +0200109 memset(&u_ent, 0, sizeof(u_ent));
Laurent Pinchart16513332009-12-09 08:40:01 -0300110 if (copy_from_user(&u_ent.id, &uent->id, sizeof(u_ent.id)))
111 return -EFAULT;
112
113 ent = find_entity(mdev, u_ent.id);
114
115 if (ent == NULL)
116 return -EINVAL;
117
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300118 u_ent.id = media_entity_id(ent);
Laurent Pinchartde8eae32014-07-17 08:52:08 -0300119 if (ent->name)
120 strlcpy(u_ent.name, ent->name, sizeof(u_ent.name));
Mauro Carvalho Chehab0e576b72015-09-06 09:33:39 -0300121 u_ent.type = ent->function;
Mauro Carvalho Chehab8ed8c882015-12-11 08:02:19 -0200122 u_ent.revision = 0; /* Unused */
Laurent Pinchart16513332009-12-09 08:40:01 -0300123 u_ent.flags = ent->flags;
Mauro Carvalho Chehab8ed8c882015-12-11 08:02:19 -0200124 u_ent.group_id = 0; /* Unused */
Laurent Pinchart16513332009-12-09 08:40:01 -0300125 u_ent.pads = ent->num_pads;
126 u_ent.links = ent->num_links - ent->num_backlinks;
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300127
128 /*
129 * Workaround for a bug at media-ctl <= v1.10 that makes it to
130 * do the wrong thing if the entity function doesn't belong to
131 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
132 * Ranges.
133 *
134 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
135 * or, otherwise, will be silently ignored by media-ctl when
136 * printing the graphviz diagram. So, map them into the devnode
137 * old range.
138 */
139 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
140 ent->function > MEDIA_ENT_T_DEVNODE_UNKNOWN) {
141 if (is_media_entity_v4l2_subdev(ent))
142 u_ent.type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
143 else if (ent->function != MEDIA_ENT_F_IO_V4L)
144 u_ent.type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
145 }
146
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300147 memcpy(&u_ent.raw, &ent->info, sizeof(ent->info));
Laurent Pinchart16513332009-12-09 08:40:01 -0300148 if (copy_to_user(uent, &u_ent, sizeof(u_ent)))
149 return -EFAULT;
150 return 0;
151}
152
153static void media_device_kpad_to_upad(const struct media_pad *kpad,
154 struct media_pad_desc *upad)
155{
Mauro Carvalho Chehabfa762392015-08-14 10:42:05 -0300156 upad->entity = media_entity_id(kpad->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300157 upad->index = kpad->index;
158 upad->flags = kpad->flags;
159}
160
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300161static long __media_device_enum_links(struct media_device *mdev,
162 struct media_links_enum *links)
Laurent Pinchart16513332009-12-09 08:40:01 -0300163{
164 struct media_entity *entity;
Laurent Pinchart16513332009-12-09 08:40:01 -0300165
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300166 entity = find_entity(mdev, links->entity);
Laurent Pinchart16513332009-12-09 08:40:01 -0300167 if (entity == NULL)
168 return -EINVAL;
169
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300170 if (links->pads) {
Laurent Pinchart16513332009-12-09 08:40:01 -0300171 unsigned int p;
172
173 for (p = 0; p < entity->num_pads; p++) {
174 struct media_pad_desc pad;
Dan Carpenterc88e7392013-04-13 06:32:15 -0300175
176 memset(&pad, 0, sizeof(pad));
Laurent Pinchart16513332009-12-09 08:40:01 -0300177 media_device_kpad_to_upad(&entity->pads[p], &pad);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300178 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300179 return -EFAULT;
180 }
181 }
182
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300183 if (links->links) {
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200184 struct media_link *link;
185 struct media_link_desc __user *ulink_desc = links->links;
Laurent Pinchart16513332009-12-09 08:40:01 -0300186
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200187 list_for_each_entry(link, &entity->links, list) {
188 struct media_link_desc klink_desc;
Laurent Pinchart16513332009-12-09 08:40:01 -0300189
190 /* Ignore backlinks. */
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200191 if (link->source->entity != entity)
Laurent Pinchart16513332009-12-09 08:40:01 -0300192 continue;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200193 memset(&klink_desc, 0, sizeof(klink_desc));
194 media_device_kpad_to_upad(link->source,
195 &klink_desc.source);
196 media_device_kpad_to_upad(link->sink,
197 &klink_desc.sink);
198 klink_desc.flags = link->flags;
199 if (copy_to_user(ulink_desc, &klink_desc,
200 sizeof(*ulink_desc)))
Laurent Pinchart16513332009-12-09 08:40:01 -0300201 return -EFAULT;
Mauro Carvalho Chehabb83e2502015-12-11 07:25:01 -0200202 ulink_desc++;
Laurent Pinchart16513332009-12-09 08:40:01 -0300203 }
204 }
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300205
206 return 0;
207}
208
209static long media_device_enum_links(struct media_device *mdev,
210 struct media_links_enum __user *ulinks)
211{
212 struct media_links_enum links;
213 int rval;
214
215 if (copy_from_user(&links, ulinks, sizeof(links)))
216 return -EFAULT;
217
218 rval = __media_device_enum_links(mdev, &links);
219 if (rval < 0)
220 return rval;
221
Laurent Pinchart16513332009-12-09 08:40:01 -0300222 if (copy_to_user(ulinks, &links, sizeof(*ulinks)))
223 return -EFAULT;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300224
Laurent Pinchart16513332009-12-09 08:40:01 -0300225 return 0;
226}
227
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300228static long media_device_setup_link(struct media_device *mdev,
229 struct media_link_desc __user *_ulink)
230{
231 struct media_link *link = NULL;
232 struct media_link_desc ulink;
233 struct media_entity *source;
234 struct media_entity *sink;
235 int ret;
236
237 if (copy_from_user(&ulink, _ulink, sizeof(ulink)))
238 return -EFAULT;
239
240 /* Find the source and sink entities and link.
241 */
242 source = find_entity(mdev, ulink.source.entity);
243 sink = find_entity(mdev, ulink.sink.entity);
244
245 if (source == NULL || sink == NULL)
246 return -EINVAL;
247
248 if (ulink.source.index >= source->num_pads ||
249 ulink.sink.index >= sink->num_pads)
250 return -EINVAL;
251
252 link = media_entity_find_link(&source->pads[ulink.source.index],
253 &sink->pads[ulink.sink.index]);
254 if (link == NULL)
255 return -EINVAL;
256
257 /* Setup the link on both entities. */
258 ret = __media_entity_setup_link(link, ulink.flags);
259
260 if (copy_to_user(_ulink, &ulink, sizeof(ulink)))
261 return -EFAULT;
262
263 return ret;
264}
265
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300266static long __media_device_get_topology(struct media_device *mdev,
267 struct media_v2_topology *topo)
268{
269 struct media_entity *entity;
270 struct media_interface *intf;
271 struct media_pad *pad;
272 struct media_link *link;
Sakari Ailusd37410c2016-02-22 17:47:03 -0300273 struct media_v2_entity kentity, __user *uentity;
274 struct media_v2_interface kintf, __user *uintf;
275 struct media_v2_pad kpad, __user *upad;
276 struct media_v2_link klink, __user *ulink;
Mauro Carvalho Chehab9033b1a2015-09-09 08:23:51 -0300277 unsigned int i;
278 int ret = 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300279
280 topo->topology_version = mdev->topology_version;
281
282 /* Get entities and number of entities */
283 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200284 uentity = media_get_uptr(topo->ptr_entities);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300285 media_device_for_each_entity(entity, mdev) {
286 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200287 if (ret || !uentity)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300288 continue;
289
290 if (i > topo->num_entities) {
291 ret = -ENOSPC;
292 continue;
293 }
294
295 /* Copy fields to userspace struct if not error */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200296 memset(&kentity, 0, sizeof(kentity));
297 kentity.id = entity->graph_obj.id;
298 kentity.function = entity->function;
299 strncpy(kentity.name, entity->name,
300 sizeof(kentity.name));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300301
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200302 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300303 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200304 uentity++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300305 }
306 topo->num_entities = i;
307
308 /* Get interfaces and number of interfaces */
309 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200310 uintf = media_get_uptr(topo->ptr_interfaces);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300311 media_device_for_each_intf(intf, mdev) {
312 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200313 if (ret || !uintf)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300314 continue;
315
316 if (i > topo->num_interfaces) {
317 ret = -ENOSPC;
318 continue;
319 }
320
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200321 memset(&kintf, 0, sizeof(kintf));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300322
323 /* Copy intf fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200324 kintf.id = intf->graph_obj.id;
325 kintf.intf_type = intf->type;
326 kintf.flags = intf->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300327
328 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
329 struct media_intf_devnode *devnode;
330
331 devnode = intf_to_devnode(intf);
332
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200333 kintf.devnode.major = devnode->major;
334 kintf.devnode.minor = devnode->minor;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300335 }
336
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200337 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300338 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200339 uintf++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300340 }
341 topo->num_interfaces = i;
342
343 /* Get pads and number of pads */
344 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200345 upad = media_get_uptr(topo->ptr_pads);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300346 media_device_for_each_pad(pad, mdev) {
347 i++;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200348 if (ret || !upad)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300349 continue;
350
351 if (i > topo->num_pads) {
352 ret = -ENOSPC;
353 continue;
354 }
355
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200356 memset(&kpad, 0, sizeof(kpad));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300357
358 /* Copy pad fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200359 kpad.id = pad->graph_obj.id;
360 kpad.entity_id = pad->entity->graph_obj.id;
361 kpad.flags = pad->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300362
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200363 if (copy_to_user(upad, &kpad, sizeof(kpad)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300364 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200365 upad++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300366 }
367 topo->num_pads = i;
368
369 /* Get links and number of links */
370 i = 0;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200371 ulink = media_get_uptr(topo->ptr_links);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300372 media_device_for_each_link(link, mdev) {
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300373 if (link->is_backlink)
374 continue;
375
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300376 i++;
377
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200378 if (ret || !ulink)
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300379 continue;
380
381 if (i > topo->num_links) {
382 ret = -ENOSPC;
383 continue;
384 }
385
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200386 memset(&klink, 0, sizeof(klink));
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300387
388 /* Copy link fields to userspace struct */
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200389 klink.id = link->graph_obj.id;
390 klink.source_id = link->gobj0->id;
391 klink.sink_id = link->gobj1->id;
392 klink.flags = link->flags;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300393
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200394 if (copy_to_user(ulink, &klink, sizeof(klink)))
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300395 ret = -EFAULT;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200396 ulink++;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300397 }
398 topo->num_links = i;
399
400 return ret;
401}
402
403static long media_device_get_topology(struct media_device *mdev,
404 struct media_v2_topology __user *utopo)
405{
406 struct media_v2_topology ktopo;
407 int ret;
408
Dan Carpentera5c82e52015-12-15 09:00:40 -0200409 if (copy_from_user(&ktopo, utopo, sizeof(ktopo)))
410 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300411
412 ret = __media_device_get_topology(mdev, &ktopo);
413 if (ret < 0)
414 return ret;
415
Dan Carpentera5c82e52015-12-15 09:00:40 -0200416 if (copy_to_user(utopo, &ktopo, sizeof(*utopo)))
417 return -EFAULT;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300418
Dan Carpentera5c82e52015-12-15 09:00:40 -0200419 return 0;
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300420}
421
Laurent Pinchart140d8812010-08-18 11:41:22 -0300422static long media_device_ioctl(struct file *filp, unsigned int cmd,
423 unsigned long arg)
424{
425 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300426 struct media_device *dev = devnode->media_dev;
Laurent Pinchart140d8812010-08-18 11:41:22 -0300427 long ret;
428
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300429 mutex_lock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300430 switch (cmd) {
431 case MEDIA_IOC_DEVICE_INFO:
432 ret = media_device_get_info(dev,
433 (struct media_device_info __user *)arg);
434 break;
435
Laurent Pinchart16513332009-12-09 08:40:01 -0300436 case MEDIA_IOC_ENUM_ENTITIES:
437 ret = media_device_enum_entities(dev,
438 (struct media_entity_desc __user *)arg);
439 break;
440
441 case MEDIA_IOC_ENUM_LINKS:
Laurent Pinchart16513332009-12-09 08:40:01 -0300442 ret = media_device_enum_links(dev,
443 (struct media_links_enum __user *)arg);
Laurent Pinchart16513332009-12-09 08:40:01 -0300444 break;
445
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300446 case MEDIA_IOC_SETUP_LINK:
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300447 ret = media_device_setup_link(dev,
448 (struct media_link_desc __user *)arg);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300449 break;
450
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300451 case MEDIA_IOC_G_TOPOLOGY:
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300452 ret = media_device_get_topology(dev,
453 (struct media_v2_topology __user *)arg);
Mauro Carvalho Chehab8309f472015-08-23 10:36:41 -0300454 break;
Mauro Carvalho Chehab333a6512016-01-25 07:29:13 -0200455
Laurent Pinchart140d8812010-08-18 11:41:22 -0300456 default:
457 ret = -ENOIOCTLCMD;
458 }
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300459 mutex_unlock(&dev->graph_mutex);
Laurent Pinchart140d8812010-08-18 11:41:22 -0300460
461 return ret;
462}
463
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300464#ifdef CONFIG_COMPAT
465
466struct media_links_enum32 {
467 __u32 entity;
468 compat_uptr_t pads; /* struct media_pad_desc * */
469 compat_uptr_t links; /* struct media_link_desc * */
470 __u32 reserved[4];
471};
472
473static long media_device_enum_links32(struct media_device *mdev,
474 struct media_links_enum32 __user *ulinks)
475{
476 struct media_links_enum links;
477 compat_uptr_t pads_ptr, links_ptr;
478
479 memset(&links, 0, sizeof(links));
480
481 if (get_user(links.entity, &ulinks->entity)
482 || get_user(pads_ptr, &ulinks->pads)
483 || get_user(links_ptr, &ulinks->links))
484 return -EFAULT;
485
486 links.pads = compat_ptr(pads_ptr);
487 links.links = compat_ptr(links_ptr);
488
489 return __media_device_enum_links(mdev, &links);
490}
491
492#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
493
494static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
495 unsigned long arg)
496{
497 struct media_devnode *devnode = media_devnode_data(filp);
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300498 struct media_device *dev = devnode->media_dev;
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300499 long ret;
500
501 switch (cmd) {
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300502 case MEDIA_IOC_ENUM_LINKS32:
503 mutex_lock(&dev->graph_mutex);
504 ret = media_device_enum_links32(dev,
505 (struct media_links_enum32 __user *)arg);
506 mutex_unlock(&dev->graph_mutex);
507 break;
508
509 default:
Mauro Carvalho Chehabf7369622016-03-21 09:19:31 -0300510 return media_device_ioctl(filp, cmd, arg);
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300511 }
512
513 return ret;
514}
515#endif /* CONFIG_COMPAT */
516
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300517static const struct media_file_operations media_device_fops = {
518 .owner = THIS_MODULE,
Laurent Pinchart140d8812010-08-18 11:41:22 -0300519 .open = media_device_open,
520 .ioctl = media_device_ioctl,
Sakari Ailusb0a1f2a2013-01-22 12:27:56 -0300521#ifdef CONFIG_COMPAT
522 .compat_ioctl = media_device_compat_ioctl,
523#endif /* CONFIG_COMPAT */
Laurent Pinchart140d8812010-08-18 11:41:22 -0300524 .release = media_device_close,
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300525};
526
527/* -----------------------------------------------------------------------------
528 * sysfs
529 */
530
531static ssize_t show_model(struct device *cd,
532 struct device_attribute *attr, char *buf)
533{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300534 struct media_devnode *devnode = to_media_devnode(cd);
535 struct media_device *mdev = devnode->media_dev;
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300536
537 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
538}
539
540static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
541
542/* -----------------------------------------------------------------------------
543 * Registration/unregistration
544 */
545
546static void media_device_release(struct media_devnode *mdev)
547{
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300548 dev_dbg(mdev->parent, "Media device released\n");
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300549}
550
551/**
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200552 * media_device_register_entity - Register an entity with a media device
553 * @mdev: The media device
554 * @entity: The entity
555 */
556int __must_check media_device_register_entity(struct media_device *mdev,
557 struct media_entity *entity)
558{
Shuah Khanafcbdb52016-02-11 21:41:21 -0200559 struct media_entity_notify *notify, *next;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200560 unsigned int i;
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200561 int ret;
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200562
563 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
564 entity->function == MEDIA_ENT_F_UNKNOWN)
565 dev_warn(mdev->dev,
566 "Entity type for entity %s was not initialized!\n",
567 entity->name);
568
569 /* Warn if we apparently re-register an entity */
570 WARN_ON(entity->graph_obj.mdev != NULL);
571 entity->graph_obj.mdev = mdev;
572 INIT_LIST_HEAD(&entity->links);
573 entity->num_links = 0;
574 entity->num_backlinks = 0;
575
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200576 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
577 return -ENOMEM;
578
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300579 mutex_lock(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200580
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200581 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
582 &entity->internal_idx);
583 if (ret < 0) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300584 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehabba0dd722015-12-16 15:33:54 -0200585 return ret;
Sakari Ailus665faa92015-12-16 11:32:17 -0200586 }
587
588 mdev->entity_internal_idx_max =
589 max(mdev->entity_internal_idx_max, entity->internal_idx);
590
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200591 /* Initialize media_gobj embedded at the entity */
592 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
593
594 /* Initialize objects at the pads */
595 for (i = 0; i < entity->num_pads; i++)
596 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
597 &entity->pads[i].graph_obj);
598
Shuah Khanafcbdb52016-02-11 21:41:21 -0200599 /* invoke entity_notify callbacks */
600 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list) {
601 (notify)->notify(entity, notify->notify_data);
602 }
603
Sakari Ailus0c426c42016-02-21 13:25:08 -0300604 if (mdev->entity_internal_idx_max
605 >= mdev->pm_count_walk.ent_enum.idx_max) {
606 struct media_entity_graph new = { .top = 0 };
607
608 /*
609 * Initialise the new graph walk before cleaning up
610 * the old one in order not to spoil the graph walk
611 * object of the media device if graph walk init fails.
612 */
613 ret = media_entity_graph_walk_init(&new, mdev);
614 if (ret) {
615 mutex_unlock(&mdev->graph_mutex);
616 return ret;
617 }
618 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
619 mdev->pm_count_walk = new;
620 }
621 mutex_unlock(&mdev->graph_mutex);
622
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200623 return 0;
624}
625EXPORT_SYMBOL_GPL(media_device_register_entity);
626
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200627static void __media_device_unregister_entity(struct media_entity *entity)
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200628{
629 struct media_device *mdev = entity->graph_obj.mdev;
630 struct media_link *link, *tmp;
631 struct media_interface *intf;
632 unsigned int i;
633
Sakari Ailus665faa92015-12-16 11:32:17 -0200634 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
635
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200636 /* Remove all interface links pointing to this entity */
637 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
638 list_for_each_entry_safe(link, tmp, &intf->links, list) {
639 if (link->entity == entity)
640 __media_remove_intf_link(link);
641 }
642 }
643
644 /* Remove all data links that belong to this entity */
645 __media_entity_remove_links(entity);
646
647 /* Remove all pads that belong to this entity */
648 for (i = 0; i < entity->num_pads; i++)
649 media_gobj_destroy(&entity->pads[i].graph_obj);
650
651 /* Remove the entity */
652 media_gobj_destroy(&entity->graph_obj);
653
Shuah Khanafcbdb52016-02-11 21:41:21 -0200654 /* invoke entity_notify callbacks to handle entity removal?? */
655
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200656 entity->graph_obj.mdev = NULL;
657}
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200658
659void media_device_unregister_entity(struct media_entity *entity)
660{
661 struct media_device *mdev = entity->graph_obj.mdev;
662
663 if (mdev == NULL)
664 return;
665
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300666 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200667 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300668 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200669}
Mauro Carvalho Chehabb2ed8af2015-12-15 08:26:52 -0200670EXPORT_SYMBOL_GPL(media_device_unregister_entity);
671
672/**
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200673 * media_device_init() - initialize a media device
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300674 * @mdev: The media device
675 *
676 * The caller is responsible for initializing the media device before
677 * registration. The following fields must be set:
678 *
679 * - dev must point to the parent device
680 * - model must be filled with the device model name
681 */
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200682void media_device_init(struct media_device *mdev)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300683{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300684 INIT_LIST_HEAD(&mdev->entities);
Mauro Carvalho Chehab57cf79b2015-08-21 09:23:22 -0300685 INIT_LIST_HEAD(&mdev->interfaces);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300686 INIT_LIST_HEAD(&mdev->pads);
687 INIT_LIST_HEAD(&mdev->links);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200688 INIT_LIST_HEAD(&mdev->entity_notify);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300689 mutex_init(&mdev->graph_mutex);
Sakari Ailus665faa92015-12-16 11:32:17 -0200690 ida_init(&mdev->entity_internal_idx);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300691
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200692 dev_dbg(mdev->dev, "Media device initialized\n");
693}
694EXPORT_SYMBOL_GPL(media_device_init);
695
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200696void media_device_cleanup(struct media_device *mdev)
697{
Sakari Ailus665faa92015-12-16 11:32:17 -0200698 ida_destroy(&mdev->entity_internal_idx);
699 mdev->entity_internal_idx_max = 0;
Sakari Ailus0c426c42016-02-21 13:25:08 -0300700 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200701 mutex_destroy(&mdev->graph_mutex);
702}
703EXPORT_SYMBOL_GPL(media_device_cleanup);
704
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200705int __must_check __media_device_register(struct media_device *mdev,
706 struct module *owner)
707{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300708 struct media_devnode *devnode;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -0200709 int ret;
710
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300711 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
712 if (!devnode)
713 return -ENOMEM;
714
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300715 /* Register the device node. */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300716 mdev->devnode = devnode;
717 devnode->fops = &media_device_fops;
718 devnode->parent = mdev->dev;
719 devnode->release = media_device_release;
Javier Martinez Canillas8a950792015-12-11 20:57:09 -0200720
721 /* Set version 0 to indicate user-space that the graph is static */
722 mdev->topology_version = 0;
723
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300724 ret = media_devnode_register(mdev, devnode, owner);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300725 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300726 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300727 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300728 return ret;
729 }
730
731 ret = device_create_file(&devnode->dev, &dev_attr_model);
732 if (ret < 0) {
Shuah Khan5b28dde2016-05-04 16:48:28 -0300733 /* devnode free is handled in media_devnode_*() */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300734 mdev->devnode = NULL;
735 media_devnode_unregister(devnode);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300736 return ret;
737 }
738
Mauro Carvalho Chehab8f5a3182015-08-13 15:22:24 -0300739 dev_dbg(mdev->dev, "Media device registered\n");
740
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300741 return 0;
742}
Sakari Ailus85de7212013-12-12 12:38:17 -0300743EXPORT_SYMBOL_GPL(__media_device_register);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300744
Shuah Khanafcbdb52016-02-11 21:41:21 -0200745int __must_check media_device_register_entity_notify(struct media_device *mdev,
746 struct media_entity_notify *nptr)
747{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300748 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200749 list_add_tail(&nptr->list, &mdev->entity_notify);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300750 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200751 return 0;
752}
753EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
754
755/*
756 * Note: Should be called with mdev->lock held.
757 */
758static void __media_device_unregister_entity_notify(struct media_device *mdev,
759 struct media_entity_notify *nptr)
760{
761 list_del(&nptr->list);
762}
763
764void media_device_unregister_entity_notify(struct media_device *mdev,
765 struct media_entity_notify *nptr)
766{
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300767 mutex_lock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200768 __media_device_unregister_entity_notify(mdev, nptr);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300769 mutex_unlock(&mdev->graph_mutex);
Shuah Khanafcbdb52016-02-11 21:41:21 -0200770}
771EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
772
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300773void media_device_unregister(struct media_device *mdev)
774{
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300775 struct media_entity *entity;
776 struct media_entity *next;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300777 struct media_interface *intf, *tmp_intf;
Shuah Khanafcbdb52016-02-11 21:41:21 -0200778 struct media_entity_notify *notify, *nextp;
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300779
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200780 if (mdev == NULL)
Javier Martinez Canillas223d19c2015-12-11 20:57:07 -0200781 return;
782
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300783 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200784
785 /* Check if mdev was ever registered at all */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300786 if (!media_devnode_is_registered(mdev->devnode)) {
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300787 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200788 return;
789 }
790
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300791 /* Remove all entities from the media device */
792 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200793 __media_device_unregister_entity(entity);
Mauro Carvalho Chehabf50d5162015-09-04 15:10:29 -0300794
Shuah Khanafcbdb52016-02-11 21:41:21 -0200795 /* Remove all entity_notify callbacks from the media device */
796 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
797 __media_device_unregister_entity_notify(mdev, notify);
798
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300799 /* Remove all interfaces from the media device */
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300800 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
801 graph_obj.list) {
802 __media_remove_intf_links(intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200803 media_gobj_destroy(&intf->graph_obj);
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300804 kfree(intf);
805 }
Mauro Carvalho Chehab821ed362015-12-15 08:36:51 -0200806
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300807 mutex_unlock(&mdev->graph_mutex);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300808
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300809 dev_dbg(mdev->dev, "Media device unregistered\n");
810
811 /* Check if mdev devnode was registered */
812 if (media_devnode_is_registered(mdev->devnode)) {
813 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
814 media_devnode_unregister(mdev->devnode);
Shuah Khan5b28dde2016-05-04 16:48:28 -0300815 /* devnode free is handled in media_devnode_*() */
816 mdev->devnode = NULL;
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300817 }
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300818}
819EXPORT_SYMBOL_GPL(media_device_unregister);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300820
Shuah Khand062f912015-06-03 12:12:53 -0300821static void media_device_release_devres(struct device *dev, void *res)
822{
823}
824
Shuah Khand062f912015-06-03 12:12:53 -0300825struct media_device *media_device_get_devres(struct device *dev)
826{
827 struct media_device *mdev;
828
829 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
830 if (mdev)
831 return mdev;
832
833 mdev = devres_alloc(media_device_release_devres,
834 sizeof(struct media_device), GFP_KERNEL);
835 if (!mdev)
836 return NULL;
837 return devres_get(dev, mdev, NULL, NULL);
838}
839EXPORT_SYMBOL_GPL(media_device_get_devres);
840
Shuah Khand062f912015-06-03 12:12:53 -0300841struct media_device *media_device_find_devres(struct device *dev)
842{
843 return devres_find(dev, media_device_release_devres, NULL, NULL);
844}
845EXPORT_SYMBOL_GPL(media_device_find_devres);
Shuah Khane576d602015-06-05 17:11:54 -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)
855 strlcpy(mdev->model, name, sizeof(mdev->model));
856 else
857 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
858
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
864 mdev->driver_version = LINUX_VERSION_CODE;
865
866 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300867}
868EXPORT_SYMBOL_GPL(media_device_pci_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300869#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300870
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300871#if IS_ENABLED(CONFIG_USB)
Mauro Carvalho Chehab6cf5dad2016-02-22 12:10:49 -0300872void __media_device_usb_init(struct media_device *mdev,
873 struct usb_device *udev,
874 const char *board_name,
875 const char *driver_name)
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300876{
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300877 mdev->dev = &udev->dev;
878
879 if (driver_name)
880 strlcpy(mdev->driver_name, driver_name,
881 sizeof(mdev->driver_name));
882
883 if (board_name)
884 strlcpy(mdev->model, board_name, sizeof(mdev->model));
885 else if (udev->product)
886 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
887 else
888 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
889 if (udev->serial)
890 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
891 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
892 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
893 mdev->driver_version = LINUX_VERSION_CODE;
894
895 media_device_init(mdev);
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300896}
897EXPORT_SYMBOL_GPL(__media_device_usb_init);
Mauro Carvalho Chehabb34ecd52016-05-05 08:01:34 -0300898#endif
Mauro Carvalho Chehab41b44e32016-02-22 11:42:04 -0300899
900
Shuah Khane576d602015-06-05 17:11:54 -0300901#endif /* CONFIG_MEDIA_CONTROLLER */