]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/media/video/soc_camera.c
V4L/DVB (13645): soc-camera: fix multi-line comment coding style
[mirror_ubuntu-zesty-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
6a6c8786
GL
281#define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
282 ((x) >> 24) & 0xff
283
df2ed070
GL
284/* Called with .vb_lock held */
285static int soc_camera_set_fmt(struct soc_camera_file *icf,
286 struct v4l2_format *f)
287{
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;
292
6a6c8786
GL
293 dev_dbg(&icd->dev, "S_FMT(%c%c%c%c, %ux%u)\n",
294 pixfmtstr(pix->pixelformat), pix->width, pix->height);
295
df2ed070
GL
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;
300
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) {
2aa58db4 306 dev_err(&icd->dev,
df2ed070
GL
307 "Host driver hasn't set up current format correctly!\n");
308 return -EINVAL;
309 }
310
6a6c8786
GL
311 icd->user_width = pix->width;
312 icd->user_height = pix->height;
313 icf->vb_vidq.field =
314 icd->field = pix->field;
025c18a1 315
df2ed070
GL
316 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
317 dev_warn(&icd->dev, "Attention! Wrong buf-type %d\n",
318 f->type);
319
320 dev_dbg(&icd->dev, "set width: %d height: %d\n",
6a6c8786 321 icd->user_width, icd->user_height);
df2ed070
GL
322
323 /* set physical bus parameters */
324 return ici->ops->set_bus_param(icd, pix->pixelformat);
325}
326
bec43661 327static int soc_camera_open(struct file *file)
e55222ef 328{
979ea1dd 329 struct video_device *vdev = video_devdata(file);
96c75399
GL
330 struct soc_camera_device *icd = container_of(vdev->parent,
331 struct soc_camera_device,
332 dev);
979ea1dd 333 struct soc_camera_link *icl = to_soc_camera_link(icd);
9dc4e48f 334 struct soc_camera_host *ici;
e55222ef
GL
335 struct soc_camera_file *icf;
336 int ret;
337
40e2e092
GL
338 if (!icd->ops)
339 /* No device driver attached */
340 return -ENODEV;
341
9dc4e48f 342 ici = to_soc_camera_host(icd->dev.parent);
e55222ef 343
40e2e092
GL
344 icf = vmalloc(sizeof(*icf));
345 if (!icf)
346 return -ENOMEM;
347
b8d9904c 348 if (!try_module_get(ici->ops->owner)) {
e55222ef
GL
349 dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
350 ret = -EINVAL;
351 goto emgi;
352 }
353
96c75399
GL
354 /*
355 * Protect against icd->ops->remove() until we module_get() both
356 * drivers.
357 */
1c3bb743
GL
358 mutex_lock(&icd->video_lock);
359
9dc4e48f 360 icf->icd = icd;
1a0063a9
GL
361 icd->use_count++;
362
9dc4e48f
GL
363 /* Now we really have to activate the camera */
364 if (icd->use_count == 1) {
025c18a1 365 /* Restore parameters before the last close() per V4L2 API */
df2ed070
GL
366 struct v4l2_format f = {
367 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
368 .fmt.pix = {
6a6c8786
GL
369 .width = icd->user_width,
370 .height = icd->user_height,
025c18a1 371 .field = icd->field,
fa48984e
GL
372 .pixelformat = icd->current_fmt->fourcc,
373 .colorspace = icd->current_fmt->colorspace,
df2ed070
GL
374 },
375 };
376
979ea1dd
GL
377 if (icl->power) {
378 ret = icl->power(icd->pdev, 1);
379 if (ret < 0)
380 goto epower;
381 }
382
383 /* The camera could have been already on, try to reset */
384 if (icl->reset)
385 icl->reset(icd->pdev);
386
b8d9904c 387 ret = ici->ops->add(icd);
9dc4e48f
GL
388 if (ret < 0) {
389 dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
9dc4e48f
GL
390 goto eiciadd;
391 }
df2ed070 392
df2ed070
GL
393 /* Try to configure with default parameters */
394 ret = soc_camera_set_fmt(icf, &f);
395 if (ret < 0)
396 goto esfmt;
9dc4e48f
GL
397 }
398
e55222ef
GL
399 file->private_data = icf;
400 dev_dbg(&icd->dev, "camera device open\n");
401
a034d1b7 402 ici->ops->init_videobuf(&icf->vb_vidq, icd);
e55222ef 403
979ea1dd
GL
404 mutex_unlock(&icd->video_lock);
405
e55222ef
GL
406 return 0;
407
df2ed070 408 /*
979ea1dd 409 * First five errors are entered with the .video_lock held
df2ed070
GL
410 * and use_count == 1
411 */
412esfmt:
413 ici->ops->remove(icd);
9dc4e48f 414eiciadd:
979ea1dd
GL
415 if (icl->power)
416 icl->power(icd->pdev, 0);
417epower:
c2786ad2 418 icd->use_count--;
1c3bb743 419 mutex_unlock(&icd->video_lock);
b8d9904c 420 module_put(ici->ops->owner);
e55222ef 421emgi:
e55222ef
GL
422 vfree(icf);
423 return ret;
424}
425
bec43661 426static int soc_camera_close(struct file *file)
e55222ef
GL
427{
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);
e55222ef 431
1c3bb743 432 mutex_lock(&icd->video_lock);
9dc4e48f 433 icd->use_count--;
40e2e092 434 if (!icd->use_count) {
979ea1dd
GL
435 struct soc_camera_link *icl = to_soc_camera_link(icd);
436
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
6a6c8786
GL
560 pix->width = icd->user_width;
561 pix->height = icd->user_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
5d28d525
GL
624 /*
625 * This calls buf_release from host driver's videobuf_queue_ops for all
626 * remaining buffers. When the last buffer is freed, stop capture
627 */
e55222ef
GL
628 videobuf_streamoff(&icf->vb_vidq);
629
c9c1f1c0 630 v4l2_subdev_call(sd, video, s_stream, 0);
e55222ef 631
1c3bb743
GL
632 mutex_unlock(&icd->video_lock);
633
e55222ef
GL
634 return 0;
635}
636
637static int soc_camera_queryctrl(struct file *file, void *priv,
638 struct v4l2_queryctrl *qc)
639{
640 struct soc_camera_file *icf = file->private_data;
641 struct soc_camera_device *icd = icf->icd;
2840d249 642 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
e55222ef
GL
643 int i;
644
645 WARN_ON(priv != file->private_data);
646
647 if (!qc->id)
648 return -EINVAL;
649
2840d249
GL
650 /* First check host controls */
651 for (i = 0; i < ici->ops->num_controls; i++)
652 if (qc->id == ici->ops->controls[i].id) {
653 memcpy(qc, &(ici->ops->controls[i]),
654 sizeof(*qc));
655 return 0;
656 }
657
658 /* Then device controls */
e55222ef
GL
659 for (i = 0; i < icd->ops->num_controls; i++)
660 if (qc->id == icd->ops->controls[i].id) {
661 memcpy(qc, &(icd->ops->controls[i]),
662 sizeof(*qc));
663 return 0;
664 }
665
666 return -EINVAL;
667}
668
669static int soc_camera_g_ctrl(struct file *file, void *priv,
670 struct v4l2_control *ctrl)
671{
672 struct soc_camera_file *icf = file->private_data;
673 struct soc_camera_device *icd = icf->icd;
979ea1dd 674 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
c9c1f1c0 675 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
2840d249 676 int ret;
e55222ef
GL
677
678 WARN_ON(priv != file->private_data);
679
2840d249
GL
680 if (ici->ops->get_ctrl) {
681 ret = ici->ops->get_ctrl(icd, ctrl);
682 if (ret != -ENOIOCTLCMD)
683 return ret;
684 }
685
c9c1f1c0 686 return v4l2_subdev_call(sd, core, g_ctrl, ctrl);
e55222ef
GL
687}
688
689static int soc_camera_s_ctrl(struct file *file, void *priv,
690 struct v4l2_control *ctrl)
691{
692 struct soc_camera_file *icf = file->private_data;
693 struct soc_camera_device *icd = icf->icd;
979ea1dd 694 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
c9c1f1c0 695 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
2840d249 696 int ret;
e55222ef
GL
697
698 WARN_ON(priv != file->private_data);
699
2840d249
GL
700 if (ici->ops->set_ctrl) {
701 ret = ici->ops->set_ctrl(icd, ctrl);
702 if (ret != -ENOIOCTLCMD)
703 return ret;
704 }
705
c9c1f1c0 706 return v4l2_subdev_call(sd, core, s_ctrl, ctrl);
e55222ef
GL
707}
708
709static int soc_camera_cropcap(struct file *file, void *fh,
710 struct v4l2_cropcap *a)
711{
712 struct soc_camera_file *icf = file->private_data;
713 struct soc_camera_device *icd = icf->icd;
6a6c8786 714 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
e55222ef 715
6a6c8786 716 return ici->ops->cropcap(icd, a);
e55222ef
GL
717}
718
719static int soc_camera_g_crop(struct file *file, void *fh,
720 struct v4l2_crop *a)
721{
722 struct soc_camera_file *icf = file->private_data;
723 struct soc_camera_device *icd = icf->icd;
6a6c8786
GL
724 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
725 int ret;
e55222ef 726
6a6c8786
GL
727 mutex_lock(&icf->vb_vidq.vb_lock);
728 ret = ici->ops->get_crop(icd, a);
729 mutex_unlock(&icf->vb_vidq.vb_lock);
e55222ef 730
6a6c8786 731 return ret;
e55222ef
GL
732}
733
68a54f0e
GL
734/*
735 * According to the V4L2 API, drivers shall not update the struct v4l2_crop
736 * argument with the actual geometry, instead, the user shall use G_CROP to
737 * retrieve it. However, we expect camera host and client drivers to update
738 * the argument, which we then use internally, but do not return to the user.
739 */
e55222ef
GL
740static int soc_camera_s_crop(struct file *file, void *fh,
741 struct v4l2_crop *a)
742{
743 struct soc_camera_file *icf = file->private_data;
744 struct soc_camera_device *icd = icf->icd;
64f5905e 745 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
6a6c8786
GL
746 struct v4l2_rect *rect = &a->c;
747 struct v4l2_crop current_crop;
e55222ef
GL
748 int ret;
749
750 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
751 return -EINVAL;
752
6a6c8786
GL
753 dev_dbg(&icd->dev, "S_CROP(%ux%u@%u:%u)\n",
754 rect->width, rect->height, rect->left, rect->top);
755
1c3bb743
GL
756 /* Cropping is allowed during a running capture, guard consistency */
757 mutex_lock(&icf->vb_vidq.vb_lock);
758
6a6c8786
GL
759 /* If get_crop fails, we'll let host and / or client drivers decide */
760 ret = ici->ops->get_crop(icd, &current_crop);
761
b897a91a 762 /* Prohibit window size change with initialised buffers */
6a6c8786
GL
763 if (icf->vb_vidq.bufs[0] && !ret &&
764 (a->c.width != current_crop.c.width ||
765 a->c.height != current_crop.c.height)) {
b897a91a
GL
766 dev_err(&icd->dev,
767 "S_CROP denied: queue initialised and sizes differ\n");
768 ret = -EBUSY;
6a6c8786
GL
769 } else {
770 ret = ici->ops->set_crop(icd, a);
b897a91a
GL
771 }
772
1c3bb743
GL
773 mutex_unlock(&icf->vb_vidq.vb_lock);
774
e55222ef
GL
775 return ret;
776}
777
778static int soc_camera_g_chip_ident(struct file *file, void *fh,
aecde8b5 779 struct v4l2_dbg_chip_ident *id)
e55222ef
GL
780{
781 struct soc_camera_file *icf = file->private_data;
782 struct soc_camera_device *icd = icf->icd;
c9c1f1c0 783 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
e55222ef 784
c9c1f1c0 785 return v4l2_subdev_call(sd, core, g_chip_ident, id);
e55222ef
GL
786}
787
788#ifdef CONFIG_VIDEO_ADV_DEBUG
789static int soc_camera_g_register(struct file *file, void *fh,
aecde8b5 790 struct v4l2_dbg_register *reg)
e55222ef
GL
791{
792 struct soc_camera_file *icf = file->private_data;
793 struct soc_camera_device *icd = icf->icd;
c9c1f1c0 794 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
e55222ef 795
c9c1f1c0 796 return v4l2_subdev_call(sd, core, g_register, reg);
e55222ef
GL
797}
798
799static int soc_camera_s_register(struct file *file, void *fh,
aecde8b5 800 struct v4l2_dbg_register *reg)
e55222ef
GL
801{
802 struct soc_camera_file *icf = file->private_data;
803 struct soc_camera_device *icd = icf->icd;
c9c1f1c0 804 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
e55222ef 805
c9c1f1c0 806 return v4l2_subdev_call(sd, core, s_register, reg);
e55222ef
GL
807}
808#endif
809
e55222ef
GL
810/* So far this function cannot fail */
811static void scan_add_host(struct soc_camera_host *ici)
812{
813 struct soc_camera_device *icd;
814
815 mutex_lock(&list_lock);
816
817 list_for_each_entry(icd, &devices, list) {
818 if (icd->iface == ici->nr) {
40e2e092 819 int ret;
979ea1dd 820 icd->dev.parent = ici->v4l2_dev.dev;
40e2e092
GL
821 dev_set_name(&icd->dev, "%u-%u", icd->iface,
822 icd->devnum);
823 ret = device_register(&icd->dev);
824 if (ret < 0) {
825 icd->dev.parent = NULL;
826 dev_err(&icd->dev,
827 "Cannot register device: %d\n", ret);
828 }
e55222ef
GL
829 }
830 }
831
832 mutex_unlock(&list_lock);
833}
834
40e2e092
GL
835#ifdef CONFIG_I2C_BOARDINFO
836static int soc_camera_init_i2c(struct soc_camera_device *icd,
837 struct soc_camera_link *icl)
e55222ef 838{
40e2e092 839 struct i2c_client *client;
979ea1dd 840 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
40e2e092 841 struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
979ea1dd 842 struct v4l2_subdev *subdev;
40e2e092 843 int ret;
e55222ef 844
40e2e092
GL
845 if (!adap) {
846 ret = -ENODEV;
847 dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
848 icl->i2c_adapter_id);
849 goto ei2cga;
850 }
e55222ef 851
40e2e092 852 icl->board_info->platform_data = icd;
e55222ef 853
979ea1dd
GL
854 subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
855 icl->module_name, icl->board_info, NULL);
856 if (!subdev) {
40e2e092
GL
857 ret = -ENOMEM;
858 goto ei2cnd;
e55222ef
GL
859 }
860
979ea1dd
GL
861 client = subdev->priv;
862
40e2e092
GL
863 /* Use to_i2c_client(dev) to recover the i2c client */
864 dev_set_drvdata(&icd->dev, &client->dev);
e55222ef 865
40e2e092
GL
866 return 0;
867ei2cnd:
868 i2c_put_adapter(adap);
869ei2cga:
e55222ef
GL
870 return ret;
871}
872
40e2e092
GL
873static void soc_camera_free_i2c(struct soc_camera_device *icd)
874{
875 struct i2c_client *client =
876 to_i2c_client(to_soc_camera_control(icd));
877 dev_set_drvdata(&icd->dev, NULL);
979ea1dd 878 v4l2_device_unregister_subdev(i2c_get_clientdata(client));
40e2e092
GL
879 i2c_unregister_device(client);
880 i2c_put_adapter(client->adapter);
881}
882#else
883#define soc_camera_init_i2c(icd, icl) (-ENODEV)
884#define soc_camera_free_i2c(icd) do {} while (0)
885#endif
886
979ea1dd 887static int soc_camera_video_start(struct soc_camera_device *icd);
40e2e092
GL
888static int video_dev_create(struct soc_camera_device *icd);
889/* Called during host-driver probe */
e55222ef
GL
890static int soc_camera_probe(struct device *dev)
891{
892 struct soc_camera_device *icd = to_soc_camera_dev(dev);
979ea1dd 893 struct soc_camera_host *ici = to_soc_camera_host(dev->parent);
40e2e092 894 struct soc_camera_link *icl = to_soc_camera_link(icd);
979ea1dd 895 struct device *control = NULL;
6a6c8786
GL
896 struct v4l2_subdev *sd;
897 struct v4l2_format f = {.type = V4L2_BUF_TYPE_VIDEO_CAPTURE};
e55222ef
GL
898 int ret;
899
40e2e092 900 dev_info(dev, "Probing %s\n", dev_name(dev));
1c3bb743 901
979ea1dd
GL
902 if (icl->power) {
903 ret = icl->power(icd->pdev, 1);
904 if (ret < 0) {
905 dev_err(dev,
906 "Platform failed to power-on the camera.\n");
907 goto epower;
908 }
909 }
910
911 /* The camera could have been already on, try to reset */
912 if (icl->reset)
913 icl->reset(icd->pdev);
914
915 ret = ici->ops->add(icd);
916 if (ret < 0)
917 goto eadd;
918
919 /* Must have icd->vdev before registering the device */
40e2e092
GL
920 ret = video_dev_create(icd);
921 if (ret < 0)
922 goto evdc;
1c3bb743 923
40e2e092
GL
924 /* Non-i2c cameras, e.g., soc_camera_platform, have no board_info */
925 if (icl->board_info) {
926 ret = soc_camera_init_i2c(icd, icl);
927 if (ret < 0)
928 goto eadddev;
929 } else if (!icl->add_device || !icl->del_device) {
1c3bb743 930 ret = -EINVAL;
40e2e092
GL
931 goto eadddev;
932 } else {
979ea1dd
GL
933 if (icl->module_name)
934 ret = request_module(icl->module_name);
935
40e2e092
GL
936 ret = icl->add_device(icl, &icd->dev);
937 if (ret < 0)
938 goto eadddev;
1c3bb743 939
96c75399
GL
940 /*
941 * FIXME: this is racy, have to use driver-binding notification,
942 * when it is available
943 */
979ea1dd 944 control = to_soc_camera_control(icd);
08590b96 945 if (!control || !control->driver || !dev_get_drvdata(control) ||
979ea1dd
GL
946 !try_module_get(control->driver->owner)) {
947 icl->del_device(icl);
948 goto enodrv;
949 }
40e2e092 950 }
e55222ef 951
fa48984e
GL
952 /* At this point client .probe() should have run already */
953 ret = soc_camera_init_user_formats(icd);
954 if (ret < 0)
955 goto eiufmt;
956
fa48984e
GL
957 icd->field = V4L2_FIELD_ANY;
958
979ea1dd
GL
959 /* ..._video_start() will create a device node, so we have to protect */
960 mutex_lock(&icd->video_lock);
961
962 ret = soc_camera_video_start(icd);
963 if (ret < 0)
964 goto evidstart;
965
6a6c8786
GL
966 /* Try to improve our guess of a reasonable window format */
967 sd = soc_camera_to_subdev(icd);
968 if (!v4l2_subdev_call(sd, video, g_fmt, &f)) {
969 icd->user_width = f.fmt.pix.width;
970 icd->user_height = f.fmt.pix.height;
971 }
972
40e2e092 973 /* Do we have to sysfs_remove_link() before device_unregister()? */
6a6c8786 974 if (sysfs_create_link(&icd->dev.kobj, &to_soc_camera_control(icd)->kobj,
40e2e092
GL
975 "control"))
976 dev_warn(&icd->dev, "Failed creating the control symlink\n");
025c18a1 977
979ea1dd
GL
978 ici->ops->remove(icd);
979
980 if (icl->power)
981 icl->power(icd->pdev, 0);
982
983 mutex_unlock(&icd->video_lock);
025c18a1 984
40e2e092 985 return 0;
e55222ef 986
979ea1dd
GL
987evidstart:
988 mutex_unlock(&icd->video_lock);
fa48984e
GL
989 soc_camera_free_user_formats(icd);
990eiufmt:
979ea1dd 991 if (icl->board_info) {
40e2e092 992 soc_camera_free_i2c(icd);
979ea1dd 993 } else {
40e2e092 994 icl->del_device(icl);
979ea1dd
GL
995 module_put(control->driver->owner);
996 }
997enodrv:
40e2e092
GL
998eadddev:
999 video_device_release(icd->vdev);
1000evdc:
979ea1dd
GL
1001 ici->ops->remove(icd);
1002eadd:
1003 if (icl->power)
1004 icl->power(icd->pdev, 0);
1005epower:
e55222ef
GL
1006 return ret;
1007}
1008
5d28d525
GL
1009/*
1010 * This is called on device_unregister, which only means we have to disconnect
1011 * from the host, but not remove ourselves from the device list
1012 */
e55222ef
GL
1013static int soc_camera_remove(struct device *dev)
1014{
1015 struct soc_camera_device *icd = to_soc_camera_dev(dev);
40e2e092
GL
1016 struct soc_camera_link *icl = to_soc_camera_link(icd);
1017 struct video_device *vdev = icd->vdev;
e55222ef 1018
40e2e092 1019 BUG_ON(!dev->parent);
e55222ef 1020
40e2e092
GL
1021 if (vdev) {
1022 mutex_lock(&icd->video_lock);
1023 video_unregister_device(vdev);
1024 icd->vdev = NULL;
1025 mutex_unlock(&icd->video_lock);
1026 }
1027
979ea1dd 1028 if (icl->board_info) {
40e2e092 1029 soc_camera_free_i2c(icd);
979ea1dd
GL
1030 } else {
1031 struct device_driver *drv = to_soc_camera_control(icd) ?
1032 to_soc_camera_control(icd)->driver : NULL;
1033 if (drv) {
1034 icl->del_device(icl);
1035 module_put(drv->owner);
1036 }
1037 }
fa48984e 1038 soc_camera_free_user_formats(icd);
025c18a1 1039
e55222ef
GL
1040 return 0;
1041}
1042
2e521061
RJ
1043static int soc_camera_suspend(struct device *dev, pm_message_t state)
1044{
1045 struct soc_camera_device *icd = to_soc_camera_dev(dev);
1046 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1047 int ret = 0;
1048
1049 if (ici->ops->suspend)
1050 ret = ici->ops->suspend(icd, state);
1051
1052 return ret;
1053}
1054
1055static int soc_camera_resume(struct device *dev)
1056{
1057 struct soc_camera_device *icd = to_soc_camera_dev(dev);
1058 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1059 int ret = 0;
1060
1061 if (ici->ops->resume)
1062 ret = ici->ops->resume(icd);
1063
1064 return ret;
1065}
1066
e55222ef
GL
1067static struct bus_type soc_camera_bus_type = {
1068 .name = "soc-camera",
1069 .probe = soc_camera_probe,
1070 .remove = soc_camera_remove,
2e521061
RJ
1071 .suspend = soc_camera_suspend,
1072 .resume = soc_camera_resume,
e55222ef
GL
1073};
1074
1075static struct device_driver ic_drv = {
1076 .name = "camera",
1077 .bus = &soc_camera_bus_type,
1078 .owner = THIS_MODULE,
1079};
1080
e55222ef
GL
1081static void dummy_release(struct device *dev)
1082{
1083}
1084
6a6c8786
GL
1085static int default_cropcap(struct soc_camera_device *icd,
1086 struct v4l2_cropcap *a)
1087{
1088 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1089 return v4l2_subdev_call(sd, video, cropcap, a);
1090}
1091
1092static int default_g_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
1093{
1094 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1095 return v4l2_subdev_call(sd, video, g_crop, a);
1096}
1097
1098static int default_s_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
1099{
1100 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1101 return v4l2_subdev_call(sd, video, s_crop, a);
1102}
1103
64ff9ba5
GL
1104static void soc_camera_device_init(struct device *dev, void *pdata)
1105{
1106 dev->platform_data = pdata;
1107 dev->bus = &soc_camera_bus_type;
1108 dev->release = dummy_release;
1109}
1110
b8d9904c 1111int soc_camera_host_register(struct soc_camera_host *ici)
e55222ef 1112{
e55222ef 1113 struct soc_camera_host *ix;
979ea1dd 1114 int ret;
e55222ef 1115
64f5905e
GL
1116 if (!ici || !ici->ops ||
1117 !ici->ops->try_fmt ||
1118 !ici->ops->set_fmt ||
1119 !ici->ops->set_bus_param ||
1120 !ici->ops->querycap ||
1121 !ici->ops->init_videobuf ||
1122 !ici->ops->reqbufs ||
1123 !ici->ops->add ||
1124 !ici->ops->remove ||
eff505fa 1125 !ici->ops->poll ||
979ea1dd 1126 !ici->v4l2_dev.dev)
e55222ef
GL
1127 return -EINVAL;
1128
6a6c8786
GL
1129 if (!ici->ops->set_crop)
1130 ici->ops->set_crop = default_s_crop;
1131 if (!ici->ops->get_crop)
1132 ici->ops->get_crop = default_g_crop;
1133 if (!ici->ops->cropcap)
1134 ici->ops->cropcap = default_cropcap;
1135
e55222ef
GL
1136 mutex_lock(&list_lock);
1137 list_for_each_entry(ix, &hosts, list) {
1138 if (ix->nr == ici->nr) {
979ea1dd
GL
1139 ret = -EBUSY;
1140 goto edevreg;
e55222ef
GL
1141 }
1142 }
1143
979ea1dd
GL
1144 ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
1145 if (ret < 0)
1146 goto edevreg;
eff505fa 1147
e55222ef
GL
1148 list_add_tail(&ici->list, &hosts);
1149 mutex_unlock(&list_lock);
1150
e55222ef
GL
1151 scan_add_host(ici);
1152
1153 return 0;
979ea1dd
GL
1154
1155edevreg:
1156 mutex_unlock(&list_lock);
1157 return ret;
e55222ef
GL
1158}
1159EXPORT_SYMBOL(soc_camera_host_register);
1160
1161/* Unregister all clients! */
1162void soc_camera_host_unregister(struct soc_camera_host *ici)
1163{
1164 struct soc_camera_device *icd;
1165
1166 mutex_lock(&list_lock);
1167
1168 list_del(&ici->list);
1169
1170 list_for_each_entry(icd, &devices, list) {
979ea1dd 1171 if (icd->iface == ici->nr) {
64ff9ba5 1172 void *pdata = icd->dev.platform_data;
40e2e092 1173 /* The bus->remove will be called */
e55222ef 1174 device_unregister(&icd->dev);
76823b79
GL
1175 /*
1176 * Not before device_unregister(), .remove
1177 * needs parent to call ici->ops->remove().
1178 * If the host module is loaded again, device_register()
1179 * would complain "already initialised," since 2.6.32
1180 * this is also needed to prevent use-after-free of the
1181 * device private data.
1182 */
1183 memset(&icd->dev, 0, sizeof(icd->dev));
64ff9ba5 1184 soc_camera_device_init(&icd->dev, pdata);
e55222ef
GL
1185 }
1186 }
1187
1188 mutex_unlock(&list_lock);
1189
979ea1dd 1190 v4l2_device_unregister(&ici->v4l2_dev);
e55222ef
GL
1191}
1192EXPORT_SYMBOL(soc_camera_host_unregister);
1193
1194/* Image capture device */
40e2e092 1195static int soc_camera_device_register(struct soc_camera_device *icd)
e55222ef
GL
1196{
1197 struct soc_camera_device *ix;
1198 int num = -1, i;
1199
e55222ef
GL
1200 for (i = 0; i < 256 && num < 0; i++) {
1201 num = i;
40e2e092 1202 /* Check if this index is available on this interface */
e55222ef
GL
1203 list_for_each_entry(ix, &devices, list) {
1204 if (ix->iface == icd->iface && ix->devnum == i) {
1205 num = -1;
1206 break;
1207 }
1208 }
1209 }
1210
1211 if (num < 0)
5d28d525
GL
1212 /*
1213 * ok, we have 256 cameras on this host...
1214 * man, stay reasonable...
1215 */
e55222ef
GL
1216 return -ENOMEM;
1217
64ff9ba5 1218 icd->devnum = num;
64f5905e
GL
1219 icd->use_count = 0;
1220 icd->host_priv = NULL;
1c3bb743 1221 mutex_init(&icd->video_lock);
e55222ef 1222
40e2e092
GL
1223 list_add_tail(&icd->list, &devices);
1224
1225 return 0;
e55222ef 1226}
e55222ef 1227
40e2e092 1228static void soc_camera_device_unregister(struct soc_camera_device *icd)
e55222ef 1229{
e55222ef 1230 list_del(&icd->list);
e55222ef 1231}
e55222ef 1232
a399810c
HV
1233static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = {
1234 .vidioc_querycap = soc_camera_querycap,
1235 .vidioc_g_fmt_vid_cap = soc_camera_g_fmt_vid_cap,
1236 .vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap,
1237 .vidioc_s_fmt_vid_cap = soc_camera_s_fmt_vid_cap,
1238 .vidioc_enum_input = soc_camera_enum_input,
1239 .vidioc_g_input = soc_camera_g_input,
1240 .vidioc_s_input = soc_camera_s_input,
1241 .vidioc_s_std = soc_camera_s_std,
1242 .vidioc_reqbufs = soc_camera_reqbufs,
1243 .vidioc_try_fmt_vid_cap = soc_camera_try_fmt_vid_cap,
1244 .vidioc_querybuf = soc_camera_querybuf,
1245 .vidioc_qbuf = soc_camera_qbuf,
1246 .vidioc_dqbuf = soc_camera_dqbuf,
1247 .vidioc_streamon = soc_camera_streamon,
1248 .vidioc_streamoff = soc_camera_streamoff,
1249 .vidioc_queryctrl = soc_camera_queryctrl,
1250 .vidioc_g_ctrl = soc_camera_g_ctrl,
1251 .vidioc_s_ctrl = soc_camera_s_ctrl,
1252 .vidioc_cropcap = soc_camera_cropcap,
1253 .vidioc_g_crop = soc_camera_g_crop,
1254 .vidioc_s_crop = soc_camera_s_crop,
1255 .vidioc_g_chip_ident = soc_camera_g_chip_ident,
1256#ifdef CONFIG_VIDEO_ADV_DEBUG
1257 .vidioc_g_register = soc_camera_g_register,
1258 .vidioc_s_register = soc_camera_s_register,
1259#endif
1260};
1261
40e2e092 1262static int video_dev_create(struct soc_camera_device *icd)
e55222ef
GL
1263{
1264 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
40e2e092 1265 struct video_device *vdev = video_device_alloc();
e55222ef 1266
e55222ef 1267 if (!vdev)
40e2e092 1268 return -ENOMEM;
e55222ef
GL
1269
1270 strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name));
1c3bb743 1271
5e85e732 1272 vdev->parent = &icd->dev;
e55222ef
GL
1273 vdev->current_norm = V4L2_STD_UNKNOWN;
1274 vdev->fops = &soc_camera_fops;
a399810c 1275 vdev->ioctl_ops = &soc_camera_ioctl_ops;
e55222ef 1276 vdev->release = video_device_release;
40e2e092 1277 vdev->tvnorms = V4L2_STD_UNKNOWN;
e55222ef 1278
e55222ef
GL
1279 icd->vdev = vdev;
1280
1281 return 0;
40e2e092 1282}
e55222ef 1283
40e2e092 1284/*
979ea1dd 1285 * Called from soc_camera_probe() above (with .video_lock held???)
40e2e092 1286 */
979ea1dd 1287static int soc_camera_video_start(struct soc_camera_device *icd)
40e2e092 1288{
979ea1dd 1289 int ret;
40e2e092
GL
1290
1291 if (!icd->dev.parent)
1292 return -ENODEV;
1293
1294 if (!icd->ops ||
40e2e092
GL
1295 !icd->ops->query_bus_param ||
1296 !icd->ops->set_bus_param)
1297 return -EINVAL;
1298
46b21094 1299 ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
979ea1dd
GL
1300 if (ret < 0) {
1301 dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
1302 return ret;
1303 }
40e2e092 1304
979ea1dd 1305 return 0;
e55222ef 1306}
e55222ef 1307
40e2e092 1308static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
0fd327bd 1309{
40e2e092
GL
1310 struct soc_camera_link *icl = pdev->dev.platform_data;
1311 struct soc_camera_device *icd;
c41debaf 1312 int ret;
0fd327bd 1313
40e2e092
GL
1314 if (!icl)
1315 return -EINVAL;
0fd327bd 1316
40e2e092
GL
1317 icd = kzalloc(sizeof(*icd), GFP_KERNEL);
1318 if (!icd)
1319 return -ENOMEM;
0fd327bd 1320
40e2e092 1321 icd->iface = icl->bus_id;
979ea1dd 1322 icd->pdev = &pdev->dev;
40e2e092 1323 platform_set_drvdata(pdev, icd);
0fd327bd 1324
40e2e092
GL
1325 ret = soc_camera_device_register(icd);
1326 if (ret < 0)
1327 goto escdevreg;
0fd327bd 1328
64ff9ba5
GL
1329 soc_camera_device_init(&icd->dev, icl);
1330
6a6c8786
GL
1331 icd->user_width = DEFAULT_WIDTH;
1332 icd->user_height = DEFAULT_HEIGHT;
1333
40e2e092 1334 return 0;
0fd327bd 1335
40e2e092
GL
1336escdevreg:
1337 kfree(icd);
0fd327bd 1338
40e2e092 1339 return ret;
c41debaf 1340}
0fd327bd 1341
5d28d525
GL
1342/*
1343 * Only called on rmmod for each platform device, since they are not
40e2e092 1344 * hot-pluggable. Now we know, that all our users - hosts and devices have
5d28d525
GL
1345 * been unloaded already
1346 */
40e2e092 1347static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
c41debaf 1348{
40e2e092 1349 struct soc_camera_device *icd = platform_get_drvdata(pdev);
c41debaf 1350
40e2e092 1351 if (!icd)
c41debaf
GL
1352 return -EINVAL;
1353
40e2e092 1354 soc_camera_device_unregister(icd);
c41debaf 1355
40e2e092 1356 kfree(icd);
c41debaf 1357
0fd327bd
GL
1358 return 0;
1359}
1360
1361static struct platform_driver __refdata soc_camera_pdrv = {
40e2e092
GL
1362 .remove = __devexit_p(soc_camera_pdrv_remove),
1363 .driver = {
1364 .name = "soc-camera-pdrv",
1365 .owner = THIS_MODULE,
0fd327bd
GL
1366 },
1367};
1368
e55222ef
GL
1369static int __init soc_camera_init(void)
1370{
1371 int ret = bus_register(&soc_camera_bus_type);
1372 if (ret)
1373 return ret;
1374 ret = driver_register(&ic_drv);
1375 if (ret)
1376 goto edrvr;
e55222ef 1377
40e2e092 1378 ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
0fd327bd
GL
1379 if (ret)
1380 goto epdr;
1381
e55222ef
GL
1382 return 0;
1383
0fd327bd
GL
1384epdr:
1385 driver_unregister(&ic_drv);
e55222ef
GL
1386edrvr:
1387 bus_unregister(&soc_camera_bus_type);
1388 return ret;
1389}
1390
1391static void __exit soc_camera_exit(void)
1392{
0fd327bd 1393 platform_driver_unregister(&soc_camera_pdrv);
e55222ef
GL
1394 driver_unregister(&ic_drv);
1395 bus_unregister(&soc_camera_bus_type);
1396}
1397
1398module_init(soc_camera_init);
1399module_exit(soc_camera_exit);
1400
1401MODULE_DESCRIPTION("Image capture bus driver");
1402MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1403MODULE_LICENSE("GPL");
0fd327bd 1404MODULE_ALIAS("platform:soc-camera-pdrv");