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