soc_camera.c 39.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/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/videobuf2-core.h>
38
#include <media/soc_mediabus.h>
39

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

44 45 46 47 48
#define is_streaming(ici, icd)				\
	(((ici)->ops->init_videobuf) ?			\
	 (icd)->vb_vidq.streaming :			\
	 vb2_is_streaming(&(icd)->vb2_vidq))

49 50
static LIST_HEAD(hosts);
static LIST_HEAD(devices);
51
static DEFINE_MUTEX(list_lock);		/* Protects the list of hosts */
52

53
int soc_camera_power_on(struct device *dev, struct soc_camera_link *icl)
54
{
55 56
	int ret = regulator_bulk_enable(icl->num_regulators,
					icl->regulators);
57
	if (ret < 0) {
58
		dev_err(dev, "Cannot enable regulators\n");
59 60
		return ret;
	}
61

62
	if (icl->power) {
63
		ret = icl->power(dev, 1);
64
		if (ret < 0) {
65
			dev_err(dev,
66
				"Platform failed to power-on the camera.\n");
67 68
			regulator_bulk_disable(icl->num_regulators,
					       icl->regulators);
69
		}
70 71 72 73
	}

	return ret;
}
74
EXPORT_SYMBOL(soc_camera_power_on);
75

76
int soc_camera_power_off(struct device *dev, struct soc_camera_link *icl)
77
{
78 79
	int ret = 0;
	int err;
80

81
	if (icl->power) {
82
		err = icl->power(dev, 0);
83
		if (err < 0) {
84
			dev_err(dev,
85
				"Platform failed to power-off the camera.\n");
86
			ret = err;
87 88 89
		}
	}

90
	err = regulator_bulk_disable(icl->num_regulators,
91
				     icl->regulators);
92
	if (err < 0) {
93
		dev_err(dev, "Cannot disable regulators\n");
94 95
		ret = ret ? : err;
	}
96 97

	return ret;
98
}
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
EXPORT_SYMBOL(soc_camera_power_off);

static int __soc_camera_power_on(struct soc_camera_device *icd)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	int ret;

	ret = v4l2_subdev_call(sd, core, s_power, 1);
	if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
		return ret;

	return 0;
}

static int __soc_camera_power_off(struct soc_camera_device *icd)
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	int ret;

	ret = v4l2_subdev_call(sd, core, s_power, 0);
	if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV)
		return ret;

	return 0;
}
124

125 126 127 128 129 130 131 132 133 134 135 136
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);

137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/**
 * soc_camera_apply_board_flags() - apply platform SOCAM_SENSOR_INVERT_* flags
 * @icl:	camera platform parameters
 * @cfg:	media bus configuration
 * @return:	resulting flags
 */
unsigned long soc_camera_apply_board_flags(struct soc_camera_link *icl,
					   const struct v4l2_mbus_config *cfg)
{
	unsigned long f, flags = cfg->flags;

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

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

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

	return flags;
}
EXPORT_SYMBOL(soc_camera_apply_board_flags);

171 172 173 174 175 176
#define pixfmtstr(x) (x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, \
	((x) >> 24) & 0xff

static int soc_camera_try_fmt(struct soc_camera_device *icd,
			      struct v4l2_format *f)
{
177
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
178
	const struct soc_camera_format_xlate *xlate;
179 180 181
	struct v4l2_pix_format *pix = &f->fmt.pix;
	int ret;

182
	dev_dbg(icd->pdev, "TRY_FMT(%c%c%c%c, %ux%u)\n",
183 184
		pixfmtstr(pix->pixelformat), pix->width, pix->height);

185 186
	if (pix->pixelformat != V4L2_PIX_FMT_JPEG &&
	    !(ici->capabilities & SOCAM_HOST_CAP_STRIDE)) {
187 188 189
		pix->bytesperline = 0;
		pix->sizeimage = 0;
	}
190 191 192 193 194

	ret = ici->ops->try_fmt(icd, f);
	if (ret < 0)
		return ret;

195 196 197
	xlate = soc_camera_xlate_by_fourcc(icd, pix->pixelformat);
	if (!xlate)
		return -EINVAL;
198

199 200 201
	ret = soc_mbus_bytes_per_line(pix->width, xlate->host_fmt);
	if (ret < 0)
		return ret;
202

203 204 205 206 207 208 209 210
	pix->bytesperline = max_t(u32, pix->bytesperline, ret);

	ret = soc_mbus_image_size(xlate->host_fmt, pix->bytesperline,
				  pix->height);
	if (ret < 0)
		return ret;

	pix->sizeimage = max_t(u32, pix->sizeimage, ret);
211 212 213 214

	return 0;
}

215
static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
216
				      struct v4l2_format *f)
217
{
218
	struct soc_camera_device *icd = file->private_data;
219 220 221

	WARN_ON(priv != file->private_data);

222 223 224 225
	/* Only single-plane capture is supported so far */
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

226
	/* limit format to hardware capabilities */
227
	return soc_camera_try_fmt(icd, f);
228 229 230 231 232 233 234 235
}

static int soc_camera_enum_input(struct file *file, void *priv,
				 struct v4l2_input *inp)
{
	if (inp->index != 0)
		return -EINVAL;

236 237 238 239
	/* default is camera */
	inp->type = V4L2_INPUT_TYPE_CAMERA;
	inp->std  = V4L2_STD_UNKNOWN;
	strcpy(inp->name, "Camera");
240

241
	return 0;
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
}

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)
{
261
	struct soc_camera_device *icd = file->private_data;
262
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
263

264
	return v4l2_subdev_call(sd, core, s_std, *a);
265 266
}

267 268 269 270 271 272 273 274
static int soc_camera_g_std(struct file *file, void *priv, v4l2_std_id *a)
{
	struct soc_camera_device *icd = file->private_data;
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);

	return v4l2_subdev_call(sd, core, g_std, a);
}

275
static int soc_camera_enum_framesizes(struct file *file, void *fh,
276 277 278
					 struct v4l2_frmsizeenum *fsize)
{
	struct soc_camera_device *icd = file->private_data;
279
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
280

281
	return ici->ops->enum_framesizes(icd, fsize);
282 283
}

284 285 286 287
static int soc_camera_reqbufs(struct file *file, void *priv,
			      struct v4l2_requestbuffers *p)
{
	int ret;
288
	struct soc_camera_device *icd = file->private_data;
289
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
290 291 292

	WARN_ON(priv != file->private_data);

293 294 295
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;

296 297 298 299 300 301 302 303 304
	if (ici->ops->init_videobuf) {
		ret = videobuf_reqbufs(&icd->vb_vidq, p);
		if (ret < 0)
			return ret;

		ret = ici->ops->reqbufs(icd, p);
	} else {
		ret = vb2_reqbufs(&icd->vb2_vidq, p);
	}
305

306 307 308 309
	if (!ret && !icd->streamer)
		icd->streamer = file;

	return ret;
310 311 312 313 314
}

static int soc_camera_querybuf(struct file *file, void *priv,
			       struct v4l2_buffer *p)
{
315
	struct soc_camera_device *icd = file->private_data;
316
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
317 318 319

	WARN_ON(priv != file->private_data);

320 321 322 323
	if (ici->ops->init_videobuf)
		return videobuf_querybuf(&icd->vb_vidq, p);
	else
		return vb2_querybuf(&icd->vb2_vidq, p);
324 325 326 327 328
}

static int soc_camera_qbuf(struct file *file, void *priv,
			   struct v4l2_buffer *p)
{
329
	struct soc_camera_device *icd = file->private_data;
330
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
331 332 333

	WARN_ON(priv != file->private_data);

334 335 336
	if (icd->streamer != file)
		return -EBUSY;

337 338 339 340
	if (ici->ops->init_videobuf)
		return videobuf_qbuf(&icd->vb_vidq, p);
	else
		return vb2_qbuf(&icd->vb2_vidq, p);
341 342 343 344 345
}

static int soc_camera_dqbuf(struct file *file, void *priv,
			    struct v4l2_buffer *p)
{
346
	struct soc_camera_device *icd = file->private_data;
347
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
348 349 350

	WARN_ON(priv != file->private_data);

351 352 353
	if (icd->streamer != file)
		return -EBUSY;

354 355 356 357
	if (ici->ops->init_videobuf)
		return videobuf_dqbuf(&icd->vb_vidq, p, file->f_flags & O_NONBLOCK);
	else
		return vb2_dqbuf(&icd->vb2_vidq, p, file->f_flags & O_NONBLOCK);
358 359
}

360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
static int soc_camera_create_bufs(struct file *file, void *priv,
			    struct v4l2_create_buffers *create)
{
	struct soc_camera_device *icd = file->private_data;
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);

	/* videobuf2 only */
	if (ici->ops->init_videobuf)
		return -EINVAL;
	else
		return vb2_create_bufs(&icd->vb2_vidq, create);
}

static int soc_camera_prepare_buf(struct file *file, void *priv,
				  struct v4l2_buffer *b)
{
	struct soc_camera_device *icd = file->private_data;
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);

	/* videobuf2 only */
	if (ici->ops->init_videobuf)
		return -EINVAL;
	else
		return vb2_prepare_buf(&icd->vb2_vidq, b);
}

386
/* Always entered with .video_lock held */
387 388
static int soc_camera_init_user_formats(struct soc_camera_device *icd)
{
389
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
390
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
391 392
	unsigned int i, fmts = 0, raw_fmts = 0;
	int ret;
393 394 395 396
	enum v4l2_mbus_pixelcode code;

	while (!v4l2_subdev_call(sd, video, enum_mbus_fmt, raw_fmts, &code))
		raw_fmts++;
397 398 399 400 401 402

	if (!ici->ops->get_formats)
		/*
		 * Fallback mode - the host will have to serve all
		 * sensor-provided formats one-to-one to the user
		 */
403
		fmts = raw_fmts;
404 405 406 407 408
	else
		/*
		 * First pass - only count formats this host-sensor
		 * configuration can provide
		 */
409
		for (i = 0; i < raw_fmts; i++) {
410 411 412 413 414
			ret = ici->ops->get_formats(icd, i, NULL);
			if (ret < 0)
				return ret;
			fmts += ret;
		}
415 416 417 418 419 420 421 422 423

	if (!fmts)
		return -ENXIO;

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

424
	dev_dbg(icd->pdev, "Found %d supported formats.\n", fmts);
425 426

	/* Second pass - actually fill data formats */
427
	fmts = 0;
428
	for (i = 0; i < raw_fmts; i++)
429
		if (!ici->ops->get_formats) {
430
			v4l2_subdev_call(sd, video, enum_mbus_fmt, i, &code);
431
			icd->user_formats[fmts].host_fmt =
432
				soc_mbus_get_fmtdesc(code);
433 434
			if (icd->user_formats[fmts].host_fmt)
				icd->user_formats[fmts++].code = code;
435
		} else {
436 437 438 439 440
			ret = ici->ops->get_formats(icd, i,
						    &icd->user_formats[fmts]);
			if (ret < 0)
				goto egfmt;
			fmts += ret;
441 442
		}

443
	icd->num_user_formats = fmts;
444
	icd->current_fmt = &icd->user_formats[0];
445 446

	return 0;
447 448 449 450

egfmt:
	vfree(icd->user_formats);
	return ret;
451 452
}

453
/* Always entered with .video_lock held */
454 455
static void soc_camera_free_user_formats(struct soc_camera_device *icd)
{
456
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
457 458 459

	if (ici->ops->put_formats)
		ici->ops->put_formats(icd);
460
	icd->current_fmt = NULL;
461
	icd->num_user_formats = 0;
462
	vfree(icd->user_formats);
463
	icd->user_formats = NULL;
464 465
}

466
/* Called with .vb_lock held, or from the first open(2), see comment there */
467
static int soc_camera_set_fmt(struct soc_camera_device *icd,
468 469
			      struct v4l2_format *f)
{
470
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
471 472 473
	struct v4l2_pix_format *pix = &f->fmt.pix;
	int ret;

474
	dev_dbg(icd->pdev, "S_FMT(%c%c%c%c, %ux%u)\n",
475 476
		pixfmtstr(pix->pixelformat), pix->width, pix->height);

477
	/* We always call try_fmt() before set_fmt() or set_crop() */
478
	ret = soc_camera_try_fmt(icd, f);
479 480 481 482 483 484 485
	if (ret < 0)
		return ret;

	ret = ici->ops->set_fmt(icd, f);
	if (ret < 0) {
		return ret;
	} else if (!icd->current_fmt ||
486
		   icd->current_fmt->host_fmt->fourcc != pix->pixelformat) {
487
		dev_err(icd->pdev,
488 489 490 491
			"Host driver hasn't set up current format correctly!\n");
		return -EINVAL;
	}

492 493
	icd->user_width		= pix->width;
	icd->user_height	= pix->height;
494 495
	icd->bytesperline	= pix->bytesperline;
	icd->sizeimage		= pix->sizeimage;
496
	icd->colorspace		= pix->colorspace;
497 498 499
	icd->field		= pix->field;
	if (ici->ops->init_videobuf)
		icd->vb_vidq.field = pix->field;
500

501
	dev_dbg(icd->pdev, "set width: %d height: %d\n",
502
		icd->user_width, icd->user_height);
503 504

	/* set physical bus parameters */
505
	return ici->ops->set_bus_param(icd);
506 507
}

508
static int soc_camera_open(struct file *file)
509
{
510
	struct video_device *vdev = video_devdata(file);
511
	struct soc_camera_device *icd = dev_get_drvdata(vdev->parent);
512
	struct soc_camera_link *icl = to_soc_camera_link(icd);
513
	struct soc_camera_host *ici;
514 515
	int ret;

516
	if (!to_soc_camera_control(icd))
517 518 519
		/* No device driver attached */
		return -ENODEV;

520
	ici = to_soc_camera_host(icd->parent);
521

522 523
	if (mutex_lock_interruptible(&icd->video_lock))
		return -ERESTARTSYS;
524
	if (!try_module_get(ici->ops->owner)) {
525
		dev_err(icd->pdev, "Couldn't lock capture bus driver.\n");
526 527
		ret = -EINVAL;
		goto emodule;
528 529
	}

530 531
	icd->use_count++;

532 533
	/* Now we really have to activate the camera */
	if (icd->use_count == 1) {
534
		/* Restore parameters before the last close() per V4L2 API */
535 536 537
		struct v4l2_format f = {
			.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
			.fmt.pix = {
538 539
				.width		= icd->user_width,
				.height		= icd->user_height,
540
				.field		= icd->field,
541 542 543
				.colorspace	= icd->colorspace,
				.pixelformat	=
					icd->current_fmt->host_fmt->fourcc,
544 545 546
			},
		};

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

551 552
		/* Don't mess with the host during probe */
		mutex_lock(&ici->host_lock);
553
		ret = ici->ops->add(icd);
554
		mutex_unlock(&ici->host_lock);
555
		if (ret < 0) {
556
			dev_err(icd->pdev, "Couldn't activate the camera: %d\n", ret);
557 558
			goto eiciadd;
		}
559

560
		ret = __soc_camera_power_on(icd);
561 562 563
		if (ret < 0)
			goto epower;

564 565 566 567 568
		pm_runtime_enable(&icd->vdev->dev);
		ret = pm_runtime_resume(&icd->vdev->dev);
		if (ret < 0 && ret != -ENOSYS)
			goto eresume;

569 570 571 572 573 574
		/*
		 * 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.
		 */
575
		ret = soc_camera_set_fmt(icd, &f);
576 577
		if (ret < 0)
			goto esfmt;
578

579 580 581 582 583 584 585
		if (ici->ops->init_videobuf) {
			ici->ops->init_videobuf(&icd->vb_vidq, icd);
		} else {
			ret = ici->ops->init_videobuf2(&icd->vb2_vidq, icd);
			if (ret < 0)
				goto einitvb;
		}
586
		v4l2_ctrl_handler_setup(&icd->ctrl_handler);
587
	}
588
	mutex_unlock(&icd->video_lock);
589

590
	file->private_data = icd;
591
	dev_dbg(icd->pdev, "camera device open\n");
592 593 594

	return 0;

595
	/*
596
	 * First four errors are entered with the .video_lock held
597 598
	 * and use_count == 1
	 */
599
einitvb:
600
esfmt:
601 602
	pm_runtime_disable(&icd->vdev->dev);
eresume:
603
	__soc_camera_power_off(icd);
604
epower:
605 606
	ici->ops->remove(icd);
eiciadd:
607
	icd->use_count--;
608
	module_put(ici->ops->owner);
609 610
emodule:
	mutex_unlock(&icd->video_lock);
611

612 613 614
	return ret;
}

615
static int soc_camera_close(struct file *file)
616
{
617
	struct soc_camera_device *icd = file->private_data;
618
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
619

620
	mutex_lock(&icd->video_lock);
621
	icd->use_count--;
622
	if (!icd->use_count) {
623 624 625
		pm_runtime_suspend(&icd->vdev->dev);
		pm_runtime_disable(&icd->vdev->dev);

626 627
		if (ici->ops->init_videobuf2)
			vb2_queue_release(&icd->vb2_vidq);
628
		ici->ops->remove(icd);
629

630
		__soc_camera_power_off(icd);
631
	}
632

633 634
	if (icd->streamer == file)
		icd->streamer = NULL;
635
	mutex_unlock(&icd->video_lock);
636

637
	module_put(ici->ops->owner);
638

639
	dev_dbg(icd->pdev, "camera device close\n");
640 641 642 643

	return 0;
}

644
static ssize_t soc_camera_read(struct file *file, char __user *buf,
645
			       size_t count, loff_t *ppos)
646
{
647
	struct soc_camera_device *icd = file->private_data;
648 649 650 651 652 653 654
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);

	dev_dbg(icd->pdev, "read called, buf %p\n", buf);

	if (ici->ops->init_videobuf2 && icd->vb2_vidq.io_modes & VB2_READ)
		return vb2_read(&icd->vb2_vidq, buf, count, ppos,
				file->f_flags & O_NONBLOCK);
655

656
	dev_err(icd->pdev, "camera device read not implemented\n");
657

658
	return -EINVAL;
659 660 661 662
}

static int soc_camera_mmap(struct file *file, struct vm_area_struct *vma)
{
663
	struct soc_camera_device *icd = file->private_data;
664
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
665 666
	int err;

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

669 670 671
	if (icd->streamer != file)
		return -EBUSY;

672 673
	if (mutex_lock_interruptible(&icd->video_lock))
		return -ERESTARTSYS;
674 675 676 677
	if (ici->ops->init_videobuf)
		err = videobuf_mmap_mapper(&icd->vb_vidq, vma);
	else
		err = vb2_mmap(&icd->vb2_vidq, vma);
678
	mutex_unlock(&icd->video_lock);
679

680
	dev_dbg(icd->pdev, "vma start=0x%08lx, size=%ld, ret=%d\n",
681 682 683 684 685 686 687 688 689
		(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)
{
690
	struct soc_camera_device *icd = file->private_data;
691
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
692
	unsigned res = POLLERR;
693

694
	if (icd->streamer != file)
695 696
		return POLLERR;

697 698 699 700 701 702 703
	mutex_lock(&icd->video_lock);
	if (ici->ops->init_videobuf && list_empty(&icd->vb_vidq.stream))
		dev_err(icd->pdev, "Trying to poll with no queued buffers!\n");
	else
		res = ici->ops->poll(file, pt);
	mutex_unlock(&icd->video_lock);
	return res;
704 705
}

706 707 708 709 710 711 712 713 714 715 716 717 718 719
void soc_camera_lock(struct vb2_queue *vq)
{
	struct soc_camera_device *icd = vb2_get_drv_priv(vq);
	mutex_lock(&icd->video_lock);
}
EXPORT_SYMBOL(soc_camera_lock);

void soc_camera_unlock(struct vb2_queue *vq)
{
	struct soc_camera_device *icd = vb2_get_drv_priv(vq);
	mutex_unlock(&icd->video_lock);
}
EXPORT_SYMBOL(soc_camera_unlock);

720
static struct v4l2_file_operations soc_camera_fops = {
721 722 723
	.owner		= THIS_MODULE,
	.open		= soc_camera_open,
	.release	= soc_camera_close,
724
	.unlocked_ioctl	= video_ioctl2,
725 726 727 728 729
	.read		= soc_camera_read,
	.mmap		= soc_camera_mmap,
	.poll		= soc_camera_poll,
};

730
static int soc_camera_s_fmt_vid_cap(struct file *file, void *priv,
731
				    struct v4l2_format *f)
732
{
733
	struct soc_camera_device *icd = file->private_data;
734 735 736 737
	int ret;

	WARN_ON(priv != file->private_data);

738
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
739
		dev_warn(icd->pdev, "Wrong buf-type %d\n", f->type);
740 741 742
		return -EINVAL;
	}

743 744
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;
745

746 747
	if (is_streaming(to_soc_camera_host(icd->parent), icd)) {
		dev_err(icd->pdev, "S_FMT denied: queue initialised\n");
748
		return -EBUSY;
749 750
	}

751 752 753 754
	ret = soc_camera_set_fmt(icd, f);

	if (!ret && !icd->streamer)
		icd->streamer = file;
755 756

	return ret;
757 758
}

759
static int soc_camera_enum_fmt_vid_cap(struct file *file, void  *priv,
760
				       struct v4l2_fmtdesc *f)
761
{
762
	struct soc_camera_device *icd = file->private_data;
763
	const struct soc_mbus_pixelfmt *format;
764 765 766

	WARN_ON(priv != file->private_data);

767
	if (f->index >= icd->num_user_formats)
768 769
		return -EINVAL;

770
	format = icd->user_formats[f->index].host_fmt;
771

772 773
	if (format->name)
		strlcpy(f->description, format->name, sizeof(f->description));
774 775 776 777
	f->pixelformat = format->fourcc;
	return 0;
}

778
static int soc_camera_g_fmt_vid_cap(struct file *file, void *priv,
779
				    struct v4l2_format *f)
780
{
781
	struct soc_camera_device *icd = file->private_data;
782
	struct v4l2_pix_format *pix = &f->fmt.pix;
783 784 785

	WARN_ON(priv != file->private_data);

786 787 788
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

789 790
	pix->width		= icd->user_width;
	pix->height		= icd->user_height;
791 792
	pix->bytesperline	= icd->bytesperline;
	pix->sizeimage		= icd->sizeimage;
793
	pix->field		= icd->field;
794 795
	pix->pixelformat	= icd->current_fmt->host_fmt->fourcc;
	pix->colorspace		= icd->colorspace;
796
	dev_dbg(icd->pdev, "current_fmt->fourcc: 0x%08x\n",
797
		icd->current_fmt->host_fmt->fourcc);
798 799 800 801 802 803
	return 0;
}

static int soc_camera_querycap(struct file *file, void  *priv,
			       struct v4l2_capability *cap)
{
804
	struct soc_camera_device *icd = file->private_data;
805
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
806 807 808 809

	WARN_ON(priv != file->private_data);

	strlcpy(cap->driver, ici->drv_name, sizeof(cap->driver));
810
	return ici->ops->querycap(ici, cap);
811 812 813 814 815
}

static int soc_camera_streamon(struct file *file, void *priv,
			       enum v4l2_buf_type i)
{
816
	struct soc_camera_device *icd = file->private_data;
817
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
818
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
819
	int ret;
820 821 822 823 824 825

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

826 827 828
	if (icd->streamer != file)
		return -EBUSY;

829
	/* This calls buf_queue from host driver's videobuf_queue_ops */
830 831 832 833 834
	if (ici->ops->init_videobuf)
		ret = videobuf_streamon(&icd->vb_vidq);
	else
		ret = vb2_streamon(&icd->vb2_vidq, i);

835 836
	if (!ret)
		v4l2_subdev_call(sd, video, s_stream, 1);
837 838

	return ret;
839 840 841 842 843
}

static int soc_camera_streamoff(struct file *file, void *priv,
				enum v4l2_buf_type i)
{
844
	struct soc_camera_device *icd = file->private_data;
845
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
846
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
847 848 849 850 851 852

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

853 854 855
	if (icd->streamer != file)
		return -EBUSY;

856 857 858 859
	/*
	 * This calls buf_release from host driver's videobuf_queue_ops for all
	 * remaining buffers. When the last buffer is freed, stop capture
	 */
860 861 862 863
	if (ici->ops->init_videobuf)
		videobuf_streamoff(&icd->vb_vidq);
	else
		vb2_streamoff(&icd->vb2_vidq, i);
864

865
	v4l2_subdev_call(sd, video, s_stream, 0);
866 867 868 869 870 871 872

	return 0;
}

static int soc_camera_cropcap(struct file *file, void *fh,
			      struct v4l2_cropcap *a)
{
873
	struct soc_camera_device *icd = file->private_data;
874
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
875

876
	return ici->ops->cropcap(icd, a);
877 878 879 880 881
}

static int soc_camera_g_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
882
	struct soc_camera_device *icd = file->private_data;
883
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
884
	int ret;
885

886
	ret = ici->ops->get_crop(icd, a);
887

888
	return ret;
889 890
}

891 892 893
/*
 * 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
894
 * retrieve it.
895
 */
896
static int soc_camera_s_crop(struct file *file, void *fh,
897
			     const struct v4l2_crop *a)
898
{
899
	struct soc_camera_device *icd = file->private_data;
900
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
901
	const struct v4l2_rect *rect = &a->c;
902
	struct v4l2_crop current_crop;
903 904 905 906 907
	int ret;

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

908
	dev_dbg(icd->pdev, "S_CROP(%ux%u@%u:%u)\n",
909 910
		rect->width, rect->height, rect->left, rect->top);

911 912
	current_crop.type = a->type;

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

916
	/* Prohibit window size change with initialised buffers */
917
	if (ret < 0) {
918
		dev_err(icd->pdev,
919
			"S_CROP denied: getting current crop failed\n");
920 921 922 923 924 925 926 927
	} else if ((a->c.width == current_crop.c.width &&
		    a->c.height == current_crop.c.height) ||
		   !is_streaming(ici, icd)) {
		/* same size or not streaming - use .set_crop() */
		ret = ici->ops->set_crop(icd, a);
	} else if (ici->ops->set_livecrop) {
		ret = ici->ops->set_livecrop(icd, a);
	} else {
928
		dev_err(icd->pdev,
929 930 931 932
			"S_CROP denied: queue initialised and sizes differ\n");
		ret = -EBUSY;
	}

933 934 935
	return ret;
}

936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
static int soc_camera_g_selection(struct file *file, void *fh,
				  struct v4l2_selection *s)
{
	struct soc_camera_device *icd = file->private_data;
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);

	/* With a wrong type no need to try to fall back to cropping */
	if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

	if (!ici->ops->get_selection)
		return -ENOTTY;

	return ici->ops->get_selection(icd, s);
}

static int soc_camera_s_selection(struct file *file, void *fh,
				  struct v4l2_selection *s)
{
	struct soc_camera_device *icd = file->private_data;
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
	int ret;

	/* In all these cases cropping emulation will not help */
	if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
961 962
	    (s->target != V4L2_SEL_TGT_COMPOSE &&
	     s->target != V4L2_SEL_TGT_CROP))
963 964
		return -EINVAL;

965
	if (s->target == V4L2_SEL_TGT_COMPOSE) {
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
		/* No output size change during a running capture! */
		if (is_streaming(ici, icd) &&
		    (icd->user_width != s->r.width ||
		     icd->user_height != s->r.height))
			return -EBUSY;

		/*
		 * Only one user is allowed to change the output format, touch
		 * buffers, start / stop streaming, poll for data
		 */
		if (icd->streamer && icd->streamer != file)
			return -EBUSY;
	}

	if (!ici->ops->set_selection)
		return -ENOTTY;

	ret = ici->ops->set_selection(icd, s);
	if (!ret &&
985
	    s->target == V4L2_SEL_TGT_COMPOSE) {
986 987 988 989 990 991 992 993 994
		icd->user_width = s->r.width;
		icd->user_height = s->r.height;
		if (!icd->streamer)
			icd->streamer = file;
	}

	return ret;
}

995 996 997
static int soc_camera_g_parm(struct file *file, void *fh,
			     struct v4l2_streamparm *a)
{
998
	struct soc_camera_device *icd = file->private_data;
999
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009

	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)
{
1010
	struct soc_camera_device *icd = file->private_data;
1011
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1012 1013 1014 1015 1016 1017 1018

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

	return -ENOIOCTLCMD;
}

1019
static int soc_camera_g_chip_ident(struct file *file, void *fh,
1020
				   struct v4l2_dbg_chip_ident *id)
1021
{
1022
	struct soc_camera_device *icd = file->private_data;
1023
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1024

1025
	return v4l2_subdev_call(sd, core, g_chip_ident, id);
1026 1027 1028 1029
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
static int soc_camera_g_register(struct file *file, void *fh,
1030
				 struct v4l2_dbg_register *reg)
1031
{
1032
	struct soc_camera_device *icd = file->private_data;
1033
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1034

1035
	return v4l2_subdev_call(sd, core, g_register, reg);
1036 1037 1038
}

static int soc_camera_s_register(struct file *file, void *fh,
1039
				 struct v4l2_dbg_register *reg)
1040
{
1041
	struct soc_camera_device *icd = file->private_data;
1042
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1043

1044
	return v4l2_subdev_call(sd, core, s_register, reg);
1045 1046 1047
}
#endif

1048 1049
static int soc_camera_probe(struct soc_camera_device *icd);

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

1055
	mutex_lock(&ici->host_lock);
1056 1057 1058

	list_for_each_entry(icd, &devices, list) {
		if (icd->iface == ici->nr) {
1059
			icd->parent = ici->v4l2_dev.dev;
1060
			soc_camera_probe(icd);
1061 1062 1063
		}
	}

1064
	mutex_unlock(&ici->host_lock);
1065 1066
}

1067 1068 1069
#ifdef CONFIG_I2C_BOARDINFO
static int soc_camera_init_i2c(struct soc_camera_device *icd,
			       struct soc_camera_link *icl)
1070
{
1071
	struct i2c_client *client;
1072
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1073
	struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
1074
	struct v4l2_subdev *subdev;
1075

1076
	if (!adap) {
1077
		dev_err(icd->pdev, "Cannot get I2C adapter #%d. No driver?\n",
1078 1079 1080
			icl->i2c_adapter_id);
		goto ei2cga;
	}
1081

1082
	icl->board_info->platform_data = icl;
1083

1084
	subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
1085
				icl->board_info, NULL);
1086
	if (!subdev)
1087
		goto ei2cnd;
1088

1089
	client = v4l2_get_subdevdata(subdev);
1090

1091
	/* Use to_i2c_client(dev) to recover the i2c client */
1092
	icd->control = &client->dev;
1093

1094 1095 1096 1097
	return 0;
ei2cnd:
	i2c_put_adapter(adap);
ei2cga:
1098
	return -ENODEV;
1099 1100
}

1101 1102 1103 1104
static void soc_camera_free_i2c(struct soc_camera_device *icd)
{
	struct i2c_client *client =
		to_i2c_client(to_soc_camera_control(icd));
1105
	struct i2c_adapter *adap = client->adapter;
1106 1107

	icd->control = NULL;
1108
	v4l2_device_unregister_subdev(i2c_get_clientdata(client));
1109
	i2c_unregister_device(client);
1110
	i2c_put_adapter(adap);
1111 1112 1113 1114 1115 1116
}
#else
#define soc_camera_init_i2c(icd, icl)	(-ENODEV)
#define soc_camera_free_i2c(icd)	do {} while (0)
#endif

1117
static int soc_camera_video_start(struct soc_camera_device *icd);
1118 1119
static int video_dev_create(struct soc_camera_device *icd);
/* Called during host-driver probe */
1120
static int soc_camera_probe(struct soc_camera_device *icd)
1121
{
1122
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1123
	struct soc_camera_link *icl = to_soc_camera_link(icd);
1124
	struct device *control = NULL;
1125
	struct v4l2_subdev *sd;
1126
	struct v4l2_mbus_framefmt mf;
1127 1128
	int ret;

1129
	dev_info(icd->pdev, "Probing %s\n", dev_name(icd->pdev));
1130

1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
	/*
	 * Currently the subdev with the largest number of controls (13) is
	 * ov6550. So let's pick 16 as a hint for the control handler. Note
	 * that this is a hint only: too large and you waste some memory, too
	 * small and there is a (very) small performance hit when looking up
	 * controls in the internal hash.
	 */
	ret = v4l2_ctrl_handler_init(&icd->ctrl_handler, 16);
	if (ret < 0)
		return ret;

1142 1143
	ret = devm_regulator_bulk_get(icd->pdev, icl->num_regulators,
				      icl->regulators);
1144 1145 1146
	if (ret < 0)
		goto ereg;

1147 1148 1149 1150 1151 1152 1153 1154
	/* 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;

1155
	/* Must have icd->vdev before registering the device */
1156 1157 1158
	ret = video_dev_create(icd);
	if (ret < 0)
		goto evdc;
1159

1160 1161 1162 1163 1164 1165
	/* 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) {
1166
		ret = -EINVAL;
1167 1168
		goto eadddev;
	} else {
1169 1170 1171
		if (icl->module_name)
			ret = request_module(icl->module_name);

1172
		ret = icl->add_device(icd);
1173 1174
		if (ret < 0)
			goto eadddev;
1175

1176 1177 1178 1179
		/*
		 * FIXME: this is racy, have to use driver-binding notification,
		 * when it is available
		 */
1180
		control = to_soc_camera_control(icd);
1181
		if (!control || !control->driver || !dev_get_drvdata(control) ||
1182
		    !try_module_get(control->driver->owner)) {
1183
			icl->del_device(icd);
1184
			ret = -ENODEV;
1185 1186
			goto enodrv;
		}
1187
	}
1188

1189
	sd = soc_camera_to_subdev(icd);
1190 1191
	sd->grp_id = soc_camera_grp_id(icd);
	v4l2_set_subdev_hostdata(sd, icd);
1192

1193 1194
	ret = v4l2_ctrl_add_handler(&icd->ctrl_handler, sd->ctrl_handler, NULL);
	if (ret < 0)
1195 1196
		goto ectrl;

1197 1198 1199 1200 1201 1202 1203
	/* 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;

1204 1205 1206 1207 1208
	/*
	 * ..._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.
	 */
1209 1210 1211 1212 1213 1214
	mutex_lock(&icd->video_lock);

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

1215
	/* Try to improve our guess of a reasonable window format */
1216 1217 1218 1219 1220
	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;
1221 1222
	}

1223 1224 1225
	ici->ops->remove(icd);

	mutex_unlock(&icd->video_lock);
1226

1227
	return 0;
1228

1229 1230
evidstart:
	mutex_unlock(&icd->video_lock);
1231 1232
	soc_camera_free_user_formats(icd);
eiufmt:
1233
ectrl:
1234
	if (icl->board_info) {
1235
		soc_camera_free_i2c(icd);
1236
	} else {
1237
		icl->del_device(icd);
1238 1239 1240
		module_put(control->driver->owner);
	}
enodrv:
1241 1242
eadddev:
	video_device_release(icd->vdev);
1243
	icd->vdev = NULL;
1244
evdc:
1245 1246
	ici->ops->remove(icd);
eadd:
1247
ereg:
1248
	v4l2_ctrl_handler_free(&icd->ctrl_handler);
1249 1250 1251
	return ret;
}

1252 1253 1254 1255
/*
 * This is called on device_unregister, which only means we have to disconnect
 * from the host, but not remove ourselves from the device list
 */
1256
static int soc_camera_remove(struct soc_camera_device *icd)
1257
{
1258 1259
	struct soc_camera_link *icl = to_soc_camera_link(icd);
	struct video_device *vdev = icd->vdev;
1260

1261
	BUG_ON(!icd->parent);
1262

1263
	v4l2_ctrl_handler_free(&icd->ctrl_handler);
1264 1265 1266 1267 1268
	if (vdev) {
		video_unregister_device(vdev);
		icd->vdev = NULL;
	}

1269
	if (icl->board_info) {
1270
		soc_camera_free_i2c(icd);
1271
	} else {
1272
		struct device_driver *drv = to_soc_camera_control(icd)->driver;
1273
		if (drv) {
1274
			icl->del_device(icd);
1275 1276 1277
			module_put(drv->owner);
		}
	}
1278
	soc_camera_free_user_formats(icd);
1279

1280 1281 1282
	return 0;
}

1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
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);
}

1296
static int default_s_crop(struct soc_camera_device *icd, const struct v4l2_crop *a)
1297 1298 1299 1300 1301
{
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
	return v4l2_subdev_call(sd, video, s_crop, a);
}

1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
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);
}

1316 1317
static int default_enum_framesizes(struct soc_camera_device *icd,
				   struct v4l2_frmsizeenum *fsize)
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
{
	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;

1331
	ret = v4l2_subdev_call(sd, video, enum_framesizes, &fsize_mbus);
1332 1333 1334 1335 1336 1337 1338 1339 1340
	if (ret < 0)
		return ret;

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

	return 0;
}

1341
int soc_camera_host_register(struct soc_camera_host *ici)
1342 1343
{
	struct soc_camera_host *ix;
1344
	int ret;
1345

1346 1347 1348 1349 1350
	if (!ici || !ici->ops ||
	    !ici->ops->try_fmt ||
	    !ici->ops->set_fmt ||
	    !ici->ops->set_bus_param ||
	    !ici->ops->querycap ||
1351 1352 1353
	    ((!ici->ops->init_videobuf ||
	      !ici->ops->reqbufs) &&
	     !ici->ops->init_videobuf2) ||
1354 1355
	    !ici->ops->add ||
	    !ici->ops->remove ||
1356
	    !ici->ops->poll ||
1357
	    !ici->v4l2_dev.dev)
1358 1359
		return -EINVAL;

1360 1361 1362 1363 1364 1365
	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;
1366 1367 1368 1369
	if (!ici->ops->set_parm)
		ici->ops->set_parm = default_s_parm;
	if (!ici->ops->get_parm)
		ici->ops->get_parm = default_g_parm;
1370 1371
	if (!ici->ops->enum_framesizes)
		ici->ops->enum_framesizes = default_enum_framesizes;
1372

1373 1374 1375
	mutex_lock(&list_lock);
	list_for_each_entry(ix, &hosts, list) {
		if (ix->nr == ici->nr) {
1376 1377
			ret = -EBUSY;
			goto edevreg;
1378 1379 1380
		}
	}

1381 1382 1383
	ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
	if (ret < 0)
		goto edevreg;
1384

1385 1386 1387
	list_add_tail(&ici->list, &hosts);
	mutex_unlock(&list_lock);

1388
	mutex_init(&ici->host_lock);
1389 1390 1391
	scan_add_host(ici);

	return 0;
1392 1393 1394 1395

edevreg:
	mutex_unlock(&list_lock);
	return ret;
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
}
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);
1407 1408 1409
	list_for_each_entry(icd, &devices, list)
		if (icd->iface == ici->nr && to_soc_camera_control(icd))
			soc_camera_remove(icd);
1410 1411 1412

	mutex_unlock(&list_lock);

1413
	v4l2_device_unregister(&ici->v4l2_dev);
1414 1415 1416 1417
}
EXPORT_SYMBOL(soc_camera_host_unregister);

/* Image capture device */
1418
static int soc_camera_device_register(struct soc_camera_device *icd)
1419 1420 1421 1422 1423 1424
{
	struct soc_camera_device *ix;
	int num = -1, i;

	for (i = 0; i < 256 && num < 0; i++) {
		num = i;
1425
		/* Check if this index is available on this interface */
1426 1427 1428 1429 1430 1431 1432 1433 1434
		list_for_each_entry(ix, &devices, list) {
			if (ix->iface == icd->iface && ix->devnum == i) {
				num = -1;
				break;
			}
		}
	}

	if (num < 0)
1435 1436 1437 1438
		/*
		 * ok, we have 256 cameras on this host...
		 * man, stay reasonable...
		 */
1439 1440
		return -ENOMEM;

1441
	icd->devnum		= num;
1442 1443
	icd->use_count		= 0;
	icd->host_priv		= NULL;
1444
	mutex_init(&icd->video_lock);
1445

1446 1447 1448
	list_add_tail(&icd->list, &devices);

	return 0;
1449 1450
}

1451 1452
static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = {
	.vidioc_querycap	 = soc_camera_querycap,
1453
	.vidioc_try_fmt_vid_cap  = soc_camera_try_fmt_vid_cap,
1454 1455
	.vidioc_g_fmt_vid_cap    = soc_camera_g_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap    = soc_camera_s_fmt_vid_cap,
1456
	.vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap,
1457 1458 1459 1460
	.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,
1461
	.vidioc_g_std		 = soc_camera_g_std,
1462
	.vidioc_enum_framesizes  = soc_camera_enum_framesizes,
1463 1464 1465 1466
	.vidioc_reqbufs		 = soc_camera_reqbufs,
	.vidioc_querybuf	 = soc_camera_querybuf,
	.vidioc_qbuf		 = soc_camera_qbuf,
	.vidioc_dqbuf		 = soc_camera_dqbuf,
1467 1468
	.vidioc_create_bufs	 = soc_camera_create_bufs,
	.vidioc_prepare_buf	 = soc_camera_prepare_buf,
1469 1470 1471 1472 1473
	.vidioc_streamon	 = soc_camera_streamon,
	.vidioc_streamoff	 = soc_camera_streamoff,
	.vidioc_cropcap		 = soc_camera_cropcap,
	.vidioc_g_crop		 = soc_camera_g_crop,
	.vidioc_s_crop		 = soc_camera_s_crop,
1474 1475
	.vidioc_g_selection	 = soc_camera_g_selection,
	.vidioc_s_selection	 = soc_camera_s_selection,
1476 1477
	.vidioc_g_parm		 = soc_camera_g_parm,
	.vidioc_s_parm		 = soc_camera_s_parm,
1478 1479 1480 1481 1482 1483 1484
	.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
};

1485
static int video_dev_create(struct soc_camera_device *icd)
1486
{
1487
	struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1488
	struct video_device *vdev = video_device_alloc();
1489 1490

	if (!vdev)
1491
		return -ENOMEM;
1492 1493

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

1495
	vdev->parent		= icd->pdev;
1496 1497
	vdev->current_norm	= V4L2_STD_UNKNOWN;
	vdev->fops		= &soc_camera_fops;
1498
	vdev->ioctl_ops		= &soc_camera_ioctl_ops;
1499
	vdev->release		= video_device_release;
1500
	vdev->tvnorms		= V4L2_STD_UNKNOWN;
1501
	vdev->ctrl_handler	= &icd->ctrl_handler;
1502
	vdev->lock		= &icd->video_lock;
1503 1504 1505 1506

	icd->vdev = vdev;

	return 0;
1507
}
1508

1509
/*
1510
 * Called from soc_camera_probe() above (with .video_lock held???)
1511
 */
1512
static int soc_camera_video_start(struct soc_camera_device *icd)
1513
{
1514
	const struct device_type *type = icd->vdev->dev.type;
1515
	int ret;
1516

1517
	if (!icd->parent)
1518 1519
		return -ENODEV;

1520
	ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
1521
	if (ret < 0) {
1522
		dev_err(icd->pdev, "video_register_device failed: %d\n", ret);
1523 1524
		return ret;
	}
1525

1526 1527 1528
	/* Restore device type, possibly set by the subdevice driver */
	icd->vdev->dev.type = type;

1529
	return 0;
1530 1531
}

1532
static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1533
{
1534 1535
	struct soc_camera_link *icl = pdev->dev.platform_data;
	struct soc_camera_device *icd;
1536

1537 1538
	if (!icl)
		return -EINVAL;
1539

1540
	icd = devm_kzalloc(&pdev->dev, sizeof(*icd), GFP_KERNEL);
1541 1542
	if (!icd)
		return -ENOMEM;
1543

1544
	icd->iface = icl->bus_id;
1545
	icd->link = icl;
1546
	icd->pdev = &pdev->dev;
1547
	platform_set_drvdata(pdev, icd);
1548

1549 1550 1551
	icd->user_width		= DEFAULT_WIDTH;
	icd->user_height	= DEFAULT_HEIGHT;

1552
	return soc_camera_device_register(icd);
1553
}
1554

1555 1556
/*
 * Only called on rmmod for each platform device, since they are not
1557
 * hot-pluggable. Now we know, that all our users - hosts and devices have
1558 1559
 * been unloaded already
 */
1560
static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1561
{
1562
	struct soc_camera_device *icd = platform_get_drvdata(pdev);
1563

1564
	if (!icd)
1565 1566
		return -EINVAL;

1567
	list_del(&icd->list);
1568

1569 1570 1571 1572
	return 0;
}

static struct platform_driver __refdata soc_camera_pdrv = {
1573
	.probe = soc_camera_pdrv_probe,
1574 1575 1576 1577
	.remove  = __devexit_p(soc_camera_pdrv_remove),
	.driver  = {
		.name	= "soc-camera-pdrv",
		.owner	= THIS_MODULE,
1578 1579 1580
	},
};

1581
module_platform_driver(soc_camera_pdrv);
1582 1583 1584 1585

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