Merge drm-fixes into drm-next.
[deliverable/linux.git] / drivers / media / i2c / soc_camera / mt9t031.c
CommitLineData
4e96fd08
GL
1/*
2 * Driver for MT9T031 CMOS Image Sensor from Micron
3 *
4 * Copyright (C) 2008, Guennadi Liakhovetski, DENX Software Engineering <lg@denx.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
535653b1 11#include <linux/device.h>
4e96fd08
GL
12#include <linux/i2c.h>
13#include <linux/log2.h>
535653b1
VL
14#include <linux/pm.h>
15#include <linux/slab.h>
95d20109 16#include <linux/v4l2-mediabus.h>
535653b1 17#include <linux/videodev2.h>
7a707b89 18#include <linux/module.h>
4e96fd08 19
4e96fd08 20#include <media/soc_camera.h>
9aea470b 21#include <media/v4l2-clk.h>
535653b1 22#include <media/v4l2-subdev.h>
41efcd7a 23#include <media/v4l2-ctrls.h>
4e96fd08 24
2f0babb7
GL
25/*
26 * ATTENTION: this driver still cannot be used outside of the soc-camera
27 * framework because of its PM implementation, using the video_device node.
28 * If hardware becomes available for testing, alternative PM approaches shall
29 * be considered and tested.
30 */
31
5d28d525
GL
32/*
33 * mt9t031 i2c address 0x5d
25a34811
GL
34 * The platform has to define struct i2c_board_info objects and link to them
35 * from struct soc_camera_host_desc
5d28d525 36 */
4e96fd08
GL
37
38/* mt9t031 selected register addresses */
39#define MT9T031_CHIP_VERSION 0x00
40#define MT9T031_ROW_START 0x01
41#define MT9T031_COLUMN_START 0x02
42#define MT9T031_WINDOW_HEIGHT 0x03
43#define MT9T031_WINDOW_WIDTH 0x04
44#define MT9T031_HORIZONTAL_BLANKING 0x05
45#define MT9T031_VERTICAL_BLANKING 0x06
46#define MT9T031_OUTPUT_CONTROL 0x07
47#define MT9T031_SHUTTER_WIDTH_UPPER 0x08
48#define MT9T031_SHUTTER_WIDTH 0x09
49#define MT9T031_PIXEL_CLOCK_CONTROL 0x0a
50#define MT9T031_FRAME_RESTART 0x0b
51#define MT9T031_SHUTTER_DELAY 0x0c
52#define MT9T031_RESET 0x0d
53#define MT9T031_READ_MODE_1 0x1e
54#define MT9T031_READ_MODE_2 0x20
55#define MT9T031_READ_MODE_3 0x21
56#define MT9T031_ROW_ADDRESS_MODE 0x22
57#define MT9T031_COLUMN_ADDRESS_MODE 0x23
58#define MT9T031_GLOBAL_GAIN 0x35
59#define MT9T031_CHIP_ENABLE 0xF8
60
61#define MT9T031_MAX_HEIGHT 1536
62#define MT9T031_MAX_WIDTH 2048
63#define MT9T031_MIN_HEIGHT 2
6a6c8786 64#define MT9T031_MIN_WIDTH 18
4e96fd08
GL
65#define MT9T031_HORIZONTAL_BLANK 142
66#define MT9T031_VERTICAL_BLANK 25
67#define MT9T031_COLUMN_SKIP 32
68#define MT9T031_ROW_SKIP 20
69
4e96fd08 70struct mt9t031 {
979ea1dd 71 struct v4l2_subdev subdev;
41efcd7a
HV
72 struct v4l2_ctrl_handler hdl;
73 struct {
74 /* exposure/auto-exposure cluster */
75 struct v4l2_ctrl *autoexposure;
76 struct v4l2_ctrl *exposure;
77 };
6a6c8786 78 struct v4l2_rect rect; /* Sensor window */
9aea470b 79 struct v4l2_clk *clk;
4e96fd08
GL
80 u16 xskip;
81 u16 yskip;
41efcd7a 82 unsigned int total_h;
32536108 83 unsigned short y_skip_top; /* Lines to skip at the top */
4e96fd08
GL
84};
85
979ea1dd
GL
86static struct mt9t031 *to_mt9t031(const struct i2c_client *client)
87{
88 return container_of(i2c_get_clientdata(client), struct mt9t031, subdev);
89}
90
9538e1c2 91static int reg_read(struct i2c_client *client, const u8 reg)
4e96fd08 92{
3f877045 93 return i2c_smbus_read_word_swapped(client, reg);
4e96fd08
GL
94}
95
9538e1c2 96static int reg_write(struct i2c_client *client, const u8 reg,
4e96fd08
GL
97 const u16 data)
98{
3f877045 99 return i2c_smbus_write_word_swapped(client, reg, data);
4e96fd08
GL
100}
101
9538e1c2 102static int reg_set(struct i2c_client *client, const u8 reg,
4e96fd08
GL
103 const u16 data)
104{
105 int ret;
106
9538e1c2 107 ret = reg_read(client, reg);
4e96fd08
GL
108 if (ret < 0)
109 return ret;
9538e1c2 110 return reg_write(client, reg, ret | data);
4e96fd08
GL
111}
112
9538e1c2 113static int reg_clear(struct i2c_client *client, const u8 reg,
4e96fd08
GL
114 const u16 data)
115{
116 int ret;
117
9538e1c2 118 ret = reg_read(client, reg);
4e96fd08
GL
119 if (ret < 0)
120 return ret;
9538e1c2 121 return reg_write(client, reg, ret & ~data);
4e96fd08
GL
122}
123
9538e1c2 124static int set_shutter(struct i2c_client *client, const u32 data)
4e96fd08
GL
125{
126 int ret;
127
9538e1c2 128 ret = reg_write(client, MT9T031_SHUTTER_WIDTH_UPPER, data >> 16);
4e96fd08
GL
129
130 if (ret >= 0)
9538e1c2 131 ret = reg_write(client, MT9T031_SHUTTER_WIDTH, data & 0xffff);
4e96fd08
GL
132
133 return ret;
134}
135
9538e1c2 136static int get_shutter(struct i2c_client *client, u32 *data)
4e96fd08
GL
137{
138 int ret;
139
9538e1c2 140 ret = reg_read(client, MT9T031_SHUTTER_WIDTH_UPPER);
4e96fd08
GL
141 *data = ret << 16;
142
143 if (ret >= 0)
9538e1c2 144 ret = reg_read(client, MT9T031_SHUTTER_WIDTH);
4e96fd08
GL
145 *data |= ret & 0xffff;
146
147 return ret < 0 ? ret : 0;
148}
149
979ea1dd 150static int mt9t031_idle(struct i2c_client *client)
4e96fd08
GL
151{
152 int ret;
153
154 /* Disable chip output, synchronous option update */
9538e1c2 155 ret = reg_write(client, MT9T031_RESET, 1);
4e96fd08 156 if (ret >= 0)
9538e1c2 157 ret = reg_write(client, MT9T031_RESET, 0);
4e96fd08 158 if (ret >= 0)
9538e1c2 159 ret = reg_clear(client, MT9T031_OUTPUT_CONTROL, 2);
4e96fd08
GL
160
161 return ret >= 0 ? 0 : -EIO;
162}
163
979ea1dd
GL
164static int mt9t031_s_stream(struct v4l2_subdev *sd, int enable)
165{
c4ce6d14 166 struct i2c_client *client = v4l2_get_subdevdata(sd);
979ea1dd
GL
167 int ret;
168
169 if (enable)
170 /* Switch to master "normal" mode */
171 ret = reg_set(client, MT9T031_OUTPUT_CONTROL, 2);
172 else
173 /* Stop sensor readout */
174 ret = reg_clear(client, MT9T031_OUTPUT_CONTROL, 2);
175
176 if (ret < 0)
4e96fd08 177 return -EIO;
979ea1dd 178
4e96fd08
GL
179 return 0;
180}
181
6a6c8786
GL
182/* target must be _even_ */
183static u16 mt9t031_skip(s32 *source, s32 target, s32 max)
70e1d353 184{
6a6c8786
GL
185 unsigned int skip;
186
187 if (*source < target + target / 2) {
188 *source = target;
189 return 1;
190 }
191
192 skip = min(max, *source + target / 2) / target;
193 if (skip > 8)
194 skip = 8;
195 *source = target * skip;
196
197 return skip;
70e1d353
GL
198}
199
6a6c8786 200/* rect is the sensor rectangle, the caller guarantees parameter validity */
a3a4ac14 201static int mt9t031_set_params(struct i2c_client *client,
09e231b3 202 struct v4l2_rect *rect, u16 xskip, u16 yskip)
4e96fd08 203{
979ea1dd 204 struct mt9t031 *mt9t031 = to_mt9t031(client);
4e96fd08 205 int ret;
6a6c8786 206 u16 xbin, ybin;
4e96fd08
GL
207 const u16 hblank = MT9T031_HORIZONTAL_BLANK,
208 vblank = MT9T031_VERTICAL_BLANK;
4e96fd08
GL
209
210 xbin = min(xskip, (u16)3);
211 ybin = min(yskip, (u16)3);
212
6a6c8786
GL
213 /*
214 * Could just do roundup(rect->left, [xy]bin * 2); but this is cheaper.
215 * There is always a valid suitably aligned value. The worst case is
216 * xbin = 3, width = 2048. Then we will start at 36, the last read out
217 * pixel will be 2083, which is < 2085 - first black pixel.
218 *
219 * MT9T031 datasheet imposes window left border alignment, depending on
220 * the selected xskip. Failing to conform to this requirement produces
221 * dark horizontal stripes in the image. However, even obeying to this
222 * requirement doesn't eliminate the stripes in all configurations. They
223 * appear "locally reproducibly," but can differ between tests under
224 * different lighting conditions.
225 */
4e96fd08 226 switch (xbin) {
6a6c8786
GL
227 case 1:
228 rect->left &= ~1;
4e96fd08 229 break;
4e96fd08 230 case 2:
6a6c8786 231 rect->left &= ~3;
4e96fd08
GL
232 break;
233 case 3:
6a6c8786
GL
234 rect->left = rect->left > roundup(MT9T031_COLUMN_SKIP, 6) ?
235 (rect->left / 6) * 6 : roundup(MT9T031_COLUMN_SKIP, 6);
4e96fd08
GL
236 }
237
6a6c8786
GL
238 rect->top &= ~1;
239
240 dev_dbg(&client->dev, "skip %u:%u, rect %ux%u@%u:%u\n",
241 xskip, yskip, rect->width, rect->height, rect->left, rect->top);
242
70e1d353 243 /* Disable register update, reconfigure atomically */
9538e1c2 244 ret = reg_set(client, MT9T031_OUTPUT_CONTROL, 1);
70e1d353
GL
245 if (ret < 0)
246 return ret;
247
4e96fd08 248 /* Blanking and start values - default... */
9538e1c2 249 ret = reg_write(client, MT9T031_HORIZONTAL_BLANKING, hblank);
4e96fd08 250 if (ret >= 0)
9538e1c2 251 ret = reg_write(client, MT9T031_VERTICAL_BLANKING, vblank);
4e96fd08 252
09e231b3 253 if (yskip != mt9t031->yskip || xskip != mt9t031->xskip) {
4e96fd08
GL
254 /* Binning, skipping */
255 if (ret >= 0)
9538e1c2 256 ret = reg_write(client, MT9T031_COLUMN_ADDRESS_MODE,
4e96fd08
GL
257 ((xbin - 1) << 4) | (xskip - 1));
258 if (ret >= 0)
9538e1c2 259 ret = reg_write(client, MT9T031_ROW_ADDRESS_MODE,
4e96fd08
GL
260 ((ybin - 1) << 4) | (yskip - 1));
261 }
6a6c8786
GL
262 dev_dbg(&client->dev, "new physical left %u, top %u\n",
263 rect->left, rect->top);
4e96fd08 264
5d28d525
GL
265 /*
266 * The caller provides a supported format, as guaranteed by
717fd5b4 267 * .set_fmt(FORMAT_TRY), soc_camera_s_crop() and soc_camera_cropcap()
5d28d525 268 */
4e96fd08 269 if (ret >= 0)
6a6c8786 270 ret = reg_write(client, MT9T031_COLUMN_START, rect->left);
4e96fd08 271 if (ret >= 0)
6a6c8786 272 ret = reg_write(client, MT9T031_ROW_START, rect->top);
4e96fd08 273 if (ret >= 0)
6a6c8786 274 ret = reg_write(client, MT9T031_WINDOW_WIDTH, rect->width - 1);
4e96fd08 275 if (ret >= 0)
9538e1c2 276 ret = reg_write(client, MT9T031_WINDOW_HEIGHT,
32536108 277 rect->height + mt9t031->y_skip_top - 1);
41efcd7a
HV
278 if (ret >= 0 && v4l2_ctrl_g_ctrl(mt9t031->autoexposure) == V4L2_EXPOSURE_AUTO) {
279 mt9t031->total_h = rect->height + mt9t031->y_skip_top + vblank;
280
281 ret = set_shutter(client, mt9t031->total_h);
4e96fd08
GL
282 }
283
09e231b3
GL
284 /* Re-enable register update, commit all changes */
285 if (ret >= 0)
9538e1c2 286 ret = reg_clear(client, MT9T031_OUTPUT_CONTROL, 1);
09e231b3 287
6a6c8786
GL
288 if (ret >= 0) {
289 mt9t031->rect = *rect;
290 mt9t031->xskip = xskip;
291 mt9t031->yskip = yskip;
292 }
293
09e231b3
GL
294 return ret < 0 ? ret : 0;
295}
296
4f996594 297static int mt9t031_s_crop(struct v4l2_subdev *sd, const struct v4l2_crop *a)
09e231b3 298{
6a6c8786 299 struct v4l2_rect rect = a->c;
c4ce6d14 300 struct i2c_client *client = v4l2_get_subdevdata(sd);
979ea1dd 301 struct mt9t031 *mt9t031 = to_mt9t031(client);
09e231b3 302
6a6c8786
GL
303 rect.width = ALIGN(rect.width, 2);
304 rect.height = ALIGN(rect.height, 2);
305
306 soc_camera_limit_side(&rect.left, &rect.width,
307 MT9T031_COLUMN_SKIP, MT9T031_MIN_WIDTH, MT9T031_MAX_WIDTH);
308
309 soc_camera_limit_side(&rect.top, &rect.height,
310 MT9T031_ROW_SKIP, MT9T031_MIN_HEIGHT, MT9T031_MAX_HEIGHT);
311
a3a4ac14 312 return mt9t031_set_params(client, &rect, mt9t031->xskip, mt9t031->yskip);
6a6c8786
GL
313}
314
315static int mt9t031_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
316{
c4ce6d14 317 struct i2c_client *client = v4l2_get_subdevdata(sd);
6a6c8786
GL
318 struct mt9t031 *mt9t031 = to_mt9t031(client);
319
320 a->c = mt9t031->rect;
321 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
e330919a 322
6a6c8786
GL
323 return 0;
324}
325
326static int mt9t031_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
327{
328 a->bounds.left = MT9T031_COLUMN_SKIP;
329 a->bounds.top = MT9T031_ROW_SKIP;
330 a->bounds.width = MT9T031_MAX_WIDTH;
331 a->bounds.height = MT9T031_MAX_HEIGHT;
332 a->defrect = a->bounds;
333 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
334 a->pixelaspect.numerator = 1;
335 a->pixelaspect.denominator = 1;
e330919a 336
6a6c8786
GL
337 return 0;
338}
339
da298c6d
HV
340static int mt9t031_get_fmt(struct v4l2_subdev *sd,
341 struct v4l2_subdev_pad_config *cfg,
342 struct v4l2_subdev_format *format)
6a6c8786 343{
da298c6d 344 struct v4l2_mbus_framefmt *mf = &format->format;
c4ce6d14 345 struct i2c_client *client = v4l2_get_subdevdata(sd);
6a6c8786 346 struct mt9t031 *mt9t031 = to_mt9t031(client);
6a6c8786 347
da298c6d
HV
348 if (format->pad)
349 return -EINVAL;
350
760697be
GL
351 mf->width = mt9t031->rect.width / mt9t031->xskip;
352 mf->height = mt9t031->rect.height / mt9t031->yskip;
f5fe58fd 353 mf->code = MEDIA_BUS_FMT_SBGGR10_1X10;
760697be
GL
354 mf->colorspace = V4L2_COLORSPACE_SRGB;
355 mf->field = V4L2_FIELD_NONE;
6a6c8786
GL
356
357 return 0;
09e231b3
GL
358}
359
717fd5b4
HV
360/*
361 * If a user window larger than sensor window is requested, we'll increase the
362 * sensor window.
363 */
364static int mt9t031_set_fmt(struct v4l2_subdev *sd,
365 struct v4l2_subdev_pad_config *cfg,
366 struct v4l2_subdev_format *format)
09e231b3 367{
717fd5b4 368 struct v4l2_mbus_framefmt *mf = &format->format;
c4ce6d14 369 struct i2c_client *client = v4l2_get_subdevdata(sd);
979ea1dd 370 struct mt9t031 *mt9t031 = to_mt9t031(client);
09e231b3 371 u16 xskip, yskip;
6a6c8786 372 struct v4l2_rect rect = mt9t031->rect;
09e231b3 373
717fd5b4
HV
374 if (format->pad)
375 return -EINVAL;
376
377 mf->code = MEDIA_BUS_FMT_SBGGR10_1X10;
378 mf->colorspace = V4L2_COLORSPACE_SRGB;
379 v4l_bound_align_image(
380 &mf->width, MT9T031_MIN_WIDTH, MT9T031_MAX_WIDTH, 1,
381 &mf->height, MT9T031_MIN_HEIGHT, MT9T031_MAX_HEIGHT, 1, 0);
382
383 if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
384 cfg->try_fmt = *mf;
385 return 0;
386 }
387
09e231b3 388 /*
717fd5b4 389 * Width and height are within limits.
6a6c8786 390 * S_FMT: use binning and skipping for scaling
09e231b3 391 */
760697be
GL
392 xskip = mt9t031_skip(&rect.width, mf->width, MT9T031_MAX_WIDTH);
393 yskip = mt9t031_skip(&rect.height, mf->height, MT9T031_MAX_HEIGHT);
394
f5fe58fd 395 mf->code = MEDIA_BUS_FMT_SBGGR10_1X10;
760697be 396 mf->colorspace = V4L2_COLORSPACE_SRGB;
4e96fd08 397
6a6c8786 398 /* mt9t031_set_params() doesn't change width and height */
a3a4ac14 399 return mt9t031_set_params(client, &rect, xskip, yskip);
4e96fd08
GL
400}
401
4e96fd08 402#ifdef CONFIG_VIDEO_ADV_DEBUG
979ea1dd
GL
403static int mt9t031_g_register(struct v4l2_subdev *sd,
404 struct v4l2_dbg_register *reg)
4e96fd08 405{
c4ce6d14 406 struct i2c_client *client = v4l2_get_subdevdata(sd);
4e96fd08 407
6be89daa 408 if (reg->reg > 0xff)
4e96fd08
GL
409 return -EINVAL;
410
15c4fee3 411 reg->size = 1;
9538e1c2 412 reg->val = reg_read(client, reg->reg);
4e96fd08
GL
413
414 if (reg->val > 0xffff)
415 return -EIO;
416
417 return 0;
418}
419
979ea1dd 420static int mt9t031_s_register(struct v4l2_subdev *sd,
977ba3b1 421 const struct v4l2_dbg_register *reg)
4e96fd08 422{
c4ce6d14 423 struct i2c_client *client = v4l2_get_subdevdata(sd);
4e96fd08 424
6be89daa 425 if (reg->reg > 0xff)
4e96fd08
GL
426 return -EINVAL;
427
9538e1c2 428 if (reg_write(client, reg->reg, reg->val) < 0)
4e96fd08
GL
429 return -EIO;
430
431 return 0;
432}
433#endif
434
41efcd7a 435static int mt9t031_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
4e96fd08 436{
41efcd7a
HV
437 struct mt9t031 *mt9t031 = container_of(ctrl->handler,
438 struct mt9t031, hdl);
439 const u32 shutter_max = MT9T031_MAX_HEIGHT + MT9T031_VERTICAL_BLANK;
440 s32 min, max;
4e96fd08
GL
441
442 switch (ctrl->id) {
4e96fd08 443 case V4L2_CID_EXPOSURE_AUTO:
41efcd7a
HV
444 min = mt9t031->exposure->minimum;
445 max = mt9t031->exposure->maximum;
446 mt9t031->exposure->val =
447 (shutter_max / 2 + (mt9t031->total_h - 1) * (max - min))
448 / shutter_max + min;
96c75399 449 break;
4e96fd08
GL
450 }
451 return 0;
452}
453
41efcd7a 454static int mt9t031_s_ctrl(struct v4l2_ctrl *ctrl)
4e96fd08 455{
41efcd7a
HV
456 struct mt9t031 *mt9t031 = container_of(ctrl->handler,
457 struct mt9t031, hdl);
458 struct v4l2_subdev *sd = &mt9t031->subdev;
c4ce6d14 459 struct i2c_client *client = v4l2_get_subdevdata(sd);
41efcd7a 460 struct v4l2_ctrl *exp = mt9t031->exposure;
4e96fd08
GL
461 int data;
462
4e96fd08
GL
463 switch (ctrl->id) {
464 case V4L2_CID_VFLIP:
41efcd7a 465 if (ctrl->val)
9538e1c2 466 data = reg_set(client, MT9T031_READ_MODE_2, 0x8000);
4e96fd08 467 else
9538e1c2 468 data = reg_clear(client, MT9T031_READ_MODE_2, 0x8000);
4e96fd08
GL
469 if (data < 0)
470 return -EIO;
41efcd7a 471 return 0;
4e96fd08 472 case V4L2_CID_HFLIP:
41efcd7a 473 if (ctrl->val)
9538e1c2 474 data = reg_set(client, MT9T031_READ_MODE_2, 0x4000);
4e96fd08 475 else
9538e1c2 476 data = reg_clear(client, MT9T031_READ_MODE_2, 0x4000);
4e96fd08
GL
477 if (data < 0)
478 return -EIO;
41efcd7a 479 return 0;
4e96fd08 480 case V4L2_CID_GAIN:
4e96fd08 481 /* See Datasheet Table 7, Gain settings. */
41efcd7a 482 if (ctrl->val <= ctrl->default_value) {
4e96fd08 483 /* Pack it into 0..1 step 0.125, register values 0..8 */
41efcd7a 484 unsigned long range = ctrl->default_value - ctrl->minimum;
0d5e8c43 485 data = ((ctrl->val - (s32)ctrl->minimum) * 8 + range / 2) / range;
4e96fd08 486
85f8be68 487 dev_dbg(&client->dev, "Setting gain %d\n", data);
9538e1c2 488 data = reg_write(client, MT9T031_GLOBAL_GAIN, data);
4e96fd08
GL
489 if (data < 0)
490 return -EIO;
491 } else {
70e1d353 492 /* Pack it into 1.125..128 variable step, register values 9..0x7860 */
4e96fd08 493 /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
41efcd7a 494 unsigned long range = ctrl->maximum - ctrl->default_value - 1;
70e1d353 495 /* calculated gain: map 65..127 to 9..1024 step 0.125 */
0d5e8c43 496 unsigned long gain = ((ctrl->val - (s32)ctrl->default_value - 1) *
70e1d353 497 1015 + range / 2) / range + 9;
4e96fd08 498
70e1d353 499 if (gain <= 32) /* calculated gain 9..32 -> 9..32 */
4e96fd08 500 data = gain;
70e1d353 501 else if (gain <= 64) /* calculated gain 33..64 -> 0x51..0x60 */
4e96fd08
GL
502 data = ((gain - 32) * 16 + 16) / 32 + 80;
503 else
70e1d353
GL
504 /* calculated gain 65..1024 -> (1..120) << 8 + 0x60 */
505 data = (((gain - 64 + 7) * 32) & 0xff00) | 0x60;
4e96fd08 506
85f8be68 507 dev_dbg(&client->dev, "Set gain from 0x%x to 0x%x\n",
9538e1c2
GL
508 reg_read(client, MT9T031_GLOBAL_GAIN), data);
509 data = reg_write(client, MT9T031_GLOBAL_GAIN, data);
4e96fd08
GL
510 if (data < 0)
511 return -EIO;
512 }
41efcd7a 513 return 0;
4e96fd08 514
41efcd7a
HV
515 case V4L2_CID_EXPOSURE_AUTO:
516 if (ctrl->val == V4L2_EXPOSURE_MANUAL) {
517 unsigned int range = exp->maximum - exp->minimum;
0d5e8c43 518 unsigned int shutter = ((exp->val - (s32)exp->minimum) * 1048 +
41efcd7a 519 range / 2) / range + 1;
4e96fd08
GL
520 u32 old;
521
9538e1c2 522 get_shutter(client, &old);
85f8be68 523 dev_dbg(&client->dev, "Set shutter from %u to %u\n",
4e96fd08 524 old, shutter);
9538e1c2 525 if (set_shutter(client, shutter) < 0)
4e96fd08 526 return -EIO;
41efcd7a 527 } else {
4e96fd08 528 const u16 vblank = MT9T031_VERTICAL_BLANK;
41efcd7a 529 mt9t031->total_h = mt9t031->rect.height +
32536108 530 mt9t031->y_skip_top + vblank;
96c75399 531
41efcd7a 532 if (set_shutter(client, mt9t031->total_h) < 0)
4e96fd08 533 return -EIO;
41efcd7a
HV
534 }
535 return 0;
a3a4ac14
GL
536 default:
537 return -EINVAL;
4e96fd08
GL
538 }
539 return 0;
540}
541
535653b1
VL
542/*
543 * Power Management:
544 * This function does nothing for now but must be present for pm to work
545 */
546static int mt9t031_runtime_suspend(struct device *dev)
547{
548 return 0;
549}
550
551/*
552 * Power Management:
553 * COLUMN_ADDRESS_MODE and ROW_ADDRESS_MODE are not rewritten if unchanged
554 * they are however changed at reset if the platform hook is present
555 * thus we rewrite them with the values stored by the driver
556 */
557static int mt9t031_runtime_resume(struct device *dev)
558{
559 struct video_device *vdev = to_video_device(dev);
14178aa5 560 struct v4l2_subdev *sd = soc_camera_vdev_to_subdev(vdev);
c4ce6d14 561 struct i2c_client *client = v4l2_get_subdevdata(sd);
535653b1
VL
562 struct mt9t031 *mt9t031 = to_mt9t031(client);
563
564 int ret;
565 u16 xbin, ybin;
566
567 xbin = min(mt9t031->xskip, (u16)3);
568 ybin = min(mt9t031->yskip, (u16)3);
569
570 ret = reg_write(client, MT9T031_COLUMN_ADDRESS_MODE,
571 ((xbin - 1) << 4) | (mt9t031->xskip - 1));
572 if (ret < 0)
573 return ret;
574
575 ret = reg_write(client, MT9T031_ROW_ADDRESS_MODE,
576 ((ybin - 1) << 4) | (mt9t031->yskip - 1));
577 if (ret < 0)
578 return ret;
579
580 return 0;
581}
582
cbdb1f9d 583static const struct dev_pm_ops mt9t031_dev_pm_ops = {
535653b1
VL
584 .runtime_suspend = mt9t031_runtime_suspend,
585 .runtime_resume = mt9t031_runtime_resume,
586};
587
588static struct device_type mt9t031_dev_type = {
589 .name = "MT9T031",
590 .pm = &mt9t031_dev_pm_ops,
591};
592
2f0babb7
GL
593static int mt9t031_s_power(struct v4l2_subdev *sd, int on)
594{
595 struct i2c_client *client = v4l2_get_subdevdata(sd);
25a34811 596 struct soc_camera_subdev_desc *ssdd = soc_camera_i2c_to_desc(client);
2f0babb7 597 struct video_device *vdev = soc_camera_i2c_to_vdev(client);
9aea470b 598 struct mt9t031 *mt9t031 = to_mt9t031(client);
4ec10bac 599 int ret;
2f0babb7 600
4ec10bac 601 if (on) {
9aea470b 602 ret = soc_camera_power_on(&client->dev, ssdd, mt9t031->clk);
4ec10bac
LP
603 if (ret < 0)
604 return ret;
3d238885
GL
605 if (vdev)
606 /* Not needed during probing, when vdev isn't available yet */
607 vdev->dev.type = &mt9t031_dev_type;
4ec10bac 608 } else {
3d238885
GL
609 if (vdev)
610 vdev->dev.type = NULL;
9aea470b 611 soc_camera_power_off(&client->dev, ssdd, mt9t031->clk);
4ec10bac 612 }
2f0babb7
GL
613
614 return 0;
615}
616
5d28d525
GL
617/*
618 * Interface active, can use i2c. If it fails, it can indeed mean, that
619 * this wasn't our capture interface, so, we wait for the right one
620 */
979ea1dd 621static int mt9t031_video_probe(struct i2c_client *client)
4e96fd08 622{
979ea1dd 623 struct mt9t031 *mt9t031 = to_mt9t031(client);
4e96fd08 624 s32 data;
a4c56fd8 625 int ret;
4e96fd08 626
4bbc6d52
LP
627 ret = mt9t031_s_power(&mt9t031->subdev, 1);
628 if (ret < 0)
629 return ret;
630
631 ret = mt9t031_idle(client);
632 if (ret < 0) {
633 dev_err(&client->dev, "Failed to initialise the camera\n");
634 goto done;
635 }
4e96fd08
GL
636
637 /* Read out the chip version register */
9538e1c2 638 data = reg_read(client, MT9T031_CHIP_VERSION);
4e96fd08
GL
639
640 switch (data) {
641 case 0x1621:
4e96fd08
GL
642 break;
643 default:
85f8be68 644 dev_err(&client->dev,
4e96fd08 645 "No MT9T031 chip detected, register read %x\n", data);
4bbc6d52
LP
646 ret = -ENODEV;
647 goto done;
4e96fd08
GL
648 }
649
85f8be68 650 dev_info(&client->dev, "Detected a MT9T031 chip ID %x\n", data);
4e96fd08 651
4bbc6d52
LP
652 ret = v4l2_ctrl_handler_setup(&mt9t031->hdl);
653
654done:
655 mt9t031_s_power(&mt9t031->subdev, 0);
2f0babb7 656
a4c56fd8 657 return ret;
4e96fd08
GL
658}
659
32536108
GL
660static int mt9t031_g_skip_top_lines(struct v4l2_subdev *sd, u32 *lines)
661{
c4ce6d14 662 struct i2c_client *client = v4l2_get_subdevdata(sd);
32536108
GL
663 struct mt9t031 *mt9t031 = to_mt9t031(client);
664
665 *lines = mt9t031->y_skip_top;
666
667 return 0;
668}
669
41efcd7a
HV
670static const struct v4l2_ctrl_ops mt9t031_ctrl_ops = {
671 .g_volatile_ctrl = mt9t031_g_volatile_ctrl,
672 .s_ctrl = mt9t031_s_ctrl,
673};
674
979ea1dd 675static struct v4l2_subdev_core_ops mt9t031_subdev_core_ops = {
2f0babb7 676 .s_power = mt9t031_s_power,
979ea1dd
GL
677#ifdef CONFIG_VIDEO_ADV_DEBUG
678 .g_register = mt9t031_g_register,
679 .s_register = mt9t031_s_register,
680#endif
681};
682
ebcff5fc
HV
683static int mt9t031_enum_mbus_code(struct v4l2_subdev *sd,
684 struct v4l2_subdev_pad_config *cfg,
685 struct v4l2_subdev_mbus_code_enum *code)
760697be 686{
ebcff5fc 687 if (code->pad || code->index)
760697be
GL
688 return -EINVAL;
689
ebcff5fc 690 code->code = MEDIA_BUS_FMT_SBGGR10_1X10;
760697be
GL
691 return 0;
692}
693
a3505755
GL
694static int mt9t031_g_mbus_config(struct v4l2_subdev *sd,
695 struct v4l2_mbus_config *cfg)
696{
697 struct i2c_client *client = v4l2_get_subdevdata(sd);
25a34811 698 struct soc_camera_subdev_desc *ssdd = soc_camera_i2c_to_desc(client);
a3505755
GL
699
700 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING |
701 V4L2_MBUS_PCLK_SAMPLE_FALLING | V4L2_MBUS_HSYNC_ACTIVE_HIGH |
702 V4L2_MBUS_VSYNC_ACTIVE_HIGH | V4L2_MBUS_DATA_ACTIVE_HIGH;
703 cfg->type = V4L2_MBUS_PARALLEL;
25a34811 704 cfg->flags = soc_camera_apply_board_flags(ssdd, cfg);
a3505755
GL
705
706 return 0;
707}
708
709static int mt9t031_s_mbus_config(struct v4l2_subdev *sd,
710 const struct v4l2_mbus_config *cfg)
711{
712 struct i2c_client *client = v4l2_get_subdevdata(sd);
25a34811 713 struct soc_camera_subdev_desc *ssdd = soc_camera_i2c_to_desc(client);
a3505755 714
25a34811 715 if (soc_camera_apply_board_flags(ssdd, cfg) &
a3505755
GL
716 V4L2_MBUS_PCLK_SAMPLE_FALLING)
717 return reg_clear(client, MT9T031_PIXEL_CLOCK_CONTROL, 0x8000);
718 else
719 return reg_set(client, MT9T031_PIXEL_CLOCK_CONTROL, 0x8000);
720}
721
979ea1dd
GL
722static struct v4l2_subdev_video_ops mt9t031_subdev_video_ops = {
723 .s_stream = mt9t031_s_stream,
08590b96 724 .s_crop = mt9t031_s_crop,
6a6c8786
GL
725 .g_crop = mt9t031_g_crop,
726 .cropcap = mt9t031_cropcap,
a3505755
GL
727 .g_mbus_config = mt9t031_g_mbus_config,
728 .s_mbus_config = mt9t031_s_mbus_config,
979ea1dd
GL
729};
730
368a53df 731static const struct v4l2_subdev_sensor_ops mt9t031_subdev_sensor_ops = {
32536108
GL
732 .g_skip_top_lines = mt9t031_g_skip_top_lines,
733};
734
ebcff5fc
HV
735static const struct v4l2_subdev_pad_ops mt9t031_subdev_pad_ops = {
736 .enum_mbus_code = mt9t031_enum_mbus_code,
da298c6d 737 .get_fmt = mt9t031_get_fmt,
717fd5b4 738 .set_fmt = mt9t031_set_fmt,
ebcff5fc
HV
739};
740
979ea1dd
GL
741static struct v4l2_subdev_ops mt9t031_subdev_ops = {
742 .core = &mt9t031_subdev_core_ops,
743 .video = &mt9t031_subdev_video_ops,
32536108 744 .sensor = &mt9t031_subdev_sensor_ops,
ebcff5fc 745 .pad = &mt9t031_subdev_pad_ops,
979ea1dd
GL
746};
747
4e96fd08
GL
748static int mt9t031_probe(struct i2c_client *client,
749 const struct i2c_device_id *did)
750{
751 struct mt9t031 *mt9t031;
25a34811 752 struct soc_camera_subdev_desc *ssdd = soc_camera_i2c_to_desc(client);
4e96fd08 753 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
4e96fd08
GL
754 int ret;
755
25a34811 756 if (!ssdd) {
14178aa5
GL
757 dev_err(&client->dev, "MT9T031 driver needs platform data\n");
758 return -EINVAL;
4e96fd08
GL
759 }
760
761 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
762 dev_warn(&adapter->dev,
763 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
764 return -EIO;
765 }
766
70e176a5 767 mt9t031 = devm_kzalloc(&client->dev, sizeof(struct mt9t031), GFP_KERNEL);
4e96fd08
GL
768 if (!mt9t031)
769 return -ENOMEM;
770
979ea1dd 771 v4l2_i2c_subdev_init(&mt9t031->subdev, client, &mt9t031_subdev_ops);
41efcd7a
HV
772 v4l2_ctrl_handler_init(&mt9t031->hdl, 5);
773 v4l2_ctrl_new_std(&mt9t031->hdl, &mt9t031_ctrl_ops,
774 V4L2_CID_VFLIP, 0, 1, 1, 0);
775 v4l2_ctrl_new_std(&mt9t031->hdl, &mt9t031_ctrl_ops,
776 V4L2_CID_HFLIP, 0, 1, 1, 0);
777 v4l2_ctrl_new_std(&mt9t031->hdl, &mt9t031_ctrl_ops,
778 V4L2_CID_GAIN, 0, 127, 1, 64);
779
780 /*
781 * Simulated autoexposure. If enabled, we calculate shutter width
782 * ourselves in the driver based on vertical blanking and frame width
783 */
784 mt9t031->autoexposure = v4l2_ctrl_new_std_menu(&mt9t031->hdl,
785 &mt9t031_ctrl_ops, V4L2_CID_EXPOSURE_AUTO, 1, 0,
786 V4L2_EXPOSURE_AUTO);
787 mt9t031->exposure = v4l2_ctrl_new_std(&mt9t031->hdl, &mt9t031_ctrl_ops,
788 V4L2_CID_EXPOSURE, 1, 255, 1, 255);
789
790 mt9t031->subdev.ctrl_handler = &mt9t031->hdl;
70e176a5
GL
791 if (mt9t031->hdl.error)
792 return mt9t031->hdl.error;
41efcd7a 793
41efcd7a
HV
794 v4l2_ctrl_auto_cluster(2, &mt9t031->autoexposure,
795 V4L2_EXPOSURE_MANUAL, true);
4e96fd08 796
32536108 797 mt9t031->y_skip_top = 0;
6a6c8786
GL
798 mt9t031->rect.left = MT9T031_COLUMN_SKIP;
799 mt9t031->rect.top = MT9T031_ROW_SKIP;
800 mt9t031->rect.width = MT9T031_MAX_WIDTH;
801 mt9t031->rect.height = MT9T031_MAX_HEIGHT;
802
4e96fd08
GL
803 mt9t031->xskip = 1;
804 mt9t031->yskip = 1;
805
9aea470b
GL
806 mt9t031->clk = v4l2_clk_get(&client->dev, "mclk");
807 if (IS_ERR(mt9t031->clk)) {
808 ret = PTR_ERR(mt9t031->clk);
809 goto eclkget;
810 }
811
979ea1dd 812 ret = mt9t031_video_probe(client);
9aea470b
GL
813 if (ret) {
814 v4l2_clk_put(mt9t031->clk);
815eclkget:
41efcd7a 816 v4l2_ctrl_handler_free(&mt9t031->hdl);
9aea470b 817 }
4e96fd08 818
4e96fd08
GL
819 return ret;
820}
821
822static int mt9t031_remove(struct i2c_client *client)
823{
979ea1dd 824 struct mt9t031 *mt9t031 = to_mt9t031(client);
4e96fd08 825
9aea470b 826 v4l2_clk_put(mt9t031->clk);
41efcd7a
HV
827 v4l2_device_unregister_subdev(&mt9t031->subdev);
828 v4l2_ctrl_handler_free(&mt9t031->hdl);
4e96fd08
GL
829
830 return 0;
831}
832
833static const struct i2c_device_id mt9t031_id[] = {
834 { "mt9t031", 0 },
835 { }
836};
837MODULE_DEVICE_TABLE(i2c, mt9t031_id);
838
839static struct i2c_driver mt9t031_i2c_driver = {
840 .driver = {
841 .name = "mt9t031",
842 },
843 .probe = mt9t031_probe,
844 .remove = mt9t031_remove,
845 .id_table = mt9t031_id,
846};
847
c6e8d86f 848module_i2c_driver(mt9t031_i2c_driver);
4e96fd08
GL
849
850MODULE_DESCRIPTION("Micron MT9T031 Camera driver");
851MODULE_AUTHOR("Guennadi Liakhovetski <lg@denx.de>");
852MODULE_LICENSE("GPL v2");
This page took 0.522683 seconds and 5 git commands to generate.