1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for MT9V022, MT9V024, MT9V032, and MT9V034 CMOS Image Sensors
5 * Copyright (C) 2010, Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Based on the MT9M001 driver,
9 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/gpio/consumer.h>
15 #include <linux/i2c.h>
16 #include <linux/log2.h>
17 #include <linux/mutex.h>
19 #include <linux/of_graph.h>
20 #include <linux/regmap.h>
21 #include <linux/slab.h>
22 #include <linux/videodev2.h>
23 #include <linux/v4l2-mediabus.h>
24 #include <linux/module.h>
26 #include <media/i2c/mt9v032.h>
27 #include <media/v4l2-ctrls.h>
28 #include <media/v4l2-device.h>
29 #include <media/v4l2-fwnode.h>
30 #include <media/v4l2-subdev.h>
32 /* The first four rows are black rows. The active area spans 753x481 pixels. */
33 #define MT9V032_PIXEL_ARRAY_HEIGHT 485
34 #define MT9V032_PIXEL_ARRAY_WIDTH 753
36 #define MT9V032_SYSCLK_FREQ_DEF 26600000
38 #define MT9V032_CHIP_VERSION 0x00
39 #define MT9V032_CHIP_ID_REV1 0x1311
40 #define MT9V032_CHIP_ID_REV3 0x1313
41 #define MT9V034_CHIP_ID_REV1 0X1324
42 #define MT9V032_COLUMN_START 0x01
43 #define MT9V032_COLUMN_START_MIN 1
44 #define MT9V032_COLUMN_START_DEF 1
45 #define MT9V032_COLUMN_START_MAX 752
46 #define MT9V032_ROW_START 0x02
47 #define MT9V032_ROW_START_MIN 4
48 #define MT9V032_ROW_START_DEF 5
49 #define MT9V032_ROW_START_MAX 482
50 #define MT9V032_WINDOW_HEIGHT 0x03
51 #define MT9V032_WINDOW_HEIGHT_MIN 1
52 #define MT9V032_WINDOW_HEIGHT_DEF 480
53 #define MT9V032_WINDOW_HEIGHT_MAX 480
54 #define MT9V032_WINDOW_WIDTH 0x04
55 #define MT9V032_WINDOW_WIDTH_MIN 1
56 #define MT9V032_WINDOW_WIDTH_DEF 752
57 #define MT9V032_WINDOW_WIDTH_MAX 752
58 #define MT9V032_HORIZONTAL_BLANKING 0x05
59 #define MT9V032_HORIZONTAL_BLANKING_MIN 43
60 #define MT9V034_HORIZONTAL_BLANKING_MIN 61
61 #define MT9V032_HORIZONTAL_BLANKING_DEF 94
62 #define MT9V032_HORIZONTAL_BLANKING_MAX 1023
63 #define MT9V032_VERTICAL_BLANKING 0x06
64 #define MT9V032_VERTICAL_BLANKING_MIN 4
65 #define MT9V034_VERTICAL_BLANKING_MIN 2
66 #define MT9V032_VERTICAL_BLANKING_DEF 45
67 #define MT9V032_VERTICAL_BLANKING_MAX 3000
68 #define MT9V034_VERTICAL_BLANKING_MAX 32288
69 #define MT9V032_CHIP_CONTROL 0x07
70 #define MT9V032_CHIP_CONTROL_MASTER_MODE (1 << 3)
71 #define MT9V032_CHIP_CONTROL_DOUT_ENABLE (1 << 7)
72 #define MT9V032_CHIP_CONTROL_SEQUENTIAL (1 << 8)
73 #define MT9V032_SHUTTER_WIDTH1 0x08
74 #define MT9V032_SHUTTER_WIDTH2 0x09
75 #define MT9V032_SHUTTER_WIDTH_CONTROL 0x0a
76 #define MT9V032_TOTAL_SHUTTER_WIDTH 0x0b
77 #define MT9V032_TOTAL_SHUTTER_WIDTH_MIN 1
78 #define MT9V034_TOTAL_SHUTTER_WIDTH_MIN 0
79 #define MT9V032_TOTAL_SHUTTER_WIDTH_DEF 480
80 #define MT9V032_TOTAL_SHUTTER_WIDTH_MAX 32767
81 #define MT9V034_TOTAL_SHUTTER_WIDTH_MAX 32765
82 #define MT9V032_RESET 0x0c
83 #define MT9V032_READ_MODE 0x0d
84 #define MT9V032_READ_MODE_ROW_BIN_MASK (3 << 0)
85 #define MT9V032_READ_MODE_ROW_BIN_SHIFT 0
86 #define MT9V032_READ_MODE_COLUMN_BIN_MASK (3 << 2)
87 #define MT9V032_READ_MODE_COLUMN_BIN_SHIFT 2
88 #define MT9V032_READ_MODE_ROW_FLIP (1 << 4)
89 #define MT9V032_READ_MODE_COLUMN_FLIP (1 << 5)
90 #define MT9V032_READ_MODE_DARK_COLUMNS (1 << 6)
91 #define MT9V032_READ_MODE_DARK_ROWS (1 << 7)
92 #define MT9V032_READ_MODE_RESERVED 0x0300
93 #define MT9V032_PIXEL_OPERATION_MODE 0x0f
94 #define MT9V034_PIXEL_OPERATION_MODE_HDR (1 << 0)
95 #define MT9V034_PIXEL_OPERATION_MODE_COLOR (1 << 1)
96 #define MT9V032_PIXEL_OPERATION_MODE_COLOR (1 << 2)
97 #define MT9V032_PIXEL_OPERATION_MODE_HDR (1 << 6)
98 #define MT9V032_ANALOG_GAIN 0x35
99 #define MT9V032_ANALOG_GAIN_MIN 16
100 #define MT9V032_ANALOG_GAIN_DEF 16
101 #define MT9V032_ANALOG_GAIN_MAX 64
102 #define MT9V032_MAX_ANALOG_GAIN 0x36
103 #define MT9V032_MAX_ANALOG_GAIN_MAX 127
104 #define MT9V032_FRAME_DARK_AVERAGE 0x42
105 #define MT9V032_DARK_AVG_THRESH 0x46
106 #define MT9V032_DARK_AVG_LOW_THRESH_MASK (255 << 0)
107 #define MT9V032_DARK_AVG_LOW_THRESH_SHIFT 0
108 #define MT9V032_DARK_AVG_HIGH_THRESH_MASK (255 << 8)
109 #define MT9V032_DARK_AVG_HIGH_THRESH_SHIFT 8
110 #define MT9V032_ROW_NOISE_CORR_CONTROL 0x70
111 #define MT9V034_ROW_NOISE_CORR_ENABLE (1 << 0)
112 #define MT9V034_ROW_NOISE_CORR_USE_BLK_AVG (1 << 1)
113 #define MT9V032_ROW_NOISE_CORR_ENABLE (1 << 5)
114 #define MT9V032_ROW_NOISE_CORR_USE_BLK_AVG (1 << 7)
115 #define MT9V032_PIXEL_CLOCK 0x74
116 #define MT9V034_PIXEL_CLOCK 0x72
117 #define MT9V032_PIXEL_CLOCK_INV_LINE (1 << 0)
118 #define MT9V032_PIXEL_CLOCK_INV_FRAME (1 << 1)
119 #define MT9V032_PIXEL_CLOCK_XOR_LINE (1 << 2)
120 #define MT9V032_PIXEL_CLOCK_CONT_LINE (1 << 3)
121 #define MT9V032_PIXEL_CLOCK_INV_PXL_CLK (1 << 4)
122 #define MT9V032_TEST_PATTERN 0x7f
123 #define MT9V032_TEST_PATTERN_DATA_MASK (1023 << 0)
124 #define MT9V032_TEST_PATTERN_DATA_SHIFT 0
125 #define MT9V032_TEST_PATTERN_USE_DATA (1 << 10)
126 #define MT9V032_TEST_PATTERN_GRAY_MASK (3 << 11)
127 #define MT9V032_TEST_PATTERN_GRAY_NONE (0 << 11)
128 #define MT9V032_TEST_PATTERN_GRAY_VERTICAL (1 << 11)
129 #define MT9V032_TEST_PATTERN_GRAY_HORIZONTAL (2 << 11)
130 #define MT9V032_TEST_PATTERN_GRAY_DIAGONAL (3 << 11)
131 #define MT9V032_TEST_PATTERN_ENABLE (1 << 13)
132 #define MT9V032_TEST_PATTERN_FLIP (1 << 14)
133 #define MT9V032_AEGC_DESIRED_BIN 0xa5
134 #define MT9V032_AEC_UPDATE_FREQUENCY 0xa6
135 #define MT9V032_AEC_LPF 0xa8
136 #define MT9V032_AGC_UPDATE_FREQUENCY 0xa9
137 #define MT9V032_AGC_LPF 0xaa
138 #define MT9V032_AEC_AGC_ENABLE 0xaf
139 #define MT9V032_AEC_ENABLE (1 << 0)
140 #define MT9V032_AGC_ENABLE (1 << 1)
141 #define MT9V034_AEC_MAX_SHUTTER_WIDTH 0xad
142 #define MT9V032_AEC_MAX_SHUTTER_WIDTH 0xbd
143 #define MT9V032_THERMAL_INFO 0xc1
146 MT9V032_MODEL_V022_COLOR
, /* MT9V022IX7ATC */
147 MT9V032_MODEL_V022_MONO
, /* MT9V022IX7ATM */
148 MT9V032_MODEL_V024_COLOR
, /* MT9V024IA7XTC */
149 MT9V032_MODEL_V024_MONO
, /* MT9V024IA7XTM */
150 MT9V032_MODEL_V032_COLOR
, /* MT9V032C12STM */
151 MT9V032_MODEL_V032_MONO
, /* MT9V032C12STC */
152 MT9V032_MODEL_V034_COLOR
,
153 MT9V032_MODEL_V034_MONO
,
156 struct mt9v032_model_version
{
157 unsigned int version
;
161 struct mt9v032_model_data
{
162 unsigned int min_row_time
;
163 unsigned int min_hblank
;
164 unsigned int min_vblank
;
165 unsigned int max_vblank
;
166 unsigned int min_shutter
;
167 unsigned int max_shutter
;
168 unsigned int pclk_reg
;
169 unsigned int aec_max_shutter_reg
;
170 const struct v4l2_ctrl_config
* const aec_max_shutter_v4l2_ctrl
;
173 struct mt9v032_model_info
{
174 const struct mt9v032_model_data
*data
;
178 static const struct mt9v032_model_version mt9v032_versions
[] = {
179 { MT9V032_CHIP_ID_REV1
, "MT9V022/MT9V032 rev1/2" },
180 { MT9V032_CHIP_ID_REV3
, "MT9V022/MT9V032 rev3" },
181 { MT9V034_CHIP_ID_REV1
, "MT9V024/MT9V034 rev1" },
185 struct v4l2_subdev subdev
;
186 struct media_pad pad
;
188 struct v4l2_mbus_framefmt format
;
189 struct v4l2_rect crop
;
193 struct v4l2_ctrl_handler ctrls
;
195 struct v4l2_ctrl
*link_freq
;
196 struct v4l2_ctrl
*pixel_rate
;
199 struct mutex power_lock
;
202 struct regmap
*regmap
;
204 struct gpio_desc
*reset_gpio
;
205 struct gpio_desc
*standby_gpio
;
207 struct mt9v032_platform_data
*pdata
;
208 const struct mt9v032_model_info
*model
;
209 const struct mt9v032_model_version
*version
;
215 struct v4l2_ctrl
*test_pattern
;
216 struct v4l2_ctrl
*test_pattern_color
;
220 static struct mt9v032
*to_mt9v032(struct v4l2_subdev
*sd
)
222 return container_of(sd
, struct mt9v032
, subdev
);
226 mt9v032_update_aec_agc(struct mt9v032
*mt9v032
, u16 which
, int enable
)
228 struct regmap
*map
= mt9v032
->regmap
;
229 u16 value
= mt9v032
->aec_agc
;
237 ret
= regmap_write(map
, MT9V032_AEC_AGC_ENABLE
, value
);
241 mt9v032
->aec_agc
= value
;
246 mt9v032_update_hblank(struct mt9v032
*mt9v032
)
248 struct v4l2_rect
*crop
= &mt9v032
->crop
;
249 unsigned int min_hblank
= mt9v032
->model
->data
->min_hblank
;
252 if (mt9v032
->version
->version
== MT9V034_CHIP_ID_REV1
)
253 min_hblank
+= (mt9v032
->hratio
- 1) * 10;
254 min_hblank
= max_t(int, mt9v032
->model
->data
->min_row_time
- crop
->width
,
256 hblank
= max_t(unsigned int, mt9v032
->hblank
, min_hblank
);
258 return regmap_write(mt9v032
->regmap
, MT9V032_HORIZONTAL_BLANKING
,
262 static int mt9v032_power_on(struct mt9v032
*mt9v032
)
264 struct regmap
*map
= mt9v032
->regmap
;
267 gpiod_set_value_cansleep(mt9v032
->reset_gpio
, 1);
269 ret
= clk_set_rate(mt9v032
->clk
, mt9v032
->sysclk
);
273 /* System clock has to be enabled before releasing the reset */
274 ret
= clk_prepare_enable(mt9v032
->clk
);
280 if (mt9v032
->reset_gpio
) {
281 gpiod_set_value_cansleep(mt9v032
->reset_gpio
, 0);
283 /* After releasing reset we need to wait 10 clock cycles
284 * before accessing the sensor over I2C. As the minimum SYSCLK
285 * frequency is 13MHz, waiting 1µs will be enough in the worst
291 /* Reset the chip and stop data read out */
292 ret
= regmap_write(map
, MT9V032_RESET
, 1);
296 ret
= regmap_write(map
, MT9V032_RESET
, 0);
300 ret
= regmap_write(map
, MT9V032_CHIP_CONTROL
,
301 MT9V032_CHIP_CONTROL_MASTER_MODE
);
308 clk_disable_unprepare(mt9v032
->clk
);
312 static void mt9v032_power_off(struct mt9v032
*mt9v032
)
314 clk_disable_unprepare(mt9v032
->clk
);
317 static int __mt9v032_set_power(struct mt9v032
*mt9v032
, bool on
)
319 struct regmap
*map
= mt9v032
->regmap
;
323 mt9v032_power_off(mt9v032
);
327 ret
= mt9v032_power_on(mt9v032
);
331 /* Configure the pixel clock polarity */
332 if (mt9v032
->pdata
&& mt9v032
->pdata
->clk_pol
) {
333 ret
= regmap_write(map
, mt9v032
->model
->data
->pclk_reg
,
334 MT9V032_PIXEL_CLOCK_INV_PXL_CLK
);
339 /* Disable the noise correction algorithm and restore the controls. */
340 ret
= regmap_write(map
, MT9V032_ROW_NOISE_CORR_CONTROL
, 0);
344 return v4l2_ctrl_handler_setup(&mt9v032
->ctrls
);
347 /* -----------------------------------------------------------------------------
348 * V4L2 subdev video operations
351 static struct v4l2_mbus_framefmt
*
352 __mt9v032_get_pad_format(struct mt9v032
*mt9v032
, struct v4l2_subdev_pad_config
*cfg
,
353 unsigned int pad
, enum v4l2_subdev_format_whence which
)
356 case V4L2_SUBDEV_FORMAT_TRY
:
357 return v4l2_subdev_get_try_format(&mt9v032
->subdev
, cfg
, pad
);
358 case V4L2_SUBDEV_FORMAT_ACTIVE
:
359 return &mt9v032
->format
;
365 static struct v4l2_rect
*
366 __mt9v032_get_pad_crop(struct mt9v032
*mt9v032
, struct v4l2_subdev_pad_config
*cfg
,
367 unsigned int pad
, enum v4l2_subdev_format_whence which
)
370 case V4L2_SUBDEV_FORMAT_TRY
:
371 return v4l2_subdev_get_try_crop(&mt9v032
->subdev
, cfg
, pad
);
372 case V4L2_SUBDEV_FORMAT_ACTIVE
:
373 return &mt9v032
->crop
;
379 static int mt9v032_s_stream(struct v4l2_subdev
*subdev
, int enable
)
381 const u16 mode
= MT9V032_CHIP_CONTROL_DOUT_ENABLE
382 | MT9V032_CHIP_CONTROL_SEQUENTIAL
;
383 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
384 struct v4l2_rect
*crop
= &mt9v032
->crop
;
385 struct regmap
*map
= mt9v032
->regmap
;
391 return regmap_update_bits(map
, MT9V032_CHIP_CONTROL
, mode
, 0);
393 /* Configure the window size and row/column bin */
394 hbin
= fls(mt9v032
->hratio
) - 1;
395 vbin
= fls(mt9v032
->vratio
) - 1;
396 ret
= regmap_update_bits(map
, MT9V032_READ_MODE
,
397 ~MT9V032_READ_MODE_RESERVED
,
398 hbin
<< MT9V032_READ_MODE_COLUMN_BIN_SHIFT
|
399 vbin
<< MT9V032_READ_MODE_ROW_BIN_SHIFT
);
403 ret
= regmap_write(map
, MT9V032_COLUMN_START
, crop
->left
);
407 ret
= regmap_write(map
, MT9V032_ROW_START
, crop
->top
);
411 ret
= regmap_write(map
, MT9V032_WINDOW_WIDTH
, crop
->width
);
415 ret
= regmap_write(map
, MT9V032_WINDOW_HEIGHT
, crop
->height
);
419 ret
= mt9v032_update_hblank(mt9v032
);
423 /* Switch to master "normal" mode */
424 return regmap_update_bits(map
, MT9V032_CHIP_CONTROL
, mode
, mode
);
427 static int mt9v032_enum_mbus_code(struct v4l2_subdev
*subdev
,
428 struct v4l2_subdev_pad_config
*cfg
,
429 struct v4l2_subdev_mbus_code_enum
*code
)
431 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
436 code
->code
= mt9v032
->format
.code
;
440 static int mt9v032_enum_frame_size(struct v4l2_subdev
*subdev
,
441 struct v4l2_subdev_pad_config
*cfg
,
442 struct v4l2_subdev_frame_size_enum
*fse
)
444 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
448 if (mt9v032
->format
.code
!= fse
->code
)
451 fse
->min_width
= MT9V032_WINDOW_WIDTH_DEF
/ (1 << fse
->index
);
452 fse
->max_width
= fse
->min_width
;
453 fse
->min_height
= MT9V032_WINDOW_HEIGHT_DEF
/ (1 << fse
->index
);
454 fse
->max_height
= fse
->min_height
;
459 static int mt9v032_get_format(struct v4l2_subdev
*subdev
,
460 struct v4l2_subdev_pad_config
*cfg
,
461 struct v4l2_subdev_format
*format
)
463 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
465 format
->format
= *__mt9v032_get_pad_format(mt9v032
, cfg
, format
->pad
,
470 static void mt9v032_configure_pixel_rate(struct mt9v032
*mt9v032
)
472 struct i2c_client
*client
= v4l2_get_subdevdata(&mt9v032
->subdev
);
475 ret
= v4l2_ctrl_s_ctrl_int64(mt9v032
->pixel_rate
,
476 mt9v032
->sysclk
/ mt9v032
->hratio
);
478 dev_warn(&client
->dev
, "failed to set pixel rate (%d)\n", ret
);
481 static unsigned int mt9v032_calc_ratio(unsigned int input
, unsigned int output
)
483 /* Compute the power-of-two binning factor closest to the input size to
484 * output size ratio. Given that the output size is bounded by input/4
485 * and input, a generic implementation would be an ineffective luxury.
487 if (output
* 3 > input
* 2)
489 if (output
* 3 > input
)
494 static int mt9v032_set_format(struct v4l2_subdev
*subdev
,
495 struct v4l2_subdev_pad_config
*cfg
,
496 struct v4l2_subdev_format
*format
)
498 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
499 struct v4l2_mbus_framefmt
*__format
;
500 struct v4l2_rect
*__crop
;
506 __crop
= __mt9v032_get_pad_crop(mt9v032
, cfg
, format
->pad
,
509 /* Clamp the width and height to avoid dividing by zero. */
510 width
= clamp(ALIGN(format
->format
.width
, 2),
511 max_t(unsigned int, __crop
->width
/ 4,
512 MT9V032_WINDOW_WIDTH_MIN
),
514 height
= clamp(ALIGN(format
->format
.height
, 2),
515 max_t(unsigned int, __crop
->height
/ 4,
516 MT9V032_WINDOW_HEIGHT_MIN
),
519 hratio
= mt9v032_calc_ratio(__crop
->width
, width
);
520 vratio
= mt9v032_calc_ratio(__crop
->height
, height
);
522 __format
= __mt9v032_get_pad_format(mt9v032
, cfg
, format
->pad
,
524 __format
->width
= __crop
->width
/ hratio
;
525 __format
->height
= __crop
->height
/ vratio
;
527 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
) {
528 mt9v032
->hratio
= hratio
;
529 mt9v032
->vratio
= vratio
;
530 mt9v032_configure_pixel_rate(mt9v032
);
533 format
->format
= *__format
;
538 static int mt9v032_get_selection(struct v4l2_subdev
*subdev
,
539 struct v4l2_subdev_pad_config
*cfg
,
540 struct v4l2_subdev_selection
*sel
)
542 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
544 if (sel
->target
!= V4L2_SEL_TGT_CROP
)
547 sel
->r
= *__mt9v032_get_pad_crop(mt9v032
, cfg
, sel
->pad
, sel
->which
);
551 static int mt9v032_set_selection(struct v4l2_subdev
*subdev
,
552 struct v4l2_subdev_pad_config
*cfg
,
553 struct v4l2_subdev_selection
*sel
)
555 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
556 struct v4l2_mbus_framefmt
*__format
;
557 struct v4l2_rect
*__crop
;
558 struct v4l2_rect rect
;
560 if (sel
->target
!= V4L2_SEL_TGT_CROP
)
563 /* Clamp the crop rectangle boundaries and align them to a non multiple
564 * of 2 pixels to ensure a GRBG Bayer pattern.
566 rect
.left
= clamp(ALIGN(sel
->r
.left
+ 1, 2) - 1,
567 MT9V032_COLUMN_START_MIN
,
568 MT9V032_COLUMN_START_MAX
);
569 rect
.top
= clamp(ALIGN(sel
->r
.top
+ 1, 2) - 1,
570 MT9V032_ROW_START_MIN
,
571 MT9V032_ROW_START_MAX
);
572 rect
.width
= clamp_t(unsigned int, ALIGN(sel
->r
.width
, 2),
573 MT9V032_WINDOW_WIDTH_MIN
,
574 MT9V032_WINDOW_WIDTH_MAX
);
575 rect
.height
= clamp_t(unsigned int, ALIGN(sel
->r
.height
, 2),
576 MT9V032_WINDOW_HEIGHT_MIN
,
577 MT9V032_WINDOW_HEIGHT_MAX
);
579 rect
.width
= min_t(unsigned int,
580 rect
.width
, MT9V032_PIXEL_ARRAY_WIDTH
- rect
.left
);
581 rect
.height
= min_t(unsigned int,
582 rect
.height
, MT9V032_PIXEL_ARRAY_HEIGHT
- rect
.top
);
584 __crop
= __mt9v032_get_pad_crop(mt9v032
, cfg
, sel
->pad
, sel
->which
);
586 if (rect
.width
!= __crop
->width
|| rect
.height
!= __crop
->height
) {
587 /* Reset the output image size if the crop rectangle size has
590 __format
= __mt9v032_get_pad_format(mt9v032
, cfg
, sel
->pad
,
592 __format
->width
= rect
.width
;
593 __format
->height
= rect
.height
;
594 if (sel
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
) {
597 mt9v032_configure_pixel_rate(mt9v032
);
607 /* -----------------------------------------------------------------------------
608 * V4L2 subdev control operations
611 #define V4L2_CID_TEST_PATTERN_COLOR (V4L2_CID_USER_BASE | 0x1001)
613 * Value between 1 and 64 to set the desired bin. This is effectively a measure
614 * of how bright the image is supposed to be. Both AGC and AEC try to reach
617 #define V4L2_CID_AEGC_DESIRED_BIN (V4L2_CID_USER_BASE | 0x1002)
619 * LPF is the low pass filter capability of the chip. Both AEC and AGC have
620 * this setting. This limits the speed in which AGC/AEC adjust their settings.
621 * Possible values are 0-2. 0 means no LPF. For 1 and 2 this equation is used:
623 * if |(calculated new exp - current exp)| > (current exp / 4)
624 * next exp = calculated new exp
626 * next exp = current exp + ((calculated new exp - current exp) / 2^LPF)
628 #define V4L2_CID_AEC_LPF (V4L2_CID_USER_BASE | 0x1003)
629 #define V4L2_CID_AGC_LPF (V4L2_CID_USER_BASE | 0x1004)
631 * Value between 0 and 15. This is the number of frames being skipped before
632 * updating the auto exposure/gain.
634 #define V4L2_CID_AEC_UPDATE_INTERVAL (V4L2_CID_USER_BASE | 0x1005)
635 #define V4L2_CID_AGC_UPDATE_INTERVAL (V4L2_CID_USER_BASE | 0x1006)
637 * Maximum shutter width used for AEC.
639 #define V4L2_CID_AEC_MAX_SHUTTER_WIDTH (V4L2_CID_USER_BASE | 0x1007)
641 static int mt9v032_s_ctrl(struct v4l2_ctrl
*ctrl
)
643 struct mt9v032
*mt9v032
=
644 container_of(ctrl
->handler
, struct mt9v032
, ctrls
);
645 struct regmap
*map
= mt9v032
->regmap
;
650 case V4L2_CID_AUTOGAIN
:
651 return mt9v032_update_aec_agc(mt9v032
, MT9V032_AGC_ENABLE
,
655 return regmap_write(map
, MT9V032_ANALOG_GAIN
, ctrl
->val
);
657 case V4L2_CID_EXPOSURE_AUTO
:
658 return mt9v032_update_aec_agc(mt9v032
, MT9V032_AEC_ENABLE
,
661 case V4L2_CID_EXPOSURE
:
662 return regmap_write(map
, MT9V032_TOTAL_SHUTTER_WIDTH
,
665 case V4L2_CID_HBLANK
:
666 mt9v032
->hblank
= ctrl
->val
;
667 return mt9v032_update_hblank(mt9v032
);
669 case V4L2_CID_VBLANK
:
670 return regmap_write(map
, MT9V032_VERTICAL_BLANKING
,
673 case V4L2_CID_PIXEL_RATE
:
674 case V4L2_CID_LINK_FREQ
:
675 if (mt9v032
->link_freq
== NULL
)
678 freq
= mt9v032
->pdata
->link_freqs
[mt9v032
->link_freq
->val
];
679 *mt9v032
->pixel_rate
->p_new
.p_s64
= freq
;
680 mt9v032
->sysclk
= freq
;
683 case V4L2_CID_TEST_PATTERN
:
684 switch (mt9v032
->test_pattern
->val
) {
689 data
= MT9V032_TEST_PATTERN_GRAY_VERTICAL
690 | MT9V032_TEST_PATTERN_ENABLE
;
693 data
= MT9V032_TEST_PATTERN_GRAY_HORIZONTAL
694 | MT9V032_TEST_PATTERN_ENABLE
;
697 data
= MT9V032_TEST_PATTERN_GRAY_DIAGONAL
698 | MT9V032_TEST_PATTERN_ENABLE
;
701 data
= (mt9v032
->test_pattern_color
->val
<<
702 MT9V032_TEST_PATTERN_DATA_SHIFT
)
703 | MT9V032_TEST_PATTERN_USE_DATA
704 | MT9V032_TEST_PATTERN_ENABLE
705 | MT9V032_TEST_PATTERN_FLIP
;
708 return regmap_write(map
, MT9V032_TEST_PATTERN
, data
);
710 case V4L2_CID_AEGC_DESIRED_BIN
:
711 return regmap_write(map
, MT9V032_AEGC_DESIRED_BIN
, ctrl
->val
);
713 case V4L2_CID_AEC_LPF
:
714 return regmap_write(map
, MT9V032_AEC_LPF
, ctrl
->val
);
716 case V4L2_CID_AGC_LPF
:
717 return regmap_write(map
, MT9V032_AGC_LPF
, ctrl
->val
);
719 case V4L2_CID_AEC_UPDATE_INTERVAL
:
720 return regmap_write(map
, MT9V032_AEC_UPDATE_FREQUENCY
,
723 case V4L2_CID_AGC_UPDATE_INTERVAL
:
724 return regmap_write(map
, MT9V032_AGC_UPDATE_FREQUENCY
,
727 case V4L2_CID_AEC_MAX_SHUTTER_WIDTH
:
728 return regmap_write(map
,
729 mt9v032
->model
->data
->aec_max_shutter_reg
,
736 static const struct v4l2_ctrl_ops mt9v032_ctrl_ops
= {
737 .s_ctrl
= mt9v032_s_ctrl
,
740 static const char * const mt9v032_test_pattern_menu
[] = {
742 "Gray Vertical Shade",
743 "Gray Horizontal Shade",
744 "Gray Diagonal Shade",
748 static const struct v4l2_ctrl_config mt9v032_test_pattern_color
= {
749 .ops
= &mt9v032_ctrl_ops
,
750 .id
= V4L2_CID_TEST_PATTERN_COLOR
,
751 .type
= V4L2_CTRL_TYPE_INTEGER
,
752 .name
= "Test Pattern Color",
760 static const struct v4l2_ctrl_config mt9v032_aegc_controls
[] = {
762 .ops
= &mt9v032_ctrl_ops
,
763 .id
= V4L2_CID_AEGC_DESIRED_BIN
,
764 .type
= V4L2_CTRL_TYPE_INTEGER
,
765 .name
= "AEC/AGC Desired Bin",
772 .ops
= &mt9v032_ctrl_ops
,
773 .id
= V4L2_CID_AEC_LPF
,
774 .type
= V4L2_CTRL_TYPE_INTEGER
,
775 .name
= "AEC Low Pass Filter",
782 .ops
= &mt9v032_ctrl_ops
,
783 .id
= V4L2_CID_AGC_LPF
,
784 .type
= V4L2_CTRL_TYPE_INTEGER
,
785 .name
= "AGC Low Pass Filter",
792 .ops
= &mt9v032_ctrl_ops
,
793 .id
= V4L2_CID_AEC_UPDATE_INTERVAL
,
794 .type
= V4L2_CTRL_TYPE_INTEGER
,
795 .name
= "AEC Update Interval",
802 .ops
= &mt9v032_ctrl_ops
,
803 .id
= V4L2_CID_AGC_UPDATE_INTERVAL
,
804 .type
= V4L2_CTRL_TYPE_INTEGER
,
805 .name
= "AGC Update Interval",
814 static const struct v4l2_ctrl_config mt9v032_aec_max_shutter_width
= {
815 .ops
= &mt9v032_ctrl_ops
,
816 .id
= V4L2_CID_AEC_MAX_SHUTTER_WIDTH
,
817 .type
= V4L2_CTRL_TYPE_INTEGER
,
818 .name
= "AEC Max Shutter Width",
826 static const struct v4l2_ctrl_config mt9v034_aec_max_shutter_width
= {
827 .ops
= &mt9v032_ctrl_ops
,
828 .id
= V4L2_CID_AEC_MAX_SHUTTER_WIDTH
,
829 .type
= V4L2_CTRL_TYPE_INTEGER
,
830 .name
= "AEC Max Shutter Width",
838 /* -----------------------------------------------------------------------------
839 * V4L2 subdev core operations
842 static int mt9v032_set_power(struct v4l2_subdev
*subdev
, int on
)
844 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
847 mutex_lock(&mt9v032
->power_lock
);
849 /* If the power count is modified from 0 to != 0 or from != 0 to 0,
850 * update the power state.
852 if (mt9v032
->power_count
== !on
) {
853 ret
= __mt9v032_set_power(mt9v032
, !!on
);
858 /* Update the power count. */
859 mt9v032
->power_count
+= on
? 1 : -1;
860 WARN_ON(mt9v032
->power_count
< 0);
863 mutex_unlock(&mt9v032
->power_lock
);
867 /* -----------------------------------------------------------------------------
868 * V4L2 subdev internal operations
871 static int mt9v032_registered(struct v4l2_subdev
*subdev
)
873 struct i2c_client
*client
= v4l2_get_subdevdata(subdev
);
874 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
879 dev_info(&client
->dev
, "Probing MT9V032 at address 0x%02x\n",
882 ret
= mt9v032_power_on(mt9v032
);
884 dev_err(&client
->dev
, "MT9V032 power up failed\n");
888 /* Read and check the sensor version */
889 ret
= regmap_read(mt9v032
->regmap
, MT9V032_CHIP_VERSION
, &version
);
891 mt9v032_power_off(mt9v032
);
894 dev_err(&client
->dev
, "Failed reading chip version\n");
898 for (i
= 0; i
< ARRAY_SIZE(mt9v032_versions
); ++i
) {
899 if (mt9v032_versions
[i
].version
== version
) {
900 mt9v032
->version
= &mt9v032_versions
[i
];
905 if (mt9v032
->version
== NULL
) {
906 dev_err(&client
->dev
, "Unsupported chip version 0x%04x\n",
911 dev_info(&client
->dev
, "%s detected at address 0x%02x\n",
912 mt9v032
->version
->name
, client
->addr
);
914 mt9v032_configure_pixel_rate(mt9v032
);
919 static int mt9v032_open(struct v4l2_subdev
*subdev
, struct v4l2_subdev_fh
*fh
)
921 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
922 struct v4l2_mbus_framefmt
*format
;
923 struct v4l2_rect
*crop
;
925 crop
= v4l2_subdev_get_try_crop(subdev
, fh
->pad
, 0);
926 crop
->left
= MT9V032_COLUMN_START_DEF
;
927 crop
->top
= MT9V032_ROW_START_DEF
;
928 crop
->width
= MT9V032_WINDOW_WIDTH_DEF
;
929 crop
->height
= MT9V032_WINDOW_HEIGHT_DEF
;
931 format
= v4l2_subdev_get_try_format(subdev
, fh
->pad
, 0);
933 if (mt9v032
->model
->color
)
934 format
->code
= MEDIA_BUS_FMT_SGRBG10_1X10
;
936 format
->code
= MEDIA_BUS_FMT_Y10_1X10
;
938 format
->width
= MT9V032_WINDOW_WIDTH_DEF
;
939 format
->height
= MT9V032_WINDOW_HEIGHT_DEF
;
940 format
->field
= V4L2_FIELD_NONE
;
941 format
->colorspace
= V4L2_COLORSPACE_SRGB
;
943 return mt9v032_set_power(subdev
, 1);
946 static int mt9v032_close(struct v4l2_subdev
*subdev
, struct v4l2_subdev_fh
*fh
)
948 return mt9v032_set_power(subdev
, 0);
951 static const struct v4l2_subdev_core_ops mt9v032_subdev_core_ops
= {
952 .s_power
= mt9v032_set_power
,
955 static const struct v4l2_subdev_video_ops mt9v032_subdev_video_ops
= {
956 .s_stream
= mt9v032_s_stream
,
959 static const struct v4l2_subdev_pad_ops mt9v032_subdev_pad_ops
= {
960 .enum_mbus_code
= mt9v032_enum_mbus_code
,
961 .enum_frame_size
= mt9v032_enum_frame_size
,
962 .get_fmt
= mt9v032_get_format
,
963 .set_fmt
= mt9v032_set_format
,
964 .get_selection
= mt9v032_get_selection
,
965 .set_selection
= mt9v032_set_selection
,
968 static const struct v4l2_subdev_ops mt9v032_subdev_ops
= {
969 .core
= &mt9v032_subdev_core_ops
,
970 .video
= &mt9v032_subdev_video_ops
,
971 .pad
= &mt9v032_subdev_pad_ops
,
974 static const struct v4l2_subdev_internal_ops mt9v032_subdev_internal_ops
= {
975 .registered
= mt9v032_registered
,
976 .open
= mt9v032_open
,
977 .close
= mt9v032_close
,
980 static const struct regmap_config mt9v032_regmap_config
= {
983 .max_register
= 0xff,
984 .cache_type
= REGCACHE_RBTREE
,
987 /* -----------------------------------------------------------------------------
988 * Driver initialization and probing
991 static struct mt9v032_platform_data
*
992 mt9v032_get_pdata(struct i2c_client
*client
)
994 struct mt9v032_platform_data
*pdata
= NULL
;
995 struct v4l2_fwnode_endpoint endpoint
= { .bus_type
= 0 };
996 struct device_node
*np
;
997 struct property
*prop
;
999 if (!IS_ENABLED(CONFIG_OF
) || !client
->dev
.of_node
)
1000 return client
->dev
.platform_data
;
1002 np
= of_graph_get_next_endpoint(client
->dev
.of_node
, NULL
);
1006 if (v4l2_fwnode_endpoint_parse(of_fwnode_handle(np
), &endpoint
) < 0)
1009 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1013 prop
= of_find_property(np
, "link-frequencies", NULL
);
1016 size_t size
= prop
->length
/ sizeof(*link_freqs
);
1018 link_freqs
= devm_kcalloc(&client
->dev
, size
,
1019 sizeof(*link_freqs
), GFP_KERNEL
);
1023 if (of_property_read_u64_array(np
, "link-frequencies",
1024 link_freqs
, size
) < 0)
1027 pdata
->link_freqs
= link_freqs
;
1028 pdata
->link_def_freq
= link_freqs
[0];
1031 pdata
->clk_pol
= !!(endpoint
.bus
.parallel
.flags
&
1032 V4L2_MBUS_PCLK_SAMPLE_RISING
);
1039 static int mt9v032_probe(struct i2c_client
*client
,
1040 const struct i2c_device_id
*did
)
1042 struct mt9v032_platform_data
*pdata
= mt9v032_get_pdata(client
);
1043 struct mt9v032
*mt9v032
;
1047 mt9v032
= devm_kzalloc(&client
->dev
, sizeof(*mt9v032
), GFP_KERNEL
);
1051 mt9v032
->regmap
= devm_regmap_init_i2c(client
, &mt9v032_regmap_config
);
1052 if (IS_ERR(mt9v032
->regmap
))
1053 return PTR_ERR(mt9v032
->regmap
);
1055 mt9v032
->clk
= devm_clk_get(&client
->dev
, NULL
);
1056 if (IS_ERR(mt9v032
->clk
))
1057 return PTR_ERR(mt9v032
->clk
);
1059 mt9v032
->reset_gpio
= devm_gpiod_get_optional(&client
->dev
, "reset",
1061 if (IS_ERR(mt9v032
->reset_gpio
))
1062 return PTR_ERR(mt9v032
->reset_gpio
);
1064 mt9v032
->standby_gpio
= devm_gpiod_get_optional(&client
->dev
, "standby",
1066 if (IS_ERR(mt9v032
->standby_gpio
))
1067 return PTR_ERR(mt9v032
->standby_gpio
);
1069 mutex_init(&mt9v032
->power_lock
);
1070 mt9v032
->pdata
= pdata
;
1071 mt9v032
->model
= (const void *)did
->driver_data
;
1073 v4l2_ctrl_handler_init(&mt9v032
->ctrls
, 11 +
1074 ARRAY_SIZE(mt9v032_aegc_controls
));
1076 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1077 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
1078 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1079 V4L2_CID_GAIN
, MT9V032_ANALOG_GAIN_MIN
,
1080 MT9V032_ANALOG_GAIN_MAX
, 1, MT9V032_ANALOG_GAIN_DEF
);
1081 v4l2_ctrl_new_std_menu(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1082 V4L2_CID_EXPOSURE_AUTO
, V4L2_EXPOSURE_MANUAL
, 0,
1083 V4L2_EXPOSURE_AUTO
);
1084 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1085 V4L2_CID_EXPOSURE
, mt9v032
->model
->data
->min_shutter
,
1086 mt9v032
->model
->data
->max_shutter
, 1,
1087 MT9V032_TOTAL_SHUTTER_WIDTH_DEF
);
1088 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1089 V4L2_CID_HBLANK
, mt9v032
->model
->data
->min_hblank
,
1090 MT9V032_HORIZONTAL_BLANKING_MAX
, 1,
1091 MT9V032_HORIZONTAL_BLANKING_DEF
);
1092 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1093 V4L2_CID_VBLANK
, mt9v032
->model
->data
->min_vblank
,
1094 mt9v032
->model
->data
->max_vblank
, 1,
1095 MT9V032_VERTICAL_BLANKING_DEF
);
1096 mt9v032
->test_pattern
= v4l2_ctrl_new_std_menu_items(&mt9v032
->ctrls
,
1097 &mt9v032_ctrl_ops
, V4L2_CID_TEST_PATTERN
,
1098 ARRAY_SIZE(mt9v032_test_pattern_menu
) - 1, 0, 0,
1099 mt9v032_test_pattern_menu
);
1100 mt9v032
->test_pattern_color
= v4l2_ctrl_new_custom(&mt9v032
->ctrls
,
1101 &mt9v032_test_pattern_color
, NULL
);
1103 v4l2_ctrl_new_custom(&mt9v032
->ctrls
,
1104 mt9v032
->model
->data
->aec_max_shutter_v4l2_ctrl
,
1106 for (i
= 0; i
< ARRAY_SIZE(mt9v032_aegc_controls
); ++i
)
1107 v4l2_ctrl_new_custom(&mt9v032
->ctrls
, &mt9v032_aegc_controls
[i
],
1110 v4l2_ctrl_cluster(2, &mt9v032
->test_pattern
);
1112 mt9v032
->pixel_rate
=
1113 v4l2_ctrl_new_std(&mt9v032
->ctrls
, &mt9v032_ctrl_ops
,
1114 V4L2_CID_PIXEL_RATE
, 1, INT_MAX
, 1, 1);
1116 if (pdata
&& pdata
->link_freqs
) {
1117 unsigned int def
= 0;
1119 for (i
= 0; pdata
->link_freqs
[i
]; ++i
) {
1120 if (pdata
->link_freqs
[i
] == pdata
->link_def_freq
)
1124 mt9v032
->link_freq
=
1125 v4l2_ctrl_new_int_menu(&mt9v032
->ctrls
,
1127 V4L2_CID_LINK_FREQ
, i
- 1, def
,
1129 v4l2_ctrl_cluster(2, &mt9v032
->link_freq
);
1133 mt9v032
->subdev
.ctrl_handler
= &mt9v032
->ctrls
;
1135 if (mt9v032
->ctrls
.error
) {
1136 dev_err(&client
->dev
, "control initialization error %d\n",
1137 mt9v032
->ctrls
.error
);
1138 ret
= mt9v032
->ctrls
.error
;
1142 mt9v032
->crop
.left
= MT9V032_COLUMN_START_DEF
;
1143 mt9v032
->crop
.top
= MT9V032_ROW_START_DEF
;
1144 mt9v032
->crop
.width
= MT9V032_WINDOW_WIDTH_DEF
;
1145 mt9v032
->crop
.height
= MT9V032_WINDOW_HEIGHT_DEF
;
1147 if (mt9v032
->model
->color
)
1148 mt9v032
->format
.code
= MEDIA_BUS_FMT_SGRBG10_1X10
;
1150 mt9v032
->format
.code
= MEDIA_BUS_FMT_Y10_1X10
;
1152 mt9v032
->format
.width
= MT9V032_WINDOW_WIDTH_DEF
;
1153 mt9v032
->format
.height
= MT9V032_WINDOW_HEIGHT_DEF
;
1154 mt9v032
->format
.field
= V4L2_FIELD_NONE
;
1155 mt9v032
->format
.colorspace
= V4L2_COLORSPACE_SRGB
;
1157 mt9v032
->hratio
= 1;
1158 mt9v032
->vratio
= 1;
1160 mt9v032
->aec_agc
= MT9V032_AEC_ENABLE
| MT9V032_AGC_ENABLE
;
1161 mt9v032
->hblank
= MT9V032_HORIZONTAL_BLANKING_DEF
;
1162 mt9v032
->sysclk
= MT9V032_SYSCLK_FREQ_DEF
;
1164 v4l2_i2c_subdev_init(&mt9v032
->subdev
, client
, &mt9v032_subdev_ops
);
1165 mt9v032
->subdev
.internal_ops
= &mt9v032_subdev_internal_ops
;
1166 mt9v032
->subdev
.flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1168 mt9v032
->subdev
.entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1169 mt9v032
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1170 ret
= media_entity_pads_init(&mt9v032
->subdev
.entity
, 1, &mt9v032
->pad
);
1174 mt9v032
->subdev
.dev
= &client
->dev
;
1175 ret
= v4l2_async_register_subdev(&mt9v032
->subdev
);
1182 media_entity_cleanup(&mt9v032
->subdev
.entity
);
1183 v4l2_ctrl_handler_free(&mt9v032
->ctrls
);
1187 static int mt9v032_remove(struct i2c_client
*client
)
1189 struct v4l2_subdev
*subdev
= i2c_get_clientdata(client
);
1190 struct mt9v032
*mt9v032
= to_mt9v032(subdev
);
1192 v4l2_async_unregister_subdev(subdev
);
1193 v4l2_ctrl_handler_free(&mt9v032
->ctrls
);
1194 media_entity_cleanup(&subdev
->entity
);
1199 static const struct mt9v032_model_data mt9v032_model_data
[] = {
1201 /* MT9V022, MT9V032 revisions 1/2/3 */
1202 .min_row_time
= 660,
1203 .min_hblank
= MT9V032_HORIZONTAL_BLANKING_MIN
,
1204 .min_vblank
= MT9V032_VERTICAL_BLANKING_MIN
,
1205 .max_vblank
= MT9V032_VERTICAL_BLANKING_MAX
,
1206 .min_shutter
= MT9V032_TOTAL_SHUTTER_WIDTH_MIN
,
1207 .max_shutter
= MT9V032_TOTAL_SHUTTER_WIDTH_MAX
,
1208 .pclk_reg
= MT9V032_PIXEL_CLOCK
,
1209 .aec_max_shutter_reg
= MT9V032_AEC_MAX_SHUTTER_WIDTH
,
1210 .aec_max_shutter_v4l2_ctrl
= &mt9v032_aec_max_shutter_width
,
1212 /* MT9V024, MT9V034 */
1213 .min_row_time
= 690,
1214 .min_hblank
= MT9V034_HORIZONTAL_BLANKING_MIN
,
1215 .min_vblank
= MT9V034_VERTICAL_BLANKING_MIN
,
1216 .max_vblank
= MT9V034_VERTICAL_BLANKING_MAX
,
1217 .min_shutter
= MT9V034_TOTAL_SHUTTER_WIDTH_MIN
,
1218 .max_shutter
= MT9V034_TOTAL_SHUTTER_WIDTH_MAX
,
1219 .pclk_reg
= MT9V034_PIXEL_CLOCK
,
1220 .aec_max_shutter_reg
= MT9V034_AEC_MAX_SHUTTER_WIDTH
,
1221 .aec_max_shutter_v4l2_ctrl
= &mt9v034_aec_max_shutter_width
,
1225 static const struct mt9v032_model_info mt9v032_models
[] = {
1226 [MT9V032_MODEL_V022_COLOR
] = {
1227 .data
= &mt9v032_model_data
[0],
1230 [MT9V032_MODEL_V022_MONO
] = {
1231 .data
= &mt9v032_model_data
[0],
1234 [MT9V032_MODEL_V024_COLOR
] = {
1235 .data
= &mt9v032_model_data
[1],
1238 [MT9V032_MODEL_V024_MONO
] = {
1239 .data
= &mt9v032_model_data
[1],
1242 [MT9V032_MODEL_V032_COLOR
] = {
1243 .data
= &mt9v032_model_data
[0],
1246 [MT9V032_MODEL_V032_MONO
] = {
1247 .data
= &mt9v032_model_data
[0],
1250 [MT9V032_MODEL_V034_COLOR
] = {
1251 .data
= &mt9v032_model_data
[1],
1254 [MT9V032_MODEL_V034_MONO
] = {
1255 .data
= &mt9v032_model_data
[1],
1260 static const struct i2c_device_id mt9v032_id
[] = {
1261 { "mt9v022", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V022_COLOR
] },
1262 { "mt9v022m", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V022_MONO
] },
1263 { "mt9v024", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V024_COLOR
] },
1264 { "mt9v024m", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V024_MONO
] },
1265 { "mt9v032", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V032_COLOR
] },
1266 { "mt9v032m", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V032_MONO
] },
1267 { "mt9v034", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V034_COLOR
] },
1268 { "mt9v034m", (kernel_ulong_t
)&mt9v032_models
[MT9V032_MODEL_V034_MONO
] },
1271 MODULE_DEVICE_TABLE(i2c
, mt9v032_id
);
1273 #if IS_ENABLED(CONFIG_OF)
1274 static const struct of_device_id mt9v032_of_match
[] = {
1275 { .compatible
= "aptina,mt9v022" },
1276 { .compatible
= "aptina,mt9v022m" },
1277 { .compatible
= "aptina,mt9v024" },
1278 { .compatible
= "aptina,mt9v024m" },
1279 { .compatible
= "aptina,mt9v032" },
1280 { .compatible
= "aptina,mt9v032m" },
1281 { .compatible
= "aptina,mt9v034" },
1282 { .compatible
= "aptina,mt9v034m" },
1285 MODULE_DEVICE_TABLE(of
, mt9v032_of_match
);
1288 static struct i2c_driver mt9v032_driver
= {
1291 .of_match_table
= of_match_ptr(mt9v032_of_match
),
1293 .probe
= mt9v032_probe
,
1294 .remove
= mt9v032_remove
,
1295 .id_table
= mt9v032_id
,
1298 module_i2c_driver(mt9v032_driver
);
1300 MODULE_DESCRIPTION("Aptina MT9V032 Camera driver");
1301 MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
1302 MODULE_LICENSE("GPL");