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/device.h>
12 #include <linux/i2c.h>
13 #include <linux/log2.h>
15 #include <linux/slab.h>
16 #include <linux/v4l2-mediabus.h>
17 #include <linux/videodev2.h>
18 #include <linux/module.h>
20 #include <media/soc_camera.h>
21 #include <media/v4l2-chip-ident.h>
22 #include <media/v4l2-subdev.h>
23 #include <media/v4l2-ctrls.h>
26 * ATTENTION: this driver still cannot be used outside of the soc-camera
27 * framework because of its PM implementation, using the video_device node.
28 * If hardware becomes available for testing, alternative PM approaches shall
29 * be considered and tested.
33 * mt9t031 i2c address 0x5d
34 * The platform has to define i2c_board_info and link to it from
35 * struct soc_camera_link
38 /* mt9t031 selected register addresses */
39 #define MT9T031_CHIP_VERSION 0x00
40 #define MT9T031_ROW_START 0x01
41 #define MT9T031_COLUMN_START 0x02
42 #define MT9T031_WINDOW_HEIGHT 0x03
43 #define MT9T031_WINDOW_WIDTH 0x04
44 #define MT9T031_HORIZONTAL_BLANKING 0x05
45 #define MT9T031_VERTICAL_BLANKING 0x06
46 #define MT9T031_OUTPUT_CONTROL 0x07
47 #define MT9T031_SHUTTER_WIDTH_UPPER 0x08
48 #define MT9T031_SHUTTER_WIDTH 0x09
49 #define MT9T031_PIXEL_CLOCK_CONTROL 0x0a
50 #define MT9T031_FRAME_RESTART 0x0b
51 #define MT9T031_SHUTTER_DELAY 0x0c
52 #define MT9T031_RESET 0x0d
53 #define MT9T031_READ_MODE_1 0x1e
54 #define MT9T031_READ_MODE_2 0x20
55 #define MT9T031_READ_MODE_3 0x21
56 #define MT9T031_ROW_ADDRESS_MODE 0x22
57 #define MT9T031_COLUMN_ADDRESS_MODE 0x23
58 #define MT9T031_GLOBAL_GAIN 0x35
59 #define MT9T031_CHIP_ENABLE 0xF8
61 #define MT9T031_MAX_HEIGHT 1536
62 #define MT9T031_MAX_WIDTH 2048
63 #define MT9T031_MIN_HEIGHT 2
64 #define MT9T031_MIN_WIDTH 18
65 #define MT9T031_HORIZONTAL_BLANK 142
66 #define MT9T031_VERTICAL_BLANK 25
67 #define MT9T031_COLUMN_SKIP 32
68 #define MT9T031_ROW_SKIP 20
71 struct v4l2_subdev subdev
;
72 struct v4l2_ctrl_handler hdl
;
74 /* exposure/auto-exposure cluster */
75 struct v4l2_ctrl
*autoexposure
;
76 struct v4l2_ctrl
*exposure
;
78 struct v4l2_rect rect
; /* Sensor window */
79 int model
; /* V4L2_IDENT_MT9T031* codes from v4l2-chip-ident.h */
83 unsigned short y_skip_top
; /* Lines to skip at the top */
86 static struct mt9t031
*to_mt9t031(const struct i2c_client
*client
)
88 return container_of(i2c_get_clientdata(client
), struct mt9t031
, subdev
);
91 static int reg_read(struct i2c_client
*client
, const u8 reg
)
93 return i2c_smbus_read_word_swapped(client
, reg
);
96 static int reg_write(struct i2c_client
*client
, const u8 reg
,
99 return i2c_smbus_write_word_swapped(client
, reg
, data
);
102 static int reg_set(struct i2c_client
*client
, const u8 reg
,
107 ret
= reg_read(client
, reg
);
110 return reg_write(client
, reg
, ret
| data
);
113 static int reg_clear(struct i2c_client
*client
, const u8 reg
,
118 ret
= reg_read(client
, reg
);
121 return reg_write(client
, reg
, ret
& ~data
);
124 static int set_shutter(struct i2c_client
*client
, const u32 data
)
128 ret
= reg_write(client
, MT9T031_SHUTTER_WIDTH_UPPER
, data
>> 16);
131 ret
= reg_write(client
, MT9T031_SHUTTER_WIDTH
, data
& 0xffff);
136 static int get_shutter(struct i2c_client
*client
, u32
*data
)
140 ret
= reg_read(client
, MT9T031_SHUTTER_WIDTH_UPPER
);
144 ret
= reg_read(client
, MT9T031_SHUTTER_WIDTH
);
145 *data
|= ret
& 0xffff;
147 return ret
< 0 ? ret
: 0;
150 static int mt9t031_idle(struct i2c_client
*client
)
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 return ret
>= 0 ? 0 : -EIO
;
164 static int mt9t031_disable(struct i2c_client
*client
)
166 /* Disable the chip */
167 reg_clear(client
, MT9T031_OUTPUT_CONTROL
, 2);
172 static int mt9t031_s_stream(struct v4l2_subdev
*sd
, int enable
)
174 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
178 /* Switch to master "normal" mode */
179 ret
= reg_set(client
, MT9T031_OUTPUT_CONTROL
, 2);
181 /* Stop sensor readout */
182 ret
= reg_clear(client
, MT9T031_OUTPUT_CONTROL
, 2);
190 /* target must be _even_ */
191 static u16
mt9t031_skip(s32
*source
, s32 target
, s32 max
)
195 if (*source
< target
+ target
/ 2) {
200 skip
= min(max
, *source
+ target
/ 2) / target
;
203 *source
= target
* skip
;
208 /* rect is the sensor rectangle, the caller guarantees parameter validity */
209 static int mt9t031_set_params(struct i2c_client
*client
,
210 struct v4l2_rect
*rect
, u16 xskip
, u16 yskip
)
212 struct mt9t031
*mt9t031
= to_mt9t031(client
);
215 const u16 hblank
= MT9T031_HORIZONTAL_BLANK
,
216 vblank
= MT9T031_VERTICAL_BLANK
;
218 xbin
= min(xskip
, (u16
)3);
219 ybin
= min(yskip
, (u16
)3);
222 * Could just do roundup(rect->left, [xy]bin * 2); but this is cheaper.
223 * There is always a valid suitably aligned value. The worst case is
224 * xbin = 3, width = 2048. Then we will start at 36, the last read out
225 * pixel will be 2083, which is < 2085 - first black pixel.
227 * MT9T031 datasheet imposes window left border alignment, depending on
228 * the selected xskip. Failing to conform to this requirement produces
229 * dark horizontal stripes in the image. However, even obeying to this
230 * requirement doesn't eliminate the stripes in all configurations. They
231 * appear "locally reproducibly," but can differ between tests under
232 * different lighting conditions.
242 rect
->left
= rect
->left
> roundup(MT9T031_COLUMN_SKIP
, 6) ?
243 (rect
->left
/ 6) * 6 : roundup(MT9T031_COLUMN_SKIP
, 6);
248 dev_dbg(&client
->dev
, "skip %u:%u, rect %ux%u@%u:%u\n",
249 xskip
, yskip
, rect
->width
, rect
->height
, rect
->left
, rect
->top
);
251 /* Disable register update, reconfigure atomically */
252 ret
= reg_set(client
, MT9T031_OUTPUT_CONTROL
, 1);
256 /* Blanking and start values - default... */
257 ret
= reg_write(client
, MT9T031_HORIZONTAL_BLANKING
, hblank
);
259 ret
= reg_write(client
, MT9T031_VERTICAL_BLANKING
, vblank
);
261 if (yskip
!= mt9t031
->yskip
|| xskip
!= mt9t031
->xskip
) {
262 /* Binning, skipping */
264 ret
= reg_write(client
, MT9T031_COLUMN_ADDRESS_MODE
,
265 ((xbin
- 1) << 4) | (xskip
- 1));
267 ret
= reg_write(client
, MT9T031_ROW_ADDRESS_MODE
,
268 ((ybin
- 1) << 4) | (yskip
- 1));
270 dev_dbg(&client
->dev
, "new physical left %u, top %u\n",
271 rect
->left
, rect
->top
);
274 * The caller provides a supported format, as guaranteed by
275 * .try_mbus_fmt(), soc_camera_s_crop() and soc_camera_cropcap()
278 ret
= reg_write(client
, MT9T031_COLUMN_START
, rect
->left
);
280 ret
= reg_write(client
, MT9T031_ROW_START
, rect
->top
);
282 ret
= reg_write(client
, MT9T031_WINDOW_WIDTH
, rect
->width
- 1);
284 ret
= reg_write(client
, MT9T031_WINDOW_HEIGHT
,
285 rect
->height
+ mt9t031
->y_skip_top
- 1);
286 if (ret
>= 0 && v4l2_ctrl_g_ctrl(mt9t031
->autoexposure
) == V4L2_EXPOSURE_AUTO
) {
287 mt9t031
->total_h
= rect
->height
+ mt9t031
->y_skip_top
+ vblank
;
289 ret
= set_shutter(client
, mt9t031
->total_h
);
292 /* Re-enable register update, commit all changes */
294 ret
= reg_clear(client
, MT9T031_OUTPUT_CONTROL
, 1);
297 mt9t031
->rect
= *rect
;
298 mt9t031
->xskip
= xskip
;
299 mt9t031
->yskip
= yskip
;
302 return ret
< 0 ? ret
: 0;
305 static int mt9t031_s_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
307 struct v4l2_rect rect
= a
->c
;
308 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
309 struct mt9t031
*mt9t031
= to_mt9t031(client
);
311 rect
.width
= ALIGN(rect
.width
, 2);
312 rect
.height
= ALIGN(rect
.height
, 2);
314 soc_camera_limit_side(&rect
.left
, &rect
.width
,
315 MT9T031_COLUMN_SKIP
, MT9T031_MIN_WIDTH
, MT9T031_MAX_WIDTH
);
317 soc_camera_limit_side(&rect
.top
, &rect
.height
,
318 MT9T031_ROW_SKIP
, MT9T031_MIN_HEIGHT
, MT9T031_MAX_HEIGHT
);
320 return mt9t031_set_params(client
, &rect
, mt9t031
->xskip
, mt9t031
->yskip
);
323 static int mt9t031_g_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
325 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
326 struct mt9t031
*mt9t031
= to_mt9t031(client
);
328 a
->c
= mt9t031
->rect
;
329 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
334 static int mt9t031_cropcap(struct v4l2_subdev
*sd
, struct v4l2_cropcap
*a
)
336 a
->bounds
.left
= MT9T031_COLUMN_SKIP
;
337 a
->bounds
.top
= MT9T031_ROW_SKIP
;
338 a
->bounds
.width
= MT9T031_MAX_WIDTH
;
339 a
->bounds
.height
= MT9T031_MAX_HEIGHT
;
340 a
->defrect
= a
->bounds
;
341 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
342 a
->pixelaspect
.numerator
= 1;
343 a
->pixelaspect
.denominator
= 1;
348 static int mt9t031_g_fmt(struct v4l2_subdev
*sd
,
349 struct v4l2_mbus_framefmt
*mf
)
351 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
352 struct mt9t031
*mt9t031
= to_mt9t031(client
);
354 mf
->width
= mt9t031
->rect
.width
/ mt9t031
->xskip
;
355 mf
->height
= mt9t031
->rect
.height
/ mt9t031
->yskip
;
356 mf
->code
= V4L2_MBUS_FMT_SBGGR10_1X10
;
357 mf
->colorspace
= V4L2_COLORSPACE_SRGB
;
358 mf
->field
= V4L2_FIELD_NONE
;
363 static int mt9t031_s_fmt(struct v4l2_subdev
*sd
,
364 struct v4l2_mbus_framefmt
*mf
)
366 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
367 struct mt9t031
*mt9t031
= to_mt9t031(client
);
369 struct v4l2_rect rect
= mt9t031
->rect
;
372 * try_fmt has put width and height within limits.
373 * S_FMT: use binning and skipping for scaling
375 xskip
= mt9t031_skip(&rect
.width
, mf
->width
, MT9T031_MAX_WIDTH
);
376 yskip
= mt9t031_skip(&rect
.height
, mf
->height
, MT9T031_MAX_HEIGHT
);
378 mf
->code
= V4L2_MBUS_FMT_SBGGR10_1X10
;
379 mf
->colorspace
= V4L2_COLORSPACE_SRGB
;
381 /* mt9t031_set_params() doesn't change width and height */
382 return mt9t031_set_params(client
, &rect
, xskip
, yskip
);
386 * If a user window larger than sensor window is requested, we'll increase the
389 static int mt9t031_try_fmt(struct v4l2_subdev
*sd
,
390 struct v4l2_mbus_framefmt
*mf
)
392 v4l_bound_align_image(
393 &mf
->width
, MT9T031_MIN_WIDTH
, MT9T031_MAX_WIDTH
, 1,
394 &mf
->height
, MT9T031_MIN_HEIGHT
, MT9T031_MAX_HEIGHT
, 1, 0);
396 mf
->code
= V4L2_MBUS_FMT_SBGGR10_1X10
;
397 mf
->colorspace
= V4L2_COLORSPACE_SRGB
;
402 static int mt9t031_g_chip_ident(struct v4l2_subdev
*sd
,
403 struct v4l2_dbg_chip_ident
*id
)
405 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
406 struct mt9t031
*mt9t031
= to_mt9t031(client
);
408 if (id
->match
.type
!= V4L2_CHIP_MATCH_I2C_ADDR
)
411 if (id
->match
.addr
!= client
->addr
)
414 id
->ident
= mt9t031
->model
;
420 #ifdef CONFIG_VIDEO_ADV_DEBUG
421 static int mt9t031_g_register(struct v4l2_subdev
*sd
,
422 struct v4l2_dbg_register
*reg
)
424 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
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_s_register(struct v4l2_subdev
*sd
,
441 struct v4l2_dbg_register
*reg
)
443 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
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 int mt9t031_g_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
460 struct mt9t031
*mt9t031
= container_of(ctrl
->handler
,
461 struct mt9t031
, hdl
);
462 const u32 shutter_max
= MT9T031_MAX_HEIGHT
+ MT9T031_VERTICAL_BLANK
;
466 case V4L2_CID_EXPOSURE_AUTO
:
467 min
= mt9t031
->exposure
->minimum
;
468 max
= mt9t031
->exposure
->maximum
;
469 mt9t031
->exposure
->val
=
470 (shutter_max
/ 2 + (mt9t031
->total_h
- 1) * (max
- min
))
477 static int mt9t031_s_ctrl(struct v4l2_ctrl
*ctrl
)
479 struct mt9t031
*mt9t031
= container_of(ctrl
->handler
,
480 struct mt9t031
, hdl
);
481 struct v4l2_subdev
*sd
= &mt9t031
->subdev
;
482 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
483 struct v4l2_ctrl
*exp
= mt9t031
->exposure
;
489 data
= reg_set(client
, MT9T031_READ_MODE_2
, 0x8000);
491 data
= reg_clear(client
, MT9T031_READ_MODE_2
, 0x8000);
497 data
= reg_set(client
, MT9T031_READ_MODE_2
, 0x4000);
499 data
= reg_clear(client
, MT9T031_READ_MODE_2
, 0x4000);
504 /* See Datasheet Table 7, Gain settings. */
505 if (ctrl
->val
<= ctrl
->default_value
) {
506 /* Pack it into 0..1 step 0.125, register values 0..8 */
507 unsigned long range
= ctrl
->default_value
- ctrl
->minimum
;
508 data
= ((ctrl
->val
- ctrl
->minimum
) * 8 + range
/ 2) / range
;
510 dev_dbg(&client
->dev
, "Setting gain %d\n", data
);
511 data
= reg_write(client
, MT9T031_GLOBAL_GAIN
, data
);
515 /* Pack it into 1.125..128 variable step, register values 9..0x7860 */
516 /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
517 unsigned long range
= ctrl
->maximum
- ctrl
->default_value
- 1;
518 /* calculated gain: map 65..127 to 9..1024 step 0.125 */
519 unsigned long gain
= ((ctrl
->val
- ctrl
->default_value
- 1) *
520 1015 + range
/ 2) / range
+ 9;
522 if (gain
<= 32) /* calculated gain 9..32 -> 9..32 */
524 else if (gain
<= 64) /* calculated gain 33..64 -> 0x51..0x60 */
525 data
= ((gain
- 32) * 16 + 16) / 32 + 80;
527 /* calculated gain 65..1024 -> (1..120) << 8 + 0x60 */
528 data
= (((gain
- 64 + 7) * 32) & 0xff00) | 0x60;
530 dev_dbg(&client
->dev
, "Set gain from 0x%x to 0x%x\n",
531 reg_read(client
, MT9T031_GLOBAL_GAIN
), data
);
532 data
= reg_write(client
, MT9T031_GLOBAL_GAIN
, data
);
538 case V4L2_CID_EXPOSURE_AUTO
:
539 if (ctrl
->val
== V4L2_EXPOSURE_MANUAL
) {
540 unsigned int range
= exp
->maximum
- exp
->minimum
;
541 unsigned int shutter
= ((exp
->val
- exp
->minimum
) * 1048 +
542 range
/ 2) / range
+ 1;
545 get_shutter(client
, &old
);
546 dev_dbg(&client
->dev
, "Set shutter from %u to %u\n",
548 if (set_shutter(client
, shutter
) < 0)
551 const u16 vblank
= MT9T031_VERTICAL_BLANK
;
552 mt9t031
->total_h
= mt9t031
->rect
.height
+
553 mt9t031
->y_skip_top
+ vblank
;
555 if (set_shutter(client
, mt9t031
->total_h
) < 0)
567 * This function does nothing for now but must be present for pm to work
569 static int mt9t031_runtime_suspend(struct device
*dev
)
576 * COLUMN_ADDRESS_MODE and ROW_ADDRESS_MODE are not rewritten if unchanged
577 * they are however changed at reset if the platform hook is present
578 * thus we rewrite them with the values stored by the driver
580 static int mt9t031_runtime_resume(struct device
*dev
)
582 struct video_device
*vdev
= to_video_device(dev
);
583 struct v4l2_subdev
*sd
= soc_camera_vdev_to_subdev(vdev
);
584 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
585 struct mt9t031
*mt9t031
= to_mt9t031(client
);
590 xbin
= min(mt9t031
->xskip
, (u16
)3);
591 ybin
= min(mt9t031
->yskip
, (u16
)3);
593 ret
= reg_write(client
, MT9T031_COLUMN_ADDRESS_MODE
,
594 ((xbin
- 1) << 4) | (mt9t031
->xskip
- 1));
598 ret
= reg_write(client
, MT9T031_ROW_ADDRESS_MODE
,
599 ((ybin
- 1) << 4) | (mt9t031
->yskip
- 1));
606 static struct dev_pm_ops mt9t031_dev_pm_ops
= {
607 .runtime_suspend
= mt9t031_runtime_suspend
,
608 .runtime_resume
= mt9t031_runtime_resume
,
611 static struct device_type mt9t031_dev_type
= {
613 .pm
= &mt9t031_dev_pm_ops
,
616 static int mt9t031_s_power(struct v4l2_subdev
*sd
, int on
)
618 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
619 struct video_device
*vdev
= soc_camera_i2c_to_vdev(client
);
622 vdev
->dev
.type
= &mt9t031_dev_type
;
624 vdev
->dev
.type
= NULL
;
630 * Interface active, can use i2c. If it fails, it can indeed mean, that
631 * this wasn't our capture interface, so, we wait for the right one
633 static int mt9t031_video_probe(struct i2c_client
*client
)
635 struct mt9t031
*mt9t031
= to_mt9t031(client
);
639 /* Enable the chip */
640 data
= reg_write(client
, MT9T031_CHIP_ENABLE
, 1);
641 dev_dbg(&client
->dev
, "write: %d\n", data
);
643 /* Read out the chip version register */
644 data
= reg_read(client
, MT9T031_CHIP_VERSION
);
648 mt9t031
->model
= V4L2_IDENT_MT9T031
;
651 dev_err(&client
->dev
,
652 "No MT9T031 chip detected, register read %x\n", data
);
656 dev_info(&client
->dev
, "Detected a MT9T031 chip ID %x\n", data
);
658 ret
= mt9t031_idle(client
);
660 dev_err(&client
->dev
, "Failed to initialise the camera\n");
662 v4l2_ctrl_handler_setup(&mt9t031
->hdl
);
667 static int mt9t031_g_skip_top_lines(struct v4l2_subdev
*sd
, u32
*lines
)
669 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
670 struct mt9t031
*mt9t031
= to_mt9t031(client
);
672 *lines
= mt9t031
->y_skip_top
;
677 static const struct v4l2_ctrl_ops mt9t031_ctrl_ops
= {
678 .g_volatile_ctrl
= mt9t031_g_volatile_ctrl
,
679 .s_ctrl
= mt9t031_s_ctrl
,
682 static struct v4l2_subdev_core_ops mt9t031_subdev_core_ops
= {
683 .g_chip_ident
= mt9t031_g_chip_ident
,
684 .s_power
= mt9t031_s_power
,
685 #ifdef CONFIG_VIDEO_ADV_DEBUG
686 .g_register
= mt9t031_g_register
,
687 .s_register
= mt9t031_s_register
,
691 static int mt9t031_enum_fmt(struct v4l2_subdev
*sd
, unsigned int index
,
692 enum v4l2_mbus_pixelcode
*code
)
697 *code
= V4L2_MBUS_FMT_SBGGR10_1X10
;
701 static int mt9t031_g_mbus_config(struct v4l2_subdev
*sd
,
702 struct v4l2_mbus_config
*cfg
)
704 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
705 struct soc_camera_link
*icl
= soc_camera_i2c_to_link(client
);
707 cfg
->flags
= V4L2_MBUS_MASTER
| V4L2_MBUS_PCLK_SAMPLE_RISING
|
708 V4L2_MBUS_PCLK_SAMPLE_FALLING
| V4L2_MBUS_HSYNC_ACTIVE_HIGH
|
709 V4L2_MBUS_VSYNC_ACTIVE_HIGH
| V4L2_MBUS_DATA_ACTIVE_HIGH
;
710 cfg
->type
= V4L2_MBUS_PARALLEL
;
711 cfg
->flags
= soc_camera_apply_board_flags(icl
, cfg
);
716 static int mt9t031_s_mbus_config(struct v4l2_subdev
*sd
,
717 const struct v4l2_mbus_config
*cfg
)
719 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
720 struct soc_camera_link
*icl
= soc_camera_i2c_to_link(client
);
722 if (soc_camera_apply_board_flags(icl
, cfg
) &
723 V4L2_MBUS_PCLK_SAMPLE_FALLING
)
724 return reg_clear(client
, MT9T031_PIXEL_CLOCK_CONTROL
, 0x8000);
726 return reg_set(client
, MT9T031_PIXEL_CLOCK_CONTROL
, 0x8000);
729 static struct v4l2_subdev_video_ops mt9t031_subdev_video_ops
= {
730 .s_stream
= mt9t031_s_stream
,
731 .s_mbus_fmt
= mt9t031_s_fmt
,
732 .g_mbus_fmt
= mt9t031_g_fmt
,
733 .try_mbus_fmt
= mt9t031_try_fmt
,
734 .s_crop
= mt9t031_s_crop
,
735 .g_crop
= mt9t031_g_crop
,
736 .cropcap
= mt9t031_cropcap
,
737 .enum_mbus_fmt
= mt9t031_enum_fmt
,
738 .g_mbus_config
= mt9t031_g_mbus_config
,
739 .s_mbus_config
= mt9t031_s_mbus_config
,
742 static struct v4l2_subdev_sensor_ops mt9t031_subdev_sensor_ops
= {
743 .g_skip_top_lines
= mt9t031_g_skip_top_lines
,
746 static struct v4l2_subdev_ops mt9t031_subdev_ops
= {
747 .core
= &mt9t031_subdev_core_ops
,
748 .video
= &mt9t031_subdev_video_ops
,
749 .sensor
= &mt9t031_subdev_sensor_ops
,
752 static int mt9t031_probe(struct i2c_client
*client
,
753 const struct i2c_device_id
*did
)
755 struct mt9t031
*mt9t031
;
756 struct soc_camera_link
*icl
= soc_camera_i2c_to_link(client
);
757 struct i2c_adapter
*adapter
= to_i2c_adapter(client
->dev
.parent
);
761 dev_err(&client
->dev
, "MT9T031 driver needs platform data\n");
765 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_WORD_DATA
)) {
766 dev_warn(&adapter
->dev
,
767 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
771 mt9t031
= kzalloc(sizeof(struct mt9t031
), GFP_KERNEL
);
775 v4l2_i2c_subdev_init(&mt9t031
->subdev
, client
, &mt9t031_subdev_ops
);
776 v4l2_ctrl_handler_init(&mt9t031
->hdl
, 5);
777 v4l2_ctrl_new_std(&mt9t031
->hdl
, &mt9t031_ctrl_ops
,
778 V4L2_CID_VFLIP
, 0, 1, 1, 0);
779 v4l2_ctrl_new_std(&mt9t031
->hdl
, &mt9t031_ctrl_ops
,
780 V4L2_CID_HFLIP
, 0, 1, 1, 0);
781 v4l2_ctrl_new_std(&mt9t031
->hdl
, &mt9t031_ctrl_ops
,
782 V4L2_CID_GAIN
, 0, 127, 1, 64);
785 * Simulated autoexposure. If enabled, we calculate shutter width
786 * ourselves in the driver based on vertical blanking and frame width
788 mt9t031
->autoexposure
= v4l2_ctrl_new_std_menu(&mt9t031
->hdl
,
789 &mt9t031_ctrl_ops
, V4L2_CID_EXPOSURE_AUTO
, 1, 0,
791 mt9t031
->exposure
= v4l2_ctrl_new_std(&mt9t031
->hdl
, &mt9t031_ctrl_ops
,
792 V4L2_CID_EXPOSURE
, 1, 255, 1, 255);
794 mt9t031
->subdev
.ctrl_handler
= &mt9t031
->hdl
;
795 if (mt9t031
->hdl
.error
) {
796 int err
= mt9t031
->hdl
.error
;
801 v4l2_ctrl_auto_cluster(2, &mt9t031
->autoexposure
,
802 V4L2_EXPOSURE_MANUAL
, true);
804 mt9t031
->y_skip_top
= 0;
805 mt9t031
->rect
.left
= MT9T031_COLUMN_SKIP
;
806 mt9t031
->rect
.top
= MT9T031_ROW_SKIP
;
807 mt9t031
->rect
.width
= MT9T031_MAX_WIDTH
;
808 mt9t031
->rect
.height
= MT9T031_MAX_HEIGHT
;
813 mt9t031_idle(client
);
815 ret
= mt9t031_video_probe(client
);
817 mt9t031_disable(client
);
820 v4l2_ctrl_handler_free(&mt9t031
->hdl
);
827 static int mt9t031_remove(struct i2c_client
*client
)
829 struct mt9t031
*mt9t031
= to_mt9t031(client
);
831 v4l2_device_unregister_subdev(&mt9t031
->subdev
);
832 v4l2_ctrl_handler_free(&mt9t031
->hdl
);
838 static const struct i2c_device_id mt9t031_id
[] = {
842 MODULE_DEVICE_TABLE(i2c
, mt9t031_id
);
844 static struct i2c_driver mt9t031_i2c_driver
= {
848 .probe
= mt9t031_probe
,
849 .remove
= mt9t031_remove
,
850 .id_table
= mt9t031_id
,
853 static int __init
mt9t031_mod_init(void)
855 return i2c_add_driver(&mt9t031_i2c_driver
);
858 static void __exit
mt9t031_mod_exit(void)
860 i2c_del_driver(&mt9t031_i2c_driver
);
863 module_init(mt9t031_mod_init
);
864 module_exit(mt9t031_mod_exit
);
866 MODULE_DESCRIPTION("Micron MT9T031 Camera driver");
867 MODULE_AUTHOR("Guennadi Liakhovetski <lg@denx.de>");
868 MODULE_LICENSE("GPL v2");