[media] v4l: soc-camera: switch to .unlocked_ioctl
[deliverable/linux.git] / drivers / media / video / soc_camera.c
1 /*
2 * camera image capture (abstract) bus driver
3 *
4 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
5 *
6 * This driver provides an interface between platform-specific camera
7 * busses and camera devices. It should be used if the camera is
8 * connected not over a "proper" bus like PCI or USB, but over a
9 * special bus, like, for example, the Quick Capture interface on PXA270
10 * SoCs. Later it should also be used for i.MX31 SoCs from Freescale.
11 * It can handle multiple cameras and / or multiple busses, which can
12 * be used, e.g., in stereo-vision applications.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19 #include <linux/device.h>
20 #include <linux/err.h>
21 #include <linux/i2c.h>
22 #include <linux/init.h>
23 #include <linux/list.h>
24 #include <linux/mutex.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/vmalloc.h>
30
31 #include <media/soc_camera.h>
32 #include <media/v4l2-common.h>
33 #include <media/v4l2-ioctl.h>
34 #include <media/v4l2-dev.h>
35 #include <media/videobuf-core.h>
36 #include <media/soc_mediabus.h>
37
38 /* Default to VGA resolution */
39 #define DEFAULT_WIDTH 640
40 #define DEFAULT_HEIGHT 480
41
42 static LIST_HEAD(hosts);
43 static LIST_HEAD(devices);
44 static DEFINE_MUTEX(list_lock); /* Protects the list of hosts */
45
46 const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc(
47 struct soc_camera_device *icd, unsigned int fourcc)
48 {
49 unsigned int i;
50
51 for (i = 0; i < icd->num_user_formats; i++)
52 if (icd->user_formats[i].host_fmt->fourcc == fourcc)
53 return icd->user_formats + i;
54 return NULL;
55 }
56 EXPORT_SYMBOL(soc_camera_xlate_by_fourcc);
57
58 /**
59 * soc_camera_apply_sensor_flags() - apply platform SOCAM_SENSOR_INVERT_* flags
60 * @icl: camera platform parameters
61 * @flags: flags to be inverted according to platform configuration
62 * @return: resulting flags
63 */
64 unsigned long soc_camera_apply_sensor_flags(struct soc_camera_link *icl,
65 unsigned long flags)
66 {
67 unsigned long f;
68
69 /* If only one of the two polarities is supported, switch to the opposite */
70 if (icl->flags & SOCAM_SENSOR_INVERT_HSYNC) {
71 f = flags & (SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW);
72 if (f == SOCAM_HSYNC_ACTIVE_HIGH || f == SOCAM_HSYNC_ACTIVE_LOW)
73 flags ^= SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW;
74 }
75
76 if (icl->flags & SOCAM_SENSOR_INVERT_VSYNC) {
77 f = flags & (SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW);
78 if (f == SOCAM_VSYNC_ACTIVE_HIGH || f == SOCAM_VSYNC_ACTIVE_LOW)
79 flags ^= SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW;
80 }
81
82 if (icl->flags & SOCAM_SENSOR_INVERT_PCLK) {
83 f = flags & (SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING);
84 if (f == SOCAM_PCLK_SAMPLE_RISING || f == SOCAM_PCLK_SAMPLE_FALLING)
85 flags ^= SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING;
86 }
87
88 return flags;
89 }
90 EXPORT_SYMBOL(soc_camera_apply_sensor_flags);
91
92 static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
93 struct v4l2_format *f)
94 {
95 struct soc_camera_device *icd = file->private_data;
96 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
97
98 WARN_ON(priv != file->private_data);
99
100 /* limit format to hardware capabilities */
101 return ici->ops->try_fmt(icd, f);
102 }
103
104 static int soc_camera_enum_input(struct file *file, void *priv,
105 struct v4l2_input *inp)
106 {
107 struct soc_camera_device *icd = file->private_data;
108 int ret = 0;
109
110 if (inp->index != 0)
111 return -EINVAL;
112
113 if (icd->ops->enum_input)
114 ret = icd->ops->enum_input(icd, inp);
115 else {
116 /* default is camera */
117 inp->type = V4L2_INPUT_TYPE_CAMERA;
118 inp->std = V4L2_STD_UNKNOWN;
119 strcpy(inp->name, "Camera");
120 }
121
122 return ret;
123 }
124
125 static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i)
126 {
127 *i = 0;
128
129 return 0;
130 }
131
132 static int soc_camera_s_input(struct file *file, void *priv, unsigned int i)
133 {
134 if (i > 0)
135 return -EINVAL;
136
137 return 0;
138 }
139
140 static int soc_camera_s_std(struct file *file, void *priv, v4l2_std_id *a)
141 {
142 struct soc_camera_device *icd = file->private_data;
143 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
144
145 return v4l2_subdev_call(sd, core, s_std, *a);
146 }
147
148 static int soc_camera_reqbufs(struct file *file, void *priv,
149 struct v4l2_requestbuffers *p)
150 {
151 int ret;
152 struct soc_camera_device *icd = file->private_data;
153 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
154
155 WARN_ON(priv != file->private_data);
156
157 if (icd->streamer && icd->streamer != file)
158 return -EBUSY;
159
160 ret = videobuf_reqbufs(&icd->vb_vidq, p);
161 if (ret < 0)
162 return ret;
163
164 ret = ici->ops->reqbufs(icd, p);
165 if (!ret && !icd->streamer)
166 icd->streamer = file;
167
168 return ret;
169 }
170
171 static int soc_camera_querybuf(struct file *file, void *priv,
172 struct v4l2_buffer *p)
173 {
174 struct soc_camera_device *icd = file->private_data;
175
176 WARN_ON(priv != file->private_data);
177
178 return videobuf_querybuf(&icd->vb_vidq, p);
179 }
180
181 static int soc_camera_qbuf(struct file *file, void *priv,
182 struct v4l2_buffer *p)
183 {
184 struct soc_camera_device *icd = file->private_data;
185
186 WARN_ON(priv != file->private_data);
187
188 if (icd->streamer != file)
189 return -EBUSY;
190
191 return videobuf_qbuf(&icd->vb_vidq, p);
192 }
193
194 static int soc_camera_dqbuf(struct file *file, void *priv,
195 struct v4l2_buffer *p)
196 {
197 struct soc_camera_device *icd = file->private_data;
198
199 WARN_ON(priv != file->private_data);
200
201 if (icd->streamer != file)
202 return -EBUSY;
203
204 return videobuf_dqbuf(&icd->vb_vidq, p, file->f_flags & O_NONBLOCK);
205 }
206
207 /* Always entered with .video_lock held */
208 static int soc_camera_init_user_formats(struct soc_camera_device *icd)
209 {
210 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
211 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
212 unsigned int i, fmts = 0, raw_fmts = 0;
213 int ret;
214 enum v4l2_mbus_pixelcode code;
215
216 while (!v4l2_subdev_call(sd, video, enum_mbus_fmt, raw_fmts, &code))
217 raw_fmts++;
218
219 if (!ici->ops->get_formats)
220 /*
221 * Fallback mode - the host will have to serve all
222 * sensor-provided formats one-to-one to the user
223 */
224 fmts = raw_fmts;
225 else
226 /*
227 * First pass - only count formats this host-sensor
228 * configuration can provide
229 */
230 for (i = 0; i < raw_fmts; i++) {
231 ret = ici->ops->get_formats(icd, i, NULL);
232 if (ret < 0)
233 return ret;
234 fmts += ret;
235 }
236
237 if (!fmts)
238 return -ENXIO;
239
240 icd->user_formats =
241 vmalloc(fmts * sizeof(struct soc_camera_format_xlate));
242 if (!icd->user_formats)
243 return -ENOMEM;
244
245 icd->num_user_formats = fmts;
246
247 dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts);
248
249 /* Second pass - actually fill data formats */
250 fmts = 0;
251 for (i = 0; i < raw_fmts; i++)
252 if (!ici->ops->get_formats) {
253 v4l2_subdev_call(sd, video, enum_mbus_fmt, i, &code);
254 icd->user_formats[i].host_fmt =
255 soc_mbus_get_fmtdesc(code);
256 icd->user_formats[i].code = code;
257 } else {
258 ret = ici->ops->get_formats(icd, i,
259 &icd->user_formats[fmts]);
260 if (ret < 0)
261 goto egfmt;
262 fmts += ret;
263 }
264
265 icd->current_fmt = &icd->user_formats[0];
266
267 return 0;
268
269 egfmt:
270 icd->num_user_formats = 0;
271 vfree(icd->user_formats);
272 return ret;
273 }
274
275 /* Always entered with .video_lock held */
276 static void soc_camera_free_user_formats(struct soc_camera_device *icd)
277 {
278 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
279
280 if (ici->ops->put_formats)
281 ici->ops->put_formats(icd);
282 icd->current_fmt = NULL;
283 icd->num_user_formats = 0;
284 vfree(icd->user_formats);
285 icd->user_formats = NULL;
286 }
287
288 #define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
289 ((x) >> 24) & 0xff
290
291 /* Called with .vb_lock held, or from the first open(2), see comment there */
292 static int soc_camera_set_fmt(struct soc_camera_device *icd,
293 struct v4l2_format *f)
294 {
295 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
296 struct v4l2_pix_format *pix = &f->fmt.pix;
297 int ret;
298
299 dev_dbg(&icd->dev, "S_FMT(%c%c%c%c, %ux%u)\n",
300 pixfmtstr(pix->pixelformat), pix->width, pix->height);
301
302 /* We always call try_fmt() before set_fmt() or set_crop() */
303 ret = ici->ops->try_fmt(icd, f);
304 if (ret < 0)
305 return ret;
306
307 ret = ici->ops->set_fmt(icd, f);
308 if (ret < 0) {
309 return ret;
310 } else if (!icd->current_fmt ||
311 icd->current_fmt->host_fmt->fourcc != pix->pixelformat) {
312 dev_err(&icd->dev,
313 "Host driver hasn't set up current format correctly!\n");
314 return -EINVAL;
315 }
316
317 icd->user_width = pix->width;
318 icd->user_height = pix->height;
319 icd->colorspace = pix->colorspace;
320 icd->vb_vidq.field =
321 icd->field = pix->field;
322
323 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
324 dev_warn(&icd->dev, "Attention! Wrong buf-type %d\n",
325 f->type);
326
327 dev_dbg(&icd->dev, "set width: %d height: %d\n",
328 icd->user_width, icd->user_height);
329
330 /* set physical bus parameters */
331 return ici->ops->set_bus_param(icd, pix->pixelformat);
332 }
333
334 static int soc_camera_open(struct file *file)
335 {
336 struct video_device *vdev = video_devdata(file);
337 struct soc_camera_device *icd = container_of(vdev->parent,
338 struct soc_camera_device,
339 dev);
340 struct soc_camera_link *icl = to_soc_camera_link(icd);
341 struct soc_camera_host *ici;
342 int ret;
343
344 if (!icd->ops)
345 /* No device driver attached */
346 return -ENODEV;
347
348 ici = to_soc_camera_host(icd->dev.parent);
349
350 if (!try_module_get(ici->ops->owner)) {
351 dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
352 return -EINVAL;
353 }
354
355 icd->use_count++;
356
357 /* Now we really have to activate the camera */
358 if (icd->use_count == 1) {
359 /* Restore parameters before the last close() per V4L2 API */
360 struct v4l2_format f = {
361 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
362 .fmt.pix = {
363 .width = icd->user_width,
364 .height = icd->user_height,
365 .field = icd->field,
366 .colorspace = icd->colorspace,
367 .pixelformat =
368 icd->current_fmt->host_fmt->fourcc,
369 },
370 };
371
372 if (icl->power) {
373 ret = icl->power(icd->pdev, 1);
374 if (ret < 0)
375 goto epower;
376 }
377
378 /* The camera could have been already on, try to reset */
379 if (icl->reset)
380 icl->reset(icd->pdev);
381
382 ret = ici->ops->add(icd);
383 if (ret < 0) {
384 dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
385 goto eiciadd;
386 }
387
388 pm_runtime_enable(&icd->vdev->dev);
389 ret = pm_runtime_resume(&icd->vdev->dev);
390 if (ret < 0 && ret != -ENOSYS)
391 goto eresume;
392
393 /*
394 * Try to configure with default parameters. Notice: this is the
395 * very first open, so, we cannot race against other calls,
396 * apart from someone else calling open() simultaneously, but
397 * .video_lock is protecting us against it.
398 */
399 ret = soc_camera_set_fmt(icd, &f);
400 if (ret < 0)
401 goto esfmt;
402
403 ici->ops->init_videobuf(&icd->vb_vidq, icd);
404 }
405
406 file->private_data = icd;
407 dev_dbg(&icd->dev, "camera device open\n");
408
409 return 0;
410
411 /*
412 * First four errors are entered with the .video_lock held
413 * and use_count == 1
414 */
415 esfmt:
416 pm_runtime_disable(&icd->vdev->dev);
417 eresume:
418 ici->ops->remove(icd);
419 eiciadd:
420 if (icl->power)
421 icl->power(icd->pdev, 0);
422 epower:
423 icd->use_count--;
424 module_put(ici->ops->owner);
425
426 return ret;
427 }
428
429 static int soc_camera_close(struct file *file)
430 {
431 struct soc_camera_device *icd = file->private_data;
432 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
433
434 icd->use_count--;
435 if (!icd->use_count) {
436 struct soc_camera_link *icl = to_soc_camera_link(icd);
437
438 pm_runtime_suspend(&icd->vdev->dev);
439 pm_runtime_disable(&icd->vdev->dev);
440
441 ici->ops->remove(icd);
442
443 if (icl->power)
444 icl->power(icd->pdev, 0);
445 }
446
447 if (icd->streamer == file)
448 icd->streamer = NULL;
449
450 module_put(ici->ops->owner);
451
452 dev_dbg(&icd->dev, "camera device close\n");
453
454 return 0;
455 }
456
457 static ssize_t soc_camera_read(struct file *file, char __user *buf,
458 size_t count, loff_t *ppos)
459 {
460 struct soc_camera_device *icd = file->private_data;
461 int err = -EINVAL;
462
463 dev_err(&icd->dev, "camera device read not implemented\n");
464
465 return err;
466 }
467
468 static int soc_camera_mmap(struct file *file, struct vm_area_struct *vma)
469 {
470 struct soc_camera_device *icd = file->private_data;
471 int err;
472
473 dev_dbg(&icd->dev, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
474
475 if (icd->streamer != file)
476 return -EBUSY;
477
478 err = videobuf_mmap_mapper(&icd->vb_vidq, vma);
479
480 dev_dbg(&icd->dev, "vma start=0x%08lx, size=%ld, ret=%d\n",
481 (unsigned long)vma->vm_start,
482 (unsigned long)vma->vm_end - (unsigned long)vma->vm_start,
483 err);
484
485 return err;
486 }
487
488 static unsigned int soc_camera_poll(struct file *file, poll_table *pt)
489 {
490 struct soc_camera_device *icd = file->private_data;
491 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
492
493 if (icd->streamer != file)
494 return -EBUSY;
495
496 if (list_empty(&icd->vb_vidq.stream)) {
497 dev_err(&icd->dev, "Trying to poll with no queued buffers!\n");
498 return POLLERR;
499 }
500
501 return ici->ops->poll(file, pt);
502 }
503
504 static struct v4l2_file_operations soc_camera_fops = {
505 .owner = THIS_MODULE,
506 .open = soc_camera_open,
507 .release = soc_camera_close,
508 .unlocked_ioctl = video_ioctl2,
509 .read = soc_camera_read,
510 .mmap = soc_camera_mmap,
511 .poll = soc_camera_poll,
512 };
513
514 static int soc_camera_s_fmt_vid_cap(struct file *file, void *priv,
515 struct v4l2_format *f)
516 {
517 struct soc_camera_device *icd = file->private_data;
518 int ret;
519
520 WARN_ON(priv != file->private_data);
521
522 if (icd->streamer && icd->streamer != file)
523 return -EBUSY;
524
525 if (icd->vb_vidq.bufs[0]) {
526 dev_err(&icd->dev, "S_FMT denied: queue initialised\n");
527 return -EBUSY;
528 }
529
530 ret = soc_camera_set_fmt(icd, f);
531
532 if (!ret && !icd->streamer)
533 icd->streamer = file;
534
535 return ret;
536 }
537
538 static int soc_camera_enum_fmt_vid_cap(struct file *file, void *priv,
539 struct v4l2_fmtdesc *f)
540 {
541 struct soc_camera_device *icd = file->private_data;
542 const struct soc_mbus_pixelfmt *format;
543
544 WARN_ON(priv != file->private_data);
545
546 if (f->index >= icd->num_user_formats)
547 return -EINVAL;
548
549 format = icd->user_formats[f->index].host_fmt;
550
551 if (format->name)
552 strlcpy(f->description, format->name, sizeof(f->description));
553 f->pixelformat = format->fourcc;
554 return 0;
555 }
556
557 static int soc_camera_g_fmt_vid_cap(struct file *file, void *priv,
558 struct v4l2_format *f)
559 {
560 struct soc_camera_device *icd = file->private_data;
561 struct v4l2_pix_format *pix = &f->fmt.pix;
562
563 WARN_ON(priv != file->private_data);
564
565 pix->width = icd->user_width;
566 pix->height = icd->user_height;
567 pix->field = icd->vb_vidq.field;
568 pix->pixelformat = icd->current_fmt->host_fmt->fourcc;
569 pix->bytesperline = soc_mbus_bytes_per_line(pix->width,
570 icd->current_fmt->host_fmt);
571 pix->colorspace = icd->colorspace;
572 if (pix->bytesperline < 0)
573 return pix->bytesperline;
574 pix->sizeimage = pix->height * pix->bytesperline;
575 dev_dbg(&icd->dev, "current_fmt->fourcc: 0x%08x\n",
576 icd->current_fmt->host_fmt->fourcc);
577 return 0;
578 }
579
580 static int soc_camera_querycap(struct file *file, void *priv,
581 struct v4l2_capability *cap)
582 {
583 struct soc_camera_device *icd = file->private_data;
584 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
585
586 WARN_ON(priv != file->private_data);
587
588 strlcpy(cap->driver, ici->drv_name, sizeof(cap->driver));
589 return ici->ops->querycap(ici, cap);
590 }
591
592 static int soc_camera_streamon(struct file *file, void *priv,
593 enum v4l2_buf_type i)
594 {
595 struct soc_camera_device *icd = file->private_data;
596 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
597 int ret;
598
599 WARN_ON(priv != file->private_data);
600
601 if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
602 return -EINVAL;
603
604 if (icd->streamer != file)
605 return -EBUSY;
606
607 v4l2_subdev_call(sd, video, s_stream, 1);
608
609 /* This calls buf_queue from host driver's videobuf_queue_ops */
610 ret = videobuf_streamon(&icd->vb_vidq);
611
612 return ret;
613 }
614
615 static int soc_camera_streamoff(struct file *file, void *priv,
616 enum v4l2_buf_type i)
617 {
618 struct soc_camera_device *icd = file->private_data;
619 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
620
621 WARN_ON(priv != file->private_data);
622
623 if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
624 return -EINVAL;
625
626 if (icd->streamer != file)
627 return -EBUSY;
628
629 /*
630 * This calls buf_release from host driver's videobuf_queue_ops for all
631 * remaining buffers. When the last buffer is freed, stop capture
632 */
633 videobuf_streamoff(&icd->vb_vidq);
634
635 v4l2_subdev_call(sd, video, s_stream, 0);
636
637 return 0;
638 }
639
640 static int soc_camera_queryctrl(struct file *file, void *priv,
641 struct v4l2_queryctrl *qc)
642 {
643 struct soc_camera_device *icd = file->private_data;
644 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
645 int i;
646
647 WARN_ON(priv != file->private_data);
648
649 if (!qc->id)
650 return -EINVAL;
651
652 /* First check host controls */
653 for (i = 0; i < ici->ops->num_controls; i++)
654 if (qc->id == ici->ops->controls[i].id) {
655 memcpy(qc, &(ici->ops->controls[i]),
656 sizeof(*qc));
657 return 0;
658 }
659
660 /* Then device controls */
661 for (i = 0; i < icd->ops->num_controls; i++)
662 if (qc->id == icd->ops->controls[i].id) {
663 memcpy(qc, &(icd->ops->controls[i]),
664 sizeof(*qc));
665 return 0;
666 }
667
668 return -EINVAL;
669 }
670
671 static int soc_camera_g_ctrl(struct file *file, void *priv,
672 struct v4l2_control *ctrl)
673 {
674 struct soc_camera_device *icd = file->private_data;
675 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
676 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
677 int ret;
678
679 WARN_ON(priv != file->private_data);
680
681 if (ici->ops->get_ctrl) {
682 ret = ici->ops->get_ctrl(icd, ctrl);
683 if (ret != -ENOIOCTLCMD)
684 return ret;
685 }
686
687 return v4l2_subdev_call(sd, core, g_ctrl, ctrl);
688 }
689
690 static int soc_camera_s_ctrl(struct file *file, void *priv,
691 struct v4l2_control *ctrl)
692 {
693 struct soc_camera_device *icd = file->private_data;
694 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
695 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
696 int ret;
697
698 WARN_ON(priv != file->private_data);
699
700 if (ici->ops->set_ctrl) {
701 ret = ici->ops->set_ctrl(icd, ctrl);
702 if (ret != -ENOIOCTLCMD)
703 return ret;
704 }
705
706 return v4l2_subdev_call(sd, core, s_ctrl, ctrl);
707 }
708
709 static int soc_camera_cropcap(struct file *file, void *fh,
710 struct v4l2_cropcap *a)
711 {
712 struct soc_camera_device *icd = file->private_data;
713 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
714
715 return ici->ops->cropcap(icd, a);
716 }
717
718 static int soc_camera_g_crop(struct file *file, void *fh,
719 struct v4l2_crop *a)
720 {
721 struct soc_camera_device *icd = file->private_data;
722 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
723 int ret;
724
725 ret = ici->ops->get_crop(icd, a);
726
727 return ret;
728 }
729
730 /*
731 * According to the V4L2 API, drivers shall not update the struct v4l2_crop
732 * argument with the actual geometry, instead, the user shall use G_CROP to
733 * retrieve it.
734 */
735 static int soc_camera_s_crop(struct file *file, void *fh,
736 struct v4l2_crop *a)
737 {
738 struct soc_camera_device *icd = file->private_data;
739 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
740 struct v4l2_rect *rect = &a->c;
741 struct v4l2_crop current_crop;
742 int ret;
743
744 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
745 return -EINVAL;
746
747 dev_dbg(&icd->dev, "S_CROP(%ux%u@%u:%u)\n",
748 rect->width, rect->height, rect->left, rect->top);
749
750 /* If get_crop fails, we'll let host and / or client drivers decide */
751 ret = ici->ops->get_crop(icd, &current_crop);
752
753 /* Prohibit window size change with initialised buffers */
754 if (ret < 0) {
755 dev_err(&icd->dev,
756 "S_CROP denied: getting current crop failed\n");
757 } else if (icd->vb_vidq.bufs[0] &&
758 (a->c.width != current_crop.c.width ||
759 a->c.height != current_crop.c.height)) {
760 dev_err(&icd->dev,
761 "S_CROP denied: queue initialised and sizes differ\n");
762 ret = -EBUSY;
763 } else {
764 ret = ici->ops->set_crop(icd, a);
765 }
766
767 return ret;
768 }
769
770 static int soc_camera_g_parm(struct file *file, void *fh,
771 struct v4l2_streamparm *a)
772 {
773 struct soc_camera_device *icd = file->private_data;
774 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
775
776 if (ici->ops->get_parm)
777 return ici->ops->get_parm(icd, a);
778
779 return -ENOIOCTLCMD;
780 }
781
782 static int soc_camera_s_parm(struct file *file, void *fh,
783 struct v4l2_streamparm *a)
784 {
785 struct soc_camera_device *icd = file->private_data;
786 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
787
788 if (ici->ops->set_parm)
789 return ici->ops->set_parm(icd, a);
790
791 return -ENOIOCTLCMD;
792 }
793
794 static int soc_camera_g_chip_ident(struct file *file, void *fh,
795 struct v4l2_dbg_chip_ident *id)
796 {
797 struct soc_camera_device *icd = file->private_data;
798 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
799
800 return v4l2_subdev_call(sd, core, g_chip_ident, id);
801 }
802
803 #ifdef CONFIG_VIDEO_ADV_DEBUG
804 static int soc_camera_g_register(struct file *file, void *fh,
805 struct v4l2_dbg_register *reg)
806 {
807 struct soc_camera_device *icd = file->private_data;
808 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
809
810 return v4l2_subdev_call(sd, core, g_register, reg);
811 }
812
813 static int soc_camera_s_register(struct file *file, void *fh,
814 struct v4l2_dbg_register *reg)
815 {
816 struct soc_camera_device *icd = file->private_data;
817 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
818
819 return v4l2_subdev_call(sd, core, s_register, reg);
820 }
821 #endif
822
823 /* So far this function cannot fail */
824 static void scan_add_host(struct soc_camera_host *ici)
825 {
826 struct soc_camera_device *icd;
827
828 mutex_lock(&list_lock);
829
830 list_for_each_entry(icd, &devices, list) {
831 if (icd->iface == ici->nr) {
832 int ret;
833 icd->dev.parent = ici->v4l2_dev.dev;
834 dev_set_name(&icd->dev, "%u-%u", icd->iface,
835 icd->devnum);
836 ret = device_register(&icd->dev);
837 if (ret < 0) {
838 icd->dev.parent = NULL;
839 dev_err(&icd->dev,
840 "Cannot register device: %d\n", ret);
841 }
842 }
843 }
844
845 mutex_unlock(&list_lock);
846 }
847
848 #ifdef CONFIG_I2C_BOARDINFO
849 static int soc_camera_init_i2c(struct soc_camera_device *icd,
850 struct soc_camera_link *icl)
851 {
852 struct i2c_client *client;
853 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
854 struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
855 struct v4l2_subdev *subdev;
856
857 if (!adap) {
858 dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
859 icl->i2c_adapter_id);
860 goto ei2cga;
861 }
862
863 icl->board_info->platform_data = icd;
864
865 subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
866 icl->board_info, NULL);
867 if (!subdev)
868 goto ei2cnd;
869
870 client = v4l2_get_subdevdata(subdev);
871
872 /* Use to_i2c_client(dev) to recover the i2c client */
873 dev_set_drvdata(&icd->dev, &client->dev);
874
875 return 0;
876 ei2cnd:
877 i2c_put_adapter(adap);
878 ei2cga:
879 return -ENODEV;
880 }
881
882 static void soc_camera_free_i2c(struct soc_camera_device *icd)
883 {
884 struct i2c_client *client =
885 to_i2c_client(to_soc_camera_control(icd));
886 dev_set_drvdata(&icd->dev, NULL);
887 v4l2_device_unregister_subdev(i2c_get_clientdata(client));
888 i2c_unregister_device(client);
889 i2c_put_adapter(client->adapter);
890 }
891 #else
892 #define soc_camera_init_i2c(icd, icl) (-ENODEV)
893 #define soc_camera_free_i2c(icd) do {} while (0)
894 #endif
895
896 static int soc_camera_video_start(struct soc_camera_device *icd);
897 static int video_dev_create(struct soc_camera_device *icd);
898 /* Called during host-driver probe */
899 static int soc_camera_probe(struct device *dev)
900 {
901 struct soc_camera_device *icd = to_soc_camera_dev(dev);
902 struct soc_camera_host *ici = to_soc_camera_host(dev->parent);
903 struct soc_camera_link *icl = to_soc_camera_link(icd);
904 struct device *control = NULL;
905 struct v4l2_subdev *sd;
906 struct v4l2_mbus_framefmt mf;
907 int ret;
908
909 dev_info(dev, "Probing %s\n", dev_name(dev));
910
911 if (icl->power) {
912 ret = icl->power(icd->pdev, 1);
913 if (ret < 0) {
914 dev_err(dev,
915 "Platform failed to power-on the camera.\n");
916 goto epower;
917 }
918 }
919
920 /* The camera could have been already on, try to reset */
921 if (icl->reset)
922 icl->reset(icd->pdev);
923
924 ret = ici->ops->add(icd);
925 if (ret < 0)
926 goto eadd;
927
928 /* Must have icd->vdev before registering the device */
929 ret = video_dev_create(icd);
930 if (ret < 0)
931 goto evdc;
932
933 /* Non-i2c cameras, e.g., soc_camera_platform, have no board_info */
934 if (icl->board_info) {
935 ret = soc_camera_init_i2c(icd, icl);
936 if (ret < 0)
937 goto eadddev;
938 } else if (!icl->add_device || !icl->del_device) {
939 ret = -EINVAL;
940 goto eadddev;
941 } else {
942 if (icl->module_name)
943 ret = request_module(icl->module_name);
944
945 ret = icl->add_device(icl, &icd->dev);
946 if (ret < 0)
947 goto eadddev;
948
949 /*
950 * FIXME: this is racy, have to use driver-binding notification,
951 * when it is available
952 */
953 control = to_soc_camera_control(icd);
954 if (!control || !control->driver || !dev_get_drvdata(control) ||
955 !try_module_get(control->driver->owner)) {
956 icl->del_device(icl);
957 goto enodrv;
958 }
959 }
960
961 /* At this point client .probe() should have run already */
962 ret = soc_camera_init_user_formats(icd);
963 if (ret < 0)
964 goto eiufmt;
965
966 icd->field = V4L2_FIELD_ANY;
967
968 icd->vdev->lock = &icd->video_lock;
969
970 /*
971 * ..._video_start() will create a device node, video_register_device()
972 * itself is protected against concurrent open() calls, but we also have
973 * to protect our data.
974 */
975 mutex_lock(&icd->video_lock);
976
977 ret = soc_camera_video_start(icd);
978 if (ret < 0)
979 goto evidstart;
980
981 /* Try to improve our guess of a reasonable window format */
982 sd = soc_camera_to_subdev(icd);
983 if (!v4l2_subdev_call(sd, video, g_mbus_fmt, &mf)) {
984 icd->user_width = mf.width;
985 icd->user_height = mf.height;
986 icd->colorspace = mf.colorspace;
987 icd->field = mf.field;
988 }
989
990 /* Do we have to sysfs_remove_link() before device_unregister()? */
991 if (sysfs_create_link(&icd->dev.kobj, &to_soc_camera_control(icd)->kobj,
992 "control"))
993 dev_warn(&icd->dev, "Failed creating the control symlink\n");
994
995 ici->ops->remove(icd);
996
997 if (icl->power)
998 icl->power(icd->pdev, 0);
999
1000 mutex_unlock(&icd->video_lock);
1001
1002 return 0;
1003
1004 evidstart:
1005 mutex_unlock(&icd->video_lock);
1006 soc_camera_free_user_formats(icd);
1007 eiufmt:
1008 if (icl->board_info) {
1009 soc_camera_free_i2c(icd);
1010 } else {
1011 icl->del_device(icl);
1012 module_put(control->driver->owner);
1013 }
1014 enodrv:
1015 eadddev:
1016 video_device_release(icd->vdev);
1017 evdc:
1018 ici->ops->remove(icd);
1019 eadd:
1020 if (icl->power)
1021 icl->power(icd->pdev, 0);
1022 epower:
1023 return ret;
1024 }
1025
1026 /*
1027 * This is called on device_unregister, which only means we have to disconnect
1028 * from the host, but not remove ourselves from the device list
1029 */
1030 static int soc_camera_remove(struct device *dev)
1031 {
1032 struct soc_camera_device *icd = to_soc_camera_dev(dev);
1033 struct soc_camera_link *icl = to_soc_camera_link(icd);
1034 struct video_device *vdev = icd->vdev;
1035
1036 BUG_ON(!dev->parent);
1037
1038 if (vdev) {
1039 video_unregister_device(vdev);
1040 icd->vdev = NULL;
1041 }
1042
1043 if (icl->board_info) {
1044 soc_camera_free_i2c(icd);
1045 } else {
1046 struct device_driver *drv = to_soc_camera_control(icd) ?
1047 to_soc_camera_control(icd)->driver : NULL;
1048 if (drv) {
1049 icl->del_device(icl);
1050 module_put(drv->owner);
1051 }
1052 }
1053 soc_camera_free_user_formats(icd);
1054
1055 return 0;
1056 }
1057
1058 static int soc_camera_suspend(struct device *dev, pm_message_t state)
1059 {
1060 struct soc_camera_device *icd = to_soc_camera_dev(dev);
1061 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1062 int ret = 0;
1063
1064 if (ici->ops->suspend)
1065 ret = ici->ops->suspend(icd, state);
1066
1067 return ret;
1068 }
1069
1070 static int soc_camera_resume(struct device *dev)
1071 {
1072 struct soc_camera_device *icd = to_soc_camera_dev(dev);
1073 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1074 int ret = 0;
1075
1076 if (ici->ops->resume)
1077 ret = ici->ops->resume(icd);
1078
1079 return ret;
1080 }
1081
1082 struct bus_type soc_camera_bus_type = {
1083 .name = "soc-camera",
1084 .probe = soc_camera_probe,
1085 .remove = soc_camera_remove,
1086 .suspend = soc_camera_suspend,
1087 .resume = soc_camera_resume,
1088 };
1089 EXPORT_SYMBOL_GPL(soc_camera_bus_type);
1090
1091 static struct device_driver ic_drv = {
1092 .name = "camera",
1093 .bus = &soc_camera_bus_type,
1094 .owner = THIS_MODULE,
1095 };
1096
1097 static void dummy_release(struct device *dev)
1098 {
1099 }
1100
1101 static int default_cropcap(struct soc_camera_device *icd,
1102 struct v4l2_cropcap *a)
1103 {
1104 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1105 return v4l2_subdev_call(sd, video, cropcap, a);
1106 }
1107
1108 static int default_g_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
1109 {
1110 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1111 return v4l2_subdev_call(sd, video, g_crop, a);
1112 }
1113
1114 static int default_s_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
1115 {
1116 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1117 return v4l2_subdev_call(sd, video, s_crop, a);
1118 }
1119
1120 static int default_g_parm(struct soc_camera_device *icd,
1121 struct v4l2_streamparm *parm)
1122 {
1123 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1124 return v4l2_subdev_call(sd, video, g_parm, parm);
1125 }
1126
1127 static int default_s_parm(struct soc_camera_device *icd,
1128 struct v4l2_streamparm *parm)
1129 {
1130 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1131 return v4l2_subdev_call(sd, video, s_parm, parm);
1132 }
1133
1134 static void soc_camera_device_init(struct device *dev, void *pdata)
1135 {
1136 dev->platform_data = pdata;
1137 dev->bus = &soc_camera_bus_type;
1138 dev->release = dummy_release;
1139 }
1140
1141 int soc_camera_host_register(struct soc_camera_host *ici)
1142 {
1143 struct soc_camera_host *ix;
1144 int ret;
1145
1146 if (!ici || !ici->ops ||
1147 !ici->ops->try_fmt ||
1148 !ici->ops->set_fmt ||
1149 !ici->ops->set_bus_param ||
1150 !ici->ops->querycap ||
1151 !ici->ops->init_videobuf ||
1152 !ici->ops->reqbufs ||
1153 !ici->ops->add ||
1154 !ici->ops->remove ||
1155 !ici->ops->poll ||
1156 !ici->v4l2_dev.dev)
1157 return -EINVAL;
1158
1159 if (!ici->ops->set_crop)
1160 ici->ops->set_crop = default_s_crop;
1161 if (!ici->ops->get_crop)
1162 ici->ops->get_crop = default_g_crop;
1163 if (!ici->ops->cropcap)
1164 ici->ops->cropcap = default_cropcap;
1165 if (!ici->ops->set_parm)
1166 ici->ops->set_parm = default_s_parm;
1167 if (!ici->ops->get_parm)
1168 ici->ops->get_parm = default_g_parm;
1169
1170 mutex_lock(&list_lock);
1171 list_for_each_entry(ix, &hosts, list) {
1172 if (ix->nr == ici->nr) {
1173 ret = -EBUSY;
1174 goto edevreg;
1175 }
1176 }
1177
1178 ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
1179 if (ret < 0)
1180 goto edevreg;
1181
1182 list_add_tail(&ici->list, &hosts);
1183 mutex_unlock(&list_lock);
1184
1185 scan_add_host(ici);
1186
1187 return 0;
1188
1189 edevreg:
1190 mutex_unlock(&list_lock);
1191 return ret;
1192 }
1193 EXPORT_SYMBOL(soc_camera_host_register);
1194
1195 /* Unregister all clients! */
1196 void soc_camera_host_unregister(struct soc_camera_host *ici)
1197 {
1198 struct soc_camera_device *icd;
1199
1200 mutex_lock(&list_lock);
1201
1202 list_del(&ici->list);
1203
1204 list_for_each_entry(icd, &devices, list) {
1205 if (icd->iface == ici->nr) {
1206 void *pdata = icd->dev.platform_data;
1207 /* The bus->remove will be called */
1208 device_unregister(&icd->dev);
1209 /*
1210 * Not before device_unregister(), .remove
1211 * needs parent to call ici->ops->remove().
1212 * If the host module is loaded again, device_register()
1213 * would complain "already initialised," since 2.6.32
1214 * this is also needed to prevent use-after-free of the
1215 * device private data.
1216 */
1217 memset(&icd->dev, 0, sizeof(icd->dev));
1218 soc_camera_device_init(&icd->dev, pdata);
1219 }
1220 }
1221
1222 mutex_unlock(&list_lock);
1223
1224 v4l2_device_unregister(&ici->v4l2_dev);
1225 }
1226 EXPORT_SYMBOL(soc_camera_host_unregister);
1227
1228 /* Image capture device */
1229 static int soc_camera_device_register(struct soc_camera_device *icd)
1230 {
1231 struct soc_camera_device *ix;
1232 int num = -1, i;
1233
1234 for (i = 0; i < 256 && num < 0; i++) {
1235 num = i;
1236 /* Check if this index is available on this interface */
1237 list_for_each_entry(ix, &devices, list) {
1238 if (ix->iface == icd->iface && ix->devnum == i) {
1239 num = -1;
1240 break;
1241 }
1242 }
1243 }
1244
1245 if (num < 0)
1246 /*
1247 * ok, we have 256 cameras on this host...
1248 * man, stay reasonable...
1249 */
1250 return -ENOMEM;
1251
1252 icd->devnum = num;
1253 icd->use_count = 0;
1254 icd->host_priv = NULL;
1255 mutex_init(&icd->video_lock);
1256
1257 list_add_tail(&icd->list, &devices);
1258
1259 return 0;
1260 }
1261
1262 static void soc_camera_device_unregister(struct soc_camera_device *icd)
1263 {
1264 list_del(&icd->list);
1265 }
1266
1267 static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = {
1268 .vidioc_querycap = soc_camera_querycap,
1269 .vidioc_g_fmt_vid_cap = soc_camera_g_fmt_vid_cap,
1270 .vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap,
1271 .vidioc_s_fmt_vid_cap = soc_camera_s_fmt_vid_cap,
1272 .vidioc_enum_input = soc_camera_enum_input,
1273 .vidioc_g_input = soc_camera_g_input,
1274 .vidioc_s_input = soc_camera_s_input,
1275 .vidioc_s_std = soc_camera_s_std,
1276 .vidioc_reqbufs = soc_camera_reqbufs,
1277 .vidioc_try_fmt_vid_cap = soc_camera_try_fmt_vid_cap,
1278 .vidioc_querybuf = soc_camera_querybuf,
1279 .vidioc_qbuf = soc_camera_qbuf,
1280 .vidioc_dqbuf = soc_camera_dqbuf,
1281 .vidioc_streamon = soc_camera_streamon,
1282 .vidioc_streamoff = soc_camera_streamoff,
1283 .vidioc_queryctrl = soc_camera_queryctrl,
1284 .vidioc_g_ctrl = soc_camera_g_ctrl,
1285 .vidioc_s_ctrl = soc_camera_s_ctrl,
1286 .vidioc_cropcap = soc_camera_cropcap,
1287 .vidioc_g_crop = soc_camera_g_crop,
1288 .vidioc_s_crop = soc_camera_s_crop,
1289 .vidioc_g_parm = soc_camera_g_parm,
1290 .vidioc_s_parm = soc_camera_s_parm,
1291 .vidioc_g_chip_ident = soc_camera_g_chip_ident,
1292 #ifdef CONFIG_VIDEO_ADV_DEBUG
1293 .vidioc_g_register = soc_camera_g_register,
1294 .vidioc_s_register = soc_camera_s_register,
1295 #endif
1296 };
1297
1298 static int video_dev_create(struct soc_camera_device *icd)
1299 {
1300 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1301 struct video_device *vdev = video_device_alloc();
1302
1303 if (!vdev)
1304 return -ENOMEM;
1305
1306 strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name));
1307
1308 vdev->parent = &icd->dev;
1309 vdev->current_norm = V4L2_STD_UNKNOWN;
1310 vdev->fops = &soc_camera_fops;
1311 vdev->ioctl_ops = &soc_camera_ioctl_ops;
1312 vdev->release = video_device_release;
1313 vdev->tvnorms = V4L2_STD_UNKNOWN;
1314
1315 icd->vdev = vdev;
1316
1317 return 0;
1318 }
1319
1320 /*
1321 * Called from soc_camera_probe() above (with .video_lock held???)
1322 */
1323 static int soc_camera_video_start(struct soc_camera_device *icd)
1324 {
1325 struct device_type *type = icd->vdev->dev.type;
1326 int ret;
1327
1328 if (!icd->dev.parent)
1329 return -ENODEV;
1330
1331 if (!icd->ops ||
1332 !icd->ops->query_bus_param ||
1333 !icd->ops->set_bus_param)
1334 return -EINVAL;
1335
1336 ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
1337 if (ret < 0) {
1338 dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
1339 return ret;
1340 }
1341
1342 /* Restore device type, possibly set by the subdevice driver */
1343 icd->vdev->dev.type = type;
1344
1345 return 0;
1346 }
1347
1348 static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1349 {
1350 struct soc_camera_link *icl = pdev->dev.platform_data;
1351 struct soc_camera_device *icd;
1352 int ret;
1353
1354 if (!icl)
1355 return -EINVAL;
1356
1357 icd = kzalloc(sizeof(*icd), GFP_KERNEL);
1358 if (!icd)
1359 return -ENOMEM;
1360
1361 icd->iface = icl->bus_id;
1362 icd->pdev = &pdev->dev;
1363 platform_set_drvdata(pdev, icd);
1364
1365 ret = soc_camera_device_register(icd);
1366 if (ret < 0)
1367 goto escdevreg;
1368
1369 soc_camera_device_init(&icd->dev, icl);
1370
1371 icd->user_width = DEFAULT_WIDTH;
1372 icd->user_height = DEFAULT_HEIGHT;
1373
1374 return 0;
1375
1376 escdevreg:
1377 kfree(icd);
1378
1379 return ret;
1380 }
1381
1382 /*
1383 * Only called on rmmod for each platform device, since they are not
1384 * hot-pluggable. Now we know, that all our users - hosts and devices have
1385 * been unloaded already
1386 */
1387 static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1388 {
1389 struct soc_camera_device *icd = platform_get_drvdata(pdev);
1390
1391 if (!icd)
1392 return -EINVAL;
1393
1394 soc_camera_device_unregister(icd);
1395
1396 kfree(icd);
1397
1398 return 0;
1399 }
1400
1401 static struct platform_driver __refdata soc_camera_pdrv = {
1402 .remove = __devexit_p(soc_camera_pdrv_remove),
1403 .driver = {
1404 .name = "soc-camera-pdrv",
1405 .owner = THIS_MODULE,
1406 },
1407 };
1408
1409 static int __init soc_camera_init(void)
1410 {
1411 int ret = bus_register(&soc_camera_bus_type);
1412 if (ret)
1413 return ret;
1414 ret = driver_register(&ic_drv);
1415 if (ret)
1416 goto edrvr;
1417
1418 ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
1419 if (ret)
1420 goto epdr;
1421
1422 return 0;
1423
1424 epdr:
1425 driver_unregister(&ic_drv);
1426 edrvr:
1427 bus_unregister(&soc_camera_bus_type);
1428 return ret;
1429 }
1430
1431 static void __exit soc_camera_exit(void)
1432 {
1433 platform_driver_unregister(&soc_camera_pdrv);
1434 driver_unregister(&ic_drv);
1435 bus_unregister(&soc_camera_bus_type);
1436 }
1437
1438 module_init(soc_camera_init);
1439 module_exit(soc_camera_exit);
1440
1441 MODULE_DESCRIPTION("Image capture bus driver");
1442 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1443 MODULE_LICENSE("GPL");
1444 MODULE_ALIAS("platform:soc-camera-pdrv");
This page took 0.168256 seconds and 5 git commands to generate.