V4L/DVB (12515): soc-camera: use struct v4l2_rect in struct soc_camera_device
[deliverable/linux.git] / drivers / media / video / mt9m001.c
CommitLineData
f523dd0d
GL
1/*
2 * Driver for MT9M001 CMOS Image Sensor from Micron
3 *
4 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.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
11#include <linux/videodev2.h>
12#include <linux/slab.h>
13#include <linux/i2c.h>
14#include <linux/log2.h>
15
979ea1dd 16#include <media/v4l2-subdev.h>
f523dd0d
GL
17#include <media/v4l2-chip-ident.h>
18#include <media/soc_camera.h>
19
f523dd0d 20/* mt9m001 i2c address 0x5d
979ea1dd
GL
21 * The platform has to define ctruct i2c_board_info objects and link to them
22 * from struct soc_camera_link */
f523dd0d
GL
23
24/* mt9m001 selected register addresses */
25#define MT9M001_CHIP_VERSION 0x00
26#define MT9M001_ROW_START 0x01
27#define MT9M001_COLUMN_START 0x02
28#define MT9M001_WINDOW_HEIGHT 0x03
29#define MT9M001_WINDOW_WIDTH 0x04
30#define MT9M001_HORIZONTAL_BLANKING 0x05
31#define MT9M001_VERTICAL_BLANKING 0x06
32#define MT9M001_OUTPUT_CONTROL 0x07
33#define MT9M001_SHUTTER_WIDTH 0x09
34#define MT9M001_FRAME_RESTART 0x0b
35#define MT9M001_SHUTTER_DELAY 0x0c
36#define MT9M001_RESET 0x0d
37#define MT9M001_READ_OPTIONS1 0x1e
38#define MT9M001_READ_OPTIONS2 0x20
39#define MT9M001_GLOBAL_GAIN 0x35
40#define MT9M001_CHIP_ENABLE 0xF1
41
42static const struct soc_camera_data_format mt9m001_colour_formats[] = {
bb55de3b
GL
43 /* Order important: first natively supported,
44 * second supported with a GPIO extender */
f523dd0d 45 {
bb55de3b
GL
46 .name = "Bayer (sRGB) 10 bit",
47 .depth = 10,
48 .fourcc = V4L2_PIX_FMT_SBGGR16,
49 .colorspace = V4L2_COLORSPACE_SRGB,
50 }, {
51 .name = "Bayer (sRGB) 8 bit",
52 .depth = 8,
f523dd0d
GL
53 .fourcc = V4L2_PIX_FMT_SBGGR8,
54 .colorspace = V4L2_COLORSPACE_SRGB,
55 }
56};
57
58static const struct soc_camera_data_format mt9m001_monochrome_formats[] = {
bb55de3b 59 /* Order important - see above */
f523dd0d
GL
60 {
61 .name = "Monochrome 10 bit",
62 .depth = 10,
63 .fourcc = V4L2_PIX_FMT_Y16,
64 }, {
65 .name = "Monochrome 8 bit",
66 .depth = 8,
67 .fourcc = V4L2_PIX_FMT_GREY,
68 },
69};
70
71struct mt9m001 {
979ea1dd 72 struct v4l2_subdev subdev;
f523dd0d 73 int model; /* V4L2_IDENT_MT9M001* codes from v4l2-chip-ident.h */
f523dd0d 74 unsigned char autoexposure;
f523dd0d
GL
75};
76
979ea1dd
GL
77static struct mt9m001 *to_mt9m001(const struct i2c_client *client)
78{
79 return container_of(i2c_get_clientdata(client), struct mt9m001, subdev);
80}
81
9538e1c2 82static int reg_read(struct i2c_client *client, const u8 reg)
f523dd0d 83{
f523dd0d
GL
84 s32 data = i2c_smbus_read_word_data(client, reg);
85 return data < 0 ? data : swab16(data);
86}
87
9538e1c2 88static int reg_write(struct i2c_client *client, const u8 reg,
f523dd0d
GL
89 const u16 data)
90{
9538e1c2 91 return i2c_smbus_write_word_data(client, reg, swab16(data));
f523dd0d
GL
92}
93
9538e1c2 94static int reg_set(struct i2c_client *client, const u8 reg,
f523dd0d
GL
95 const u16 data)
96{
97 int ret;
98
9538e1c2 99 ret = reg_read(client, reg);
f523dd0d
GL
100 if (ret < 0)
101 return ret;
9538e1c2 102 return reg_write(client, reg, ret | data);
f523dd0d
GL
103}
104
9538e1c2 105static int reg_clear(struct i2c_client *client, const u8 reg,
f523dd0d
GL
106 const u16 data)
107{
108 int ret;
109
9538e1c2 110 ret = reg_read(client, reg);
f523dd0d
GL
111 if (ret < 0)
112 return ret;
9538e1c2 113 return reg_write(client, reg, ret & ~data);
f523dd0d
GL
114}
115
116static int mt9m001_init(struct soc_camera_device *icd)
117{
40e2e092 118 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
f523dd0d
GL
119 int ret;
120
40e2e092 121 dev_dbg(&icd->dev, "%s\n", __func__);
f523dd0d 122
979ea1dd
GL
123 /*
124 * We don't know, whether platform provides reset,
125 * issue a soft reset too
126 */
127 ret = reg_write(client, MT9M001_RESET, 1);
128 if (!ret)
129 ret = reg_write(client, MT9M001_RESET, 0);
81034663 130
11211641
GL
131 /* Disable chip, synchronous option update */
132 if (!ret)
9538e1c2 133 ret = reg_write(client, MT9M001_OUTPUT_CONTROL, 0);
f523dd0d 134
11211641 135 return ret;
f523dd0d
GL
136}
137
138static int mt9m001_release(struct soc_camera_device *icd)
139{
40e2e092 140 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
81034663 141
f523dd0d 142 /* Disable the chip */
9538e1c2 143 reg_write(client, MT9M001_OUTPUT_CONTROL, 0);
81034663 144
f523dd0d
GL
145 return 0;
146}
147
979ea1dd 148static int mt9m001_s_stream(struct v4l2_subdev *sd, int enable)
f523dd0d 149{
979ea1dd 150 struct i2c_client *client = sd->priv;
9538e1c2 151
979ea1dd
GL
152 /* Switch to master "normal" mode or stop sensor readout */
153 if (reg_write(client, MT9M001_OUTPUT_CONTROL, enable ? 2 : 0) < 0)
f523dd0d
GL
154 return -EIO;
155 return 0;
156}
157
ad5f2e85
GL
158static int mt9m001_set_bus_param(struct soc_camera_device *icd,
159 unsigned long flags)
f523dd0d 160{
40e2e092 161 struct soc_camera_link *icl = to_soc_camera_link(icd);
36034dc3 162 unsigned long width_flag = flags & SOCAM_DATAWIDTH_MASK;
f523dd0d 163
36034dc3
SH
164 /* Only one width bit may be set */
165 if (!is_power_of_2(width_flag))
166 return -EINVAL;
f523dd0d 167
36034dc3
SH
168 if (icl->set_bus_param)
169 return icl->set_bus_param(icl, width_flag);
f523dd0d 170
36034dc3
SH
171 /*
172 * Without board specific bus width settings we only support the
173 * sensors native bus width
174 */
175 if (width_flag == SOCAM_DATAWIDTH_10)
176 return 0;
f523dd0d 177
36034dc3 178 return -EINVAL;
ad5f2e85
GL
179}
180
181static unsigned long mt9m001_query_bus_param(struct soc_camera_device *icd)
182{
40e2e092 183 struct soc_camera_link *icl = to_soc_camera_link(icd);
bd73b36f 184 /* MT9M001 has all capture_format parameters fixed */
e951cbf2 185 unsigned long flags = SOCAM_PCLK_SAMPLE_FALLING |
bd73b36f 186 SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH |
2d9329f3 187 SOCAM_DATA_ACTIVE_HIGH | SOCAM_MASTER;
ad5f2e85 188
36034dc3
SH
189 if (icl->query_bus_param)
190 flags |= icl->query_bus_param(icl) & SOCAM_DATAWIDTH_MASK;
191 else
192 flags |= SOCAM_DATAWIDTH_10;
ad5f2e85 193
bd73b36f 194 return soc_camera_apply_sensor_flags(icl, flags);
ad5f2e85
GL
195}
196
09e231b3
GL
197static int mt9m001_set_crop(struct soc_camera_device *icd,
198 struct v4l2_rect *rect)
ad5f2e85 199{
40e2e092 200 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
979ea1dd 201 struct mt9m001 *mt9m001 = to_mt9m001(client);
ad5f2e85
GL
202 int ret;
203 const u16 hblank = 9, vblank = 25;
204
f523dd0d 205 /* Blanking and start values - default... */
9538e1c2 206 ret = reg_write(client, MT9M001_HORIZONTAL_BLANKING, hblank);
11211641 207 if (!ret)
9538e1c2 208 ret = reg_write(client, MT9M001_VERTICAL_BLANKING, vblank);
f523dd0d
GL
209
210 /* The caller provides a supported format, as verified per
d8fac217 211 * call to icd->try_fmt() */
11211641 212 if (!ret)
9538e1c2 213 ret = reg_write(client, MT9M001_COLUMN_START, rect->left);
11211641 214 if (!ret)
9538e1c2 215 ret = reg_write(client, MT9M001_ROW_START, rect->top);
11211641 216 if (!ret)
9538e1c2 217 ret = reg_write(client, MT9M001_WINDOW_WIDTH, rect->width - 1);
11211641 218 if (!ret)
9538e1c2 219 ret = reg_write(client, MT9M001_WINDOW_HEIGHT,
f523dd0d 220 rect->height + icd->y_skip_top - 1);
11211641 221 if (!ret && mt9m001->autoexposure) {
9538e1c2 222 ret = reg_write(client, MT9M001_SHUTTER_WIDTH,
f523dd0d 223 rect->height + icd->y_skip_top + vblank);
11211641 224 if (!ret) {
f523dd0d
GL
225 const struct v4l2_queryctrl *qctrl =
226 soc_camera_find_qctrl(icd->ops,
227 V4L2_CID_EXPOSURE);
228 icd->exposure = (524 + (rect->height + icd->y_skip_top +
229 vblank - 1) *
230 (qctrl->maximum - qctrl->minimum)) /
231 1048 + qctrl->minimum;
232 }
233 }
234
11211641 235 return ret;
f523dd0d
GL
236}
237
979ea1dd 238static int mt9m001_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
09e231b3 239{
979ea1dd
GL
240 struct i2c_client *client = sd->priv;
241 struct soc_camera_device *icd = client->dev.platform_data;
09e231b3 242 struct v4l2_rect rect = {
a0705b07
GL
243 .left = icd->rect_current.left,
244 .top = icd->rect_current.top,
09e231b3
GL
245 .width = f->fmt.pix.width,
246 .height = f->fmt.pix.height,
247 };
248
249 /* No support for scaling so far, just crop. TODO: use skipping */
250 return mt9m001_set_crop(icd, &rect);
251}
252
979ea1dd 253static int mt9m001_try_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
f523dd0d 254{
979ea1dd
GL
255 struct i2c_client *client = sd->priv;
256 struct soc_camera_device *icd = client->dev.platform_data;
64f5905e
GL
257 struct v4l2_pix_format *pix = &f->fmt.pix;
258
653dc59b
TP
259 v4l_bound_align_image(&pix->width, 48, 1280, 1,
260 &pix->height, 32 + icd->y_skip_top,
261 1024 + icd->y_skip_top, 0, 0);
f523dd0d
GL
262
263 return 0;
264}
265
979ea1dd
GL
266static int mt9m001_g_chip_ident(struct v4l2_subdev *sd,
267 struct v4l2_dbg_chip_ident *id)
f523dd0d 268{
979ea1dd
GL
269 struct i2c_client *client = sd->priv;
270 struct mt9m001 *mt9m001 = to_mt9m001(client);
f523dd0d 271
aecde8b5 272 if (id->match.type != V4L2_CHIP_MATCH_I2C_ADDR)
f523dd0d
GL
273 return -EINVAL;
274
40e2e092 275 if (id->match.addr != client->addr)
f523dd0d
GL
276 return -ENODEV;
277
278 id->ident = mt9m001->model;
279 id->revision = 0;
280
281 return 0;
282}
283
284#ifdef CONFIG_VIDEO_ADV_DEBUG
979ea1dd
GL
285static int mt9m001_g_register(struct v4l2_subdev *sd,
286 struct v4l2_dbg_register *reg)
f523dd0d 287{
979ea1dd 288 struct i2c_client *client = sd->priv;
f523dd0d 289
aecde8b5 290 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
f523dd0d
GL
291 return -EINVAL;
292
9538e1c2 293 if (reg->match.addr != client->addr)
f523dd0d
GL
294 return -ENODEV;
295
aecde8b5 296 reg->size = 2;
9538e1c2 297 reg->val = reg_read(client, reg->reg);
f523dd0d
GL
298
299 if (reg->val > 0xffff)
300 return -EIO;
301
302 return 0;
303}
304
979ea1dd
GL
305static int mt9m001_s_register(struct v4l2_subdev *sd,
306 struct v4l2_dbg_register *reg)
f523dd0d 307{
979ea1dd 308 struct i2c_client *client = sd->priv;
f523dd0d 309
aecde8b5 310 if (reg->match.type != V4L2_CHIP_MATCH_I2C_ADDR || reg->reg > 0xff)
f523dd0d
GL
311 return -EINVAL;
312
9538e1c2 313 if (reg->match.addr != client->addr)
f523dd0d
GL
314 return -ENODEV;
315
9538e1c2 316 if (reg_write(client, reg->reg, reg->val) < 0)
f523dd0d
GL
317 return -EIO;
318
319 return 0;
320}
321#endif
322
4407a463 323static const struct v4l2_queryctrl mt9m001_controls[] = {
f523dd0d
GL
324 {
325 .id = V4L2_CID_VFLIP,
326 .type = V4L2_CTRL_TYPE_BOOLEAN,
327 .name = "Flip Vertically",
328 .minimum = 0,
329 .maximum = 1,
330 .step = 1,
331 .default_value = 0,
332 }, {
333 .id = V4L2_CID_GAIN,
334 .type = V4L2_CTRL_TYPE_INTEGER,
335 .name = "Gain",
336 .minimum = 0,
337 .maximum = 127,
338 .step = 1,
339 .default_value = 64,
340 .flags = V4L2_CTRL_FLAG_SLIDER,
341 }, {
342 .id = V4L2_CID_EXPOSURE,
343 .type = V4L2_CTRL_TYPE_INTEGER,
344 .name = "Exposure",
345 .minimum = 1,
346 .maximum = 255,
347 .step = 1,
348 .default_value = 255,
349 .flags = V4L2_CTRL_FLAG_SLIDER,
350 }, {
351 .id = V4L2_CID_EXPOSURE_AUTO,
352 .type = V4L2_CTRL_TYPE_BOOLEAN,
353 .name = "Automatic Exposure",
354 .minimum = 0,
355 .maximum = 1,
356 .step = 1,
357 .default_value = 1,
358 }
359};
360
f523dd0d 361static struct soc_camera_ops mt9m001_ops = {
f523dd0d
GL
362 .init = mt9m001_init,
363 .release = mt9m001_release,
09e231b3 364 .set_crop = mt9m001_set_crop,
ad5f2e85
GL
365 .set_bus_param = mt9m001_set_bus_param,
366 .query_bus_param = mt9m001_query_bus_param,
f523dd0d
GL
367 .controls = mt9m001_controls,
368 .num_controls = ARRAY_SIZE(mt9m001_controls),
f523dd0d
GL
369};
370
979ea1dd 371static int mt9m001_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
f523dd0d 372{
979ea1dd
GL
373 struct i2c_client *client = sd->priv;
374 struct mt9m001 *mt9m001 = to_mt9m001(client);
f523dd0d
GL
375 int data;
376
377 switch (ctrl->id) {
378 case V4L2_CID_VFLIP:
9538e1c2 379 data = reg_read(client, MT9M001_READ_OPTIONS2);
f523dd0d
GL
380 if (data < 0)
381 return -EIO;
382 ctrl->value = !!(data & 0x8000);
383 break;
384 case V4L2_CID_EXPOSURE_AUTO:
385 ctrl->value = mt9m001->autoexposure;
386 break;
387 }
388 return 0;
389}
390
979ea1dd 391static int mt9m001_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
f523dd0d 392{
979ea1dd
GL
393 struct i2c_client *client = sd->priv;
394 struct mt9m001 *mt9m001 = to_mt9m001(client);
395 struct soc_camera_device *icd = client->dev.platform_data;
f523dd0d
GL
396 const struct v4l2_queryctrl *qctrl;
397 int data;
398
399 qctrl = soc_camera_find_qctrl(&mt9m001_ops, ctrl->id);
400
401 if (!qctrl)
402 return -EINVAL;
403
404 switch (ctrl->id) {
405 case V4L2_CID_VFLIP:
406 if (ctrl->value)
9538e1c2 407 data = reg_set(client, MT9M001_READ_OPTIONS2, 0x8000);
f523dd0d 408 else
9538e1c2 409 data = reg_clear(client, MT9M001_READ_OPTIONS2, 0x8000);
f523dd0d
GL
410 if (data < 0)
411 return -EIO;
412 break;
413 case V4L2_CID_GAIN:
414 if (ctrl->value > qctrl->maximum || ctrl->value < qctrl->minimum)
415 return -EINVAL;
416 /* See Datasheet Table 7, Gain settings. */
417 if (ctrl->value <= qctrl->default_value) {
418 /* Pack it into 0..1 step 0.125, register values 0..8 */
419 unsigned long range = qctrl->default_value - qctrl->minimum;
420 data = ((ctrl->value - qctrl->minimum) * 8 + range / 2) / range;
421
422 dev_dbg(&icd->dev, "Setting gain %d\n", data);
9538e1c2 423 data = reg_write(client, MT9M001_GLOBAL_GAIN, data);
f523dd0d
GL
424 if (data < 0)
425 return -EIO;
426 } else {
427 /* Pack it into 1.125..15 variable step, register values 9..67 */
428 /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
429 unsigned long range = qctrl->maximum - qctrl->default_value - 1;
430 unsigned long gain = ((ctrl->value - qctrl->default_value - 1) *
431 111 + range / 2) / range + 9;
432
433 if (gain <= 32)
434 data = gain;
435 else if (gain <= 64)
436 data = ((gain - 32) * 16 + 16) / 32 + 80;
437 else
438 data = ((gain - 64) * 7 + 28) / 56 + 96;
439
440 dev_dbg(&icd->dev, "Setting gain from %d to %d\n",
9538e1c2
GL
441 reg_read(client, MT9M001_GLOBAL_GAIN), data);
442 data = reg_write(client, MT9M001_GLOBAL_GAIN, data);
f523dd0d
GL
443 if (data < 0)
444 return -EIO;
445 }
446
447 /* Success */
448 icd->gain = ctrl->value;
449 break;
450 case V4L2_CID_EXPOSURE:
451 /* mt9m001 has maximum == default */
452 if (ctrl->value > qctrl->maximum || ctrl->value < qctrl->minimum)
453 return -EINVAL;
454 else {
455 unsigned long range = qctrl->maximum - qctrl->minimum;
456 unsigned long shutter = ((ctrl->value - qctrl->minimum) * 1048 +
457 range / 2) / range + 1;
458
459 dev_dbg(&icd->dev, "Setting shutter width from %d to %lu\n",
9538e1c2
GL
460 reg_read(client, MT9M001_SHUTTER_WIDTH), shutter);
461 if (reg_write(client, MT9M001_SHUTTER_WIDTH, shutter) < 0)
f523dd0d
GL
462 return -EIO;
463 icd->exposure = ctrl->value;
464 mt9m001->autoexposure = 0;
465 }
466 break;
467 case V4L2_CID_EXPOSURE_AUTO:
468 if (ctrl->value) {
469 const u16 vblank = 25;
a0705b07
GL
470 if (reg_write(client, MT9M001_SHUTTER_WIDTH,
471 icd->rect_current.height +
f523dd0d
GL
472 icd->y_skip_top + vblank) < 0)
473 return -EIO;
474 qctrl = soc_camera_find_qctrl(icd->ops, V4L2_CID_EXPOSURE);
a0705b07
GL
475 icd->exposure = (524 + (icd->rect_current.height +
476 icd->y_skip_top + vblank - 1) *
f523dd0d
GL
477 (qctrl->maximum - qctrl->minimum)) /
478 1048 + qctrl->minimum;
479 mt9m001->autoexposure = 1;
480 } else
481 mt9m001->autoexposure = 0;
482 break;
483 }
484 return 0;
485}
486
487/* Interface active, can use i2c. If it fails, it can indeed mean, that
488 * this wasn't our capture interface, so, we wait for the right one */
40e2e092
GL
489static int mt9m001_video_probe(struct soc_camera_device *icd,
490 struct i2c_client *client)
f523dd0d 491{
979ea1dd 492 struct mt9m001 *mt9m001 = to_mt9m001(client);
40e2e092 493 struct soc_camera_link *icl = to_soc_camera_link(icd);
f523dd0d 494 s32 data;
36034dc3 495 unsigned long flags;
f523dd0d
GL
496
497 /* We must have a parent by now. And it cannot be a wrong one.
498 * So this entire test is completely redundant. */
499 if (!icd->dev.parent ||
500 to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
501 return -ENODEV;
502
503 /* Enable the chip */
9538e1c2 504 data = reg_write(client, MT9M001_CHIP_ENABLE, 1);
f523dd0d
GL
505 dev_dbg(&icd->dev, "write: %d\n", data);
506
507 /* Read out the chip version register */
9538e1c2 508 data = reg_read(client, MT9M001_CHIP_VERSION);
f523dd0d
GL
509
510 /* must be 0x8411 or 0x8421 for colour sensor and 8431 for bw */
511 switch (data) {
512 case 0x8411:
513 case 0x8421:
514 mt9m001->model = V4L2_IDENT_MT9M001C12ST;
26f1b942 515 icd->formats = mt9m001_colour_formats;
f523dd0d
GL
516 break;
517 case 0x8431:
518 mt9m001->model = V4L2_IDENT_MT9M001C12STM;
26f1b942 519 icd->formats = mt9m001_monochrome_formats;
f523dd0d
GL
520 break;
521 default:
f523dd0d
GL
522 dev_err(&icd->dev,
523 "No MT9M001 chip detected, register read %x\n", data);
40e2e092 524 return -ENODEV;
f523dd0d
GL
525 }
526
36034dc3
SH
527 icd->num_formats = 0;
528
529 /*
530 * This is a 10bit sensor, so by default we only allow 10bit.
531 * The platform may support different bus widths due to
532 * different routing of the data lines.
533 */
534 if (icl->query_bus_param)
535 flags = icl->query_bus_param(icl);
536 else
537 flags = SOCAM_DATAWIDTH_10;
538
539 if (flags & SOCAM_DATAWIDTH_10)
540 icd->num_formats++;
541 else
542 icd->formats++;
543
544 if (flags & SOCAM_DATAWIDTH_8)
545 icd->num_formats++;
546
f523dd0d
GL
547 dev_info(&icd->dev, "Detected a MT9M001 chip ID %x (%s)\n", data,
548 data == 0x8431 ? "C12STM" : "C12ST");
549
f523dd0d 550 return 0;
f523dd0d
GL
551}
552
553static void mt9m001_video_remove(struct soc_camera_device *icd)
554{
40e2e092
GL
555 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
556 struct soc_camera_link *icl = to_soc_camera_link(icd);
f523dd0d 557
40e2e092 558 dev_dbg(&icd->dev, "Video %x removed: %p, %p\n", client->addr,
a85bdace 559 icd->dev.parent, icd->vdev);
594bb46d
GL
560 if (icl->free_bus)
561 icl->free_bus(icl);
f523dd0d
GL
562}
563
979ea1dd
GL
564static struct v4l2_subdev_core_ops mt9m001_subdev_core_ops = {
565 .g_ctrl = mt9m001_g_ctrl,
566 .s_ctrl = mt9m001_s_ctrl,
567 .g_chip_ident = mt9m001_g_chip_ident,
568#ifdef CONFIG_VIDEO_ADV_DEBUG
569 .g_register = mt9m001_g_register,
570 .s_register = mt9m001_s_register,
571#endif
572};
573
574static struct v4l2_subdev_video_ops mt9m001_subdev_video_ops = {
575 .s_stream = mt9m001_s_stream,
576 .s_fmt = mt9m001_s_fmt,
577 .try_fmt = mt9m001_try_fmt,
578};
579
580static struct v4l2_subdev_ops mt9m001_subdev_ops = {
581 .core = &mt9m001_subdev_core_ops,
582 .video = &mt9m001_subdev_video_ops,
583};
584
d2653e92
JD
585static int mt9m001_probe(struct i2c_client *client,
586 const struct i2c_device_id *did)
f523dd0d
GL
587{
588 struct mt9m001 *mt9m001;
40e2e092 589 struct soc_camera_device *icd = client->dev.platform_data;
f523dd0d 590 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
40e2e092 591 struct soc_camera_link *icl;
f523dd0d
GL
592 int ret;
593
40e2e092
GL
594 if (!icd) {
595 dev_err(&client->dev, "MT9M001: missing soc-camera data!\n");
596 return -EINVAL;
597 }
598
599 icl = to_soc_camera_link(icd);
f523dd0d
GL
600 if (!icl) {
601 dev_err(&client->dev, "MT9M001 driver needs platform data\n");
602 return -EINVAL;
603 }
604
605 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
606 dev_warn(&adapter->dev,
607 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
608 return -EIO;
609 }
610
611 mt9m001 = kzalloc(sizeof(struct mt9m001), GFP_KERNEL);
612 if (!mt9m001)
613 return -ENOMEM;
614
979ea1dd 615 v4l2_i2c_subdev_init(&mt9m001->subdev, client, &mt9m001_subdev_ops);
f523dd0d
GL
616
617 /* Second stage probe - when a capture adapter is there */
a0705b07
GL
618 icd->ops = &mt9m001_ops;
619 icd->rect_max.left = 20;
620 icd->rect_max.top = 12;
621 icd->rect_max.width = 1280;
622 icd->rect_max.height = 1024;
623 icd->rect_current.left = 20;
624 icd->rect_current.top = 12;
625 icd->width_min = 48;
626 icd->height_min = 32;
627 icd->y_skip_top = 1;
f523dd0d
GL
628 /* Simulated autoexposure. If enabled, we calculate shutter width
629 * ourselves in the driver based on vertical blanking and frame width */
630 mt9m001->autoexposure = 1;
631
40e2e092
GL
632 ret = mt9m001_video_probe(icd, client);
633 if (ret) {
634 icd->ops = NULL;
635 i2c_set_clientdata(client, NULL);
636 kfree(mt9m001);
637 }
f523dd0d 638
f523dd0d
GL
639 return ret;
640}
641
642static int mt9m001_remove(struct i2c_client *client)
643{
979ea1dd 644 struct mt9m001 *mt9m001 = to_mt9m001(client);
40e2e092 645 struct soc_camera_device *icd = client->dev.platform_data;
f523dd0d 646
40e2e092
GL
647 icd->ops = NULL;
648 mt9m001_video_remove(icd);
649 i2c_set_clientdata(client, NULL);
650 client->driver = NULL;
f523dd0d
GL
651 kfree(mt9m001);
652
653 return 0;
654}
655
3760f736
JD
656static const struct i2c_device_id mt9m001_id[] = {
657 { "mt9m001", 0 },
658 { }
659};
660MODULE_DEVICE_TABLE(i2c, mt9m001_id);
661
f523dd0d
GL
662static struct i2c_driver mt9m001_i2c_driver = {
663 .driver = {
664 .name = "mt9m001",
665 },
666 .probe = mt9m001_probe,
667 .remove = mt9m001_remove,
3760f736 668 .id_table = mt9m001_id,
f523dd0d
GL
669};
670
671static int __init mt9m001_mod_init(void)
672{
673 return i2c_add_driver(&mt9m001_i2c_driver);
674}
675
676static void __exit mt9m001_mod_exit(void)
677{
678 i2c_del_driver(&mt9m001_i2c_driver);
679}
680
681module_init(mt9m001_mod_init);
682module_exit(mt9m001_mod_exit);
683
684MODULE_DESCRIPTION("Micron MT9M001 Camera driver");
685MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
686MODULE_LICENSE("GPL");
This page took 0.2319 seconds and 5 git commands to generate.