]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/media/video/mt9m111.c
Merge tag 'v3.2-rc2' into staging/for_v3.3
[karo-tx-linux.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 #include <linux/v4l2-mediabus.h>
17 #include <linux/module.h>
18
19 #include <media/soc_camera.h>
20 #include <media/v4l2-common.h>
21 #include <media/v4l2-ctrls.h>
22 #include <media/v4l2-chip-ident.h>
23
24 /*
25  * MT9M111, MT9M112 and MT9M131:
26  * i2c address is 0x48 or 0x5d (depending on SADDR pin)
27  * The platform has to define i2c_board_info and call i2c_register_board_info()
28  */
29
30 /*
31  * Sensor core register addresses (0x000..0x0ff)
32  */
33 #define MT9M111_CHIP_VERSION            0x000
34 #define MT9M111_ROW_START               0x001
35 #define MT9M111_COLUMN_START            0x002
36 #define MT9M111_WINDOW_HEIGHT           0x003
37 #define MT9M111_WINDOW_WIDTH            0x004
38 #define MT9M111_HORIZONTAL_BLANKING_B   0x005
39 #define MT9M111_VERTICAL_BLANKING_B     0x006
40 #define MT9M111_HORIZONTAL_BLANKING_A   0x007
41 #define MT9M111_VERTICAL_BLANKING_A     0x008
42 #define MT9M111_SHUTTER_WIDTH           0x009
43 #define MT9M111_ROW_SPEED               0x00a
44 #define MT9M111_EXTRA_DELAY             0x00b
45 #define MT9M111_SHUTTER_DELAY           0x00c
46 #define MT9M111_RESET                   0x00d
47 #define MT9M111_READ_MODE_B             0x020
48 #define MT9M111_READ_MODE_A             0x021
49 #define MT9M111_FLASH_CONTROL           0x023
50 #define MT9M111_GREEN1_GAIN             0x02b
51 #define MT9M111_BLUE_GAIN               0x02c
52 #define MT9M111_RED_GAIN                0x02d
53 #define MT9M111_GREEN2_GAIN             0x02e
54 #define MT9M111_GLOBAL_GAIN             0x02f
55 #define MT9M111_CONTEXT_CONTROL         0x0c8
56 #define MT9M111_PAGE_MAP                0x0f0
57 #define MT9M111_BYTE_WISE_ADDR          0x0f1
58
59 #define MT9M111_RESET_SYNC_CHANGES      (1 << 15)
60 #define MT9M111_RESET_RESTART_BAD_FRAME (1 << 9)
61 #define MT9M111_RESET_SHOW_BAD_FRAMES   (1 << 8)
62 #define MT9M111_RESET_RESET_SOC         (1 << 5)
63 #define MT9M111_RESET_OUTPUT_DISABLE    (1 << 4)
64 #define MT9M111_RESET_CHIP_ENABLE       (1 << 3)
65 #define MT9M111_RESET_ANALOG_STANDBY    (1 << 2)
66 #define MT9M111_RESET_RESTART_FRAME     (1 << 1)
67 #define MT9M111_RESET_RESET_MODE        (1 << 0)
68
69 #define MT9M111_RM_FULL_POWER_RD        (0 << 10)
70 #define MT9M111_RM_LOW_POWER_RD         (1 << 10)
71 #define MT9M111_RM_COL_SKIP_4X          (1 << 5)
72 #define MT9M111_RM_ROW_SKIP_4X          (1 << 4)
73 #define MT9M111_RM_COL_SKIP_2X          (1 << 3)
74 #define MT9M111_RM_ROW_SKIP_2X          (1 << 2)
75 #define MT9M111_RMB_MIRROR_COLS         (1 << 1)
76 #define MT9M111_RMB_MIRROR_ROWS         (1 << 0)
77 #define MT9M111_CTXT_CTRL_RESTART       (1 << 15)
78 #define MT9M111_CTXT_CTRL_DEFECTCOR_B   (1 << 12)
79 #define MT9M111_CTXT_CTRL_RESIZE_B      (1 << 10)
80 #define MT9M111_CTXT_CTRL_CTRL2_B       (1 << 9)
81 #define MT9M111_CTXT_CTRL_GAMMA_B       (1 << 8)
82 #define MT9M111_CTXT_CTRL_XENON_EN      (1 << 7)
83 #define MT9M111_CTXT_CTRL_READ_MODE_B   (1 << 3)
84 #define MT9M111_CTXT_CTRL_LED_FLASH_EN  (1 << 2)
85 #define MT9M111_CTXT_CTRL_VBLANK_SEL_B  (1 << 1)
86 #define MT9M111_CTXT_CTRL_HBLANK_SEL_B  (1 << 0)
87
88 /*
89  * Colorpipe register addresses (0x100..0x1ff)
90  */
91 #define MT9M111_OPER_MODE_CTRL          0x106
92 #define MT9M111_OUTPUT_FORMAT_CTRL      0x108
93 #define MT9M111_REDUCER_XZOOM_B         0x1a0
94 #define MT9M111_REDUCER_XSIZE_B         0x1a1
95 #define MT9M111_REDUCER_YZOOM_B         0x1a3
96 #define MT9M111_REDUCER_YSIZE_B         0x1a4
97 #define MT9M111_REDUCER_XZOOM_A         0x1a6
98 #define MT9M111_REDUCER_XSIZE_A         0x1a7
99 #define MT9M111_REDUCER_YZOOM_A         0x1a9
100 #define MT9M111_REDUCER_YSIZE_A         0x1aa
101
102 #define MT9M111_OUTPUT_FORMAT_CTRL2_A   0x13a
103 #define MT9M111_OUTPUT_FORMAT_CTRL2_B   0x19b
104
105 #define MT9M111_OPMODE_AUTOEXPO_EN      (1 << 14)
106 #define MT9M111_OPMODE_AUTOWHITEBAL_EN  (1 << 1)
107 #define MT9M111_OUTFMT_FLIP_BAYER_COL   (1 << 9)
108 #define MT9M111_OUTFMT_FLIP_BAYER_ROW   (1 << 8)
109 #define MT9M111_OUTFMT_PROCESSED_BAYER  (1 << 14)
110 #define MT9M111_OUTFMT_BYPASS_IFP       (1 << 10)
111 #define MT9M111_OUTFMT_INV_PIX_CLOCK    (1 << 9)
112 #define MT9M111_OUTFMT_RGB              (1 << 8)
113 #define MT9M111_OUTFMT_RGB565           (0 << 6)
114 #define MT9M111_OUTFMT_RGB555           (1 << 6)
115 #define MT9M111_OUTFMT_RGB444x          (2 << 6)
116 #define MT9M111_OUTFMT_RGBx444          (3 << 6)
117 #define MT9M111_OUTFMT_TST_RAMP_OFF     (0 << 4)
118 #define MT9M111_OUTFMT_TST_RAMP_COL     (1 << 4)
119 #define MT9M111_OUTFMT_TST_RAMP_ROW     (2 << 4)
120 #define MT9M111_OUTFMT_TST_RAMP_FRAME   (3 << 4)
121 #define MT9M111_OUTFMT_SHIFT_3_UP       (1 << 3)
122 #define MT9M111_OUTFMT_AVG_CHROMA       (1 << 2)
123 #define MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN  (1 << 1)
124 #define MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B (1 << 0)
125
126 /*
127  * Camera control register addresses (0x200..0x2ff not implemented)
128  */
129
130 #define reg_read(reg) mt9m111_reg_read(client, MT9M111_##reg)
131 #define reg_write(reg, val) mt9m111_reg_write(client, MT9M111_##reg, (val))
132 #define reg_set(reg, val) mt9m111_reg_set(client, MT9M111_##reg, (val))
133 #define reg_clear(reg, val) mt9m111_reg_clear(client, MT9M111_##reg, (val))
134 #define reg_mask(reg, val, mask) mt9m111_reg_mask(client, MT9M111_##reg, \
135                 (val), (mask))
136
137 #define MT9M111_MIN_DARK_ROWS   8
138 #define MT9M111_MIN_DARK_COLS   26
139 #define MT9M111_MAX_HEIGHT      1024
140 #define MT9M111_MAX_WIDTH       1280
141
142 /* MT9M111 has only one fixed colorspace per pixelcode */
143 struct mt9m111_datafmt {
144         enum v4l2_mbus_pixelcode        code;
145         enum v4l2_colorspace            colorspace;
146 };
147
148 /* Find a data format by a pixel code in an array */
149 static const struct mt9m111_datafmt *mt9m111_find_datafmt(
150         enum v4l2_mbus_pixelcode code, const struct mt9m111_datafmt *fmt,
151         int n)
152 {
153         int i;
154         for (i = 0; i < n; i++)
155                 if (fmt[i].code == code)
156                         return fmt + i;
157
158         return NULL;
159 }
160
161 static const struct mt9m111_datafmt mt9m111_colour_fmts[] = {
162         {V4L2_MBUS_FMT_YUYV8_2X8, V4L2_COLORSPACE_JPEG},
163         {V4L2_MBUS_FMT_YVYU8_2X8, V4L2_COLORSPACE_JPEG},
164         {V4L2_MBUS_FMT_UYVY8_2X8, V4L2_COLORSPACE_JPEG},
165         {V4L2_MBUS_FMT_VYUY8_2X8, V4L2_COLORSPACE_JPEG},
166         {V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE, V4L2_COLORSPACE_SRGB},
167         {V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE, V4L2_COLORSPACE_SRGB},
168         {V4L2_MBUS_FMT_RGB565_2X8_LE, V4L2_COLORSPACE_SRGB},
169         {V4L2_MBUS_FMT_RGB565_2X8_BE, V4L2_COLORSPACE_SRGB},
170         {V4L2_MBUS_FMT_BGR565_2X8_LE, V4L2_COLORSPACE_SRGB},
171         {V4L2_MBUS_FMT_BGR565_2X8_BE, V4L2_COLORSPACE_SRGB},
172         {V4L2_MBUS_FMT_SBGGR8_1X8, V4L2_COLORSPACE_SRGB},
173         {V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE, V4L2_COLORSPACE_SRGB},
174 };
175
176 enum mt9m111_context {
177         HIGHPOWER = 0,
178         LOWPOWER,
179 };
180
181 struct mt9m111 {
182         struct v4l2_subdev subdev;
183         struct v4l2_ctrl_handler hdl;
184         struct v4l2_ctrl *gain;
185         int model;      /* V4L2_IDENT_MT9M111 or V4L2_IDENT_MT9M112 code
186                          * from v4l2-chip-ident.h */
187         enum mt9m111_context context;
188         struct v4l2_rect rect;
189         struct mutex power_lock; /* lock to protect power_count */
190         int power_count;
191         const struct mt9m111_datafmt *fmt;
192         int lastpage;   /* PageMap cache value */
193         unsigned char datawidth;
194         unsigned int powered: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_swapped(client, MT9M111_PAGE_MAP, 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 = i2c_smbus_read_word_swapped(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_swapped(client, reg & 0xff, data);
240         dev_dbg(&client->dev, "write reg.%03x = %04x -> %d\n", reg, data, ret);
241         return ret;
242 }
243
244 static int mt9m111_reg_set(struct i2c_client *client, const u16 reg,
245                            const u16 data)
246 {
247         int ret;
248
249         ret = mt9m111_reg_read(client, reg);
250         if (ret >= 0)
251                 ret = mt9m111_reg_write(client, reg, ret | data);
252         return ret;
253 }
254
255 static int mt9m111_reg_clear(struct i2c_client *client, const u16 reg,
256                              const u16 data)
257 {
258         int ret;
259
260         ret = mt9m111_reg_read(client, reg);
261         if (ret >= 0)
262                 ret = mt9m111_reg_write(client, reg, ret & ~data);
263         return ret;
264 }
265
266 static int mt9m111_reg_mask(struct i2c_client *client, const u16 reg,
267                             const u16 data, const u16 mask)
268 {
269         int ret;
270
271         ret = mt9m111_reg_read(client, reg);
272         if (ret >= 0)
273                 ret = mt9m111_reg_write(client, reg, (ret & ~mask) | data);
274         return ret;
275 }
276
277 static int mt9m111_set_context(struct mt9m111 *mt9m111,
278                                enum mt9m111_context ctxt)
279 {
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;
287
288         if (ctxt == HIGHPOWER)
289                 return reg_write(CONTEXT_CONTROL, valB);
290         else
291                 return reg_write(CONTEXT_CONTROL, valA);
292 }
293
294 static int mt9m111_setup_rect(struct mt9m111 *mt9m111,
295                               struct v4l2_rect *rect)
296 {
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;
301
302         if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
303             mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE)
304                 is_raw_format = 1;
305         else
306                 is_raw_format = 0;
307
308         ret = reg_write(COLUMN_START, rect->left);
309         if (!ret)
310                 ret = reg_write(ROW_START, rect->top);
311
312         if (is_raw_format) {
313                 if (!ret)
314                         ret = reg_write(WINDOW_WIDTH, width);
315                 if (!ret)
316                         ret = reg_write(WINDOW_HEIGHT, height);
317         } else {
318                 if (!ret)
319                         ret = reg_write(REDUCER_XZOOM_B, MT9M111_MAX_WIDTH);
320                 if (!ret)
321                         ret = reg_write(REDUCER_YZOOM_B, MT9M111_MAX_HEIGHT);
322                 if (!ret)
323                         ret = reg_write(REDUCER_XSIZE_B, width);
324                 if (!ret)
325                         ret = reg_write(REDUCER_YSIZE_B, height);
326                 if (!ret)
327                         ret = reg_write(REDUCER_XZOOM_A, MT9M111_MAX_WIDTH);
328                 if (!ret)
329                         ret = reg_write(REDUCER_YZOOM_A, MT9M111_MAX_HEIGHT);
330                 if (!ret)
331                         ret = reg_write(REDUCER_XSIZE_A, width);
332                 if (!ret)
333                         ret = reg_write(REDUCER_YSIZE_A, height);
334         }
335
336         return ret;
337 }
338
339 static int mt9m111_enable(struct mt9m111 *mt9m111)
340 {
341         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
342         int ret;
343
344         ret = reg_set(RESET, MT9M111_RESET_CHIP_ENABLE);
345         if (!ret)
346                 mt9m111->powered = 1;
347         return ret;
348 }
349
350 static int mt9m111_reset(struct mt9m111 *mt9m111)
351 {
352         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
353         int ret;
354
355         ret = reg_set(RESET, MT9M111_RESET_RESET_MODE);
356         if (!ret)
357                 ret = reg_set(RESET, MT9M111_RESET_RESET_SOC);
358         if (!ret)
359                 ret = reg_clear(RESET, MT9M111_RESET_RESET_MODE
360                                 | MT9M111_RESET_RESET_SOC);
361
362         return ret;
363 }
364
365 static int mt9m111_make_rect(struct mt9m111 *mt9m111,
366                              struct v4l2_rect *rect)
367 {
368         if (mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
369             mt9m111->fmt->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE) {
370                 /* Bayer format - even size lengths */
371                 rect->width     = ALIGN(rect->width, 2);
372                 rect->height    = ALIGN(rect->height, 2);
373                 /* Let the user play with the starting pixel */
374         }
375
376         /* FIXME: the datasheet doesn't specify minimum sizes */
377         soc_camera_limit_side(&rect->left, &rect->width,
378                      MT9M111_MIN_DARK_COLS, 2, MT9M111_MAX_WIDTH);
379
380         soc_camera_limit_side(&rect->top, &rect->height,
381                      MT9M111_MIN_DARK_ROWS, 2, MT9M111_MAX_HEIGHT);
382
383         return mt9m111_setup_rect(mt9m111, rect);
384 }
385
386 static int mt9m111_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
387 {
388         struct v4l2_rect rect = a->c;
389         struct i2c_client *client = v4l2_get_subdevdata(sd);
390         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
391         int ret;
392
393         dev_dbg(&client->dev, "%s left=%d, top=%d, width=%d, height=%d\n",
394                 __func__, rect.left, rect.top, rect.width, rect.height);
395
396         if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
397                 return -EINVAL;
398
399         ret = mt9m111_make_rect(mt9m111, &rect);
400         if (!ret)
401                 mt9m111->rect = rect;
402         return ret;
403 }
404
405 static int mt9m111_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
406 {
407         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
408
409         a->c    = mt9m111->rect;
410         a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
411
412         return 0;
413 }
414
415 static int mt9m111_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
416 {
417         if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
418                 return -EINVAL;
419
420         a->bounds.left                  = MT9M111_MIN_DARK_COLS;
421         a->bounds.top                   = MT9M111_MIN_DARK_ROWS;
422         a->bounds.width                 = MT9M111_MAX_WIDTH;
423         a->bounds.height                = MT9M111_MAX_HEIGHT;
424         a->defrect                      = a->bounds;
425         a->pixelaspect.numerator        = 1;
426         a->pixelaspect.denominator      = 1;
427
428         return 0;
429 }
430
431 static int mt9m111_g_fmt(struct v4l2_subdev *sd,
432                          struct v4l2_mbus_framefmt *mf)
433 {
434         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
435
436         mf->width       = mt9m111->rect.width;
437         mf->height      = mt9m111->rect.height;
438         mf->code        = mt9m111->fmt->code;
439         mf->colorspace  = mt9m111->fmt->colorspace;
440         mf->field       = V4L2_FIELD_NONE;
441
442         return 0;
443 }
444
445 static int mt9m111_set_pixfmt(struct mt9m111 *mt9m111,
446                               enum v4l2_mbus_pixelcode code)
447 {
448         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
449         u16 data_outfmt2, mask_outfmt2 = MT9M111_OUTFMT_PROCESSED_BAYER |
450                 MT9M111_OUTFMT_BYPASS_IFP | MT9M111_OUTFMT_RGB |
451                 MT9M111_OUTFMT_RGB565 | MT9M111_OUTFMT_RGB555 |
452                 MT9M111_OUTFMT_RGB444x | MT9M111_OUTFMT_RGBx444 |
453                 MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
454                 MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
455         int ret;
456
457         switch (code) {
458         case V4L2_MBUS_FMT_SBGGR8_1X8:
459                 data_outfmt2 = MT9M111_OUTFMT_PROCESSED_BAYER |
460                         MT9M111_OUTFMT_RGB;
461                 break;
462         case V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE:
463                 data_outfmt2 = MT9M111_OUTFMT_BYPASS_IFP | MT9M111_OUTFMT_RGB;
464                 break;
465         case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE:
466                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB555 |
467                         MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
468                 break;
469         case V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE:
470                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB555;
471                 break;
472         case V4L2_MBUS_FMT_RGB565_2X8_LE:
473                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
474                         MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
475                 break;
476         case V4L2_MBUS_FMT_RGB565_2X8_BE:
477                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565;
478                 break;
479         case V4L2_MBUS_FMT_BGR565_2X8_BE:
480                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
481                         MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
482                 break;
483         case V4L2_MBUS_FMT_BGR565_2X8_LE:
484                 data_outfmt2 = MT9M111_OUTFMT_RGB | MT9M111_OUTFMT_RGB565 |
485                         MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
486                         MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
487                 break;
488         case V4L2_MBUS_FMT_UYVY8_2X8:
489                 data_outfmt2 = 0;
490                 break;
491         case V4L2_MBUS_FMT_VYUY8_2X8:
492                 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
493                 break;
494         case V4L2_MBUS_FMT_YUYV8_2X8:
495                 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN;
496                 break;
497         case V4L2_MBUS_FMT_YVYU8_2X8:
498                 data_outfmt2 = MT9M111_OUTFMT_SWAP_YCbCr_C_Y_RGB_EVEN |
499                         MT9M111_OUTFMT_SWAP_YCbCr_Cb_Cr_RGB_R_B;
500                 break;
501         default:
502                 dev_err(&client->dev, "Pixel format not handled: %x\n", code);
503                 return -EINVAL;
504         }
505
506         ret = reg_mask(OUTPUT_FORMAT_CTRL2_A, data_outfmt2,
507                        mask_outfmt2);
508         if (!ret)
509                 ret = reg_mask(OUTPUT_FORMAT_CTRL2_B, data_outfmt2,
510                                mask_outfmt2);
511
512         return ret;
513 }
514
515 static int mt9m111_s_fmt(struct v4l2_subdev *sd,
516                          struct v4l2_mbus_framefmt *mf)
517 {
518         struct i2c_client *client = v4l2_get_subdevdata(sd);
519         const struct mt9m111_datafmt *fmt;
520         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
521         struct v4l2_rect rect = {
522                 .left   = mt9m111->rect.left,
523                 .top    = mt9m111->rect.top,
524                 .width  = mf->width,
525                 .height = mf->height,
526         };
527         int ret;
528
529         fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
530                                    ARRAY_SIZE(mt9m111_colour_fmts));
531         if (!fmt)
532                 return -EINVAL;
533
534         dev_dbg(&client->dev,
535                 "%s code=%x left=%d, top=%d, width=%d, height=%d\n", __func__,
536                 mf->code, rect.left, rect.top, rect.width, rect.height);
537
538         ret = mt9m111_make_rect(mt9m111, &rect);
539         if (!ret)
540                 ret = mt9m111_set_pixfmt(mt9m111, mf->code);
541         if (!ret) {
542                 mt9m111->rect   = rect;
543                 mt9m111->fmt    = fmt;
544                 mf->colorspace  = fmt->colorspace;
545         }
546
547         return ret;
548 }
549
550 static int mt9m111_try_fmt(struct v4l2_subdev *sd,
551                            struct v4l2_mbus_framefmt *mf)
552 {
553         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
554         const struct mt9m111_datafmt *fmt;
555         bool bayer = mf->code == V4L2_MBUS_FMT_SBGGR8_1X8 ||
556                 mf->code == V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE;
557
558         fmt = mt9m111_find_datafmt(mf->code, mt9m111_colour_fmts,
559                                    ARRAY_SIZE(mt9m111_colour_fmts));
560         if (!fmt) {
561                 fmt = mt9m111->fmt;
562                 mf->code = fmt->code;
563         }
564
565         /*
566          * With Bayer format enforce even side lengths, but let the user play
567          * with the starting pixel
568          */
569
570         if (mf->height > MT9M111_MAX_HEIGHT)
571                 mf->height = MT9M111_MAX_HEIGHT;
572         else if (mf->height < 2)
573                 mf->height = 2;
574         else if (bayer)
575                 mf->height = ALIGN(mf->height, 2);
576
577         if (mf->width > MT9M111_MAX_WIDTH)
578                 mf->width = MT9M111_MAX_WIDTH;
579         else if (mf->width < 2)
580                 mf->width = 2;
581         else if (bayer)
582                 mf->width = ALIGN(mf->width, 2);
583
584         mf->colorspace = fmt->colorspace;
585
586         return 0;
587 }
588
589 static int mt9m111_g_chip_ident(struct v4l2_subdev *sd,
590                                 struct v4l2_dbg_chip_ident *id)
591 {
592         struct i2c_client *client = v4l2_get_subdevdata(sd);
593         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
594
595         if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
596                 return -EINVAL;
597
598         if (id->match.addr != client->addr)
599                 return -ENODEV;
600
601         id->ident       = mt9m111->model;
602         id->revision    = 0;
603
604         return 0;
605 }
606
607 #ifdef CONFIG_VIDEO_ADV_DEBUG
608 static int mt9m111_g_register(struct v4l2_subdev *sd,
609                               struct v4l2_dbg_register *reg)
610 {
611         struct i2c_client *client = v4l2_get_subdevdata(sd);
612         int val;
613
614         if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
615                 return -EINVAL;
616         if (reg->match.addr != client->addr)
617                 return -ENODEV;
618
619         val = mt9m111_reg_read(client, reg->reg);
620         reg->size = 2;
621         reg->val = (u64)val;
622
623         if (reg->val > 0xffff)
624                 return -EIO;
625
626         return 0;
627 }
628
629 static int mt9m111_s_register(struct v4l2_subdev *sd,
630                               struct v4l2_dbg_register *reg)
631 {
632         struct i2c_client *client = v4l2_get_subdevdata(sd);
633
634         if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0x2ff)
635                 return -EINVAL;
636
637         if (reg->match.addr != client->addr)
638                 return -ENODEV;
639
640         if (mt9m111_reg_write(client, reg->reg, reg->val) < 0)
641                 return -EIO;
642
643         return 0;
644 }
645 #endif
646
647 static int mt9m111_set_flip(struct mt9m111 *mt9m111, int flip, int mask)
648 {
649         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
650         int ret;
651
652         if (mt9m111->context == HIGHPOWER) {
653                 if (flip)
654                         ret = reg_set(READ_MODE_B, mask);
655                 else
656                         ret = reg_clear(READ_MODE_B, mask);
657         } else {
658                 if (flip)
659                         ret = reg_set(READ_MODE_A, mask);
660                 else
661                         ret = reg_clear(READ_MODE_A, mask);
662         }
663
664         return ret;
665 }
666
667 static int mt9m111_get_global_gain(struct mt9m111 *mt9m111)
668 {
669         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
670         int data;
671
672         data = reg_read(GLOBAL_GAIN);
673         if (data >= 0)
674                 return (data & 0x2f) * (1 << ((data >> 10) & 1)) *
675                         (1 << ((data >> 9) & 1));
676         return data;
677 }
678
679 static int mt9m111_set_global_gain(struct mt9m111 *mt9m111, int gain)
680 {
681         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
682         u16 val;
683
684         if (gain > 63 * 2 * 2)
685                 return -EINVAL;
686
687         if ((gain >= 64 * 2) && (gain < 63 * 2 * 2))
688                 val = (1 << 10) | (1 << 9) | (gain / 4);
689         else if ((gain >= 64) && (gain < 64 * 2))
690                 val = (1 << 9) | (gain / 2);
691         else
692                 val = gain;
693
694         return reg_write(GLOBAL_GAIN, val);
695 }
696
697 static int mt9m111_set_autoexposure(struct mt9m111 *mt9m111, int on)
698 {
699         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
700
701         if (on)
702                 return reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);
703         return reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOEXPO_EN);
704 }
705
706 static int mt9m111_set_autowhitebalance(struct mt9m111 *mt9m111, int on)
707 {
708         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
709
710         if (on)
711                 return reg_set(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);
712         return reg_clear(OPER_MODE_CTRL, MT9M111_OPMODE_AUTOWHITEBAL_EN);
713 }
714
715 static int mt9m111_s_ctrl(struct v4l2_ctrl *ctrl)
716 {
717         struct mt9m111 *mt9m111 = container_of(ctrl->handler,
718                                                struct mt9m111, hdl);
719
720         switch (ctrl->id) {
721         case V4L2_CID_VFLIP:
722                 return mt9m111_set_flip(mt9m111, ctrl->val,
723                                         MT9M111_RMB_MIRROR_ROWS);
724         case V4L2_CID_HFLIP:
725                 return mt9m111_set_flip(mt9m111, ctrl->val,
726                                         MT9M111_RMB_MIRROR_COLS);
727         case V4L2_CID_GAIN:
728                 return mt9m111_set_global_gain(mt9m111, ctrl->val);
729         case V4L2_CID_EXPOSURE_AUTO:
730                 return mt9m111_set_autoexposure(mt9m111, ctrl->val);
731         case V4L2_CID_AUTO_WHITE_BALANCE:
732                 return mt9m111_set_autowhitebalance(mt9m111, ctrl->val);
733         }
734
735         return -EINVAL;
736 }
737
738 static int mt9m111_suspend(struct mt9m111 *mt9m111)
739 {
740         v4l2_ctrl_s_ctrl(mt9m111->gain, mt9m111_get_global_gain(mt9m111));
741
742         return 0;
743 }
744
745 static void mt9m111_restore_state(struct mt9m111 *mt9m111)
746 {
747         mt9m111_set_context(mt9m111, mt9m111->context);
748         mt9m111_set_pixfmt(mt9m111, mt9m111->fmt->code);
749         mt9m111_setup_rect(mt9m111, &mt9m111->rect);
750         v4l2_ctrl_handler_setup(&mt9m111->hdl);
751 }
752
753 static int mt9m111_resume(struct mt9m111 *mt9m111)
754 {
755         int ret = 0;
756
757         if (mt9m111->powered) {
758                 ret = mt9m111_enable(mt9m111);
759                 if (!ret)
760                         ret = mt9m111_reset(mt9m111);
761                 if (!ret)
762                         mt9m111_restore_state(mt9m111);
763         }
764         return ret;
765 }
766
767 static int mt9m111_init(struct mt9m111 *mt9m111)
768 {
769         struct i2c_client *client = v4l2_get_subdevdata(&mt9m111->subdev);
770         int ret;
771
772         mt9m111->context = HIGHPOWER;
773         ret = mt9m111_enable(mt9m111);
774         if (!ret)
775                 ret = mt9m111_reset(mt9m111);
776         if (!ret)
777                 ret = mt9m111_set_context(mt9m111, mt9m111->context);
778         if (ret)
779                 dev_err(&client->dev, "mt9m111 init failed: %d\n", ret);
780         return ret;
781 }
782
783 /*
784  * Interface active, can use i2c. If it fails, it can indeed mean, that
785  * this wasn't our capture interface, so, we wait for the right one
786  */
787 static int mt9m111_video_probe(struct i2c_client *client)
788 {
789         struct mt9m111 *mt9m111 = to_mt9m111(client);
790         s32 data;
791         int ret;
792
793         data = reg_read(CHIP_VERSION);
794
795         switch (data) {
796         case 0x143a: /* MT9M111 or MT9M131 */
797                 mt9m111->model = V4L2_IDENT_MT9M111;
798                 dev_info(&client->dev,
799                         "Detected a MT9M111/MT9M131 chip ID %x\n", data);
800                 break;
801         case 0x148c: /* MT9M112 */
802                 mt9m111->model = V4L2_IDENT_MT9M112;
803                 dev_info(&client->dev, "Detected a MT9M112 chip ID %x\n", data);
804                 break;
805         default:
806                 dev_err(&client->dev,
807                         "No MT9M111/MT9M112/MT9M131 chip detected register read %x\n",
808                         data);
809                 return -ENODEV;
810         }
811
812         ret = mt9m111_init(mt9m111);
813         if (ret)
814                 return ret;
815         return v4l2_ctrl_handler_setup(&mt9m111->hdl);
816 }
817
818 static int mt9m111_s_power(struct v4l2_subdev *sd, int on)
819 {
820         struct mt9m111 *mt9m111 = container_of(sd, struct mt9m111, subdev);
821         struct i2c_client *client = v4l2_get_subdevdata(sd);
822         int ret = 0;
823
824         mutex_lock(&mt9m111->power_lock);
825
826         /*
827          * If the power count is modified from 0 to != 0 or from != 0 to 0,
828          * update the power state.
829          */
830         if (mt9m111->power_count == !on) {
831                 if (on) {
832                         ret = mt9m111_resume(mt9m111);
833                         if (ret) {
834                                 dev_err(&client->dev,
835                                         "Failed to resume the sensor: %d\n", ret);
836                                 goto out;
837                         }
838                 } else {
839                         mt9m111_suspend(mt9m111);
840                 }
841         }
842
843         /* Update the power count. */
844         mt9m111->power_count += on ? 1 : -1;
845         WARN_ON(mt9m111->power_count < 0);
846
847 out:
848         mutex_unlock(&mt9m111->power_lock);
849         return ret;
850 }
851
852 static const struct v4l2_ctrl_ops mt9m111_ctrl_ops = {
853         .s_ctrl = mt9m111_s_ctrl,
854 };
855
856 static struct v4l2_subdev_core_ops mt9m111_subdev_core_ops = {
857         .g_chip_ident   = mt9m111_g_chip_ident,
858         .s_power        = mt9m111_s_power,
859 #ifdef CONFIG_VIDEO_ADV_DEBUG
860         .g_register     = mt9m111_g_register,
861         .s_register     = mt9m111_s_register,
862 #endif
863 };
864
865 static int mt9m111_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
866                             enum v4l2_mbus_pixelcode *code)
867 {
868         if (index >= ARRAY_SIZE(mt9m111_colour_fmts))
869                 return -EINVAL;
870
871         *code = mt9m111_colour_fmts[index].code;
872         return 0;
873 }
874
875 static int mt9m111_g_mbus_config(struct v4l2_subdev *sd,
876                                 struct v4l2_mbus_config *cfg)
877 {
878         struct i2c_client *client = v4l2_get_subdevdata(sd);
879         struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
880
881         cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING |
882                 V4L2_MBUS_HSYNC_ACTIVE_HIGH | V4L2_MBUS_VSYNC_ACTIVE_HIGH |
883                 V4L2_MBUS_DATA_ACTIVE_HIGH;
884         cfg->type = V4L2_MBUS_PARALLEL;
885         cfg->flags = soc_camera_apply_board_flags(icl, cfg);
886
887         return 0;
888 }
889
890 static struct v4l2_subdev_video_ops mt9m111_subdev_video_ops = {
891         .s_mbus_fmt     = mt9m111_s_fmt,
892         .g_mbus_fmt     = mt9m111_g_fmt,
893         .try_mbus_fmt   = mt9m111_try_fmt,
894         .s_crop         = mt9m111_s_crop,
895         .g_crop         = mt9m111_g_crop,
896         .cropcap        = mt9m111_cropcap,
897         .enum_mbus_fmt  = mt9m111_enum_fmt,
898         .g_mbus_config  = mt9m111_g_mbus_config,
899 };
900
901 static struct v4l2_subdev_ops mt9m111_subdev_ops = {
902         .core   = &mt9m111_subdev_core_ops,
903         .video  = &mt9m111_subdev_video_ops,
904 };
905
906 static int mt9m111_probe(struct i2c_client *client,
907                          const struct i2c_device_id *did)
908 {
909         struct mt9m111 *mt9m111;
910         struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
911         struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
912         int ret;
913
914         if (!icl) {
915                 dev_err(&client->dev, "mt9m111: driver needs platform data\n");
916                 return -EINVAL;
917         }
918
919         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
920                 dev_warn(&adapter->dev,
921                          "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
922                 return -EIO;
923         }
924
925         mt9m111 = kzalloc(sizeof(struct mt9m111), GFP_KERNEL);
926         if (!mt9m111)
927                 return -ENOMEM;
928
929         v4l2_i2c_subdev_init(&mt9m111->subdev, client, &mt9m111_subdev_ops);
930         v4l2_ctrl_handler_init(&mt9m111->hdl, 5);
931         v4l2_ctrl_new_std(&mt9m111->hdl, &mt9m111_ctrl_ops,
932                         V4L2_CID_VFLIP, 0, 1, 1, 0);
933         v4l2_ctrl_new_std(&mt9m111->hdl, &mt9m111_ctrl_ops,
934                         V4L2_CID_HFLIP, 0, 1, 1, 0);
935         v4l2_ctrl_new_std(&mt9m111->hdl, &mt9m111_ctrl_ops,
936                         V4L2_CID_AUTO_WHITE_BALANCE, 0, 1, 1, 1);
937         mt9m111->gain = v4l2_ctrl_new_std(&mt9m111->hdl, &mt9m111_ctrl_ops,
938                         V4L2_CID_GAIN, 0, 63 * 2 * 2, 1, 32);
939         v4l2_ctrl_new_std_menu(&mt9m111->hdl,
940                         &mt9m111_ctrl_ops, V4L2_CID_EXPOSURE_AUTO, 1, 0,
941                         V4L2_EXPOSURE_AUTO);
942         mt9m111->subdev.ctrl_handler = &mt9m111->hdl;
943         if (mt9m111->hdl.error) {
944                 int err = mt9m111->hdl.error;
945
946                 kfree(mt9m111);
947                 return err;
948         }
949
950         /* Second stage probe - when a capture adapter is there */
951         mt9m111->rect.left      = MT9M111_MIN_DARK_COLS;
952         mt9m111->rect.top       = MT9M111_MIN_DARK_ROWS;
953         mt9m111->rect.width     = MT9M111_MAX_WIDTH;
954         mt9m111->rect.height    = MT9M111_MAX_HEIGHT;
955         mt9m111->fmt            = &mt9m111_colour_fmts[0];
956         mt9m111->lastpage       = -1;
957
958         ret = mt9m111_video_probe(client);
959         if (ret) {
960                 v4l2_ctrl_handler_free(&mt9m111->hdl);
961                 kfree(mt9m111);
962         }
963
964         return ret;
965 }
966
967 static int mt9m111_remove(struct i2c_client *client)
968 {
969         struct mt9m111 *mt9m111 = to_mt9m111(client);
970
971         v4l2_device_unregister_subdev(&mt9m111->subdev);
972         v4l2_ctrl_handler_free(&mt9m111->hdl);
973         kfree(mt9m111);
974
975         return 0;
976 }
977
978 static const struct i2c_device_id mt9m111_id[] = {
979         { "mt9m111", 0 },
980         { }
981 };
982 MODULE_DEVICE_TABLE(i2c, mt9m111_id);
983
984 static struct i2c_driver mt9m111_i2c_driver = {
985         .driver = {
986                 .name = "mt9m111",
987         },
988         .probe          = mt9m111_probe,
989         .remove         = mt9m111_remove,
990         .id_table       = mt9m111_id,
991 };
992
993 static int __init mt9m111_mod_init(void)
994 {
995         return i2c_add_driver(&mt9m111_i2c_driver);
996 }
997
998 static void __exit mt9m111_mod_exit(void)
999 {
1000         i2c_del_driver(&mt9m111_i2c_driver);
1001 }
1002
1003 module_init(mt9m111_mod_init);
1004 module_exit(mt9m111_mod_exit);
1005
1006 MODULE_DESCRIPTION("Micron/Aptina MT9M111/MT9M112/MT9M131 Camera driver");
1007 MODULE_AUTHOR("Robert Jarzmik");
1008 MODULE_LICENSE("GPL");