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