soc_camera.c 37.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * camera image capture (abstract) bus driver
 *
 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
 *
 * This driver provides an interface between platform-specific camera
 * busses and camera devices. It should be used if the camera is
 * connected not over a "proper" bus like PCI or USB, but over a
 * special bus, like, for example, the Quick Capture interface on PXA270
 * SoCs. Later it should also be used for i.MX31 SoCs from Freescale.
 * It can handle multiple cameras and / or multiple busses, which can
 * be used, e.g., in stereo-vision applications.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/device.h>
#include <linux/err.h>
21 22 23
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/list.h>
24
#include <linux/mutex.h>
25
#include <linux/module.h>
26
#include <linux/platform_device.h>
27
#include <linux/regulator/consumer.h>
28
#include <linux/slab.h>
29
#include <linux/pm_runtime.h>
30 31
#include <linux/vmalloc.h>

32
#include <media/soc_camera.h>
33
#include <media/v4l2-common.h>
34
#include <media/v4l2-ioctl.h>
35
#include <media/v4l2-dev.h>
36
#include <media/videobuf-core.h>
37
#include <media/soc_mediabus.h>
38

39 40 41 42
/* Default to VGA resolution */
#define DEFAULT_WIDTH	640
#define DEFAULT_HEIGHT	480

43 44
static LIST_HEAD(hosts);
static LIST_HEAD(devices);
45
static DEFINE_MUTEX(list_lock);		/* Protects the list of hosts */
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
static int soc_camera_power_set(struct soc_camera_device *icd,
				struct soc_camera_link *icl,
				int power_on)
{
	int ret;

	if (power_on) {
		ret = regulator_bulk_enable(icl->num_regulators,
					    icl->regulators);
		if (ret < 0) {
			dev_err(&icd->dev, "Cannot enable regulators\n");
			return ret;
		}

		if (icl->power)
			ret = icl->power(icd->pdev, power_on);
		if (ret < 0) {
			dev_err(&icd->dev,
				"Platform failed to power-on the camera.\n");

			regulator_bulk_disable(icl->num_regulators,
					       icl->regulators);
			return ret;
		}
	} else {
		ret = 0;
		if (icl->power)
			ret = icl->power(icd->pdev, 0);
		if (ret < 0) {
			dev_err(&icd->dev,
				"Platform failed to power-off the camera.\n");
			return ret;
		}

		ret = regulator_bulk_disable(icl->num_regulators,
					     icl->regulators);
		if (ret < 0) {
			dev_err(&icd->dev, "Cannot disable regulators\n");
			return ret;
		}
	}

	return 0;
}

92 93 94 95 96 97 98 99 100 101 102 103
const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc(
	struct soc_camera_device *icd, unsigned int fourcc)
{
	unsigned int i;

	for (i = 0; i < icd->num_user_formats; i++)
		if (icd->user_formats[i].host_fmt->fourcc == fourcc)
			return icd->user_formats + i;
	return NULL;
}
EXPORT_SYMBOL(soc_camera_xlate_by_fourcc);

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
/**
 * soc_camera_apply_sensor_flags() - apply platform SOCAM_SENSOR_INVERT_* flags
 * @icl:	camera platform parameters
 * @flags:	flags to be inverted according to platform configuration
 * @return:	resulting flags
 */
unsigned long soc_camera_apply_sensor_flags(struct soc_camera_link *icl,
					    unsigned long flags)
{
	unsigned long f;

	/* If only one of the two polarities is supported, switch to the opposite */
	if (icl->flags & SOCAM_SENSOR_INVERT_HSYNC) {
		f = flags & (SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW);
		if (f == SOCAM_HSYNC_ACTIVE_HIGH || f == SOCAM_HSYNC_ACTIVE_LOW)
			flags ^= SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW;
	}

	if (icl->flags & SOCAM_SENSOR_INVERT_VSYNC) {
		f = flags & (SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW);
		if (f == SOCAM_VSYNC_ACTIVE_HIGH || f == SOCAM_VSYNC_ACTIVE_LOW)
			flags ^= SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW;
	}

	if (icl->flags & SOCAM_SENSOR_INVERT_PCLK) {
		f = flags & (SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING);
		if (f == SOCAM_PCLK_SAMPLE_RISING || f == SOCAM_PCLK_SAMPLE_FALLING)
			flags ^= SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING;
	}

	return flags;
}
EXPORT_SYMBOL(soc_camera_apply_sensor_flags);

138
static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
139
				      struct v4l2_format *f)
140
{
141
	struct soc_camera_device *icd = file->private_data;
142
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
143 144 145

	WARN_ON(priv != file->private_data);

146
	/* limit format to hardware capabilities */
147
	return ici->ops->try_fmt(icd, f);
148 149 150 151 152
}

static int soc_camera_enum_input(struct file *file, void *priv,
				 struct v4l2_input *inp)
{
153
	struct soc_camera_device *icd = file->private_data;
154 155
	int ret = 0;

156 157 158
	if (inp->index != 0)
		return -EINVAL;

159 160 161 162 163 164 165 166
	if (icd->ops->enum_input)
		ret = icd->ops->enum_input(icd, inp);
	else {
		/* default is camera */
		inp->type = V4L2_INPUT_TYPE_CAMERA;
		inp->std  = V4L2_STD_UNKNOWN;
		strcpy(inp->name, "Camera");
	}
167

168
	return ret;
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
}

static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i)
{
	*i = 0;

	return 0;
}

static int soc_camera_s_input(struct file *file, void *priv, unsigned int i)
{
	if (i > 0)
		return -EINVAL;

	return 0;
}

static int soc_camera_s_std(struct file *file, void *priv, v4l2_std_id *a)
{
188
	struct soc_camera_device *icd = file->private_data;
189
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
190

191
	return v4l2_subdev_call(sd, core, s_std, *a);
192 193
}

194 195 196 197 198 199 200 201 202
static int soc_camera_enum_fsizes(struct file *file, void *fh,
					 struct v4l2_frmsizeenum *fsize)
{
	struct soc_camera_device *icd = file->private_data;
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	return ici->ops->enum_fsizes(icd, fsize);
}

203 204 205 206
static int soc_camera_reqbufs(struct file *file, void *priv,
			      struct v4l2_requestbuffers *p)
{
	int ret;
207
	struct soc_camera_device *icd = file->private_data;
208
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
209 210 211

	WARN_ON(priv != file->private_data);

212 213 214 215
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;

	ret = videobuf_reqbufs(&icd->vb_vidq, p);
216 217 218
	if (ret < 0)
		return ret;

219 220 221 222 223
	ret = ici->ops->reqbufs(icd, p);
	if (!ret && !icd->streamer)
		icd->streamer = file;

	return ret;
224 225 226 227 228
}

static int soc_camera_querybuf(struct file *file, void *priv,
			       struct v4l2_buffer *p)
{
229
	struct soc_camera_device *icd = file->private_data;
230 231 232

	WARN_ON(priv != file->private_data);

233
	return videobuf_querybuf(&icd->vb_vidq, p);
234 235 236 237 238
}

static int soc_camera_qbuf(struct file *file, void *priv,
			   struct v4l2_buffer *p)
{
239
	struct soc_camera_device *icd = file->private_data;
240 241 242

	WARN_ON(priv != file->private_data);

243 244 245 246
	if (icd->streamer != file)
		return -EBUSY;

	return videobuf_qbuf(&icd->vb_vidq, p);
247 248 249 250 251
}

static int soc_camera_dqbuf(struct file *file, void *priv,
			    struct v4l2_buffer *p)
{
252
	struct soc_camera_device *icd = file->private_data;
253 254 255

	WARN_ON(priv != file->private_data);

256 257 258 259
	if (icd->streamer != file)
		return -EBUSY;

	return videobuf_dqbuf(&icd->vb_vidq, p, file->f_flags & O_NONBLOCK);
260 261
}

262
/* Always entered with .video_lock held */
263 264
static int soc_camera_init_user_formats(struct soc_camera_device *icd)
{
265
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
266
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
267 268
	unsigned int i, fmts = 0, raw_fmts = 0;
	int ret;
269 270 271 272
	enum v4l2_mbus_pixelcode code;

	while (!v4l2_subdev_call(sd, video, enum_mbus_fmt, raw_fmts, &code))
		raw_fmts++;
273 274 275 276 277 278

	if (!ici->ops->get_formats)
		/*
		 * Fallback mode - the host will have to serve all
		 * sensor-provided formats one-to-one to the user
		 */
279
		fmts = raw_fmts;
280 281 282 283 284
	else
		/*
		 * First pass - only count formats this host-sensor
		 * configuration can provide
		 */
285
		for (i = 0; i < raw_fmts; i++) {
286 287 288 289 290
			ret = ici->ops->get_formats(icd, i, NULL);
			if (ret < 0)
				return ret;
			fmts += ret;
		}
291 292 293 294 295 296 297 298 299 300 301 302 303 304

	if (!fmts)
		return -ENXIO;

	icd->user_formats =
		vmalloc(fmts * sizeof(struct soc_camera_format_xlate));
	if (!icd->user_formats)
		return -ENOMEM;

	icd->num_user_formats = fmts;

	dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts);

	/* Second pass - actually fill data formats */
305
	fmts = 0;
306
	for (i = 0; i < raw_fmts; i++)
307
		if (!ici->ops->get_formats) {
308 309 310 311
			v4l2_subdev_call(sd, video, enum_mbus_fmt, i, &code);
			icd->user_formats[i].host_fmt =
				soc_mbus_get_fmtdesc(code);
			icd->user_formats[i].code = code;
312
		} else {
313 314 315 316 317
			ret = ici->ops->get_formats(icd, i,
						    &icd->user_formats[fmts]);
			if (ret < 0)
				goto egfmt;
			fmts += ret;
318 319
		}

320
	icd->current_fmt = &icd->user_formats[0];
321 322

	return 0;
323 324 325 326 327

egfmt:
	icd->num_user_formats = 0;
	vfree(icd->user_formats);
	return ret;
328 329
}

330
/* Always entered with .video_lock held */
331 332
static void soc_camera_free_user_formats(struct soc_camera_device *icd)
{
333 334 335 336
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	if (ici->ops->put_formats)
		ici->ops->put_formats(icd);
337
	icd->current_fmt = NULL;
338
	icd->num_user_formats = 0;
339
	vfree(icd->user_formats);
340
	icd->user_formats = NULL;
341 342
}

343 344 345
#define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
	((x) >> 24) & 0xff

346
/* Called with .vb_lock held, or from the first open(2), see comment there */
347
static int soc_camera_set_fmt(struct soc_camera_device *icd,
348 349 350 351 352 353
			      struct v4l2_format *f)
{
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	struct v4l2_pix_format *pix = &f->fmt.pix;
	int ret;

354 355 356
	dev_dbg(&icd->dev, "S_FMT(%c%c%c%c, %ux%u)\n",
		pixfmtstr(pix->pixelformat), pix->width, pix->height);

357 358 359 360 361 362 363 364 365
	/* We always call try_fmt() before set_fmt() or set_crop() */
	ret = ici->ops->try_fmt(icd, f);
	if (ret < 0)
		return ret;

	ret = ici->ops->set_fmt(icd, f);
	if (ret < 0) {
		return ret;
	} else if (!icd->current_fmt ||
366
		   icd->current_fmt->host_fmt->fourcc != pix->pixelformat) {
367
		dev_err(&icd->dev,
368 369 370 371
			"Host driver hasn't set up current format correctly!\n");
		return -EINVAL;
	}

372 373
	icd->user_width		= pix->width;
	icd->user_height	= pix->height;
374
	icd->colorspace		= pix->colorspace;
375
	icd->vb_vidq.field	=
376
		icd->field	= pix->field;
377

378 379 380 381 382
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		dev_warn(&icd->dev, "Attention! Wrong buf-type %d\n",
			 f->type);

	dev_dbg(&icd->dev, "set width: %d height: %d\n",
383
		icd->user_width, icd->user_height);
384 385 386 387 388

	/* set physical bus parameters */
	return ici->ops->set_bus_param(icd, pix->pixelformat);
}

389
static int soc_camera_open(struct file *file)
390
{
391
	struct video_device *vdev = video_devdata(file);
392 393 394
	struct soc_camera_device *icd = container_of(vdev->parent,
						     struct soc_camera_device,
						     dev);
395
	struct soc_camera_link *icl = to_soc_camera_link(icd);
396
	struct soc_camera_host *ici;
397 398
	int ret;

399 400 401 402
	if (!icd->ops)
		/* No device driver attached */
		return -ENODEV;

403
	ici = to_soc_camera_host(icd->dev.parent);
404

405
	if (!try_module_get(ici->ops->owner)) {
406
		dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
407
		return -EINVAL;
408 409
	}

410 411
	icd->use_count++;

412 413
	/* Now we really have to activate the camera */
	if (icd->use_count == 1) {
414
		/* Restore parameters before the last close() per V4L2 API */
415 416 417
		struct v4l2_format f = {
			.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
			.fmt.pix = {
418 419
				.width		= icd->user_width,
				.height		= icd->user_height,
420
				.field		= icd->field,
421 422 423
				.colorspace	= icd->colorspace,
				.pixelformat	=
					icd->current_fmt->host_fmt->fourcc,
424 425 426
			},
		};

427 428 429
		ret = soc_camera_power_set(icd, icl, 1);
		if (ret < 0)
			goto epower;
430 431 432 433 434

		/* The camera could have been already on, try to reset */
		if (icl->reset)
			icl->reset(icd->pdev);

435
		ret = ici->ops->add(icd);
436 437 438 439
		if (ret < 0) {
			dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
			goto eiciadd;
		}
440

441 442 443 444 445
		pm_runtime_enable(&icd->vdev->dev);
		ret = pm_runtime_resume(&icd->vdev->dev);
		if (ret < 0 && ret != -ENOSYS)
			goto eresume;

446 447 448 449 450 451
		/*
		 * Try to configure with default parameters. Notice: this is the
		 * very first open, so, we cannot race against other calls,
		 * apart from someone else calling open() simultaneously, but
		 * .video_lock is protecting us against it.
		 */
452
		ret = soc_camera_set_fmt(icd, &f);
453 454
		if (ret < 0)
			goto esfmt;
455 456

		ici->ops->init_videobuf(&icd->vb_vidq, icd);
457 458
	}

459
	file->private_data = icd;
460 461 462 463
	dev_dbg(&icd->dev, "camera device open\n");

	return 0;

464
	/*
465
	 * First four errors are entered with the .video_lock held
466 467 468
	 * and use_count == 1
	 */
esfmt:
469 470
	pm_runtime_disable(&icd->vdev->dev);
eresume:
471
	ici->ops->remove(icd);
472
eiciadd:
473
	soc_camera_power_set(icd, icl, 0);
474
epower:
475
	icd->use_count--;
476
	module_put(ici->ops->owner);
477

478 479 480
	return ret;
}

481
static int soc_camera_close(struct file *file)
482
{
483
	struct soc_camera_device *icd = file->private_data;
484 485
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

486
	icd->use_count--;
487
	if (!icd->use_count) {
488 489
		struct soc_camera_link *icl = to_soc_camera_link(icd);

490 491 492
		pm_runtime_suspend(&icd->vdev->dev);
		pm_runtime_disable(&icd->vdev->dev);

493
		ici->ops->remove(icd);
494

495
		soc_camera_power_set(icd, icl, 0);
496
	}
497

498 499 500
	if (icd->streamer == file)
		icd->streamer = NULL;

501
	module_put(ici->ops->owner);
502

503
	dev_dbg(&icd->dev, "camera device close\n");
504 505 506 507

	return 0;
}

508
static ssize_t soc_camera_read(struct file *file, char __user *buf,
509
			       size_t count, loff_t *ppos)
510
{
511
	struct soc_camera_device *icd = file->private_data;
512 513
	int err = -EINVAL;

514
	dev_err(&icd->dev, "camera device read not implemented\n");
515 516 517 518 519 520

	return err;
}

static int soc_camera_mmap(struct file *file, struct vm_area_struct *vma)
{
521
	struct soc_camera_device *icd = file->private_data;
522 523 524 525
	int err;

	dev_dbg(&icd->dev, "mmap called, vma=0x%08lx\n", (unsigned long)vma);

526 527 528 529
	if (icd->streamer != file)
		return -EBUSY;

	err = videobuf_mmap_mapper(&icd->vb_vidq, vma);
530 531 532 533 534 535 536 537 538 539 540

	dev_dbg(&icd->dev, "vma start=0x%08lx, size=%ld, ret=%d\n",
		(unsigned long)vma->vm_start,
		(unsigned long)vma->vm_end - (unsigned long)vma->vm_start,
		err);

	return err;
}

static unsigned int soc_camera_poll(struct file *file, poll_table *pt)
{
541
	struct soc_camera_device *icd = file->private_data;
542
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
543

544 545 546 547
	if (icd->streamer != file)
		return -EBUSY;

	if (list_empty(&icd->vb_vidq.stream)) {
548 549 550 551
		dev_err(&icd->dev, "Trying to poll with no queued buffers!\n");
		return POLLERR;
	}

552
	return ici->ops->poll(file, pt);
553 554
}

555
static struct v4l2_file_operations soc_camera_fops = {
556 557 558
	.owner		= THIS_MODULE,
	.open		= soc_camera_open,
	.release	= soc_camera_close,
559
	.unlocked_ioctl	= video_ioctl2,
560 561 562 563 564
	.read		= soc_camera_read,
	.mmap		= soc_camera_mmap,
	.poll		= soc_camera_poll,
};

565
static int soc_camera_s_fmt_vid_cap(struct file *file, void *priv,
566
				    struct v4l2_format *f)
567
{
568
	struct soc_camera_device *icd = file->private_data;
569 570 571 572
	int ret;

	WARN_ON(priv != file->private_data);

573 574
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;
575

576
	if (icd->vb_vidq.bufs[0]) {
577
		dev_err(&icd->dev, "S_FMT denied: queue initialised\n");
578
		return -EBUSY;
579 580
	}

581 582 583 584
	ret = soc_camera_set_fmt(icd, f);

	if (!ret && !icd->streamer)
		icd->streamer = file;
585 586

	return ret;
587 588
}

589
static int soc_camera_enum_fmt_vid_cap(struct file *file, void  *priv,
590
				       struct v4l2_fmtdesc *f)
591
{
592
	struct soc_camera_device *icd = file->private_data;
593
	const struct soc_mbus_pixelfmt *format;
594 595 596

	WARN_ON(priv != file->private_data);

597
	if (f->index >= icd->num_user_formats)
598 599
		return -EINVAL;

600
	format = icd->user_formats[f->index].host_fmt;
601

602 603
	if (format->name)
		strlcpy(f->description, format->name, sizeof(f->description));
604 605 606 607
	f->pixelformat = format->fourcc;
	return 0;
}

608
static int soc_camera_g_fmt_vid_cap(struct file *file, void *priv,
609
				    struct v4l2_format *f)
610
{
611
	struct soc_camera_device *icd = file->private_data;
612
	struct v4l2_pix_format *pix = &f->fmt.pix;
613 614 615

	WARN_ON(priv != file->private_data);

616 617
	pix->width		= icd->user_width;
	pix->height		= icd->user_height;
618
	pix->field		= icd->vb_vidq.field;
619 620 621 622 623 624
	pix->pixelformat	= icd->current_fmt->host_fmt->fourcc;
	pix->bytesperline	= soc_mbus_bytes_per_line(pix->width,
						icd->current_fmt->host_fmt);
	pix->colorspace		= icd->colorspace;
	if (pix->bytesperline < 0)
		return pix->bytesperline;
625
	pix->sizeimage		= pix->height * pix->bytesperline;
626
	dev_dbg(&icd->dev, "current_fmt->fourcc: 0x%08x\n",
627
		icd->current_fmt->host_fmt->fourcc);
628 629 630 631 632 633
	return 0;
}

static int soc_camera_querycap(struct file *file, void  *priv,
			       struct v4l2_capability *cap)
{
634
	struct soc_camera_device *icd = file->private_data;
635
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
636 637 638 639

	WARN_ON(priv != file->private_data);

	strlcpy(cap->driver, ici->drv_name, sizeof(cap->driver));
640
	return ici->ops->querycap(ici, cap);
641 642 643 644 645
}

static int soc_camera_streamon(struct file *file, void *priv,
			       enum v4l2_buf_type i)
{
646
	struct soc_camera_device *icd = file->private_data;
647
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
648
	int ret;
649 650 651 652 653 654

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

655 656 657
	if (icd->streamer != file)
		return -EBUSY;

658
	v4l2_subdev_call(sd, video, s_stream, 1);
659 660

	/* This calls buf_queue from host driver's videobuf_queue_ops */
661
	ret = videobuf_streamon(&icd->vb_vidq);
662 663

	return ret;
664 665 666 667 668
}

static int soc_camera_streamoff(struct file *file, void *priv,
				enum v4l2_buf_type i)
{
669
	struct soc_camera_device *icd = file->private_data;
670
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
671 672 673 674 675 676

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

677 678 679
	if (icd->streamer != file)
		return -EBUSY;

680 681 682 683
	/*
	 * This calls buf_release from host driver's videobuf_queue_ops for all
	 * remaining buffers. When the last buffer is freed, stop capture
	 */
684
	videobuf_streamoff(&icd->vb_vidq);
685

686
	v4l2_subdev_call(sd, video, s_stream, 0);
687 688 689 690 691 692 693

	return 0;
}

static int soc_camera_queryctrl(struct file *file, void *priv,
				struct v4l2_queryctrl *qc)
{
694
	struct soc_camera_device *icd = file->private_data;
695
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
696 697 698 699 700 701 702
	int i;

	WARN_ON(priv != file->private_data);

	if (!qc->id)
		return -EINVAL;

703 704 705 706 707 708 709 710 711
	/* First check host controls */
	for (i = 0; i < ici->ops->num_controls; i++)
		if (qc->id == ici->ops->controls[i].id) {
			memcpy(qc, &(ici->ops->controls[i]),
				sizeof(*qc));
			return 0;
		}

	/* Then device controls */
712 713 714 715 716 717 718 719 720 721 722 723 724
	for (i = 0; i < icd->ops->num_controls; i++)
		if (qc->id == icd->ops->controls[i].id) {
			memcpy(qc, &(icd->ops->controls[i]),
				sizeof(*qc));
			return 0;
		}

	return -EINVAL;
}

static int soc_camera_g_ctrl(struct file *file, void *priv,
			     struct v4l2_control *ctrl)
{
725
	struct soc_camera_device *icd = file->private_data;
726
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
727
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
728
	int ret;
729 730 731

	WARN_ON(priv != file->private_data);

732 733 734 735 736 737
	if (ici->ops->get_ctrl) {
		ret = ici->ops->get_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

738
	return v4l2_subdev_call(sd, core, g_ctrl, ctrl);
739 740 741 742 743
}

static int soc_camera_s_ctrl(struct file *file, void *priv,
			     struct v4l2_control *ctrl)
{
744
	struct soc_camera_device *icd = file->private_data;
745
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
746
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
747
	int ret;
748 749 750

	WARN_ON(priv != file->private_data);

751 752 753 754 755 756
	if (ici->ops->set_ctrl) {
		ret = ici->ops->set_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

757
	return v4l2_subdev_call(sd, core, s_ctrl, ctrl);
758 759 760 761 762
}

static int soc_camera_cropcap(struct file *file, void *fh,
			      struct v4l2_cropcap *a)
{
763
	struct soc_camera_device *icd = file->private_data;
764
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
765

766
	return ici->ops->cropcap(icd, a);
767 768 769 770 771
}

static int soc_camera_g_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
772
	struct soc_camera_device *icd = file->private_data;
773 774
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	int ret;
775

776
	ret = ici->ops->get_crop(icd, a);
777

778
	return ret;
779 780
}

781 782 783
/*
 * According to the V4L2 API, drivers shall not update the struct v4l2_crop
 * argument with the actual geometry, instead, the user shall use G_CROP to
784
 * retrieve it.
785
 */
786 787 788
static int soc_camera_s_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
789
	struct soc_camera_device *icd = file->private_data;
790
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
791 792
	struct v4l2_rect *rect = &a->c;
	struct v4l2_crop current_crop;
793 794 795 796 797
	int ret;

	if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

798 799 800 801 802 803
	dev_dbg(&icd->dev, "S_CROP(%ux%u@%u:%u)\n",
		rect->width, rect->height, rect->left, rect->top);

	/* If get_crop fails, we'll let host and / or client drivers decide */
	ret = ici->ops->get_crop(icd, &current_crop);

804
	/* Prohibit window size change with initialised buffers */
805 806 807
	if (ret < 0) {
		dev_err(&icd->dev,
			"S_CROP denied: getting current crop failed\n");
808
	} else if (icd->vb_vidq.bufs[0] &&
809 810
		   (a->c.width != current_crop.c.width ||
		    a->c.height != current_crop.c.height)) {
811 812 813
		dev_err(&icd->dev,
			"S_CROP denied: queue initialised and sizes differ\n");
		ret = -EBUSY;
814 815
	} else {
		ret = ici->ops->set_crop(icd, a);
816 817
	}

818 819 820
	return ret;
}

821 822 823
static int soc_camera_g_parm(struct file *file, void *fh,
			     struct v4l2_streamparm *a)
{
824
	struct soc_camera_device *icd = file->private_data;
825 826 827 828 829 830 831 832 833 834 835
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	if (ici->ops->get_parm)
		return ici->ops->get_parm(icd, a);

	return -ENOIOCTLCMD;
}

static int soc_camera_s_parm(struct file *file, void *fh,
			     struct v4l2_streamparm *a)
{
836
	struct soc_camera_device *icd = file->private_data;
837 838 839 840 841 842 843 844
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	if (ici->ops->set_parm)
		return ici->ops->set_parm(icd, a);

	return -ENOIOCTLCMD;
}

845
static int soc_camera_g_chip_ident(struct file *file, void *fh,
846
				   struct v4l2_dbg_chip_ident *id)
847
{
848
	struct soc_camera_device *icd = file->private_data;
849
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
850

851
	return v4l2_subdev_call(sd, core, g_chip_ident, id);
852 853 854 855
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
static int soc_camera_g_register(struct file *file, void *fh,
856
				 struct v4l2_dbg_register *reg)
857
{
858
	struct soc_camera_device *icd = file->private_data;
859
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
860

861
	return v4l2_subdev_call(sd, core, g_register, reg);
862 863 864
}

static int soc_camera_s_register(struct file *file, void *fh,
865
				 struct v4l2_dbg_register *reg)
866
{
867
	struct soc_camera_device *icd = file->private_data;
868
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
869

870
	return v4l2_subdev_call(sd, core, s_register, reg);
871 872 873 874 875 876 877 878 879 880 881 882
}
#endif

/* So far this function cannot fail */
static void scan_add_host(struct soc_camera_host *ici)
{
	struct soc_camera_device *icd;

	mutex_lock(&list_lock);

	list_for_each_entry(icd, &devices, list) {
		if (icd->iface == ici->nr) {
883
			int ret;
884
			icd->dev.parent = ici->v4l2_dev.dev;
885 886 887 888 889 890 891 892
			dev_set_name(&icd->dev, "%u-%u", icd->iface,
				     icd->devnum);
			ret = device_register(&icd->dev);
			if (ret < 0) {
				icd->dev.parent = NULL;
				dev_err(&icd->dev,
					"Cannot register device: %d\n", ret);
			}
893 894 895 896 897 898
		}
	}

	mutex_unlock(&list_lock);
}

899 900 901
#ifdef CONFIG_I2C_BOARDINFO
static int soc_camera_init_i2c(struct soc_camera_device *icd,
			       struct soc_camera_link *icl)
902
{
903
	struct i2c_client *client;
904
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
905
	struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
906
	struct v4l2_subdev *subdev;
907

908 909 910 911 912
	if (!adap) {
		dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
			icl->i2c_adapter_id);
		goto ei2cga;
	}
913

914
	icl->board_info->platform_data = icd;
915

916
	subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
917
				icl->board_info, NULL);
918
	if (!subdev)
919
		goto ei2cnd;
920

921
	client = v4l2_get_subdevdata(subdev);
922

923 924
	/* Use to_i2c_client(dev) to recover the i2c client */
	dev_set_drvdata(&icd->dev, &client->dev);
925

926 927 928 929
	return 0;
ei2cnd:
	i2c_put_adapter(adap);
ei2cga:
930
	return -ENODEV;
931 932
}

933 934 935 936 937
static void soc_camera_free_i2c(struct soc_camera_device *icd)
{
	struct i2c_client *client =
		to_i2c_client(to_soc_camera_control(icd));
	dev_set_drvdata(&icd->dev, NULL);
938
	v4l2_device_unregister_subdev(i2c_get_clientdata(client));
939 940 941 942 943 944 945 946
	i2c_unregister_device(client);
	i2c_put_adapter(client->adapter);
}
#else
#define soc_camera_init_i2c(icd, icl)	(-ENODEV)
#define soc_camera_free_i2c(icd)	do {} while (0)
#endif

947
static int soc_camera_video_start(struct soc_camera_device *icd);
948 949
static int video_dev_create(struct soc_camera_device *icd);
/* Called during host-driver probe */
950 951 952
static int soc_camera_probe(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
953
	struct soc_camera_host *ici = to_soc_camera_host(dev->parent);
954
	struct soc_camera_link *icl = to_soc_camera_link(icd);
955
	struct device *control = NULL;
956
	struct v4l2_subdev *sd;
957
	struct v4l2_mbus_framefmt mf;
958 959
	int ret;

960
	dev_info(dev, "Probing %s\n", dev_name(dev));
961

962 963 964 965 966 967 968 969
	ret = regulator_bulk_get(icd->pdev, icl->num_regulators,
				 icl->regulators);
	if (ret < 0)
		goto ereg;

	ret = soc_camera_power_set(icd, icl, 1);
	if (ret < 0)
		goto epower;
970 971 972 973 974 975 976 977 978 979

	/* The camera could have been already on, try to reset */
	if (icl->reset)
		icl->reset(icd->pdev);

	ret = ici->ops->add(icd);
	if (ret < 0)
		goto eadd;

	/* Must have icd->vdev before registering the device */
980 981 982
	ret = video_dev_create(icd);
	if (ret < 0)
		goto evdc;
983

984 985 986 987 988 989
	/* Non-i2c cameras, e.g., soc_camera_platform, have no board_info */
	if (icl->board_info) {
		ret = soc_camera_init_i2c(icd, icl);
		if (ret < 0)
			goto eadddev;
	} else if (!icl->add_device || !icl->del_device) {
990
		ret = -EINVAL;
991 992
		goto eadddev;
	} else {
993 994 995
		if (icl->module_name)
			ret = request_module(icl->module_name);

996 997 998
		ret = icl->add_device(icl, &icd->dev);
		if (ret < 0)
			goto eadddev;
999

1000 1001 1002 1003
		/*
		 * FIXME: this is racy, have to use driver-binding notification,
		 * when it is available
		 */
1004
		control = to_soc_camera_control(icd);
1005
		if (!control || !control->driver || !dev_get_drvdata(control) ||
1006 1007 1008 1009
		    !try_module_get(control->driver->owner)) {
			icl->del_device(icl);
			goto enodrv;
		}
1010
	}
1011

1012 1013 1014 1015 1016 1017 1018
	/* At this point client .probe() should have run already */
	ret = soc_camera_init_user_formats(icd);
	if (ret < 0)
		goto eiufmt;

	icd->field = V4L2_FIELD_ANY;

1019 1020 1021 1022 1023 1024 1025
	icd->vdev->lock = &icd->video_lock;

	/*
	 * ..._video_start() will create a device node, video_register_device()
	 * itself is protected against concurrent open() calls, but we also have
	 * to protect our data.
	 */
1026 1027 1028 1029 1030 1031
	mutex_lock(&icd->video_lock);

	ret = soc_camera_video_start(icd);
	if (ret < 0)
		goto evidstart;

1032 1033
	/* Try to improve our guess of a reasonable window format */
	sd = soc_camera_to_subdev(icd);
1034 1035 1036 1037 1038
	if (!v4l2_subdev_call(sd, video, g_mbus_fmt, &mf)) {
		icd->user_width		= mf.width;
		icd->user_height	= mf.height;
		icd->colorspace		= mf.colorspace;
		icd->field		= mf.field;
1039 1040
	}

1041
	/* Do we have to sysfs_remove_link() before device_unregister()? */
1042
	if (sysfs_create_link(&icd->dev.kobj, &to_soc_camera_control(icd)->kobj,
1043 1044
			      "control"))
		dev_warn(&icd->dev, "Failed creating the control symlink\n");
1045

1046 1047
	ici->ops->remove(icd);

1048
	soc_camera_power_set(icd, icl, 0);
1049 1050

	mutex_unlock(&icd->video_lock);
1051

1052
	return 0;
1053

1054 1055
evidstart:
	mutex_unlock(&icd->video_lock);
1056 1057
	soc_camera_free_user_formats(icd);
eiufmt:
1058
	if (icl->board_info) {
1059
		soc_camera_free_i2c(icd);
1060
	} else {
1061
		icl->del_device(icl);
1062 1063 1064
		module_put(control->driver->owner);
	}
enodrv:
1065 1066 1067
eadddev:
	video_device_release(icd->vdev);
evdc:
1068 1069
	ici->ops->remove(icd);
eadd:
1070
	soc_camera_power_set(icd, icl, 0);
1071
epower:
1072 1073
	regulator_bulk_free(icl->num_regulators, icl->regulators);
ereg:
1074 1075 1076
	return ret;
}

1077 1078 1079 1080
/*
 * This is called on device_unregister, which only means we have to disconnect
 * from the host, but not remove ourselves from the device list
 */
1081 1082 1083
static int soc_camera_remove(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
1084 1085
	struct soc_camera_link *icl = to_soc_camera_link(icd);
	struct video_device *vdev = icd->vdev;
1086

1087
	BUG_ON(!dev->parent);
1088

1089 1090 1091 1092 1093
	if (vdev) {
		video_unregister_device(vdev);
		icd->vdev = NULL;
	}

1094
	if (icl->board_info) {
1095
		soc_camera_free_i2c(icd);
1096 1097 1098 1099 1100 1101 1102 1103
	} else {
		struct device_driver *drv = to_soc_camera_control(icd) ?
			to_soc_camera_control(icd)->driver : NULL;
		if (drv) {
			icl->del_device(icl);
			module_put(drv->owner);
		}
	}
1104
	soc_camera_free_user_formats(icd);
1105

1106 1107
	regulator_bulk_free(icl->num_regulators, icl->regulators);

1108 1109 1110
	return 0;
}

1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
static int soc_camera_suspend(struct device *dev, pm_message_t state)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	int ret = 0;

	if (ici->ops->suspend)
		ret = ici->ops->suspend(icd, state);

	return ret;
}

static int soc_camera_resume(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	int ret = 0;

	if (ici->ops->resume)
		ret = ici->ops->resume(icd);

	return ret;
}

1135
struct bus_type soc_camera_bus_type = {
1136 1137 1138
	.name		= "soc-camera",
	.probe		= soc_camera_probe,
	.remove		= soc_camera_remove,
1139 1140
	.suspend	= soc_camera_suspend,
	.resume		= soc_camera_resume,
1141
};
1142
EXPORT_SYMBOL_GPL(soc_camera_bus_type);
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153

static struct device_driver ic_drv = {
	.name	= "camera",
	.bus	= &soc_camera_bus_type,
	.owner	= THIS_MODULE,
};

static void dummy_release(struct device *dev)
{
}

1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
static int default_cropcap(struct soc_camera_device *icd,
			   struct v4l2_cropcap *a)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, cropcap, a);
}

static int default_g_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, g_crop, a);
}

static int default_s_crop(struct soc_camera_device *icd, struct v4l2_crop *a)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, s_crop, a);
}

1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
static int default_g_parm(struct soc_camera_device *icd,
			  struct v4l2_streamparm *parm)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, g_parm, parm);
}

static int default_s_parm(struct soc_camera_device *icd,
			  struct v4l2_streamparm *parm)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, s_parm, parm);
}

1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
static int default_enum_fsizes(struct soc_camera_device *icd,
			  struct v4l2_frmsizeenum *fsize)
{
	int ret;
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	const struct soc_camera_format_xlate *xlate;
	__u32 pixfmt = fsize->pixel_format;
	struct v4l2_frmsizeenum fsize_mbus = *fsize;

	xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
	if (!xlate)
		return -EINVAL;
	/* map xlate-code to pixel_format, sensor only handle xlate-code*/
	fsize_mbus.pixel_format = xlate->code;

	ret = v4l2_subdev_call(sd, video, enum_mbus_fsizes, &fsize_mbus);
	if (ret < 0)
		return ret;

	*fsize = fsize_mbus;
	fsize->pixel_format = pixfmt;

	return 0;
}

1212 1213 1214 1215 1216 1217 1218
static void soc_camera_device_init(struct device *dev, void *pdata)
{
	dev->platform_data	= pdata;
	dev->bus		= &soc_camera_bus_type;
	dev->release		= dummy_release;
}

1219
int soc_camera_host_register(struct soc_camera_host *ici)
1220 1221
{
	struct soc_camera_host *ix;
1222
	int ret;
1223

1224 1225 1226 1227 1228 1229 1230 1231 1232
	if (!ici || !ici->ops ||
	    !ici->ops->try_fmt ||
	    !ici->ops->set_fmt ||
	    !ici->ops->set_bus_param ||
	    !ici->ops->querycap ||
	    !ici->ops->init_videobuf ||
	    !ici->ops->reqbufs ||
	    !ici->ops->add ||
	    !ici->ops->remove ||
1233
	    !ici->ops->poll ||
1234
	    !ici->v4l2_dev.dev)
1235 1236
		return -EINVAL;

1237 1238 1239 1240 1241 1242
	if (!ici->ops->set_crop)
		ici->ops->set_crop = default_s_crop;
	if (!ici->ops->get_crop)
		ici->ops->get_crop = default_g_crop;
	if (!ici->ops->cropcap)
		ici->ops->cropcap = default_cropcap;
1243 1244 1245 1246
	if (!ici->ops->set_parm)
		ici->ops->set_parm = default_s_parm;
	if (!ici->ops->get_parm)
		ici->ops->get_parm = default_g_parm;
1247 1248
	if (!ici->ops->enum_fsizes)
		ici->ops->enum_fsizes = default_enum_fsizes;
1249

1250 1251 1252
	mutex_lock(&list_lock);
	list_for_each_entry(ix, &hosts, list) {
		if (ix->nr == ici->nr) {
1253 1254
			ret = -EBUSY;
			goto edevreg;
1255 1256 1257
		}
	}

1258 1259 1260
	ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
	if (ret < 0)
		goto edevreg;
1261

1262 1263 1264 1265 1266 1267
	list_add_tail(&ici->list, &hosts);
	mutex_unlock(&list_lock);

	scan_add_host(ici);

	return 0;
1268 1269 1270 1271

edevreg:
	mutex_unlock(&list_lock);
	return ret;
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
}
EXPORT_SYMBOL(soc_camera_host_register);

/* Unregister all clients! */
void soc_camera_host_unregister(struct soc_camera_host *ici)
{
	struct soc_camera_device *icd;

	mutex_lock(&list_lock);

	list_del(&ici->list);

	list_for_each_entry(icd, &devices, list) {
1285
		if (icd->iface == ici->nr) {
1286
			void *pdata = icd->dev.platform_data;
1287
			/* The bus->remove will be called */
1288
			device_unregister(&icd->dev);
1289 1290 1291 1292 1293 1294 1295 1296 1297
			/*
			 * Not before device_unregister(), .remove
			 * needs parent to call ici->ops->remove().
			 * If the host module is loaded again, device_register()
			 * would complain "already initialised," since 2.6.32
			 * this is also needed to prevent use-after-free of the
			 * device private data.
			 */
			memset(&icd->dev, 0, sizeof(icd->dev));
1298
			soc_camera_device_init(&icd->dev, pdata);
1299 1300 1301 1302 1303
		}
	}

	mutex_unlock(&list_lock);

1304
	v4l2_device_unregister(&ici->v4l2_dev);
1305 1306 1307 1308
}
EXPORT_SYMBOL(soc_camera_host_unregister);

/* Image capture device */
1309
static int soc_camera_device_register(struct soc_camera_device *icd)
1310 1311 1312 1313 1314 1315
{
	struct soc_camera_device *ix;
	int num = -1, i;

	for (i = 0; i < 256 && num < 0; i++) {
		num = i;
1316
		/* Check if this index is available on this interface */
1317 1318 1319 1320 1321 1322 1323 1324 1325
		list_for_each_entry(ix, &devices, list) {
			if (ix->iface == icd->iface && ix->devnum == i) {
				num = -1;
				break;
			}
		}
	}

	if (num < 0)
1326 1327 1328 1329
		/*
		 * ok, we have 256 cameras on this host...
		 * man, stay reasonable...
		 */
1330 1331
		return -ENOMEM;

1332
	icd->devnum		= num;
1333 1334
	icd->use_count		= 0;
	icd->host_priv		= NULL;
1335
	mutex_init(&icd->video_lock);
1336

1337 1338 1339
	list_add_tail(&icd->list, &devices);

	return 0;
1340 1341
}

1342
static void soc_camera_device_unregister(struct soc_camera_device *icd)
1343 1344 1345 1346
{
	list_del(&icd->list);
}

1347 1348 1349 1350 1351 1352 1353 1354 1355
static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = {
	.vidioc_querycap	 = soc_camera_querycap,
	.vidioc_g_fmt_vid_cap    = soc_camera_g_fmt_vid_cap,
	.vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap    = soc_camera_s_fmt_vid_cap,
	.vidioc_enum_input	 = soc_camera_enum_input,
	.vidioc_g_input		 = soc_camera_g_input,
	.vidioc_s_input		 = soc_camera_s_input,
	.vidioc_s_std		 = soc_camera_s_std,
1356
	.vidioc_enum_framesizes  = soc_camera_enum_fsizes,
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
	.vidioc_reqbufs		 = soc_camera_reqbufs,
	.vidioc_try_fmt_vid_cap  = soc_camera_try_fmt_vid_cap,
	.vidioc_querybuf	 = soc_camera_querybuf,
	.vidioc_qbuf		 = soc_camera_qbuf,
	.vidioc_dqbuf		 = soc_camera_dqbuf,
	.vidioc_streamon	 = soc_camera_streamon,
	.vidioc_streamoff	 = soc_camera_streamoff,
	.vidioc_queryctrl	 = soc_camera_queryctrl,
	.vidioc_g_ctrl		 = soc_camera_g_ctrl,
	.vidioc_s_ctrl		 = soc_camera_s_ctrl,
	.vidioc_cropcap		 = soc_camera_cropcap,
	.vidioc_g_crop		 = soc_camera_g_crop,
	.vidioc_s_crop		 = soc_camera_s_crop,
1370 1371
	.vidioc_g_parm		 = soc_camera_g_parm,
	.vidioc_s_parm		 = soc_camera_s_parm,
1372 1373 1374 1375 1376 1377 1378
	.vidioc_g_chip_ident     = soc_camera_g_chip_ident,
#ifdef CONFIG_VIDEO_ADV_DEBUG
	.vidioc_g_register	 = soc_camera_g_register,
	.vidioc_s_register	 = soc_camera_s_register,
#endif
};

1379
static int video_dev_create(struct soc_camera_device *icd)
1380 1381
{
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1382
	struct video_device *vdev = video_device_alloc();
1383 1384

	if (!vdev)
1385
		return -ENOMEM;
1386 1387

	strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name));
1388

1389
	vdev->parent		= &icd->dev;
1390 1391
	vdev->current_norm	= V4L2_STD_UNKNOWN;
	vdev->fops		= &soc_camera_fops;
1392
	vdev->ioctl_ops		= &soc_camera_ioctl_ops;
1393
	vdev->release		= video_device_release;
1394
	vdev->tvnorms		= V4L2_STD_UNKNOWN;
1395 1396 1397 1398

	icd->vdev = vdev;

	return 0;
1399
}
1400

1401
/*
1402
 * Called from soc_camera_probe() above (with .video_lock held???)
1403
 */
1404
static int soc_camera_video_start(struct soc_camera_device *icd)
1405
{
1406
	struct device_type *type = icd->vdev->dev.type;
1407
	int ret;
1408 1409 1410 1411 1412 1413 1414 1415 1416

	if (!icd->dev.parent)
		return -ENODEV;

	if (!icd->ops ||
	    !icd->ops->query_bus_param ||
	    !icd->ops->set_bus_param)
		return -EINVAL;

1417
	ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
1418 1419 1420 1421
	if (ret < 0) {
		dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
		return ret;
	}
1422

1423 1424 1425
	/* Restore device type, possibly set by the subdevice driver */
	icd->vdev->dev.type = type;

1426
	return 0;
1427 1428
}

1429
static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1430
{
1431 1432
	struct soc_camera_link *icl = pdev->dev.platform_data;
	struct soc_camera_device *icd;
1433
	int ret;
1434

1435 1436
	if (!icl)
		return -EINVAL;
1437

1438 1439 1440
	icd = kzalloc(sizeof(*icd), GFP_KERNEL);
	if (!icd)
		return -ENOMEM;
1441

1442
	icd->iface = icl->bus_id;
1443
	icd->pdev = &pdev->dev;
1444
	platform_set_drvdata(pdev, icd);
1445

1446 1447 1448
	ret = soc_camera_device_register(icd);
	if (ret < 0)
		goto escdevreg;
1449

1450 1451
	soc_camera_device_init(&icd->dev, icl);

1452 1453 1454
	icd->user_width		= DEFAULT_WIDTH;
	icd->user_height	= DEFAULT_HEIGHT;

1455
	return 0;
1456

1457 1458
escdevreg:
	kfree(icd);
1459

1460
	return ret;
1461
}
1462

1463 1464
/*
 * Only called on rmmod for each platform device, since they are not
1465
 * hot-pluggable. Now we know, that all our users - hosts and devices have
1466 1467
 * been unloaded already
 */
1468
static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1469
{
1470
	struct soc_camera_device *icd = platform_get_drvdata(pdev);
1471

1472
	if (!icd)
1473 1474
		return -EINVAL;

1475
	soc_camera_device_unregister(icd);
1476

1477
	kfree(icd);
1478

1479 1480 1481 1482
	return 0;
}

static struct platform_driver __refdata soc_camera_pdrv = {
1483 1484 1485 1486
	.remove  = __devexit_p(soc_camera_pdrv_remove),
	.driver  = {
		.name	= "soc-camera-pdrv",
		.owner	= THIS_MODULE,
1487 1488 1489
	},
};

1490 1491 1492 1493 1494 1495 1496 1497 1498
static int __init soc_camera_init(void)
{
	int ret = bus_register(&soc_camera_bus_type);
	if (ret)
		return ret;
	ret = driver_register(&ic_drv);
	if (ret)
		goto edrvr;

1499
	ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
1500 1501 1502
	if (ret)
		goto epdr;

1503 1504
	return 0;

1505 1506
epdr:
	driver_unregister(&ic_drv);
1507 1508 1509 1510 1511 1512 1513
edrvr:
	bus_unregister(&soc_camera_bus_type);
	return ret;
}

static void __exit soc_camera_exit(void)
{
1514
	platform_driver_unregister(&soc_camera_pdrv);
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
	driver_unregister(&ic_drv);
	bus_unregister(&soc_camera_bus_type);
}

module_init(soc_camera_init);
module_exit(soc_camera_exit);

MODULE_DESCRIPTION("Image capture bus driver");
MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
MODULE_LICENSE("GPL");
1525
MODULE_ALIAS("platform:soc-camera-pdrv");