i2c: Fix userspace_device list corruption
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / video / soc_camera.c
blob36e617bd13c73778d6c945ef78f95491bf305f08
1 /*
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)
46 unsigned int i;
48 for (i = 0; i < icd->num_formats; i++)
49 if (icd->formats[i].fourcc == fourcc)
50 return icd->formats + i;
51 return NULL;
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)
58 unsigned int i;
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;
63 return NULL;
65 EXPORT_SYMBOL(soc_camera_xlate_by_fourcc);
67 /**
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,
74 unsigned long flags)
76 unsigned long f;
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;
97 return flags;
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;
119 int ret = 0;
121 if (inp->index != 0)
122 return -EINVAL;
124 if (icd->ops->enum_input)
125 ret = icd->ops->enum_input(icd, inp);
126 else {
127 /* default is camera */
128 inp->type = V4L2_INPUT_TYPE_CAMERA;
129 inp->std = V4L2_STD_UNKNOWN;
130 strcpy(inp->name, "Camera");
133 return ret;
136 static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i)
138 *i = 0;
140 return 0;
143 static int soc_camera_s_input(struct file *file, void *priv, unsigned int i)
145 if (i > 0)
146 return -EINVAL;
148 return 0;
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)
163 int ret;
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);
171 if (ret < 0)
172 return ret;
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;
219 else
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);
226 if (ret < 0)
227 return ret;
228 fmts += ret;
231 if (!fmts)
232 return -ENXIO;
234 icd->user_formats =
235 vmalloc(fmts * sizeof(struct soc_camera_format_xlate));
236 if (!icd->user_formats)
237 return -ENOMEM;
239 icd->num_user_formats = fmts;
241 dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts);
243 /* Second pass - actually fill data formats */
244 fmts = 0;
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;
250 } else {
251 ret = ici->ops->get_formats(icd, i,
252 &icd->user_formats[fmts]);
253 if (ret < 0)
254 goto egfmt;
255 fmts += ret;
258 icd->current_fmt = icd->user_formats[0].host_fmt;
260 return 0;
262 egfmt:
263 icd->num_user_formats = 0;
264 vfree(icd->user_formats);
265 return ret;
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, \
282 ((x) >> 24) & 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;
291 int ret;
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);
298 if (ret < 0)
299 return ret;
301 ret = ici->ops->set_fmt(icd, f);
302 if (ret < 0) {
303 return ret;
304 } else if (!icd->current_fmt ||
305 icd->current_fmt->fourcc != pix->pixelformat) {
306 dev_err(&icd->dev,
307 "Host driver hasn't set up current format correctly!\n");
308 return -EINVAL;
311 icd->user_width = pix->width;
312 icd->user_height = pix->height;
313 icf->vb_vidq.field =
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",
318 f->type);
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,
332 dev);
333 struct soc_camera_link *icl = to_soc_camera_link(icd);
334 struct soc_camera_host *ici;
335 struct soc_camera_file *icf;
336 int ret;
338 if (!icd->ops)
339 /* No device driver attached */
340 return -ENODEV;
342 ici = to_soc_camera_host(icd->dev.parent);
344 icf = vmalloc(sizeof(*icf));
345 if (!icf)
346 return -ENOMEM;
348 if (!try_module_get(ici->ops->owner)) {
349 dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
350 ret = -EINVAL;
351 goto emgi;
355 * Protect against icd->ops->remove() until we module_get() both
356 * drivers.
358 mutex_lock(&icd->video_lock);
360 icf->icd = icd;
361 icd->use_count++;
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,
368 .fmt.pix = {
369 .width = icd->user_width,
370 .height = icd->user_height,
371 .field = icd->field,
372 .pixelformat = icd->current_fmt->fourcc,
373 .colorspace = icd->current_fmt->colorspace,
377 if (icl->power) {
378 ret = icl->power(icd->pdev, 1);
379 if (ret < 0)
380 goto epower;
383 /* The camera could have been already on, try to reset */
384 if (icl->reset)
385 icl->reset(icd->pdev);
387 ret = ici->ops->add(icd);
388 if (ret < 0) {
389 dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
390 goto eiciadd;
393 /* Try to configure with default parameters */
394 ret = soc_camera_set_fmt(icf, &f);
395 if (ret < 0)
396 goto esfmt;
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);
406 return 0;
409 * First five errors are entered with the .video_lock held
410 * and use_count == 1
412 esfmt:
413 ici->ops->remove(icd);
414 eiciadd:
415 if (icl->power)
416 icl->power(icd->pdev, 0);
417 epower:
418 icd->use_count--;
419 mutex_unlock(&icd->video_lock);
420 module_put(ici->ops->owner);
421 emgi:
422 vfree(icf);
423 return ret;
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);
433 icd->use_count--;
434 if (!icd->use_count) {
435 struct soc_camera_link *icl = to_soc_camera_link(icd);
437 ici->ops->remove(icd);
438 if (icl->power)
439 icl->power(icd->pdev, 0);
442 mutex_unlock(&icd->video_lock);
444 module_put(ici->ops->owner);
446 vfree(icf);
448 dev_dbg(&icd->dev, "camera device close\n");
450 return 0;
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;
458 int err = -EINVAL;
460 dev_err(&icd->dev, "camera device read not implemented\n");
462 return err;
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;
469 int err;
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,
478 err);
480 return err;
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");
491 return POLLERR;
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;
512 int ret;
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");
520 ret = -EBUSY;
521 goto unlock;
524 ret = soc_camera_set_fmt(icf, f);
526 unlock:
527 mutex_unlock(&icf->vb_vidq.vb_lock);
529 return ret;
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)
542 return -EINVAL;
544 format = icd->user_formats[f->index].host_fmt;
546 strlcpy(f->description, format->name, sizeof(f->description));
547 f->pixelformat = format->fourcc;
548 return 0;
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);
569 return 0;
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);
591 int ret;
593 WARN_ON(priv != file->private_data);
595 if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
596 return -EINVAL;
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);
607 return ret;
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)
620 return -EINVAL;
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);
632 return 0;
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);
641 int i;
643 WARN_ON(priv != file->private_data);
645 if (!qc->id)
646 return -EINVAL;
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]),
652 sizeof(*qc));
653 return 0;
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]),
660 sizeof(*qc));
661 return 0;
664 return -EINVAL;
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);
674 int ret;
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)
681 return ret;
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);
694 int ret;
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)
701 return ret;
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,
718 struct v4l2_crop *a)
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);
723 int ret;
725 mutex_lock(&icf->vb_vidq.vb_lock);
726 ret = ici->ops->get_crop(icd, a);
727 mutex_unlock(&icf->vb_vidq.vb_lock);
729 return ret;
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,
739 struct v4l2_crop *a)
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;
746 int ret;
748 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
749 return -EINVAL;
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, &current_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)) {
764 dev_err(&icd->dev,
765 "S_CROP denied: queue initialised and sizes differ\n");
766 ret = -EBUSY;
767 } else {
768 ret = ici->ops->set_crop(icd, a);
771 mutex_unlock(&icf->vb_vidq.vb_lock);
773 return ret;
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);
806 #endif
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) {
817 int ret;
818 icd->dev.parent = ici->v4l2_dev.dev;
819 dev_set_name(&icd->dev, "%u-%u", icd->iface,
820 icd->devnum);
821 ret = device_register(&icd->dev);
822 if (ret < 0) {
823 icd->dev.parent = NULL;
824 dev_err(&icd->dev,
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;
841 int ret;
843 if (!adap) {
844 ret = -ENODEV;
845 dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
846 icl->i2c_adapter_id);
847 goto ei2cga;
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);
854 if (!subdev) {
855 ret = -ENOMEM;
856 goto ei2cnd;
859 client = subdev->priv;
861 /* Use to_i2c_client(dev) to recover the i2c client */
862 dev_set_drvdata(&icd->dev, &client->dev);
864 return 0;
865 ei2cnd:
866 i2c_put_adapter(adap);
867 ei2cga:
868 return ret;
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);
880 #else
881 #define soc_camera_init_i2c(icd, icl) (-ENODEV)
882 #define soc_camera_free_i2c(icd) do {} while (0)
883 #endif
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};
896 int ret;
898 dev_info(dev, "Probing %s\n", dev_name(dev));
900 if (icl->power) {
901 ret = icl->power(icd->pdev, 1);
902 if (ret < 0) {
903 dev_err(dev,
904 "Platform failed to power-on the camera.\n");
905 goto epower;
909 /* The camera could have been already on, try to reset */
910 if (icl->reset)
911 icl->reset(icd->pdev);
913 ret = ici->ops->add(icd);
914 if (ret < 0)
915 goto eadd;
917 /* Must have icd->vdev before registering the device */
918 ret = video_dev_create(icd);
919 if (ret < 0)
920 goto evdc;
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);
925 if (ret < 0)
926 goto eadddev;
927 } else if (!icl->add_device || !icl->del_device) {
928 ret = -EINVAL;
929 goto eadddev;
930 } else {
931 if (icl->module_name)
932 ret = request_module(icl->module_name);
934 ret = icl->add_device(icl, &icd->dev);
935 if (ret < 0)
936 goto eadddev;
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);
946 goto enodrv;
950 /* At this point client .probe() should have run already */
951 ret = soc_camera_init_user_formats(icd);
952 if (ret < 0)
953 goto eiufmt;
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);
961 if (ret < 0)
962 goto evidstart;
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,
973 "control"))
974 dev_warn(&icd->dev, "Failed creating the control symlink\n");
976 ici->ops->remove(icd);
978 if (icl->power)
979 icl->power(icd->pdev, 0);
981 mutex_unlock(&icd->video_lock);
983 return 0;
985 evidstart:
986 mutex_unlock(&icd->video_lock);
987 soc_camera_free_user_formats(icd);
988 eiufmt:
989 if (icl->board_info) {
990 soc_camera_free_i2c(icd);
991 } else {
992 icl->del_device(icl);
993 module_put(control->driver->owner);
995 enodrv:
996 eadddev:
997 video_device_release(icd->vdev);
998 evdc:
999 ici->ops->remove(icd);
1000 eadd:
1001 if (icl->power)
1002 icl->power(icd->pdev, 0);
1003 epower:
1004 return ret;
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);
1017 if (vdev) {
1018 mutex_lock(&icd->video_lock);
1019 video_unregister_device(vdev);
1020 icd->vdev = NULL;
1021 mutex_unlock(&icd->video_lock);
1024 if (icl->board_info) {
1025 soc_camera_free_i2c(icd);
1026 } else {
1027 struct device_driver *drv = to_soc_camera_control(icd) ?
1028 to_soc_camera_control(icd)->driver : NULL;
1029 if (drv) {
1030 icl->del_device(icl);
1031 module_put(drv->owner);
1034 soc_camera_free_user_formats(icd);
1036 return 0;
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);
1043 int ret = 0;
1045 if (ici->ops->suspend)
1046 ret = ici->ops->suspend(icd, state);
1048 return ret;
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);
1055 int ret = 0;
1057 if (ici->ops->resume)
1058 ret = ici->ops->resume(icd);
1060 return ret;
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 = {
1072 .name = "camera",
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;
1103 int ret;
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 ||
1112 !ici->ops->add ||
1113 !ici->ops->remove ||
1114 !ici->ops->poll ||
1115 !ici->v4l2_dev.dev)
1116 return -EINVAL;
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) {
1128 ret = -EBUSY;
1129 goto edevreg;
1133 ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
1134 if (ret < 0)
1135 goto edevreg;
1137 list_add_tail(&ici->list, &hosts);
1138 mutex_unlock(&list_lock);
1140 scan_add_host(ici);
1142 return 0;
1144 edevreg:
1145 mutex_unlock(&list_lock);
1146 return ret;
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);
1164 * Not before device_unregister(), .remove
1165 * needs parent to call ici->ops->remove().
1166 * If the host module is loaded again, device_register()
1167 * would complain "already initialised," since 2.6.32
1168 * this is also needed to prevent use-after-free of the
1169 * device private data.
1171 memset(&icd->dev, 0, sizeof(icd->dev));
1175 mutex_unlock(&list_lock);
1177 v4l2_device_unregister(&ici->v4l2_dev);
1179 EXPORT_SYMBOL(soc_camera_host_unregister);
1181 /* Image capture device */
1182 static int soc_camera_device_register(struct soc_camera_device *icd)
1184 struct soc_camera_device *ix;
1185 int num = -1, i;
1187 for (i = 0; i < 256 && num < 0; i++) {
1188 num = i;
1189 /* Check if this index is available on this interface */
1190 list_for_each_entry(ix, &devices, list) {
1191 if (ix->iface == icd->iface && ix->devnum == i) {
1192 num = -1;
1193 break;
1198 if (num < 0)
1199 /* ok, we have 256 cameras on this host...
1200 * man, stay reasonable... */
1201 return -ENOMEM;
1203 icd->devnum = num;
1204 icd->dev.bus = &soc_camera_bus_type;
1206 icd->dev.release = dummy_release;
1207 icd->use_count = 0;
1208 icd->host_priv = NULL;
1209 mutex_init(&icd->video_lock);
1211 list_add_tail(&icd->list, &devices);
1213 return 0;
1216 static void soc_camera_device_unregister(struct soc_camera_device *icd)
1218 list_del(&icd->list);
1221 static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = {
1222 .vidioc_querycap = soc_camera_querycap,
1223 .vidioc_g_fmt_vid_cap = soc_camera_g_fmt_vid_cap,
1224 .vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap,
1225 .vidioc_s_fmt_vid_cap = soc_camera_s_fmt_vid_cap,
1226 .vidioc_enum_input = soc_camera_enum_input,
1227 .vidioc_g_input = soc_camera_g_input,
1228 .vidioc_s_input = soc_camera_s_input,
1229 .vidioc_s_std = soc_camera_s_std,
1230 .vidioc_reqbufs = soc_camera_reqbufs,
1231 .vidioc_try_fmt_vid_cap = soc_camera_try_fmt_vid_cap,
1232 .vidioc_querybuf = soc_camera_querybuf,
1233 .vidioc_qbuf = soc_camera_qbuf,
1234 .vidioc_dqbuf = soc_camera_dqbuf,
1235 .vidioc_streamon = soc_camera_streamon,
1236 .vidioc_streamoff = soc_camera_streamoff,
1237 .vidioc_queryctrl = soc_camera_queryctrl,
1238 .vidioc_g_ctrl = soc_camera_g_ctrl,
1239 .vidioc_s_ctrl = soc_camera_s_ctrl,
1240 .vidioc_cropcap = soc_camera_cropcap,
1241 .vidioc_g_crop = soc_camera_g_crop,
1242 .vidioc_s_crop = soc_camera_s_crop,
1243 .vidioc_g_chip_ident = soc_camera_g_chip_ident,
1244 #ifdef CONFIG_VIDEO_ADV_DEBUG
1245 .vidioc_g_register = soc_camera_g_register,
1246 .vidioc_s_register = soc_camera_s_register,
1247 #endif
1250 static int video_dev_create(struct soc_camera_device *icd)
1252 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1253 struct video_device *vdev = video_device_alloc();
1255 if (!vdev)
1256 return -ENOMEM;
1258 strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name));
1260 vdev->parent = &icd->dev;
1261 vdev->current_norm = V4L2_STD_UNKNOWN;
1262 vdev->fops = &soc_camera_fops;
1263 vdev->ioctl_ops = &soc_camera_ioctl_ops;
1264 vdev->release = video_device_release;
1265 vdev->minor = -1;
1266 vdev->tvnorms = V4L2_STD_UNKNOWN;
1268 icd->vdev = vdev;
1270 return 0;
1274 * Called from soc_camera_probe() above (with .video_lock held???)
1276 static int soc_camera_video_start(struct soc_camera_device *icd)
1278 int ret;
1280 if (!icd->dev.parent)
1281 return -ENODEV;
1283 if (!icd->ops ||
1284 !icd->ops->query_bus_param ||
1285 !icd->ops->set_bus_param)
1286 return -EINVAL;
1288 ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER,
1289 icd->vdev->minor);
1290 if (ret < 0) {
1291 dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
1292 return ret;
1295 return 0;
1298 static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1300 struct soc_camera_link *icl = pdev->dev.platform_data;
1301 struct soc_camera_device *icd;
1302 int ret;
1304 if (!icl)
1305 return -EINVAL;
1307 icd = kzalloc(sizeof(*icd), GFP_KERNEL);
1308 if (!icd)
1309 return -ENOMEM;
1311 icd->iface = icl->bus_id;
1312 icd->pdev = &pdev->dev;
1313 platform_set_drvdata(pdev, icd);
1314 icd->dev.platform_data = icl;
1316 ret = soc_camera_device_register(icd);
1317 if (ret < 0)
1318 goto escdevreg;
1320 icd->user_width = DEFAULT_WIDTH;
1321 icd->user_height = DEFAULT_HEIGHT;
1323 return 0;
1325 escdevreg:
1326 kfree(icd);
1328 return ret;
1331 /* Only called on rmmod for each platform device, since they are not
1332 * hot-pluggable. Now we know, that all our users - hosts and devices have
1333 * been unloaded already */
1334 static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1336 struct soc_camera_device *icd = platform_get_drvdata(pdev);
1338 if (!icd)
1339 return -EINVAL;
1341 soc_camera_device_unregister(icd);
1343 kfree(icd);
1345 return 0;
1348 static struct platform_driver __refdata soc_camera_pdrv = {
1349 .remove = __devexit_p(soc_camera_pdrv_remove),
1350 .driver = {
1351 .name = "soc-camera-pdrv",
1352 .owner = THIS_MODULE,
1356 static int __init soc_camera_init(void)
1358 int ret = bus_register(&soc_camera_bus_type);
1359 if (ret)
1360 return ret;
1361 ret = driver_register(&ic_drv);
1362 if (ret)
1363 goto edrvr;
1365 ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
1366 if (ret)
1367 goto epdr;
1369 return 0;
1371 epdr:
1372 driver_unregister(&ic_drv);
1373 edrvr:
1374 bus_unregister(&soc_camera_bus_type);
1375 return ret;
1378 static void __exit soc_camera_exit(void)
1380 platform_driver_unregister(&soc_camera_pdrv);
1381 driver_unregister(&ic_drv);
1382 bus_unregister(&soc_camera_bus_type);
1385 module_init(soc_camera_init);
1386 module_exit(soc_camera_exit);
1388 MODULE_DESCRIPTION("Image capture bus driver");
1389 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1390 MODULE_LICENSE("GPL");
1391 MODULE_ALIAS("platform:soc-camera-pdrv");