2 * mt9v011 -Micron 1/4-Inch VGA Digital Image Sensor
4 * Copyright (c) 2009 Mauro Carvalho Chehab
5 * This code is placed under the terms of the GNU General Public License v2
9 #include <linux/slab.h>
10 #include <linux/videodev2.h>
11 #include <linux/delay.h>
12 #include <linux/module.h>
13 #include <asm/div64.h>
14 #include <media/v4l2-device.h>
15 #include <media/v4l2-ctrls.h>
16 #include <media/i2c/mt9v011.h>
18 MODULE_DESCRIPTION("Micron mt9v011 sensor driver");
19 MODULE_AUTHOR("Mauro Carvalho Chehab");
20 MODULE_LICENSE("GPL");
23 module_param(debug
, int, 0);
24 MODULE_PARM_DESC(debug
, "Debug level (0-2)");
26 #define R00_MT9V011_CHIP_VERSION 0x00
27 #define R01_MT9V011_ROWSTART 0x01
28 #define R02_MT9V011_COLSTART 0x02
29 #define R03_MT9V011_HEIGHT 0x03
30 #define R04_MT9V011_WIDTH 0x04
31 #define R05_MT9V011_HBLANK 0x05
32 #define R06_MT9V011_VBLANK 0x06
33 #define R07_MT9V011_OUT_CTRL 0x07
34 #define R09_MT9V011_SHUTTER_WIDTH 0x09
35 #define R0A_MT9V011_CLK_SPEED 0x0a
36 #define R0B_MT9V011_RESTART 0x0b
37 #define R0C_MT9V011_SHUTTER_DELAY 0x0c
38 #define R0D_MT9V011_RESET 0x0d
39 #define R1E_MT9V011_DIGITAL_ZOOM 0x1e
40 #define R20_MT9V011_READ_MODE 0x20
41 #define R2B_MT9V011_GREEN_1_GAIN 0x2b
42 #define R2C_MT9V011_BLUE_GAIN 0x2c
43 #define R2D_MT9V011_RED_GAIN 0x2d
44 #define R2E_MT9V011_GREEN_2_GAIN 0x2e
45 #define R35_MT9V011_GLOBAL_GAIN 0x35
46 #define RF1_MT9V011_CHIP_ENABLE 0xf1
48 #define MT9V011_VERSION 0x8232
49 #define MT9V011_REV_B_VERSION 0x8243
52 struct v4l2_subdev sd
;
53 struct v4l2_ctrl_handler ctrls
;
54 unsigned width
, height
;
59 u16 global_gain
, exposure
;
60 s16 red_bal
, blue_bal
;
63 static inline struct mt9v011
*to_mt9v011(struct v4l2_subdev
*sd
)
65 return container_of(sd
, struct mt9v011
, sd
);
68 static int mt9v011_read(struct v4l2_subdev
*sd
, unsigned char addr
)
70 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
74 rc
= i2c_master_send(c
, &addr
, 1);
76 v4l2_dbg(0, debug
, sd
,
77 "i2c i/o error: rc == %d (should be 1)\n", rc
);
81 rc
= i2c_master_recv(c
, (char *)&buffer
, 2);
83 v4l2_dbg(0, debug
, sd
,
84 "i2c i/o error: rc == %d (should be 2)\n", rc
);
86 val
= be16_to_cpu(buffer
);
88 v4l2_dbg(2, debug
, sd
, "mt9v011: read 0x%02x = 0x%04x\n", addr
, val
);
93 static void mt9v011_write(struct v4l2_subdev
*sd
, unsigned char addr
,
96 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
97 unsigned char buffer
[3];
101 buffer
[1] = value
>> 8;
102 buffer
[2] = value
& 0xff;
104 v4l2_dbg(2, debug
, sd
,
105 "mt9v011: writing 0x%02x 0x%04x\n", buffer
[0], value
);
106 rc
= i2c_master_send(c
, buffer
, 3);
108 v4l2_dbg(0, debug
, sd
,
109 "i2c i/o error: rc == %d (should be 3)\n", rc
);
113 struct i2c_reg_value
{
119 * Values used at the original driver
120 * Some values are marked as Reserved at the datasheet
122 static const struct i2c_reg_value mt9v011_init_default
[] = {
123 { R0D_MT9V011_RESET
, 0x0001 },
124 { R0D_MT9V011_RESET
, 0x0000 },
126 { R0C_MT9V011_SHUTTER_DELAY
, 0x0000 },
127 { R09_MT9V011_SHUTTER_WIDTH
, 0x1fc },
129 { R0A_MT9V011_CLK_SPEED
, 0x0000 },
130 { R1E_MT9V011_DIGITAL_ZOOM
, 0x0000 },
132 { R07_MT9V011_OUT_CTRL
, 0x0002 }, /* chip enable */
136 static u16
calc_mt9v011_gain(s16 lineargain
)
146 /* recommended minimum */
147 lineargain
+= 0x0020;
149 if (lineargain
> 2047)
152 if (lineargain
> 1023) {
155 analoginit
= lineargain
/ 16;
156 } else if (lineargain
> 511) {
159 analoginit
= lineargain
/ 8;
160 } else if (lineargain
> 255) {
162 analoginit
= lineargain
/ 4;
163 } else if (lineargain
> 127) {
165 analoginit
= lineargain
/ 2;
167 analoginit
= lineargain
;
169 return analoginit
+ (analogmult
<< 7) + (digitalgain
<< 9);
173 static void set_balance(struct v4l2_subdev
*sd
)
175 struct mt9v011
*core
= to_mt9v011(sd
);
176 u16 green_gain
, blue_gain
, red_gain
;
180 exposure
= core
->exposure
;
182 green_gain
= calc_mt9v011_gain(core
->global_gain
);
184 bal
= core
->global_gain
;
185 bal
+= (core
->blue_bal
* core
->global_gain
/ (1 << 7));
186 blue_gain
= calc_mt9v011_gain(bal
);
188 bal
= core
->global_gain
;
189 bal
+= (core
->red_bal
* core
->global_gain
/ (1 << 7));
190 red_gain
= calc_mt9v011_gain(bal
);
192 mt9v011_write(sd
, R2B_MT9V011_GREEN_1_GAIN
, green_gain
);
193 mt9v011_write(sd
, R2E_MT9V011_GREEN_2_GAIN
, green_gain
);
194 mt9v011_write(sd
, R2C_MT9V011_BLUE_GAIN
, blue_gain
);
195 mt9v011_write(sd
, R2D_MT9V011_RED_GAIN
, red_gain
);
196 mt9v011_write(sd
, R09_MT9V011_SHUTTER_WIDTH
, exposure
);
199 static void calc_fps(struct v4l2_subdev
*sd
, u32
*numerator
, u32
*denominator
)
201 struct mt9v011
*core
= to_mt9v011(sd
);
202 unsigned height
, width
, hblank
, vblank
, speed
;
203 unsigned row_time
, t_time
;
207 height
= mt9v011_read(sd
, R03_MT9V011_HEIGHT
);
208 width
= mt9v011_read(sd
, R04_MT9V011_WIDTH
);
209 hblank
= mt9v011_read(sd
, R05_MT9V011_HBLANK
);
210 vblank
= mt9v011_read(sd
, R06_MT9V011_VBLANK
);
211 speed
= mt9v011_read(sd
, R0A_MT9V011_CLK_SPEED
);
213 row_time
= (width
+ 113 + hblank
) * (speed
+ 2);
214 t_time
= row_time
* (height
+ vblank
+ 1);
216 frames_per_ms
= core
->xtal
* 1000l;
217 do_div(frames_per_ms
, t_time
);
220 v4l2_dbg(1, debug
, sd
, "Programmed to %u.%03u fps (%d pixel clcks)\n",
221 tmp
/ 1000, tmp
% 1000, t_time
);
223 if (numerator
&& denominator
) {
225 *denominator
= (u32
)frames_per_ms
;
229 static u16
calc_speed(struct v4l2_subdev
*sd
, u32 numerator
, u32 denominator
)
231 struct mt9v011
*core
= to_mt9v011(sd
);
232 unsigned height
, width
, hblank
, vblank
;
233 unsigned row_time
, line_time
;
236 /* Avoid bogus calculus */
237 if (!numerator
|| !denominator
)
240 height
= mt9v011_read(sd
, R03_MT9V011_HEIGHT
);
241 width
= mt9v011_read(sd
, R04_MT9V011_WIDTH
);
242 hblank
= mt9v011_read(sd
, R05_MT9V011_HBLANK
);
243 vblank
= mt9v011_read(sd
, R06_MT9V011_VBLANK
);
245 row_time
= width
+ 113 + hblank
;
246 line_time
= height
+ vblank
+ 1;
248 t_time
= core
->xtal
* ((u64
)numerator
);
249 /* round to the closest value */
250 t_time
+= denominator
/ 2;
251 do_div(t_time
, denominator
);
254 do_div(speed
, row_time
* line_time
);
256 /* Avoid having a negative value for speed */
262 /* Avoid speed overflow */
269 static void set_res(struct v4l2_subdev
*sd
)
271 struct mt9v011
*core
= to_mt9v011(sd
);
272 unsigned vstart
, hstart
;
275 * The mt9v011 doesn't have scaling. So, in order to select the desired
276 * resolution, we're cropping at the middle of the sensor.
277 * hblank and vblank should be adjusted, in order to warrant that
278 * we'll preserve the line timings for 30 fps, no matter what resolution
280 * NOTE: datasheet says that width (and height) should be filled with
281 * width-1. However, this doesn't work, since one pixel per line will
285 hstart
= 20 + (640 - core
->width
) / 2;
286 mt9v011_write(sd
, R02_MT9V011_COLSTART
, hstart
);
287 mt9v011_write(sd
, R04_MT9V011_WIDTH
, core
->width
);
288 mt9v011_write(sd
, R05_MT9V011_HBLANK
, 771 - core
->width
);
290 vstart
= 8 + (480 - core
->height
) / 2;
291 mt9v011_write(sd
, R01_MT9V011_ROWSTART
, vstart
);
292 mt9v011_write(sd
, R03_MT9V011_HEIGHT
, core
->height
);
293 mt9v011_write(sd
, R06_MT9V011_VBLANK
, 508 - core
->height
);
295 calc_fps(sd
, NULL
, NULL
);
298 static void set_read_mode(struct v4l2_subdev
*sd
)
300 struct mt9v011
*core
= to_mt9v011(sd
);
301 unsigned mode
= 0x1000;
309 mt9v011_write(sd
, R20_MT9V011_READ_MODE
, mode
);
312 static int mt9v011_reset(struct v4l2_subdev
*sd
, u32 val
)
316 for (i
= 0; i
< ARRAY_SIZE(mt9v011_init_default
); i
++)
317 mt9v011_write(sd
, mt9v011_init_default
[i
].reg
,
318 mt9v011_init_default
[i
].value
);
327 static int mt9v011_enum_mbus_code(struct v4l2_subdev
*sd
,
328 struct v4l2_subdev_pad_config
*cfg
,
329 struct v4l2_subdev_mbus_code_enum
*code
)
331 if (code
->pad
|| code
->index
> 0)
334 code
->code
= MEDIA_BUS_FMT_SGRBG8_1X8
;
338 static int mt9v011_set_fmt(struct v4l2_subdev
*sd
,
339 struct v4l2_subdev_pad_config
*cfg
,
340 struct v4l2_subdev_format
*format
)
342 struct v4l2_mbus_framefmt
*fmt
= &format
->format
;
343 struct mt9v011
*core
= to_mt9v011(sd
);
345 if (format
->pad
|| fmt
->code
!= MEDIA_BUS_FMT_SGRBG8_1X8
)
348 v4l_bound_align_image(&fmt
->width
, 48, 639, 1,
349 &fmt
->height
, 32, 480, 1, 0);
350 fmt
->field
= V4L2_FIELD_NONE
;
351 fmt
->colorspace
= V4L2_COLORSPACE_SRGB
;
353 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
) {
354 core
->width
= fmt
->width
;
355 core
->height
= fmt
->height
;
365 static int mt9v011_g_parm(struct v4l2_subdev
*sd
, struct v4l2_streamparm
*parms
)
367 struct v4l2_captureparm
*cp
= &parms
->parm
.capture
;
369 if (parms
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
372 memset(cp
, 0, sizeof(struct v4l2_captureparm
));
373 cp
->capability
= V4L2_CAP_TIMEPERFRAME
;
375 &cp
->timeperframe
.numerator
,
376 &cp
->timeperframe
.denominator
);
381 static int mt9v011_s_parm(struct v4l2_subdev
*sd
, struct v4l2_streamparm
*parms
)
383 struct v4l2_captureparm
*cp
= &parms
->parm
.capture
;
384 struct v4l2_fract
*tpf
= &cp
->timeperframe
;
387 if (parms
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
389 if (cp
->extendedmode
!= 0)
392 speed
= calc_speed(sd
, tpf
->numerator
, tpf
->denominator
);
394 mt9v011_write(sd
, R0A_MT9V011_CLK_SPEED
, speed
);
395 v4l2_dbg(1, debug
, sd
, "Setting speed to %d\n", speed
);
397 /* Recalculate and update fps info */
398 calc_fps(sd
, &tpf
->numerator
, &tpf
->denominator
);
403 #ifdef CONFIG_VIDEO_ADV_DEBUG
404 static int mt9v011_g_register(struct v4l2_subdev
*sd
,
405 struct v4l2_dbg_register
*reg
)
407 reg
->val
= mt9v011_read(sd
, reg
->reg
& 0xff);
413 static int mt9v011_s_register(struct v4l2_subdev
*sd
,
414 const struct v4l2_dbg_register
*reg
)
416 mt9v011_write(sd
, reg
->reg
& 0xff, reg
->val
& 0xffff);
422 static int mt9v011_s_ctrl(struct v4l2_ctrl
*ctrl
)
424 struct mt9v011
*core
=
425 container_of(ctrl
->handler
, struct mt9v011
, ctrls
);
426 struct v4l2_subdev
*sd
= &core
->sd
;
430 core
->global_gain
= ctrl
->val
;
432 case V4L2_CID_EXPOSURE
:
433 core
->exposure
= ctrl
->val
;
435 case V4L2_CID_RED_BALANCE
:
436 core
->red_bal
= ctrl
->val
;
438 case V4L2_CID_BLUE_BALANCE
:
439 core
->blue_bal
= ctrl
->val
;
442 core
->hflip
= ctrl
->val
;
446 core
->vflip
= ctrl
->val
;
457 static const struct v4l2_ctrl_ops mt9v011_ctrl_ops
= {
458 .s_ctrl
= mt9v011_s_ctrl
,
461 static const struct v4l2_subdev_core_ops mt9v011_core_ops
= {
462 .reset
= mt9v011_reset
,
463 #ifdef CONFIG_VIDEO_ADV_DEBUG
464 .g_register
= mt9v011_g_register
,
465 .s_register
= mt9v011_s_register
,
469 static const struct v4l2_subdev_video_ops mt9v011_video_ops
= {
470 .g_parm
= mt9v011_g_parm
,
471 .s_parm
= mt9v011_s_parm
,
474 static const struct v4l2_subdev_pad_ops mt9v011_pad_ops
= {
475 .enum_mbus_code
= mt9v011_enum_mbus_code
,
476 .set_fmt
= mt9v011_set_fmt
,
479 static const struct v4l2_subdev_ops mt9v011_ops
= {
480 .core
= &mt9v011_core_ops
,
481 .video
= &mt9v011_video_ops
,
482 .pad
= &mt9v011_pad_ops
,
486 /****************************************************************************
488 ****************************************************************************/
490 static int mt9v011_probe(struct i2c_client
*c
,
491 const struct i2c_device_id
*id
)
494 struct mt9v011
*core
;
495 struct v4l2_subdev
*sd
;
497 /* Check if the adapter supports the needed features */
498 if (!i2c_check_functionality(c
->adapter
,
499 I2C_FUNC_SMBUS_READ_BYTE
| I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
502 core
= devm_kzalloc(&c
->dev
, sizeof(struct mt9v011
), GFP_KERNEL
);
507 v4l2_i2c_subdev_init(sd
, c
, &mt9v011_ops
);
509 /* Check if the sensor is really a MT9V011 */
510 version
= mt9v011_read(sd
, R00_MT9V011_CHIP_VERSION
);
511 if ((version
!= MT9V011_VERSION
) &&
512 (version
!= MT9V011_REV_B_VERSION
)) {
513 v4l2_info(sd
, "*** unknown micron chip detected (0x%04x).\n",
518 v4l2_ctrl_handler_init(&core
->ctrls
, 5);
519 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
520 V4L2_CID_GAIN
, 0, (1 << 12) - 1 - 0x20, 1, 0x20);
521 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
522 V4L2_CID_EXPOSURE
, 0, 2047, 1, 0x01fc);
523 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
524 V4L2_CID_RED_BALANCE
, -(1 << 9), (1 << 9) - 1, 1, 0);
525 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
526 V4L2_CID_BLUE_BALANCE
, -(1 << 9), (1 << 9) - 1, 1, 0);
527 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
528 V4L2_CID_HFLIP
, 0, 1, 1, 0);
529 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
530 V4L2_CID_VFLIP
, 0, 1, 1, 0);
532 if (core
->ctrls
.error
) {
533 int ret
= core
->ctrls
.error
;
535 v4l2_err(sd
, "control initialization error %d\n", ret
);
536 v4l2_ctrl_handler_free(&core
->ctrls
);
539 core
->sd
.ctrl_handler
= &core
->ctrls
;
541 core
->global_gain
= 0x0024;
542 core
->exposure
= 0x01fc;
545 core
->xtal
= 27000000; /* Hz */
547 if (c
->dev
.platform_data
) {
548 struct mt9v011_platform_data
*pdata
= c
->dev
.platform_data
;
550 core
->xtal
= pdata
->xtal
;
551 v4l2_dbg(1, debug
, sd
, "xtal set to %d.%03d MHz\n",
552 core
->xtal
/ 1000000, (core
->xtal
/ 1000) % 1000);
555 v4l_info(c
, "chip found @ 0x%02x (%s - chip version 0x%04x)\n",
556 c
->addr
<< 1, c
->adapter
->name
, version
);
561 static int mt9v011_remove(struct i2c_client
*c
)
563 struct v4l2_subdev
*sd
= i2c_get_clientdata(c
);
564 struct mt9v011
*core
= to_mt9v011(sd
);
566 v4l2_dbg(1, debug
, sd
,
567 "mt9v011.c: removing mt9v011 adapter on address 0x%x\n",
570 v4l2_device_unregister_subdev(sd
);
571 v4l2_ctrl_handler_free(&core
->ctrls
);
576 /* ----------------------------------------------------------------------- */
578 static const struct i2c_device_id mt9v011_id
[] = {
582 MODULE_DEVICE_TABLE(i2c
, mt9v011_id
);
584 static struct i2c_driver mt9v011_driver
= {
588 .probe
= mt9v011_probe
,
589 .remove
= mt9v011_remove
,
590 .id_table
= mt9v011_id
,
593 module_i2c_driver(mt9v011_driver
);