2 * camera image capture (abstract) bus driver
4 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
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.
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.
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/vmalloc.h>
29 #include <media/soc_camera.h>
30 #include <media/v4l2-common.h>
31 #include <media/v4l2-ioctl.h>
32 #include <media/v4l2-dev.h>
33 #include <media/videobuf-core.h>
35 /* Default to VGA resolution */
36 #define DEFAULT_WIDTH 640
37 #define DEFAULT_HEIGHT 480
39 static LIST_HEAD(hosts
);
40 static LIST_HEAD(devices
);
41 static DEFINE_MUTEX(list_lock
); /* Protects the list of hosts */
43 const struct soc_camera_data_format
*soc_camera_format_by_fourcc(
44 struct soc_camera_device
*icd
, unsigned int fourcc
)
48 for (i
= 0; i
< icd
->num_formats
; i
++)
49 if (icd
->formats
[i
].fourcc
== fourcc
)
50 return icd
->formats
+ i
;
53 EXPORT_SYMBOL(soc_camera_format_by_fourcc
);
55 const struct soc_camera_format_xlate
*soc_camera_xlate_by_fourcc(
56 struct soc_camera_device
*icd
, unsigned int fourcc
)
60 for (i
= 0; i
< icd
->num_user_formats
; i
++)
61 if (icd
->user_formats
[i
].host_fmt
->fourcc
== fourcc
)
62 return icd
->user_formats
+ i
;
65 EXPORT_SYMBOL(soc_camera_xlate_by_fourcc
);
68 * soc_camera_apply_sensor_flags() - apply platform SOCAM_SENSOR_INVERT_* flags
69 * @icl: camera platform parameters
70 * @flags: flags to be inverted according to platform configuration
71 * @return: resulting flags
73 unsigned long soc_camera_apply_sensor_flags(struct soc_camera_link
*icl
,
78 /* If only one of the two polarities is supported, switch to the opposite */
79 if (icl
->flags
& SOCAM_SENSOR_INVERT_HSYNC
) {
80 f
= flags
& (SOCAM_HSYNC_ACTIVE_HIGH
| SOCAM_HSYNC_ACTIVE_LOW
);
81 if (f
== SOCAM_HSYNC_ACTIVE_HIGH
|| f
== SOCAM_HSYNC_ACTIVE_LOW
)
82 flags
^= SOCAM_HSYNC_ACTIVE_HIGH
| SOCAM_HSYNC_ACTIVE_LOW
;
85 if (icl
->flags
& SOCAM_SENSOR_INVERT_VSYNC
) {
86 f
= flags
& (SOCAM_VSYNC_ACTIVE_HIGH
| SOCAM_VSYNC_ACTIVE_LOW
);
87 if (f
== SOCAM_VSYNC_ACTIVE_HIGH
|| f
== SOCAM_VSYNC_ACTIVE_LOW
)
88 flags
^= SOCAM_VSYNC_ACTIVE_HIGH
| SOCAM_VSYNC_ACTIVE_LOW
;
91 if (icl
->flags
& SOCAM_SENSOR_INVERT_PCLK
) {
92 f
= flags
& (SOCAM_PCLK_SAMPLE_RISING
| SOCAM_PCLK_SAMPLE_FALLING
);
93 if (f
== SOCAM_PCLK_SAMPLE_RISING
|| f
== SOCAM_PCLK_SAMPLE_FALLING
)
94 flags
^= SOCAM_PCLK_SAMPLE_RISING
| SOCAM_PCLK_SAMPLE_FALLING
;
99 EXPORT_SYMBOL(soc_camera_apply_sensor_flags
);
101 static int soc_camera_try_fmt_vid_cap(struct file
*file
, void *priv
,
102 struct v4l2_format
*f
)
104 struct soc_camera_file
*icf
= file
->private_data
;
105 struct soc_camera_device
*icd
= icf
->icd
;
106 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
108 WARN_ON(priv
!= file
->private_data
);
110 /* limit format to hardware capabilities */
111 return ici
->ops
->try_fmt(icd
, f
);
114 static int soc_camera_enum_input(struct file
*file
, void *priv
,
115 struct v4l2_input
*inp
)
117 struct soc_camera_file
*icf
= file
->private_data
;
118 struct soc_camera_device
*icd
= icf
->icd
;
124 if (icd
->ops
->enum_input
)
125 ret
= icd
->ops
->enum_input(icd
, inp
);
127 /* default is camera */
128 inp
->type
= V4L2_INPUT_TYPE_CAMERA
;
129 inp
->std
= V4L2_STD_UNKNOWN
;
130 strcpy(inp
->name
, "Camera");
136 static int soc_camera_g_input(struct file
*file
, void *priv
, unsigned int *i
)
143 static int soc_camera_s_input(struct file
*file
, void *priv
, unsigned int i
)
151 static int soc_camera_s_std(struct file
*file
, void *priv
, v4l2_std_id
*a
)
153 struct soc_camera_file
*icf
= file
->private_data
;
154 struct soc_camera_device
*icd
= icf
->icd
;
155 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
157 return v4l2_subdev_call(sd
, core
, s_std
, *a
);
160 static int soc_camera_reqbufs(struct file
*file
, void *priv
,
161 struct v4l2_requestbuffers
*p
)
164 struct soc_camera_file
*icf
= file
->private_data
;
165 struct soc_camera_device
*icd
= icf
->icd
;
166 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
168 WARN_ON(priv
!= file
->private_data
);
170 ret
= videobuf_reqbufs(&icf
->vb_vidq
, p
);
174 return ici
->ops
->reqbufs(icf
, p
);
177 static int soc_camera_querybuf(struct file
*file
, void *priv
,
178 struct v4l2_buffer
*p
)
180 struct soc_camera_file
*icf
= file
->private_data
;
182 WARN_ON(priv
!= file
->private_data
);
184 return videobuf_querybuf(&icf
->vb_vidq
, p
);
187 static int soc_camera_qbuf(struct file
*file
, void *priv
,
188 struct v4l2_buffer
*p
)
190 struct soc_camera_file
*icf
= file
->private_data
;
192 WARN_ON(priv
!= file
->private_data
);
194 return videobuf_qbuf(&icf
->vb_vidq
, p
);
197 static int soc_camera_dqbuf(struct file
*file
, void *priv
,
198 struct v4l2_buffer
*p
)
200 struct soc_camera_file
*icf
= file
->private_data
;
202 WARN_ON(priv
!= file
->private_data
);
204 return videobuf_dqbuf(&icf
->vb_vidq
, p
, file
->f_flags
& O_NONBLOCK
);
207 /* Always entered with .video_lock held */
208 static int soc_camera_init_user_formats(struct soc_camera_device
*icd
)
210 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
211 int i
, fmts
= 0, ret
;
213 if (!ici
->ops
->get_formats
)
215 * Fallback mode - the host will have to serve all
216 * sensor-provided formats one-to-one to the user
218 fmts
= icd
->num_formats
;
221 * First pass - only count formats this host-sensor
222 * configuration can provide
224 for (i
= 0; i
< icd
->num_formats
; i
++) {
225 ret
= ici
->ops
->get_formats(icd
, i
, NULL
);
235 vmalloc(fmts
* sizeof(struct soc_camera_format_xlate
));
236 if (!icd
->user_formats
)
239 icd
->num_user_formats
= fmts
;
241 dev_dbg(&icd
->dev
, "Found %d supported formats.\n", fmts
);
243 /* Second pass - actually fill data formats */
245 for (i
= 0; i
< icd
->num_formats
; i
++)
246 if (!ici
->ops
->get_formats
) {
247 icd
->user_formats
[i
].host_fmt
= icd
->formats
+ i
;
248 icd
->user_formats
[i
].cam_fmt
= icd
->formats
+ i
;
249 icd
->user_formats
[i
].buswidth
= icd
->formats
[i
].depth
;
251 ret
= ici
->ops
->get_formats(icd
, i
,
252 &icd
->user_formats
[fmts
]);
258 icd
->current_fmt
= icd
->user_formats
[0].host_fmt
;
263 icd
->num_user_formats
= 0;
264 vfree(icd
->user_formats
);
268 /* Always entered with .video_lock held */
269 static void soc_camera_free_user_formats(struct soc_camera_device
*icd
)
271 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
273 if (ici
->ops
->put_formats
)
274 ici
->ops
->put_formats(icd
);
275 icd
->current_fmt
= NULL
;
276 icd
->num_user_formats
= 0;
277 vfree(icd
->user_formats
);
278 icd
->user_formats
= NULL
;
281 #define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
284 /* Called with .vb_lock held */
285 static int soc_camera_set_fmt(struct soc_camera_file
*icf
,
286 struct v4l2_format
*f
)
288 struct soc_camera_device
*icd
= icf
->icd
;
289 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
290 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
293 dev_dbg(&icd
->dev
, "S_FMT(%c%c%c%c, %ux%u)\n",
294 pixfmtstr(pix
->pixelformat
), pix
->width
, pix
->height
);
296 /* We always call try_fmt() before set_fmt() or set_crop() */
297 ret
= ici
->ops
->try_fmt(icd
, f
);
301 ret
= ici
->ops
->set_fmt(icd
, f
);
304 } else if (!icd
->current_fmt
||
305 icd
->current_fmt
->fourcc
!= pix
->pixelformat
) {
307 "Host driver hasn't set up current format correctly!\n");
311 icd
->user_width
= pix
->width
;
312 icd
->user_height
= pix
->height
;
314 icd
->field
= pix
->field
;
316 if (f
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
317 dev_warn(&icd
->dev
, "Attention! Wrong buf-type %d\n",
320 dev_dbg(&icd
->dev
, "set width: %d height: %d\n",
321 icd
->user_width
, icd
->user_height
);
323 /* set physical bus parameters */
324 return ici
->ops
->set_bus_param(icd
, pix
->pixelformat
);
327 static int soc_camera_open(struct file
*file
)
329 struct video_device
*vdev
= video_devdata(file
);
330 struct soc_camera_device
*icd
= container_of(vdev
->parent
,
331 struct soc_camera_device
,
333 struct soc_camera_link
*icl
= to_soc_camera_link(icd
);
334 struct soc_camera_host
*ici
;
335 struct soc_camera_file
*icf
;
339 /* No device driver attached */
342 ici
= to_soc_camera_host(icd
->dev
.parent
);
344 icf
= vmalloc(sizeof(*icf
));
348 if (!try_module_get(ici
->ops
->owner
)) {
349 dev_err(&icd
->dev
, "Couldn't lock capture bus driver.\n");
355 * Protect against icd->ops->remove() until we module_get() both
358 mutex_lock(&icd
->video_lock
);
363 /* Now we really have to activate the camera */
364 if (icd
->use_count
== 1) {
365 /* Restore parameters before the last close() per V4L2 API */
366 struct v4l2_format f
= {
367 .type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
,
369 .width
= icd
->user_width
,
370 .height
= icd
->user_height
,
372 .pixelformat
= icd
->current_fmt
->fourcc
,
373 .colorspace
= icd
->current_fmt
->colorspace
,
378 ret
= icl
->power(icd
->pdev
, 1);
383 /* The camera could have been already on, try to reset */
385 icl
->reset(icd
->pdev
);
387 ret
= ici
->ops
->add(icd
);
389 dev_err(&icd
->dev
, "Couldn't activate the camera: %d\n", ret
);
393 /* Try to configure with default parameters */
394 ret
= soc_camera_set_fmt(icf
, &f
);
399 file
->private_data
= icf
;
400 dev_dbg(&icd
->dev
, "camera device open\n");
402 ici
->ops
->init_videobuf(&icf
->vb_vidq
, icd
);
404 mutex_unlock(&icd
->video_lock
);
409 * First five errors are entered with the .video_lock held
413 ici
->ops
->remove(icd
);
416 icl
->power(icd
->pdev
, 0);
419 mutex_unlock(&icd
->video_lock
);
420 module_put(ici
->ops
->owner
);
426 static int soc_camera_close(struct file
*file
)
428 struct soc_camera_file
*icf
= file
->private_data
;
429 struct soc_camera_device
*icd
= icf
->icd
;
430 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
432 mutex_lock(&icd
->video_lock
);
434 if (!icd
->use_count
) {
435 struct soc_camera_link
*icl
= to_soc_camera_link(icd
);
437 ici
->ops
->remove(icd
);
439 icl
->power(icd
->pdev
, 0);
442 mutex_unlock(&icd
->video_lock
);
444 module_put(ici
->ops
->owner
);
448 dev_dbg(&icd
->dev
, "camera device close\n");
453 static ssize_t
soc_camera_read(struct file
*file
, char __user
*buf
,
454 size_t count
, loff_t
*ppos
)
456 struct soc_camera_file
*icf
= file
->private_data
;
457 struct soc_camera_device
*icd
= icf
->icd
;
460 dev_err(&icd
->dev
, "camera device read not implemented\n");
465 static int soc_camera_mmap(struct file
*file
, struct vm_area_struct
*vma
)
467 struct soc_camera_file
*icf
= file
->private_data
;
468 struct soc_camera_device
*icd
= icf
->icd
;
471 dev_dbg(&icd
->dev
, "mmap called, vma=0x%08lx\n", (unsigned long)vma
);
473 err
= videobuf_mmap_mapper(&icf
->vb_vidq
, vma
);
475 dev_dbg(&icd
->dev
, "vma start=0x%08lx, size=%ld, ret=%d\n",
476 (unsigned long)vma
->vm_start
,
477 (unsigned long)vma
->vm_end
- (unsigned long)vma
->vm_start
,
483 static unsigned int soc_camera_poll(struct file
*file
, poll_table
*pt
)
485 struct soc_camera_file
*icf
= file
->private_data
;
486 struct soc_camera_device
*icd
= icf
->icd
;
487 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
489 if (list_empty(&icf
->vb_vidq
.stream
)) {
490 dev_err(&icd
->dev
, "Trying to poll with no queued buffers!\n");
494 return ici
->ops
->poll(file
, pt
);
497 static struct v4l2_file_operations soc_camera_fops
= {
498 .owner
= THIS_MODULE
,
499 .open
= soc_camera_open
,
500 .release
= soc_camera_close
,
501 .ioctl
= video_ioctl2
,
502 .read
= soc_camera_read
,
503 .mmap
= soc_camera_mmap
,
504 .poll
= soc_camera_poll
,
507 static int soc_camera_s_fmt_vid_cap(struct file
*file
, void *priv
,
508 struct v4l2_format
*f
)
510 struct soc_camera_file
*icf
= file
->private_data
;
511 struct soc_camera_device
*icd
= icf
->icd
;
514 WARN_ON(priv
!= file
->private_data
);
516 mutex_lock(&icf
->vb_vidq
.vb_lock
);
518 if (icf
->vb_vidq
.bufs
[0]) {
519 dev_err(&icd
->dev
, "S_FMT denied: queue initialised\n");
524 ret
= soc_camera_set_fmt(icf
, f
);
527 mutex_unlock(&icf
->vb_vidq
.vb_lock
);
532 static int soc_camera_enum_fmt_vid_cap(struct file
*file
, void *priv
,
533 struct v4l2_fmtdesc
*f
)
535 struct soc_camera_file
*icf
= file
->private_data
;
536 struct soc_camera_device
*icd
= icf
->icd
;
537 const struct soc_camera_data_format
*format
;
539 WARN_ON(priv
!= file
->private_data
);
541 if (f
->index
>= icd
->num_user_formats
)
544 format
= icd
->user_formats
[f
->index
].host_fmt
;
546 strlcpy(f
->description
, format
->name
, sizeof(f
->description
));
547 f
->pixelformat
= format
->fourcc
;
551 static int soc_camera_g_fmt_vid_cap(struct file
*file
, void *priv
,
552 struct v4l2_format
*f
)
554 struct soc_camera_file
*icf
= file
->private_data
;
555 struct soc_camera_device
*icd
= icf
->icd
;
556 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
558 WARN_ON(priv
!= file
->private_data
);
560 pix
->width
= icd
->user_width
;
561 pix
->height
= icd
->user_height
;
562 pix
->field
= icf
->vb_vidq
.field
;
563 pix
->pixelformat
= icd
->current_fmt
->fourcc
;
564 pix
->bytesperline
= pix
->width
*
565 DIV_ROUND_UP(icd
->current_fmt
->depth
, 8);
566 pix
->sizeimage
= pix
->height
* pix
->bytesperline
;
567 dev_dbg(&icd
->dev
, "current_fmt->fourcc: 0x%08x\n",
568 icd
->current_fmt
->fourcc
);
572 static int soc_camera_querycap(struct file
*file
, void *priv
,
573 struct v4l2_capability
*cap
)
575 struct soc_camera_file
*icf
= file
->private_data
;
576 struct soc_camera_device
*icd
= icf
->icd
;
577 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
579 WARN_ON(priv
!= file
->private_data
);
581 strlcpy(cap
->driver
, ici
->drv_name
, sizeof(cap
->driver
));
582 return ici
->ops
->querycap(ici
, cap
);
585 static int soc_camera_streamon(struct file
*file
, void *priv
,
586 enum v4l2_buf_type i
)
588 struct soc_camera_file
*icf
= file
->private_data
;
589 struct soc_camera_device
*icd
= icf
->icd
;
590 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
593 WARN_ON(priv
!= file
->private_data
);
595 if (i
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
598 mutex_lock(&icd
->video_lock
);
600 v4l2_subdev_call(sd
, video
, s_stream
, 1);
602 /* This calls buf_queue from host driver's videobuf_queue_ops */
603 ret
= videobuf_streamon(&icf
->vb_vidq
);
605 mutex_unlock(&icd
->video_lock
);
610 static int soc_camera_streamoff(struct file
*file
, void *priv
,
611 enum v4l2_buf_type i
)
613 struct soc_camera_file
*icf
= file
->private_data
;
614 struct soc_camera_device
*icd
= icf
->icd
;
615 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
617 WARN_ON(priv
!= file
->private_data
);
619 if (i
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
622 mutex_lock(&icd
->video_lock
);
624 /* This calls buf_release from host driver's videobuf_queue_ops for all
625 * remaining buffers. When the last buffer is freed, stop capture */
626 videobuf_streamoff(&icf
->vb_vidq
);
628 v4l2_subdev_call(sd
, video
, s_stream
, 0);
630 mutex_unlock(&icd
->video_lock
);
635 static int soc_camera_queryctrl(struct file
*file
, void *priv
,
636 struct v4l2_queryctrl
*qc
)
638 struct soc_camera_file
*icf
= file
->private_data
;
639 struct soc_camera_device
*icd
= icf
->icd
;
640 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
643 WARN_ON(priv
!= file
->private_data
);
648 /* First check host controls */
649 for (i
= 0; i
< ici
->ops
->num_controls
; i
++)
650 if (qc
->id
== ici
->ops
->controls
[i
].id
) {
651 memcpy(qc
, &(ici
->ops
->controls
[i
]),
656 /* Then device controls */
657 for (i
= 0; i
< icd
->ops
->num_controls
; i
++)
658 if (qc
->id
== icd
->ops
->controls
[i
].id
) {
659 memcpy(qc
, &(icd
->ops
->controls
[i
]),
667 static int soc_camera_g_ctrl(struct file
*file
, void *priv
,
668 struct v4l2_control
*ctrl
)
670 struct soc_camera_file
*icf
= file
->private_data
;
671 struct soc_camera_device
*icd
= icf
->icd
;
672 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
673 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
676 WARN_ON(priv
!= file
->private_data
);
678 if (ici
->ops
->get_ctrl
) {
679 ret
= ici
->ops
->get_ctrl(icd
, ctrl
);
680 if (ret
!= -ENOIOCTLCMD
)
684 return v4l2_subdev_call(sd
, core
, g_ctrl
, ctrl
);
687 static int soc_camera_s_ctrl(struct file
*file
, void *priv
,
688 struct v4l2_control
*ctrl
)
690 struct soc_camera_file
*icf
= file
->private_data
;
691 struct soc_camera_device
*icd
= icf
->icd
;
692 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
693 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
696 WARN_ON(priv
!= file
->private_data
);
698 if (ici
->ops
->set_ctrl
) {
699 ret
= ici
->ops
->set_ctrl(icd
, ctrl
);
700 if (ret
!= -ENOIOCTLCMD
)
704 return v4l2_subdev_call(sd
, core
, s_ctrl
, ctrl
);
707 static int soc_camera_cropcap(struct file
*file
, void *fh
,
708 struct v4l2_cropcap
*a
)
710 struct soc_camera_file
*icf
= file
->private_data
;
711 struct soc_camera_device
*icd
= icf
->icd
;
712 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
714 return ici
->ops
->cropcap(icd
, a
);
717 static int soc_camera_g_crop(struct file
*file
, void *fh
,
720 struct soc_camera_file
*icf
= file
->private_data
;
721 struct soc_camera_device
*icd
= icf
->icd
;
722 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
725 mutex_lock(&icf
->vb_vidq
.vb_lock
);
726 ret
= ici
->ops
->get_crop(icd
, a
);
727 mutex_unlock(&icf
->vb_vidq
.vb_lock
);
733 * According to the V4L2 API, drivers shall not update the struct v4l2_crop
734 * argument with the actual geometry, instead, the user shall use G_CROP to
735 * retrieve it. However, we expect camera host and client drivers to update
736 * the argument, which we then use internally, but do not return to the user.
738 static int soc_camera_s_crop(struct file
*file
, void *fh
,
741 struct soc_camera_file
*icf
= file
->private_data
;
742 struct soc_camera_device
*icd
= icf
->icd
;
743 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
744 struct v4l2_rect
*rect
= &a
->c
;
745 struct v4l2_crop current_crop
;
748 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
751 dev_dbg(&icd
->dev
, "S_CROP(%ux%u@%u:%u)\n",
752 rect
->width
, rect
->height
, rect
->left
, rect
->top
);
754 /* Cropping is allowed during a running capture, guard consistency */
755 mutex_lock(&icf
->vb_vidq
.vb_lock
);
757 /* If get_crop fails, we'll let host and / or client drivers decide */
758 ret
= ici
->ops
->get_crop(icd
, ¤t_crop
);
760 /* Prohibit window size change with initialised buffers */
761 if (icf
->vb_vidq
.bufs
[0] && !ret
&&
762 (a
->c
.width
!= current_crop
.c
.width
||
763 a
->c
.height
!= current_crop
.c
.height
)) {
765 "S_CROP denied: queue initialised and sizes differ\n");
768 ret
= ici
->ops
->set_crop(icd
, a
);
771 mutex_unlock(&icf
->vb_vidq
.vb_lock
);
776 static int soc_camera_g_chip_ident(struct file
*file
, void *fh
,
777 struct v4l2_dbg_chip_ident
*id
)
779 struct soc_camera_file
*icf
= file
->private_data
;
780 struct soc_camera_device
*icd
= icf
->icd
;
781 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
783 return v4l2_subdev_call(sd
, core
, g_chip_ident
, id
);
786 #ifdef CONFIG_VIDEO_ADV_DEBUG
787 static int soc_camera_g_register(struct file
*file
, void *fh
,
788 struct v4l2_dbg_register
*reg
)
790 struct soc_camera_file
*icf
= file
->private_data
;
791 struct soc_camera_device
*icd
= icf
->icd
;
792 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
794 return v4l2_subdev_call(sd
, core
, g_register
, reg
);
797 static int soc_camera_s_register(struct file
*file
, void *fh
,
798 struct v4l2_dbg_register
*reg
)
800 struct soc_camera_file
*icf
= file
->private_data
;
801 struct soc_camera_device
*icd
= icf
->icd
;
802 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
804 return v4l2_subdev_call(sd
, core
, s_register
, reg
);
808 /* So far this function cannot fail */
809 static void scan_add_host(struct soc_camera_host
*ici
)
811 struct soc_camera_device
*icd
;
813 mutex_lock(&list_lock
);
815 list_for_each_entry(icd
, &devices
, list
) {
816 if (icd
->iface
== ici
->nr
) {
818 icd
->dev
.parent
= ici
->v4l2_dev
.dev
;
819 dev_set_name(&icd
->dev
, "%u-%u", icd
->iface
,
821 ret
= device_register(&icd
->dev
);
823 icd
->dev
.parent
= NULL
;
825 "Cannot register device: %d\n", ret
);
830 mutex_unlock(&list_lock
);
833 #ifdef CONFIG_I2C_BOARDINFO
834 static int soc_camera_init_i2c(struct soc_camera_device
*icd
,
835 struct soc_camera_link
*icl
)
837 struct i2c_client
*client
;
838 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
839 struct i2c_adapter
*adap
= i2c_get_adapter(icl
->i2c_adapter_id
);
840 struct v4l2_subdev
*subdev
;
845 dev_err(&icd
->dev
, "Cannot get I2C adapter #%d. No driver?\n",
846 icl
->i2c_adapter_id
);
850 icl
->board_info
->platform_data
= icd
;
852 subdev
= v4l2_i2c_new_subdev_board(&ici
->v4l2_dev
, adap
,
853 icl
->module_name
, icl
->board_info
, NULL
);
859 client
= subdev
->priv
;
861 /* Use to_i2c_client(dev) to recover the i2c client */
862 dev_set_drvdata(&icd
->dev
, &client
->dev
);
866 i2c_put_adapter(adap
);
871 static void soc_camera_free_i2c(struct soc_camera_device
*icd
)
873 struct i2c_client
*client
=
874 to_i2c_client(to_soc_camera_control(icd
));
875 dev_set_drvdata(&icd
->dev
, NULL
);
876 v4l2_device_unregister_subdev(i2c_get_clientdata(client
));
877 i2c_unregister_device(client
);
878 i2c_put_adapter(client
->adapter
);
881 #define soc_camera_init_i2c(icd, icl) (-ENODEV)
882 #define soc_camera_free_i2c(icd) do {} while (0)
885 static int soc_camera_video_start(struct soc_camera_device
*icd
);
886 static int video_dev_create(struct soc_camera_device
*icd
);
887 /* Called during host-driver probe */
888 static int soc_camera_probe(struct device
*dev
)
890 struct soc_camera_device
*icd
= to_soc_camera_dev(dev
);
891 struct soc_camera_host
*ici
= to_soc_camera_host(dev
->parent
);
892 struct soc_camera_link
*icl
= to_soc_camera_link(icd
);
893 struct device
*control
= NULL
;
894 struct v4l2_subdev
*sd
;
895 struct v4l2_format f
= {.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
};
898 dev_info(dev
, "Probing %s\n", dev_name(dev
));
901 ret
= icl
->power(icd
->pdev
, 1);
904 "Platform failed to power-on the camera.\n");
909 /* The camera could have been already on, try to reset */
911 icl
->reset(icd
->pdev
);
913 ret
= ici
->ops
->add(icd
);
917 /* Must have icd->vdev before registering the device */
918 ret
= video_dev_create(icd
);
922 /* Non-i2c cameras, e.g., soc_camera_platform, have no board_info */
923 if (icl
->board_info
) {
924 ret
= soc_camera_init_i2c(icd
, icl
);
927 } else if (!icl
->add_device
|| !icl
->del_device
) {
931 if (icl
->module_name
)
932 ret
= request_module(icl
->module_name
);
934 ret
= icl
->add_device(icl
, &icd
->dev
);
939 * FIXME: this is racy, have to use driver-binding notification,
940 * when it is available
942 control
= to_soc_camera_control(icd
);
943 if (!control
|| !control
->driver
|| !dev_get_drvdata(control
) ||
944 !try_module_get(control
->driver
->owner
)) {
945 icl
->del_device(icl
);
950 /* At this point client .probe() should have run already */
951 ret
= soc_camera_init_user_formats(icd
);
955 icd
->field
= V4L2_FIELD_ANY
;
957 /* ..._video_start() will create a device node, so we have to protect */
958 mutex_lock(&icd
->video_lock
);
960 ret
= soc_camera_video_start(icd
);
964 /* Try to improve our guess of a reasonable window format */
965 sd
= soc_camera_to_subdev(icd
);
966 if (!v4l2_subdev_call(sd
, video
, g_fmt
, &f
)) {
967 icd
->user_width
= f
.fmt
.pix
.width
;
968 icd
->user_height
= f
.fmt
.pix
.height
;
971 /* Do we have to sysfs_remove_link() before device_unregister()? */
972 if (sysfs_create_link(&icd
->dev
.kobj
, &to_soc_camera_control(icd
)->kobj
,
974 dev_warn(&icd
->dev
, "Failed creating the control symlink\n");
976 ici
->ops
->remove(icd
);
979 icl
->power(icd
->pdev
, 0);
981 mutex_unlock(&icd
->video_lock
);
986 mutex_unlock(&icd
->video_lock
);
987 soc_camera_free_user_formats(icd
);
989 if (icl
->board_info
) {
990 soc_camera_free_i2c(icd
);
992 icl
->del_device(icl
);
993 module_put(control
->driver
->owner
);
997 video_device_release(icd
->vdev
);
999 ici
->ops
->remove(icd
);
1002 icl
->power(icd
->pdev
, 0);
1007 /* This is called on device_unregister, which only means we have to disconnect
1008 * from the host, but not remove ourselves from the device list */
1009 static int soc_camera_remove(struct device
*dev
)
1011 struct soc_camera_device
*icd
= to_soc_camera_dev(dev
);
1012 struct soc_camera_link
*icl
= to_soc_camera_link(icd
);
1013 struct video_device
*vdev
= icd
->vdev
;
1015 BUG_ON(!dev
->parent
);
1018 mutex_lock(&icd
->video_lock
);
1019 video_unregister_device(vdev
);
1021 mutex_unlock(&icd
->video_lock
);
1024 if (icl
->board_info
) {
1025 soc_camera_free_i2c(icd
);
1027 struct device_driver
*drv
= to_soc_camera_control(icd
) ?
1028 to_soc_camera_control(icd
)->driver
: NULL
;
1030 icl
->del_device(icl
);
1031 module_put(drv
->owner
);
1034 soc_camera_free_user_formats(icd
);
1039 static int soc_camera_suspend(struct device
*dev
, pm_message_t state
)
1041 struct soc_camera_device
*icd
= to_soc_camera_dev(dev
);
1042 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1045 if (ici
->ops
->suspend
)
1046 ret
= ici
->ops
->suspend(icd
, state
);
1051 static int soc_camera_resume(struct device
*dev
)
1053 struct soc_camera_device
*icd
= to_soc_camera_dev(dev
);
1054 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1057 if (ici
->ops
->resume
)
1058 ret
= ici
->ops
->resume(icd
);
1063 static struct bus_type soc_camera_bus_type
= {
1064 .name
= "soc-camera",
1065 .probe
= soc_camera_probe
,
1066 .remove
= soc_camera_remove
,
1067 .suspend
= soc_camera_suspend
,
1068 .resume
= soc_camera_resume
,
1071 static struct device_driver ic_drv
= {
1073 .bus
= &soc_camera_bus_type
,
1074 .owner
= THIS_MODULE
,
1077 static void dummy_release(struct device
*dev
)
1081 static int default_cropcap(struct soc_camera_device
*icd
,
1082 struct v4l2_cropcap
*a
)
1084 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1085 return v4l2_subdev_call(sd
, video
, cropcap
, a
);
1088 static int default_g_crop(struct soc_camera_device
*icd
, struct v4l2_crop
*a
)
1090 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1091 return v4l2_subdev_call(sd
, video
, g_crop
, a
);
1094 static int default_s_crop(struct soc_camera_device
*icd
, struct v4l2_crop
*a
)
1096 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1097 return v4l2_subdev_call(sd
, video
, s_crop
, a
);
1100 int soc_camera_host_register(struct soc_camera_host
*ici
)
1102 struct soc_camera_host
*ix
;
1105 if (!ici
|| !ici
->ops
||
1106 !ici
->ops
->try_fmt
||
1107 !ici
->ops
->set_fmt
||
1108 !ici
->ops
->set_bus_param
||
1109 !ici
->ops
->querycap
||
1110 !ici
->ops
->init_videobuf
||
1111 !ici
->ops
->reqbufs
||
1113 !ici
->ops
->remove
||
1118 if (!ici
->ops
->set_crop
)
1119 ici
->ops
->set_crop
= default_s_crop
;
1120 if (!ici
->ops
->get_crop
)
1121 ici
->ops
->get_crop
= default_g_crop
;
1122 if (!ici
->ops
->cropcap
)
1123 ici
->ops
->cropcap
= default_cropcap
;
1125 mutex_lock(&list_lock
);
1126 list_for_each_entry(ix
, &hosts
, list
) {
1127 if (ix
->nr
== ici
->nr
) {
1133 ret
= v4l2_device_register(ici
->v4l2_dev
.dev
, &ici
->v4l2_dev
);
1137 list_add_tail(&ici
->list
, &hosts
);
1138 mutex_unlock(&list_lock
);
1145 mutex_unlock(&list_lock
);
1148 EXPORT_SYMBOL(soc_camera_host_register
);
1150 /* Unregister all clients! */
1151 void soc_camera_host_unregister(struct soc_camera_host
*ici
)
1153 struct soc_camera_device
*icd
;
1155 mutex_lock(&list_lock
);
1157 list_del(&ici
->list
);
1159 list_for_each_entry(icd
, &devices
, list
) {
1160 if (icd
->iface
== ici
->nr
) {
1161 /* The bus->remove will be called */
1162 device_unregister(&icd
->dev
);
1163 /* Not before device_unregister(), .remove
1164 * needs parent to call ici->ops->remove() */
1165 icd
->dev
.parent
= NULL
;
1167 /* If the host module is loaded again, device_register()
1168 * would complain "already initialised" */
1169 memset(&icd
->dev
.kobj
, 0, sizeof(icd
->dev
.kobj
));
1173 mutex_unlock(&list_lock
);
1175 v4l2_device_unregister(&ici
->v4l2_dev
);
1177 EXPORT_SYMBOL(soc_camera_host_unregister
);
1179 /* Image capture device */
1180 static int soc_camera_device_register(struct soc_camera_device
*icd
)
1182 struct soc_camera_device
*ix
;
1185 for (i
= 0; i
< 256 && num
< 0; i
++) {
1187 /* Check if this index is available on this interface */
1188 list_for_each_entry(ix
, &devices
, list
) {
1189 if (ix
->iface
== icd
->iface
&& ix
->devnum
== i
) {
1197 /* ok, we have 256 cameras on this host...
1198 * man, stay reasonable... */
1202 icd
->dev
.bus
= &soc_camera_bus_type
;
1204 icd
->dev
.release
= dummy_release
;
1206 icd
->host_priv
= NULL
;
1207 mutex_init(&icd
->video_lock
);
1209 list_add_tail(&icd
->list
, &devices
);
1214 static void soc_camera_device_unregister(struct soc_camera_device
*icd
)
1216 list_del(&icd
->list
);
1219 static const struct v4l2_ioctl_ops soc_camera_ioctl_ops
= {
1220 .vidioc_querycap
= soc_camera_querycap
,
1221 .vidioc_g_fmt_vid_cap
= soc_camera_g_fmt_vid_cap
,
1222 .vidioc_enum_fmt_vid_cap
= soc_camera_enum_fmt_vid_cap
,
1223 .vidioc_s_fmt_vid_cap
= soc_camera_s_fmt_vid_cap
,
1224 .vidioc_enum_input
= soc_camera_enum_input
,
1225 .vidioc_g_input
= soc_camera_g_input
,
1226 .vidioc_s_input
= soc_camera_s_input
,
1227 .vidioc_s_std
= soc_camera_s_std
,
1228 .vidioc_reqbufs
= soc_camera_reqbufs
,
1229 .vidioc_try_fmt_vid_cap
= soc_camera_try_fmt_vid_cap
,
1230 .vidioc_querybuf
= soc_camera_querybuf
,
1231 .vidioc_qbuf
= soc_camera_qbuf
,
1232 .vidioc_dqbuf
= soc_camera_dqbuf
,
1233 .vidioc_streamon
= soc_camera_streamon
,
1234 .vidioc_streamoff
= soc_camera_streamoff
,
1235 .vidioc_queryctrl
= soc_camera_queryctrl
,
1236 .vidioc_g_ctrl
= soc_camera_g_ctrl
,
1237 .vidioc_s_ctrl
= soc_camera_s_ctrl
,
1238 .vidioc_cropcap
= soc_camera_cropcap
,
1239 .vidioc_g_crop
= soc_camera_g_crop
,
1240 .vidioc_s_crop
= soc_camera_s_crop
,
1241 .vidioc_g_chip_ident
= soc_camera_g_chip_ident
,
1242 #ifdef CONFIG_VIDEO_ADV_DEBUG
1243 .vidioc_g_register
= soc_camera_g_register
,
1244 .vidioc_s_register
= soc_camera_s_register
,
1248 static int video_dev_create(struct soc_camera_device
*icd
)
1250 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1251 struct video_device
*vdev
= video_device_alloc();
1256 strlcpy(vdev
->name
, ici
->drv_name
, sizeof(vdev
->name
));
1258 vdev
->parent
= &icd
->dev
;
1259 vdev
->current_norm
= V4L2_STD_UNKNOWN
;
1260 vdev
->fops
= &soc_camera_fops
;
1261 vdev
->ioctl_ops
= &soc_camera_ioctl_ops
;
1262 vdev
->release
= video_device_release
;
1264 vdev
->tvnorms
= V4L2_STD_UNKNOWN
;
1272 * Called from soc_camera_probe() above (with .video_lock held???)
1274 static int soc_camera_video_start(struct soc_camera_device
*icd
)
1278 if (!icd
->dev
.parent
)
1282 !icd
->ops
->query_bus_param
||
1283 !icd
->ops
->set_bus_param
)
1286 ret
= video_register_device(icd
->vdev
, VFL_TYPE_GRABBER
,
1289 dev_err(&icd
->dev
, "video_register_device failed: %d\n", ret
);
1296 static int __devinit
soc_camera_pdrv_probe(struct platform_device
*pdev
)
1298 struct soc_camera_link
*icl
= pdev
->dev
.platform_data
;
1299 struct soc_camera_device
*icd
;
1305 icd
= kzalloc(sizeof(*icd
), GFP_KERNEL
);
1309 icd
->iface
= icl
->bus_id
;
1310 icd
->pdev
= &pdev
->dev
;
1311 platform_set_drvdata(pdev
, icd
);
1312 icd
->dev
.platform_data
= icl
;
1314 ret
= soc_camera_device_register(icd
);
1318 icd
->user_width
= DEFAULT_WIDTH
;
1319 icd
->user_height
= DEFAULT_HEIGHT
;
1329 /* Only called on rmmod for each platform device, since they are not
1330 * hot-pluggable. Now we know, that all our users - hosts and devices have
1331 * been unloaded already */
1332 static int __devexit
soc_camera_pdrv_remove(struct platform_device
*pdev
)
1334 struct soc_camera_device
*icd
= platform_get_drvdata(pdev
);
1339 soc_camera_device_unregister(icd
);
1346 static struct platform_driver __refdata soc_camera_pdrv
= {
1347 .remove
= __devexit_p(soc_camera_pdrv_remove
),
1349 .name
= "soc-camera-pdrv",
1350 .owner
= THIS_MODULE
,
1354 static int __init
soc_camera_init(void)
1356 int ret
= bus_register(&soc_camera_bus_type
);
1359 ret
= driver_register(&ic_drv
);
1363 ret
= platform_driver_probe(&soc_camera_pdrv
, soc_camera_pdrv_probe
);
1370 driver_unregister(&ic_drv
);
1372 bus_unregister(&soc_camera_bus_type
);
1376 static void __exit
soc_camera_exit(void)
1378 platform_driver_unregister(&soc_camera_pdrv
);
1379 driver_unregister(&ic_drv
);
1380 bus_unregister(&soc_camera_bus_type
);
1383 module_init(soc_camera_init
);
1384 module_exit(soc_camera_exit
);
1386 MODULE_DESCRIPTION("Image capture bus driver");
1387 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1388 MODULE_LICENSE("GPL");
1389 MODULE_ALIAS("platform:soc-camera-pdrv");