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 #ifdef CONFIG_MEDIA_CONTROLLER
56 struct v4l2_ctrl_handler ctrls
;
57 unsigned width
, height
;
62 u16 global_gain
, exposure
;
63 s16 red_bal
, blue_bal
;
66 static inline struct mt9v011
*to_mt9v011(struct v4l2_subdev
*sd
)
68 return container_of(sd
, struct mt9v011
, sd
);
71 static int mt9v011_read(struct v4l2_subdev
*sd
, unsigned char addr
)
73 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
77 rc
= i2c_master_send(c
, &addr
, 1);
79 v4l2_dbg(0, debug
, sd
,
80 "i2c i/o error: rc == %d (should be 1)\n", rc
);
84 rc
= i2c_master_recv(c
, (char *)&buffer
, 2);
86 v4l2_dbg(0, debug
, sd
,
87 "i2c i/o error: rc == %d (should be 2)\n", rc
);
89 val
= be16_to_cpu(buffer
);
91 v4l2_dbg(2, debug
, sd
, "mt9v011: read 0x%02x = 0x%04x\n", addr
, val
);
96 static void mt9v011_write(struct v4l2_subdev
*sd
, unsigned char addr
,
99 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
100 unsigned char buffer
[3];
104 buffer
[1] = value
>> 8;
105 buffer
[2] = value
& 0xff;
107 v4l2_dbg(2, debug
, sd
,
108 "mt9v011: writing 0x%02x 0x%04x\n", buffer
[0], value
);
109 rc
= i2c_master_send(c
, buffer
, 3);
111 v4l2_dbg(0, debug
, sd
,
112 "i2c i/o error: rc == %d (should be 3)\n", rc
);
116 struct i2c_reg_value
{
122 * Values used at the original driver
123 * Some values are marked as Reserved at the datasheet
125 static const struct i2c_reg_value mt9v011_init_default
[] = {
126 { R0D_MT9V011_RESET
, 0x0001 },
127 { R0D_MT9V011_RESET
, 0x0000 },
129 { R0C_MT9V011_SHUTTER_DELAY
, 0x0000 },
130 { R09_MT9V011_SHUTTER_WIDTH
, 0x1fc },
132 { R0A_MT9V011_CLK_SPEED
, 0x0000 },
133 { R1E_MT9V011_DIGITAL_ZOOM
, 0x0000 },
135 { R07_MT9V011_OUT_CTRL
, 0x0002 }, /* chip enable */
139 static u16
calc_mt9v011_gain(s16 lineargain
)
149 /* recommended minimum */
150 lineargain
+= 0x0020;
152 if (lineargain
> 2047)
155 if (lineargain
> 1023) {
158 analoginit
= lineargain
/ 16;
159 } else if (lineargain
> 511) {
162 analoginit
= lineargain
/ 8;
163 } else if (lineargain
> 255) {
165 analoginit
= lineargain
/ 4;
166 } else if (lineargain
> 127) {
168 analoginit
= lineargain
/ 2;
170 analoginit
= lineargain
;
172 return analoginit
+ (analogmult
<< 7) + (digitalgain
<< 9);
176 static void set_balance(struct v4l2_subdev
*sd
)
178 struct mt9v011
*core
= to_mt9v011(sd
);
179 u16 green_gain
, blue_gain
, red_gain
;
183 exposure
= core
->exposure
;
185 green_gain
= calc_mt9v011_gain(core
->global_gain
);
187 bal
= core
->global_gain
;
188 bal
+= (core
->blue_bal
* core
->global_gain
/ (1 << 7));
189 blue_gain
= calc_mt9v011_gain(bal
);
191 bal
= core
->global_gain
;
192 bal
+= (core
->red_bal
* core
->global_gain
/ (1 << 7));
193 red_gain
= calc_mt9v011_gain(bal
);
195 mt9v011_write(sd
, R2B_MT9V011_GREEN_1_GAIN
, green_gain
);
196 mt9v011_write(sd
, R2E_MT9V011_GREEN_2_GAIN
, green_gain
);
197 mt9v011_write(sd
, R2C_MT9V011_BLUE_GAIN
, blue_gain
);
198 mt9v011_write(sd
, R2D_MT9V011_RED_GAIN
, red_gain
);
199 mt9v011_write(sd
, R09_MT9V011_SHUTTER_WIDTH
, exposure
);
202 static void calc_fps(struct v4l2_subdev
*sd
, u32
*numerator
, u32
*denominator
)
204 struct mt9v011
*core
= to_mt9v011(sd
);
205 unsigned height
, width
, hblank
, vblank
, speed
;
206 unsigned row_time
, t_time
;
210 height
= mt9v011_read(sd
, R03_MT9V011_HEIGHT
);
211 width
= mt9v011_read(sd
, R04_MT9V011_WIDTH
);
212 hblank
= mt9v011_read(sd
, R05_MT9V011_HBLANK
);
213 vblank
= mt9v011_read(sd
, R06_MT9V011_VBLANK
);
214 speed
= mt9v011_read(sd
, R0A_MT9V011_CLK_SPEED
);
216 row_time
= (width
+ 113 + hblank
) * (speed
+ 2);
217 t_time
= row_time
* (height
+ vblank
+ 1);
219 frames_per_ms
= core
->xtal
* 1000l;
220 do_div(frames_per_ms
, t_time
);
223 v4l2_dbg(1, debug
, sd
, "Programmed to %u.%03u fps (%d pixel clcks)\n",
224 tmp
/ 1000, tmp
% 1000, t_time
);
226 if (numerator
&& denominator
) {
228 *denominator
= (u32
)frames_per_ms
;
232 static u16
calc_speed(struct v4l2_subdev
*sd
, u32 numerator
, u32 denominator
)
234 struct mt9v011
*core
= to_mt9v011(sd
);
235 unsigned height
, width
, hblank
, vblank
;
236 unsigned row_time
, line_time
;
239 /* Avoid bogus calculus */
240 if (!numerator
|| !denominator
)
243 height
= mt9v011_read(sd
, R03_MT9V011_HEIGHT
);
244 width
= mt9v011_read(sd
, R04_MT9V011_WIDTH
);
245 hblank
= mt9v011_read(sd
, R05_MT9V011_HBLANK
);
246 vblank
= mt9v011_read(sd
, R06_MT9V011_VBLANK
);
248 row_time
= width
+ 113 + hblank
;
249 line_time
= height
+ vblank
+ 1;
251 t_time
= core
->xtal
* ((u64
)numerator
);
252 /* round to the closest value */
253 t_time
+= denominator
/ 2;
254 do_div(t_time
, denominator
);
257 do_div(speed
, row_time
* line_time
);
259 /* Avoid having a negative value for speed */
265 /* Avoid speed overflow */
272 static void set_res(struct v4l2_subdev
*sd
)
274 struct mt9v011
*core
= to_mt9v011(sd
);
275 unsigned vstart
, hstart
;
278 * The mt9v011 doesn't have scaling. So, in order to select the desired
279 * resolution, we're cropping at the middle of the sensor.
280 * hblank and vblank should be adjusted, in order to warrant that
281 * we'll preserve the line timings for 30 fps, no matter what resolution
283 * NOTE: datasheet says that width (and height) should be filled with
284 * width-1. However, this doesn't work, since one pixel per line will
288 hstart
= 20 + (640 - core
->width
) / 2;
289 mt9v011_write(sd
, R02_MT9V011_COLSTART
, hstart
);
290 mt9v011_write(sd
, R04_MT9V011_WIDTH
, core
->width
);
291 mt9v011_write(sd
, R05_MT9V011_HBLANK
, 771 - core
->width
);
293 vstart
= 8 + (480 - core
->height
) / 2;
294 mt9v011_write(sd
, R01_MT9V011_ROWSTART
, vstart
);
295 mt9v011_write(sd
, R03_MT9V011_HEIGHT
, core
->height
);
296 mt9v011_write(sd
, R06_MT9V011_VBLANK
, 508 - core
->height
);
298 calc_fps(sd
, NULL
, NULL
);
301 static void set_read_mode(struct v4l2_subdev
*sd
)
303 struct mt9v011
*core
= to_mt9v011(sd
);
304 unsigned mode
= 0x1000;
312 mt9v011_write(sd
, R20_MT9V011_READ_MODE
, mode
);
315 static int mt9v011_reset(struct v4l2_subdev
*sd
, u32 val
)
319 for (i
= 0; i
< ARRAY_SIZE(mt9v011_init_default
); i
++)
320 mt9v011_write(sd
, mt9v011_init_default
[i
].reg
,
321 mt9v011_init_default
[i
].value
);
330 static int mt9v011_enum_mbus_code(struct v4l2_subdev
*sd
,
331 struct v4l2_subdev_pad_config
*cfg
,
332 struct v4l2_subdev_mbus_code_enum
*code
)
334 if (code
->pad
|| code
->index
> 0)
337 code
->code
= MEDIA_BUS_FMT_SGRBG8_1X8
;
341 static int mt9v011_set_fmt(struct v4l2_subdev
*sd
,
342 struct v4l2_subdev_pad_config
*cfg
,
343 struct v4l2_subdev_format
*format
)
345 struct v4l2_mbus_framefmt
*fmt
= &format
->format
;
346 struct mt9v011
*core
= to_mt9v011(sd
);
348 if (format
->pad
|| fmt
->code
!= MEDIA_BUS_FMT_SGRBG8_1X8
)
351 v4l_bound_align_image(&fmt
->width
, 48, 639, 1,
352 &fmt
->height
, 32, 480, 1, 0);
353 fmt
->field
= V4L2_FIELD_NONE
;
354 fmt
->colorspace
= V4L2_COLORSPACE_SRGB
;
356 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
) {
357 core
->width
= fmt
->width
;
358 core
->height
= fmt
->height
;
368 static int mt9v011_g_parm(struct v4l2_subdev
*sd
, struct v4l2_streamparm
*parms
)
370 struct v4l2_captureparm
*cp
= &parms
->parm
.capture
;
372 if (parms
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
375 memset(cp
, 0, sizeof(struct v4l2_captureparm
));
376 cp
->capability
= V4L2_CAP_TIMEPERFRAME
;
378 &cp
->timeperframe
.numerator
,
379 &cp
->timeperframe
.denominator
);
384 static int mt9v011_s_parm(struct v4l2_subdev
*sd
, struct v4l2_streamparm
*parms
)
386 struct v4l2_captureparm
*cp
= &parms
->parm
.capture
;
387 struct v4l2_fract
*tpf
= &cp
->timeperframe
;
390 if (parms
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
392 if (cp
->extendedmode
!= 0)
395 speed
= calc_speed(sd
, tpf
->numerator
, tpf
->denominator
);
397 mt9v011_write(sd
, R0A_MT9V011_CLK_SPEED
, speed
);
398 v4l2_dbg(1, debug
, sd
, "Setting speed to %d\n", speed
);
400 /* Recalculate and update fps info */
401 calc_fps(sd
, &tpf
->numerator
, &tpf
->denominator
);
406 #ifdef CONFIG_VIDEO_ADV_DEBUG
407 static int mt9v011_g_register(struct v4l2_subdev
*sd
,
408 struct v4l2_dbg_register
*reg
)
410 reg
->val
= mt9v011_read(sd
, reg
->reg
& 0xff);
416 static int mt9v011_s_register(struct v4l2_subdev
*sd
,
417 const struct v4l2_dbg_register
*reg
)
419 mt9v011_write(sd
, reg
->reg
& 0xff, reg
->val
& 0xffff);
425 static int mt9v011_s_ctrl(struct v4l2_ctrl
*ctrl
)
427 struct mt9v011
*core
=
428 container_of(ctrl
->handler
, struct mt9v011
, ctrls
);
429 struct v4l2_subdev
*sd
= &core
->sd
;
433 core
->global_gain
= ctrl
->val
;
435 case V4L2_CID_EXPOSURE
:
436 core
->exposure
= ctrl
->val
;
438 case V4L2_CID_RED_BALANCE
:
439 core
->red_bal
= ctrl
->val
;
441 case V4L2_CID_BLUE_BALANCE
:
442 core
->blue_bal
= ctrl
->val
;
445 core
->hflip
= ctrl
->val
;
449 core
->vflip
= ctrl
->val
;
460 static const struct v4l2_ctrl_ops mt9v011_ctrl_ops
= {
461 .s_ctrl
= mt9v011_s_ctrl
,
464 static const struct v4l2_subdev_core_ops mt9v011_core_ops
= {
465 .reset
= mt9v011_reset
,
466 #ifdef CONFIG_VIDEO_ADV_DEBUG
467 .g_register
= mt9v011_g_register
,
468 .s_register
= mt9v011_s_register
,
472 static const struct v4l2_subdev_video_ops mt9v011_video_ops
= {
473 .g_parm
= mt9v011_g_parm
,
474 .s_parm
= mt9v011_s_parm
,
477 static const struct v4l2_subdev_pad_ops mt9v011_pad_ops
= {
478 .enum_mbus_code
= mt9v011_enum_mbus_code
,
479 .set_fmt
= mt9v011_set_fmt
,
482 static const struct v4l2_subdev_ops mt9v011_ops
= {
483 .core
= &mt9v011_core_ops
,
484 .video
= &mt9v011_video_ops
,
485 .pad
= &mt9v011_pad_ops
,
489 /****************************************************************************
491 ****************************************************************************/
493 static int mt9v011_probe(struct i2c_client
*c
,
494 const struct i2c_device_id
*id
)
497 struct mt9v011
*core
;
498 struct v4l2_subdev
*sd
;
499 #ifdef CONFIG_MEDIA_CONTROLLER
503 /* Check if the adapter supports the needed features */
504 if (!i2c_check_functionality(c
->adapter
,
505 I2C_FUNC_SMBUS_READ_BYTE
| I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
508 core
= devm_kzalloc(&c
->dev
, sizeof(struct mt9v011
), GFP_KERNEL
);
513 v4l2_i2c_subdev_init(sd
, c
, &mt9v011_ops
);
515 #ifdef CONFIG_MEDIA_CONTROLLER
516 core
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
517 sd
->entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
519 ret
= media_entity_pads_init(&sd
->entity
, 1, &core
->pad
);
524 /* Check if the sensor is really a MT9V011 */
525 version
= mt9v011_read(sd
, R00_MT9V011_CHIP_VERSION
);
526 if ((version
!= MT9V011_VERSION
) &&
527 (version
!= MT9V011_REV_B_VERSION
)) {
528 v4l2_info(sd
, "*** unknown micron chip detected (0x%04x).\n",
533 v4l2_ctrl_handler_init(&core
->ctrls
, 5);
534 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
535 V4L2_CID_GAIN
, 0, (1 << 12) - 1 - 0x20, 1, 0x20);
536 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
537 V4L2_CID_EXPOSURE
, 0, 2047, 1, 0x01fc);
538 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
539 V4L2_CID_RED_BALANCE
, -(1 << 9), (1 << 9) - 1, 1, 0);
540 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
541 V4L2_CID_BLUE_BALANCE
, -(1 << 9), (1 << 9) - 1, 1, 0);
542 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
543 V4L2_CID_HFLIP
, 0, 1, 1, 0);
544 v4l2_ctrl_new_std(&core
->ctrls
, &mt9v011_ctrl_ops
,
545 V4L2_CID_VFLIP
, 0, 1, 1, 0);
547 if (core
->ctrls
.error
) {
548 int ret
= core
->ctrls
.error
;
550 v4l2_err(sd
, "control initialization error %d\n", ret
);
551 v4l2_ctrl_handler_free(&core
->ctrls
);
554 core
->sd
.ctrl_handler
= &core
->ctrls
;
556 core
->global_gain
= 0x0024;
557 core
->exposure
= 0x01fc;
560 core
->xtal
= 27000000; /* Hz */
562 if (c
->dev
.platform_data
) {
563 struct mt9v011_platform_data
*pdata
= c
->dev
.platform_data
;
565 core
->xtal
= pdata
->xtal
;
566 v4l2_dbg(1, debug
, sd
, "xtal set to %d.%03d MHz\n",
567 core
->xtal
/ 1000000, (core
->xtal
/ 1000) % 1000);
570 v4l_info(c
, "chip found @ 0x%02x (%s - chip version 0x%04x)\n",
571 c
->addr
<< 1, c
->adapter
->name
, version
);
576 static int mt9v011_remove(struct i2c_client
*c
)
578 struct v4l2_subdev
*sd
= i2c_get_clientdata(c
);
579 struct mt9v011
*core
= to_mt9v011(sd
);
581 v4l2_dbg(1, debug
, sd
,
582 "mt9v011.c: removing mt9v011 adapter on address 0x%x\n",
585 v4l2_device_unregister_subdev(sd
);
586 v4l2_ctrl_handler_free(&core
->ctrls
);
591 /* ----------------------------------------------------------------------- */
593 static const struct i2c_device_id mt9v011_id
[] = {
597 MODULE_DEVICE_TABLE(i2c
, mt9v011_id
);
599 static struct i2c_driver mt9v011_driver
= {
603 .probe
= mt9v011_probe
,
604 .remove
= mt9v011_remove
,
605 .id_table
= mt9v011_id
,
608 module_i2c_driver(mt9v011_driver
);