2 * Driver for MT9V022 CMOS Image Sensor from Micron
4 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.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/delay.h>
15 #include <linux/log2.h>
16 #include <linux/module.h>
18 #include <media/mt9v022.h>
19 #include <media/soc_camera.h>
20 #include <media/soc_mediabus.h>
21 #include <media/v4l2-subdev.h>
22 #include <media/v4l2-clk.h>
23 #include <media/v4l2-ctrls.h>
26 * mt9v022 i2c address 0x48, 0x4c, 0x58, 0x5c
27 * The platform has to define struct i2c_board_info objects and link to them
28 * from struct soc_camera_host_desc
31 static char *sensor_type
;
32 module_param(sensor_type
, charp
, S_IRUGO
);
33 MODULE_PARM_DESC(sensor_type
, "Sensor type: \"colour\" or \"monochrome\"");
35 /* mt9v022 selected register addresses */
36 #define MT9V022_CHIP_VERSION 0x00
37 #define MT9V022_COLUMN_START 0x01
38 #define MT9V022_ROW_START 0x02
39 #define MT9V022_WINDOW_HEIGHT 0x03
40 #define MT9V022_WINDOW_WIDTH 0x04
41 #define MT9V022_HORIZONTAL_BLANKING 0x05
42 #define MT9V022_VERTICAL_BLANKING 0x06
43 #define MT9V022_CHIP_CONTROL 0x07
44 #define MT9V022_SHUTTER_WIDTH1 0x08
45 #define MT9V022_SHUTTER_WIDTH2 0x09
46 #define MT9V022_SHUTTER_WIDTH_CTRL 0x0a
47 #define MT9V022_TOTAL_SHUTTER_WIDTH 0x0b
48 #define MT9V022_RESET 0x0c
49 #define MT9V022_READ_MODE 0x0d
50 #define MT9V022_MONITOR_MODE 0x0e
51 #define MT9V022_PIXEL_OPERATION_MODE 0x0f
52 #define MT9V022_LED_OUT_CONTROL 0x1b
53 #define MT9V022_ADC_MODE_CONTROL 0x1c
54 #define MT9V022_REG32 0x20
55 #define MT9V022_ANALOG_GAIN 0x35
56 #define MT9V022_BLACK_LEVEL_CALIB_CTRL 0x47
57 #define MT9V022_PIXCLK_FV_LV 0x74
58 #define MT9V022_DIGITAL_TEST_PATTERN 0x7f
59 #define MT9V022_AEC_AGC_ENABLE 0xAF
60 #define MT9V022_MAX_TOTAL_SHUTTER_WIDTH 0xBD
62 /* mt9v024 partial list register addresses changes with respect to mt9v022 */
63 #define MT9V024_PIXCLK_FV_LV 0x72
64 #define MT9V024_MAX_TOTAL_SHUTTER_WIDTH 0xAD
66 /* Progressive scan, master, defaults */
67 #define MT9V022_CHIP_CONTROL_DEFAULT 0x188
69 #define MT9V022_MAX_WIDTH 752
70 #define MT9V022_MAX_HEIGHT 480
71 #define MT9V022_MIN_WIDTH 48
72 #define MT9V022_MIN_HEIGHT 32
73 #define MT9V022_COLUMN_SKIP 1
74 #define MT9V022_ROW_SKIP 4
76 #define MT9V022_HORIZONTAL_BLANKING_MIN 43
77 #define MT9V022_HORIZONTAL_BLANKING_MAX 1023
78 #define MT9V022_HORIZONTAL_BLANKING_DEF 94
79 #define MT9V022_VERTICAL_BLANKING_MIN 2
80 #define MT9V022_VERTICAL_BLANKING_MAX 3000
81 #define MT9V022_VERTICAL_BLANKING_DEF 45
83 #define is_mt9v022_rev3(id) (id == 0x1313)
84 #define is_mt9v024(id) (id == 0x1324)
86 /* MT9V022 has only one fixed colorspace per pixelcode */
87 struct mt9v022_datafmt
{
88 enum v4l2_mbus_pixelcode code
;
89 enum v4l2_colorspace colorspace
;
92 /* Find a data format by a pixel code in an array */
93 static const struct mt9v022_datafmt
*mt9v022_find_datafmt(
94 enum v4l2_mbus_pixelcode code
, const struct mt9v022_datafmt
*fmt
,
98 for (i
= 0; i
< n
; i
++)
99 if (fmt
[i
].code
== code
)
105 static const struct mt9v022_datafmt mt9v022_colour_fmts
[] = {
107 * Order important: first natively supported,
108 * second supported with a GPIO extender
110 {V4L2_MBUS_FMT_SBGGR10_1X10
, V4L2_COLORSPACE_SRGB
},
111 {V4L2_MBUS_FMT_SBGGR8_1X8
, V4L2_COLORSPACE_SRGB
},
114 static const struct mt9v022_datafmt mt9v022_monochrome_fmts
[] = {
115 /* Order important - see above */
116 {V4L2_MBUS_FMT_Y10_1X10
, V4L2_COLORSPACE_JPEG
},
117 {V4L2_MBUS_FMT_Y8_1X8
, V4L2_COLORSPACE_JPEG
},
120 /* only registers with different addresses on different mt9v02x sensors */
121 struct mt9v02x_register
{
122 u8 max_total_shutter_width
;
126 static const struct mt9v02x_register mt9v022_register
= {
127 .max_total_shutter_width
= MT9V022_MAX_TOTAL_SHUTTER_WIDTH
,
128 .pixclk_fv_lv
= MT9V022_PIXCLK_FV_LV
,
131 static const struct mt9v02x_register mt9v024_register
= {
132 .max_total_shutter_width
= MT9V024_MAX_TOTAL_SHUTTER_WIDTH
,
133 .pixclk_fv_lv
= MT9V024_PIXCLK_FV_LV
,
142 struct v4l2_subdev subdev
;
143 struct v4l2_ctrl_handler hdl
;
145 /* exposure/auto-exposure cluster */
146 struct v4l2_ctrl
*autoexposure
;
147 struct v4l2_ctrl
*exposure
;
150 /* gain/auto-gain cluster */
151 struct v4l2_ctrl
*autogain
;
152 struct v4l2_ctrl
*gain
;
154 struct v4l2_ctrl
*hblank
;
155 struct v4l2_ctrl
*vblank
;
156 struct v4l2_rect rect
; /* Sensor window */
157 struct v4l2_clk
*clk
;
158 const struct mt9v022_datafmt
*fmt
;
159 const struct mt9v022_datafmt
*fmts
;
160 const struct mt9v02x_register
*reg
;
162 enum mt9v022_model model
;
165 unsigned short y_skip_top
; /* Lines to skip at the top */
168 static struct mt9v022
*to_mt9v022(const struct i2c_client
*client
)
170 return container_of(i2c_get_clientdata(client
), struct mt9v022
, subdev
);
173 static int reg_read(struct i2c_client
*client
, const u8 reg
)
175 return i2c_smbus_read_word_swapped(client
, reg
);
178 static int reg_write(struct i2c_client
*client
, const u8 reg
,
181 return i2c_smbus_write_word_swapped(client
, reg
, data
);
184 static int reg_set(struct i2c_client
*client
, const u8 reg
,
189 ret
= reg_read(client
, reg
);
192 return reg_write(client
, reg
, ret
| data
);
195 static int reg_clear(struct i2c_client
*client
, const u8 reg
,
200 ret
= reg_read(client
, reg
);
203 return reg_write(client
, reg
, ret
& ~data
);
206 static int mt9v022_init(struct i2c_client
*client
)
208 struct mt9v022
*mt9v022
= to_mt9v022(client
);
212 * Almost the default mode: master, parallel, simultaneous, and an
213 * undocumented bit 0x200, which is present in table 7, but not in 8,
214 * plus snapshot mode to disable scan for now
216 mt9v022
->chip_control
|= 0x10;
217 ret
= reg_write(client
, MT9V022_CHIP_CONTROL
, mt9v022
->chip_control
);
219 ret
= reg_write(client
, MT9V022_READ_MODE
, 0x300);
224 ret
= reg_set(client
, MT9V022_AEC_AGC_ENABLE
, 0x3);
226 ret
= reg_write(client
, MT9V022_ANALOG_GAIN
, 16);
228 ret
= reg_write(client
, MT9V022_TOTAL_SHUTTER_WIDTH
, 480);
230 ret
= reg_write(client
, mt9v022
->reg
->max_total_shutter_width
, 480);
233 ret
= reg_clear(client
, MT9V022_BLACK_LEVEL_CALIB_CTRL
, 1);
235 ret
= reg_write(client
, MT9V022_DIGITAL_TEST_PATTERN
, 0);
237 return v4l2_ctrl_handler_setup(&mt9v022
->hdl
);
242 static int mt9v022_s_stream(struct v4l2_subdev
*sd
, int enable
)
244 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
245 struct mt9v022
*mt9v022
= to_mt9v022(client
);
248 /* Switch to master "normal" mode */
249 mt9v022
->chip_control
&= ~0x10;
250 if (is_mt9v022_rev3(mt9v022
->chip_version
) ||
251 is_mt9v024(mt9v022
->chip_version
)) {
253 * Unset snapshot mode specific settings: clear bit 9
254 * and bit 2 in reg. 0x20 when in normal mode.
256 if (reg_clear(client
, MT9V022_REG32
, 0x204))
260 /* Switch to snapshot mode */
261 mt9v022
->chip_control
|= 0x10;
262 if (is_mt9v022_rev3(mt9v022
->chip_version
) ||
263 is_mt9v024(mt9v022
->chip_version
)) {
265 * Required settings for snapshot mode: set bit 9
266 * (RST enable) and bit 2 (CR enable) in reg. 0x20
267 * See TechNote TN0960 or TN-09-225.
269 if (reg_set(client
, MT9V022_REG32
, 0x204))
274 if (reg_write(client
, MT9V022_CHIP_CONTROL
, mt9v022
->chip_control
) < 0)
279 static int mt9v022_s_crop(struct v4l2_subdev
*sd
, const struct v4l2_crop
*a
)
281 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
282 struct mt9v022
*mt9v022
= to_mt9v022(client
);
283 struct v4l2_rect rect
= a
->c
;
284 int min_row
, min_blank
;
287 /* Bayer format - even size lengths */
288 if (mt9v022
->fmts
== mt9v022_colour_fmts
) {
289 rect
.width
= ALIGN(rect
.width
, 2);
290 rect
.height
= ALIGN(rect
.height
, 2);
291 /* Let the user play with the starting pixel */
294 soc_camera_limit_side(&rect
.left
, &rect
.width
,
295 MT9V022_COLUMN_SKIP
, MT9V022_MIN_WIDTH
, MT9V022_MAX_WIDTH
);
297 soc_camera_limit_side(&rect
.top
, &rect
.height
,
298 MT9V022_ROW_SKIP
, MT9V022_MIN_HEIGHT
, MT9V022_MAX_HEIGHT
);
300 /* Like in example app. Contradicts the datasheet though */
301 ret
= reg_read(client
, MT9V022_AEC_AGC_ENABLE
);
303 if (ret
& 1) /* Autoexposure */
304 ret
= reg_write(client
, mt9v022
->reg
->max_total_shutter_width
,
305 rect
.height
+ mt9v022
->y_skip_top
+ 43);
307 * If autoexposure is off, there is no need to set
308 * MT9V022_TOTAL_SHUTTER_WIDTH here. Autoexposure can be off
309 * only if the user has set exposure manually, using the
310 * V4L2_CID_EXPOSURE_AUTO with the value V4L2_EXPOSURE_MANUAL.
311 * In this case the register MT9V022_TOTAL_SHUTTER_WIDTH
312 * already contains the correct value.
315 /* Setup frame format: defaults apart from width and height */
317 ret
= reg_write(client
, MT9V022_COLUMN_START
, rect
.left
);
319 ret
= reg_write(client
, MT9V022_ROW_START
, rect
.top
);
321 * mt9v022: min total row time is 660 columns, min blanking is 43
322 * mt9v024: min total row time is 690 columns, min blanking is 61
324 if (is_mt9v024(mt9v022
->chip_version
)) {
332 ret
= v4l2_ctrl_s_ctrl(mt9v022
->hblank
,
333 rect
.width
> min_row
- min_blank
?
334 min_blank
: min_row
- rect
.width
);
336 ret
= v4l2_ctrl_s_ctrl(mt9v022
->vblank
, 45);
338 ret
= reg_write(client
, MT9V022_WINDOW_WIDTH
, rect
.width
);
340 ret
= reg_write(client
, MT9V022_WINDOW_HEIGHT
,
341 rect
.height
+ mt9v022
->y_skip_top
);
346 dev_dbg(&client
->dev
, "Frame %dx%d pixel\n", rect
.width
, rect
.height
);
348 mt9v022
->rect
= rect
;
353 static int mt9v022_g_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
355 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
356 struct mt9v022
*mt9v022
= to_mt9v022(client
);
358 a
->c
= mt9v022
->rect
;
359 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
364 static int mt9v022_cropcap(struct v4l2_subdev
*sd
, struct v4l2_cropcap
*a
)
366 a
->bounds
.left
= MT9V022_COLUMN_SKIP
;
367 a
->bounds
.top
= MT9V022_ROW_SKIP
;
368 a
->bounds
.width
= MT9V022_MAX_WIDTH
;
369 a
->bounds
.height
= MT9V022_MAX_HEIGHT
;
370 a
->defrect
= a
->bounds
;
371 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
372 a
->pixelaspect
.numerator
= 1;
373 a
->pixelaspect
.denominator
= 1;
378 static int mt9v022_g_fmt(struct v4l2_subdev
*sd
,
379 struct v4l2_mbus_framefmt
*mf
)
381 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
382 struct mt9v022
*mt9v022
= to_mt9v022(client
);
384 mf
->width
= mt9v022
->rect
.width
;
385 mf
->height
= mt9v022
->rect
.height
;
386 mf
->code
= mt9v022
->fmt
->code
;
387 mf
->colorspace
= mt9v022
->fmt
->colorspace
;
388 mf
->field
= V4L2_FIELD_NONE
;
393 static int mt9v022_s_fmt(struct v4l2_subdev
*sd
,
394 struct v4l2_mbus_framefmt
*mf
)
396 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
397 struct mt9v022
*mt9v022
= to_mt9v022(client
);
398 struct v4l2_crop a
= {
400 .left
= mt9v022
->rect
.left
,
401 .top
= mt9v022
->rect
.top
,
403 .height
= mf
->height
,
409 * The caller provides a supported format, as verified per call to
410 * .try_mbus_fmt(), datawidth is from our supported format list
413 case V4L2_MBUS_FMT_Y8_1X8
:
414 case V4L2_MBUS_FMT_Y10_1X10
:
415 if (mt9v022
->model
!= MT9V022IX7ATM
)
418 case V4L2_MBUS_FMT_SBGGR8_1X8
:
419 case V4L2_MBUS_FMT_SBGGR10_1X10
:
420 if (mt9v022
->model
!= MT9V022IX7ATC
)
427 /* No support for scaling on this camera, just crop. */
428 ret
= mt9v022_s_crop(sd
, &a
);
430 mf
->width
= mt9v022
->rect
.width
;
431 mf
->height
= mt9v022
->rect
.height
;
432 mt9v022
->fmt
= mt9v022_find_datafmt(mf
->code
,
433 mt9v022
->fmts
, mt9v022
->num_fmts
);
434 mf
->colorspace
= mt9v022
->fmt
->colorspace
;
440 static int mt9v022_try_fmt(struct v4l2_subdev
*sd
,
441 struct v4l2_mbus_framefmt
*mf
)
443 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
444 struct mt9v022
*mt9v022
= to_mt9v022(client
);
445 const struct mt9v022_datafmt
*fmt
;
446 int align
= mf
->code
== V4L2_MBUS_FMT_SBGGR8_1X8
||
447 mf
->code
== V4L2_MBUS_FMT_SBGGR10_1X10
;
449 v4l_bound_align_image(&mf
->width
, MT9V022_MIN_WIDTH
,
450 MT9V022_MAX_WIDTH
, align
,
451 &mf
->height
, MT9V022_MIN_HEIGHT
+ mt9v022
->y_skip_top
,
452 MT9V022_MAX_HEIGHT
+ mt9v022
->y_skip_top
, align
, 0);
454 fmt
= mt9v022_find_datafmt(mf
->code
, mt9v022
->fmts
,
458 mf
->code
= fmt
->code
;
461 mf
->colorspace
= fmt
->colorspace
;
466 #ifdef CONFIG_VIDEO_ADV_DEBUG
467 static int mt9v022_g_register(struct v4l2_subdev
*sd
,
468 struct v4l2_dbg_register
*reg
)
470 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
476 reg
->val
= reg_read(client
, reg
->reg
);
478 if (reg
->val
> 0xffff)
484 static int mt9v022_s_register(struct v4l2_subdev
*sd
,
485 const struct v4l2_dbg_register
*reg
)
487 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
492 if (reg_write(client
, reg
->reg
, reg
->val
) < 0)
499 static int mt9v022_s_power(struct v4l2_subdev
*sd
, int on
)
501 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
502 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
503 struct mt9v022
*mt9v022
= to_mt9v022(client
);
505 return soc_camera_set_power(&client
->dev
, ssdd
, mt9v022
->clk
, on
);
508 static int mt9v022_g_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
510 struct mt9v022
*mt9v022
= container_of(ctrl
->handler
,
511 struct mt9v022
, hdl
);
512 struct v4l2_subdev
*sd
= &mt9v022
->subdev
;
513 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
514 struct v4l2_ctrl
*gain
= mt9v022
->gain
;
515 struct v4l2_ctrl
*exp
= mt9v022
->exposure
;
520 case V4L2_CID_AUTOGAIN
:
521 data
= reg_read(client
, MT9V022_ANALOG_GAIN
);
525 range
= gain
->maximum
- gain
->minimum
;
526 gain
->val
= ((data
- 16) * range
+ 24) / 48 + gain
->minimum
;
528 case V4L2_CID_EXPOSURE_AUTO
:
529 data
= reg_read(client
, MT9V022_TOTAL_SHUTTER_WIDTH
);
533 range
= exp
->maximum
- exp
->minimum
;
534 exp
->val
= ((data
- 1) * range
+ 239) / 479 + exp
->minimum
;
536 case V4L2_CID_HBLANK
:
537 data
= reg_read(client
, MT9V022_HORIZONTAL_BLANKING
);
542 case V4L2_CID_VBLANK
:
543 data
= reg_read(client
, MT9V022_VERTICAL_BLANKING
);
552 static int mt9v022_s_ctrl(struct v4l2_ctrl
*ctrl
)
554 struct mt9v022
*mt9v022
= container_of(ctrl
->handler
,
555 struct mt9v022
, hdl
);
556 struct v4l2_subdev
*sd
= &mt9v022
->subdev
;
557 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
563 data
= reg_set(client
, MT9V022_READ_MODE
, 0x10);
565 data
= reg_clear(client
, MT9V022_READ_MODE
, 0x10);
571 data
= reg_set(client
, MT9V022_READ_MODE
, 0x20);
573 data
= reg_clear(client
, MT9V022_READ_MODE
, 0x20);
577 case V4L2_CID_AUTOGAIN
:
579 if (reg_set(client
, MT9V022_AEC_AGC_ENABLE
, 0x2) < 0)
582 struct v4l2_ctrl
*gain
= mt9v022
->gain
;
583 /* mt9v022 has minimum == default */
584 unsigned long range
= gain
->maximum
- gain
->minimum
;
585 /* Valid values 16 to 64, 32 to 64 must be even. */
586 unsigned long gain_val
= ((gain
->val
- gain
->minimum
) *
587 48 + range
/ 2) / range
+ 16;
593 * The user wants to set gain manually, hope, she
594 * knows, what she's doing... Switch AGC off.
596 if (reg_clear(client
, MT9V022_AEC_AGC_ENABLE
, 0x2) < 0)
599 dev_dbg(&client
->dev
, "Setting gain from %d to %lu\n",
600 reg_read(client
, MT9V022_ANALOG_GAIN
), gain_val
);
601 if (reg_write(client
, MT9V022_ANALOG_GAIN
, gain_val
) < 0)
605 case V4L2_CID_EXPOSURE_AUTO
:
606 if (ctrl
->val
== V4L2_EXPOSURE_AUTO
) {
607 data
= reg_set(client
, MT9V022_AEC_AGC_ENABLE
, 0x1);
609 struct v4l2_ctrl
*exp
= mt9v022
->exposure
;
610 unsigned long range
= exp
->maximum
- exp
->minimum
;
611 unsigned long shutter
= ((exp
->val
- exp
->minimum
) *
612 479 + range
/ 2) / range
+ 1;
615 * The user wants to set shutter width manually, hope,
616 * she knows, what she's doing... Switch AEC off.
618 data
= reg_clear(client
, MT9V022_AEC_AGC_ENABLE
, 0x1);
621 dev_dbg(&client
->dev
, "Shutter width from %d to %lu\n",
622 reg_read(client
, MT9V022_TOTAL_SHUTTER_WIDTH
),
624 if (reg_write(client
, MT9V022_TOTAL_SHUTTER_WIDTH
,
629 case V4L2_CID_HBLANK
:
630 if (reg_write(client
, MT9V022_HORIZONTAL_BLANKING
,
634 case V4L2_CID_VBLANK
:
635 if (reg_write(client
, MT9V022_VERTICAL_BLANKING
,
644 * Interface active, can use i2c. If it fails, it can indeed mean, that
645 * this wasn't our capture interface, so, we wait for the right one
647 static int mt9v022_video_probe(struct i2c_client
*client
)
649 struct mt9v022
*mt9v022
= to_mt9v022(client
);
650 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
655 ret
= mt9v022_s_power(&mt9v022
->subdev
, 1);
659 /* Read out the chip version register */
660 data
= reg_read(client
, MT9V022_CHIP_VERSION
);
662 /* must be 0x1311, 0x1313 or 0x1324 */
663 if (data
!= 0x1311 && data
!= 0x1313 && data
!= 0x1324) {
665 dev_info(&client
->dev
, "No MT9V022 found, ID register 0x%x\n",
670 mt9v022
->chip_version
= data
;
672 mt9v022
->reg
= is_mt9v024(data
) ? &mt9v024_register
:
676 ret
= reg_write(client
, MT9V022_RESET
, 1);
679 /* 15 clock cycles */
681 if (reg_read(client
, MT9V022_RESET
)) {
682 dev_err(&client
->dev
, "Resetting MT9V022 failed!\n");
688 /* Set monochrome or colour sensor type */
689 if (sensor_type
&& (!strcmp("colour", sensor_type
) ||
690 !strcmp("color", sensor_type
))) {
691 ret
= reg_write(client
, MT9V022_PIXEL_OPERATION_MODE
, 4 | 0x11);
692 mt9v022
->model
= MT9V022IX7ATC
;
693 mt9v022
->fmts
= mt9v022_colour_fmts
;
695 ret
= reg_write(client
, MT9V022_PIXEL_OPERATION_MODE
, 0x11);
696 mt9v022
->model
= MT9V022IX7ATM
;
697 mt9v022
->fmts
= mt9v022_monochrome_fmts
;
703 mt9v022
->num_fmts
= 0;
706 * This is a 10bit sensor, so by default we only allow 10bit.
707 * The platform may support different bus widths due to
708 * different routing of the data lines.
710 if (ssdd
->query_bus_param
)
711 flags
= ssdd
->query_bus_param(ssdd
);
713 flags
= SOCAM_DATAWIDTH_10
;
715 if (flags
& SOCAM_DATAWIDTH_10
)
720 if (flags
& SOCAM_DATAWIDTH_8
)
723 mt9v022
->fmt
= &mt9v022
->fmts
[0];
725 dev_info(&client
->dev
, "Detected a MT9V022 chip ID %x, %s sensor\n",
726 data
, mt9v022
->model
== MT9V022IX7ATM
?
727 "monochrome" : "colour");
729 ret
= mt9v022_init(client
);
731 dev_err(&client
->dev
, "Failed to initialise the camera\n");
734 mt9v022_s_power(&mt9v022
->subdev
, 0);
738 static int mt9v022_g_skip_top_lines(struct v4l2_subdev
*sd
, u32
*lines
)
740 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
741 struct mt9v022
*mt9v022
= to_mt9v022(client
);
743 *lines
= mt9v022
->y_skip_top
;
748 static const struct v4l2_ctrl_ops mt9v022_ctrl_ops
= {
749 .g_volatile_ctrl
= mt9v022_g_volatile_ctrl
,
750 .s_ctrl
= mt9v022_s_ctrl
,
753 static struct v4l2_subdev_core_ops mt9v022_subdev_core_ops
= {
754 #ifdef CONFIG_VIDEO_ADV_DEBUG
755 .g_register
= mt9v022_g_register
,
756 .s_register
= mt9v022_s_register
,
758 .s_power
= mt9v022_s_power
,
761 static int mt9v022_enum_fmt(struct v4l2_subdev
*sd
, unsigned int index
,
762 enum v4l2_mbus_pixelcode
*code
)
764 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
765 struct mt9v022
*mt9v022
= to_mt9v022(client
);
767 if (index
>= mt9v022
->num_fmts
)
770 *code
= mt9v022
->fmts
[index
].code
;
774 static int mt9v022_g_mbus_config(struct v4l2_subdev
*sd
,
775 struct v4l2_mbus_config
*cfg
)
777 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
778 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
780 cfg
->flags
= V4L2_MBUS_MASTER
| V4L2_MBUS_SLAVE
|
781 V4L2_MBUS_PCLK_SAMPLE_RISING
| V4L2_MBUS_PCLK_SAMPLE_FALLING
|
782 V4L2_MBUS_HSYNC_ACTIVE_HIGH
| V4L2_MBUS_HSYNC_ACTIVE_LOW
|
783 V4L2_MBUS_VSYNC_ACTIVE_HIGH
| V4L2_MBUS_VSYNC_ACTIVE_LOW
|
784 V4L2_MBUS_DATA_ACTIVE_HIGH
;
785 cfg
->type
= V4L2_MBUS_PARALLEL
;
786 cfg
->flags
= soc_camera_apply_board_flags(ssdd
, cfg
);
791 static int mt9v022_s_mbus_config(struct v4l2_subdev
*sd
,
792 const struct v4l2_mbus_config
*cfg
)
794 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
795 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
796 struct mt9v022
*mt9v022
= to_mt9v022(client
);
797 unsigned long flags
= soc_camera_apply_board_flags(ssdd
, cfg
);
798 unsigned int bps
= soc_mbus_get_fmtdesc(mt9v022
->fmt
->code
)->bits_per_sample
;
802 if (ssdd
->set_bus_param
) {
803 ret
= ssdd
->set_bus_param(ssdd
, 1 << (bps
- 1));
806 } else if (bps
!= 10) {
808 * Without board specific bus width settings we only support the
809 * sensors native bus width
814 if (flags
& V4L2_MBUS_PCLK_SAMPLE_FALLING
)
817 if (!(flags
& V4L2_MBUS_HSYNC_ACTIVE_HIGH
))
820 if (!(flags
& V4L2_MBUS_VSYNC_ACTIVE_HIGH
))
823 ret
= reg_write(client
, mt9v022
->reg
->pixclk_fv_lv
, pixclk
);
827 if (!(flags
& V4L2_MBUS_MASTER
))
828 mt9v022
->chip_control
&= ~0x8;
830 ret
= reg_write(client
, MT9V022_CHIP_CONTROL
, mt9v022
->chip_control
);
834 dev_dbg(&client
->dev
, "Calculated pixclk 0x%x, chip control 0x%x\n",
835 pixclk
, mt9v022
->chip_control
);
840 static struct v4l2_subdev_video_ops mt9v022_subdev_video_ops
= {
841 .s_stream
= mt9v022_s_stream
,
842 .s_mbus_fmt
= mt9v022_s_fmt
,
843 .g_mbus_fmt
= mt9v022_g_fmt
,
844 .try_mbus_fmt
= mt9v022_try_fmt
,
845 .s_crop
= mt9v022_s_crop
,
846 .g_crop
= mt9v022_g_crop
,
847 .cropcap
= mt9v022_cropcap
,
848 .enum_mbus_fmt
= mt9v022_enum_fmt
,
849 .g_mbus_config
= mt9v022_g_mbus_config
,
850 .s_mbus_config
= mt9v022_s_mbus_config
,
853 static struct v4l2_subdev_sensor_ops mt9v022_subdev_sensor_ops
= {
854 .g_skip_top_lines
= mt9v022_g_skip_top_lines
,
857 static struct v4l2_subdev_ops mt9v022_subdev_ops
= {
858 .core
= &mt9v022_subdev_core_ops
,
859 .video
= &mt9v022_subdev_video_ops
,
860 .sensor
= &mt9v022_subdev_sensor_ops
,
863 static int mt9v022_probe(struct i2c_client
*client
,
864 const struct i2c_device_id
*did
)
866 struct mt9v022
*mt9v022
;
867 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
868 struct i2c_adapter
*adapter
= to_i2c_adapter(client
->dev
.parent
);
869 struct mt9v022_platform_data
*pdata
;
873 dev_err(&client
->dev
, "MT9V022 driver needs platform data\n");
877 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_WORD_DATA
)) {
878 dev_warn(&adapter
->dev
,
879 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
883 mt9v022
= devm_kzalloc(&client
->dev
, sizeof(struct mt9v022
), GFP_KERNEL
);
887 pdata
= ssdd
->drv_priv
;
888 v4l2_i2c_subdev_init(&mt9v022
->subdev
, client
, &mt9v022_subdev_ops
);
889 v4l2_ctrl_handler_init(&mt9v022
->hdl
, 6);
890 v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
891 V4L2_CID_VFLIP
, 0, 1, 1, 0);
892 v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
893 V4L2_CID_HFLIP
, 0, 1, 1, 0);
894 mt9v022
->autogain
= v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
895 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
896 mt9v022
->gain
= v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
897 V4L2_CID_GAIN
, 0, 127, 1, 64);
900 * Simulated autoexposure. If enabled, we calculate shutter width
901 * ourselves in the driver based on vertical blanking and frame width
903 mt9v022
->autoexposure
= v4l2_ctrl_new_std_menu(&mt9v022
->hdl
,
904 &mt9v022_ctrl_ops
, V4L2_CID_EXPOSURE_AUTO
, 1, 0,
906 mt9v022
->exposure
= v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
907 V4L2_CID_EXPOSURE
, 1, 255, 1, 255);
909 mt9v022
->hblank
= v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
910 V4L2_CID_HBLANK
, MT9V022_HORIZONTAL_BLANKING_MIN
,
911 MT9V022_HORIZONTAL_BLANKING_MAX
, 1,
912 MT9V022_HORIZONTAL_BLANKING_DEF
);
914 mt9v022
->vblank
= v4l2_ctrl_new_std(&mt9v022
->hdl
, &mt9v022_ctrl_ops
,
915 V4L2_CID_VBLANK
, MT9V022_VERTICAL_BLANKING_MIN
,
916 MT9V022_VERTICAL_BLANKING_MAX
, 1,
917 MT9V022_VERTICAL_BLANKING_DEF
);
919 mt9v022
->subdev
.ctrl_handler
= &mt9v022
->hdl
;
920 if (mt9v022
->hdl
.error
) {
921 int err
= mt9v022
->hdl
.error
;
923 dev_err(&client
->dev
, "control initialisation err %d\n", err
);
926 v4l2_ctrl_auto_cluster(2, &mt9v022
->autoexposure
,
927 V4L2_EXPOSURE_MANUAL
, true);
928 v4l2_ctrl_auto_cluster(2, &mt9v022
->autogain
, 0, true);
930 mt9v022
->chip_control
= MT9V022_CHIP_CONTROL_DEFAULT
;
933 * On some platforms the first read out line is corrupted.
934 * Workaround it by skipping if indicated by platform data.
936 mt9v022
->y_skip_top
= pdata
? pdata
->y_skip_top
: 0;
937 mt9v022
->rect
.left
= MT9V022_COLUMN_SKIP
;
938 mt9v022
->rect
.top
= MT9V022_ROW_SKIP
;
939 mt9v022
->rect
.width
= MT9V022_MAX_WIDTH
;
940 mt9v022
->rect
.height
= MT9V022_MAX_HEIGHT
;
942 mt9v022
->clk
= v4l2_clk_get(&client
->dev
, "mclk");
943 if (IS_ERR(mt9v022
->clk
)) {
944 ret
= PTR_ERR(mt9v022
->clk
);
948 ret
= mt9v022_video_probe(client
);
950 v4l2_clk_put(mt9v022
->clk
);
952 v4l2_ctrl_handler_free(&mt9v022
->hdl
);
958 static int mt9v022_remove(struct i2c_client
*client
)
960 struct mt9v022
*mt9v022
= to_mt9v022(client
);
961 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
963 v4l2_clk_put(mt9v022
->clk
);
964 v4l2_device_unregister_subdev(&mt9v022
->subdev
);
966 ssdd
->free_bus(ssdd
);
967 v4l2_ctrl_handler_free(&mt9v022
->hdl
);
971 static const struct i2c_device_id mt9v022_id
[] = {
975 MODULE_DEVICE_TABLE(i2c
, mt9v022_id
);
977 static struct i2c_driver mt9v022_i2c_driver
= {
981 .probe
= mt9v022_probe
,
982 .remove
= mt9v022_remove
,
983 .id_table
= mt9v022_id
,
986 module_i2c_driver(mt9v022_i2c_driver
);
988 MODULE_DESCRIPTION("Micron MT9V022 Camera driver");
989 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
990 MODULE_LICENSE("GPL");