2 * Driver for MT9M111/MT9M112/MT9M131 CMOS Image Sensor from Micron/Aptina
4 * Copyright (C) 2008, Robert Jarzmik <robert.jarzmik@free.fr>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/videodev2.h>
11 #include <linux/slab.h>
12 #include <linux/i2c.h>
13 #include <linux/log2.h>
14 #include <linux/gpio.h>
15 #include <linux/delay.h>
17 #include <media/v4l2-common.h>
18 #include <media/v4l2-chip-ident.h>
19 #include <media/soc_camera.h>
22 * MT9M111, MT9M112 and MT9M131:
23 * i2c address is 0x48 or 0x5d (depending on SADDR pin)
24 * The platform has to define i2c_board_info and call i2c_register_board_info()
28 * Sensor core register addresses (0x000..0x0ff)
30 #define MT9M111_CHIP_VERSION 0x000
31 #define MT9M111_ROW_START 0x001
32 #define MT9M111_COLUMN_START 0x002
33 #define MT9M111_WINDOW_HEIGHT 0x003
34 #define MT9M111_WINDOW_WIDTH 0x004
35 #define MT9M111_HORIZONTAL_BLANKING_B 0x005
36 #define MT9M111_VERTICAL_BLANKING_B 0x006
37 #define MT9M111_HORIZONTAL_BLANKING_A 0x007
38 #define MT9M111_VERTICAL_BLANKING_A 0x008
39 #define MT9M111_SHUTTER_WIDTH 0x009
40 #define MT9M111_ROW_SPEED 0x00a
41 #define MT9M111_EXTRA_DELAY 0x00b
42 #define MT9M111_SHUTTER_DELAY 0x00c
43 #define MT9M111_RESET 0x00d
44 #define MT9M111_READ_MODE_B 0x020
45 #define MT9M111_READ_MODE_A 0x021
46 #define MT9M111_FLASH_CONTROL 0x023
47 #define MT9M111_GREEN1_GAIN 0x02b
48 #define MT9M111_BLUE_GAIN 0x02c
49 #define MT9M111_RED_GAIN 0x02d
50 #define MT9M111_GREEN2_GAIN 0x02e
51 #define MT9M111_GLOBAL_GAIN 0x02f
52 #define MT9M111_CONTEXT_CONTROL 0x0c8
53 #define MT9M111_PAGE_MAP 0x0f0
54 #define MT9M111_BYTE_WISE_ADDR 0x0f1
56 #define MT9M111_RESET_SYNC_CHANGES (1 << 15)
57 #define MT9M111_RESET_RESTART_BAD_FRAME (1 << 9)
58 #define MT9M111_RESET_SHOW_BAD_FRAMES (1 << 8)
59 #define MT9M111_RESET_RESET_SOC (1 << 5)
60 #define MT9M111_RESET_OUTPUT_DISABLE (1 << 4)
61 #define MT9M111_RESET_CHIP_ENABLE (1 << 3)
62 #define MT9M111_RESET_ANALOG_STANDBY (1 << 2)
63 #define MT9M111_RESET_RESTART_FRAME (1 << 1)
64 #define MT9M111_RESET_RESET_MODE (1 << 0)
66 #define MT9M111_RM_FULL_POWER_RD (0 << 10)
67 #define MT9M111_RM_LOW_POWER_RD (1 << 10)
68 #define MT9M111_RM_COL_SKIP_4X (1 << 5)
69 #define MT9M111_RM_ROW_SKIP_4X (1 << 4)
70 #define MT9M111_RM_COL_SKIP_2X (1 << 3)
71 #define MT9M111_RM_ROW_SKIP_2X (1 << 2)
72 #define MT9M111_RMB_MIRROR_COLS (1 << 1)
73 #define MT9M111_RMB_MIRROR_ROWS (1 << 0)
74 #define MT9M111_CTXT_CTRL_RESTART (1 << 15)
75 #define MT9M111_CTXT_CTRL_DEFECTCOR_B (1 << 12)
76 #define MT9M111_CTXT_CTRL_RESIZE_B (1 << 10)
77 #define MT9M111_CTXT_CTRL_CTRL2_B (1 << 9)
78 #define MT9M111_CTXT_CTRL_GAMMA_B (1 << 8)
79 #define MT9M111_CTXT_CTRL_XENON_EN (1 << 7)
80 #define MT9M111_CTXT_CTRL_READ_MODE_B (1 << 3)
81 #define MT9M111_CTXT_CTRL_LED_FLASH_EN (1 << 2)
82 #define MT9M111_CTXT_CTRL_VBLANK_SEL_B (1 << 1)
83 #define MT9M111_CTXT_CTRL_HBLANK_SEL_B (1 << 0)
86 * Colorpipe register addresses (0x100..0x1ff)
88 #define MT9M111_OPER_MODE_CTRL 0x106
89 #define MT9M111_OUTPUT_FORMAT_CTRL 0x108
90 #define MT9M111_REDUCER_XZOOM_B 0x1a0
91 #define MT9M111_REDUCER_XSIZE_B 0x1a1
92 #define MT9M111_REDUCER_YZOOM_B 0x1a3
93 #define MT9M111_REDUCER_YSIZE_B 0x1a4
94 #define MT9M111_REDUCER_XZOOM_A 0x1a6
95 #define MT9M111_REDUCER_XSIZE_A 0x1a7
96 #define MT9M111_REDUCER_YZOOM_A 0x1a9
97 #define MT9M111_REDUCER_YSIZE_A 0x1aa
99 #define MT9M111_OUTPUT_FORMAT_CTRL2_A 0x13a
100 #define MT9M111_OUTPUT_FORMAT_CTRL2_B 0x19b
102 #define MT9M111_OPMODE_AUTOEXPO_EN (1 << 14)
103 #define MT9M111_OPMODE_AUTOWHITEBAL_EN (1 << 1)
104 #define MT9M111_OUTFMT_FLIP_BAYER_COL (1 << 9)
105 #define MT9M111_OUTFMT_FLIP_BAYER_ROW (1 << 8)
106 #define MT9M111_OUTFMT_PROCESSED_BAYER (1 << 14)
107 #define MT9M111_OUTFMT_BYPASS_IFP (1 << 10)
108 #define MT9M111_OUTFMT_INV_PIX_CLOCK (1 << 9)
109 #define MT9M111_OUTFMT_RGB (1 << 8)
110 #define MT9M111_OUTFMT_RGB565 (0 << 6)
111 #define MT9M111_OUTFMT_RGB555 (1 << 6)
112 #define MT9M111_OUTFMT_RGB444x (2 << 6)
113 #define MT9M111_OUTFMT_RGBx444 (3 << 6)
114 #define MT9M111_OUTFMT_TST_RAMP_OFF (0 << 4)
115 #define MT9M111_OUTFMT_TST_RAMP_COL (1 << 4)
116 #define MT9M111_OUTFMT_TST_RAMP_ROW (2 << 4)
117 #define MT9M111_OUTFMT_TST_RAMP_FRAME (3 << 4)
118 #define MT9M111_OUTFMT_SHIFT_3_UP (1 << 3)
119 #define MT9M111_OUTFMT_AVG_CHROMA (1 << 2)
120 #define MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN (1 << 1)
121 #define MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B (1 << 0)
124 * Camera control register addresses (0x200..0x2ff not implemented)
127 #define reg_read(reg) mt9m111_reg_read(client, MT9M111_##reg)
128 #define reg_write(reg, val) mt9m111_reg_write(client, MT9M111_##reg, (val))
129 #define reg_set(reg, val) mt9m111_reg_set(client, MT9M111_##reg, (val))
130 #define reg_clear(reg, val) mt9m111_reg_clear(client, MT9M111_##reg, (val))
131 #define reg_mask(reg, val, mask) mt9m111_reg_mask(client, MT9M111_##reg, \
134 #define MT9M111_MIN_DARK_ROWS 8
135 #define MT9M111_MIN_DARK_COLS 26
136 #define MT9M111_MAX_HEIGHT 1024
137 #define MT9M111_MAX_WIDTH 1280
139 /* MT9M111 has only one fixed colorspace per pixelcode */
140 struct mt9m111_datafmt
{
141 enum v4l2_mbus_pixelcode code
;
142 enum v4l2_colorspace colorspace
;
145 /* Find a data format by a pixel code in an array */
146 static const struct mt9m111_datafmt
*mt9m111_find_datafmt(
147 enum v4l2_mbus_pixelcode code
, const struct mt9m111_datafmt
*fmt
,
151 for (i
= 0; i
< n
; i
++)
152 if (fmt
[i
].code
== code
)
158 static const struct mt9m111_datafmt mt9m111_colour_fmts
[] = {
159 {V4L2_MBUS_FMT_YUYV8_2X8
, V4L2_COLORSPACE_JPEG
},
160 {V4L2_MBUS_FMT_YVYU8_2X8
, V4L2_COLORSPACE_JPEG
},
161 {V4L2_MBUS_FMT_UYVY8_2X8
, V4L2_COLORSPACE_JPEG
},
162 {V4L2_MBUS_FMT_VYUY8_2X8
, V4L2_COLORSPACE_JPEG
},
163 {V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE
, V4L2_COLORSPACE_SRGB
},
164 {V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE
, V4L2_COLORSPACE_SRGB
},
165 {V4L2_MBUS_FMT_RGB565_2X8_LE
, V4L2_COLORSPACE_SRGB
},
166 {V4L2_MBUS_FMT_RGB565_2X8_BE
, V4L2_COLORSPACE_SRGB
},
167 {V4L2_MBUS_FMT_BGR565_2X8_LE
, V4L2_COLORSPACE_SRGB
},
168 {V4L2_MBUS_FMT_BGR565_2X8_BE
, V4L2_COLORSPACE_SRGB
},
169 {V4L2_MBUS_FMT_SBGGR8_1X8
, V4L2_COLORSPACE_SRGB
},
170 {V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE
, V4L2_COLORSPACE_SRGB
},
173 enum mt9m111_context
{
179 struct v4l2_subdev subdev
;
180 int model
; /* V4L2_IDENT_MT9M111 or V4L2_IDENT_MT9M112 code
181 * from v4l2-chip-ident.h */
182 enum mt9m111_context context
;
183 struct v4l2_rect rect
;
184 struct mutex power_lock
; /* lock to protect power_count */
186 const struct mt9m111_datafmt
*fmt
;
188 unsigned char autoexposure
;
189 unsigned char datawidth
;
190 unsigned int powered
:1;
191 unsigned int hflip
:1;
192 unsigned int vflip
:1;
193 unsigned int autowhitebalance
:1;
196 static struct mt9m111
*to_mt9m111(const struct i2c_client
*client
)
198 return container_of(i2c_get_clientdata(client
), struct mt9m111
, subdev
);
201 static int reg_page_map_set(struct i2c_client
*client
, const u16 reg
)
205 static int lastpage
= -1; /* PageMap cache value */
208 if (page
== lastpage
)
213 ret
= i2c_smbus_write_word_data(client
, MT9M111_PAGE_MAP
, swab16(page
));
219 static int mt9m111_reg_read(struct i2c_client
*client
, const u16 reg
)
223 ret
= reg_page_map_set(client
, reg
);
225 ret
= swab16(i2c_smbus_read_word_data(client
, reg
& 0xff));
227 dev_dbg(&client
->dev
, "read reg.%03x -> %04x\n", reg
, ret
);
231 static int mt9m111_reg_write(struct i2c_client
*client
, const u16 reg
,
236 ret
= reg_page_map_set(client
, reg
);
238 ret
= i2c_smbus_write_word_data(client
, reg
& 0xff,
240 dev_dbg(&client
->dev
, "write reg.%03x = %04x -> %d\n", reg
, data
, ret
);
244 static int mt9m111_reg_set(struct i2c_client
*client
, const u16 reg
,
249 ret
= mt9m111_reg_read(client
, reg
);
251 ret
= mt9m111_reg_write(client
, reg
, ret
| data
);
255 static int mt9m111_reg_clear(struct i2c_client
*client
, const u16 reg
,
260 ret
= mt9m111_reg_read(client
, reg
);
262 ret
= mt9m111_reg_write(client
, reg
, ret
& ~data
);
266 static int mt9m111_reg_mask(struct i2c_client
*client
, const u16 reg
,
267 const u16 data
, const u16 mask
)
271 ret
= mt9m111_reg_read(client
, reg
);
273 ret
= mt9m111_reg_write(client
, reg
, (ret
& ~mask
) | data
);
277 static int mt9m111_set_context(struct mt9m111
*mt9m111
,
278 enum mt9m111_context ctxt
)
280 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
281 int valB
= MT9M111_CTXT_CTRL_RESTART
| MT9M111_CTXT_CTRL_DEFECTCOR_B
282 | MT9M111_CTXT_CTRL_RESIZE_B
| MT9M111_CTXT_CTRL_CTRL2_B
283 | MT9M111_CTXT_CTRL_GAMMA_B
| MT9M111_CTXT_CTRL_READ_MODE_B
284 | MT9M111_CTXT_CTRL_VBLANK_SEL_B
285 | MT9M111_CTXT_CTRL_HBLANK_SEL_B
;
286 int valA
= MT9M111_CTXT_CTRL_RESTART
;
288 if (ctxt
== HIGHPOWER
)
289 return reg_write(CONTEXT_CONTROL
, valB
);
291 return reg_write(CONTEXT_CONTROL
, valA
);
294 static int mt9m111_setup_rect(struct mt9m111
*mt9m111
,
295 struct v4l2_rect
*rect
)
297 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
298 int ret
, is_raw_format
;
299 int width
= rect
->width
;
300 int height
= rect
->height
;
302 if (mt9m111
->fmt
->code
== V4L2_MBUS_FMT_SBGGR8_1X8
||
303 mt9m111
->fmt
->code
== V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE
)
308 ret
= reg_write(COLUMN_START
, rect
->left
);
310 ret
= reg_write(ROW_START
, rect
->top
);
314 ret
= reg_write(WINDOW_WIDTH
, width
);
316 ret
= reg_write(WINDOW_HEIGHT
, height
);
319 ret
= reg_write(REDUCER_XZOOM_B
, MT9M111_MAX_WIDTH
);
321 ret
= reg_write(REDUCER_YZOOM_B
, MT9M111_MAX_HEIGHT
);
323 ret
= reg_write(REDUCER_XSIZE_B
, width
);
325 ret
= reg_write(REDUCER_YSIZE_B
, height
);
327 ret
= reg_write(REDUCER_XZOOM_A
, MT9M111_MAX_WIDTH
);
329 ret
= reg_write(REDUCER_YZOOM_A
, MT9M111_MAX_HEIGHT
);
331 ret
= reg_write(REDUCER_XSIZE_A
, width
);
333 ret
= reg_write(REDUCER_YSIZE_A
, height
);
339 static int mt9m111_enable(struct mt9m111
*mt9m111
)
341 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
344 ret
= reg_set(RESET
, MT9M111_RESET_CHIP_ENABLE
);
346 mt9m111
->powered
= 1;
350 static int mt9m111_reset(struct mt9m111
*mt9m111
)
352 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
355 ret
= reg_set(RESET
, MT9M111_RESET_RESET_MODE
);
357 ret
= reg_set(RESET
, MT9M111_RESET_RESET_SOC
);
359 ret
= reg_clear(RESET
, MT9M111_RESET_RESET_MODE
360 | MT9M111_RESET_RESET_SOC
);
365 static unsigned long mt9m111_query_bus_param(struct soc_camera_device
*icd
)
367 struct soc_camera_link
*icl
= to_soc_camera_link(icd
);
368 unsigned long flags
= SOCAM_MASTER
| SOCAM_PCLK_SAMPLE_RISING
|
369 SOCAM_HSYNC_ACTIVE_HIGH
| SOCAM_VSYNC_ACTIVE_HIGH
|
370 SOCAM_DATA_ACTIVE_HIGH
| SOCAM_DATAWIDTH_8
;
372 return soc_camera_apply_sensor_flags(icl
, flags
);
375 static int mt9m111_set_bus_param(struct soc_camera_device
*icd
, unsigned long f
)
380 static int mt9m111_make_rect(struct mt9m111
*mt9m111
,
381 struct v4l2_rect
*rect
)
383 if (mt9m111
->fmt
->code
== V4L2_MBUS_FMT_SBGGR8_1X8
||
384 mt9m111
->fmt
->code
== V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE
) {
385 /* Bayer format - even size lengths */
386 rect
->width
= ALIGN(rect
->width
, 2);
387 rect
->height
= ALIGN(rect
->height
, 2);
388 /* Let the user play with the starting pixel */
391 /* FIXME: the datasheet doesn't specify minimum sizes */
392 soc_camera_limit_side(&rect
->left
, &rect
->width
,
393 MT9M111_MIN_DARK_COLS
, 2, MT9M111_MAX_WIDTH
);
395 soc_camera_limit_side(&rect
->top
, &rect
->height
,
396 MT9M111_MIN_DARK_ROWS
, 2, MT9M111_MAX_HEIGHT
);
398 return mt9m111_setup_rect(mt9m111
, rect
);
401 static int mt9m111_s_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
403 struct v4l2_rect rect
= a
->c
;
404 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
405 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
408 dev_dbg(&client
->dev
, "%s left=%d, top=%d, width=%d, height=%d\n",
409 __func__
, rect
.left
, rect
.top
, rect
.width
, rect
.height
);
411 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
414 ret
= mt9m111_make_rect(mt9m111
, &rect
);
416 mt9m111
->rect
= rect
;
420 static int mt9m111_g_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
422 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
424 a
->c
= mt9m111
->rect
;
425 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
430 static int mt9m111_cropcap(struct v4l2_subdev
*sd
, struct v4l2_cropcap
*a
)
432 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
435 a
->bounds
.left
= MT9M111_MIN_DARK_COLS
;
436 a
->bounds
.top
= MT9M111_MIN_DARK_ROWS
;
437 a
->bounds
.width
= MT9M111_MAX_WIDTH
;
438 a
->bounds
.height
= MT9M111_MAX_HEIGHT
;
439 a
->defrect
= a
->bounds
;
440 a
->pixelaspect
.numerator
= 1;
441 a
->pixelaspect
.denominator
= 1;
446 static int mt9m111_g_fmt(struct v4l2_subdev
*sd
,
447 struct v4l2_mbus_framefmt
*mf
)
449 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
451 mf
->width
= mt9m111
->rect
.width
;
452 mf
->height
= mt9m111
->rect
.height
;
453 mf
->code
= mt9m111
->fmt
->code
;
454 mf
->colorspace
= mt9m111
->fmt
->colorspace
;
455 mf
->field
= V4L2_FIELD_NONE
;
460 static int mt9m111_set_pixfmt(struct mt9m111
*mt9m111
,
461 enum v4l2_mbus_pixelcode code
)
463 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
464 u16 data_outfmt2
, mask_outfmt2
= MT9M111_OUTFMT_PROCESSED_BAYER
|
465 MT9M111_OUTFMT_BYPASS_IFP
| MT9M111_OUTFMT_RGB
|
466 MT9M111_OUTFMT_RGB565
| MT9M111_OUTFMT_RGB555
|
467 MT9M111_OUTFMT_RGB444x
| MT9M111_OUTFMT_RGBx444
|
468 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
|
469 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B
;
473 case V4L2_MBUS_FMT_SBGGR8_1X8
:
474 data_outfmt2
= MT9M111_OUTFMT_PROCESSED_BAYER
|
477 case V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE
:
478 data_outfmt2
= MT9M111_OUTFMT_BYPASS_IFP
| MT9M111_OUTFMT_RGB
;
480 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE
:
481 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB555
|
482 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
;
484 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE
:
485 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB555
;
487 case V4L2_MBUS_FMT_RGB565_2X8_LE
:
488 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB565
|
489 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
;
491 case V4L2_MBUS_FMT_RGB565_2X8_BE
:
492 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB565
;
494 case V4L2_MBUS_FMT_BGR565_2X8_BE
:
495 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB565
|
496 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B
;
498 case V4L2_MBUS_FMT_BGR565_2X8_LE
:
499 data_outfmt2
= MT9M111_OUTFMT_RGB
| MT9M111_OUTFMT_RGB565
|
500 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
|
501 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B
;
503 case V4L2_MBUS_FMT_UYVY8_2X8
:
506 case V4L2_MBUS_FMT_VYUY8_2X8
:
507 data_outfmt2
= MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B
;
509 case V4L2_MBUS_FMT_YUYV8_2X8
:
510 data_outfmt2
= MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
;
512 case V4L2_MBUS_FMT_YVYU8_2X8
:
513 data_outfmt2
= MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN
|
514 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B
;
517 dev_err(&client
->dev
, "Pixel format not handled: %x\n", code
);
521 ret
= reg_mask(OUTPUT_FORMAT_CTRL2_A
, data_outfmt2
,
524 ret
= reg_mask(OUTPUT_FORMAT_CTRL2_B
, data_outfmt2
,
530 static int mt9m111_s_fmt(struct v4l2_subdev
*sd
,
531 struct v4l2_mbus_framefmt
*mf
)
533 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
534 const struct mt9m111_datafmt
*fmt
;
535 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
536 struct v4l2_rect rect
= {
537 .left
= mt9m111
->rect
.left
,
538 .top
= mt9m111
->rect
.top
,
540 .height
= mf
->height
,
544 fmt
= mt9m111_find_datafmt(mf
->code
, mt9m111_colour_fmts
,
545 ARRAY_SIZE(mt9m111_colour_fmts
));
549 dev_dbg(&client
->dev
,
550 "%s code=%x left=%d, top=%d, width=%d, height=%d\n", __func__
,
551 mf
->code
, rect
.left
, rect
.top
, rect
.width
, rect
.height
);
553 ret
= mt9m111_make_rect(mt9m111
, &rect
);
555 ret
= mt9m111_set_pixfmt(mt9m111
, mf
->code
);
557 mt9m111
->rect
= rect
;
559 mf
->colorspace
= fmt
->colorspace
;
565 static int mt9m111_try_fmt(struct v4l2_subdev
*sd
,
566 struct v4l2_mbus_framefmt
*mf
)
568 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
569 const struct mt9m111_datafmt
*fmt
;
570 bool bayer
= mf
->code
== V4L2_MBUS_FMT_SBGGR8_1X8
||
571 mf
->code
== V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE
;
573 fmt
= mt9m111_find_datafmt(mf
->code
, mt9m111_colour_fmts
,
574 ARRAY_SIZE(mt9m111_colour_fmts
));
577 mf
->code
= fmt
->code
;
581 * With Bayer format enforce even side lengths, but let the user play
582 * with the starting pixel
585 if (mf
->height
> MT9M111_MAX_HEIGHT
)
586 mf
->height
= MT9M111_MAX_HEIGHT
;
587 else if (mf
->height
< 2)
590 mf
->height
= ALIGN(mf
->height
, 2);
592 if (mf
->width
> MT9M111_MAX_WIDTH
)
593 mf
->width
= MT9M111_MAX_WIDTH
;
594 else if (mf
->width
< 2)
597 mf
->width
= ALIGN(mf
->width
, 2);
599 mf
->colorspace
= fmt
->colorspace
;
604 static int mt9m111_g_chip_ident(struct v4l2_subdev
*sd
,
605 struct v4l2_dbg_chip_ident
*id
)
607 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
608 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
610 if (id
->match
.type
!= V4L2_CHIP_MATCH_I2C_ADDR
)
613 if (id
->match
.addr
!= client
->addr
)
616 id
->ident
= mt9m111
->model
;
622 #ifdef CONFIG_VIDEO_ADV_DEBUG
623 static int mt9m111_g_register(struct v4l2_subdev
*sd
,
624 struct v4l2_dbg_register
*reg
)
626 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
629 if (reg
->match
.type
!= V4L2_CHIP_MATCH_I2C_ADDR
|| reg
->reg
> 0x2ff)
631 if (reg
->match
.addr
!= client
->addr
)
634 val
= mt9m111_reg_read(client
, reg
->reg
);
638 if (reg
->val
> 0xffff)
644 static int mt9m111_s_register(struct v4l2_subdev
*sd
,
645 struct v4l2_dbg_register
*reg
)
647 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
649 if (reg
->match
.type
!= V4L2_CHIP_MATCH_I2C_ADDR
|| reg
->reg
> 0x2ff)
652 if (reg
->match
.addr
!= client
->addr
)
655 if (mt9m111_reg_write(client
, reg
->reg
, reg
->val
) < 0)
662 static const struct v4l2_queryctrl mt9m111_controls
[] = {
664 .id
= V4L2_CID_VFLIP
,
665 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
666 .name
= "Flip Verticaly",
672 .id
= V4L2_CID_HFLIP
,
673 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
674 .name
= "Flip Horizontaly",
679 }, { /* gain = 1/32*val (=>gain=1 if val==32) */
681 .type
= V4L2_CTRL_TYPE_INTEGER
,
684 .maximum
= 63 * 2 * 2,
687 .flags
= V4L2_CTRL_FLAG_SLIDER
,
689 .id
= V4L2_CID_EXPOSURE_AUTO
,
690 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
691 .name
= "Auto Exposure",
699 static struct soc_camera_ops mt9m111_ops
= {
700 .query_bus_param
= mt9m111_query_bus_param
,
701 .set_bus_param
= mt9m111_set_bus_param
,
702 .controls
= mt9m111_controls
,
703 .num_controls
= ARRAY_SIZE(mt9m111_controls
),
706 static int mt9m111_set_flip(struct mt9m111
*mt9m111
, int flip
, int mask
)
708 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
711 if (mt9m111
->context
== HIGHPOWER
) {
713 ret
= reg_set(READ_MODE_B
, mask
);
715 ret
= reg_clear(READ_MODE_B
, mask
);
718 ret
= reg_set(READ_MODE_A
, mask
);
720 ret
= reg_clear(READ_MODE_A
, mask
);
726 static int mt9m111_get_global_gain(struct mt9m111
*mt9m111
)
728 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
731 data
= reg_read(GLOBAL_GAIN
);
733 return (data
& 0x2f) * (1 << ((data
>> 10) & 1)) *
734 (1 << ((data
>> 9) & 1));
738 static int mt9m111_set_global_gain(struct mt9m111
*mt9m111
, int gain
)
740 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
743 if (gain
> 63 * 2 * 2)
746 mt9m111
->gain
= gain
;
747 if ((gain
>= 64 * 2) && (gain
< 63 * 2 * 2))
748 val
= (1 << 10) | (1 << 9) | (gain
/ 4);
749 else if ((gain
>= 64) && (gain
< 64 * 2))
750 val
= (1 << 9) | (gain
/ 2);
754 return reg_write(GLOBAL_GAIN
, val
);
757 static int mt9m111_set_autoexposure(struct mt9m111
*mt9m111
, int on
)
759 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
763 ret
= reg_set(OPER_MODE_CTRL
, MT9M111_OPMODE_AUTOEXPO_EN
);
765 ret
= reg_clear(OPER_MODE_CTRL
, MT9M111_OPMODE_AUTOEXPO_EN
);
768 mt9m111
->autoexposure
= on
;
773 static int mt9m111_set_autowhitebalance(struct mt9m111
*mt9m111
, int on
)
775 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
779 ret
= reg_set(OPER_MODE_CTRL
, MT9M111_OPMODE_AUTOWHITEBAL_EN
);
781 ret
= reg_clear(OPER_MODE_CTRL
, MT9M111_OPMODE_AUTOWHITEBAL_EN
);
784 mt9m111
->autowhitebalance
= on
;
789 static int mt9m111_g_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
791 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
792 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
797 if (mt9m111
->context
== HIGHPOWER
)
798 data
= reg_read(READ_MODE_B
);
800 data
= reg_read(READ_MODE_A
);
804 ctrl
->value
= !!(data
& MT9M111_RMB_MIRROR_ROWS
);
807 if (mt9m111
->context
== HIGHPOWER
)
808 data
= reg_read(READ_MODE_B
);
810 data
= reg_read(READ_MODE_A
);
814 ctrl
->value
= !!(data
& MT9M111_RMB_MIRROR_COLS
);
817 data
= mt9m111_get_global_gain(mt9m111
);
822 case V4L2_CID_EXPOSURE_AUTO
:
823 ctrl
->value
= mt9m111
->autoexposure
;
825 case V4L2_CID_AUTO_WHITE_BALANCE
:
826 ctrl
->value
= mt9m111
->autowhitebalance
;
832 static int mt9m111_s_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
834 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
835 const struct v4l2_queryctrl
*qctrl
;
838 qctrl
= soc_camera_find_qctrl(&mt9m111_ops
, ctrl
->id
);
844 mt9m111
->vflip
= ctrl
->value
;
845 ret
= mt9m111_set_flip(mt9m111
, ctrl
->value
,
846 MT9M111_RMB_MIRROR_ROWS
);
849 mt9m111
->hflip
= ctrl
->value
;
850 ret
= mt9m111_set_flip(mt9m111
, ctrl
->value
,
851 MT9M111_RMB_MIRROR_COLS
);
854 ret
= mt9m111_set_global_gain(mt9m111
, ctrl
->value
);
856 case V4L2_CID_EXPOSURE_AUTO
:
857 ret
= mt9m111_set_autoexposure(mt9m111
, ctrl
->value
);
859 case V4L2_CID_AUTO_WHITE_BALANCE
:
860 ret
= mt9m111_set_autowhitebalance(mt9m111
, ctrl
->value
);
869 static int mt9m111_suspend(struct mt9m111
*mt9m111
)
871 mt9m111
->gain
= mt9m111_get_global_gain(mt9m111
);
876 static void mt9m111_restore_state(struct mt9m111
*mt9m111
)
878 mt9m111_set_context(mt9m111
, mt9m111
->context
);
879 mt9m111_set_pixfmt(mt9m111
, mt9m111
->fmt
->code
);
880 mt9m111_setup_rect(mt9m111
, &mt9m111
->rect
);
881 mt9m111_set_flip(mt9m111
, mt9m111
->hflip
, MT9M111_RMB_MIRROR_COLS
);
882 mt9m111_set_flip(mt9m111
, mt9m111
->vflip
, MT9M111_RMB_MIRROR_ROWS
);
883 mt9m111_set_global_gain(mt9m111
, mt9m111
->gain
);
884 mt9m111_set_autoexposure(mt9m111
, mt9m111
->autoexposure
);
885 mt9m111_set_autowhitebalance(mt9m111
, mt9m111
->autowhitebalance
);
888 static int mt9m111_resume(struct mt9m111
*mt9m111
)
892 if (mt9m111
->powered
) {
893 ret
= mt9m111_enable(mt9m111
);
895 ret
= mt9m111_reset(mt9m111
);
897 mt9m111_restore_state(mt9m111
);
902 static int mt9m111_init(struct mt9m111
*mt9m111
)
904 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9m111
->subdev
);
907 mt9m111
->context
= HIGHPOWER
;
908 ret
= mt9m111_enable(mt9m111
);
910 ret
= mt9m111_reset(mt9m111
);
912 ret
= mt9m111_set_context(mt9m111
, mt9m111
->context
);
914 ret
= mt9m111_set_autoexposure(mt9m111
, mt9m111
->autoexposure
);
916 dev_err(&client
->dev
, "mt9m111 init failed: %d\n", ret
);
921 * Interface active, can use i2c. If it fails, it can indeed mean, that
922 * this wasn't our capture interface, so, we wait for the right one
924 static int mt9m111_video_probe(struct soc_camera_device
*icd
,
925 struct i2c_client
*client
)
927 struct mt9m111
*mt9m111
= to_mt9m111(client
);
931 /* We must have a parent by now. And it cannot be a wrong one. */
932 BUG_ON(!icd
->parent
||
933 to_soc_camera_host(icd
->parent
)->nr
!= icd
->iface
);
935 mt9m111
->autoexposure
= 1;
936 mt9m111
->autowhitebalance
= 1;
938 data
= reg_read(CHIP_VERSION
);
941 case 0x143a: /* MT9M111 or MT9M131 */
942 mt9m111
->model
= V4L2_IDENT_MT9M111
;
943 dev_info(&client
->dev
,
944 "Detected a MT9M111/MT9M131 chip ID %x\n", data
);
946 case 0x148c: /* MT9M112 */
947 mt9m111
->model
= V4L2_IDENT_MT9M112
;
948 dev_info(&client
->dev
, "Detected a MT9M112 chip ID %x\n", data
);
952 dev_err(&client
->dev
,
953 "No MT9M111/MT9M112/MT9M131 chip detected register read %x\n",
958 ret
= mt9m111_init(mt9m111
);
964 static int mt9m111_s_power(struct v4l2_subdev
*sd
, int on
)
966 struct mt9m111
*mt9m111
= container_of(sd
, struct mt9m111
, subdev
);
967 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
970 mutex_lock(&mt9m111
->power_lock
);
973 * If the power count is modified from 0 to != 0 or from != 0 to 0,
974 * update the power state.
976 if (mt9m111
->power_count
== !on
) {
978 ret
= mt9m111_resume(mt9m111
);
980 dev_err(&client
->dev
,
981 "Failed to resume the sensor: %d\n", ret
);
985 mt9m111_suspend(mt9m111
);
989 /* Update the power count. */
990 mt9m111
->power_count
+= on
? 1 : -1;
991 WARN_ON(mt9m111
->power_count
< 0);
994 mutex_unlock(&mt9m111
->power_lock
);
998 static struct v4l2_subdev_core_ops mt9m111_subdev_core_ops
= {
999 .g_ctrl
= mt9m111_g_ctrl
,
1000 .s_ctrl
= mt9m111_s_ctrl
,
1001 .g_chip_ident
= mt9m111_g_chip_ident
,
1002 .s_power
= mt9m111_s_power
,
1003 #ifdef CONFIG_VIDEO_ADV_DEBUG
1004 .g_register
= mt9m111_g_register
,
1005 .s_register
= mt9m111_s_register
,
1009 static int mt9m111_enum_fmt(struct v4l2_subdev
*sd
, unsigned int index
,
1010 enum v4l2_mbus_pixelcode
*code
)
1012 if (index
>= ARRAY_SIZE(mt9m111_colour_fmts
))
1015 *code
= mt9m111_colour_fmts
[index
].code
;
1019 static struct v4l2_subdev_video_ops mt9m111_subdev_video_ops
= {
1020 .s_mbus_fmt
= mt9m111_s_fmt
,
1021 .g_mbus_fmt
= mt9m111_g_fmt
,
1022 .try_mbus_fmt
= mt9m111_try_fmt
,
1023 .s_crop
= mt9m111_s_crop
,
1024 .g_crop
= mt9m111_g_crop
,
1025 .cropcap
= mt9m111_cropcap
,
1026 .enum_mbus_fmt
= mt9m111_enum_fmt
,
1029 static struct v4l2_subdev_ops mt9m111_subdev_ops
= {
1030 .core
= &mt9m111_subdev_core_ops
,
1031 .video
= &mt9m111_subdev_video_ops
,
1034 static int mt9m111_probe(struct i2c_client
*client
,
1035 const struct i2c_device_id
*did
)
1037 struct mt9m111
*mt9m111
;
1038 struct soc_camera_device
*icd
= client
->dev
.platform_data
;
1039 struct i2c_adapter
*adapter
= to_i2c_adapter(client
->dev
.parent
);
1040 struct soc_camera_link
*icl
;
1044 dev_err(&client
->dev
, "mt9m111: soc-camera data missing!\n");
1048 icl
= to_soc_camera_link(icd
);
1050 dev_err(&client
->dev
, "mt9m111: driver needs platform data\n");
1054 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_WORD_DATA
)) {
1055 dev_warn(&adapter
->dev
,
1056 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
1060 mt9m111
= kzalloc(sizeof(struct mt9m111
), GFP_KERNEL
);
1064 v4l2_i2c_subdev_init(&mt9m111
->subdev
, client
, &mt9m111_subdev_ops
);
1066 /* Second stage probe - when a capture adapter is there */
1067 icd
->ops
= &mt9m111_ops
;
1069 mt9m111
->rect
.left
= MT9M111_MIN_DARK_COLS
;
1070 mt9m111
->rect
.top
= MT9M111_MIN_DARK_ROWS
;
1071 mt9m111
->rect
.width
= MT9M111_MAX_WIDTH
;
1072 mt9m111
->rect
.height
= MT9M111_MAX_HEIGHT
;
1073 mt9m111
->fmt
= &mt9m111_colour_fmts
[0];
1075 ret
= mt9m111_video_probe(icd
, client
);
1084 static int mt9m111_remove(struct i2c_client
*client
)
1086 struct mt9m111
*mt9m111
= to_mt9m111(client
);
1087 struct soc_camera_device
*icd
= client
->dev
.platform_data
;
1095 static const struct i2c_device_id mt9m111_id
[] = {
1099 MODULE_DEVICE_TABLE(i2c
, mt9m111_id
);
1101 static struct i2c_driver mt9m111_i2c_driver
= {
1105 .probe
= mt9m111_probe
,
1106 .remove
= mt9m111_remove
,
1107 .id_table
= mt9m111_id
,
1110 static int __init
mt9m111_mod_init(void)
1112 return i2c_add_driver(&mt9m111_i2c_driver
);
1115 static void __exit
mt9m111_mod_exit(void)
1117 i2c_del_driver(&mt9m111_i2c_driver
);
1120 module_init(mt9m111_mod_init
);
1121 module_exit(mt9m111_mod_exit
);
1123 MODULE_DESCRIPTION("Micron/Aptina MT9M111/MT9M112/MT9M131 Camera driver");
1124 MODULE_AUTHOR("Robert Jarzmik");
1125 MODULE_LICENSE("GPL");