Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mt9m001.c
Go to the documentation of this file.
1 /*
2  * Driver for MT9M001 CMOS Image Sensor from Micron
3  *
4  * Copyright (C) 2008, Guennadi Liakhovetski <[email protected]>
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 
11 #include <linux/videodev2.h>
12 #include <linux/slab.h>
13 #include <linux/i2c.h>
14 #include <linux/log2.h>
15 #include <linux/module.h>
16 
17 #include <media/soc_camera.h>
18 #include <media/soc_mediabus.h>
19 #include <media/v4l2-subdev.h>
20 #include <media/v4l2-chip-ident.h>
21 #include <media/v4l2-ctrls.h>
22 
23 /*
24  * mt9m001 i2c address 0x5d
25  * The platform has to define struct i2c_board_info objects and link to them
26  * from struct soc_camera_link
27  */
28 
29 /* mt9m001 selected register addresses */
30 #define MT9M001_CHIP_VERSION 0x00
31 #define MT9M001_ROW_START 0x01
32 #define MT9M001_COLUMN_START 0x02
33 #define MT9M001_WINDOW_HEIGHT 0x03
34 #define MT9M001_WINDOW_WIDTH 0x04
35 #define MT9M001_HORIZONTAL_BLANKING 0x05
36 #define MT9M001_VERTICAL_BLANKING 0x06
37 #define MT9M001_OUTPUT_CONTROL 0x07
38 #define MT9M001_SHUTTER_WIDTH 0x09
39 #define MT9M001_FRAME_RESTART 0x0b
40 #define MT9M001_SHUTTER_DELAY 0x0c
41 #define MT9M001_RESET 0x0d
42 #define MT9M001_READ_OPTIONS1 0x1e
43 #define MT9M001_READ_OPTIONS2 0x20
44 #define MT9M001_GLOBAL_GAIN 0x35
45 #define MT9M001_CHIP_ENABLE 0xF1
46 
47 #define MT9M001_MAX_WIDTH 1280
48 #define MT9M001_MAX_HEIGHT 1024
49 #define MT9M001_MIN_WIDTH 48
50 #define MT9M001_MIN_HEIGHT 32
51 #define MT9M001_COLUMN_SKIP 20
52 #define MT9M001_ROW_SKIP 12
53 
54 /* MT9M001 has only one fixed colorspace per pixelcode */
58 };
59 
60 /* Find a data format by a pixel code in an array */
61 static const struct mt9m001_datafmt *mt9m001_find_datafmt(
62  enum v4l2_mbus_pixelcode code, const struct mt9m001_datafmt *fmt,
63  int n)
64 {
65  int i;
66  for (i = 0; i < n; i++)
67  if (fmt[i].code == code)
68  return fmt + i;
69 
70  return NULL;
71 }
72 
73 static const struct mt9m001_datafmt mt9m001_colour_fmts[] = {
74  /*
75  * Order important: first natively supported,
76  * second supported with a GPIO extender
77  */
80 };
81 
82 static const struct mt9m001_datafmt mt9m001_monochrome_fmts[] = {
83  /* Order important - see above */
86 };
87 
88 struct mt9m001 {
91  struct {
92  /* exposure/auto-exposure cluster */
95  };
96  struct v4l2_rect rect; /* Sensor window */
97  const struct mt9m001_datafmt *fmt;
98  const struct mt9m001_datafmt *fmts;
99  int num_fmts;
100  int model; /* V4L2_IDENT_MT9M001* codes from v4l2-chip-ident.h */
101  unsigned int total_h;
102  unsigned short y_skip_top; /* Lines to skip at the top */
103 };
104 
105 static struct mt9m001 *to_mt9m001(const struct i2c_client *client)
106 {
107  return container_of(i2c_get_clientdata(client), struct mt9m001, subdev);
108 }
109 
110 static int reg_read(struct i2c_client *client, const u8 reg)
111 {
112  return i2c_smbus_read_word_swapped(client, reg);
113 }
114 
115 static int reg_write(struct i2c_client *client, const u8 reg,
116  const u16 data)
117 {
118  return i2c_smbus_write_word_swapped(client, reg, data);
119 }
120 
121 static int reg_set(struct i2c_client *client, const u8 reg,
122  const u16 data)
123 {
124  int ret;
125 
126  ret = reg_read(client, reg);
127  if (ret < 0)
128  return ret;
129  return reg_write(client, reg, ret | data);
130 }
131 
132 static int reg_clear(struct i2c_client *client, const u8 reg,
133  const u16 data)
134 {
135  int ret;
136 
137  ret = reg_read(client, reg);
138  if (ret < 0)
139  return ret;
140  return reg_write(client, reg, ret & ~data);
141 }
142 
143 static int mt9m001_init(struct i2c_client *client)
144 {
145  int ret;
146 
147  dev_dbg(&client->dev, "%s\n", __func__);
148 
149  /*
150  * We don't know, whether platform provides reset, issue a soft reset
151  * too. This returns all registers to their default values.
152  */
153  ret = reg_write(client, MT9M001_RESET, 1);
154  if (!ret)
155  ret = reg_write(client, MT9M001_RESET, 0);
156 
157  /* Disable chip, synchronous option update */
158  if (!ret)
159  ret = reg_write(client, MT9M001_OUTPUT_CONTROL, 0);
160 
161  return ret;
162 }
163 
164 static int mt9m001_s_stream(struct v4l2_subdev *sd, int enable)
165 {
166  struct i2c_client *client = v4l2_get_subdevdata(sd);
167 
168  /* Switch to master "normal" mode or stop sensor readout */
169  if (reg_write(client, MT9M001_OUTPUT_CONTROL, enable ? 2 : 0) < 0)
170  return -EIO;
171  return 0;
172 }
173 
174 static int mt9m001_s_crop(struct v4l2_subdev *sd, const struct v4l2_crop *a)
175 {
176  struct i2c_client *client = v4l2_get_subdevdata(sd);
177  struct mt9m001 *mt9m001 = to_mt9m001(client);
178  struct v4l2_rect rect = a->c;
179  int ret;
180  const u16 hblank = 9, vblank = 25;
181 
182  if (mt9m001->fmts == mt9m001_colour_fmts)
183  /*
184  * Bayer format - even number of rows for simplicity,
185  * but let the user play with the top row.
186  */
187  rect.height = ALIGN(rect.height, 2);
188 
189  /* Datasheet requirement: see register description */
190  rect.width = ALIGN(rect.width, 2);
191  rect.left = ALIGN(rect.left, 2);
192 
193  soc_camera_limit_side(&rect.left, &rect.width,
195 
196  soc_camera_limit_side(&rect.top, &rect.height,
198 
199  mt9m001->total_h = rect.height + mt9m001->y_skip_top + vblank;
200 
201  /* Blanking and start values - default... */
202  ret = reg_write(client, MT9M001_HORIZONTAL_BLANKING, hblank);
203  if (!ret)
204  ret = reg_write(client, MT9M001_VERTICAL_BLANKING, vblank);
205 
206  /*
207  * The caller provides a supported format, as verified per
208  * call to .try_mbus_fmt()
209  */
210  if (!ret)
211  ret = reg_write(client, MT9M001_COLUMN_START, rect.left);
212  if (!ret)
213  ret = reg_write(client, MT9M001_ROW_START, rect.top);
214  if (!ret)
215  ret = reg_write(client, MT9M001_WINDOW_WIDTH, rect.width - 1);
216  if (!ret)
217  ret = reg_write(client, MT9M001_WINDOW_HEIGHT,
218  rect.height + mt9m001->y_skip_top - 1);
219  if (!ret && v4l2_ctrl_g_ctrl(mt9m001->autoexposure) == V4L2_EXPOSURE_AUTO)
220  ret = reg_write(client, MT9M001_SHUTTER_WIDTH, mt9m001->total_h);
221 
222  if (!ret)
223  mt9m001->rect = rect;
224 
225  return ret;
226 }
227 
228 static int mt9m001_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
229 {
230  struct i2c_client *client = v4l2_get_subdevdata(sd);
231  struct mt9m001 *mt9m001 = to_mt9m001(client);
232 
233  a->c = mt9m001->rect;
235 
236  return 0;
237 }
238 
239 static int mt9m001_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
240 {
241  a->bounds.left = MT9M001_COLUMN_SKIP;
242  a->bounds.top = MT9M001_ROW_SKIP;
243  a->bounds.width = MT9M001_MAX_WIDTH;
244  a->bounds.height = MT9M001_MAX_HEIGHT;
245  a->defrect = a->bounds;
247  a->pixelaspect.numerator = 1;
248  a->pixelaspect.denominator = 1;
249 
250  return 0;
251 }
252 
253 static int mt9m001_g_fmt(struct v4l2_subdev *sd,
254  struct v4l2_mbus_framefmt *mf)
255 {
256  struct i2c_client *client = v4l2_get_subdevdata(sd);
257  struct mt9m001 *mt9m001 = to_mt9m001(client);
258 
259  mf->width = mt9m001->rect.width;
260  mf->height = mt9m001->rect.height;
261  mf->code = mt9m001->fmt->code;
262  mf->colorspace = mt9m001->fmt->colorspace;
263  mf->field = V4L2_FIELD_NONE;
264 
265  return 0;
266 }
267 
268 static int mt9m001_s_fmt(struct v4l2_subdev *sd,
269  struct v4l2_mbus_framefmt *mf)
270 {
271  struct i2c_client *client = v4l2_get_subdevdata(sd);
272  struct mt9m001 *mt9m001 = to_mt9m001(client);
273  struct v4l2_crop a = {
274  .c = {
275  .left = mt9m001->rect.left,
276  .top = mt9m001->rect.top,
277  .width = mf->width,
278  .height = mf->height,
279  },
280  };
281  int ret;
282 
283  /* No support for scaling so far, just crop. TODO: use skipping */
284  ret = mt9m001_s_crop(sd, &a);
285  if (!ret) {
286  mf->width = mt9m001->rect.width;
287  mf->height = mt9m001->rect.height;
288  mt9m001->fmt = mt9m001_find_datafmt(mf->code,
289  mt9m001->fmts, mt9m001->num_fmts);
290  mf->colorspace = mt9m001->fmt->colorspace;
291  }
292 
293  return ret;
294 }
295 
296 static int mt9m001_try_fmt(struct v4l2_subdev *sd,
297  struct v4l2_mbus_framefmt *mf)
298 {
299  struct i2c_client *client = v4l2_get_subdevdata(sd);
300  struct mt9m001 *mt9m001 = to_mt9m001(client);
301  const struct mt9m001_datafmt *fmt;
302 
305  &mf->height, MT9M001_MIN_HEIGHT + mt9m001->y_skip_top,
306  MT9M001_MAX_HEIGHT + mt9m001->y_skip_top, 0, 0);
307 
308  if (mt9m001->fmts == mt9m001_colour_fmts)
309  mf->height = ALIGN(mf->height - 1, 2);
310 
311  fmt = mt9m001_find_datafmt(mf->code, mt9m001->fmts,
312  mt9m001->num_fmts);
313  if (!fmt) {
314  fmt = mt9m001->fmt;
315  mf->code = fmt->code;
316  }
317 
318  mf->colorspace = fmt->colorspace;
319 
320  return 0;
321 }
322 
323 static int mt9m001_g_chip_ident(struct v4l2_subdev *sd,
324  struct v4l2_dbg_chip_ident *id)
325 {
326  struct i2c_client *client = v4l2_get_subdevdata(sd);
327  struct mt9m001 *mt9m001 = to_mt9m001(client);
328 
329  if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
330  return -EINVAL;
331 
332  if (id->match.addr != client->addr)
333  return -ENODEV;
334 
335  id->ident = mt9m001->model;
336  id->revision = 0;
337 
338  return 0;
339 }
340 
341 #ifdef CONFIG_VIDEO_ADV_DEBUG
342 static int mt9m001_g_register(struct v4l2_subdev *sd,
343  struct v4l2_dbg_register *reg)
344 {
345  struct i2c_client *client = v4l2_get_subdevdata(sd);
346 
347  if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
348  return -EINVAL;
349 
350  if (reg->match.addr != client->addr)
351  return -ENODEV;
352 
353  reg->size = 2;
354  reg->val = reg_read(client, reg->reg);
355 
356  if (reg->val > 0xffff)
357  return -EIO;
358 
359  return 0;
360 }
361 
362 static int mt9m001_s_register(struct v4l2_subdev *sd,
363  struct v4l2_dbg_register *reg)
364 {
365  struct i2c_client *client = v4l2_get_subdevdata(sd);
366 
367  if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
368  return -EINVAL;
369 
370  if (reg->match.addr != client->addr)
371  return -ENODEV;
372 
373  if (reg_write(client, reg->reg, reg->val) < 0)
374  return -EIO;
375 
376  return 0;
377 }
378 #endif
379 
380 static int mt9m001_s_power(struct v4l2_subdev *sd, int on)
381 {
382  struct i2c_client *client = v4l2_get_subdevdata(sd);
383  struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
384 
385  return soc_camera_set_power(&client->dev, icl, on);
386 }
387 
388 static int mt9m001_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
389 {
390  struct mt9m001 *mt9m001 = container_of(ctrl->handler,
391  struct mt9m001, hdl);
392  s32 min, max;
393 
394  switch (ctrl->id) {
396  min = mt9m001->exposure->minimum;
397  max = mt9m001->exposure->maximum;
398  mt9m001->exposure->val =
399  (524 + (mt9m001->total_h - 1) * (max - min)) / 1048 + min;
400  break;
401  }
402  return 0;
403 }
404 
405 static int mt9m001_s_ctrl(struct v4l2_ctrl *ctrl)
406 {
407  struct mt9m001 *mt9m001 = container_of(ctrl->handler,
408  struct mt9m001, hdl);
409  struct v4l2_subdev *sd = &mt9m001->subdev;
410  struct i2c_client *client = v4l2_get_subdevdata(sd);
411  struct v4l2_ctrl *exp = mt9m001->exposure;
412  int data;
413 
414  switch (ctrl->id) {
415  case V4L2_CID_VFLIP:
416  if (ctrl->val)
417  data = reg_set(client, MT9M001_READ_OPTIONS2, 0x8000);
418  else
419  data = reg_clear(client, MT9M001_READ_OPTIONS2, 0x8000);
420  if (data < 0)
421  return -EIO;
422  return 0;
423 
424  case V4L2_CID_GAIN:
425  /* See Datasheet Table 7, Gain settings. */
426  if (ctrl->val <= ctrl->default_value) {
427  /* Pack it into 0..1 step 0.125, register values 0..8 */
428  unsigned long range = ctrl->default_value - ctrl->minimum;
429  data = ((ctrl->val - ctrl->minimum) * 8 + range / 2) / range;
430 
431  dev_dbg(&client->dev, "Setting gain %d\n", data);
432  data = reg_write(client, MT9M001_GLOBAL_GAIN, data);
433  if (data < 0)
434  return -EIO;
435  } else {
436  /* Pack it into 1.125..15 variable step, register values 9..67 */
437  /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
438  unsigned long range = ctrl->maximum - ctrl->default_value - 1;
439  unsigned long gain = ((ctrl->val - ctrl->default_value - 1) *
440  111 + range / 2) / range + 9;
441 
442  if (gain <= 32)
443  data = gain;
444  else if (gain <= 64)
445  data = ((gain - 32) * 16 + 16) / 32 + 80;
446  else
447  data = ((gain - 64) * 7 + 28) / 56 + 96;
448 
449  dev_dbg(&client->dev, "Setting gain from %d to %d\n",
450  reg_read(client, MT9M001_GLOBAL_GAIN), data);
451  data = reg_write(client, MT9M001_GLOBAL_GAIN, data);
452  if (data < 0)
453  return -EIO;
454  }
455  return 0;
456 
458  if (ctrl->val == V4L2_EXPOSURE_MANUAL) {
459  unsigned long range = exp->maximum - exp->minimum;
460  unsigned long shutter = ((exp->val - exp->minimum) * 1048 +
461  range / 2) / range + 1;
462 
463  dev_dbg(&client->dev,
464  "Setting shutter width from %d to %lu\n",
465  reg_read(client, MT9M001_SHUTTER_WIDTH), shutter);
466  if (reg_write(client, MT9M001_SHUTTER_WIDTH, shutter) < 0)
467  return -EIO;
468  } else {
469  const u16 vblank = 25;
470 
471  mt9m001->total_h = mt9m001->rect.height +
472  mt9m001->y_skip_top + vblank;
473  if (reg_write(client, MT9M001_SHUTTER_WIDTH, mt9m001->total_h) < 0)
474  return -EIO;
475  }
476  return 0;
477  }
478  return -EINVAL;
479 }
480 
481 /*
482  * Interface active, can use i2c. If it fails, it can indeed mean, that
483  * this wasn't our capture interface, so, we wait for the right one
484  */
485 static int mt9m001_video_probe(struct soc_camera_link *icl,
486  struct i2c_client *client)
487 {
488  struct mt9m001 *mt9m001 = to_mt9m001(client);
489  s32 data;
490  unsigned long flags;
491  int ret;
492 
493  ret = mt9m001_s_power(&mt9m001->subdev, 1);
494  if (ret < 0)
495  return ret;
496 
497  /* Enable the chip */
498  data = reg_write(client, MT9M001_CHIP_ENABLE, 1);
499  dev_dbg(&client->dev, "write: %d\n", data);
500 
501  /* Read out the chip version register */
502  data = reg_read(client, MT9M001_CHIP_VERSION);
503 
504  /* must be 0x8411 or 0x8421 for colour sensor and 8431 for bw */
505  switch (data) {
506  case 0x8411:
507  case 0x8421:
508  mt9m001->model = V4L2_IDENT_MT9M001C12ST;
509  mt9m001->fmts = mt9m001_colour_fmts;
510  break;
511  case 0x8431:
512  mt9m001->model = V4L2_IDENT_MT9M001C12STM;
513  mt9m001->fmts = mt9m001_monochrome_fmts;
514  break;
515  default:
516  dev_err(&client->dev,
517  "No MT9M001 chip detected, register read %x\n", data);
518  ret = -ENODEV;
519  goto done;
520  }
521 
522  mt9m001->num_fmts = 0;
523 
524  /*
525  * This is a 10bit sensor, so by default we only allow 10bit.
526  * The platform may support different bus widths due to
527  * different routing of the data lines.
528  */
529  if (icl->query_bus_param)
530  flags = icl->query_bus_param(icl);
531  else
532  flags = SOCAM_DATAWIDTH_10;
533 
534  if (flags & SOCAM_DATAWIDTH_10)
535  mt9m001->num_fmts++;
536  else
537  mt9m001->fmts++;
538 
539  if (flags & SOCAM_DATAWIDTH_8)
540  mt9m001->num_fmts++;
541 
542  mt9m001->fmt = &mt9m001->fmts[0];
543 
544  dev_info(&client->dev, "Detected a MT9M001 chip ID %x (%s)\n", data,
545  data == 0x8431 ? "C12STM" : "C12ST");
546 
547  ret = mt9m001_init(client);
548  if (ret < 0) {
549  dev_err(&client->dev, "Failed to initialise the camera\n");
550  goto done;
551  }
552 
553  /* mt9m001_init() has reset the chip, returning registers to defaults */
554  ret = v4l2_ctrl_handler_setup(&mt9m001->hdl);
555 
556 done:
557  mt9m001_s_power(&mt9m001->subdev, 0);
558  return ret;
559 }
560 
561 static void mt9m001_video_remove(struct soc_camera_link *icl)
562 {
563  if (icl->free_bus)
564  icl->free_bus(icl);
565 }
566 
567 static int mt9m001_g_skip_top_lines(struct v4l2_subdev *sd, u32 *lines)
568 {
569  struct i2c_client *client = v4l2_get_subdevdata(sd);
570  struct mt9m001 *mt9m001 = to_mt9m001(client);
571 
572  *lines = mt9m001->y_skip_top;
573 
574  return 0;
575 }
576 
577 static const struct v4l2_ctrl_ops mt9m001_ctrl_ops = {
578  .g_volatile_ctrl = mt9m001_g_volatile_ctrl,
579  .s_ctrl = mt9m001_s_ctrl,
580 };
581 
582 static struct v4l2_subdev_core_ops mt9m001_subdev_core_ops = {
583  .g_chip_ident = mt9m001_g_chip_ident,
584 #ifdef CONFIG_VIDEO_ADV_DEBUG
585  .g_register = mt9m001_g_register,
586  .s_register = mt9m001_s_register,
587 #endif
588  .s_power = mt9m001_s_power,
589 };
590 
591 static int mt9m001_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
593 {
594  struct i2c_client *client = v4l2_get_subdevdata(sd);
595  struct mt9m001 *mt9m001 = to_mt9m001(client);
596 
597  if (index >= mt9m001->num_fmts)
598  return -EINVAL;
599 
600  *code = mt9m001->fmts[index].code;
601  return 0;
602 }
603 
604 static int mt9m001_g_mbus_config(struct v4l2_subdev *sd,
605  struct v4l2_mbus_config *cfg)
606 {
607  struct i2c_client *client = v4l2_get_subdevdata(sd);
608  struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
609 
610  /* MT9M001 has all capture_format parameters fixed */
614  cfg->type = V4L2_MBUS_PARALLEL;
615  cfg->flags = soc_camera_apply_board_flags(icl, cfg);
616 
617  return 0;
618 }
619 
620 static int mt9m001_s_mbus_config(struct v4l2_subdev *sd,
621  const struct v4l2_mbus_config *cfg)
622 {
623  const struct i2c_client *client = v4l2_get_subdevdata(sd);
624  struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
625  struct mt9m001 *mt9m001 = to_mt9m001(client);
626  unsigned int bps = soc_mbus_get_fmtdesc(mt9m001->fmt->code)->bits_per_sample;
627 
628  if (icl->set_bus_param)
629  return icl->set_bus_param(icl, 1 << (bps - 1));
630 
631  /*
632  * Without board specific bus width settings we only support the
633  * sensors native bus width
634  */
635  return bps == 10 ? 0 : -EINVAL;
636 }
637 
638 static struct v4l2_subdev_video_ops mt9m001_subdev_video_ops = {
639  .s_stream = mt9m001_s_stream,
640  .s_mbus_fmt = mt9m001_s_fmt,
641  .g_mbus_fmt = mt9m001_g_fmt,
642  .try_mbus_fmt = mt9m001_try_fmt,
643  .s_crop = mt9m001_s_crop,
644  .g_crop = mt9m001_g_crop,
645  .cropcap = mt9m001_cropcap,
646  .enum_mbus_fmt = mt9m001_enum_fmt,
647  .g_mbus_config = mt9m001_g_mbus_config,
648  .s_mbus_config = mt9m001_s_mbus_config,
649 };
650 
651 static struct v4l2_subdev_sensor_ops mt9m001_subdev_sensor_ops = {
652  .g_skip_top_lines = mt9m001_g_skip_top_lines,
653 };
654 
655 static struct v4l2_subdev_ops mt9m001_subdev_ops = {
656  .core = &mt9m001_subdev_core_ops,
657  .video = &mt9m001_subdev_video_ops,
658  .sensor = &mt9m001_subdev_sensor_ops,
659 };
660 
661 static int mt9m001_probe(struct i2c_client *client,
662  const struct i2c_device_id *did)
663 {
664  struct mt9m001 *mt9m001;
665  struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
666  struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
667  int ret;
668 
669  if (!icl) {
670  dev_err(&client->dev, "MT9M001 driver needs platform data\n");
671  return -EINVAL;
672  }
673 
674  if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
675  dev_warn(&adapter->dev,
676  "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
677  return -EIO;
678  }
679 
680  mt9m001 = kzalloc(sizeof(struct mt9m001), GFP_KERNEL);
681  if (!mt9m001)
682  return -ENOMEM;
683 
684  v4l2_i2c_subdev_init(&mt9m001->subdev, client, &mt9m001_subdev_ops);
685  v4l2_ctrl_handler_init(&mt9m001->hdl, 4);
686  v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
687  V4L2_CID_VFLIP, 0, 1, 1, 0);
688  v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
689  V4L2_CID_GAIN, 0, 127, 1, 64);
690  mt9m001->exposure = v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
691  V4L2_CID_EXPOSURE, 1, 255, 1, 255);
692  /*
693  * Simulated autoexposure. If enabled, we calculate shutter width
694  * ourselves in the driver based on vertical blanking and frame width
695  */
696  mt9m001->autoexposure = v4l2_ctrl_new_std_menu(&mt9m001->hdl,
697  &mt9m001_ctrl_ops, V4L2_CID_EXPOSURE_AUTO, 1, 0,
699  mt9m001->subdev.ctrl_handler = &mt9m001->hdl;
700  if (mt9m001->hdl.error) {
701  int err = mt9m001->hdl.error;
702 
703  kfree(mt9m001);
704  return err;
705  }
707  V4L2_EXPOSURE_MANUAL, true);
708 
709  /* Second stage probe - when a capture adapter is there */
710  mt9m001->y_skip_top = 0;
711  mt9m001->rect.left = MT9M001_COLUMN_SKIP;
712  mt9m001->rect.top = MT9M001_ROW_SKIP;
713  mt9m001->rect.width = MT9M001_MAX_WIDTH;
714  mt9m001->rect.height = MT9M001_MAX_HEIGHT;
715 
716  ret = mt9m001_video_probe(icl, client);
717  if (ret) {
718  v4l2_ctrl_handler_free(&mt9m001->hdl);
719  kfree(mt9m001);
720  }
721 
722  return ret;
723 }
724 
725 static int mt9m001_remove(struct i2c_client *client)
726 {
727  struct mt9m001 *mt9m001 = to_mt9m001(client);
728  struct soc_camera_link *icl = soc_camera_i2c_to_link(client);
729 
731  v4l2_ctrl_handler_free(&mt9m001->hdl);
732  mt9m001_video_remove(icl);
733  kfree(mt9m001);
734 
735  return 0;
736 }
737 
738 static const struct i2c_device_id mt9m001_id[] = {
739  { "mt9m001", 0 },
740  { }
741 };
742 MODULE_DEVICE_TABLE(i2c, mt9m001_id);
743 
744 static struct i2c_driver mt9m001_i2c_driver = {
745  .driver = {
746  .name = "mt9m001",
747  },
748  .probe = mt9m001_probe,
749  .remove = mt9m001_remove,
750  .id_table = mt9m001_id,
751 };
752 
753 module_i2c_driver(mt9m001_i2c_driver);
754 
755 MODULE_DESCRIPTION("Micron MT9M001 Camera driver");
756 MODULE_AUTHOR("Guennadi Liakhovetski <[email protected]>");
757 MODULE_LICENSE("GPL");