2 * Driver for MT9P031 CMOS Image Sensor from Aptina
4 * Copyright (C) 2011, Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5 * Copyright (C) 2011, Javier Martin <javier.martin@vista-silicon.com>
6 * Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8 * Based on the MT9V032 driver and Bastian Hecht's code.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/clk.h>
16 #include <linux/delay.h>
17 #include <linux/device.h>
18 #include <linux/gpio.h>
19 #include <linux/i2c.h>
20 #include <linux/log2.h>
21 #include <linux/module.h>
23 #include <linux/of_gpio.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/slab.h>
27 #include <linux/videodev2.h>
29 #include <media/mt9p031.h>
30 #include <media/v4l2-ctrls.h>
31 #include <media/v4l2-device.h>
32 #include <media/v4l2-of.h>
33 #include <media/v4l2-subdev.h>
35 #include "aptina-pll.h"
37 #define MT9P031_PIXEL_ARRAY_WIDTH 2752
38 #define MT9P031_PIXEL_ARRAY_HEIGHT 2004
40 #define MT9P031_CHIP_VERSION 0x00
41 #define MT9P031_CHIP_VERSION_VALUE 0x1801
42 #define MT9P031_ROW_START 0x01
43 #define MT9P031_ROW_START_MIN 0
44 #define MT9P031_ROW_START_MAX 2004
45 #define MT9P031_ROW_START_DEF 54
46 #define MT9P031_COLUMN_START 0x02
47 #define MT9P031_COLUMN_START_MIN 0
48 #define MT9P031_COLUMN_START_MAX 2750
49 #define MT9P031_COLUMN_START_DEF 16
50 #define MT9P031_WINDOW_HEIGHT 0x03
51 #define MT9P031_WINDOW_HEIGHT_MIN 2
52 #define MT9P031_WINDOW_HEIGHT_MAX 2006
53 #define MT9P031_WINDOW_HEIGHT_DEF 1944
54 #define MT9P031_WINDOW_WIDTH 0x04
55 #define MT9P031_WINDOW_WIDTH_MIN 2
56 #define MT9P031_WINDOW_WIDTH_MAX 2752
57 #define MT9P031_WINDOW_WIDTH_DEF 2592
58 #define MT9P031_HORIZONTAL_BLANK 0x05
59 #define MT9P031_HORIZONTAL_BLANK_MIN 0
60 #define MT9P031_HORIZONTAL_BLANK_MAX 4095
61 #define MT9P031_VERTICAL_BLANK 0x06
62 #define MT9P031_VERTICAL_BLANK_MIN 1
63 #define MT9P031_VERTICAL_BLANK_MAX 4096
64 #define MT9P031_VERTICAL_BLANK_DEF 26
65 #define MT9P031_OUTPUT_CONTROL 0x07
66 #define MT9P031_OUTPUT_CONTROL_CEN 2
67 #define MT9P031_OUTPUT_CONTROL_SYN 1
68 #define MT9P031_OUTPUT_CONTROL_DEF 0x1f82
69 #define MT9P031_SHUTTER_WIDTH_UPPER 0x08
70 #define MT9P031_SHUTTER_WIDTH_LOWER 0x09
71 #define MT9P031_SHUTTER_WIDTH_MIN 1
72 #define MT9P031_SHUTTER_WIDTH_MAX 1048575
73 #define MT9P031_SHUTTER_WIDTH_DEF 1943
74 #define MT9P031_PLL_CONTROL 0x10
75 #define MT9P031_PLL_CONTROL_PWROFF 0x0050
76 #define MT9P031_PLL_CONTROL_PWRON 0x0051
77 #define MT9P031_PLL_CONTROL_USEPLL 0x0052
78 #define MT9P031_PLL_CONFIG_1 0x11
79 #define MT9P031_PLL_CONFIG_2 0x12
80 #define MT9P031_PIXEL_CLOCK_CONTROL 0x0a
81 #define MT9P031_FRAME_RESTART 0x0b
82 #define MT9P031_SHUTTER_DELAY 0x0c
83 #define MT9P031_RST 0x0d
84 #define MT9P031_RST_ENABLE 1
85 #define MT9P031_RST_DISABLE 0
86 #define MT9P031_READ_MODE_1 0x1e
87 #define MT9P031_READ_MODE_2 0x20
88 #define MT9P031_READ_MODE_2_ROW_MIR (1 << 15)
89 #define MT9P031_READ_MODE_2_COL_MIR (1 << 14)
90 #define MT9P031_READ_MODE_2_ROW_BLC (1 << 6)
91 #define MT9P031_ROW_ADDRESS_MODE 0x22
92 #define MT9P031_COLUMN_ADDRESS_MODE 0x23
93 #define MT9P031_GLOBAL_GAIN 0x35
94 #define MT9P031_GLOBAL_GAIN_MIN 8
95 #define MT9P031_GLOBAL_GAIN_MAX 1024
96 #define MT9P031_GLOBAL_GAIN_DEF 8
97 #define MT9P031_GLOBAL_GAIN_MULT (1 << 6)
98 #define MT9P031_ROW_BLACK_TARGET 0x49
99 #define MT9P031_ROW_BLACK_DEF_OFFSET 0x4b
100 #define MT9P031_GREEN1_OFFSET 0x60
101 #define MT9P031_GREEN2_OFFSET 0x61
102 #define MT9P031_BLACK_LEVEL_CALIBRATION 0x62
103 #define MT9P031_BLC_MANUAL_BLC (1 << 0)
104 #define MT9P031_RED_OFFSET 0x63
105 #define MT9P031_BLUE_OFFSET 0x64
106 #define MT9P031_TEST_PATTERN 0xa0
107 #define MT9P031_TEST_PATTERN_SHIFT 3
108 #define MT9P031_TEST_PATTERN_ENABLE (1 << 0)
109 #define MT9P031_TEST_PATTERN_DISABLE (0 << 0)
110 #define MT9P031_TEST_PATTERN_GREEN 0xa1
111 #define MT9P031_TEST_PATTERN_RED 0xa2
112 #define MT9P031_TEST_PATTERN_BLUE 0xa3
116 MT9P031_MODEL_MONOCHROME
,
120 struct v4l2_subdev subdev
;
121 struct media_pad pad
;
122 struct v4l2_rect crop
; /* Sensor window */
123 struct v4l2_mbus_framefmt format
;
124 struct mt9p031_platform_data
*pdata
;
125 struct mutex power_lock
; /* lock to protect power_count */
129 struct regulator_bulk_data regulators
[3];
131 enum mt9p031_model model
;
132 struct aptina_pll pll
;
135 struct v4l2_ctrl_handler ctrls
;
136 struct v4l2_ctrl
*blc_auto
;
137 struct v4l2_ctrl
*blc_offset
;
139 /* Registers cache */
144 static struct mt9p031
*to_mt9p031(struct v4l2_subdev
*sd
)
146 return container_of(sd
, struct mt9p031
, subdev
);
149 static int mt9p031_read(struct i2c_client
*client
, u8 reg
)
151 return i2c_smbus_read_word_swapped(client
, reg
);
154 static int mt9p031_write(struct i2c_client
*client
, u8 reg
, u16 data
)
156 return i2c_smbus_write_word_swapped(client
, reg
, data
);
159 static int mt9p031_set_output_control(struct mt9p031
*mt9p031
, u16 clear
,
162 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
163 u16 value
= (mt9p031
->output_control
& ~clear
) | set
;
166 ret
= mt9p031_write(client
, MT9P031_OUTPUT_CONTROL
, value
);
170 mt9p031
->output_control
= value
;
174 static int mt9p031_set_mode2(struct mt9p031
*mt9p031
, u16 clear
, u16 set
)
176 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
177 u16 value
= (mt9p031
->mode2
& ~clear
) | set
;
180 ret
= mt9p031_write(client
, MT9P031_READ_MODE_2
, value
);
184 mt9p031
->mode2
= value
;
188 static int mt9p031_reset(struct mt9p031
*mt9p031
)
190 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
193 /* Disable chip output, synchronous option update */
194 ret
= mt9p031_write(client
, MT9P031_RST
, MT9P031_RST_ENABLE
);
197 ret
= mt9p031_write(client
, MT9P031_RST
, MT9P031_RST_DISABLE
);
201 return mt9p031_set_output_control(mt9p031
, MT9P031_OUTPUT_CONTROL_CEN
,
205 static int mt9p031_clk_setup(struct mt9p031
*mt9p031
)
207 static const struct aptina_pll_limits limits
= {
208 .ext_clock_min
= 6000000,
209 .ext_clock_max
= 27000000,
210 .int_clock_min
= 2000000,
211 .int_clock_max
= 13500000,
212 .out_clock_min
= 180000000,
213 .out_clock_max
= 360000000,
214 .pix_clock_max
= 96000000,
223 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
224 struct mt9p031_platform_data
*pdata
= mt9p031
->pdata
;
226 mt9p031
->clk
= devm_clk_get(&client
->dev
, NULL
);
227 if (IS_ERR(mt9p031
->clk
))
228 return PTR_ERR(mt9p031
->clk
);
230 clk_set_rate(mt9p031
->clk
, pdata
->ext_freq
);
232 mt9p031
->pll
.ext_clock
= pdata
->ext_freq
;
233 mt9p031
->pll
.pix_clock
= pdata
->target_freq
;
235 return aptina_pll_calculate(&client
->dev
, &limits
, &mt9p031
->pll
);
238 static int mt9p031_pll_enable(struct mt9p031
*mt9p031
)
240 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
243 ret
= mt9p031_write(client
, MT9P031_PLL_CONTROL
,
244 MT9P031_PLL_CONTROL_PWRON
);
248 ret
= mt9p031_write(client
, MT9P031_PLL_CONFIG_1
,
249 (mt9p031
->pll
.m
<< 8) | (mt9p031
->pll
.n
- 1));
253 ret
= mt9p031_write(client
, MT9P031_PLL_CONFIG_2
, mt9p031
->pll
.p1
- 1);
257 usleep_range(1000, 2000);
258 ret
= mt9p031_write(client
, MT9P031_PLL_CONTROL
,
259 MT9P031_PLL_CONTROL_PWRON
|
260 MT9P031_PLL_CONTROL_USEPLL
);
264 static inline int mt9p031_pll_disable(struct mt9p031
*mt9p031
)
266 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
268 return mt9p031_write(client
, MT9P031_PLL_CONTROL
,
269 MT9P031_PLL_CONTROL_PWROFF
);
272 static int mt9p031_power_on(struct mt9p031
*mt9p031
)
276 /* Ensure RESET_BAR is low */
277 if (gpio_is_valid(mt9p031
->reset
)) {
278 gpio_set_value(mt9p031
->reset
, 0);
279 usleep_range(1000, 2000);
282 /* Bring up the supplies */
283 ret
= regulator_bulk_enable(ARRAY_SIZE(mt9p031
->regulators
),
284 mt9p031
->regulators
);
290 clk_prepare_enable(mt9p031
->clk
);
292 /* Now RESET_BAR must be high */
293 if (gpio_is_valid(mt9p031
->reset
)) {
294 gpio_set_value(mt9p031
->reset
, 1);
295 usleep_range(1000, 2000);
301 static void mt9p031_power_off(struct mt9p031
*mt9p031
)
303 if (gpio_is_valid(mt9p031
->reset
)) {
304 gpio_set_value(mt9p031
->reset
, 0);
305 usleep_range(1000, 2000);
308 regulator_bulk_disable(ARRAY_SIZE(mt9p031
->regulators
),
309 mt9p031
->regulators
);
312 clk_disable_unprepare(mt9p031
->clk
);
315 static int __mt9p031_set_power(struct mt9p031
*mt9p031
, bool on
)
317 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
321 mt9p031_power_off(mt9p031
);
325 ret
= mt9p031_power_on(mt9p031
);
329 ret
= mt9p031_reset(mt9p031
);
331 dev_err(&client
->dev
, "Failed to reset the camera\n");
335 return v4l2_ctrl_handler_setup(&mt9p031
->ctrls
);
338 /* -----------------------------------------------------------------------------
339 * V4L2 subdev video operations
342 static int mt9p031_set_params(struct mt9p031
*mt9p031
)
344 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
345 struct v4l2_mbus_framefmt
*format
= &mt9p031
->format
;
346 const struct v4l2_rect
*crop
= &mt9p031
->crop
;
355 /* Windows position and size.
357 * TODO: Make sure the start coordinates and window size match the
358 * skipping, binning and mirroring (see description of registers 2 and 4
359 * in table 13, and Binning section on page 41).
361 ret
= mt9p031_write(client
, MT9P031_COLUMN_START
, crop
->left
);
364 ret
= mt9p031_write(client
, MT9P031_ROW_START
, crop
->top
);
367 ret
= mt9p031_write(client
, MT9P031_WINDOW_WIDTH
, crop
->width
- 1);
370 ret
= mt9p031_write(client
, MT9P031_WINDOW_HEIGHT
, crop
->height
- 1);
374 /* Row and column binning and skipping. Use the maximum binning value
375 * compatible with the skipping settings.
377 xskip
= DIV_ROUND_CLOSEST(crop
->width
, format
->width
);
378 yskip
= DIV_ROUND_CLOSEST(crop
->height
, format
->height
);
379 xbin
= 1 << (ffs(xskip
) - 1);
380 ybin
= 1 << (ffs(yskip
) - 1);
382 ret
= mt9p031_write(client
, MT9P031_COLUMN_ADDRESS_MODE
,
383 ((xbin
- 1) << 4) | (xskip
- 1));
386 ret
= mt9p031_write(client
, MT9P031_ROW_ADDRESS_MODE
,
387 ((ybin
- 1) << 4) | (yskip
- 1));
391 /* Blanking - use minimum value for horizontal blanking and default
392 * value for vertical blanking.
394 hblank
= 346 * ybin
+ 64 + (80 >> min_t(unsigned int, xbin
, 3));
395 vblank
= MT9P031_VERTICAL_BLANK_DEF
;
397 ret
= mt9p031_write(client
, MT9P031_HORIZONTAL_BLANK
, hblank
- 1);
400 ret
= mt9p031_write(client
, MT9P031_VERTICAL_BLANK
, vblank
- 1);
407 static int mt9p031_s_stream(struct v4l2_subdev
*subdev
, int enable
)
409 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
413 /* Stop sensor readout */
414 ret
= mt9p031_set_output_control(mt9p031
,
415 MT9P031_OUTPUT_CONTROL_CEN
, 0);
419 return mt9p031_pll_disable(mt9p031
);
422 ret
= mt9p031_set_params(mt9p031
);
426 /* Switch to master "normal" mode */
427 ret
= mt9p031_set_output_control(mt9p031
, 0,
428 MT9P031_OUTPUT_CONTROL_CEN
);
432 return mt9p031_pll_enable(mt9p031
);
435 static int mt9p031_enum_mbus_code(struct v4l2_subdev
*subdev
,
436 struct v4l2_subdev_fh
*fh
,
437 struct v4l2_subdev_mbus_code_enum
*code
)
439 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
441 if (code
->pad
|| code
->index
)
444 code
->code
= mt9p031
->format
.code
;
448 static int mt9p031_enum_frame_size(struct v4l2_subdev
*subdev
,
449 struct v4l2_subdev_fh
*fh
,
450 struct v4l2_subdev_frame_size_enum
*fse
)
452 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
454 if (fse
->index
>= 8 || fse
->code
!= mt9p031
->format
.code
)
457 fse
->min_width
= MT9P031_WINDOW_WIDTH_DEF
458 / min_t(unsigned int, 7, fse
->index
+ 1);
459 fse
->max_width
= fse
->min_width
;
460 fse
->min_height
= MT9P031_WINDOW_HEIGHT_DEF
/ (fse
->index
+ 1);
461 fse
->max_height
= fse
->min_height
;
466 static struct v4l2_mbus_framefmt
*
467 __mt9p031_get_pad_format(struct mt9p031
*mt9p031
, struct v4l2_subdev_fh
*fh
,
468 unsigned int pad
, u32 which
)
471 case V4L2_SUBDEV_FORMAT_TRY
:
472 return v4l2_subdev_get_try_format(fh
, pad
);
473 case V4L2_SUBDEV_FORMAT_ACTIVE
:
474 return &mt9p031
->format
;
480 static struct v4l2_rect
*
481 __mt9p031_get_pad_crop(struct mt9p031
*mt9p031
, struct v4l2_subdev_fh
*fh
,
482 unsigned int pad
, u32 which
)
485 case V4L2_SUBDEV_FORMAT_TRY
:
486 return v4l2_subdev_get_try_crop(fh
, pad
);
487 case V4L2_SUBDEV_FORMAT_ACTIVE
:
488 return &mt9p031
->crop
;
494 static int mt9p031_get_format(struct v4l2_subdev
*subdev
,
495 struct v4l2_subdev_fh
*fh
,
496 struct v4l2_subdev_format
*fmt
)
498 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
500 fmt
->format
= *__mt9p031_get_pad_format(mt9p031
, fh
, fmt
->pad
,
505 static int mt9p031_set_format(struct v4l2_subdev
*subdev
,
506 struct v4l2_subdev_fh
*fh
,
507 struct v4l2_subdev_format
*format
)
509 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
510 struct v4l2_mbus_framefmt
*__format
;
511 struct v4l2_rect
*__crop
;
517 __crop
= __mt9p031_get_pad_crop(mt9p031
, fh
, format
->pad
,
520 /* Clamp the width and height to avoid dividing by zero. */
521 width
= clamp_t(unsigned int, ALIGN(format
->format
.width
, 2),
522 max_t(unsigned int, __crop
->width
/ 7,
523 MT9P031_WINDOW_WIDTH_MIN
),
525 height
= clamp_t(unsigned int, ALIGN(format
->format
.height
, 2),
526 max_t(unsigned int, __crop
->height
/ 8,
527 MT9P031_WINDOW_HEIGHT_MIN
),
530 hratio
= DIV_ROUND_CLOSEST(__crop
->width
, width
);
531 vratio
= DIV_ROUND_CLOSEST(__crop
->height
, height
);
533 __format
= __mt9p031_get_pad_format(mt9p031
, fh
, format
->pad
,
535 __format
->width
= __crop
->width
/ hratio
;
536 __format
->height
= __crop
->height
/ vratio
;
538 format
->format
= *__format
;
543 static int mt9p031_get_crop(struct v4l2_subdev
*subdev
,
544 struct v4l2_subdev_fh
*fh
,
545 struct v4l2_subdev_crop
*crop
)
547 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
549 crop
->rect
= *__mt9p031_get_pad_crop(mt9p031
, fh
, crop
->pad
,
554 static int mt9p031_set_crop(struct v4l2_subdev
*subdev
,
555 struct v4l2_subdev_fh
*fh
,
556 struct v4l2_subdev_crop
*crop
)
558 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
559 struct v4l2_mbus_framefmt
*__format
;
560 struct v4l2_rect
*__crop
;
561 struct v4l2_rect rect
;
563 /* Clamp the crop rectangle boundaries and align them to a multiple of 2
564 * pixels to ensure a GRBG Bayer pattern.
566 rect
.left
= clamp(ALIGN(crop
->rect
.left
, 2), MT9P031_COLUMN_START_MIN
,
567 MT9P031_COLUMN_START_MAX
);
568 rect
.top
= clamp(ALIGN(crop
->rect
.top
, 2), MT9P031_ROW_START_MIN
,
569 MT9P031_ROW_START_MAX
);
570 rect
.width
= clamp_t(unsigned int, ALIGN(crop
->rect
.width
, 2),
571 MT9P031_WINDOW_WIDTH_MIN
,
572 MT9P031_WINDOW_WIDTH_MAX
);
573 rect
.height
= clamp_t(unsigned int, ALIGN(crop
->rect
.height
, 2),
574 MT9P031_WINDOW_HEIGHT_MIN
,
575 MT9P031_WINDOW_HEIGHT_MAX
);
577 rect
.width
= min_t(unsigned int, rect
.width
,
578 MT9P031_PIXEL_ARRAY_WIDTH
- rect
.left
);
579 rect
.height
= min_t(unsigned int, rect
.height
,
580 MT9P031_PIXEL_ARRAY_HEIGHT
- rect
.top
);
582 __crop
= __mt9p031_get_pad_crop(mt9p031
, fh
, crop
->pad
, crop
->which
);
584 if (rect
.width
!= __crop
->width
|| rect
.height
!= __crop
->height
) {
585 /* Reset the output image size if the crop rectangle size has
588 __format
= __mt9p031_get_pad_format(mt9p031
, fh
, crop
->pad
,
590 __format
->width
= rect
.width
;
591 __format
->height
= rect
.height
;
600 /* -----------------------------------------------------------------------------
601 * V4L2 subdev control operations
604 #define V4L2_CID_BLC_AUTO (V4L2_CID_USER_BASE | 0x1002)
605 #define V4L2_CID_BLC_TARGET_LEVEL (V4L2_CID_USER_BASE | 0x1003)
606 #define V4L2_CID_BLC_ANALOG_OFFSET (V4L2_CID_USER_BASE | 0x1004)
607 #define V4L2_CID_BLC_DIGITAL_OFFSET (V4L2_CID_USER_BASE | 0x1005)
609 static int mt9p031_s_ctrl(struct v4l2_ctrl
*ctrl
)
611 struct mt9p031
*mt9p031
=
612 container_of(ctrl
->handler
, struct mt9p031
, ctrls
);
613 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9p031
->subdev
);
618 case V4L2_CID_EXPOSURE
:
619 ret
= mt9p031_write(client
, MT9P031_SHUTTER_WIDTH_UPPER
,
620 (ctrl
->val
>> 16) & 0xffff);
624 return mt9p031_write(client
, MT9P031_SHUTTER_WIDTH_LOWER
,
628 /* Gain is controlled by 2 analog stages and a digital stage.
629 * Valid values for the 3 stages are
632 * ------------------------------------------
633 * First analog stage x1 x2 1
634 * Second analog stage x1 x4 0.125
635 * Digital stage x1 x16 0.125
637 * To minimize noise, the gain stages should be used in the
638 * second analog stage, first analog stage, digital stage order.
639 * Gain from a previous stage should be pushed to its maximum
640 * value before the next stage is used.
642 if (ctrl
->val
<= 32) {
644 } else if (ctrl
->val
<= 64) {
646 data
= (1 << 6) | (ctrl
->val
>> 1);
649 data
= ((ctrl
->val
- 64) << 5) | (1 << 6) | 32;
652 return mt9p031_write(client
, MT9P031_GLOBAL_GAIN
, data
);
656 return mt9p031_set_mode2(mt9p031
,
657 0, MT9P031_READ_MODE_2_COL_MIR
);
659 return mt9p031_set_mode2(mt9p031
,
660 MT9P031_READ_MODE_2_COL_MIR
, 0);
664 return mt9p031_set_mode2(mt9p031
,
665 0, MT9P031_READ_MODE_2_ROW_MIR
);
667 return mt9p031_set_mode2(mt9p031
,
668 MT9P031_READ_MODE_2_ROW_MIR
, 0);
670 case V4L2_CID_TEST_PATTERN
:
672 /* Restore the black level compensation settings. */
673 if (mt9p031
->blc_auto
->cur
.val
!= 0) {
674 ret
= mt9p031_s_ctrl(mt9p031
->blc_auto
);
678 if (mt9p031
->blc_offset
->cur
.val
!= 0) {
679 ret
= mt9p031_s_ctrl(mt9p031
->blc_offset
);
683 return mt9p031_write(client
, MT9P031_TEST_PATTERN
,
684 MT9P031_TEST_PATTERN_DISABLE
);
687 ret
= mt9p031_write(client
, MT9P031_TEST_PATTERN_GREEN
, 0x05a0);
690 ret
= mt9p031_write(client
, MT9P031_TEST_PATTERN_RED
, 0x0a50);
693 ret
= mt9p031_write(client
, MT9P031_TEST_PATTERN_BLUE
, 0x0aa0);
697 /* Disable digital black level compensation when using a test
700 ret
= mt9p031_set_mode2(mt9p031
, MT9P031_READ_MODE_2_ROW_BLC
,
705 ret
= mt9p031_write(client
, MT9P031_ROW_BLACK_DEF_OFFSET
, 0);
709 return mt9p031_write(client
, MT9P031_TEST_PATTERN
,
710 ((ctrl
->val
- 1) << MT9P031_TEST_PATTERN_SHIFT
)
711 | MT9P031_TEST_PATTERN_ENABLE
);
713 case V4L2_CID_BLC_AUTO
:
714 ret
= mt9p031_set_mode2(mt9p031
,
715 ctrl
->val
? 0 : MT9P031_READ_MODE_2_ROW_BLC
,
716 ctrl
->val
? MT9P031_READ_MODE_2_ROW_BLC
: 0);
720 return mt9p031_write(client
, MT9P031_BLACK_LEVEL_CALIBRATION
,
721 ctrl
->val
? 0 : MT9P031_BLC_MANUAL_BLC
);
723 case V4L2_CID_BLC_TARGET_LEVEL
:
724 return mt9p031_write(client
, MT9P031_ROW_BLACK_TARGET
,
727 case V4L2_CID_BLC_ANALOG_OFFSET
:
728 data
= ctrl
->val
& ((1 << 9) - 1);
730 ret
= mt9p031_write(client
, MT9P031_GREEN1_OFFSET
, data
);
733 ret
= mt9p031_write(client
, MT9P031_GREEN2_OFFSET
, data
);
736 ret
= mt9p031_write(client
, MT9P031_RED_OFFSET
, data
);
739 return mt9p031_write(client
, MT9P031_BLUE_OFFSET
, data
);
741 case V4L2_CID_BLC_DIGITAL_OFFSET
:
742 return mt9p031_write(client
, MT9P031_ROW_BLACK_DEF_OFFSET
,
743 ctrl
->val
& ((1 << 12) - 1));
749 static struct v4l2_ctrl_ops mt9p031_ctrl_ops
= {
750 .s_ctrl
= mt9p031_s_ctrl
,
753 static const char * const mt9p031_test_pattern_menu
[] = {
756 "Horizontal Gradient",
759 "Classic Test Pattern",
761 "Monochrome Horizontal Bars",
762 "Monochrome Vertical Bars",
763 "Vertical Color Bars",
766 static const struct v4l2_ctrl_config mt9p031_ctrls
[] = {
768 .ops
= &mt9p031_ctrl_ops
,
769 .id
= V4L2_CID_BLC_AUTO
,
770 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
778 .ops
= &mt9p031_ctrl_ops
,
779 .id
= V4L2_CID_BLC_TARGET_LEVEL
,
780 .type
= V4L2_CTRL_TYPE_INTEGER
,
781 .name
= "BLC Target Level",
788 .ops
= &mt9p031_ctrl_ops
,
789 .id
= V4L2_CID_BLC_ANALOG_OFFSET
,
790 .type
= V4L2_CTRL_TYPE_INTEGER
,
791 .name
= "BLC Analog Offset",
798 .ops
= &mt9p031_ctrl_ops
,
799 .id
= V4L2_CID_BLC_DIGITAL_OFFSET
,
800 .type
= V4L2_CTRL_TYPE_INTEGER
,
801 .name
= "BLC Digital Offset",
810 /* -----------------------------------------------------------------------------
811 * V4L2 subdev core operations
814 static int mt9p031_set_power(struct v4l2_subdev
*subdev
, int on
)
816 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
819 mutex_lock(&mt9p031
->power_lock
);
821 /* If the power count is modified from 0 to != 0 or from != 0 to 0,
822 * update the power state.
824 if (mt9p031
->power_count
== !on
) {
825 ret
= __mt9p031_set_power(mt9p031
, !!on
);
830 /* Update the power count. */
831 mt9p031
->power_count
+= on
? 1 : -1;
832 WARN_ON(mt9p031
->power_count
< 0);
835 mutex_unlock(&mt9p031
->power_lock
);
839 /* -----------------------------------------------------------------------------
840 * V4L2 subdev internal operations
843 static int mt9p031_registered(struct v4l2_subdev
*subdev
)
845 struct i2c_client
*client
= v4l2_get_subdevdata(subdev
);
846 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
850 ret
= mt9p031_power_on(mt9p031
);
852 dev_err(&client
->dev
, "MT9P031 power up failed\n");
856 /* Read out the chip version register */
857 data
= mt9p031_read(client
, MT9P031_CHIP_VERSION
);
858 mt9p031_power_off(mt9p031
);
860 if (data
!= MT9P031_CHIP_VERSION_VALUE
) {
861 dev_err(&client
->dev
, "MT9P031 not detected, wrong version "
866 dev_info(&client
->dev
, "MT9P031 detected at address 0x%02x\n",
872 static int mt9p031_open(struct v4l2_subdev
*subdev
, struct v4l2_subdev_fh
*fh
)
874 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
875 struct v4l2_mbus_framefmt
*format
;
876 struct v4l2_rect
*crop
;
878 crop
= v4l2_subdev_get_try_crop(fh
, 0);
879 crop
->left
= MT9P031_COLUMN_START_DEF
;
880 crop
->top
= MT9P031_ROW_START_DEF
;
881 crop
->width
= MT9P031_WINDOW_WIDTH_DEF
;
882 crop
->height
= MT9P031_WINDOW_HEIGHT_DEF
;
884 format
= v4l2_subdev_get_try_format(fh
, 0);
886 if (mt9p031
->model
== MT9P031_MODEL_MONOCHROME
)
887 format
->code
= V4L2_MBUS_FMT_Y12_1X12
;
889 format
->code
= V4L2_MBUS_FMT_SGRBG12_1X12
;
891 format
->width
= MT9P031_WINDOW_WIDTH_DEF
;
892 format
->height
= MT9P031_WINDOW_HEIGHT_DEF
;
893 format
->field
= V4L2_FIELD_NONE
;
894 format
->colorspace
= V4L2_COLORSPACE_SRGB
;
896 return mt9p031_set_power(subdev
, 1);
899 static int mt9p031_close(struct v4l2_subdev
*subdev
, struct v4l2_subdev_fh
*fh
)
901 return mt9p031_set_power(subdev
, 0);
904 static struct v4l2_subdev_core_ops mt9p031_subdev_core_ops
= {
905 .s_power
= mt9p031_set_power
,
908 static struct v4l2_subdev_video_ops mt9p031_subdev_video_ops
= {
909 .s_stream
= mt9p031_s_stream
,
912 static struct v4l2_subdev_pad_ops mt9p031_subdev_pad_ops
= {
913 .enum_mbus_code
= mt9p031_enum_mbus_code
,
914 .enum_frame_size
= mt9p031_enum_frame_size
,
915 .get_fmt
= mt9p031_get_format
,
916 .set_fmt
= mt9p031_set_format
,
917 .get_crop
= mt9p031_get_crop
,
918 .set_crop
= mt9p031_set_crop
,
921 static struct v4l2_subdev_ops mt9p031_subdev_ops
= {
922 .core
= &mt9p031_subdev_core_ops
,
923 .video
= &mt9p031_subdev_video_ops
,
924 .pad
= &mt9p031_subdev_pad_ops
,
927 static const struct v4l2_subdev_internal_ops mt9p031_subdev_internal_ops
= {
928 .registered
= mt9p031_registered
,
929 .open
= mt9p031_open
,
930 .close
= mt9p031_close
,
933 /* -----------------------------------------------------------------------------
934 * Driver initialization and probing
937 static struct mt9p031_platform_data
*
938 mt9p031_get_pdata(struct i2c_client
*client
)
940 struct mt9p031_platform_data
*pdata
;
941 struct device_node
*np
;
943 if (!IS_ENABLED(CONFIG_OF
) || !client
->dev
.of_node
)
944 return client
->dev
.platform_data
;
946 np
= v4l2_of_get_next_endpoint(client
->dev
.of_node
, NULL
);
950 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
954 pdata
->reset
= of_get_named_gpio(client
->dev
.of_node
, "reset-gpios", 0);
955 of_property_read_u32(np
, "input-clock-frequency", &pdata
->ext_freq
);
956 of_property_read_u32(np
, "pixel-clock-frequency", &pdata
->target_freq
);
963 static int mt9p031_probe(struct i2c_client
*client
,
964 const struct i2c_device_id
*did
)
966 struct mt9p031_platform_data
*pdata
= mt9p031_get_pdata(client
);
967 struct i2c_adapter
*adapter
= to_i2c_adapter(client
->dev
.parent
);
968 struct mt9p031
*mt9p031
;
973 dev_err(&client
->dev
, "No platform data\n");
977 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_WORD_DATA
)) {
978 dev_warn(&client
->dev
,
979 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
983 mt9p031
= devm_kzalloc(&client
->dev
, sizeof(*mt9p031
), GFP_KERNEL
);
987 mt9p031
->pdata
= pdata
;
988 mt9p031
->output_control
= MT9P031_OUTPUT_CONTROL_DEF
;
989 mt9p031
->mode2
= MT9P031_READ_MODE_2_ROW_BLC
;
990 mt9p031
->model
= did
->driver_data
;
993 mt9p031
->regulators
[0].supply
= "vdd";
994 mt9p031
->regulators
[1].supply
= "vdd_io";
995 mt9p031
->regulators
[2].supply
= "vaa";
997 ret
= devm_regulator_bulk_get(&client
->dev
, 3, mt9p031
->regulators
);
999 dev_err(&client
->dev
, "Unable to get regulators\n");
1003 v4l2_ctrl_handler_init(&mt9p031
->ctrls
, ARRAY_SIZE(mt9p031_ctrls
) + 6);
1005 v4l2_ctrl_new_std(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1006 V4L2_CID_EXPOSURE
, MT9P031_SHUTTER_WIDTH_MIN
,
1007 MT9P031_SHUTTER_WIDTH_MAX
, 1,
1008 MT9P031_SHUTTER_WIDTH_DEF
);
1009 v4l2_ctrl_new_std(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1010 V4L2_CID_GAIN
, MT9P031_GLOBAL_GAIN_MIN
,
1011 MT9P031_GLOBAL_GAIN_MAX
, 1, MT9P031_GLOBAL_GAIN_DEF
);
1012 v4l2_ctrl_new_std(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1013 V4L2_CID_HFLIP
, 0, 1, 1, 0);
1014 v4l2_ctrl_new_std(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1015 V4L2_CID_VFLIP
, 0, 1, 1, 0);
1016 v4l2_ctrl_new_std(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1017 V4L2_CID_PIXEL_RATE
, pdata
->target_freq
,
1018 pdata
->target_freq
, 1, pdata
->target_freq
);
1019 v4l2_ctrl_new_std_menu_items(&mt9p031
->ctrls
, &mt9p031_ctrl_ops
,
1020 V4L2_CID_TEST_PATTERN
,
1021 ARRAY_SIZE(mt9p031_test_pattern_menu
) - 1, 0,
1022 0, mt9p031_test_pattern_menu
);
1024 for (i
= 0; i
< ARRAY_SIZE(mt9p031_ctrls
); ++i
)
1025 v4l2_ctrl_new_custom(&mt9p031
->ctrls
, &mt9p031_ctrls
[i
], NULL
);
1027 mt9p031
->subdev
.ctrl_handler
= &mt9p031
->ctrls
;
1029 if (mt9p031
->ctrls
.error
) {
1030 printk(KERN_INFO
"%s: control initialization error %d\n",
1031 __func__
, mt9p031
->ctrls
.error
);
1032 ret
= mt9p031
->ctrls
.error
;
1036 mt9p031
->blc_auto
= v4l2_ctrl_find(&mt9p031
->ctrls
, V4L2_CID_BLC_AUTO
);
1037 mt9p031
->blc_offset
= v4l2_ctrl_find(&mt9p031
->ctrls
,
1038 V4L2_CID_BLC_DIGITAL_OFFSET
);
1040 mutex_init(&mt9p031
->power_lock
);
1041 v4l2_i2c_subdev_init(&mt9p031
->subdev
, client
, &mt9p031_subdev_ops
);
1042 mt9p031
->subdev
.internal_ops
= &mt9p031_subdev_internal_ops
;
1044 mt9p031
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1045 ret
= media_entity_init(&mt9p031
->subdev
.entity
, 1, &mt9p031
->pad
, 0);
1049 mt9p031
->subdev
.flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1051 mt9p031
->crop
.width
= MT9P031_WINDOW_WIDTH_DEF
;
1052 mt9p031
->crop
.height
= MT9P031_WINDOW_HEIGHT_DEF
;
1053 mt9p031
->crop
.left
= MT9P031_COLUMN_START_DEF
;
1054 mt9p031
->crop
.top
= MT9P031_ROW_START_DEF
;
1056 if (mt9p031
->model
== MT9P031_MODEL_MONOCHROME
)
1057 mt9p031
->format
.code
= V4L2_MBUS_FMT_Y12_1X12
;
1059 mt9p031
->format
.code
= V4L2_MBUS_FMT_SGRBG12_1X12
;
1061 mt9p031
->format
.width
= MT9P031_WINDOW_WIDTH_DEF
;
1062 mt9p031
->format
.height
= MT9P031_WINDOW_HEIGHT_DEF
;
1063 mt9p031
->format
.field
= V4L2_FIELD_NONE
;
1064 mt9p031
->format
.colorspace
= V4L2_COLORSPACE_SRGB
;
1066 if (gpio_is_valid(pdata
->reset
)) {
1067 ret
= devm_gpio_request_one(&client
->dev
, pdata
->reset
,
1068 GPIOF_OUT_INIT_LOW
, "mt9p031_rst");
1072 mt9p031
->reset
= pdata
->reset
;
1075 ret
= mt9p031_clk_setup(mt9p031
);
1079 v4l2_ctrl_handler_free(&mt9p031
->ctrls
);
1080 media_entity_cleanup(&mt9p031
->subdev
.entity
);
1086 static int mt9p031_remove(struct i2c_client
*client
)
1088 struct v4l2_subdev
*subdev
= i2c_get_clientdata(client
);
1089 struct mt9p031
*mt9p031
= to_mt9p031(subdev
);
1091 v4l2_ctrl_handler_free(&mt9p031
->ctrls
);
1092 v4l2_device_unregister_subdev(subdev
);
1093 media_entity_cleanup(&subdev
->entity
);
1098 static const struct i2c_device_id mt9p031_id
[] = {
1099 { "mt9p031", MT9P031_MODEL_COLOR
},
1100 { "mt9p031m", MT9P031_MODEL_MONOCHROME
},
1103 MODULE_DEVICE_TABLE(i2c
, mt9p031_id
);
1105 #if IS_ENABLED(CONFIG_OF)
1106 static const struct of_device_id mt9p031_of_match
[] = {
1107 { .compatible
= "aptina,mt9p031", },
1108 { .compatible
= "aptina,mt9p031m", },
1111 MODULE_DEVICE_TABLE(of
, mt9p031_of_match
);
1114 static struct i2c_driver mt9p031_i2c_driver
= {
1116 .of_match_table
= of_match_ptr(mt9p031_of_match
),
1119 .probe
= mt9p031_probe
,
1120 .remove
= mt9p031_remove
,
1121 .id_table
= mt9p031_id
,
1124 module_i2c_driver(mt9p031_i2c_driver
);
1126 MODULE_DESCRIPTION("Aptina MT9P031 Camera driver");
1127 MODULE_AUTHOR("Bastian Hecht <hechtb@gmail.com>");
1128 MODULE_LICENSE("GPL v2");