Merge branch 'chandan/prep-subpage-blocksize' into for-chris-4.6
[deliverable/linux.git] / drivers / media / i2c / mt9v032.c
CommitLineData
0f2ce168 1/*
d8dde6c8 2 * Driver for MT9V022, MT9V024, MT9V032, and MT9V034 CMOS Image Sensors
0f2ce168
DC
3 *
4 * Copyright (C) 2010, Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5 *
6 * Based on the MT9M001 driver,
7 *
8 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
9 *
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.
13 */
14
3300a8fd 15#include <linux/clk.h>
0f2ce168
DC
16#include <linux/delay.h>
17#include <linux/i2c.h>
18#include <linux/log2.h>
19#include <linux/mutex.h>
f2272e13
LP
20#include <linux/of.h>
21#include <linux/of_gpio.h>
80b44ef2 22#include <linux/regmap.h>
0f2ce168
DC
23#include <linux/slab.h>
24#include <linux/videodev2.h>
25#include <linux/v4l2-mediabus.h>
7a707b89 26#include <linux/module.h>
0f2ce168 27
b5dcee22 28#include <media/i2c/mt9v032.h>
0f2ce168
DC
29#include <media/v4l2-ctrls.h>
30#include <media/v4l2-device.h>
f2272e13 31#include <media/v4l2-of.h>
0f2ce168
DC
32#include <media/v4l2-subdev.h>
33
2b9e9f77
LP
34/* The first four rows are black rows. The active area spans 753x481 pixels. */
35#define MT9V032_PIXEL_ARRAY_HEIGHT 485
36#define MT9V032_PIXEL_ARRAY_WIDTH 753
0f2ce168 37
e9a50e4c
LP
38#define MT9V032_SYSCLK_FREQ_DEF 26600000
39
0f2ce168
DC
40#define MT9V032_CHIP_VERSION 0x00
41#define MT9V032_CHIP_ID_REV1 0x1311
42#define MT9V032_CHIP_ID_REV3 0x1313
daecfebc 43#define MT9V034_CHIP_ID_REV1 0X1324
86cf786c 44#define MT9V032_COLUMN_START 0x01
0f2ce168 45#define MT9V032_COLUMN_START_MIN 1
86cf786c 46#define MT9V032_COLUMN_START_DEF 1
0f2ce168 47#define MT9V032_COLUMN_START_MAX 752
86cf786c
LP
48#define MT9V032_ROW_START 0x02
49#define MT9V032_ROW_START_MIN 4
50#define MT9V032_ROW_START_DEF 5
51#define MT9V032_ROW_START_MAX 482
0f2ce168
DC
52#define MT9V032_WINDOW_HEIGHT 0x03
53#define MT9V032_WINDOW_HEIGHT_MIN 1
54#define MT9V032_WINDOW_HEIGHT_DEF 480
55#define MT9V032_WINDOW_HEIGHT_MAX 480
56#define MT9V032_WINDOW_WIDTH 0x04
57#define MT9V032_WINDOW_WIDTH_MIN 1
58#define MT9V032_WINDOW_WIDTH_DEF 752
59#define MT9V032_WINDOW_WIDTH_MAX 752
60#define MT9V032_HORIZONTAL_BLANKING 0x05
61#define MT9V032_HORIZONTAL_BLANKING_MIN 43
daecfebc 62#define MT9V034_HORIZONTAL_BLANKING_MIN 61
9ec670e2 63#define MT9V032_HORIZONTAL_BLANKING_DEF 94
0f2ce168
DC
64#define MT9V032_HORIZONTAL_BLANKING_MAX 1023
65#define MT9V032_VERTICAL_BLANKING 0x06
66#define MT9V032_VERTICAL_BLANKING_MIN 4
daecfebc 67#define MT9V034_VERTICAL_BLANKING_MIN 2
9ec670e2 68#define MT9V032_VERTICAL_BLANKING_DEF 45
0f2ce168 69#define MT9V032_VERTICAL_BLANKING_MAX 3000
daecfebc 70#define MT9V034_VERTICAL_BLANKING_MAX 32288
0f2ce168
DC
71#define MT9V032_CHIP_CONTROL 0x07
72#define MT9V032_CHIP_CONTROL_MASTER_MODE (1 << 3)
73#define MT9V032_CHIP_CONTROL_DOUT_ENABLE (1 << 7)
74#define MT9V032_CHIP_CONTROL_SEQUENTIAL (1 << 8)
75#define MT9V032_SHUTTER_WIDTH1 0x08
76#define MT9V032_SHUTTER_WIDTH2 0x09
77#define MT9V032_SHUTTER_WIDTH_CONTROL 0x0a
78#define MT9V032_TOTAL_SHUTTER_WIDTH 0x0b
79#define MT9V032_TOTAL_SHUTTER_WIDTH_MIN 1
daecfebc 80#define MT9V034_TOTAL_SHUTTER_WIDTH_MIN 0
0f2ce168
DC
81#define MT9V032_TOTAL_SHUTTER_WIDTH_DEF 480
82#define MT9V032_TOTAL_SHUTTER_WIDTH_MAX 32767
daecfebc 83#define MT9V034_TOTAL_SHUTTER_WIDTH_MAX 32765
0f2ce168
DC
84#define MT9V032_RESET 0x0c
85#define MT9V032_READ_MODE 0x0d
86#define MT9V032_READ_MODE_ROW_BIN_MASK (3 << 0)
87#define MT9V032_READ_MODE_ROW_BIN_SHIFT 0
88#define MT9V032_READ_MODE_COLUMN_BIN_MASK (3 << 2)
89#define MT9V032_READ_MODE_COLUMN_BIN_SHIFT 2
90#define MT9V032_READ_MODE_ROW_FLIP (1 << 4)
91#define MT9V032_READ_MODE_COLUMN_FLIP (1 << 5)
92#define MT9V032_READ_MODE_DARK_COLUMNS (1 << 6)
93#define MT9V032_READ_MODE_DARK_ROWS (1 << 7)
d131e54b 94#define MT9V032_READ_MODE_RESERVED 0x0300
0f2ce168 95#define MT9V032_PIXEL_OPERATION_MODE 0x0f
daecfebc
LP
96#define MT9V034_PIXEL_OPERATION_MODE_HDR (1 << 0)
97#define MT9V034_PIXEL_OPERATION_MODE_COLOR (1 << 1)
0f2ce168
DC
98#define MT9V032_PIXEL_OPERATION_MODE_COLOR (1 << 2)
99#define MT9V032_PIXEL_OPERATION_MODE_HDR (1 << 6)
100#define MT9V032_ANALOG_GAIN 0x35
101#define MT9V032_ANALOG_GAIN_MIN 16
102#define MT9V032_ANALOG_GAIN_DEF 16
103#define MT9V032_ANALOG_GAIN_MAX 64
104#define MT9V032_MAX_ANALOG_GAIN 0x36
105#define MT9V032_MAX_ANALOG_GAIN_MAX 127
106#define MT9V032_FRAME_DARK_AVERAGE 0x42
107#define MT9V032_DARK_AVG_THRESH 0x46
108#define MT9V032_DARK_AVG_LOW_THRESH_MASK (255 << 0)
109#define MT9V032_DARK_AVG_LOW_THRESH_SHIFT 0
110#define MT9V032_DARK_AVG_HIGH_THRESH_MASK (255 << 8)
111#define MT9V032_DARK_AVG_HIGH_THRESH_SHIFT 8
112#define MT9V032_ROW_NOISE_CORR_CONTROL 0x70
daecfebc
LP
113#define MT9V034_ROW_NOISE_CORR_ENABLE (1 << 0)
114#define MT9V034_ROW_NOISE_CORR_USE_BLK_AVG (1 << 1)
0f2ce168
DC
115#define MT9V032_ROW_NOISE_CORR_ENABLE (1 << 5)
116#define MT9V032_ROW_NOISE_CORR_USE_BLK_AVG (1 << 7)
117#define MT9V032_PIXEL_CLOCK 0x74
daecfebc 118#define MT9V034_PIXEL_CLOCK 0x72
0f2ce168
DC
119#define MT9V032_PIXEL_CLOCK_INV_LINE (1 << 0)
120#define MT9V032_PIXEL_CLOCK_INV_FRAME (1 << 1)
121#define MT9V032_PIXEL_CLOCK_XOR_LINE (1 << 2)
122#define MT9V032_PIXEL_CLOCK_CONT_LINE (1 << 3)
123#define MT9V032_PIXEL_CLOCK_INV_PXL_CLK (1 << 4)
124#define MT9V032_TEST_PATTERN 0x7f
125#define MT9V032_TEST_PATTERN_DATA_MASK (1023 << 0)
126#define MT9V032_TEST_PATTERN_DATA_SHIFT 0
127#define MT9V032_TEST_PATTERN_USE_DATA (1 << 10)
128#define MT9V032_TEST_PATTERN_GRAY_MASK (3 << 11)
129#define MT9V032_TEST_PATTERN_GRAY_NONE (0 << 11)
130#define MT9V032_TEST_PATTERN_GRAY_VERTICAL (1 << 11)
131#define MT9V032_TEST_PATTERN_GRAY_HORIZONTAL (2 << 11)
132#define MT9V032_TEST_PATTERN_GRAY_DIAGONAL (3 << 11)
133#define MT9V032_TEST_PATTERN_ENABLE (1 << 13)
134#define MT9V032_TEST_PATTERN_FLIP (1 << 14)
135#define MT9V032_AEC_AGC_ENABLE 0xaf
136#define MT9V032_AEC_ENABLE (1 << 0)
137#define MT9V032_AGC_ENABLE (1 << 1)
138#define MT9V032_THERMAL_INFO 0xc1
139
220ddc7f 140enum mt9v032_model {
d8dde6c8
PZ
141 MT9V032_MODEL_V022_COLOR, /* MT9V022IX7ATC */
142 MT9V032_MODEL_V022_MONO, /* MT9V022IX7ATM */
143 MT9V032_MODEL_V024_COLOR, /* MT9V024IA7XTC */
144 MT9V032_MODEL_V024_MONO, /* MT9V024IA7XTM */
145 MT9V032_MODEL_V032_COLOR, /* MT9V032C12STM */
146 MT9V032_MODEL_V032_MONO, /* MT9V032C12STC */
daecfebc
LP
147 MT9V032_MODEL_V034_COLOR,
148 MT9V032_MODEL_V034_MONO,
220ddc7f
LP
149};
150
0a466b60
LP
151struct mt9v032_model_version {
152 unsigned int version;
153 const char *name;
154};
155
156struct mt9v032_model_data {
157 unsigned int min_row_time;
158 unsigned int min_hblank;
159 unsigned int min_vblank;
160 unsigned int max_vblank;
161 unsigned int min_shutter;
162 unsigned int max_shutter;
163 unsigned int pclk_reg;
164};
165
220ddc7f 166struct mt9v032_model_info {
0a466b60 167 const struct mt9v032_model_data *data;
220ddc7f
LP
168 bool color;
169};
170
0a466b60 171static const struct mt9v032_model_version mt9v032_versions[] = {
d8dde6c8
PZ
172 { MT9V032_CHIP_ID_REV1, "MT9V022/MT9V032 rev1/2" },
173 { MT9V032_CHIP_ID_REV3, "MT9V022/MT9V032 rev3" },
174 { MT9V034_CHIP_ID_REV1, "MT9V024/MT9V034 rev1" },
0a466b60
LP
175};
176
177static const struct mt9v032_model_data mt9v032_model_data[] = {
178 {
d8dde6c8 179 /* MT9V022, MT9V032 revisions 1/2/3 */
0a466b60
LP
180 .min_row_time = 660,
181 .min_hblank = MT9V032_HORIZONTAL_BLANKING_MIN,
182 .min_vblank = MT9V032_VERTICAL_BLANKING_MIN,
183 .max_vblank = MT9V032_VERTICAL_BLANKING_MAX,
184 .min_shutter = MT9V032_TOTAL_SHUTTER_WIDTH_MIN,
185 .max_shutter = MT9V032_TOTAL_SHUTTER_WIDTH_MAX,
186 .pclk_reg = MT9V032_PIXEL_CLOCK,
daecfebc 187 }, {
d8dde6c8 188 /* MT9V024, MT9V034 */
daecfebc
LP
189 .min_row_time = 690,
190 .min_hblank = MT9V034_HORIZONTAL_BLANKING_MIN,
191 .min_vblank = MT9V034_VERTICAL_BLANKING_MIN,
192 .max_vblank = MT9V034_VERTICAL_BLANKING_MAX,
193 .min_shutter = MT9V034_TOTAL_SHUTTER_WIDTH_MIN,
194 .max_shutter = MT9V034_TOTAL_SHUTTER_WIDTH_MAX,
195 .pclk_reg = MT9V034_PIXEL_CLOCK,
0a466b60
LP
196 },
197};
198
220ddc7f 199static const struct mt9v032_model_info mt9v032_models[] = {
d8dde6c8
PZ
200 [MT9V032_MODEL_V022_COLOR] = {
201 .data = &mt9v032_model_data[0],
202 .color = true,
203 },
204 [MT9V032_MODEL_V022_MONO] = {
205 .data = &mt9v032_model_data[0],
206 .color = false,
207 },
208 [MT9V032_MODEL_V024_COLOR] = {
209 .data = &mt9v032_model_data[1],
210 .color = true,
211 },
212 [MT9V032_MODEL_V024_MONO] = {
213 .data = &mt9v032_model_data[1],
214 .color = false,
215 },
daecfebc 216 [MT9V032_MODEL_V032_COLOR] = {
0a466b60 217 .data = &mt9v032_model_data[0],
220ddc7f
LP
218 .color = true,
219 },
daecfebc 220 [MT9V032_MODEL_V032_MONO] = {
0a466b60 221 .data = &mt9v032_model_data[0],
220ddc7f
LP
222 .color = false,
223 },
daecfebc
LP
224 [MT9V032_MODEL_V034_COLOR] = {
225 .data = &mt9v032_model_data[1],
226 .color = true,
227 },
228 [MT9V032_MODEL_V034_MONO] = {
229 .data = &mt9v032_model_data[1],
230 .color = false,
231 },
220ddc7f
LP
232};
233
0f2ce168
DC
234struct mt9v032 {
235 struct v4l2_subdev subdev;
236 struct media_pad pad;
237
238 struct v4l2_mbus_framefmt format;
239 struct v4l2_rect crop;
637f005e
LP
240 unsigned int hratio;
241 unsigned int vratio;
0f2ce168
DC
242
243 struct v4l2_ctrl_handler ctrls;
e9a50e4c
LP
244 struct {
245 struct v4l2_ctrl *link_freq;
246 struct v4l2_ctrl *pixel_rate;
247 };
0f2ce168
DC
248
249 struct mutex power_lock;
250 int power_count;
251
80b44ef2 252 struct regmap *regmap;
3300a8fd
LP
253 struct clk *clk;
254
0f2ce168 255 struct mt9v032_platform_data *pdata;
220ddc7f 256 const struct mt9v032_model_info *model;
0a466b60 257 const struct mt9v032_model_version *version;
e9a50e4c
LP
258
259 u32 sysclk;
0f2ce168 260 u16 aec_agc;
9ec670e2 261 u16 hblank;
b28d7017
LP
262 struct {
263 struct v4l2_ctrl *test_pattern;
264 struct v4l2_ctrl *test_pattern_color;
265 };
0f2ce168
DC
266};
267
268static struct mt9v032 *to_mt9v032(struct v4l2_subdev *sd)
269{
270 return container_of(sd, struct mt9v032, subdev);
271}
272
0f2ce168
DC
273static int
274mt9v032_update_aec_agc(struct mt9v032 *mt9v032, u16 which, int enable)
275{
80b44ef2 276 struct regmap *map = mt9v032->regmap;
0f2ce168
DC
277 u16 value = mt9v032->aec_agc;
278 int ret;
279
280 if (enable)
281 value |= which;
282 else
283 value &= ~which;
284
80b44ef2 285 ret = regmap_write(map, MT9V032_AEC_AGC_ENABLE, value);
0f2ce168
DC
286 if (ret < 0)
287 return ret;
288
289 mt9v032->aec_agc = value;
290 return 0;
291}
292
9ec670e2
LP
293static int
294mt9v032_update_hblank(struct mt9v032 *mt9v032)
295{
9ec670e2 296 struct v4l2_rect *crop = &mt9v032->crop;
daecfebc 297 unsigned int min_hblank = mt9v032->model->data->min_hblank;
0a466b60 298 unsigned int hblank;
9ec670e2 299
daecfebc
LP
300 if (mt9v032->version->version == MT9V034_CHIP_ID_REV1)
301 min_hblank += (mt9v032->hratio - 1) * 10;
f17bc3f4
PZ
302 min_hblank = max_t(int, mt9v032->model->data->min_row_time - crop->width,
303 min_hblank);
daecfebc
LP
304 hblank = max_t(unsigned int, mt9v032->hblank, min_hblank);
305
80b44ef2
PZ
306 return regmap_write(mt9v032->regmap, MT9V032_HORIZONTAL_BLANKING,
307 hblank);
9ec670e2
LP
308}
309
0f2ce168
DC
310static int mt9v032_power_on(struct mt9v032 *mt9v032)
311{
80b44ef2 312 struct regmap *map = mt9v032->regmap;
0f2ce168
DC
313 int ret;
314
79019190
LP
315 ret = clk_set_rate(mt9v032->clk, mt9v032->sysclk);
316 if (ret < 0)
317 return ret;
318
319 ret = clk_prepare_enable(mt9v032->clk);
320 if (ret)
321 return ret;
322
3300a8fd 323 udelay(1);
0f2ce168
DC
324
325 /* Reset the chip and stop data read out */
80b44ef2 326 ret = regmap_write(map, MT9V032_RESET, 1);
0f2ce168
DC
327 if (ret < 0)
328 return ret;
329
80b44ef2 330 ret = regmap_write(map, MT9V032_RESET, 0);
0f2ce168
DC
331 if (ret < 0)
332 return ret;
333
80b44ef2 334 return regmap_write(map, MT9V032_CHIP_CONTROL, 0);
0f2ce168
DC
335}
336
337static void mt9v032_power_off(struct mt9v032 *mt9v032)
338{
3300a8fd 339 clk_disable_unprepare(mt9v032->clk);
0f2ce168
DC
340}
341
342static int __mt9v032_set_power(struct mt9v032 *mt9v032, bool on)
343{
80b44ef2 344 struct regmap *map = mt9v032->regmap;
0f2ce168
DC
345 int ret;
346
347 if (!on) {
348 mt9v032_power_off(mt9v032);
349 return 0;
350 }
351
352 ret = mt9v032_power_on(mt9v032);
353 if (ret < 0)
354 return ret;
355
356 /* Configure the pixel clock polarity */
357 if (mt9v032->pdata && mt9v032->pdata->clk_pol) {
80b44ef2 358 ret = regmap_write(map, mt9v032->model->data->pclk_reg,
0f2ce168
DC
359 MT9V032_PIXEL_CLOCK_INV_PXL_CLK);
360 if (ret < 0)
361 return ret;
362 }
363
364 /* Disable the noise correction algorithm and restore the controls. */
80b44ef2 365 ret = regmap_write(map, MT9V032_ROW_NOISE_CORR_CONTROL, 0);
0f2ce168
DC
366 if (ret < 0)
367 return ret;
368
369 return v4l2_ctrl_handler_setup(&mt9v032->ctrls);
370}
371
372/* -----------------------------------------------------------------------------
373 * V4L2 subdev video operations
374 */
375
376static struct v4l2_mbus_framefmt *
f7234138 377__mt9v032_get_pad_format(struct mt9v032 *mt9v032, struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
378 unsigned int pad, enum v4l2_subdev_format_whence which)
379{
380 switch (which) {
381 case V4L2_SUBDEV_FORMAT_TRY:
f7234138 382 return v4l2_subdev_get_try_format(&mt9v032->subdev, cfg, pad);
0f2ce168
DC
383 case V4L2_SUBDEV_FORMAT_ACTIVE:
384 return &mt9v032->format;
385 default:
386 return NULL;
387 }
388}
389
390static struct v4l2_rect *
f7234138 391__mt9v032_get_pad_crop(struct mt9v032 *mt9v032, struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
392 unsigned int pad, enum v4l2_subdev_format_whence which)
393{
394 switch (which) {
395 case V4L2_SUBDEV_FORMAT_TRY:
f7234138 396 return v4l2_subdev_get_try_crop(&mt9v032->subdev, cfg, pad);
0f2ce168
DC
397 case V4L2_SUBDEV_FORMAT_ACTIVE:
398 return &mt9v032->crop;
399 default:
400 return NULL;
401 }
402}
403
404static int mt9v032_s_stream(struct v4l2_subdev *subdev, int enable)
405{
406 const u16 mode = MT9V032_CHIP_CONTROL_MASTER_MODE
407 | MT9V032_CHIP_CONTROL_DOUT_ENABLE
408 | MT9V032_CHIP_CONTROL_SEQUENTIAL;
0f2ce168 409 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
0f2ce168 410 struct v4l2_rect *crop = &mt9v032->crop;
80b44ef2 411 struct regmap *map = mt9v032->regmap;
637f005e
LP
412 unsigned int hbin;
413 unsigned int vbin;
0f2ce168
DC
414 int ret;
415
416 if (!enable)
80b44ef2 417 return regmap_update_bits(map, MT9V032_CHIP_CONTROL, mode, 0);
0f2ce168
DC
418
419 /* Configure the window size and row/column bin */
637f005e
LP
420 hbin = fls(mt9v032->hratio) - 1;
421 vbin = fls(mt9v032->vratio) - 1;
80b44ef2
PZ
422 ret = regmap_update_bits(map, MT9V032_READ_MODE,
423 ~MT9V032_READ_MODE_RESERVED,
424 hbin << MT9V032_READ_MODE_COLUMN_BIN_SHIFT |
425 vbin << MT9V032_READ_MODE_ROW_BIN_SHIFT);
0f2ce168
DC
426 if (ret < 0)
427 return ret;
428
80b44ef2 429 ret = regmap_write(map, MT9V032_COLUMN_START, crop->left);
0f2ce168
DC
430 if (ret < 0)
431 return ret;
432
80b44ef2 433 ret = regmap_write(map, MT9V032_ROW_START, crop->top);
0f2ce168
DC
434 if (ret < 0)
435 return ret;
436
80b44ef2 437 ret = regmap_write(map, MT9V032_WINDOW_WIDTH, crop->width);
0f2ce168
DC
438 if (ret < 0)
439 return ret;
440
80b44ef2 441 ret = regmap_write(map, MT9V032_WINDOW_HEIGHT, crop->height);
0f2ce168
DC
442 if (ret < 0)
443 return ret;
444
9ec670e2 445 ret = mt9v032_update_hblank(mt9v032);
0f2ce168
DC
446 if (ret < 0)
447 return ret;
448
449 /* Switch to master "normal" mode */
80b44ef2 450 return regmap_update_bits(map, MT9V032_CHIP_CONTROL, mode, mode);
0f2ce168
DC
451}
452
453static int mt9v032_enum_mbus_code(struct v4l2_subdev *subdev,
f7234138 454 struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
455 struct v4l2_subdev_mbus_code_enum *code)
456{
457 if (code->index > 0)
458 return -EINVAL;
459
f5fe58fd 460 code->code = MEDIA_BUS_FMT_SGRBG10_1X10;
0f2ce168
DC
461 return 0;
462}
463
464static int mt9v032_enum_frame_size(struct v4l2_subdev *subdev,
f7234138 465 struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
466 struct v4l2_subdev_frame_size_enum *fse)
467{
f5fe58fd 468 if (fse->index >= 3 || fse->code != MEDIA_BUS_FMT_SGRBG10_1X10)
0f2ce168
DC
469 return -EINVAL;
470
637f005e 471 fse->min_width = MT9V032_WINDOW_WIDTH_DEF / (1 << fse->index);
0f2ce168 472 fse->max_width = fse->min_width;
637f005e 473 fse->min_height = MT9V032_WINDOW_HEIGHT_DEF / (1 << fse->index);
0f2ce168
DC
474 fse->max_height = fse->min_height;
475
476 return 0;
477}
478
479static int mt9v032_get_format(struct v4l2_subdev *subdev,
f7234138 480 struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
481 struct v4l2_subdev_format *format)
482{
483 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
484
f7234138 485 format->format = *__mt9v032_get_pad_format(mt9v032, cfg, format->pad,
0f2ce168
DC
486 format->which);
487 return 0;
488}
489
637f005e 490static void mt9v032_configure_pixel_rate(struct mt9v032 *mt9v032)
41a33a00
SA
491{
492 struct i2c_client *client = v4l2_get_subdevdata(&mt9v032->subdev);
493 int ret;
494
e9a50e4c 495 ret = v4l2_ctrl_s_ctrl_int64(mt9v032->pixel_rate,
637f005e 496 mt9v032->sysclk / mt9v032->hratio);
41a33a00
SA
497 if (ret < 0)
498 dev_warn(&client->dev, "failed to set pixel rate (%d)\n", ret);
499}
500
637f005e
LP
501static unsigned int mt9v032_calc_ratio(unsigned int input, unsigned int output)
502{
503 /* Compute the power-of-two binning factor closest to the input size to
504 * output size ratio. Given that the output size is bounded by input/4
505 * and input, a generic implementation would be an ineffective luxury.
506 */
507 if (output * 3 > input * 2)
508 return 1;
509 if (output * 3 > input)
510 return 2;
511 return 4;
512}
513
0f2ce168 514static int mt9v032_set_format(struct v4l2_subdev *subdev,
f7234138 515 struct v4l2_subdev_pad_config *cfg,
0f2ce168
DC
516 struct v4l2_subdev_format *format)
517{
518 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
519 struct v4l2_mbus_framefmt *__format;
520 struct v4l2_rect *__crop;
521 unsigned int width;
522 unsigned int height;
523 unsigned int hratio;
524 unsigned int vratio;
525
f7234138 526 __crop = __mt9v032_get_pad_crop(mt9v032, cfg, format->pad,
0f2ce168
DC
527 format->which);
528
529 /* Clamp the width and height to avoid dividing by zero. */
f90580ca
RR
530 width = clamp(ALIGN(format->format.width, 2),
531 max_t(unsigned int, __crop->width / 4,
532 MT9V032_WINDOW_WIDTH_MIN),
533 __crop->width);
534 height = clamp(ALIGN(format->format.height, 2),
535 max_t(unsigned int, __crop->height / 4,
536 MT9V032_WINDOW_HEIGHT_MIN),
537 __crop->height);
0f2ce168 538
637f005e
LP
539 hratio = mt9v032_calc_ratio(__crop->width, width);
540 vratio = mt9v032_calc_ratio(__crop->height, height);
0f2ce168 541
f7234138 542 __format = __mt9v032_get_pad_format(mt9v032, cfg, format->pad,
0f2ce168
DC
543 format->which);
544 __format->width = __crop->width / hratio;
545 __format->height = __crop->height / vratio;
637f005e
LP
546
547 if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
548 mt9v032->hratio = hratio;
549 mt9v032->vratio = vratio;
550 mt9v032_configure_pixel_rate(mt9v032);
551 }
0f2ce168
DC
552
553 format->format = *__format;
554
555 return 0;
556}
557
1a023feb 558static int mt9v032_get_selection(struct v4l2_subdev *subdev,
f7234138 559 struct v4l2_subdev_pad_config *cfg,
1a023feb 560 struct v4l2_subdev_selection *sel)
0f2ce168
DC
561{
562 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
563
1a023feb
HV
564 if (sel->target != V4L2_SEL_TGT_CROP)
565 return -EINVAL;
566
f7234138 567 sel->r = *__mt9v032_get_pad_crop(mt9v032, cfg, sel->pad, sel->which);
0f2ce168
DC
568 return 0;
569}
570
1a023feb 571static int mt9v032_set_selection(struct v4l2_subdev *subdev,
f7234138 572 struct v4l2_subdev_pad_config *cfg,
1a023feb 573 struct v4l2_subdev_selection *sel)
0f2ce168
DC
574{
575 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
576 struct v4l2_mbus_framefmt *__format;
577 struct v4l2_rect *__crop;
578 struct v4l2_rect rect;
579
1a023feb
HV
580 if (sel->target != V4L2_SEL_TGT_CROP)
581 return -EINVAL;
582
86cf786c
LP
583 /* Clamp the crop rectangle boundaries and align them to a non multiple
584 * of 2 pixels to ensure a GRBG Bayer pattern.
0f2ce168 585 */
1a023feb 586 rect.left = clamp(ALIGN(sel->r.left + 1, 2) - 1,
0f2ce168
DC
587 MT9V032_COLUMN_START_MIN,
588 MT9V032_COLUMN_START_MAX);
1a023feb 589 rect.top = clamp(ALIGN(sel->r.top + 1, 2) - 1,
0f2ce168
DC
590 MT9V032_ROW_START_MIN,
591 MT9V032_ROW_START_MAX);
1a023feb 592 rect.width = clamp_t(unsigned int, ALIGN(sel->r.width, 2),
f90580ca
RR
593 MT9V032_WINDOW_WIDTH_MIN,
594 MT9V032_WINDOW_WIDTH_MAX);
1a023feb 595 rect.height = clamp_t(unsigned int, ALIGN(sel->r.height, 2),
f90580ca
RR
596 MT9V032_WINDOW_HEIGHT_MIN,
597 MT9V032_WINDOW_HEIGHT_MAX);
598
599 rect.width = min_t(unsigned int,
600 rect.width, MT9V032_PIXEL_ARRAY_WIDTH - rect.left);
601 rect.height = min_t(unsigned int,
602 rect.height, MT9V032_PIXEL_ARRAY_HEIGHT - rect.top);
0f2ce168 603
f7234138 604 __crop = __mt9v032_get_pad_crop(mt9v032, cfg, sel->pad, sel->which);
0f2ce168
DC
605
606 if (rect.width != __crop->width || rect.height != __crop->height) {
607 /* Reset the output image size if the crop rectangle size has
608 * been modified.
609 */
f7234138 610 __format = __mt9v032_get_pad_format(mt9v032, cfg, sel->pad,
1a023feb 611 sel->which);
0f2ce168
DC
612 __format->width = rect.width;
613 __format->height = rect.height;
1a023feb 614 if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
637f005e
LP
615 mt9v032->hratio = 1;
616 mt9v032->vratio = 1;
617 mt9v032_configure_pixel_rate(mt9v032);
618 }
0f2ce168
DC
619 }
620
621 *__crop = rect;
1a023feb 622 sel->r = rect;
0f2ce168
DC
623
624 return 0;
625}
626
627/* -----------------------------------------------------------------------------
628 * V4L2 subdev control operations
629 */
630
b28d7017 631#define V4L2_CID_TEST_PATTERN_COLOR (V4L2_CID_USER_BASE | 0x1001)
0f2ce168
DC
632
633static int mt9v032_s_ctrl(struct v4l2_ctrl *ctrl)
634{
635 struct mt9v032 *mt9v032 =
636 container_of(ctrl->handler, struct mt9v032, ctrls);
80b44ef2 637 struct regmap *map = mt9v032->regmap;
e9a50e4c 638 u32 freq;
0f2ce168
DC
639 u16 data;
640
641 switch (ctrl->id) {
642 case V4L2_CID_AUTOGAIN:
643 return mt9v032_update_aec_agc(mt9v032, MT9V032_AGC_ENABLE,
644 ctrl->val);
645
646 case V4L2_CID_GAIN:
80b44ef2 647 return regmap_write(map, MT9V032_ANALOG_GAIN, ctrl->val);
0f2ce168
DC
648
649 case V4L2_CID_EXPOSURE_AUTO:
650 return mt9v032_update_aec_agc(mt9v032, MT9V032_AEC_ENABLE,
5c375981 651 !ctrl->val);
0f2ce168
DC
652
653 case V4L2_CID_EXPOSURE:
80b44ef2
PZ
654 return regmap_write(map, MT9V032_TOTAL_SHUTTER_WIDTH,
655 ctrl->val);
0f2ce168 656
9ec670e2
LP
657 case V4L2_CID_HBLANK:
658 mt9v032->hblank = ctrl->val;
659 return mt9v032_update_hblank(mt9v032);
660
661 case V4L2_CID_VBLANK:
80b44ef2
PZ
662 return regmap_write(map, MT9V032_VERTICAL_BLANKING,
663 ctrl->val);
9ec670e2 664
e9a50e4c
LP
665 case V4L2_CID_PIXEL_RATE:
666 case V4L2_CID_LINK_FREQ:
667 if (mt9v032->link_freq == NULL)
668 break;
669
670 freq = mt9v032->pdata->link_freqs[mt9v032->link_freq->val];
2a9ec373 671 *mt9v032->pixel_rate->p_new.p_s64 = freq;
e9a50e4c
LP
672 mt9v032->sysclk = freq;
673 break;
674
0f2ce168 675 case V4L2_CID_TEST_PATTERN:
b28d7017 676 switch (mt9v032->test_pattern->val) {
0f2ce168
DC
677 case 0:
678 data = 0;
679 break;
680 case 1:
681 data = MT9V032_TEST_PATTERN_GRAY_VERTICAL
682 | MT9V032_TEST_PATTERN_ENABLE;
683 break;
684 case 2:
685 data = MT9V032_TEST_PATTERN_GRAY_HORIZONTAL
686 | MT9V032_TEST_PATTERN_ENABLE;
687 break;
688 case 3:
689 data = MT9V032_TEST_PATTERN_GRAY_DIAGONAL
690 | MT9V032_TEST_PATTERN_ENABLE;
691 break;
692 default:
b28d7017
LP
693 data = (mt9v032->test_pattern_color->val <<
694 MT9V032_TEST_PATTERN_DATA_SHIFT)
0f2ce168
DC
695 | MT9V032_TEST_PATTERN_USE_DATA
696 | MT9V032_TEST_PATTERN_ENABLE
697 | MT9V032_TEST_PATTERN_FLIP;
698 break;
699 }
80b44ef2 700 return regmap_write(map, MT9V032_TEST_PATTERN, data);
0f2ce168
DC
701 }
702
703 return 0;
704}
705
217bdb07 706static const struct v4l2_ctrl_ops mt9v032_ctrl_ops = {
0f2ce168
DC
707 .s_ctrl = mt9v032_s_ctrl,
708};
709
b28d7017
LP
710static const char * const mt9v032_test_pattern_menu[] = {
711 "Disabled",
712 "Gray Vertical Shade",
713 "Gray Horizontal Shade",
714 "Gray Diagonal Shade",
715 "Plain",
716};
717
718static const struct v4l2_ctrl_config mt9v032_test_pattern_color = {
719 .ops = &mt9v032_ctrl_ops,
720 .id = V4L2_CID_TEST_PATTERN_COLOR,
721 .type = V4L2_CTRL_TYPE_INTEGER,
722 .name = "Test Pattern Color",
723 .min = 0,
724 .max = 1023,
725 .step = 1,
726 .def = 0,
727 .flags = 0,
0f2ce168
DC
728};
729
730/* -----------------------------------------------------------------------------
731 * V4L2 subdev core operations
732 */
733
734static int mt9v032_set_power(struct v4l2_subdev *subdev, int on)
735{
736 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
737 int ret = 0;
738
739 mutex_lock(&mt9v032->power_lock);
740
741 /* If the power count is modified from 0 to != 0 or from != 0 to 0,
742 * update the power state.
743 */
744 if (mt9v032->power_count == !on) {
745 ret = __mt9v032_set_power(mt9v032, !!on);
746 if (ret < 0)
747 goto done;
748 }
749
750 /* Update the power count. */
751 mt9v032->power_count += on ? 1 : -1;
752 WARN_ON(mt9v032->power_count < 0);
753
754done:
755 mutex_unlock(&mt9v032->power_lock);
756 return ret;
757}
758
759/* -----------------------------------------------------------------------------
760 * V4L2 subdev internal operations
761 */
762
763static int mt9v032_registered(struct v4l2_subdev *subdev)
764{
765 struct i2c_client *client = v4l2_get_subdevdata(subdev);
766 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
0a466b60 767 unsigned int i;
80b44ef2 768 u32 version;
0f2ce168
DC
769 int ret;
770
771 dev_info(&client->dev, "Probing MT9V032 at address 0x%02x\n",
772 client->addr);
773
774 ret = mt9v032_power_on(mt9v032);
775 if (ret < 0) {
776 dev_err(&client->dev, "MT9V032 power up failed\n");
777 return ret;
778 }
779
780 /* Read and check the sensor version */
80b44ef2
PZ
781 ret = regmap_read(mt9v032->regmap, MT9V032_CHIP_VERSION, &version);
782 if (ret < 0) {
0a466b60 783 dev_err(&client->dev, "Failed reading chip version\n");
80b44ef2 784 return ret;
0a466b60
LP
785 }
786
787 for (i = 0; i < ARRAY_SIZE(mt9v032_versions); ++i) {
788 if (mt9v032_versions[i].version == version) {
789 mt9v032->version = &mt9v032_versions[i];
790 break;
791 }
792 }
793
794 if (mt9v032->version == NULL) {
795 dev_err(&client->dev, "Unsupported chip version 0x%04x\n",
796 version);
0f2ce168
DC
797 return -ENODEV;
798 }
799
800 mt9v032_power_off(mt9v032);
801
0a466b60
LP
802 dev_info(&client->dev, "%s detected at address 0x%02x\n",
803 mt9v032->version->name, client->addr);
0f2ce168 804
637f005e 805 mt9v032_configure_pixel_rate(mt9v032);
41a33a00 806
0f2ce168
DC
807 return ret;
808}
809
810static int mt9v032_open(struct v4l2_subdev *subdev, struct v4l2_subdev_fh *fh)
811{
220ddc7f 812 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
0f2ce168
DC
813 struct v4l2_mbus_framefmt *format;
814 struct v4l2_rect *crop;
815
f7234138 816 crop = v4l2_subdev_get_try_crop(subdev, fh->pad, 0);
0f2ce168
DC
817 crop->left = MT9V032_COLUMN_START_DEF;
818 crop->top = MT9V032_ROW_START_DEF;
819 crop->width = MT9V032_WINDOW_WIDTH_DEF;
820 crop->height = MT9V032_WINDOW_HEIGHT_DEF;
821
f7234138 822 format = v4l2_subdev_get_try_format(subdev, fh->pad, 0);
220ddc7f
LP
823
824 if (mt9v032->model->color)
f5fe58fd 825 format->code = MEDIA_BUS_FMT_SGRBG10_1X10;
220ddc7f 826 else
f5fe58fd 827 format->code = MEDIA_BUS_FMT_Y10_1X10;
220ddc7f 828
0f2ce168
DC
829 format->width = MT9V032_WINDOW_WIDTH_DEF;
830 format->height = MT9V032_WINDOW_HEIGHT_DEF;
831 format->field = V4L2_FIELD_NONE;
832 format->colorspace = V4L2_COLORSPACE_SRGB;
833
834 return mt9v032_set_power(subdev, 1);
835}
836
837static int mt9v032_close(struct v4l2_subdev *subdev, struct v4l2_subdev_fh *fh)
838{
839 return mt9v032_set_power(subdev, 0);
840}
841
842static struct v4l2_subdev_core_ops mt9v032_subdev_core_ops = {
843 .s_power = mt9v032_set_power,
844};
845
846static struct v4l2_subdev_video_ops mt9v032_subdev_video_ops = {
847 .s_stream = mt9v032_s_stream,
848};
849
850static struct v4l2_subdev_pad_ops mt9v032_subdev_pad_ops = {
851 .enum_mbus_code = mt9v032_enum_mbus_code,
852 .enum_frame_size = mt9v032_enum_frame_size,
853 .get_fmt = mt9v032_get_format,
854 .set_fmt = mt9v032_set_format,
1a023feb
HV
855 .get_selection = mt9v032_get_selection,
856 .set_selection = mt9v032_set_selection,
0f2ce168
DC
857};
858
859static struct v4l2_subdev_ops mt9v032_subdev_ops = {
860 .core = &mt9v032_subdev_core_ops,
861 .video = &mt9v032_subdev_video_ops,
862 .pad = &mt9v032_subdev_pad_ops,
863};
864
865static const struct v4l2_subdev_internal_ops mt9v032_subdev_internal_ops = {
866 .registered = mt9v032_registered,
867 .open = mt9v032_open,
868 .close = mt9v032_close,
869};
870
80b44ef2
PZ
871static const struct regmap_config mt9v032_regmap_config = {
872 .reg_bits = 8,
873 .val_bits = 16,
874 .max_register = 0xff,
875 .cache_type = REGCACHE_RBTREE,
876};
877
0f2ce168
DC
878/* -----------------------------------------------------------------------------
879 * Driver initialization and probing
880 */
881
f2272e13
LP
882static struct mt9v032_platform_data *
883mt9v032_get_pdata(struct i2c_client *client)
884{
8e8a6b23 885 struct mt9v032_platform_data *pdata = NULL;
f2272e13
LP
886 struct v4l2_of_endpoint endpoint;
887 struct device_node *np;
888 struct property *prop;
889
890 if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
891 return client->dev.platform_data;
892
893 np = of_graph_get_next_endpoint(client->dev.of_node, NULL);
894 if (!np)
895 return NULL;
896
897 if (v4l2_of_parse_endpoint(np, &endpoint) < 0)
898 goto done;
899
900 pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL);
901 if (!pdata)
902 goto done;
903
904 prop = of_find_property(np, "link-frequencies", NULL);
905 if (prop) {
906 u64 *link_freqs;
907 size_t size = prop->length / sizeof(*link_freqs);
908
909 link_freqs = devm_kcalloc(&client->dev, size,
910 sizeof(*link_freqs), GFP_KERNEL);
911 if (!link_freqs)
912 goto done;
913
914 if (of_property_read_u64_array(np, "link-frequencies",
915 link_freqs, size) < 0)
916 goto done;
917
918 pdata->link_freqs = link_freqs;
919 pdata->link_def_freq = link_freqs[0];
920 }
921
922 pdata->clk_pol = !!(endpoint.bus.parallel.flags &
923 V4L2_MBUS_PCLK_SAMPLE_RISING);
924
925done:
926 of_node_put(np);
927 return pdata;
928}
929
0f2ce168
DC
930static int mt9v032_probe(struct i2c_client *client,
931 const struct i2c_device_id *did)
932{
f2272e13 933 struct mt9v032_platform_data *pdata = mt9v032_get_pdata(client);
0f2ce168
DC
934 struct mt9v032 *mt9v032;
935 unsigned int i;
936 int ret;
937
938 if (!i2c_check_functionality(client->adapter,
939 I2C_FUNC_SMBUS_WORD_DATA)) {
940 dev_warn(&client->adapter->dev,
941 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
942 return -EIO;
943 }
944
c02b211d 945 mt9v032 = devm_kzalloc(&client->dev, sizeof(*mt9v032), GFP_KERNEL);
0f2ce168
DC
946 if (!mt9v032)
947 return -ENOMEM;
948
80b44ef2
PZ
949 mt9v032->regmap = devm_regmap_init_i2c(client, &mt9v032_regmap_config);
950 if (IS_ERR(mt9v032->regmap))
951 return PTR_ERR(mt9v032->regmap);
952
3300a8fd
LP
953 mt9v032->clk = devm_clk_get(&client->dev, NULL);
954 if (IS_ERR(mt9v032->clk))
955 return PTR_ERR(mt9v032->clk);
956
0f2ce168 957 mutex_init(&mt9v032->power_lock);
e9a50e4c 958 mt9v032->pdata = pdata;
220ddc7f 959 mt9v032->model = (const void *)did->driver_data;
0f2ce168 960
b28d7017 961 v4l2_ctrl_handler_init(&mt9v032->ctrls, 10);
0f2ce168
DC
962
963 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
964 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
965 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
966 V4L2_CID_GAIN, MT9V032_ANALOG_GAIN_MIN,
967 MT9V032_ANALOG_GAIN_MAX, 1, MT9V032_ANALOG_GAIN_DEF);
968 v4l2_ctrl_new_std_menu(&mt9v032->ctrls, &mt9v032_ctrl_ops,
969 V4L2_CID_EXPOSURE_AUTO, V4L2_EXPOSURE_MANUAL, 0,
970 V4L2_EXPOSURE_AUTO);
971 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
0a466b60
LP
972 V4L2_CID_EXPOSURE, mt9v032->model->data->min_shutter,
973 mt9v032->model->data->max_shutter, 1,
0f2ce168 974 MT9V032_TOTAL_SHUTTER_WIDTH_DEF);
9ec670e2 975 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
0a466b60 976 V4L2_CID_HBLANK, mt9v032->model->data->min_hblank,
9ec670e2
LP
977 MT9V032_HORIZONTAL_BLANKING_MAX, 1,
978 MT9V032_HORIZONTAL_BLANKING_DEF);
979 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
0a466b60
LP
980 V4L2_CID_VBLANK, mt9v032->model->data->min_vblank,
981 mt9v032->model->data->max_vblank, 1,
9ec670e2 982 MT9V032_VERTICAL_BLANKING_DEF);
b28d7017
LP
983 mt9v032->test_pattern = v4l2_ctrl_new_std_menu_items(&mt9v032->ctrls,
984 &mt9v032_ctrl_ops, V4L2_CID_TEST_PATTERN,
985 ARRAY_SIZE(mt9v032_test_pattern_menu) - 1, 0, 0,
986 mt9v032_test_pattern_menu);
987 mt9v032->test_pattern_color = v4l2_ctrl_new_custom(&mt9v032->ctrls,
988 &mt9v032_test_pattern_color, NULL);
989
990 v4l2_ctrl_cluster(2, &mt9v032->test_pattern);
e9a50e4c 991
41a33a00
SA
992 mt9v032->pixel_rate =
993 v4l2_ctrl_new_std(&mt9v032->ctrls, &mt9v032_ctrl_ops,
0ba2aeb6 994 V4L2_CID_PIXEL_RATE, 1, INT_MAX, 1, 1);
0f2ce168 995
e9a50e4c
LP
996 if (pdata && pdata->link_freqs) {
997 unsigned int def = 0;
998
999 for (i = 0; pdata->link_freqs[i]; ++i) {
1000 if (pdata->link_freqs[i] == pdata->link_def_freq)
1001 def = i;
1002 }
1003
1004 mt9v032->link_freq =
1005 v4l2_ctrl_new_int_menu(&mt9v032->ctrls,
1006 &mt9v032_ctrl_ops,
1007 V4L2_CID_LINK_FREQ, i - 1, def,
1008 pdata->link_freqs);
1009 v4l2_ctrl_cluster(2, &mt9v032->link_freq);
1010 }
1011
0f2ce168
DC
1012
1013 mt9v032->subdev.ctrl_handler = &mt9v032->ctrls;
1014
2d01209f
LP
1015 if (mt9v032->ctrls.error) {
1016 dev_err(&client->dev, "control initialization error %d\n",
1017 mt9v032->ctrls.error);
1018 ret = mt9v032->ctrls.error;
1019 goto err;
1020 }
0f2ce168
DC
1021
1022 mt9v032->crop.left = MT9V032_COLUMN_START_DEF;
1023 mt9v032->crop.top = MT9V032_ROW_START_DEF;
1024 mt9v032->crop.width = MT9V032_WINDOW_WIDTH_DEF;
1025 mt9v032->crop.height = MT9V032_WINDOW_HEIGHT_DEF;
1026
220ddc7f 1027 if (mt9v032->model->color)
f5fe58fd 1028 mt9v032->format.code = MEDIA_BUS_FMT_SGRBG10_1X10;
220ddc7f 1029 else
f5fe58fd 1030 mt9v032->format.code = MEDIA_BUS_FMT_Y10_1X10;
220ddc7f 1031
0f2ce168
DC
1032 mt9v032->format.width = MT9V032_WINDOW_WIDTH_DEF;
1033 mt9v032->format.height = MT9V032_WINDOW_HEIGHT_DEF;
1034 mt9v032->format.field = V4L2_FIELD_NONE;
1035 mt9v032->format.colorspace = V4L2_COLORSPACE_SRGB;
1036
637f005e
LP
1037 mt9v032->hratio = 1;
1038 mt9v032->vratio = 1;
1039
0f2ce168 1040 mt9v032->aec_agc = MT9V032_AEC_ENABLE | MT9V032_AGC_ENABLE;
9ec670e2 1041 mt9v032->hblank = MT9V032_HORIZONTAL_BLANKING_DEF;
e9a50e4c 1042 mt9v032->sysclk = MT9V032_SYSCLK_FREQ_DEF;
0f2ce168
DC
1043
1044 v4l2_i2c_subdev_init(&mt9v032->subdev, client, &mt9v032_subdev_ops);
1045 mt9v032->subdev.internal_ops = &mt9v032_subdev_internal_ops;
1046 mt9v032->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1047
1048 mt9v032->pad.flags = MEDIA_PAD_FL_SOURCE;
ab22e77c 1049 ret = media_entity_pads_init(&mt9v032->subdev.entity, 1, &mt9v032->pad);
94b76ce8
PZ
1050 if (ret < 0)
1051 goto err;
9462550f 1052
94b76ce8
PZ
1053 mt9v032->subdev.dev = &client->dev;
1054 ret = v4l2_async_register_subdev(&mt9v032->subdev);
c02b211d 1055 if (ret < 0)
94b76ce8
PZ
1056 goto err;
1057
1058 return 0;
0f2ce168 1059
94b76ce8
PZ
1060err:
1061 media_entity_cleanup(&mt9v032->subdev.entity);
1062 v4l2_ctrl_handler_free(&mt9v032->ctrls);
0f2ce168
DC
1063 return ret;
1064}
1065
1066static int mt9v032_remove(struct i2c_client *client)
1067{
1068 struct v4l2_subdev *subdev = i2c_get_clientdata(client);
1069 struct mt9v032 *mt9v032 = to_mt9v032(subdev);
1070
94b76ce8 1071 v4l2_async_unregister_subdev(subdev);
9462550f 1072 v4l2_ctrl_handler_free(&mt9v032->ctrls);
0f2ce168 1073 media_entity_cleanup(&subdev->entity);
9462550f 1074
0f2ce168
DC
1075 return 0;
1076}
1077
1078static const struct i2c_device_id mt9v032_id[] = {
d8dde6c8
PZ
1079 { "mt9v022", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V022_COLOR] },
1080 { "mt9v022m", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V022_MONO] },
1081 { "mt9v024", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V024_COLOR] },
1082 { "mt9v024m", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V024_MONO] },
daecfebc
LP
1083 { "mt9v032", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V032_COLOR] },
1084 { "mt9v032m", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V032_MONO] },
1085 { "mt9v034", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V034_COLOR] },
1086 { "mt9v034m", (kernel_ulong_t)&mt9v032_models[MT9V032_MODEL_V034_MONO] },
0f2ce168
DC
1087 { }
1088};
1089MODULE_DEVICE_TABLE(i2c, mt9v032_id);
1090
f2272e13
LP
1091#if IS_ENABLED(CONFIG_OF)
1092static const struct of_device_id mt9v032_of_match[] = {
1093 { .compatible = "aptina,mt9v022" },
1094 { .compatible = "aptina,mt9v022m" },
1095 { .compatible = "aptina,mt9v024" },
1096 { .compatible = "aptina,mt9v024m" },
1097 { .compatible = "aptina,mt9v032" },
1098 { .compatible = "aptina,mt9v032m" },
1099 { .compatible = "aptina,mt9v034" },
1100 { .compatible = "aptina,mt9v034m" },
1101 { /* Sentinel */ }
1102};
1103MODULE_DEVICE_TABLE(of, mt9v032_of_match);
1104#endif
1105
0f2ce168
DC
1106static struct i2c_driver mt9v032_driver = {
1107 .driver = {
1108 .name = "mt9v032",
f2272e13 1109 .of_match_table = of_match_ptr(mt9v032_of_match),
0f2ce168
DC
1110 },
1111 .probe = mt9v032_probe,
1112 .remove = mt9v032_remove,
1113 .id_table = mt9v032_id,
1114};
1115
c6e8d86f 1116module_i2c_driver(mt9v032_driver);
0f2ce168
DC
1117
1118MODULE_DESCRIPTION("Aptina MT9V032 Camera driver");
1119MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
1120MODULE_LICENSE("GPL");
This page took 0.414435 seconds and 5 git commands to generate.