mt9m111.c 29.2 KB
Newer Older
1
/*
2
 * Driver for MT9M111/MT9M112/MT9M131 CMOS Image Sensor from Micron/Aptina
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Copyright (C) 2008, Robert Jarzmik <robert.jarzmik@free.fr>
 *
 * 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/videodev2.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/log2.h>
#include <linux/gpio.h>
#include <linux/delay.h>

#include <media/v4l2-common.h>
#include <media/v4l2-chip-ident.h>
#include <media/soc_camera.h>

/*
22 23
 * MT9M111, MT9M112 and MT9M131:
 * i2c address is 0x48 or 0x5d (depending on SADDR pin)
24 25 26
 * The platform has to define i2c_board_info and call i2c_register_board_info()
 */

27 28 29
/*
 * Sensor core register addresses (0x000..0x0ff)
 */
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
#define MT9M111_CHIP_VERSION		0x000
#define MT9M111_ROW_START		0x001
#define MT9M111_COLUMN_START		0x002
#define MT9M111_WINDOW_HEIGHT		0x003
#define MT9M111_WINDOW_WIDTH		0x004
#define MT9M111_HORIZONTAL_BLANKING_B	0x005
#define MT9M111_VERTICAL_BLANKING_B	0x006
#define MT9M111_HORIZONTAL_BLANKING_A	0x007
#define MT9M111_VERTICAL_BLANKING_A	0x008
#define MT9M111_SHUTTER_WIDTH		0x009
#define MT9M111_ROW_SPEED		0x00a
#define MT9M111_EXTRA_DELAY		0x00b
#define MT9M111_SHUTTER_DELAY		0x00c
#define MT9M111_RESET			0x00d
#define MT9M111_READ_MODE_B		0x020
#define MT9M111_READ_MODE_A		0x021
#define MT9M111_FLASH_CONTROL		0x023
#define MT9M111_GREEN1_GAIN		0x02b
#define MT9M111_BLUE_GAIN		0x02c
#define MT9M111_RED_GAIN		0x02d
#define MT9M111_GREEN2_GAIN		0x02e
#define MT9M111_GLOBAL_GAIN		0x02f
#define MT9M111_CONTEXT_CONTROL		0x0c8
#define MT9M111_PAGE_MAP		0x0f0
#define MT9M111_BYTE_WISE_ADDR		0x0f1

#define MT9M111_RESET_SYNC_CHANGES	(1 << 15)
#define MT9M111_RESET_RESTART_BAD_FRAME	(1 << 9)
#define MT9M111_RESET_SHOW_BAD_FRAMES	(1 << 8)
#define MT9M111_RESET_RESET_SOC		(1 << 5)
#define MT9M111_RESET_OUTPUT_DISABLE	(1 << 4)
#define MT9M111_RESET_CHIP_ENABLE	(1 << 3)
#define MT9M111_RESET_ANALOG_STANDBY	(1 << 2)
#define MT9M111_RESET_RESTART_FRAME	(1 << 1)
#define MT9M111_RESET_RESET_MODE	(1 << 0)

#define MT9M111_RMB_MIRROR_COLS		(1 << 1)
#define MT9M111_RMB_MIRROR_ROWS		(1 << 0)
#define MT9M111_CTXT_CTRL_RESTART	(1 << 15)
#define MT9M111_CTXT_CTRL_DEFECTCOR_B	(1 << 12)
#define MT9M111_CTXT_CTRL_RESIZE_B	(1 << 10)
#define MT9M111_CTXT_CTRL_CTRL2_B	(1 << 9)
#define MT9M111_CTXT_CTRL_GAMMA_B	(1 << 8)
#define MT9M111_CTXT_CTRL_XENON_EN	(1 << 7)
#define MT9M111_CTXT_CTRL_READ_MODE_B	(1 << 3)
#define MT9M111_CTXT_CTRL_LED_FLASH_EN	(1 << 2)
#define MT9M111_CTXT_CTRL_VBLANK_SEL_B	(1 << 1)
#define MT9M111_CTXT_CTRL_HBLANK_SEL_B	(1 << 0)
78

79
/*
80
 * Colorpipe register addresses (0x100..0x1ff)
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
 */
#define MT9M111_OPER_MODE_CTRL		0x106
#define MT9M111_OUTPUT_FORMAT_CTRL	0x108
#define MT9M111_REDUCER_XZOOM_B		0x1a0
#define MT9M111_REDUCER_XSIZE_B		0x1a1
#define MT9M111_REDUCER_YZOOM_B		0x1a3
#define MT9M111_REDUCER_YSIZE_B		0x1a4
#define MT9M111_REDUCER_XZOOM_A		0x1a6
#define MT9M111_REDUCER_XSIZE_A		0x1a7
#define MT9M111_REDUCER_YZOOM_A		0x1a9
#define MT9M111_REDUCER_YSIZE_A		0x1aa

#define MT9M111_OUTPUT_FORMAT_CTRL2_A	0x13a
#define MT9M111_OUTPUT_FORMAT_CTRL2_B	0x19b

#define MT9M111_OPMODE_AUTOEXPO_EN	(1 << 14)
97
#define MT9M111_OPMODE_AUTOWHITEBAL_EN	(1 << 1)
98 99 100 101 102

#define MT9M111_OUTFMT_PROCESSED_BAYER	(1 << 14)
#define MT9M111_OUTFMT_BYPASS_IFP	(1 << 10)
#define MT9M111_OUTFMT_INV_PIX_CLOCK	(1 << 9)
#define MT9M111_OUTFMT_RGB		(1 << 8)
103 104 105 106 107 108 109 110
#define MT9M111_OUTFMT_RGB565		(0 << 6)
#define MT9M111_OUTFMT_RGB555		(1 << 6)
#define MT9M111_OUTFMT_RGB444x		(2 << 6)
#define MT9M111_OUTFMT_RGBx444		(3 << 6)
#define MT9M111_OUTFMT_TST_RAMP_OFF	(0 << 4)
#define MT9M111_OUTFMT_TST_RAMP_COL	(1 << 4)
#define MT9M111_OUTFMT_TST_RAMP_ROW	(2 << 4)
#define MT9M111_OUTFMT_TST_RAMP_FRAME	(3 << 4)
111 112 113 114 115
#define MT9M111_OUTFMT_SHIFT_3_UP	(1 << 3)
#define MT9M111_OUTFMT_AVG_CHROMA	(1 << 2)
#define MT9M111_OUTFMT_SWAP_YCbCr_C_Y	(1 << 1)
#define MT9M111_OUTFMT_SWAP_RGB_EVEN	(1 << 1)
#define MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr	(1 << 0)
116

117
/*
118
 * Camera control register addresses (0x200..0x2ff not implemented)
119 120
 */

121 122 123 124
#define reg_read(reg) mt9m111_reg_read(client, MT9M111_##reg)
#define reg_write(reg, val) mt9m111_reg_write(client, MT9M111_##reg, (val))
#define reg_set(reg, val) mt9m111_reg_set(client, MT9M111_##reg, (val))
#define reg_clear(reg, val) mt9m111_reg_clear(client, MT9M111_##reg, (val))
125 126

#define MT9M111_MIN_DARK_ROWS	8
127
#define MT9M111_MIN_DARK_COLS	26
128 129 130
#define MT9M111_MAX_HEIGHT	1024
#define MT9M111_MAX_WIDTH	1280

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* MT9M111 has only one fixed colorspace per pixelcode */
struct mt9m111_datafmt {
	enum v4l2_mbus_pixelcode	code;
	enum v4l2_colorspace		colorspace;
};

/* Find a data format by a pixel code in an array */
static const struct mt9m111_datafmt *mt9m111_find_datafmt(
	enum v4l2_mbus_pixelcode code, const struct mt9m111_datafmt *fmt,
	int n)
{
	int i;
	for (i = 0; i < n; i++)
		if (fmt[i].code == code)
			return fmt + i;

	return NULL;
}

static const struct mt9m111_datafmt mt9m111_colour_fmts[] = {
151 152 153 154
	{V4L2_MBUS_FMT_YUYV8_2X8, V4L2_COLORSPACE_JPEG},
	{V4L2_MBUS_FMT_YVYU8_2X8, V4L2_COLORSPACE_JPEG},
	{V4L2_MBUS_FMT_UYVY8_2X8, V4L2_COLORSPACE_JPEG},
	{V4L2_MBUS_FMT_VYUY8_2X8, V4L2_COLORSPACE_JPEG},
155 156 157 158
	{V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE, V4L2_COLORSPACE_SRGB},
	{V4L2_MBUS_FMT_RGB565_2X8_LE, V4L2_COLORSPACE_SRGB},
	{V4L2_MBUS_FMT_SBGGR8_1X8, V4L2_COLORSPACE_SRGB},
	{V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE, V4L2_COLORSPACE_SRGB},
159 160 161 162 163 164 165 166
};

enum mt9m111_context {
	HIGHPOWER = 0,
	LOWPOWER,
};

struct mt9m111 {
167
	struct v4l2_subdev subdev;
168 169
	int model;	/* V4L2_IDENT_MT9M111 or V4L2_IDENT_MT9M112 code
			 * from v4l2-chip-ident.h */
170
	enum mt9m111_context context;
171
	struct v4l2_rect rect;
172
	const struct mt9m111_datafmt *fmt;
173
	unsigned int gain;
174 175 176 177 178 179 180 181 182
	unsigned char autoexposure;
	unsigned char datawidth;
	unsigned int powered:1;
	unsigned int hflip:1;
	unsigned int vflip:1;
	unsigned int swap_rgb_even_odd:1;
	unsigned int swap_rgb_red_blue:1;
	unsigned int swap_yuv_y_chromas:1;
	unsigned int swap_yuv_cb_cr:1;
183
	unsigned int autowhitebalance:1;
184 185
};

186 187 188 189 190
static struct mt9m111 *to_mt9m111(const struct i2c_client *client)
{
	return container_of(i2c_get_clientdata(client), struct mt9m111, subdev);
}

191 192 193 194 195 196 197 198 199 200 201 202 203
static int reg_page_map_set(struct i2c_client *client, const u16 reg)
{
	int ret;
	u16 page;
	static int lastpage = -1;	/* PageMap cache value */

	page = (reg >> 8);
	if (page == lastpage)
		return 0;
	if (page > 2)
		return -EINVAL;

	ret = i2c_smbus_write_word_data(client, MT9M111_PAGE_MAP, swab16(page));
204
	if (!ret)
205 206 207 208
		lastpage = page;
	return ret;
}

209
static int mt9m111_reg_read(struct i2c_client *client, const u16 reg)
210 211 212 213 214
{
	int ret;

	ret = reg_page_map_set(client, reg);
	if (!ret)
215
		ret = swab16(i2c_smbus_read_word_data(client, reg & 0xff));
216

217
	dev_dbg(&client->dev, "read  reg.%03x -> %04x\n", reg, ret);
218 219 220
	return ret;
}

221
static int mt9m111_reg_write(struct i2c_client *client, const u16 reg,
222 223 224 225 226
			     const u16 data)
{
	int ret;

	ret = reg_page_map_set(client, reg);
227
	if (!ret)
228
		ret = i2c_smbus_write_word_data(client, reg & 0xff,
229
						swab16(data));
230
	dev_dbg(&client->dev, "write reg.%03x = %04x -> %d\n", reg, data, ret);
231 232 233
	return ret;
}

234
static int mt9m111_reg_set(struct i2c_client *client, const u16 reg,
235 236 237 238
			   const u16 data)
{
	int ret;

239
	ret = mt9m111_reg_read(client, reg);
240
	if (ret >= 0)
241
		ret = mt9m111_reg_write(client, reg, ret | data);
242 243 244
	return ret;
}

245
static int mt9m111_reg_clear(struct i2c_client *client, const u16 reg,
246 247 248 249
			     const u16 data)
{
	int ret;

250 251
	ret = mt9m111_reg_read(client, reg);
	return mt9m111_reg_write(client, reg, ret & ~data);
252 253
}

254
static int mt9m111_set_context(struct mt9m111 *mt9m111,
255 256
			       enum mt9m111_context ctxt)
{
257
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
258 259 260 261 262 263 264 265 266 267 268 269 270
	int valB = MT9M111_CTXT_CTRL_RESTART | MT9M111_CTXT_CTRL_DEFECTCOR_B
		| MT9M111_CTXT_CTRL_RESIZE_B | MT9M111_CTXT_CTRL_CTRL2_B
		| MT9M111_CTXT_CTRL_GAMMA_B | MT9M111_CTXT_CTRL_READ_MODE_B
		| MT9M111_CTXT_CTRL_VBLANK_SEL_B
		| MT9M111_CTXT_CTRL_HBLANK_SEL_B;
	int valA = MT9M111_CTXT_CTRL_RESTART;

	if (ctxt == HIGHPOWER)
		return reg_write(CONTEXT_CONTROL, valB);
	else
		return reg_write(CONTEXT_CONTROL, valA);
}

271
static int mt9m111_setup_rect(struct mt9m111 *mt9m111,
272
			      struct v4l2_rect *rect)
273
{
274
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
275
	int ret, is_raw_format;
276 277
	int width = rect->width;
	int height = rect->height;
278

279 280
	if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
	    mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE)
281 282 283 284
		is_raw_format = 1;
	else
		is_raw_format = 0;

285
	ret = reg_write(COLUMN_START, rect->left);
286
	if (!ret)
287
		ret = reg_write(ROW_START, rect->top);
288 289

	if (is_raw_format) {
290
		if (!ret)
291
			ret = reg_write(WINDOW_WIDTH, width);
292
		if (!ret)
293 294
			ret = reg_write(WINDOW_HEIGHT, height);
	} else {
295
		if (!ret)
296
			ret = reg_write(REDUCER_XZOOM_B, MT9M111_MAX_WIDTH);
297
		if (!ret)
298
			ret = reg_write(REDUCER_YZOOM_B, MT9M111_MAX_HEIGHT);
299
		if (!ret)
300
			ret = reg_write(REDUCER_XSIZE_B, width);
301
		if (!ret)
302
			ret = reg_write(REDUCER_YSIZE_B, height);
303
		if (!ret)
304
			ret = reg_write(REDUCER_XZOOM_A, MT9M111_MAX_WIDTH);
305
		if (!ret)
306
			ret = reg_write(REDUCER_YZOOM_A, MT9M111_MAX_HEIGHT);
307
		if (!ret)
308
			ret = reg_write(REDUCER_XSIZE_A, width);
309
		if (!ret)
310 311 312 313 314 315
			ret = reg_write(REDUCER_YSIZE_A, height);
	}

	return ret;
}

316
static int mt9m111_setup_pixfmt(struct i2c_client *client, u16 outfmt)
317 318
{
	int ret;
319 320 321 322 323
	u16 mask = MT9M111_OUTFMT_PROCESSED_BAYER | MT9M111_OUTFMT_RGB |
		MT9M111_OUTFMT_BYPASS_IFP | MT9M111_OUTFMT_SWAP_RGB_EVEN |
		MT9M111_OUTFMT_RGB565 | MT9M111_OUTFMT_RGB555 |
		MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr |
		MT9M111_OUTFMT_SWAP_YCbCr_C_Y;
324

325 326 327
	ret = reg_read(OUTPUT_FORMAT_CTRL2_A);
	if (ret >= 0)
		ret = reg_write(OUTPUT_FORMAT_CTRL2_A, (ret & ~mask) | outfmt);
328
	if (!ret)
329 330 331 332
		ret = reg_read(OUTPUT_FORMAT_CTRL2_B);
	if (ret >= 0)
		ret = reg_write(OUTPUT_FORMAT_CTRL2_B, (ret & ~mask) | outfmt);

333 334 335
	return ret;
}

336
static int mt9m111_setfmt_bayer8(struct mt9m111 *mt9m111)
337
{
338 339
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);

340 341
	return mt9m111_setup_pixfmt(client, MT9M111_OUTFMT_PROCESSED_BAYER |
				    MT9M111_OUTFMT_RGB);
342 343
}

344
static int mt9m111_setfmt_bayer10(struct mt9m111 *mt9m111)
345
{
346 347
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);

348
	return mt9m111_setup_pixfmt(client, MT9M111_OUTFMT_BYPASS_IFP);
349 350
}

351
static int mt9m111_setfmt_rgb565(struct mt9m111 *mt9m111)
352
{
353 354
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
	int val = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565;
355 356 357 358 359 360

	if (mt9m111->swap_rgb_red_blue)
		val |= MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr;
	if (mt9m111->swap_rgb_even_odd)
		val |= MT9M111_OUTFMT_SWAP_RGB_EVEN;

361
	return mt9m111_setup_pixfmt(client, val);
362 363
}

364
static int mt9m111_setfmt_rgb555(struct mt9m111 *mt9m111)
365
{
366 367
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
	int val = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB555;
368 369 370 371 372 373

	if (mt9m111->swap_rgb_red_blue)
		val |= MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr;
	if (mt9m111->swap_rgb_even_odd)
		val |= MT9M111_OUTFMT_SWAP_RGB_EVEN;

374
	return mt9m111_setup_pixfmt(client, val);
375 376
}

377
static int mt9m111_setfmt_yuv(struct mt9m111 *mt9m111)
378
{
379
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
380 381 382 383 384 385 386
	int val = 0;

	if (mt9m111->swap_yuv_cb_cr)
		val |= MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr;
	if (mt9m111->swap_yuv_y_chromas)
		val |= MT9M111_OUTFMT_SWAP_YCbCr_C_Y;

387
	return mt9m111_setup_pixfmt(client, val);
388 389
}

390
static int mt9m111_enable(struct mt9m111 *mt9m111)
391
{
392
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
393 394 395
	int ret;

	ret = reg_set(RESET, MT9M111_RESET_CHIP_ENABLE);
396
	if (!ret)
397 398 399 400
		mt9m111->powered = 1;
	return ret;
}

401
static int mt9m111_reset(struct mt9m111 *mt9m111)
402
{
403
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
404 405 406
	int ret;

	ret = reg_set(RESET, MT9M111_RESET_RESET_MODE);
407
	if (!ret)
408
		ret = reg_set(RESET, MT9M111_RESET_RESET_SOC);
409
	if (!ret)
410 411
		ret = reg_clear(RESET, MT9M111_RESET_RESET_MODE
				| MT9M111_RESET_RESET_SOC);
412

413 414 415 416 417
	return ret;
}

static unsigned long mt9m111_query_bus_param(struct soc_camera_device *icd)
{
418
	struct soc_camera_link *icl = to_soc_camera_link(icd);
419
	unsigned long flags = SOCAM_MASTER | SOCAM_PCLK_SAMPLE_RISING |
420
		SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH |
421
		SOCAM_DATA_ACTIVE_HIGH | SOCAM_DATAWIDTH_8;
422 423

	return soc_camera_apply_sensor_flags(icl, flags);
424 425 426 427 428 429 430
}

static int mt9m111_set_bus_param(struct soc_camera_device *icd, unsigned long f)
{
	return 0;
}

431
static int mt9m111_make_rect(struct mt9m111 *mt9m111,
432 433
			     struct v4l2_rect *rect)
{
434 435
	if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
	    mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE) {
436 437 438 439 440 441 442 443 444 445 446 447 448
		/* Bayer format - even size lengths */
		rect->width	= ALIGN(rect->width, 2);
		rect->height	= ALIGN(rect->height, 2);
		/* Let the user play with the starting pixel */
	}

	/* FIXME: the datasheet doesn't specify minimum sizes */
	soc_camera_limit_side(&rect->left, &rect->width,
		     MT9M111_MIN_DARK_COLS, 2, MT9M111_MAX_WIDTH);

	soc_camera_limit_side(&rect->top, &rect->height,
		     MT9M111_MIN_DARK_ROWS, 2, MT9M111_MAX_HEIGHT);

449
	return mt9m111_setup_rect(mt9m111, rect);
450 451
}

452
static int mt9m111_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
453
{
454
	struct v4l2_rect rect = a->c;
455
	struct i2c_client *client = v4l2_get_subdevdata(sd);
456
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
457 458
	int ret;

459
	dev_dbg(&client->dev, "%s left=%d, top=%d, width=%d, height=%d\n",
460
		__func__, rect.left, rect.top, rect.width, rect.height);
461

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

465
	ret = mt9m111_make_rect(mt9m111, &rect);
466
	if (!ret)
467
		mt9m111->rect = rect;
468 469 470
	return ret;
}

471 472
static int mt9m111_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
{
473
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
474 475 476 477 478 479 480 481 482

	a->c	= mt9m111->rect;
	a->type	= V4L2_BUF_TYPE_VIDEO_CAPTURE;

	return 0;
}

static int mt9m111_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
{
483 484 485
	if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

486 487 488 489 490 491 492 493 494 495 496
	a->bounds.left			= MT9M111_MIN_DARK_COLS;
	a->bounds.top			= MT9M111_MIN_DARK_ROWS;
	a->bounds.width			= MT9M111_MAX_WIDTH;
	a->bounds.height		= MT9M111_MAX_HEIGHT;
	a->defrect			= a->bounds;
	a->pixelaspect.numerator	= 1;
	a->pixelaspect.denominator	= 1;

	return 0;
}

497 498
static int mt9m111_g_fmt(struct v4l2_subdev *sd,
			 struct v4l2_mbus_framefmt *mf)
499
{
500
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
501

502 503 504
	mf->width	= mt9m111->rect.width;
	mf->height	= mt9m111->rect.height;
	mf->code	= mt9m111->fmt->code;
505
	mf->colorspace	= mt9m111->fmt->colorspace;
506
	mf->field	= V4L2_FIELD_NONE;
507 508 509 510

	return 0;
}

511
static int mt9m111_set_pixfmt(struct mt9m111 *mt9m111,
512
			      enum v4l2_mbus_pixelcode code)
513
{
514
	struct i2c_client *client;
515
	int ret;
516

517 518
	switch (code) {
	case V4L2_MBUS_FMT_SBGGR8_1X8:
519
		ret = mt9m111_setfmt_bayer8(mt9m111);
520
		break;
521
	case V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE:
522
		ret = mt9m111_setfmt_bayer10(mt9m111);
523
		break;
524
	case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE:
525
		ret = mt9m111_setfmt_rgb555(mt9m111);
526
		break;
527
	case V4L2_MBUS_FMT_RGB565_2X8_LE:
528
		ret = mt9m111_setfmt_rgb565(mt9m111);
529
		break;
530
	case V4L2_MBUS_FMT_UYVY8_2X8:
531 532
		mt9m111->swap_yuv_y_chromas = 0;
		mt9m111->swap_yuv_cb_cr = 0;
533
		ret = mt9m111_setfmt_yuv(mt9m111);
534
		break;
535
	case V4L2_MBUS_FMT_VYUY8_2X8:
536 537
		mt9m111->swap_yuv_y_chromas = 0;
		mt9m111->swap_yuv_cb_cr = 1;
538
		ret = mt9m111_setfmt_yuv(mt9m111);
539
		break;
540
	case V4L2_MBUS_FMT_YUYV8_2X8:
541 542
		mt9m111->swap_yuv_y_chromas = 1;
		mt9m111->swap_yuv_cb_cr = 0;
543
		ret = mt9m111_setfmt_yuv(mt9m111);
544
		break;
545
	case V4L2_MBUS_FMT_YVYU8_2X8:
546 547
		mt9m111->swap_yuv_y_chromas = 1;
		mt9m111->swap_yuv_cb_cr = 1;
548
		ret = mt9m111_setfmt_yuv(mt9m111);
549 550
		break;
	default:
551
		client = v4l2_get_subdevdata(&mt9m111->subdev);
552
		dev_err(&client->dev, "Pixel format not handled : %x\n",
553
			code);
554 555 556 557 558 559
		ret = -EINVAL;
	}

	return ret;
}

560 561
static int mt9m111_s_fmt(struct v4l2_subdev *sd,
			 struct v4l2_mbus_framefmt *mf)
562
{
563
	struct i2c_client *client = v4l2_get_subdevdata(sd);
564
	const struct mt9m111_datafmt *fmt;
565
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
566 567 568
	struct v4l2_rect rect = {
		.left	= mt9m111->rect.left,
		.top	= mt9m111->rect.top,
569 570
		.width	= mf->width,
		.height	= mf->height,
571
	};
572
	int ret;
573

574 575 576 577 578
	fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
				   ARRAY_SIZE(mt9m111_colour_fmts));
	if (!fmt)
		return -EINVAL;

579
	dev_dbg(&client->dev,
580 581
		"%s code=%x left=%d, top=%d, width=%d, height=%d\n", __func__,
		mf->code, rect.left, rect.top, rect.width, rect.height);
582

583
	ret = mt9m111_make_rect(mt9m111, &rect);
584
	if (!ret)
585
		ret = mt9m111_set_pixfmt(mt9m111, mf->code);
586 587 588 589 590 591
	if (!ret) {
		mt9m111->rect	= rect;
		mt9m111->fmt	= fmt;
		mf->colorspace	= fmt->colorspace;
	}

592
	return ret;
593 594
}

595 596
static int mt9m111_try_fmt(struct v4l2_subdev *sd,
			   struct v4l2_mbus_framefmt *mf)
597
{
598
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
599 600 601 602 603 604 605 606 607 608
	const struct mt9m111_datafmt *fmt;
	bool bayer = mf->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
		mf->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE;

	fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
				   ARRAY_SIZE(mt9m111_colour_fmts));
	if (!fmt) {
		fmt = mt9m111->fmt;
		mf->code = fmt->code;
	}
609 610 611 612 613

	/*
	 * With Bayer format enforce even side lengths, but let the user play
	 * with the starting pixel
	 */
614

615 616 617 618
	if (mf->height > MT9M111_MAX_HEIGHT)
		mf->height = MT9M111_MAX_HEIGHT;
	else if (mf->height < 2)
		mf->height = 2;
619
	else if (bayer)
620
		mf->height = ALIGN(mf->height, 2);
621

622 623 624 625
	if (mf->width > MT9M111_MAX_WIDTH)
		mf->width = MT9M111_MAX_WIDTH;
	else if (mf->width < 2)
		mf->width = 2;
626
	else if (bayer)
627 628 629
		mf->width = ALIGN(mf->width, 2);

	mf->colorspace = fmt->colorspace;
630 631 632 633

	return 0;
}

634 635
static int mt9m111_g_chip_ident(struct v4l2_subdev *sd,
				struct v4l2_dbg_chip_ident *id)
636
{
637
	struct i2c_client *client = v4l2_get_subdevdata(sd);
638
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
639

640
	if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
641 642
		return -EINVAL;

643
	if (id->match.addr != client->addr)
644 645 646 647 648 649 650 651 652
		return -ENODEV;

	id->ident	= mt9m111->model;
	id->revision	= 0;

	return 0;
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
653 654
static int mt9m111_g_register(struct v4l2_subdev *sd,
			      struct v4l2_dbg_register *reg)
655
{
656
	struct i2c_client *client = v4l2_get_subdevdata(sd);
657 658
	int val;

659
	if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
660
		return -EINVAL;
661
	if (reg->match.addr != client->addr)
662 663
		return -ENODEV;

664
	val = mt9m111_reg_read(client, reg->reg);
665
	reg->size = 2;
666 667 668 669 670 671 672 673
	reg->val = (u64)val;

	if (reg->val > 0xffff)
		return -EIO;

	return 0;
}

674 675
static int mt9m111_s_register(struct v4l2_subdev *sd,
			      struct v4l2_dbg_register *reg)
676
{
677
	struct i2c_client *client = v4l2_get_subdevdata(sd);
678

679
	if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
680 681
		return -EINVAL;

682
	if (reg->match.addr != client->addr)
683 684
		return -ENODEV;

685
	if (mt9m111_reg_write(client, reg->reg, reg->val) < 0)
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
		return -EIO;

	return 0;
}
#endif

static const struct v4l2_queryctrl mt9m111_controls[] = {
	{
		.id		= V4L2_CID_VFLIP,
		.type		= V4L2_CTRL_TYPE_BOOLEAN,
		.name		= "Flip Verticaly",
		.minimum	= 0,
		.maximum	= 1,
		.step		= 1,
		.default_value	= 0,
	}, {
		.id		= V4L2_CID_HFLIP,
		.type		= V4L2_CTRL_TYPE_BOOLEAN,
		.name		= "Flip Horizontaly",
		.minimum	= 0,
		.maximum	= 1,
		.step		= 1,
		.default_value	= 0,
	}, {	/* gain = 1/32*val (=>gain=1 if val==32) */
		.id		= V4L2_CID_GAIN,
		.type		= V4L2_CTRL_TYPE_INTEGER,
		.name		= "Gain",
		.minimum	= 0,
		.maximum	= 63 * 2 * 2,
		.step		= 1,
		.default_value	= 32,
		.flags		= V4L2_CTRL_FLAG_SLIDER,
	}, {
		.id		= V4L2_CID_EXPOSURE_AUTO,
		.type		= V4L2_CTRL_TYPE_BOOLEAN,
		.name		= "Auto Exposure",
		.minimum	= 0,
		.maximum	= 1,
		.step		= 1,
		.default_value	= 1,
	}
};

static int mt9m111_resume(struct soc_camera_device *icd);
730
static int mt9m111_suspend(struct soc_camera_device *icd, pm_message_t state);
731 732

static struct soc_camera_ops mt9m111_ops = {
733
	.suspend		= mt9m111_suspend,
734 735 736 737 738 739 740
	.resume			= mt9m111_resume,
	.query_bus_param	= mt9m111_query_bus_param,
	.set_bus_param		= mt9m111_set_bus_param,
	.controls		= mt9m111_controls,
	.num_controls		= ARRAY_SIZE(mt9m111_controls),
};

741
static int mt9m111_set_flip(struct mt9m111 *mt9m111, int flip, int mask)
742
{
743
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
	int ret;

	if (mt9m111->context == HIGHPOWER) {
		if (flip)
			ret = reg_set(READ_MODE_B, mask);
		else
			ret = reg_clear(READ_MODE_B, mask);
	} else {
		if (flip)
			ret = reg_set(READ_MODE_A, mask);
		else
			ret = reg_clear(READ_MODE_A, mask);
	}

	return ret;
}

761
static int mt9m111_get_global_gain(struct mt9m111 *mt9m111)
762
{
763
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
764
	int data;
765 766 767

	data = reg_read(GLOBAL_GAIN);
	if (data >= 0)
768 769 770
		return (data & 0x2f) * (1 << ((data >> 10) & 1)) *
			(1 << ((data >> 9) & 1));
	return data;
771
}
772

773
static int mt9m111_set_global_gain(struct mt9m111 *mt9m111, int gain)
774
{
775
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
776 777 778 779 780
	u16 val;

	if (gain > 63 * 2 * 2)
		return -EINVAL;

781
	mt9m111->gain = gain;
782 783 784
	if ((gain >= 64 * 2) && (gain < 63 * 2 * 2))
		val = (1 << 10) | (1 << 9) | (gain / 4);
	else if ((gain >= 64) && (gain < 64 * 2))
785
		val = (1 << 9) | (gain / 2);
786 787 788 789 790 791
	else
		val = gain;

	return reg_write(GLOBAL_GAIN, val);
}

792
static int mt9m111_set_autoexposure(struct mt9m111 *mt9m111, int on)
793
{
794
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
795 796 797 798 799 800 801
	int ret;

	if (on)
		ret = reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);
	else
		ret = reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);

802
	if (!ret)
803 804 805 806
		mt9m111->autoexposure = on;

	return ret;
}
807

808
static int mt9m111_set_autowhitebalance(struct mt9m111 *mt9m111, int on)
809
{
810
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
811 812 813 814 815 816 817 818 819 820 821 822 823
	int ret;

	if (on)
		ret = reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);
	else
		ret = reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);

	if (!ret)
		mt9m111->autowhitebalance = on;

	return ret;
}

824
static int mt9m111_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
825
{
826
	struct i2c_client *client = v4l2_get_subdevdata(sd);
827
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
	int data;

	switch (ctrl->id) {
	case V4L2_CID_VFLIP:
		if (mt9m111->context == HIGHPOWER)
			data = reg_read(READ_MODE_B);
		else
			data = reg_read(READ_MODE_A);

		if (data < 0)
			return -EIO;
		ctrl->value = !!(data & MT9M111_RMB_MIRROR_ROWS);
		break;
	case V4L2_CID_HFLIP:
		if (mt9m111->context == HIGHPOWER)
			data = reg_read(READ_MODE_B);
		else
			data = reg_read(READ_MODE_A);

		if (data < 0)
			return -EIO;
		ctrl->value = !!(data & MT9M111_RMB_MIRROR_COLS);
		break;
	case V4L2_CID_GAIN:
852
		data = mt9m111_get_global_gain(mt9m111);
853 854 855 856 857 858 859
		if (data < 0)
			return data;
		ctrl->value = data;
		break;
	case V4L2_CID_EXPOSURE_AUTO:
		ctrl->value = mt9m111->autoexposure;
		break;
860 861 862
	case V4L2_CID_AUTO_WHITE_BALANCE:
		ctrl->value = mt9m111->autowhitebalance;
		break;
863 864 865 866
	}
	return 0;
}

867
static int mt9m111_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
868
{
869
	struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
870
	const struct v4l2_queryctrl *qctrl;
871
	int ret;
872 873 874 875 876 877 878 879

	qctrl = soc_camera_find_qctrl(&mt9m111_ops, ctrl->id);
	if (!qctrl)
		return -EINVAL;

	switch (ctrl->id) {
	case V4L2_CID_VFLIP:
		mt9m111->vflip = ctrl->value;
880
		ret = mt9m111_set_flip(mt9m111, ctrl->value,
881 882 883 884
					MT9M111_RMB_MIRROR_ROWS);
		break;
	case V4L2_CID_HFLIP:
		mt9m111->hflip = ctrl->value;
885
		ret = mt9m111_set_flip(mt9m111, ctrl->value,
886 887 888
					MT9M111_RMB_MIRROR_COLS);
		break;
	case V4L2_CID_GAIN:
889
		ret = mt9m111_set_global_gain(mt9m111, ctrl->value);
890 891
		break;
	case V4L2_CID_EXPOSURE_AUTO:
892
		ret =  mt9m111_set_autoexposure(mt9m111, ctrl->value);
893
		break;
894
	case V4L2_CID_AUTO_WHITE_BALANCE:
895
		ret =  mt9m111_set_autowhitebalance(mt9m111, ctrl->value);
896
		break;
897 898 899 900
	default:
		ret = -EINVAL;
	}

901
	return ret;
902 903
}

904 905 906 907 908
static int mt9m111_suspend(struct soc_camera_device *icd, pm_message_t state)
{
	struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
	struct mt9m111 *mt9m111 = to_mt9m111(client);

909
	mt9m111->gain = mt9m111_get_global_gain(mt9m111);
910 911 912 913

	return 0;
}

914
static void mt9m111_restore_state(struct mt9m111 *mt9m111)
915
{
916 917 918 919 920 921 922 923
	mt9m111_set_context(mt9m111, mt9m111->context);
	mt9m111_set_pixfmt(mt9m111, mt9m111->fmt->code);
	mt9m111_setup_rect(mt9m111, &mt9m111->rect);
	mt9m111_set_flip(mt9m111, mt9m111->hflip, MT9M111_RMB_MIRROR_COLS);
	mt9m111_set_flip(mt9m111, mt9m111->vflip, MT9M111_RMB_MIRROR_ROWS);
	mt9m111_set_global_gain(mt9m111, mt9m111->gain);
	mt9m111_set_autoexposure(mt9m111, mt9m111->autoexposure);
	mt9m111_set_autowhitebalance(mt9m111, mt9m111->autowhitebalance);
924 925 926 927
}

static int mt9m111_resume(struct soc_camera_device *icd)
{
928
	struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
929
	struct mt9m111 *mt9m111 = to_mt9m111(client);
930 931 932
	int ret = 0;

	if (mt9m111->powered) {
933
		ret = mt9m111_enable(mt9m111);
934
		if (!ret)
935
			ret = mt9m111_reset(mt9m111);
936
		if (!ret)
937
			mt9m111_restore_state(mt9m111);
938 939 940 941
	}
	return ret;
}

942
static int mt9m111_init(struct mt9m111 *mt9m111)
943
{
944
	struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
945 946 947
	int ret;

	mt9m111->context = HIGHPOWER;
948
	ret = mt9m111_enable(mt9m111);
949
	if (!ret)
950
		ret = mt9m111_reset(mt9m111);
951
	if (!ret)
952
		ret = mt9m111_set_context(mt9m111, mt9m111->context);
953
	if (!ret)
954
		ret = mt9m111_set_autoexposure(mt9m111, mt9m111->autoexposure);
955
	if (ret)
956
		dev_err(&client->dev, "mt9m111 init failed: %d\n", ret);
957
	return ret;
958 959 960 961 962 963
}

/*
 * Interface active, can use i2c. If it fails, it can indeed mean, that
 * this wasn't our capture interface, so, we wait for the right one
 */
964 965
static int mt9m111_video_probe(struct soc_camera_device *icd,
			       struct i2c_client *client)
966
{
967
	struct mt9m111 *mt9m111 = to_mt9m111(client);
968 969 970 971 972 973 974 975 976 977 978
	s32 data;
	int ret;

	/*
	 * We must have a parent by now. And it cannot be a wrong one.
	 * So this entire test is completely redundant.
	 */
	if (!icd->dev.parent ||
	    to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
		return -ENODEV;

979 980 981 982 983 984
	mt9m111->autoexposure = 1;
	mt9m111->autowhitebalance = 1;

	mt9m111->swap_rgb_even_odd = 1;
	mt9m111->swap_rgb_red_blue = 1;

985 986 987
	data = reg_read(CHIP_VERSION);

	switch (data) {
988
	case 0x143a: /* MT9M111 or MT9M131 */
989
		mt9m111->model = V4L2_IDENT_MT9M111;
990 991
		dev_info(&client->dev,
			"Detected a MT9M111/MT9M131 chip ID %x\n", data);
992 993 994
		break;
	case 0x148c: /* MT9M112 */
		mt9m111->model = V4L2_IDENT_MT9M112;
995
		dev_info(&client->dev, "Detected a MT9M112 chip ID %x\n", data);
996 997 998
		break;
	default:
		ret = -ENODEV;
999
		dev_err(&client->dev,
1000 1001
			"No MT9M111/MT9M112/MT9M131 chip detected register read %x\n",
			data);
1002 1003 1004
		goto ei2c;
	}

1005
	ret = mt9m111_init(mt9m111);
1006

1007 1008 1009 1010
ei2c:
	return ret;
}

1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
static struct v4l2_subdev_core_ops mt9m111_subdev_core_ops = {
	.g_ctrl		= mt9m111_g_ctrl,
	.s_ctrl		= mt9m111_s_ctrl,
	.g_chip_ident	= mt9m111_g_chip_ident,
#ifdef CONFIG_VIDEO_ADV_DEBUG
	.g_register	= mt9m111_g_register,
	.s_register	= mt9m111_s_register,
#endif
};

1021
static int mt9m111_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
1022 1023
			    enum v4l2_mbus_pixelcode *code)
{
1024
	if (index >= ARRAY_SIZE(mt9m111_colour_fmts))
1025 1026 1027 1028 1029 1030
		return -EINVAL;

	*code = mt9m111_colour_fmts[index].code;
	return 0;
}

1031
static struct v4l2_subdev_video_ops mt9m111_subdev_video_ops = {
1032 1033 1034
	.s_mbus_fmt	= mt9m111_s_fmt,
	.g_mbus_fmt	= mt9m111_g_fmt,
	.try_mbus_fmt	= mt9m111_try_fmt,
1035
	.s_crop		= mt9m111_s_crop,
1036 1037
	.g_crop		= mt9m111_g_crop,
	.cropcap	= mt9m111_cropcap,
1038
	.enum_mbus_fmt	= mt9m111_enum_fmt,
1039 1040 1041 1042 1043 1044 1045
};

static struct v4l2_subdev_ops mt9m111_subdev_ops = {
	.core	= &mt9m111_subdev_core_ops,
	.video	= &mt9m111_subdev_video_ops,
};

1046 1047 1048 1049
static int mt9m111_probe(struct i2c_client *client,
			 const struct i2c_device_id *did)
{
	struct mt9m111 *mt9m111;
1050
	struct soc_camera_device *icd = client->dev.platform_data;
1051
	struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
1052
	struct soc_camera_link *icl;
1053 1054
	int ret;

1055
	if (!icd) {
1056
		dev_err(&client->dev, "mt9m111: soc-camera data missing!\n");
1057 1058 1059 1060
		return -EINVAL;
	}

	icl = to_soc_camera_link(icd);
1061
	if (!icl) {
1062
		dev_err(&client->dev, "mt9m111: driver needs platform data\n");
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
		return -EINVAL;
	}

	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
		dev_warn(&adapter->dev,
			 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
		return -EIO;
	}

	mt9m111 = kzalloc(sizeof(struct mt9m111), GFP_KERNEL);
	if (!mt9m111)
		return -ENOMEM;

1076
	v4l2_i2c_subdev_init(&mt9m111->subdev, client, &mt9m111_subdev_ops);
1077 1078

	/* Second stage probe - when a capture adapter is there */
1079
	icd->ops		= &mt9m111_ops;
1080

1081 1082 1083 1084
	mt9m111->rect.left	= MT9M111_MIN_DARK_COLS;
	mt9m111->rect.top	= MT9M111_MIN_DARK_ROWS;
	mt9m111->rect.width	= MT9M111_MAX_WIDTH;
	mt9m111->rect.height	= MT9M111_MAX_HEIGHT;
1085
	mt9m111->fmt		= &mt9m111_colour_fmts[0];
1086

1087 1088 1089 1090 1091
	ret = mt9m111_video_probe(icd, client);
	if (ret) {
		icd->ops = NULL;
		kfree(mt9m111);
	}
1092 1093 1094 1095 1096 1097

	return ret;
}

static int mt9m111_remove(struct i2c_client *client)
{
1098
	struct mt9m111 *mt9m111 = to_mt9m111(client);
1099 1100 1101
	struct soc_camera_device *icd = client->dev.platform_data;

	icd->ops = NULL;
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
	kfree(mt9m111);

	return 0;
}

static const struct i2c_device_id mt9m111_id[] = {
	{ "mt9m111", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, mt9m111_id);

static struct i2c_driver mt9m111_i2c_driver = {
	.driver = {
		.name = "mt9m111",
	},
	.probe		= mt9m111_probe,
	.remove		= mt9m111_remove,
	.id_table	= mt9m111_id,
};

static int __init mt9m111_mod_init(void)
{
	return i2c_add_driver(&mt9m111_i2c_driver);
}

static void __exit mt9m111_mod_exit(void)
{
	i2c_del_driver(&mt9m111_i2c_driver);
}

module_init(mt9m111_mod_init);
module_exit(mt9m111_mod_exit);

1135
MODULE_DESCRIPTION("Micron/Aptina MT9M111/MT9M112/MT9M131 Camera driver");
1136 1137
MODULE_AUTHOR("Robert Jarzmik");
MODULE_LICENSE("GPL");