soc_camera.c 35.9 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/slab.h>
28
#include <linux/pm_runtime.h>
29 30
#include <linux/vmalloc.h>

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

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

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

46 47 48 49 50 51 52 53 54 55 56 57
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);

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
/**
 * 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);

92
static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
93
				      struct v4l2_format *f)
94 95 96
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
97
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
98 99 100

	WARN_ON(priv != file->private_data);

101
	/* limit format to hardware capabilities */
102
	return ici->ops->try_fmt(icd, f);
103 104 105 106 107
}

static int soc_camera_enum_input(struct file *file, void *priv,
				 struct v4l2_input *inp)
{
108 109 110 111
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	int ret = 0;

112 113 114
	if (inp->index != 0)
		return -EINVAL;

115 116 117 118 119 120 121 122
	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");
	}
123

124
	return ret;
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
}

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)
{
144 145
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
146
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
147

148
	return v4l2_subdev_call(sd, core, s_std, *a);
149 150 151 152 153 154 155 156
}

static int soc_camera_reqbufs(struct file *file, void *priv,
			      struct v4l2_requestbuffers *p)
{
	int ret;
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
157
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
158 159 160 161 162 163 164

	WARN_ON(priv != file->private_data);

	ret = videobuf_reqbufs(&icf->vb_vidq, p);
	if (ret < 0)
		return ret;

165
	return ici->ops->reqbufs(icf, p);
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
}

static int soc_camera_querybuf(struct file *file, void *priv,
			       struct v4l2_buffer *p)
{
	struct soc_camera_file *icf = file->private_data;

	WARN_ON(priv != file->private_data);

	return videobuf_querybuf(&icf->vb_vidq, p);
}

static int soc_camera_qbuf(struct file *file, void *priv,
			   struct v4l2_buffer *p)
{
	struct soc_camera_file *icf = file->private_data;

	WARN_ON(priv != file->private_data);

	return videobuf_qbuf(&icf->vb_vidq, p);
}

static int soc_camera_dqbuf(struct file *file, void *priv,
			    struct v4l2_buffer *p)
{
	struct soc_camera_file *icf = file->private_data;

	WARN_ON(priv != file->private_data);

	return videobuf_dqbuf(&icf->vb_vidq, p, file->f_flags & O_NONBLOCK);
}

198
/* Always entered with .video_lock held */
199 200
static int soc_camera_init_user_formats(struct soc_camera_device *icd)
{
201
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
202
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
203 204
	unsigned int i, fmts = 0, raw_fmts = 0;
	int ret;
205 206 207 208
	enum v4l2_mbus_pixelcode code;

	while (!v4l2_subdev_call(sd, video, enum_mbus_fmt, raw_fmts, &code))
		raw_fmts++;
209 210 211 212 213 214

	if (!ici->ops->get_formats)
		/*
		 * Fallback mode - the host will have to serve all
		 * sensor-provided formats one-to-one to the user
		 */
215
		fmts = raw_fmts;
216 217 218 219 220
	else
		/*
		 * First pass - only count formats this host-sensor
		 * configuration can provide
		 */
221
		for (i = 0; i < raw_fmts; i++) {
222 223 224 225 226
			ret = ici->ops->get_formats(icd, i, NULL);
			if (ret < 0)
				return ret;
			fmts += ret;
		}
227 228 229 230 231 232 233 234 235 236 237 238 239 240

	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 */
241
	fmts = 0;
242
	for (i = 0; i < raw_fmts; i++)
243
		if (!ici->ops->get_formats) {
244 245 246 247
			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;
248
		} else {
249 250 251 252 253
			ret = ici->ops->get_formats(icd, i,
						    &icd->user_formats[fmts]);
			if (ret < 0)
				goto egfmt;
			fmts += ret;
254 255
		}

256
	icd->current_fmt = &icd->user_formats[0];
257 258

	return 0;
259 260 261 262 263

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

266
/* Always entered with .video_lock held */
267 268
static void soc_camera_free_user_formats(struct soc_camera_device *icd)
{
269 270 271 272
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	if (ici->ops->put_formats)
		ici->ops->put_formats(icd);
273
	icd->current_fmt = NULL;
274
	icd->num_user_formats = 0;
275
	vfree(icd->user_formats);
276
	icd->user_formats = NULL;
277 278
}

279 280 281
#define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
	((x) >> 24) & 0xff

282
/* Called with .vb_lock held, or from the first open(2), see comment there */
283 284 285 286 287 288 289 290
static int soc_camera_set_fmt(struct soc_camera_file *icf,
			      struct v4l2_format *f)
{
	struct soc_camera_device *icd = icf->icd;
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	struct v4l2_pix_format *pix = &f->fmt.pix;
	int ret;

291 292 293
	dev_dbg(&icd->dev, "S_FMT(%c%c%c%c, %ux%u)\n",
		pixfmtstr(pix->pixelformat), pix->width, pix->height);

294 295 296 297 298 299 300 301 302
	/* 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 ||
303
		   icd->current_fmt->host_fmt->fourcc != pix->pixelformat) {
304
		dev_err(&icd->dev,
305 306 307 308
			"Host driver hasn't set up current format correctly!\n");
		return -EINVAL;
	}

309 310
	icd->user_width		= pix->width;
	icd->user_height	= pix->height;
311
	icd->colorspace		= pix->colorspace;
312 313
	icf->vb_vidq.field	=
		icd->field	= pix->field;
314

315 316 317 318 319
	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",
320
		icd->user_width, icd->user_height);
321 322 323 324 325

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

326
static int soc_camera_open(struct file *file)
327
{
328
	struct video_device *vdev = video_devdata(file);
329 330 331
	struct soc_camera_device *icd = container_of(vdev->parent,
						     struct soc_camera_device,
						     dev);
332
	struct soc_camera_link *icl = to_soc_camera_link(icd);
333
	struct soc_camera_host *ici;
334 335 336
	struct soc_camera_file *icf;
	int ret;

337 338 339 340
	if (!icd->ops)
		/* No device driver attached */
		return -ENODEV;

341
	ici = to_soc_camera_host(icd->dev.parent);
342

343 344 345 346
	icf = vmalloc(sizeof(*icf));
	if (!icf)
		return -ENOMEM;

347
	if (!try_module_get(ici->ops->owner)) {
348 349 350 351 352
		dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
		ret = -EINVAL;
		goto emgi;
	}

353 354 355 356
	/*
	 * Protect against icd->ops->remove() until we module_get() both
	 * drivers.
	 */
357 358
	mutex_lock(&icd->video_lock);

359
	icf->icd = icd;
360 361
	icd->use_count++;

362 363
	/* Now we really have to activate the camera */
	if (icd->use_count == 1) {
364
		/* Restore parameters before the last close() per V4L2 API */
365 366 367
		struct v4l2_format f = {
			.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
			.fmt.pix = {
368 369
				.width		= icd->user_width,
				.height		= icd->user_height,
370
				.field		= icd->field,
371 372 373
				.colorspace	= icd->colorspace,
				.pixelformat	=
					icd->current_fmt->host_fmt->fourcc,
374 375 376
			},
		};

377 378 379 380 381 382 383 384 385 386
		if (icl->power) {
			ret = icl->power(icd->pdev, 1);
			if (ret < 0)
				goto epower;
		}

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

387
		ret = ici->ops->add(icd);
388 389 390 391
		if (ret < 0) {
			dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
			goto eiciadd;
		}
392

393 394 395 396 397
		pm_runtime_enable(&icd->vdev->dev);
		ret = pm_runtime_resume(&icd->vdev->dev);
		if (ret < 0 && ret != -ENOSYS)
			goto eresume;

398 399 400 401 402 403
		/*
		 * 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.
		 */
404 405 406
		ret = soc_camera_set_fmt(icf, &f);
		if (ret < 0)
			goto esfmt;
407 408
	}

409 410 411
	file->private_data = icf;
	dev_dbg(&icd->dev, "camera device open\n");

412
	ici->ops->init_videobuf(&icf->vb_vidq, icd);
413

414 415
	mutex_unlock(&icd->video_lock);

416 417
	return 0;

418
	/*
419
	 * First four errors are entered with the .video_lock held
420 421 422
	 * and use_count == 1
	 */
esfmt:
423 424
	pm_runtime_disable(&icd->vdev->dev);
eresume:
425
	ici->ops->remove(icd);
426
eiciadd:
427 428 429
	if (icl->power)
		icl->power(icd->pdev, 0);
epower:
430
	icd->use_count--;
431
	mutex_unlock(&icd->video_lock);
432
	module_put(ici->ops->owner);
433 434 435 436 437
emgi:
	vfree(icf);
	return ret;
}

438
static int soc_camera_close(struct file *file)
439 440 441 442 443
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

444
	mutex_lock(&icd->video_lock);
445
	icd->use_count--;
446
	if (!icd->use_count) {
447 448
		struct soc_camera_link *icl = to_soc_camera_link(icd);

449 450 451
		pm_runtime_suspend(&icd->vdev->dev);
		pm_runtime_disable(&icd->vdev->dev);

452
		ici->ops->remove(icd);
453

454 455
		if (icl->power)
			icl->power(icd->pdev, 0);
456
	}
457

458 459
	mutex_unlock(&icd->video_lock);

460
	module_put(ici->ops->owner);
461

462
	vfree(icf);
463

464
	dev_dbg(&icd->dev, "camera device close\n");
465 466 467 468

	return 0;
}

469
static ssize_t soc_camera_read(struct file *file, char __user *buf,
470
			       size_t count, loff_t *ppos)
471 472 473 474 475
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	int err = -EINVAL;

476
	dev_err(&icd->dev, "camera device read not implemented\n");
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502

	return err;
}

static int soc_camera_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	int err;

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

	err = videobuf_mmap_mapper(&icf->vb_vidq, vma);

	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)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
503
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
504 505 506 507 508 509

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

510
	return ici->ops->poll(file, pt);
511 512
}

513
static struct v4l2_file_operations soc_camera_fops = {
514 515 516 517 518 519 520 521 522
	.owner		= THIS_MODULE,
	.open		= soc_camera_open,
	.release	= soc_camera_close,
	.ioctl		= video_ioctl2,
	.read		= soc_camera_read,
	.mmap		= soc_camera_mmap,
	.poll		= soc_camera_poll,
};

523
static int soc_camera_s_fmt_vid_cap(struct file *file, void *priv,
524
				    struct v4l2_format *f)
525 526 527 528 529 530 531
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	int ret;

	WARN_ON(priv != file->private_data);

532 533
	mutex_lock(&icf->vb_vidq.vb_lock);

534 535
	if (icf->vb_vidq.bufs[0]) {
		dev_err(&icd->dev, "S_FMT denied: queue initialised\n");
536 537 538 539
		ret = -EBUSY;
		goto unlock;
	}

540
	ret = soc_camera_set_fmt(icf, f);
541 542 543 544 545

unlock:
	mutex_unlock(&icf->vb_vidq.vb_lock);

	return ret;
546 547
}

548
static int soc_camera_enum_fmt_vid_cap(struct file *file, void  *priv,
549
				       struct v4l2_fmtdesc *f)
550 551 552
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
553
	const struct soc_mbus_pixelfmt *format;
554 555 556

	WARN_ON(priv != file->private_data);

557
	if (f->index >= icd->num_user_formats)
558 559
		return -EINVAL;

560
	format = icd->user_formats[f->index].host_fmt;
561

562 563
	if (format->name)
		strlcpy(f->description, format->name, sizeof(f->description));
564 565 566 567
	f->pixelformat = format->fourcc;
	return 0;
}

568
static int soc_camera_g_fmt_vid_cap(struct file *file, void *priv,
569
				    struct v4l2_format *f)
570 571 572
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
573
	struct v4l2_pix_format *pix = &f->fmt.pix;
574 575 576

	WARN_ON(priv != file->private_data);

577 578
	pix->width		= icd->user_width;
	pix->height		= icd->user_height;
579
	pix->field		= icf->vb_vidq.field;
580 581 582 583 584 585
	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;
586
	pix->sizeimage		= pix->height * pix->bytesperline;
587
	dev_dbg(&icd->dev, "current_fmt->fourcc: 0x%08x\n",
588
		icd->current_fmt->host_fmt->fourcc);
589 590 591 592 593 594 595 596
	return 0;
}

static int soc_camera_querycap(struct file *file, void  *priv,
			       struct v4l2_capability *cap)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
597
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
598 599 600 601

	WARN_ON(priv != file->private_data);

	strlcpy(cap->driver, ici->drv_name, sizeof(cap->driver));
602
	return ici->ops->querycap(ici, cap);
603 604 605 606 607 608 609
}

static int soc_camera_streamon(struct file *file, void *priv,
			       enum v4l2_buf_type i)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
610
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
611
	int ret;
612 613 614 615 616 617

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

618 619
	mutex_lock(&icd->video_lock);

620
	v4l2_subdev_call(sd, video, s_stream, 1);
621 622

	/* This calls buf_queue from host driver's videobuf_queue_ops */
623 624 625 626 627
	ret = videobuf_streamon(&icf->vb_vidq);

	mutex_unlock(&icd->video_lock);

	return ret;
628 629 630 631 632 633 634
}

static int soc_camera_streamoff(struct file *file, void *priv,
				enum v4l2_buf_type i)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
635
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
636 637 638 639 640 641

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

642 643
	mutex_lock(&icd->video_lock);

644 645 646 647
	/*
	 * This calls buf_release from host driver's videobuf_queue_ops for all
	 * remaining buffers. When the last buffer is freed, stop capture
	 */
648 649
	videobuf_streamoff(&icf->vb_vidq);

650
	v4l2_subdev_call(sd, video, s_stream, 0);
651

652 653
	mutex_unlock(&icd->video_lock);

654 655 656 657 658 659 660 661
	return 0;
}

static int soc_camera_queryctrl(struct file *file, void *priv,
				struct v4l2_queryctrl *qc)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
662
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
663 664 665 666 667 668 669
	int i;

	WARN_ON(priv != file->private_data);

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

670 671 672 673 674 675 676 677 678
	/* 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 */
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
	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)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
694
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
695
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
696
	int ret;
697 698 699

	WARN_ON(priv != file->private_data);

700 701 702 703 704 705
	if (ici->ops->get_ctrl) {
		ret = ici->ops->get_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

706
	return v4l2_subdev_call(sd, core, g_ctrl, ctrl);
707 708 709 710 711 712 713
}

static int soc_camera_s_ctrl(struct file *file, void *priv,
			     struct v4l2_control *ctrl)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
714
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
715
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
716
	int ret;
717 718 719

	WARN_ON(priv != file->private_data);

720 721 722 723 724 725
	if (ici->ops->set_ctrl) {
		ret = ici->ops->set_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

726
	return v4l2_subdev_call(sd, core, s_ctrl, ctrl);
727 728 729 730 731 732 733
}

static int soc_camera_cropcap(struct file *file, void *fh,
			      struct v4l2_cropcap *a)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
734
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
735

736
	return ici->ops->cropcap(icd, a);
737 738 739 740 741 742 743
}

static int soc_camera_g_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
744 745
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	int ret;
746

747 748 749
	mutex_lock(&icf->vb_vidq.vb_lock);
	ret = ici->ops->get_crop(icd, a);
	mutex_unlock(&icf->vb_vidq.vb_lock);
750

751
	return ret;
752 753
}

754 755 756
/*
 * 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
757
 * retrieve it.
758
 */
759 760 761 762 763
static int soc_camera_s_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
764
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
765 766
	struct v4l2_rect *rect = &a->c;
	struct v4l2_crop current_crop;
767 768 769 770 771
	int ret;

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

772 773 774
	dev_dbg(&icd->dev, "S_CROP(%ux%u@%u:%u)\n",
		rect->width, rect->height, rect->left, rect->top);

775 776 777
	/* Cropping is allowed during a running capture, guard consistency */
	mutex_lock(&icf->vb_vidq.vb_lock);

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

781
	/* Prohibit window size change with initialised buffers */
782 783 784 785 786 787
	if (ret < 0) {
		dev_err(&icd->dev,
			"S_CROP denied: getting current crop failed\n");
	} else if (icf->vb_vidq.bufs[0] &&
		   (a->c.width != current_crop.c.width ||
		    a->c.height != current_crop.c.height)) {
788 789 790
		dev_err(&icd->dev,
			"S_CROP denied: queue initialised and sizes differ\n");
		ret = -EBUSY;
791 792
	} else {
		ret = ici->ops->set_crop(icd, a);
793 794
	}

795 796
	mutex_unlock(&icf->vb_vidq.vb_lock);

797 798 799
	return ret;
}

800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
static int soc_camera_g_parm(struct file *file, void *fh,
			     struct v4l2_streamparm *a)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	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)
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
	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;
}

826
static int soc_camera_g_chip_ident(struct file *file, void *fh,
827
				   struct v4l2_dbg_chip_ident *id)
828 829 830
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
831
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
832

833
	return v4l2_subdev_call(sd, core, g_chip_ident, id);
834 835 836 837
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
static int soc_camera_g_register(struct file *file, void *fh,
838
				 struct v4l2_dbg_register *reg)
839 840 841
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
842
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
843

844
	return v4l2_subdev_call(sd, core, g_register, reg);
845 846 847
}

static int soc_camera_s_register(struct file *file, void *fh,
848
				 struct v4l2_dbg_register *reg)
849 850 851
{
	struct soc_camera_file *icf = file->private_data;
	struct soc_camera_device *icd = icf->icd;
852
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
853

854
	return v4l2_subdev_call(sd, core, s_register, reg);
855 856 857 858 859 860 861 862 863 864 865 866
}
#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) {
867
			int ret;
868
			icd->dev.parent = ici->v4l2_dev.dev;
869 870 871 872 873 874 875 876
			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);
			}
877 878 879 880 881 882
		}
	}

	mutex_unlock(&list_lock);
}

883 884 885
#ifdef CONFIG_I2C_BOARDINFO
static int soc_camera_init_i2c(struct soc_camera_device *icd,
			       struct soc_camera_link *icl)
886
{
887
	struct i2c_client *client;
888
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
889
	struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
890
	struct v4l2_subdev *subdev;
891

892 893 894 895 896
	if (!adap) {
		dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
			icl->i2c_adapter_id);
		goto ei2cga;
	}
897

898
	icl->board_info->platform_data = icd;
899

900 901
	subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
				icl->module_name, icl->board_info, NULL);
902
	if (!subdev)
903
		goto ei2cnd;
904

905 906
	client = subdev->priv;

907 908
	/* Use to_i2c_client(dev) to recover the i2c client */
	dev_set_drvdata(&icd->dev, &client->dev);
909

910 911 912 913
	return 0;
ei2cnd:
	i2c_put_adapter(adap);
ei2cga:
914
	return -ENODEV;
915 916
}

917 918 919 920 921
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);
922
	v4l2_device_unregister_subdev(i2c_get_clientdata(client));
923 924 925 926 927 928 929 930
	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

931
static int soc_camera_video_start(struct soc_camera_device *icd);
932 933
static int video_dev_create(struct soc_camera_device *icd);
/* Called during host-driver probe */
934 935 936
static int soc_camera_probe(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
937
	struct soc_camera_host *ici = to_soc_camera_host(dev->parent);
938
	struct soc_camera_link *icl = to_soc_camera_link(icd);
939
	struct device *control = NULL;
940
	struct v4l2_subdev *sd;
941
	struct v4l2_mbus_framefmt mf;
942 943
	int ret;

944
	dev_info(dev, "Probing %s\n", dev_name(dev));
945

946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
	if (icl->power) {
		ret = icl->power(icd->pdev, 1);
		if (ret < 0) {
			dev_err(dev,
				"Platform failed to power-on the camera.\n");
			goto epower;
		}
	}

	/* 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 */
964 965 966
	ret = video_dev_create(icd);
	if (ret < 0)
		goto evdc;
967

968 969 970 971 972 973
	/* 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) {
974
		ret = -EINVAL;
975 976
		goto eadddev;
	} else {
977 978 979
		if (icl->module_name)
			ret = request_module(icl->module_name);

980 981 982
		ret = icl->add_device(icl, &icd->dev);
		if (ret < 0)
			goto eadddev;
983

984 985 986 987
		/*
		 * FIXME: this is racy, have to use driver-binding notification,
		 * when it is available
		 */
988
		control = to_soc_camera_control(icd);
989
		if (!control || !control->driver || !dev_get_drvdata(control) ||
990 991 992 993
		    !try_module_get(control->driver->owner)) {
			icl->del_device(icl);
			goto enodrv;
		}
994
	}
995

996 997 998 999 1000 1001 1002
	/* 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;

1003 1004 1005 1006 1007 1008 1009
	/* ..._video_start() will create a device node, so we have to protect */
	mutex_lock(&icd->video_lock);

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

1010 1011
	/* Try to improve our guess of a reasonable window format */
	sd = soc_camera_to_subdev(icd);
1012 1013 1014 1015 1016
	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;
1017 1018
	}

1019
	/* Do we have to sysfs_remove_link() before device_unregister()? */
1020
	if (sysfs_create_link(&icd->dev.kobj, &to_soc_camera_control(icd)->kobj,
1021 1022
			      "control"))
		dev_warn(&icd->dev, "Failed creating the control symlink\n");
1023

1024 1025 1026 1027 1028 1029
	ici->ops->remove(icd);

	if (icl->power)
		icl->power(icd->pdev, 0);

	mutex_unlock(&icd->video_lock);
1030

1031
	return 0;
1032

1033 1034
evidstart:
	mutex_unlock(&icd->video_lock);
1035 1036
	soc_camera_free_user_formats(icd);
eiufmt:
1037
	if (icl->board_info) {
1038
		soc_camera_free_i2c(icd);
1039
	} else {
1040
		icl->del_device(icl);
1041 1042 1043
		module_put(control->driver->owner);
	}
enodrv:
1044 1045 1046
eadddev:
	video_device_release(icd->vdev);
evdc:
1047 1048 1049 1050 1051
	ici->ops->remove(icd);
eadd:
	if (icl->power)
		icl->power(icd->pdev, 0);
epower:
1052 1053 1054
	return ret;
}

1055 1056 1057 1058
/*
 * This is called on device_unregister, which only means we have to disconnect
 * from the host, but not remove ourselves from the device list
 */
1059 1060 1061
static int soc_camera_remove(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
1062 1063
	struct soc_camera_link *icl = to_soc_camera_link(icd);
	struct video_device *vdev = icd->vdev;
1064

1065
	BUG_ON(!dev->parent);
1066

1067 1068 1069 1070 1071 1072 1073
	if (vdev) {
		mutex_lock(&icd->video_lock);
		video_unregister_device(vdev);
		icd->vdev = NULL;
		mutex_unlock(&icd->video_lock);
	}

1074
	if (icl->board_info) {
1075
		soc_camera_free_i2c(icd);
1076 1077 1078 1079 1080 1081 1082 1083
	} 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);
		}
	}
1084
	soc_camera_free_user_formats(icd);
1085

1086 1087 1088
	return 0;
}

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
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;
}

1113
struct bus_type soc_camera_bus_type = {
1114 1115 1116
	.name		= "soc-camera",
	.probe		= soc_camera_probe,
	.remove		= soc_camera_remove,
1117 1118
	.suspend	= soc_camera_suspend,
	.resume		= soc_camera_resume,
1119
};
1120
EXPORT_SYMBOL_GPL(soc_camera_bus_type);
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131

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

static void dummy_release(struct device *dev)
{
}

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
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);
}

1151 1152 1153 1154 1155 1156 1157
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;
}

1158
int soc_camera_host_register(struct soc_camera_host *ici)
1159 1160
{
	struct soc_camera_host *ix;
1161
	int ret;
1162

1163 1164 1165 1166 1167 1168 1169 1170 1171
	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 ||
1172
	    !ici->ops->poll ||
1173
	    !ici->v4l2_dev.dev)
1174 1175
		return -EINVAL;

1176 1177 1178 1179 1180 1181 1182
	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;

1183 1184 1185
	mutex_lock(&list_lock);
	list_for_each_entry(ix, &hosts, list) {
		if (ix->nr == ici->nr) {
1186 1187
			ret = -EBUSY;
			goto edevreg;
1188 1189 1190
		}
	}

1191 1192 1193
	ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
	if (ret < 0)
		goto edevreg;
1194

1195 1196 1197 1198 1199 1200
	list_add_tail(&ici->list, &hosts);
	mutex_unlock(&list_lock);

	scan_add_host(ici);

	return 0;
1201 1202 1203 1204

edevreg:
	mutex_unlock(&list_lock);
	return ret;
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
}
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) {
1218
		if (icd->iface == ici->nr) {
1219
			void *pdata = icd->dev.platform_data;
1220
			/* The bus->remove will be called */
1221
			device_unregister(&icd->dev);
1222 1223 1224 1225 1226 1227 1228 1229 1230
			/*
			 * 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));
1231
			soc_camera_device_init(&icd->dev, pdata);
1232 1233 1234 1235 1236
		}
	}

	mutex_unlock(&list_lock);

1237
	v4l2_device_unregister(&ici->v4l2_dev);
1238 1239 1240 1241
}
EXPORT_SYMBOL(soc_camera_host_unregister);

/* Image capture device */
1242
static int soc_camera_device_register(struct soc_camera_device *icd)
1243 1244 1245 1246 1247 1248
{
	struct soc_camera_device *ix;
	int num = -1, i;

	for (i = 0; i < 256 && num < 0; i++) {
		num = i;
1249
		/* Check if this index is available on this interface */
1250 1251 1252 1253 1254 1255 1256 1257 1258
		list_for_each_entry(ix, &devices, list) {
			if (ix->iface == icd->iface && ix->devnum == i) {
				num = -1;
				break;
			}
		}
	}

	if (num < 0)
1259 1260 1261 1262
		/*
		 * ok, we have 256 cameras on this host...
		 * man, stay reasonable...
		 */
1263 1264
		return -ENOMEM;

1265
	icd->devnum		= num;
1266 1267
	icd->use_count		= 0;
	icd->host_priv		= NULL;
1268
	mutex_init(&icd->video_lock);
1269

1270 1271 1272
	list_add_tail(&icd->list, &devices);

	return 0;
1273 1274
}

1275
static void soc_camera_device_unregister(struct soc_camera_device *icd)
1276 1277 1278 1279
{
	list_del(&icd->list);
}

1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
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,
	.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,
1302 1303
	.vidioc_g_parm		 = soc_camera_g_parm,
	.vidioc_s_parm		 = soc_camera_s_parm,
1304 1305 1306 1307 1308 1309 1310
	.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
};

1311
static int video_dev_create(struct soc_camera_device *icd)
1312 1313
{
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1314
	struct video_device *vdev = video_device_alloc();
1315 1316

	if (!vdev)
1317
		return -ENOMEM;
1318 1319

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

1321
	vdev->parent		= &icd->dev;
1322 1323
	vdev->current_norm	= V4L2_STD_UNKNOWN;
	vdev->fops		= &soc_camera_fops;
1324
	vdev->ioctl_ops		= &soc_camera_ioctl_ops;
1325
	vdev->release		= video_device_release;
1326
	vdev->tvnorms		= V4L2_STD_UNKNOWN;
1327 1328 1329 1330

	icd->vdev = vdev;

	return 0;
1331
}
1332

1333
/*
1334
 * Called from soc_camera_probe() above (with .video_lock held???)
1335
 */
1336
static int soc_camera_video_start(struct soc_camera_device *icd)
1337
{
1338
	struct device_type *type = icd->vdev->dev.type;
1339
	int ret;
1340 1341 1342 1343 1344 1345 1346 1347 1348

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

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

1349
	ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
1350 1351 1352 1353
	if (ret < 0) {
		dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
		return ret;
	}
1354

1355 1356 1357
	/* Restore device type, possibly set by the subdevice driver */
	icd->vdev->dev.type = type;

1358
	return 0;
1359 1360
}

1361
static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1362
{
1363 1364
	struct soc_camera_link *icl = pdev->dev.platform_data;
	struct soc_camera_device *icd;
1365
	int ret;
1366

1367 1368
	if (!icl)
		return -EINVAL;
1369

1370 1371 1372
	icd = kzalloc(sizeof(*icd), GFP_KERNEL);
	if (!icd)
		return -ENOMEM;
1373

1374
	icd->iface = icl->bus_id;
1375
	icd->pdev = &pdev->dev;
1376
	platform_set_drvdata(pdev, icd);
1377

1378 1379 1380
	ret = soc_camera_device_register(icd);
	if (ret < 0)
		goto escdevreg;
1381

1382 1383
	soc_camera_device_init(&icd->dev, icl);

1384 1385 1386
	icd->user_width		= DEFAULT_WIDTH;
	icd->user_height	= DEFAULT_HEIGHT;

1387
	return 0;
1388

1389 1390
escdevreg:
	kfree(icd);
1391

1392
	return ret;
1393
}
1394

1395 1396
/*
 * Only called on rmmod for each platform device, since they are not
1397
 * hot-pluggable. Now we know, that all our users - hosts and devices have
1398 1399
 * been unloaded already
 */
1400
static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1401
{
1402
	struct soc_camera_device *icd = platform_get_drvdata(pdev);
1403

1404
	if (!icd)
1405 1406
		return -EINVAL;

1407
	soc_camera_device_unregister(icd);
1408

1409
	kfree(icd);
1410

1411 1412 1413 1414
	return 0;
}

static struct platform_driver __refdata soc_camera_pdrv = {
1415 1416 1417 1418
	.remove  = __devexit_p(soc_camera_pdrv_remove),
	.driver  = {
		.name	= "soc-camera-pdrv",
		.owner	= THIS_MODULE,
1419 1420 1421
	},
};

1422 1423 1424 1425 1426 1427 1428 1429 1430
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;

1431
	ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
1432 1433 1434
	if (ret)
		goto epdr;

1435 1436
	return 0;

1437 1438
epdr:
	driver_unregister(&ic_drv);
1439 1440 1441 1442 1443 1444 1445
edrvr:
	bus_unregister(&soc_camera_bus_type);
	return ret;
}

static void __exit soc_camera_exit(void)
{
1446
	platform_driver_unregister(&soc_camera_pdrv);
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
	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");
1457
MODULE_ALIAS("platform:soc-camera-pdrv");