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