2 * Driver for MT9T031 CMOS Image Sensor from Micron
4 * Copyright (C) 2008, Guennadi Liakhovetski, DENX Software Engineering <lg@denx.de>
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.
11 #include <linux/videodev2.h>
12 #include <linux/slab.h>
13 #include <linux/i2c.h>
14 #include <linux/log2.h>
16 #include <media/v4l2-common.h>
17 #include <media/v4l2-chip-ident.h>
18 #include <media/soc_camera.h>
20 /* mt9t031 i2c address 0x5d
21 * The platform has to define i2c_board_info
22 * and call i2c_register_board_info() */
24 /* mt9t031 selected register addresses */
25 #define MT9T031_CHIP_VERSION 0x00
26 #define MT9T031_ROW_START 0x01
27 #define MT9T031_COLUMN_START 0x02
28 #define MT9T031_WINDOW_HEIGHT 0x03
29 #define MT9T031_WINDOW_WIDTH 0x04
30 #define MT9T031_HORIZONTAL_BLANKING 0x05
31 #define MT9T031_VERTICAL_BLANKING 0x06
32 #define MT9T031_OUTPUT_CONTROL 0x07
33 #define MT9T031_SHUTTER_WIDTH_UPPER 0x08
34 #define MT9T031_SHUTTER_WIDTH 0x09
35 #define MT9T031_PIXEL_CLOCK_CONTROL 0x0a
36 #define MT9T031_FRAME_RESTART 0x0b
37 #define MT9T031_SHUTTER_DELAY 0x0c
38 #define MT9T031_RESET 0x0d
39 #define MT9T031_READ_MODE_1 0x1e
40 #define MT9T031_READ_MODE_2 0x20
41 #define MT9T031_READ_MODE_3 0x21
42 #define MT9T031_ROW_ADDRESS_MODE 0x22
43 #define MT9T031_COLUMN_ADDRESS_MODE 0x23
44 #define MT9T031_GLOBAL_GAIN 0x35
45 #define MT9T031_CHIP_ENABLE 0xF8
47 #define MT9T031_MAX_HEIGHT 1536
48 #define MT9T031_MAX_WIDTH 2048
49 #define MT9T031_MIN_HEIGHT 2
50 #define MT9T031_MIN_WIDTH 2
51 #define MT9T031_HORIZONTAL_BLANK 142
52 #define MT9T031_VERTICAL_BLANK 25
53 #define MT9T031_COLUMN_SKIP 32
54 #define MT9T031_ROW_SKIP 20
56 #define MT9T031_BUS_PARAM (SOCAM_PCLK_SAMPLE_RISING | \
57 SOCAM_PCLK_SAMPLE_FALLING | SOCAM_HSYNC_ACTIVE_HIGH | \
58 SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_DATA_ACTIVE_HIGH | \
59 SOCAM_MASTER | SOCAM_DATAWIDTH_10)
61 static const struct soc_camera_data_format mt9t031_colour_formats[] = {
63 .name = "Bayer (sRGB) 10 bit",
65 .fourcc = V4L2_PIX_FMT_SGRBG10,
66 .colorspace = V4L2_COLORSPACE_SRGB,
71 struct i2c_client *client;
72 struct soc_camera_device icd;
73 int model; /* V4L2_IDENT_MT9T031* codes from v4l2-chip-ident.h */
74 unsigned char autoexposure;
79 static int reg_read(struct i2c_client *client, const u8 reg)
81 s32 data = i2c_smbus_read_word_data(client, reg);
82 return data < 0 ? data : swab16(data);
85 static int reg_write(struct i2c_client *client, const u8 reg,
88 return i2c_smbus_write_word_data(client, reg, swab16(data));
91 static int reg_set(struct i2c_client *client, const u8 reg,
96 ret = reg_read(client, reg);
99 return reg_write(client, reg, ret | data);
102 static int reg_clear(struct i2c_client *client, const u8 reg,
107 ret = reg_read(client, reg);
110 return reg_write(client, reg, ret & ~data);
113 static int set_shutter(struct i2c_client *client, const u32 data)
117 ret = reg_write(client, MT9T031_SHUTTER_WIDTH_UPPER, data >> 16);
120 ret = reg_write(client, MT9T031_SHUTTER_WIDTH, data & 0xffff);
125 static int get_shutter(struct i2c_client *client, u32 *data)
129 ret = reg_read(client, MT9T031_SHUTTER_WIDTH_UPPER);
133 ret = reg_read(client, MT9T031_SHUTTER_WIDTH);
134 *data |= ret & 0xffff;
136 return ret < 0 ? ret : 0;
139 static int mt9t031_init(struct soc_camera_device *icd)
141 struct i2c_client *client = to_i2c_client(icd->control);
142 struct soc_camera_link *icl = client->dev.platform_data;
146 ret = icl->power(&client->dev, 1);
148 dev_err(icd->vdev->parent,
149 "Platform failed to power-on the camera.\n");
154 /* Disable chip output, synchronous option update */
155 ret = reg_write(client, MT9T031_RESET, 1);
157 ret = reg_write(client, MT9T031_RESET, 0);
159 ret = reg_clear(client, MT9T031_OUTPUT_CONTROL, 2);
161 if (ret < 0 && icl->power)
162 icl->power(&client->dev, 0);
164 return ret >= 0 ? 0 : -EIO;
167 static int mt9t031_release(struct soc_camera_device *icd)
169 struct i2c_client *client = to_i2c_client(icd->control);
170 struct soc_camera_link *icl = client->dev.platform_data;
172 /* Disable the chip */
173 reg_clear(client, MT9T031_OUTPUT_CONTROL, 2);
176 icl->power(&client->dev, 0);
181 static int mt9t031_start_capture(struct soc_camera_device *icd)
183 struct i2c_client *client = to_i2c_client(icd->control);
185 /* Switch to master "normal" mode */
186 if (reg_set(client, MT9T031_OUTPUT_CONTROL, 2) < 0)
191 static int mt9t031_stop_capture(struct soc_camera_device *icd)
193 struct i2c_client *client = to_i2c_client(icd->control);
195 /* Stop sensor readout */
196 if (reg_clear(client, MT9T031_OUTPUT_CONTROL, 2) < 0)
201 static int mt9t031_set_bus_param(struct soc_camera_device *icd,
204 struct i2c_client *client = to_i2c_client(icd->control);
206 /* The caller should have queried our parameters, check anyway */
207 if (flags & ~MT9T031_BUS_PARAM)
210 if (flags & SOCAM_PCLK_SAMPLE_FALLING)
211 reg_clear(client, MT9T031_PIXEL_CLOCK_CONTROL, 0x8000);
213 reg_set(client, MT9T031_PIXEL_CLOCK_CONTROL, 0x8000);
218 static unsigned long mt9t031_query_bus_param(struct soc_camera_device *icd)
220 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
221 struct soc_camera_link *icl = mt9t031->client->dev.platform_data;
223 return soc_camera_apply_sensor_flags(icl, MT9T031_BUS_PARAM);
226 /* Round up minima and round down maxima */
227 static void recalculate_limits(struct soc_camera_device *icd,
228 u16 xskip, u16 yskip)
230 icd->x_min = (MT9T031_COLUMN_SKIP + xskip - 1) / xskip;
231 icd->y_min = (MT9T031_ROW_SKIP + yskip - 1) / yskip;
232 icd->width_min = (MT9T031_MIN_WIDTH + xskip - 1) / xskip;
233 icd->height_min = (MT9T031_MIN_HEIGHT + yskip - 1) / yskip;
234 icd->width_max = MT9T031_MAX_WIDTH / xskip;
235 icd->height_max = MT9T031_MAX_HEIGHT / yskip;
238 static int mt9t031_set_params(struct soc_camera_device *icd,
239 struct v4l2_rect *rect, u16 xskip, u16 yskip)
241 struct i2c_client *client = to_i2c_client(icd->control);
242 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
244 u16 xbin, ybin, width, height, left, top;
245 const u16 hblank = MT9T031_HORIZONTAL_BLANK,
246 vblank = MT9T031_VERTICAL_BLANK;
248 /* Make sure we don't exceed sensor limits */
249 if (rect->left + rect->width > icd->width_max)
250 rect->left = (icd->width_max - rect->width) / 2 + icd->x_min;
252 if (rect->top + rect->height > icd->height_max)
253 rect->top = (icd->height_max - rect->height) / 2 + icd->y_min;
255 width = rect->width * xskip;
256 height = rect->height * yskip;
257 left = rect->left * xskip;
258 top = rect->top * yskip;
260 xbin = min(xskip, (u16)3);
261 ybin = min(yskip, (u16)3);
263 dev_dbg(&icd->dev, "xskip %u, width %u/%u, yskip %u, height %u/%u\n",
264 xskip, width, rect->width, yskip, height, rect->height);
266 /* Could just do roundup(rect->left, [xy]bin * 2); but this is cheaper */
269 left = (left + 3) & ~3;
272 left = roundup(left, 6);
277 top = (top + 3) & ~3;
280 top = roundup(top, 6);
283 /* Disable register update, reconfigure atomically */
284 ret = reg_set(client, MT9T031_OUTPUT_CONTROL, 1);
288 /* Blanking and start values - default... */
289 ret = reg_write(client, MT9T031_HORIZONTAL_BLANKING, hblank);
291 ret = reg_write(client, MT9T031_VERTICAL_BLANKING, vblank);
293 if (yskip != mt9t031->yskip || xskip != mt9t031->xskip) {
294 /* Binning, skipping */
296 ret = reg_write(client, MT9T031_COLUMN_ADDRESS_MODE,
297 ((xbin - 1) << 4) | (xskip - 1));
299 ret = reg_write(client, MT9T031_ROW_ADDRESS_MODE,
300 ((ybin - 1) << 4) | (yskip - 1));
302 dev_dbg(&icd->dev, "new physical left %u, top %u\n", left, top);
304 /* The caller provides a supported format, as guaranteed by
305 * icd->try_fmt_cap(), soc_camera_s_crop() and soc_camera_cropcap() */
307 ret = reg_write(client, MT9T031_COLUMN_START, left);
309 ret = reg_write(client, MT9T031_ROW_START, top);
311 ret = reg_write(client, MT9T031_WINDOW_WIDTH, width - 1);
313 ret = reg_write(client, MT9T031_WINDOW_HEIGHT,
314 height + icd->y_skip_top - 1);
315 if (ret >= 0 && mt9t031->autoexposure) {
316 ret = set_shutter(client, height + icd->y_skip_top + vblank);
318 const u32 shutter_max = MT9T031_MAX_HEIGHT + vblank;
319 const struct v4l2_queryctrl *qctrl =
320 soc_camera_find_qctrl(icd->ops,
322 icd->exposure = (shutter_max / 2 + (height +
323 icd->y_skip_top + vblank - 1) *
324 (qctrl->maximum - qctrl->minimum)) /
325 shutter_max + qctrl->minimum;
329 /* Re-enable register update, commit all changes */
331 ret = reg_clear(client, MT9T031_OUTPUT_CONTROL, 1);
333 return ret < 0 ? ret : 0;
336 static int mt9t031_set_crop(struct soc_camera_device *icd,
337 struct v4l2_rect *rect)
339 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
341 /* CROP - no change in scaling, or in limits */
342 return mt9t031_set_params(icd, rect, mt9t031->xskip, mt9t031->yskip);
345 static int mt9t031_set_fmt(struct soc_camera_device *icd,
346 struct v4l2_format *f)
348 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
351 struct v4l2_rect rect = {
352 .left = icd->x_current,
353 .top = icd->y_current,
354 .width = f->fmt.pix.width,
355 .height = f->fmt.pix.height,
359 * try_fmt has put rectangle within limits.
360 * S_FMT - use binning and skipping for scaling, recalculate
361 * limits, used for cropping
363 /* Is this more optimal than just a division? */
364 for (xskip = 8; xskip > 1; xskip--)
365 if (rect.width * xskip <= MT9T031_MAX_WIDTH)
368 for (yskip = 8; yskip > 1; yskip--)
369 if (rect.height * yskip <= MT9T031_MAX_HEIGHT)
372 recalculate_limits(icd, xskip, yskip);
374 ret = mt9t031_set_params(icd, &rect, xskip, yskip);
376 mt9t031->xskip = xskip;
377 mt9t031->yskip = yskip;
383 static int mt9t031_try_fmt(struct soc_camera_device *icd,
384 struct v4l2_format *f)
386 struct v4l2_pix_format *pix = &f->fmt.pix;
388 if (pix->height < MT9T031_MIN_HEIGHT)
389 pix->height = MT9T031_MIN_HEIGHT;
390 if (pix->height > MT9T031_MAX_HEIGHT)
391 pix->height = MT9T031_MAX_HEIGHT;
392 if (pix->width < MT9T031_MIN_WIDTH)
393 pix->width = MT9T031_MIN_WIDTH;
394 if (pix->width > MT9T031_MAX_WIDTH)
395 pix->width = MT9T031_MAX_WIDTH;
397 pix->width &= ~0x01; /* has to be even */
398 pix->height &= ~0x01; /* has to be even */
403 static int mt9t031_get_chip_id(struct soc_camera_device *icd,
404 struct v4l2_dbg_chip_ident *id)
406 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
408 if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
411 if (id->match.addr != mt9t031->client->addr)
414 id->ident = mt9t031->model;
420 #ifdef CONFIG_VIDEO_ADV_DEBUG
421 static int mt9t031_get_register(struct soc_camera_device *icd,
422 struct v4l2_dbg_register *reg)
424 struct i2c_client *client = to_i2c_client(icd->control);
426 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
429 if (reg->match.addr != client->addr)
432 reg->val = reg_read(client, reg->reg);
434 if (reg->val > 0xffff)
440 static int mt9t031_set_register(struct soc_camera_device *icd,
441 struct v4l2_dbg_register *reg)
443 struct i2c_client *client = to_i2c_client(icd->control);
445 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
448 if (reg->match.addr != client->addr)
451 if (reg_write(client, reg->reg, reg->val) < 0)
458 static const struct v4l2_queryctrl mt9t031_controls[] = {
460 .id = V4L2_CID_VFLIP,
461 .type = V4L2_CTRL_TYPE_BOOLEAN,
462 .name = "Flip Vertically",
468 .id = V4L2_CID_HFLIP,
469 .type = V4L2_CTRL_TYPE_BOOLEAN,
470 .name = "Flip Horizontally",
477 .type = V4L2_CTRL_TYPE_INTEGER,
483 .flags = V4L2_CTRL_FLAG_SLIDER,
485 .id = V4L2_CID_EXPOSURE,
486 .type = V4L2_CTRL_TYPE_INTEGER,
491 .default_value = 255,
492 .flags = V4L2_CTRL_FLAG_SLIDER,
494 .id = V4L2_CID_EXPOSURE_AUTO,
495 .type = V4L2_CTRL_TYPE_BOOLEAN,
496 .name = "Automatic Exposure",
504 static int mt9t031_video_probe(struct soc_camera_device *);
505 static void mt9t031_video_remove(struct soc_camera_device *);
506 static int mt9t031_get_control(struct soc_camera_device *, struct v4l2_control *);
507 static int mt9t031_set_control(struct soc_camera_device *, struct v4l2_control *);
509 static struct soc_camera_ops mt9t031_ops = {
510 .owner = THIS_MODULE,
511 .probe = mt9t031_video_probe,
512 .remove = mt9t031_video_remove,
513 .init = mt9t031_init,
514 .release = mt9t031_release,
515 .start_capture = mt9t031_start_capture,
516 .stop_capture = mt9t031_stop_capture,
517 .set_crop = mt9t031_set_crop,
518 .set_fmt = mt9t031_set_fmt,
519 .try_fmt = mt9t031_try_fmt,
520 .set_bus_param = mt9t031_set_bus_param,
521 .query_bus_param = mt9t031_query_bus_param,
522 .controls = mt9t031_controls,
523 .num_controls = ARRAY_SIZE(mt9t031_controls),
524 .get_control = mt9t031_get_control,
525 .set_control = mt9t031_set_control,
526 .get_chip_id = mt9t031_get_chip_id,
527 #ifdef CONFIG_VIDEO_ADV_DEBUG
528 .get_register = mt9t031_get_register,
529 .set_register = mt9t031_set_register,
533 static int mt9t031_get_control(struct soc_camera_device *icd, struct v4l2_control *ctrl)
535 struct i2c_client *client = to_i2c_client(icd->control);
536 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
541 data = reg_read(client, MT9T031_READ_MODE_2);
544 ctrl->value = !!(data & 0x8000);
547 data = reg_read(client, MT9T031_READ_MODE_2);
550 ctrl->value = !!(data & 0x4000);
552 case V4L2_CID_EXPOSURE_AUTO:
553 ctrl->value = mt9t031->autoexposure;
559 static int mt9t031_set_control(struct soc_camera_device *icd, struct v4l2_control *ctrl)
561 struct i2c_client *client = to_i2c_client(icd->control);
562 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
563 const struct v4l2_queryctrl *qctrl;
566 qctrl = soc_camera_find_qctrl(&mt9t031_ops, ctrl->id);
574 data = reg_set(client, MT9T031_READ_MODE_2, 0x8000);
576 data = reg_clear(client, MT9T031_READ_MODE_2, 0x8000);
582 data = reg_set(client, MT9T031_READ_MODE_2, 0x4000);
584 data = reg_clear(client, MT9T031_READ_MODE_2, 0x4000);
589 if (ctrl->value > qctrl->maximum || ctrl->value < qctrl->minimum)
591 /* See Datasheet Table 7, Gain settings. */
592 if (ctrl->value <= qctrl->default_value) {
593 /* Pack it into 0..1 step 0.125, register values 0..8 */
594 unsigned long range = qctrl->default_value - qctrl->minimum;
595 data = ((ctrl->value - qctrl->minimum) * 8 + range / 2) / range;
597 dev_dbg(&icd->dev, "Setting gain %d\n", data);
598 data = reg_write(client, MT9T031_GLOBAL_GAIN, data);
602 /* Pack it into 1.125..128 variable step, register values 9..0x7860 */
603 /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
604 unsigned long range = qctrl->maximum - qctrl->default_value - 1;
605 /* calculated gain: map 65..127 to 9..1024 step 0.125 */
606 unsigned long gain = ((ctrl->value - qctrl->default_value - 1) *
607 1015 + range / 2) / range + 9;
609 if (gain <= 32) /* calculated gain 9..32 -> 9..32 */
611 else if (gain <= 64) /* calculated gain 33..64 -> 0x51..0x60 */
612 data = ((gain - 32) * 16 + 16) / 32 + 80;
614 /* calculated gain 65..1024 -> (1..120) << 8 + 0x60 */
615 data = (((gain - 64 + 7) * 32) & 0xff00) | 0x60;
617 dev_dbg(&icd->dev, "Setting gain from 0x%x to 0x%x\n",
618 reg_read(client, MT9T031_GLOBAL_GAIN), data);
619 data = reg_write(client, MT9T031_GLOBAL_GAIN, data);
625 icd->gain = ctrl->value;
627 case V4L2_CID_EXPOSURE:
628 /* mt9t031 has maximum == default */
629 if (ctrl->value > qctrl->maximum || ctrl->value < qctrl->minimum)
632 const unsigned long range = qctrl->maximum - qctrl->minimum;
633 const u32 shutter = ((ctrl->value - qctrl->minimum) * 1048 +
634 range / 2) / range + 1;
637 get_shutter(client, &old);
638 dev_dbg(&icd->dev, "Setting shutter width from %u to %u\n",
640 if (set_shutter(client, shutter) < 0)
642 icd->exposure = ctrl->value;
643 mt9t031->autoexposure = 0;
646 case V4L2_CID_EXPOSURE_AUTO:
648 const u16 vblank = MT9T031_VERTICAL_BLANK;
649 const u32 shutter_max = MT9T031_MAX_HEIGHT + vblank;
650 if (set_shutter(client, icd->height +
651 icd->y_skip_top + vblank) < 0)
653 qctrl = soc_camera_find_qctrl(icd->ops, V4L2_CID_EXPOSURE);
654 icd->exposure = (shutter_max / 2 + (icd->height +
655 icd->y_skip_top + vblank - 1) *
656 (qctrl->maximum - qctrl->minimum)) /
657 shutter_max + qctrl->minimum;
658 mt9t031->autoexposure = 1;
660 mt9t031->autoexposure = 0;
666 /* Interface active, can use i2c. If it fails, it can indeed mean, that
667 * this wasn't our capture interface, so, we wait for the right one */
668 static int mt9t031_video_probe(struct soc_camera_device *icd)
670 struct i2c_client *client = to_i2c_client(icd->control);
671 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
675 /* We must have a parent by now. And it cannot be a wrong one.
676 * So this entire test is completely redundant. */
677 if (!icd->dev.parent ||
678 to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
681 /* Enable the chip */
682 data = reg_write(client, MT9T031_CHIP_ENABLE, 1);
683 dev_dbg(&icd->dev, "write: %d\n", data);
685 /* Read out the chip version register */
686 data = reg_read(client, MT9T031_CHIP_VERSION);
690 mt9t031->model = V4L2_IDENT_MT9T031;
691 icd->formats = mt9t031_colour_formats;
692 icd->num_formats = ARRAY_SIZE(mt9t031_colour_formats);
697 "No MT9T031 chip detected, register read %x\n", data);
701 dev_info(&icd->dev, "Detected a MT9T031 chip ID %x\n", data);
703 /* Now that we know the model, we can start video */
704 ret = soc_camera_video_start(icd);
715 static void mt9t031_video_remove(struct soc_camera_device *icd)
717 struct mt9t031 *mt9t031 = container_of(icd, struct mt9t031, icd);
719 dev_dbg(&icd->dev, "Video %x removed: %p, %p\n", mt9t031->client->addr,
720 icd->dev.parent, icd->vdev);
721 soc_camera_video_stop(icd);
724 static int mt9t031_probe(struct i2c_client *client,
725 const struct i2c_device_id *did)
727 struct mt9t031 *mt9t031;
728 struct soc_camera_device *icd;
729 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
730 struct soc_camera_link *icl = client->dev.platform_data;
734 dev_err(&client->dev, "MT9T031 driver needs platform data\n");
738 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
739 dev_warn(&adapter->dev,
740 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
744 mt9t031 = kzalloc(sizeof(struct mt9t031), GFP_KERNEL);
748 mt9t031->client = client;
749 i2c_set_clientdata(client, mt9t031);
751 /* Second stage probe - when a capture adapter is there */
753 icd->ops = &mt9t031_ops;
754 icd->control = &client->dev;
755 icd->x_min = MT9T031_COLUMN_SKIP;
756 icd->y_min = MT9T031_ROW_SKIP;
757 icd->x_current = icd->x_min;
758 icd->y_current = icd->y_min;
759 icd->width_min = MT9T031_MIN_WIDTH;
760 icd->width_max = MT9T031_MAX_WIDTH;
761 icd->height_min = MT9T031_MIN_HEIGHT;
762 icd->height_max = MT9T031_MAX_HEIGHT;
764 icd->iface = icl->bus_id;
765 /* Simulated autoexposure. If enabled, we calculate shutter width
766 * ourselves in the driver based on vertical blanking and frame width */
767 mt9t031->autoexposure = 1;
772 ret = soc_camera_device_register(icd);
779 i2c_set_clientdata(client, NULL);
784 static int mt9t031_remove(struct i2c_client *client)
786 struct mt9t031 *mt9t031 = i2c_get_clientdata(client);
788 soc_camera_device_unregister(&mt9t031->icd);
789 i2c_set_clientdata(client, NULL);
795 static const struct i2c_device_id mt9t031_id[] = {
799 MODULE_DEVICE_TABLE(i2c, mt9t031_id);
801 static struct i2c_driver mt9t031_i2c_driver = {
805 .probe = mt9t031_probe,
806 .remove = mt9t031_remove,
807 .id_table = mt9t031_id,
810 static int __init mt9t031_mod_init(void)
812 return i2c_add_driver(&mt9t031_i2c_driver);
815 static void __exit mt9t031_mod_exit(void)
817 i2c_del_driver(&mt9t031_i2c_driver);
820 module_init(mt9t031_mod_init);
821 module_exit(mt9t031_mod_exit);
823 MODULE_DESCRIPTION("Micron MT9T031 Camera driver");
824 MODULE_AUTHOR("Guennadi Liakhovetski <lg@denx.de>");
825 MODULE_LICENSE("GPL v2");