]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/media/video/mt9m111.c
Merge branch 'for-linus' of git://github.com/richardweinberger/linux
[mirror_ubuntu-artful-kernel.git] / drivers / media / video / mt9m111.c
1 /*
2 * Driver for MT9M111/MT9M112/MT9M131 CMOS Image Sensor from Micron/Aptina
3 *
4 * Copyright (C) 2008, Robert Jarzmik <robert.jarzmik@free.fr>
5 *
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.
9 */
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>
16
17 #include <media/v4l2-common.h>
18 #include <media/v4l2-chip-ident.h>
19 #include <media/soc_camera.h>
20
21 /*
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()
25 */
26
27 /*
28 * Sensor core register addresses (0x000..0x0ff)
29 */
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
55
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)
65
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)
84
85 /*
86 * Colorpipe register addresses (0x100..0x1ff)
87 */
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
98
99 #define MT9M111_OUTPUT_FORMAT_CTRL2_A 0x13a
100 #define MT9M111_OUTPUT_FORMAT_CTRL2_B 0x19b
101
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)
122
123 /*
124 * Camera control register addresses (0x200..0x2ff not implemented)
125 */
126
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, \
132 (val), (mask))
133
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
138
139 /* MT9M111 has only one fixed colorspace per pixelcode */
140 struct mt9m111_datafmt {
141 enum v4l2_mbus_pixelcode code;
142 enum v4l2_colorspace colorspace;
143 };
144
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,
148 int n)
149 {
150 int i;
151 for (i = 0; i < n; i++)
152 if (fmt[i].code == code)
153 return fmt + i;
154
155 return NULL;
156 }
157
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},
171 };
172
173 enum mt9m111_context {
174 HIGHPOWER = 0,
175 LOWPOWER,
176 };
177
178 struct mt9m111 {
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 */
185 int power_count;
186 const struct mt9m111_datafmt *fmt;
187 int lastpage; /* PageMap cache value */
188 unsigned int gain;
189 unsigned char autoexposure;
190 unsigned char datawidth;
191 unsigned int powered:1;
192 unsigned int hflip:1;
193 unsigned int vflip:1;
194 unsigned int autowhitebalance:1;
195 };
196
197 static struct mt9m111 *to_mt9m111(const struct i2c_client *client)
198 {
199 return container_of(i2c_get_clientdata(client), struct mt9m111, subdev);
200 }
201
202 static int reg_page_map_set(struct i2c_client *client, const u16 reg)
203 {
204 int ret;
205 u16 page;
206 struct mt9m111 *mt9m111 = to_mt9m111(client);
207
208 page = (reg >> 8);
209 if (page == mt9m111->lastpage)
210 return 0;
211 if (page > 2)
212 return -EINVAL;
213
214 ret = i2c_smbus_write_word_data(client, MT9M111_PAGE_MAP, swab16(page));
215 if (!ret)
216 mt9m111->lastpage = page;
217 return ret;
218 }
219
220 static int mt9m111_reg_read(struct i2c_client *client, const u16 reg)
221 {
222 int ret;
223
224 ret = reg_page_map_set(client, reg);
225 if (!ret)
226 ret = swab16(i2c_smbus_read_word_data(client, reg & 0xff));
227
228 dev_dbg(&client->dev, "read reg.%03x -> %04x\n", reg, ret);
229 return ret;
230 }
231
232 static int mt9m111_reg_write(struct i2c_client *client, const u16 reg,
233 const u16 data)
234 {
235 int ret;
236
237 ret = reg_page_map_set(client, reg);
238 if (!ret)
239 ret = i2c_smbus_write_word_data(client, reg & 0xff,
240 swab16(data));
241 dev_dbg(&client->dev, "write reg.%03x = %04x -> %d\n", reg, data, ret);
242 return ret;
243 }
244
245 static int mt9m111_reg_set(struct i2c_client *client, const u16 reg,
246 const u16 data)
247 {
248 int ret;
249
250 ret = mt9m111_reg_read(client, reg);
251 if (ret >= 0)
252 ret = mt9m111_reg_write(client, reg, ret | data);
253 return ret;
254 }
255
256 static int mt9m111_reg_clear(struct i2c_client *client, const u16 reg,
257 const u16 data)
258 {
259 int ret;
260
261 ret = mt9m111_reg_read(client, reg);
262 if (ret >= 0)
263 ret = mt9m111_reg_write(client, reg, ret & ~data);
264 return ret;
265 }
266
267 static int mt9m111_reg_mask(struct i2c_client *client, const u16 reg,
268 const u16 data, const u16 mask)
269 {
270 int ret;
271
272 ret = mt9m111_reg_read(client, reg);
273 if (ret >= 0)
274 ret = mt9m111_reg_write(client, reg, (ret & ~mask) | data);
275 return ret;
276 }
277
278 static int mt9m111_set_context(struct mt9m111 *mt9m111,
279 enum mt9m111_context ctxt)
280 {
281 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
282 int valB = MT9M111_CTXT_CTRL_RESTART | MT9M111_CTXT_CTRL_DEFECTCOR_B
283 | MT9M111_CTXT_CTRL_RESIZE_B | MT9M111_CTXT_CTRL_CTRL2_B
284 | MT9M111_CTXT_CTRL_GAMMA_B | MT9M111_CTXT_CTRL_READ_MODE_B
285 | MT9M111_CTXT_CTRL_VBLANK_SEL_B
286 | MT9M111_CTXT_CTRL_HBLANK_SEL_B;
287 int valA = MT9M111_CTXT_CTRL_RESTART;
288
289 if (ctxt == HIGHPOWER)
290 return reg_write(CONTEXT_CONTROL, valB);
291 else
292 return reg_write(CONTEXT_CONTROL, valA);
293 }
294
295 static int mt9m111_setup_rect(struct mt9m111 *mt9m111,
296 struct v4l2_rect *rect)
297 {
298 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
299 int ret, is_raw_format;
300 int width = rect->width;
301 int height = rect->height;
302
303 if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
304 mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE)
305 is_raw_format = 1;
306 else
307 is_raw_format = 0;
308
309 ret = reg_write(COLUMN_START, rect->left);
310 if (!ret)
311 ret = reg_write(ROW_START, rect->top);
312
313 if (is_raw_format) {
314 if (!ret)
315 ret = reg_write(WINDOW_WIDTH, width);
316 if (!ret)
317 ret = reg_write(WINDOW_HEIGHT, height);
318 } else {
319 if (!ret)
320 ret = reg_write(REDUCER_XZOOM_B, MT9M111_MAX_WIDTH);
321 if (!ret)
322 ret = reg_write(REDUCER_YZOOM_B, MT9M111_MAX_HEIGHT);
323 if (!ret)
324 ret = reg_write(REDUCER_XSIZE_B, width);
325 if (!ret)
326 ret = reg_write(REDUCER_YSIZE_B, height);
327 if (!ret)
328 ret = reg_write(REDUCER_XZOOM_A, MT9M111_MAX_WIDTH);
329 if (!ret)
330 ret = reg_write(REDUCER_YZOOM_A, MT9M111_MAX_HEIGHT);
331 if (!ret)
332 ret = reg_write(REDUCER_XSIZE_A, width);
333 if (!ret)
334 ret = reg_write(REDUCER_YSIZE_A, height);
335 }
336
337 return ret;
338 }
339
340 static int mt9m111_enable(struct mt9m111 *mt9m111)
341 {
342 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
343 int ret;
344
345 ret = reg_set(RESET, MT9M111_RESET_CHIP_ENABLE);
346 if (!ret)
347 mt9m111->powered = 1;
348 return ret;
349 }
350
351 static int mt9m111_reset(struct mt9m111 *mt9m111)
352 {
353 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
354 int ret;
355
356 ret = reg_set(RESET, MT9M111_RESET_RESET_MODE);
357 if (!ret)
358 ret = reg_set(RESET, MT9M111_RESET_RESET_SOC);
359 if (!ret)
360 ret = reg_clear(RESET, MT9M111_RESET_RESET_MODE
361 | MT9M111_RESET_RESET_SOC);
362
363 return ret;
364 }
365
366 static unsigned long mt9m111_query_bus_param(struct soc_camera_device *icd)
367 {
368 struct soc_camera_link *icl = to_soc_camera_link(icd);
369 unsigned long flags = SOCAM_MASTER | SOCAM_PCLK_SAMPLE_RISING |
370 SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH |
371 SOCAM_DATA_ACTIVE_HIGH | SOCAM_DATAWIDTH_8;
372
373 return soc_camera_apply_sensor_flags(icl, flags);
374 }
375
376 static int mt9m111_set_bus_param(struct soc_camera_device *icd, unsigned long f)
377 {
378 return 0;
379 }
380
381 static int mt9m111_make_rect(struct mt9m111 *mt9m111,
382 struct v4l2_rect *rect)
383 {
384 if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
385 mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE) {
386 /* Bayer format - even size lengths */
387 rect->width = ALIGN(rect->width, 2);
388 rect->height = ALIGN(rect->height, 2);
389 /* Let the user play with the starting pixel */
390 }
391
392 /* FIXME: the datasheet doesn't specify minimum sizes */
393 soc_camera_limit_side(&rect->left, &rect->width,
394 MT9M111_MIN_DARK_COLS, 2, MT9M111_MAX_WIDTH);
395
396 soc_camera_limit_side(&rect->top, &rect->height,
397 MT9M111_MIN_DARK_ROWS, 2, MT9M111_MAX_HEIGHT);
398
399 return mt9m111_setup_rect(mt9m111, rect);
400 }
401
402 static int mt9m111_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
403 {
404 struct v4l2_rect rect = a->c;
405 struct i2c_client *client = v4l2_get_subdevdata(sd);
406 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
407 int ret;
408
409 dev_dbg(&client->dev, "%s left=%d, top=%d, width=%d, height=%d\n",
410 __func__, rect.left, rect.top, rect.width, rect.height);
411
412 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
413 return -EINVAL;
414
415 ret = mt9m111_make_rect(mt9m111, &rect);
416 if (!ret)
417 mt9m111->rect = rect;
418 return ret;
419 }
420
421 static int mt9m111_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
422 {
423 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
424
425 a->c = mt9m111->rect;
426 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
427
428 return 0;
429 }
430
431 static int mt9m111_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
432 {
433 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
434 return -EINVAL;
435
436 a->bounds.left = MT9M111_MIN_DARK_COLS;
437 a->bounds.top = MT9M111_MIN_DARK_ROWS;
438 a->bounds.width = MT9M111_MAX_WIDTH;
439 a->bounds.height = MT9M111_MAX_HEIGHT;
440 a->defrect = a->bounds;
441 a->pixelaspect.numerator = 1;
442 a->pixelaspect.denominator = 1;
443
444 return 0;
445 }
446
447 static int mt9m111_g_fmt(struct v4l2_subdev *sd,
448 struct v4l2_mbus_framefmt *mf)
449 {
450 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
451
452 mf->width = mt9m111->rect.width;
453 mf->height = mt9m111->rect.height;
454 mf->code = mt9m111->fmt->code;
455 mf->colorspace = mt9m111->fmt->colorspace;
456 mf->field = V4L2_FIELD_NONE;
457
458 return 0;
459 }
460
461 static int mt9m111_set_pixfmt(struct mt9m111 *mt9m111,
462 enum v4l2_mbus_pixelcode code)
463 {
464 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
465 u16 data_outfmt2, mask_outfmt2 = MT9M111_OUTFMT_PROCESSED_BAYER |
466 MT9M111_OUTFMT_BYPASS_IFP | MT9M111_OUTFMT_RGB |
467 MT9M111_OUTFMT_RGB565 | MT9M111_OUTFMT_RGB555 |
468 MT9M111_OUTFMT_RGB444x | MT9M111_OUTFMT_RGBx444 |
469 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
470 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
471 int ret;
472
473 switch (code) {
474 case V4L2_MBUS_FMT_SBGGR8_1X8:
475 data_outfmt2 = MT9M111_OUTFMT_PROCESSED_BAYER |
476 MT9M111_OUTFMT_RGB;
477 break;
478 case V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE:
479 data_outfmt2 = MT9M111_OUTFMT_BYPASS_IFP | MT9M111_OUTFMT_RGB;
480 break;
481 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE:
482 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB555 |
483 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
484 break;
485 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE:
486 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB555;
487 break;
488 case V4L2_MBUS_FMT_RGB565_2X8_LE:
489 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
490 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
491 break;
492 case V4L2_MBUS_FMT_RGB565_2X8_BE:
493 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565;
494 break;
495 case V4L2_MBUS_FMT_BGR565_2X8_BE:
496 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
497 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
498 break;
499 case V4L2_MBUS_FMT_BGR565_2X8_LE:
500 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
501 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
502 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
503 break;
504 case V4L2_MBUS_FMT_UYVY8_2X8:
505 data_outfmt2 = 0;
506 break;
507 case V4L2_MBUS_FMT_VYUY8_2X8:
508 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
509 break;
510 case V4L2_MBUS_FMT_YUYV8_2X8:
511 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
512 break;
513 case V4L2_MBUS_FMT_YVYU8_2X8:
514 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
515 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
516 break;
517 default:
518 dev_err(&client->dev, "Pixel format not handled: %x\n", code);
519 return -EINVAL;
520 }
521
522 ret = reg_mask(OUTPUT_FORMAT_CTRL2_A, data_outfmt2,
523 mask_outfmt2);
524 if (!ret)
525 ret = reg_mask(OUTPUT_FORMAT_CTRL2_B, data_outfmt2,
526 mask_outfmt2);
527
528 return ret;
529 }
530
531 static int mt9m111_s_fmt(struct v4l2_subdev *sd,
532 struct v4l2_mbus_framefmt *mf)
533 {
534 struct i2c_client *client = v4l2_get_subdevdata(sd);
535 const struct mt9m111_datafmt *fmt;
536 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
537 struct v4l2_rect rect = {
538 .left = mt9m111->rect.left,
539 .top = mt9m111->rect.top,
540 .width = mf->width,
541 .height = mf->height,
542 };
543 int ret;
544
545 fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
546 ARRAY_SIZE(mt9m111_colour_fmts));
547 if (!fmt)
548 return -EINVAL;
549
550 dev_dbg(&client->dev,
551 "%s code=%x left=%d, top=%d, width=%d, height=%d\n", __func__,
552 mf->code, rect.left, rect.top, rect.width, rect.height);
553
554 ret = mt9m111_make_rect(mt9m111, &rect);
555 if (!ret)
556 ret = mt9m111_set_pixfmt(mt9m111, mf->code);
557 if (!ret) {
558 mt9m111->rect = rect;
559 mt9m111->fmt = fmt;
560 mf->colorspace = fmt->colorspace;
561 }
562
563 return ret;
564 }
565
566 static int mt9m111_try_fmt(struct v4l2_subdev *sd,
567 struct v4l2_mbus_framefmt *mf)
568 {
569 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
570 const struct mt9m111_datafmt *fmt;
571 bool bayer = mf->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
572 mf->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE;
573
574 fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
575 ARRAY_SIZE(mt9m111_colour_fmts));
576 if (!fmt) {
577 fmt = mt9m111->fmt;
578 mf->code = fmt->code;
579 }
580
581 /*
582 * With Bayer format enforce even side lengths, but let the user play
583 * with the starting pixel
584 */
585
586 if (mf->height > MT9M111_MAX_HEIGHT)
587 mf->height = MT9M111_MAX_HEIGHT;
588 else if (mf->height < 2)
589 mf->height = 2;
590 else if (bayer)
591 mf->height = ALIGN(mf->height, 2);
592
593 if (mf->width > MT9M111_MAX_WIDTH)
594 mf->width = MT9M111_MAX_WIDTH;
595 else if (mf->width < 2)
596 mf->width = 2;
597 else if (bayer)
598 mf->width = ALIGN(mf->width, 2);
599
600 mf->colorspace = fmt->colorspace;
601
602 return 0;
603 }
604
605 static int mt9m111_g_chip_ident(struct v4l2_subdev *sd,
606 struct v4l2_dbg_chip_ident *id)
607 {
608 struct i2c_client *client = v4l2_get_subdevdata(sd);
609 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
610
611 if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
612 return -EINVAL;
613
614 if (id->match.addr != client->addr)
615 return -ENODEV;
616
617 id->ident = mt9m111->model;
618 id->revision = 0;
619
620 return 0;
621 }
622
623 #ifdef CONFIG_VIDEO_ADV_DEBUG
624 static int mt9m111_g_register(struct v4l2_subdev *sd,
625 struct v4l2_dbg_register *reg)
626 {
627 struct i2c_client *client = v4l2_get_subdevdata(sd);
628 int val;
629
630 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
631 return -EINVAL;
632 if (reg->match.addr != client->addr)
633 return -ENODEV;
634
635 val = mt9m111_reg_read(client, reg->reg);
636 reg->size = 2;
637 reg->val = (u64)val;
638
639 if (reg->val > 0xffff)
640 return -EIO;
641
642 return 0;
643 }
644
645 static int mt9m111_s_register(struct v4l2_subdev *sd,
646 struct v4l2_dbg_register *reg)
647 {
648 struct i2c_client *client = v4l2_get_subdevdata(sd);
649
650 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
651 return -EINVAL;
652
653 if (reg->match.addr != client->addr)
654 return -ENODEV;
655
656 if (mt9m111_reg_write(client, reg->reg, reg->val) < 0)
657 return -EIO;
658
659 return 0;
660 }
661 #endif
662
663 static const struct v4l2_queryctrl mt9m111_controls[] = {
664 {
665 .id = V4L2_CID_VFLIP,
666 .type = V4L2_CTRL_TYPE_BOOLEAN,
667 .name = "Flip Verticaly",
668 .minimum = 0,
669 .maximum = 1,
670 .step = 1,
671 .default_value = 0,
672 }, {
673 .id = V4L2_CID_HFLIP,
674 .type = V4L2_CTRL_TYPE_BOOLEAN,
675 .name = "Flip Horizontaly",
676 .minimum = 0,
677 .maximum = 1,
678 .step = 1,
679 .default_value = 0,
680 }, { /* gain = 1/32*val (=>gain=1 if val==32) */
681 .id = V4L2_CID_GAIN,
682 .type = V4L2_CTRL_TYPE_INTEGER,
683 .name = "Gain",
684 .minimum = 0,
685 .maximum = 63 * 2 * 2,
686 .step = 1,
687 .default_value = 32,
688 .flags = V4L2_CTRL_FLAG_SLIDER,
689 }, {
690 .id = V4L2_CID_EXPOSURE_AUTO,
691 .type = V4L2_CTRL_TYPE_BOOLEAN,
692 .name = "Auto Exposure",
693 .minimum = 0,
694 .maximum = 1,
695 .step = 1,
696 .default_value = 1,
697 }
698 };
699
700 static struct soc_camera_ops mt9m111_ops = {
701 .query_bus_param = mt9m111_query_bus_param,
702 .set_bus_param = mt9m111_set_bus_param,
703 .controls = mt9m111_controls,
704 .num_controls = ARRAY_SIZE(mt9m111_controls),
705 };
706
707 static int mt9m111_set_flip(struct mt9m111 *mt9m111, int flip, int mask)
708 {
709 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
710 int ret;
711
712 if (mt9m111->context == HIGHPOWER) {
713 if (flip)
714 ret = reg_set(READ_MODE_B, mask);
715 else
716 ret = reg_clear(READ_MODE_B, mask);
717 } else {
718 if (flip)
719 ret = reg_set(READ_MODE_A, mask);
720 else
721 ret = reg_clear(READ_MODE_A, mask);
722 }
723
724 return ret;
725 }
726
727 static int mt9m111_get_global_gain(struct mt9m111 *mt9m111)
728 {
729 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
730 int data;
731
732 data = reg_read(GLOBAL_GAIN);
733 if (data >= 0)
734 return (data & 0x2f) * (1 << ((data >> 10) & 1)) *
735 (1 << ((data >> 9) & 1));
736 return data;
737 }
738
739 static int mt9m111_set_global_gain(struct mt9m111 *mt9m111, int gain)
740 {
741 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
742 u16 val;
743
744 if (gain > 63 * 2 * 2)
745 return -EINVAL;
746
747 mt9m111->gain = gain;
748 if ((gain >= 64 * 2) && (gain < 63 * 2 * 2))
749 val = (1 << 10) | (1 << 9) | (gain / 4);
750 else if ((gain >= 64) && (gain < 64 * 2))
751 val = (1 << 9) | (gain / 2);
752 else
753 val = gain;
754
755 return reg_write(GLOBAL_GAIN, val);
756 }
757
758 static int mt9m111_set_autoexposure(struct mt9m111 *mt9m111, int on)
759 {
760 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
761 int ret;
762
763 if (on)
764 ret = reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);
765 else
766 ret = reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);
767
768 if (!ret)
769 mt9m111->autoexposure = on;
770
771 return ret;
772 }
773
774 static int mt9m111_set_autowhitebalance(struct mt9m111 *mt9m111, int on)
775 {
776 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
777 int ret;
778
779 if (on)
780 ret = reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);
781 else
782 ret = reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);
783
784 if (!ret)
785 mt9m111->autowhitebalance = on;
786
787 return ret;
788 }
789
790 static int mt9m111_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
791 {
792 struct i2c_client *client = v4l2_get_subdevdata(sd);
793 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
794 int data;
795
796 switch (ctrl->id) {
797 case V4L2_CID_VFLIP:
798 if (mt9m111->context == HIGHPOWER)
799 data = reg_read(READ_MODE_B);
800 else
801 data = reg_read(READ_MODE_A);
802
803 if (data < 0)
804 return -EIO;
805 ctrl->value = !!(data & MT9M111_RMB_MIRROR_ROWS);
806 break;
807 case V4L2_CID_HFLIP:
808 if (mt9m111->context == HIGHPOWER)
809 data = reg_read(READ_MODE_B);
810 else
811 data = reg_read(READ_MODE_A);
812
813 if (data < 0)
814 return -EIO;
815 ctrl->value = !!(data & MT9M111_RMB_MIRROR_COLS);
816 break;
817 case V4L2_CID_GAIN:
818 data = mt9m111_get_global_gain(mt9m111);
819 if (data < 0)
820 return data;
821 ctrl->value = data;
822 break;
823 case V4L2_CID_EXPOSURE_AUTO:
824 ctrl->value = mt9m111->autoexposure;
825 break;
826 case V4L2_CID_AUTO_WHITE_BALANCE:
827 ctrl->value = mt9m111->autowhitebalance;
828 break;
829 }
830 return 0;
831 }
832
833 static int mt9m111_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
834 {
835 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
836 const struct v4l2_queryctrl *qctrl;
837 int ret;
838
839 qctrl = soc_camera_find_qctrl(&mt9m111_ops, ctrl->id);
840 if (!qctrl)
841 return -EINVAL;
842
843 switch (ctrl->id) {
844 case V4L2_CID_VFLIP:
845 mt9m111->vflip = ctrl->value;
846 ret = mt9m111_set_flip(mt9m111, ctrl->value,
847 MT9M111_RMB_MIRROR_ROWS);
848 break;
849 case V4L2_CID_HFLIP:
850 mt9m111->hflip = ctrl->value;
851 ret = mt9m111_set_flip(mt9m111, ctrl->value,
852 MT9M111_RMB_MIRROR_COLS);
853 break;
854 case V4L2_CID_GAIN:
855 ret = mt9m111_set_global_gain(mt9m111, ctrl->value);
856 break;
857 case V4L2_CID_EXPOSURE_AUTO:
858 ret = mt9m111_set_autoexposure(mt9m111, ctrl->value);
859 break;
860 case V4L2_CID_AUTO_WHITE_BALANCE:
861 ret = mt9m111_set_autowhitebalance(mt9m111, ctrl->value);
862 break;
863 default:
864 ret = -EINVAL;
865 }
866
867 return ret;
868 }
869
870 static int mt9m111_suspend(struct mt9m111 *mt9m111)
871 {
872 mt9m111->gain = mt9m111_get_global_gain(mt9m111);
873
874 return 0;
875 }
876
877 static void mt9m111_restore_state(struct mt9m111 *mt9m111)
878 {
879 mt9m111_set_context(mt9m111, mt9m111->context);
880 mt9m111_set_pixfmt(mt9m111, mt9m111->fmt->code);
881 mt9m111_setup_rect(mt9m111, &mt9m111->rect);
882 mt9m111_set_flip(mt9m111, mt9m111->hflip, MT9M111_RMB_MIRROR_COLS);
883 mt9m111_set_flip(mt9m111, mt9m111->vflip, MT9M111_RMB_MIRROR_ROWS);
884 mt9m111_set_global_gain(mt9m111, mt9m111->gain);
885 mt9m111_set_autoexposure(mt9m111, mt9m111->autoexposure);
886 mt9m111_set_autowhitebalance(mt9m111, mt9m111->autowhitebalance);
887 }
888
889 static int mt9m111_resume(struct mt9m111 *mt9m111)
890 {
891 int ret = 0;
892
893 if (mt9m111->powered) {
894 ret = mt9m111_enable(mt9m111);
895 if (!ret)
896 ret = mt9m111_reset(mt9m111);
897 if (!ret)
898 mt9m111_restore_state(mt9m111);
899 }
900 return ret;
901 }
902
903 static int mt9m111_init(struct mt9m111 *mt9m111)
904 {
905 struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
906 int ret;
907
908 mt9m111->context = HIGHPOWER;
909 ret = mt9m111_enable(mt9m111);
910 if (!ret)
911 ret = mt9m111_reset(mt9m111);
912 if (!ret)
913 ret = mt9m111_set_context(mt9m111, mt9m111->context);
914 if (!ret)
915 ret = mt9m111_set_autoexposure(mt9m111, mt9m111->autoexposure);
916 if (ret)
917 dev_err(&client->dev, "mt9m111 init failed: %d\n", ret);
918 return ret;
919 }
920
921 /*
922 * Interface active, can use i2c. If it fails, it can indeed mean, that
923 * this wasn't our capture interface, so, we wait for the right one
924 */
925 static int mt9m111_video_probe(struct soc_camera_device *icd,
926 struct i2c_client *client)
927 {
928 struct mt9m111 *mt9m111 = to_mt9m111(client);
929 s32 data;
930 int ret;
931
932 /* We must have a parent by now. And it cannot be a wrong one. */
933 BUG_ON(!icd->parent ||
934 to_soc_camera_host(icd->parent)->nr != icd->iface);
935
936 mt9m111->lastpage = -1;
937
938 mt9m111->autoexposure = 1;
939 mt9m111->autowhitebalance = 1;
940
941 data = reg_read(CHIP_VERSION);
942
943 switch (data) {
944 case 0x143a: /* MT9M111 or MT9M131 */
945 mt9m111->model = V4L2_IDENT_MT9M111;
946 dev_info(&client->dev,
947 "Detected a MT9M111/MT9M131 chip ID %x\n", data);
948 break;
949 case 0x148c: /* MT9M112 */
950 mt9m111->model = V4L2_IDENT_MT9M112;
951 dev_info(&client->dev, "Detected a MT9M112 chip ID %x\n", data);
952 break;
953 default:
954 ret = -ENODEV;
955 dev_err(&client->dev,
956 "No MT9M111/MT9M112/MT9M131 chip detected register read %x\n",
957 data);
958 goto ei2c;
959 }
960
961 ret = mt9m111_init(mt9m111);
962
963 ei2c:
964 return ret;
965 }
966
967 static int mt9m111_s_power(struct v4l2_subdev *sd, int on)
968 {
969 struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
970 struct i2c_client *client = v4l2_get_subdevdata(sd);
971 int ret = 0;
972
973 mutex_lock(&mt9m111->power_lock);
974
975 /*
976 * If the power count is modified from 0 to != 0 or from != 0 to 0,
977 * update the power state.
978 */
979 if (mt9m111->power_count == !on) {
980 if (on) {
981 ret = mt9m111_resume(mt9m111);
982 if (ret) {
983 dev_err(&client->dev,
984 "Failed to resume the sensor: %d\n", ret);
985 goto out;
986 }
987 } else {
988 mt9m111_suspend(mt9m111);
989 }
990 }
991
992 /* Update the power count. */
993 mt9m111->power_count += on ? 1 : -1;
994 WARN_ON(mt9m111->power_count < 0);
995
996 out:
997 mutex_unlock(&mt9m111->power_lock);
998 return ret;
999 }
1000
1001 static struct v4l2_subdev_core_ops mt9m111_subdev_core_ops = {
1002 .g_ctrl = mt9m111_g_ctrl,
1003 .s_ctrl = mt9m111_s_ctrl,
1004 .g_chip_ident = mt9m111_g_chip_ident,
1005 .s_power = mt9m111_s_power,
1006 #ifdef CONFIG_VIDEO_ADV_DEBUG
1007 .g_register = mt9m111_g_register,
1008 .s_register = mt9m111_s_register,
1009 #endif
1010 };
1011
1012 static int mt9m111_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
1013 enum v4l2_mbus_pixelcode *code)
1014 {
1015 if (index >= ARRAY_SIZE(mt9m111_colour_fmts))
1016 return -EINVAL;
1017
1018 *code = mt9m111_colour_fmts[index].code;
1019 return 0;
1020 }
1021
1022 static struct v4l2_subdev_video_ops mt9m111_subdev_video_ops = {
1023 .s_mbus_fmt = mt9m111_s_fmt,
1024 .g_mbus_fmt = mt9m111_g_fmt,
1025 .try_mbus_fmt = mt9m111_try_fmt,
1026 .s_crop = mt9m111_s_crop,
1027 .g_crop = mt9m111_g_crop,
1028 .cropcap = mt9m111_cropcap,
1029 .enum_mbus_fmt = mt9m111_enum_fmt,
1030 };
1031
1032 static struct v4l2_subdev_ops mt9m111_subdev_ops = {
1033 .core = &mt9m111_subdev_core_ops,
1034 .video = &mt9m111_subdev_video_ops,
1035 };
1036
1037 static int mt9m111_probe(struct i2c_client *client,
1038 const struct i2c_device_id *did)
1039 {
1040 struct mt9m111 *mt9m111;
1041 struct soc_camera_device *icd = client->dev.platform_data;
1042 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
1043 struct soc_camera_link *icl;
1044 int ret;
1045
1046 if (!icd) {
1047 dev_err(&client->dev, "mt9m111: soc-camera data missing!\n");
1048 return -EINVAL;
1049 }
1050
1051 icl = to_soc_camera_link(icd);
1052 if (!icl) {
1053 dev_err(&client->dev, "mt9m111: driver needs platform data\n");
1054 return -EINVAL;
1055 }
1056
1057 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
1058 dev_warn(&adapter->dev,
1059 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
1060 return -EIO;
1061 }
1062
1063 mt9m111 = kzalloc(sizeof(struct mt9m111), GFP_KERNEL);
1064 if (!mt9m111)
1065 return -ENOMEM;
1066
1067 v4l2_i2c_subdev_init(&mt9m111->subdev, client, &mt9m111_subdev_ops);
1068
1069 /* Second stage probe - when a capture adapter is there */
1070 icd->ops = &mt9m111_ops;
1071
1072 mt9m111->rect.left = MT9M111_MIN_DARK_COLS;
1073 mt9m111->rect.top = MT9M111_MIN_DARK_ROWS;
1074 mt9m111->rect.width = MT9M111_MAX_WIDTH;
1075 mt9m111->rect.height = MT9M111_MAX_HEIGHT;
1076 mt9m111->fmt = &mt9m111_colour_fmts[0];
1077
1078 ret = mt9m111_video_probe(icd, client);
1079 if (ret) {
1080 icd->ops = NULL;
1081 kfree(mt9m111);
1082 }
1083
1084 return ret;
1085 }
1086
1087 static int mt9m111_remove(struct i2c_client *client)
1088 {
1089 struct mt9m111 *mt9m111 = to_mt9m111(client);
1090 struct soc_camera_device *icd = client->dev.platform_data;
1091
1092 icd->ops = NULL;
1093 kfree(mt9m111);
1094
1095 return 0;
1096 }
1097
1098 static const struct i2c_device_id mt9m111_id[] = {
1099 { "mt9m111", 0 },
1100 { }
1101 };
1102 MODULE_DEVICE_TABLE(i2c, mt9m111_id);
1103
1104 static struct i2c_driver mt9m111_i2c_driver = {
1105 .driver = {
1106 .name = "mt9m111",
1107 },
1108 .probe = mt9m111_probe,
1109 .remove = mt9m111_remove,
1110 .id_table = mt9m111_id,
1111 };
1112
1113 static int __init mt9m111_mod_init(void)
1114 {
1115 return i2c_add_driver(&mt9m111_i2c_driver);
1116 }
1117
1118 static void __exit mt9m111_mod_exit(void)
1119 {
1120 i2c_del_driver(&mt9m111_i2c_driver);
1121 }
1122
1123 module_init(mt9m111_mod_init);
1124 module_exit(mt9m111_mod_exit);
1125
1126 MODULE_DESCRIPTION("Micron/Aptina MT9M111/MT9M112/MT9M131 Camera driver");
1127 MODULE_AUTHOR("Robert Jarzmik");
1128 MODULE_LICENSE("GPL");