soc_camera.c 39.4 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 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 92 93 94 95 96 97
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;
}

98 99 100 101 102 103 104 105 106 107 108 109
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);

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 138 139 140 141 142 143
/**
 * 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);

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 171 172 173 174 175 176 177 178 179 180 181 182 183
#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)
{
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	struct v4l2_pix_format *pix = &f->fmt.pix;
	int ret;

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

	pix->bytesperline = 0;
	pix->sizeimage = 0;

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

	if (!pix->sizeimage) {
		if (!pix->bytesperline) {
			const struct soc_camera_format_xlate *xlate;

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

			ret = soc_mbus_bytes_per_line(pix->width,
						      xlate->host_fmt);
			if (ret > 0)
				pix->bytesperline = ret;
		}
		if (pix->bytesperline)
			pix->sizeimage = pix->bytesperline * pix->height;
	}

	return 0;
}

184
static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
185
				      struct v4l2_format *f)
186
{
187
	struct soc_camera_device *icd = file->private_data;
188 189 190

	WARN_ON(priv != file->private_data);

191 192 193 194
	/* Only single-plane capture is supported so far */
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

195
	/* limit format to hardware capabilities */
196
	return soc_camera_try_fmt(icd, f);
197 198 199 200 201 202 203 204
}

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

205 206 207 208
	/* default is camera */
	inp->type = V4L2_INPUT_TYPE_CAMERA;
	inp->std  = V4L2_STD_UNKNOWN;
	strcpy(inp->name, "Camera");
209

210
	return 0;
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
}

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)
{
230
	struct soc_camera_device *icd = file->private_data;
231
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
232

233
	return v4l2_subdev_call(sd, core, s_std, *a);
234 235
}

236 237 238 239 240 241 242 243 244
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);
}

245 246 247 248
static int soc_camera_reqbufs(struct file *file, void *priv,
			      struct v4l2_requestbuffers *p)
{
	int ret;
249
	struct soc_camera_device *icd = file->private_data;
250
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
251 252 253

	WARN_ON(priv != file->private_data);

254 255 256
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;

257 258 259 260 261 262 263 264 265
	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);
	}
266

267 268 269 270
	if (!ret && !icd->streamer)
		icd->streamer = file;

	return ret;
271 272 273 274 275
}

static int soc_camera_querybuf(struct file *file, void *priv,
			       struct v4l2_buffer *p)
{
276
	struct soc_camera_device *icd = file->private_data;
277
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
278 279 280

	WARN_ON(priv != file->private_data);

281 282 283 284
	if (ici->ops->init_videobuf)
		return videobuf_querybuf(&icd->vb_vidq, p);
	else
		return vb2_querybuf(&icd->vb2_vidq, p);
285 286 287 288 289
}

static int soc_camera_qbuf(struct file *file, void *priv,
			   struct v4l2_buffer *p)
{
290
	struct soc_camera_device *icd = file->private_data;
291
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
292 293 294

	WARN_ON(priv != file->private_data);

295 296 297
	if (icd->streamer != file)
		return -EBUSY;

298 299 300 301
	if (ici->ops->init_videobuf)
		return videobuf_qbuf(&icd->vb_vidq, p);
	else
		return vb2_qbuf(&icd->vb2_vidq, p);
302 303 304 305 306
}

static int soc_camera_dqbuf(struct file *file, void *priv,
			    struct v4l2_buffer *p)
{
307
	struct soc_camera_device *icd = file->private_data;
308
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
309 310 311

	WARN_ON(priv != file->private_data);

312 313 314
	if (icd->streamer != file)
		return -EBUSY;

315 316 317 318
	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);
319 320
}

321
/* Always entered with .video_lock held */
322 323
static int soc_camera_init_user_formats(struct soc_camera_device *icd)
{
324
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
325
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
326 327
	unsigned int i, fmts = 0, raw_fmts = 0;
	int ret;
328 329 330 331
	enum v4l2_mbus_pixelcode code;

	while (!v4l2_subdev_call(sd, video, enum_mbus_fmt, raw_fmts, &code))
		raw_fmts++;
332 333 334 335 336 337

	if (!ici->ops->get_formats)
		/*
		 * Fallback mode - the host will have to serve all
		 * sensor-provided formats one-to-one to the user
		 */
338
		fmts = raw_fmts;
339 340 341 342 343
	else
		/*
		 * First pass - only count formats this host-sensor
		 * configuration can provide
		 */
344
		for (i = 0; i < raw_fmts; i++) {
345 346 347 348 349
			ret = ici->ops->get_formats(icd, i, NULL);
			if (ret < 0)
				return ret;
			fmts += ret;
		}
350 351 352 353 354 355 356 357 358 359 360 361

	if (!fmts)
		return -ENXIO;

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

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

	/* Second pass - actually fill data formats */
362
	fmts = 0;
363
	for (i = 0; i < raw_fmts; i++)
364
		if (!ici->ops->get_formats) {
365
			v4l2_subdev_call(sd, video, enum_mbus_fmt, i, &code);
366
			icd->user_formats[fmts].host_fmt =
367
				soc_mbus_get_fmtdesc(code);
368 369
			if (icd->user_formats[fmts].host_fmt)
				icd->user_formats[fmts++].code = code;
370
		} else {
371 372 373 374 375
			ret = ici->ops->get_formats(icd, i,
						    &icd->user_formats[fmts]);
			if (ret < 0)
				goto egfmt;
			fmts += ret;
376 377
		}

378
	icd->num_user_formats = fmts;
379
	icd->current_fmt = &icd->user_formats[0];
380 381

	return 0;
382 383 384 385

egfmt:
	vfree(icd->user_formats);
	return ret;
386 387
}

388
/* Always entered with .video_lock held */
389 390
static void soc_camera_free_user_formats(struct soc_camera_device *icd)
{
391 392 393 394
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

	if (ici->ops->put_formats)
		ici->ops->put_formats(icd);
395
	icd->current_fmt = NULL;
396
	icd->num_user_formats = 0;
397
	vfree(icd->user_formats);
398
	icd->user_formats = NULL;
399 400
}

401
/* Called with .vb_lock held, or from the first open(2), see comment there */
402
static int soc_camera_set_fmt(struct soc_camera_device *icd,
403 404 405 406 407 408
			      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;

409 410 411
	dev_dbg(&icd->dev, "S_FMT(%c%c%c%c, %ux%u)\n",
		pixfmtstr(pix->pixelformat), pix->width, pix->height);

412
	/* We always call try_fmt() before set_fmt() or set_crop() */
413
	ret = soc_camera_try_fmt(icd, f);
414 415 416 417 418 419 420
	if (ret < 0)
		return ret;

	ret = ici->ops->set_fmt(icd, f);
	if (ret < 0) {
		return ret;
	} else if (!icd->current_fmt ||
421
		   icd->current_fmt->host_fmt->fourcc != pix->pixelformat) {
422
		dev_err(&icd->dev,
423 424 425 426
			"Host driver hasn't set up current format correctly!\n");
		return -EINVAL;
	}

427 428
	icd->user_width		= pix->width;
	icd->user_height	= pix->height;
429 430
	icd->bytesperline	= pix->bytesperline;
	icd->sizeimage		= pix->sizeimage;
431
	icd->colorspace		= pix->colorspace;
432 433 434
	icd->field		= pix->field;
	if (ici->ops->init_videobuf)
		icd->vb_vidq.field = pix->field;
435

436
	dev_dbg(&icd->dev, "set width: %d height: %d\n",
437
		icd->user_width, icd->user_height);
438 439 440 441 442

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

443
static int soc_camera_open(struct file *file)
444
{
445
	struct video_device *vdev = video_devdata(file);
446 447 448
	struct soc_camera_device *icd = container_of(vdev->parent,
						     struct soc_camera_device,
						     dev);
449
	struct soc_camera_link *icl = to_soc_camera_link(icd);
450
	struct soc_camera_host *ici;
451 452
	int ret;

453 454 455 456
	if (!icd->ops)
		/* No device driver attached */
		return -ENODEV;

457
	ici = to_soc_camera_host(icd->dev.parent);
458

459
	if (!try_module_get(ici->ops->owner)) {
460
		dev_err(&icd->dev, "Couldn't lock capture bus driver.\n");
461
		return -EINVAL;
462 463
	}

464 465
	icd->use_count++;

466 467
	/* Now we really have to activate the camera */
	if (icd->use_count == 1) {
468
		/* Restore parameters before the last close() per V4L2 API */
469 470 471
		struct v4l2_format f = {
			.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
			.fmt.pix = {
472 473
				.width		= icd->user_width,
				.height		= icd->user_height,
474
				.field		= icd->field,
475 476 477
				.colorspace	= icd->colorspace,
				.pixelformat	=
					icd->current_fmt->host_fmt->fourcc,
478 479 480
			},
		};

481 482 483
		ret = soc_camera_power_set(icd, icl, 1);
		if (ret < 0)
			goto epower;
484 485 486 487 488

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

489
		ret = ici->ops->add(icd);
490 491 492 493
		if (ret < 0) {
			dev_err(&icd->dev, "Couldn't activate the camera: %d\n", ret);
			goto eiciadd;
		}
494

495 496 497 498 499
		pm_runtime_enable(&icd->vdev->dev);
		ret = pm_runtime_resume(&icd->vdev->dev);
		if (ret < 0 && ret != -ENOSYS)
			goto eresume;

500 501 502 503 504 505
		/*
		 * 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.
		 */
506
		ret = soc_camera_set_fmt(icd, &f);
507 508
		if (ret < 0)
			goto esfmt;
509

510 511 512 513 514 515 516
		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;
		}
517 518
	}

519
	file->private_data = icd;
520 521 522 523
	dev_dbg(&icd->dev, "camera device open\n");

	return 0;

524
	/*
525
	 * First four errors are entered with the .video_lock held
526 527
	 * and use_count == 1
	 */
528
einitvb:
529
esfmt:
530 531
	pm_runtime_disable(&icd->vdev->dev);
eresume:
532
	ici->ops->remove(icd);
533
eiciadd:
534
	soc_camera_power_set(icd, icl, 0);
535
epower:
536
	icd->use_count--;
537
	module_put(ici->ops->owner);
538

539 540 541
	return ret;
}

542
static int soc_camera_close(struct file *file)
543
{
544
	struct soc_camera_device *icd = file->private_data;
545 546
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);

547
	icd->use_count--;
548
	if (!icd->use_count) {
549 550
		struct soc_camera_link *icl = to_soc_camera_link(icd);

551 552 553
		pm_runtime_suspend(&icd->vdev->dev);
		pm_runtime_disable(&icd->vdev->dev);

554
		ici->ops->remove(icd);
555 556
		if (ici->ops->init_videobuf2)
			vb2_queue_release(&icd->vb2_vidq);
557

558
		soc_camera_power_set(icd, icl, 0);
559
	}
560

561 562 563
	if (icd->streamer == file)
		icd->streamer = NULL;

564
	module_put(ici->ops->owner);
565

566
	dev_dbg(&icd->dev, "camera device close\n");
567 568 569 570

	return 0;
}

571
static ssize_t soc_camera_read(struct file *file, char __user *buf,
572
			       size_t count, loff_t *ppos)
573
{
574
	struct soc_camera_device *icd = file->private_data;
575 576
	int err = -EINVAL;

577
	dev_err(&icd->dev, "camera device read not implemented\n");
578 579 580 581 582 583

	return err;
}

static int soc_camera_mmap(struct file *file, struct vm_area_struct *vma)
{
584
	struct soc_camera_device *icd = file->private_data;
585
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
586 587 588 589
	int err;

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

590 591 592
	if (icd->streamer != file)
		return -EBUSY;

593 594 595 596
	if (ici->ops->init_videobuf)
		err = videobuf_mmap_mapper(&icd->vb_vidq, vma);
	else
		err = vb2_mmap(&icd->vb2_vidq, vma);
597 598 599 600 601 602 603 604 605 606 607

	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)
{
608
	struct soc_camera_device *icd = file->private_data;
609
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
610

611 612 613
	if (icd->streamer != file)
		return -EBUSY;

614
	if (ici->ops->init_videobuf && list_empty(&icd->vb_vidq.stream)) {
615 616 617 618
		dev_err(&icd->dev, "Trying to poll with no queued buffers!\n");
		return POLLERR;
	}

619
	return ici->ops->poll(file, pt);
620 621
}

622 623 624 625 626 627 628 629 630 631 632 633 634 635
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);

636
static struct v4l2_file_operations soc_camera_fops = {
637 638 639
	.owner		= THIS_MODULE,
	.open		= soc_camera_open,
	.release	= soc_camera_close,
640
	.unlocked_ioctl	= video_ioctl2,
641 642 643 644 645
	.read		= soc_camera_read,
	.mmap		= soc_camera_mmap,
	.poll		= soc_camera_poll,
};

646
static int soc_camera_s_fmt_vid_cap(struct file *file, void *priv,
647
				    struct v4l2_format *f)
648
{
649
	struct soc_camera_device *icd = file->private_data;
650 651 652 653
	int ret;

	WARN_ON(priv != file->private_data);

654 655 656 657 658
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
		dev_warn(&icd->dev, "Wrong buf-type %d\n", f->type);
		return -EINVAL;
	}

659 660
	if (icd->streamer && icd->streamer != file)
		return -EBUSY;
661

662
	if (is_streaming(to_soc_camera_host(icd->dev.parent), icd)) {
663
		dev_err(&icd->dev, "S_FMT denied: queue initialised\n");
664
		return -EBUSY;
665 666
	}

667 668 669 670
	ret = soc_camera_set_fmt(icd, f);

	if (!ret && !icd->streamer)
		icd->streamer = file;
671 672

	return ret;
673 674
}

675
static int soc_camera_enum_fmt_vid_cap(struct file *file, void  *priv,
676
				       struct v4l2_fmtdesc *f)
677
{
678
	struct soc_camera_device *icd = file->private_data;
679
	const struct soc_mbus_pixelfmt *format;
680 681 682

	WARN_ON(priv != file->private_data);

683
	if (f->index >= icd->num_user_formats)
684 685
		return -EINVAL;

686
	format = icd->user_formats[f->index].host_fmt;
687

688 689
	if (format->name)
		strlcpy(f->description, format->name, sizeof(f->description));
690 691 692 693
	f->pixelformat = format->fourcc;
	return 0;
}

694
static int soc_camera_g_fmt_vid_cap(struct file *file, void *priv,
695
				    struct v4l2_format *f)
696
{
697
	struct soc_camera_device *icd = file->private_data;
698
	struct v4l2_pix_format *pix = &f->fmt.pix;
699 700 701

	WARN_ON(priv != file->private_data);

702 703 704
	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

705 706
	pix->width		= icd->user_width;
	pix->height		= icd->user_height;
707 708
	pix->bytesperline	= icd->bytesperline;
	pix->sizeimage		= icd->sizeimage;
709
	pix->field		= icd->field;
710 711
	pix->pixelformat	= icd->current_fmt->host_fmt->fourcc;
	pix->colorspace		= icd->colorspace;
712
	dev_dbg(&icd->dev, "current_fmt->fourcc: 0x%08x\n",
713
		icd->current_fmt->host_fmt->fourcc);
714 715 716 717 718 719
	return 0;
}

static int soc_camera_querycap(struct file *file, void  *priv,
			       struct v4l2_capability *cap)
{
720
	struct soc_camera_device *icd = file->private_data;
721
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
722 723 724 725

	WARN_ON(priv != file->private_data);

	strlcpy(cap->driver, ici->drv_name, sizeof(cap->driver));
726
	return ici->ops->querycap(ici, cap);
727 728 729 730 731
}

static int soc_camera_streamon(struct file *file, void *priv,
			       enum v4l2_buf_type i)
{
732
	struct soc_camera_device *icd = file->private_data;
733
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
734
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
735
	int ret;
736 737 738 739 740 741

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

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

745
	/* This calls buf_queue from host driver's videobuf_queue_ops */
746 747 748 749 750
	if (ici->ops->init_videobuf)
		ret = videobuf_streamon(&icd->vb_vidq);
	else
		ret = vb2_streamon(&icd->vb2_vidq, i);

751 752
	if (!ret)
		v4l2_subdev_call(sd, video, s_stream, 1);
753 754

	return ret;
755 756 757 758 759
}

static int soc_camera_streamoff(struct file *file, void *priv,
				enum v4l2_buf_type i)
{
760
	struct soc_camera_device *icd = file->private_data;
761
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
762
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
763 764 765 766 767 768

	WARN_ON(priv != file->private_data);

	if (i != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

769 770 771
	if (icd->streamer != file)
		return -EBUSY;

772 773 774 775
	/*
	 * This calls buf_release from host driver's videobuf_queue_ops for all
	 * remaining buffers. When the last buffer is freed, stop capture
	 */
776 777 778 779
	if (ici->ops->init_videobuf)
		videobuf_streamoff(&icd->vb_vidq);
	else
		vb2_streamoff(&icd->vb2_vidq, i);
780

781
	v4l2_subdev_call(sd, video, s_stream, 0);
782 783 784 785 786 787 788

	return 0;
}

static int soc_camera_queryctrl(struct file *file, void *priv,
				struct v4l2_queryctrl *qc)
{
789
	struct soc_camera_device *icd = file->private_data;
790
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
791 792 793 794 795 796 797
	int i;

	WARN_ON(priv != file->private_data);

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

798 799 800 801 802 803 804 805 806
	/* 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 */
807 808 809 810 811 812 813 814 815 816 817 818 819
	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)
{
820
	struct soc_camera_device *icd = file->private_data;
821
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
822
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
823
	int ret;
824 825 826

	WARN_ON(priv != file->private_data);

827 828 829 830 831 832
	if (ici->ops->get_ctrl) {
		ret = ici->ops->get_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

833
	return v4l2_subdev_call(sd, core, g_ctrl, ctrl);
834 835 836 837 838
}

static int soc_camera_s_ctrl(struct file *file, void *priv,
			     struct v4l2_control *ctrl)
{
839
	struct soc_camera_device *icd = file->private_data;
840
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
841
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
842
	int ret;
843 844 845

	WARN_ON(priv != file->private_data);

846 847 848 849 850 851
	if (ici->ops->set_ctrl) {
		ret = ici->ops->set_ctrl(icd, ctrl);
		if (ret != -ENOIOCTLCMD)
			return ret;
	}

852
	return v4l2_subdev_call(sd, core, s_ctrl, ctrl);
853 854 855 856 857
}

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

861
	return ici->ops->cropcap(icd, a);
862 863 864 865 866
}

static int soc_camera_g_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
867
	struct soc_camera_device *icd = file->private_data;
868 869
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
	int ret;
870

871
	ret = ici->ops->get_crop(icd, a);
872

873
	return ret;
874 875
}

876 877 878
/*
 * 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
879
 * retrieve it.
880
 */
881 882 883
static int soc_camera_s_crop(struct file *file, void *fh,
			     struct v4l2_crop *a)
{
884
	struct soc_camera_device *icd = file->private_data;
885
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
886 887
	struct v4l2_rect *rect = &a->c;
	struct v4l2_crop current_crop;
888 889 890 891 892
	int ret;

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

893 894 895 896 897 898
	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);

899
	/* Prohibit window size change with initialised buffers */
900 901 902
	if (ret < 0) {
		dev_err(&icd->dev,
			"S_CROP denied: getting current crop failed\n");
903 904 905 906 907 908 909 910
	} 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 {
911 912 913 914 915
		dev_err(&icd->dev,
			"S_CROP denied: queue initialised and sizes differ\n");
		ret = -EBUSY;
	}

916 917 918
	return ret;
}

919 920 921
static int soc_camera_g_parm(struct file *file, void *fh,
			     struct v4l2_streamparm *a)
{
922
	struct soc_camera_device *icd = file->private_data;
923 924 925 926 927 928 929 930 931 932 933
	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)
{
934
	struct soc_camera_device *icd = file->private_data;
935 936 937 938 939 940 941 942
	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;
}

943
static int soc_camera_g_chip_ident(struct file *file, void *fh,
944
				   struct v4l2_dbg_chip_ident *id)
945
{
946
	struct soc_camera_device *icd = file->private_data;
947
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
948

949
	return v4l2_subdev_call(sd, core, g_chip_ident, id);
950 951 952 953
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
static int soc_camera_g_register(struct file *file, void *fh,
954
				 struct v4l2_dbg_register *reg)
955
{
956
	struct soc_camera_device *icd = file->private_data;
957
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
958

959
	return v4l2_subdev_call(sd, core, g_register, reg);
960 961 962
}

static int soc_camera_s_register(struct file *file, void *fh,
963
				 struct v4l2_dbg_register *reg)
964
{
965
	struct soc_camera_device *icd = file->private_data;
966
	struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
967

968
	return v4l2_subdev_call(sd, core, s_register, reg);
969 970 971 972 973 974 975 976 977 978 979 980
}
#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) {
981
			int ret;
982
			icd->dev.parent = ici->v4l2_dev.dev;
983 984 985 986 987 988 989 990
			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);
			}
991 992 993 994 995 996
		}
	}

	mutex_unlock(&list_lock);
}

997 998 999
#ifdef CONFIG_I2C_BOARDINFO
static int soc_camera_init_i2c(struct soc_camera_device *icd,
			       struct soc_camera_link *icl)
1000
{
1001
	struct i2c_client *client;
1002
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1003
	struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
1004
	struct v4l2_subdev *subdev;
1005

1006 1007 1008 1009 1010
	if (!adap) {
		dev_err(&icd->dev, "Cannot get I2C adapter #%d. No driver?\n",
			icl->i2c_adapter_id);
		goto ei2cga;
	}
1011

1012
	icl->board_info->platform_data = icd;
1013

1014
	subdev = v4l2_i2c_new_subdev_board(&ici->v4l2_dev, adap,
1015
				icl->board_info, NULL);
1016
	if (!subdev)
1017
		goto ei2cnd;
1018

1019
	client = v4l2_get_subdevdata(subdev);
1020

1021 1022
	/* Use to_i2c_client(dev) to recover the i2c client */
	dev_set_drvdata(&icd->dev, &client->dev);
1023

1024 1025 1026 1027
	return 0;
ei2cnd:
	i2c_put_adapter(adap);
ei2cga:
1028
	return -ENODEV;
1029 1030
}

1031 1032 1033 1034
static void soc_camera_free_i2c(struct soc_camera_device *icd)
{
	struct i2c_client *client =
		to_i2c_client(to_soc_camera_control(icd));
1035
	struct i2c_adapter *adap = client->adapter;
1036
	dev_set_drvdata(&icd->dev, NULL);
1037
	v4l2_device_unregister_subdev(i2c_get_clientdata(client));
1038
	i2c_unregister_device(client);
1039
	i2c_put_adapter(adap);
1040 1041 1042 1043 1044 1045
}
#else
#define soc_camera_init_i2c(icd, icl)	(-ENODEV)
#define soc_camera_free_i2c(icd)	do {} while (0)
#endif

1046
static int soc_camera_video_start(struct soc_camera_device *icd);
1047 1048
static int video_dev_create(struct soc_camera_device *icd);
/* Called during host-driver probe */
1049 1050 1051
static int soc_camera_probe(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
1052
	struct soc_camera_host *ici = to_soc_camera_host(dev->parent);
1053
	struct soc_camera_link *icl = to_soc_camera_link(icd);
1054
	struct device *control = NULL;
1055
	struct v4l2_subdev *sd;
1056
	struct v4l2_mbus_framefmt mf;
1057 1058
	int ret;

1059
	dev_info(dev, "Probing %s\n", dev_name(dev));
1060

1061 1062 1063 1064 1065 1066 1067 1068
	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;
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078

	/* 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 */
1079 1080 1081
	ret = video_dev_create(icd);
	if (ret < 0)
		goto evdc;
1082

1083 1084 1085 1086 1087 1088
	/* 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) {
1089
		ret = -EINVAL;
1090 1091
		goto eadddev;
	} else {
1092 1093 1094
		if (icl->module_name)
			ret = request_module(icl->module_name);

1095 1096 1097
		ret = icl->add_device(icl, &icd->dev);
		if (ret < 0)
			goto eadddev;
1098

1099 1100 1101 1102
		/*
		 * FIXME: this is racy, have to use driver-binding notification,
		 * when it is available
		 */
1103
		control = to_soc_camera_control(icd);
1104
		if (!control || !control->driver || !dev_get_drvdata(control) ||
1105 1106 1107 1108
		    !try_module_get(control->driver->owner)) {
			icl->del_device(icl);
			goto enodrv;
		}
1109
	}
1110

1111 1112 1113
	sd = soc_camera_to_subdev(icd);
	sd->grp_id = (long)icd;

1114 1115 1116 1117 1118 1119 1120
	/* 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;

1121 1122 1123 1124 1125 1126 1127
	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.
	 */
1128 1129 1130 1131 1132 1133
	mutex_lock(&icd->video_lock);

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

1134
	/* Try to improve our guess of a reasonable window format */
1135 1136 1137 1138 1139
	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;
1140 1141
	}

1142
	/* Do we have to sysfs_remove_link() before device_unregister()? */
1143
	if (sysfs_create_link(&icd->dev.kobj, &to_soc_camera_control(icd)->kobj,
1144 1145
			      "control"))
		dev_warn(&icd->dev, "Failed creating the control symlink\n");
1146

1147 1148
	ici->ops->remove(icd);

1149
	soc_camera_power_set(icd, icl, 0);
1150 1151

	mutex_unlock(&icd->video_lock);
1152

1153
	return 0;
1154

1155 1156
evidstart:
	mutex_unlock(&icd->video_lock);
1157 1158
	soc_camera_free_user_formats(icd);
eiufmt:
1159
	if (icl->board_info) {
1160
		soc_camera_free_i2c(icd);
1161
	} else {
1162
		icl->del_device(icl);
1163 1164 1165
		module_put(control->driver->owner);
	}
enodrv:
1166 1167 1168
eadddev:
	video_device_release(icd->vdev);
evdc:
1169 1170
	ici->ops->remove(icd);
eadd:
1171
	soc_camera_power_set(icd, icl, 0);
1172
epower:
1173 1174
	regulator_bulk_free(icl->num_regulators, icl->regulators);
ereg:
1175 1176 1177
	return ret;
}

1178 1179 1180 1181
/*
 * This is called on device_unregister, which only means we have to disconnect
 * from the host, but not remove ourselves from the device list
 */
1182 1183 1184
static int soc_camera_remove(struct device *dev)
{
	struct soc_camera_device *icd = to_soc_camera_dev(dev);
1185 1186
	struct soc_camera_link *icl = to_soc_camera_link(icd);
	struct video_device *vdev = icd->vdev;
1187

1188
	BUG_ON(!dev->parent);
1189

1190 1191 1192 1193 1194
	if (vdev) {
		video_unregister_device(vdev);
		icd->vdev = NULL;
	}

1195
	if (icl->board_info) {
1196
		soc_camera_free_i2c(icd);
1197 1198 1199 1200 1201 1202 1203 1204
	} 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);
		}
	}
1205
	soc_camera_free_user_formats(icd);
1206

1207 1208
	regulator_bulk_free(icl->num_regulators, icl->regulators);

1209 1210 1211
	return 0;
}

1212
struct bus_type soc_camera_bus_type = {
1213 1214 1215 1216
	.name		= "soc-camera",
	.probe		= soc_camera_probe,
	.remove		= soc_camera_remove,
};
1217
EXPORT_SYMBOL_GPL(soc_camera_bus_type);
1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228

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

static void dummy_release(struct device *dev)
{
}

1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
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);
}

1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
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);
}

1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
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;
}

1287 1288 1289 1290 1291 1292 1293
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;
}

1294
int soc_camera_host_register(struct soc_camera_host *ici)
1295 1296
{
	struct soc_camera_host *ix;
1297
	int ret;
1298

1299 1300 1301 1302 1303
	if (!ici || !ici->ops ||
	    !ici->ops->try_fmt ||
	    !ici->ops->set_fmt ||
	    !ici->ops->set_bus_param ||
	    !ici->ops->querycap ||
1304 1305 1306
	    ((!ici->ops->init_videobuf ||
	      !ici->ops->reqbufs) &&
	     !ici->ops->init_videobuf2) ||
1307 1308
	    !ici->ops->add ||
	    !ici->ops->remove ||
1309
	    !ici->ops->poll ||
1310
	    !ici->v4l2_dev.dev)
1311 1312
		return -EINVAL;

1313 1314 1315 1316 1317 1318
	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;
1319 1320 1321 1322
	if (!ici->ops->set_parm)
		ici->ops->set_parm = default_s_parm;
	if (!ici->ops->get_parm)
		ici->ops->get_parm = default_g_parm;
1323 1324
	if (!ici->ops->enum_fsizes)
		ici->ops->enum_fsizes = default_enum_fsizes;
1325

1326 1327 1328
	mutex_lock(&list_lock);
	list_for_each_entry(ix, &hosts, list) {
		if (ix->nr == ici->nr) {
1329 1330
			ret = -EBUSY;
			goto edevreg;
1331 1332 1333
		}
	}

1334 1335 1336
	ret = v4l2_device_register(ici->v4l2_dev.dev, &ici->v4l2_dev);
	if (ret < 0)
		goto edevreg;
1337

1338 1339 1340 1341 1342 1343
	list_add_tail(&ici->list, &hosts);
	mutex_unlock(&list_lock);

	scan_add_host(ici);

	return 0;
1344 1345 1346 1347

edevreg:
	mutex_unlock(&list_lock);
	return ret;
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
}
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) {
1361
		if (icd->iface == ici->nr) {
1362
			void *pdata = icd->dev.platform_data;
1363
			/* The bus->remove will be called */
1364
			device_unregister(&icd->dev);
1365 1366 1367 1368 1369 1370 1371 1372 1373
			/*
			 * 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));
1374
			soc_camera_device_init(&icd->dev, pdata);
1375 1376 1377 1378 1379
		}
	}

	mutex_unlock(&list_lock);

1380
	v4l2_device_unregister(&ici->v4l2_dev);
1381 1382 1383 1384
}
EXPORT_SYMBOL(soc_camera_host_unregister);

/* Image capture device */
1385
static int soc_camera_device_register(struct soc_camera_device *icd)
1386 1387 1388 1389 1390 1391
{
	struct soc_camera_device *ix;
	int num = -1, i;

	for (i = 0; i < 256 && num < 0; i++) {
		num = i;
1392
		/* Check if this index is available on this interface */
1393 1394 1395 1396 1397 1398 1399 1400 1401
		list_for_each_entry(ix, &devices, list) {
			if (ix->iface == icd->iface && ix->devnum == i) {
				num = -1;
				break;
			}
		}
	}

	if (num < 0)
1402 1403 1404 1405
		/*
		 * ok, we have 256 cameras on this host...
		 * man, stay reasonable...
		 */
1406 1407
		return -ENOMEM;

1408
	icd->devnum		= num;
1409 1410
	icd->use_count		= 0;
	icd->host_priv		= NULL;
1411
	mutex_init(&icd->video_lock);
1412

1413 1414 1415
	list_add_tail(&icd->list, &devices);

	return 0;
1416 1417
}

1418
static void soc_camera_device_unregister(struct soc_camera_device *icd)
1419 1420 1421 1422
{
	list_del(&icd->list);
}

1423 1424 1425 1426 1427 1428 1429 1430 1431
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,
1432
	.vidioc_enum_framesizes  = soc_camera_enum_fsizes,
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
	.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,
1446 1447
	.vidioc_g_parm		 = soc_camera_g_parm,
	.vidioc_s_parm		 = soc_camera_s_parm,
1448 1449 1450 1451 1452 1453 1454
	.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
};

1455
static int video_dev_create(struct soc_camera_device *icd)
1456 1457
{
	struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1458
	struct video_device *vdev = video_device_alloc();
1459 1460

	if (!vdev)
1461
		return -ENOMEM;
1462 1463

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

1465
	vdev->parent		= &icd->dev;
1466 1467
	vdev->current_norm	= V4L2_STD_UNKNOWN;
	vdev->fops		= &soc_camera_fops;
1468
	vdev->ioctl_ops		= &soc_camera_ioctl_ops;
1469
	vdev->release		= video_device_release;
1470
	vdev->tvnorms		= V4L2_STD_UNKNOWN;
1471 1472 1473 1474

	icd->vdev = vdev;

	return 0;
1475
}
1476

1477
/*
1478
 * Called from soc_camera_probe() above (with .video_lock held???)
1479
 */
1480
static int soc_camera_video_start(struct soc_camera_device *icd)
1481
{
1482
	const struct device_type *type = icd->vdev->dev.type;
1483
	int ret;
1484 1485 1486 1487 1488 1489 1490 1491 1492

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

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

1493
	ret = video_register_device(icd->vdev, VFL_TYPE_GRABBER, -1);
1494 1495 1496 1497
	if (ret < 0) {
		dev_err(&icd->dev, "video_register_device failed: %d\n", ret);
		return ret;
	}
1498

1499 1500 1501
	/* Restore device type, possibly set by the subdevice driver */
	icd->vdev->dev.type = type;

1502
	return 0;
1503 1504
}

1505
static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev)
1506
{
1507 1508
	struct soc_camera_link *icl = pdev->dev.platform_data;
	struct soc_camera_device *icd;
1509
	int ret;
1510

1511 1512
	if (!icl)
		return -EINVAL;
1513

1514 1515 1516
	icd = kzalloc(sizeof(*icd), GFP_KERNEL);
	if (!icd)
		return -ENOMEM;
1517

1518
	icd->iface = icl->bus_id;
1519
	icd->pdev = &pdev->dev;
1520
	platform_set_drvdata(pdev, icd);
1521

1522 1523 1524
	ret = soc_camera_device_register(icd);
	if (ret < 0)
		goto escdevreg;
1525

1526 1527
	soc_camera_device_init(&icd->dev, icl);

1528 1529 1530
	icd->user_width		= DEFAULT_WIDTH;
	icd->user_height	= DEFAULT_HEIGHT;

1531
	return 0;
1532

1533 1534
escdevreg:
	kfree(icd);
1535

1536
	return ret;
1537
}
1538

1539 1540
/*
 * Only called on rmmod for each platform device, since they are not
1541
 * hot-pluggable. Now we know, that all our users - hosts and devices have
1542 1543
 * been unloaded already
 */
1544
static int __devexit soc_camera_pdrv_remove(struct platform_device *pdev)
1545
{
1546
	struct soc_camera_device *icd = platform_get_drvdata(pdev);
1547

1548
	if (!icd)
1549 1550
		return -EINVAL;

1551
	soc_camera_device_unregister(icd);
1552

1553
	kfree(icd);
1554

1555 1556 1557 1558
	return 0;
}

static struct platform_driver __refdata soc_camera_pdrv = {
1559 1560 1561 1562
	.remove  = __devexit_p(soc_camera_pdrv_remove),
	.driver  = {
		.name	= "soc-camera-pdrv",
		.owner	= THIS_MODULE,
1563 1564 1565
	},
};

1566 1567 1568 1569 1570 1571 1572 1573 1574
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;

1575
	ret = platform_driver_probe(&soc_camera_pdrv, soc_camera_pdrv_probe);
1576 1577 1578
	if (ret)
		goto epdr;

1579 1580
	return 0;

1581 1582
epdr:
	driver_unregister(&ic_drv);
1583 1584 1585 1586 1587 1588 1589
edrvr:
	bus_unregister(&soc_camera_bus_type);
	return ret;
}

static void __exit soc_camera_exit(void)
{
1590
	platform_driver_unregister(&soc_camera_pdrv);
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
	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");
1601
MODULE_ALIAS("platform:soc-camera-pdrv");