1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for MT9M001 CMOS Image Sensor from Micron
9 #include <linux/delay.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/i2c.h>
12 #include <linux/log2.h>
13 #include <linux/module.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/slab.h>
16 #include <linux/videodev2.h>
18 #include <media/v4l2-ctrls.h>
19 #include <media/v4l2-device.h>
20 #include <media/v4l2-event.h>
21 #include <media/v4l2-subdev.h>
24 * mt9m001 i2c address 0x5d
27 /* mt9m001 selected register addresses */
28 #define MT9M001_CHIP_VERSION 0x00
29 #define MT9M001_ROW_START 0x01
30 #define MT9M001_COLUMN_START 0x02
31 #define MT9M001_WINDOW_HEIGHT 0x03
32 #define MT9M001_WINDOW_WIDTH 0x04
33 #define MT9M001_HORIZONTAL_BLANKING 0x05
34 #define MT9M001_VERTICAL_BLANKING 0x06
35 #define MT9M001_OUTPUT_CONTROL 0x07
36 #define MT9M001_SHUTTER_WIDTH 0x09
37 #define MT9M001_FRAME_RESTART 0x0b
38 #define MT9M001_SHUTTER_DELAY 0x0c
39 #define MT9M001_RESET 0x0d
40 #define MT9M001_READ_OPTIONS1 0x1e
41 #define MT9M001_READ_OPTIONS2 0x20
42 #define MT9M001_GLOBAL_GAIN 0x35
43 #define MT9M001_CHIP_ENABLE 0xF1
45 #define MT9M001_MAX_WIDTH 1280
46 #define MT9M001_MAX_HEIGHT 1024
47 #define MT9M001_MIN_WIDTH 48
48 #define MT9M001_MIN_HEIGHT 32
49 #define MT9M001_COLUMN_SKIP 20
50 #define MT9M001_ROW_SKIP 12
51 #define MT9M001_DEFAULT_HBLANK 9
52 #define MT9M001_DEFAULT_VBLANK 25
54 /* MT9M001 has only one fixed colorspace per pixelcode */
55 struct mt9m001_datafmt {
57 enum v4l2_colorspace colorspace;
60 /* Find a data format by a pixel code in an array */
61 static const struct mt9m001_datafmt *mt9m001_find_datafmt(
62 u32 code, const struct mt9m001_datafmt *fmt,
66 for (i = 0; i < n; i++)
67 if (fmt[i].code == code)
73 static const struct mt9m001_datafmt mt9m001_colour_fmts[] = {
75 * Order important: first natively supported,
76 * second supported with a GPIO extender
78 {MEDIA_BUS_FMT_SBGGR10_1X10, V4L2_COLORSPACE_SRGB},
79 {MEDIA_BUS_FMT_SBGGR8_1X8, V4L2_COLORSPACE_SRGB},
82 static const struct mt9m001_datafmt mt9m001_monochrome_fmts[] = {
83 /* Order important - see above */
84 {MEDIA_BUS_FMT_Y10_1X10, V4L2_COLORSPACE_JPEG},
85 {MEDIA_BUS_FMT_Y8_1X8, V4L2_COLORSPACE_JPEG},
89 struct v4l2_subdev subdev;
90 struct v4l2_ctrl_handler hdl;
92 /* exposure/auto-exposure cluster */
93 struct v4l2_ctrl *autoexposure;
94 struct v4l2_ctrl *exposure;
98 struct v4l2_rect rect; /* Sensor window */
100 struct gpio_desc *standby_gpio;
101 struct gpio_desc *reset_gpio;
102 const struct mt9m001_datafmt *fmt;
103 const struct mt9m001_datafmt *fmts;
105 unsigned int total_h;
106 unsigned short y_skip_top; /* Lines to skip at the top */
107 struct media_pad pad;
110 static struct mt9m001 *to_mt9m001(const struct i2c_client *client)
112 return container_of(i2c_get_clientdata(client), struct mt9m001, subdev);
115 static int reg_read(struct i2c_client *client, const u8 reg)
117 return i2c_smbus_read_word_swapped(client, reg);
120 static int reg_write(struct i2c_client *client, const u8 reg,
123 return i2c_smbus_write_word_swapped(client, reg, data);
126 static int reg_set(struct i2c_client *client, const u8 reg,
131 ret = reg_read(client, reg);
134 return reg_write(client, reg, ret | data);
137 static int reg_clear(struct i2c_client *client, const u8 reg,
142 ret = reg_read(client, reg);
145 return reg_write(client, reg, ret & ~data);
153 static int multi_reg_write(struct i2c_client *client,
154 const struct mt9m001_reg *regs, int num)
158 for (i = 0; i < num; i++) {
159 int ret = reg_write(client, regs[i].reg, regs[i].data);
168 static int mt9m001_init(struct i2c_client *client)
170 static const struct mt9m001_reg init_regs[] = {
172 * Issue a soft reset. This returns all registers to their
175 { MT9M001_RESET, 1 },
176 { MT9M001_RESET, 0 },
177 /* Disable chip, synchronous option update */
178 { MT9M001_OUTPUT_CONTROL, 0 }
181 dev_dbg(&client->dev, "%s\n", __func__);
183 return multi_reg_write(client, init_regs, ARRAY_SIZE(init_regs));
186 static int mt9m001_apply_selection(struct v4l2_subdev *sd)
188 struct i2c_client *client = v4l2_get_subdevdata(sd);
189 struct mt9m001 *mt9m001 = to_mt9m001(client);
190 const struct mt9m001_reg regs[] = {
191 /* Blanking and start values - default... */
192 { MT9M001_HORIZONTAL_BLANKING, MT9M001_DEFAULT_HBLANK },
193 { MT9M001_VERTICAL_BLANKING, MT9M001_DEFAULT_VBLANK },
195 * The caller provides a supported format, as verified per
196 * call to .set_fmt(FORMAT_TRY).
198 { MT9M001_COLUMN_START, mt9m001->rect.left },
199 { MT9M001_ROW_START, mt9m001->rect.top },
200 { MT9M001_WINDOW_WIDTH, mt9m001->rect.width - 1 },
201 { MT9M001_WINDOW_HEIGHT,
202 mt9m001->rect.height + mt9m001->y_skip_top - 1 },
205 return multi_reg_write(client, regs, ARRAY_SIZE(regs));
208 static int mt9m001_s_stream(struct v4l2_subdev *sd, int enable)
210 struct i2c_client *client = v4l2_get_subdevdata(sd);
211 struct mt9m001 *mt9m001 = to_mt9m001(client);
214 mutex_lock(&mt9m001->mutex);
216 if (mt9m001->streaming == enable)
220 ret = pm_runtime_resume_and_get(&client->dev);
224 ret = mt9m001_apply_selection(sd);
228 ret = __v4l2_ctrl_handler_setup(&mt9m001->hdl);
232 /* Switch to master "normal" mode */
233 ret = reg_write(client, MT9M001_OUTPUT_CONTROL, 2);
237 /* Switch to master stop sensor readout */
238 reg_write(client, MT9M001_OUTPUT_CONTROL, 0);
239 pm_runtime_put(&client->dev);
242 mt9m001->streaming = enable;
244 mutex_unlock(&mt9m001->mutex);
249 pm_runtime_put(&client->dev);
251 mutex_unlock(&mt9m001->mutex);
256 static int mt9m001_set_selection(struct v4l2_subdev *sd,
257 struct v4l2_subdev_state *sd_state,
258 struct v4l2_subdev_selection *sel)
260 struct i2c_client *client = v4l2_get_subdevdata(sd);
261 struct mt9m001 *mt9m001 = to_mt9m001(client);
262 struct v4l2_rect rect = sel->r;
264 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE ||
265 sel->target != V4L2_SEL_TGT_CROP)
268 if (mt9m001->fmts == mt9m001_colour_fmts)
270 * Bayer format - even number of rows for simplicity,
271 * but let the user play with the top row.
273 rect.height = ALIGN(rect.height, 2);
275 /* Datasheet requirement: see register description */
276 rect.width = ALIGN(rect.width, 2);
277 rect.left = ALIGN(rect.left, 2);
279 rect.width = clamp_t(u32, rect.width, MT9M001_MIN_WIDTH,
281 rect.left = clamp_t(u32, rect.left, MT9M001_COLUMN_SKIP,
282 MT9M001_COLUMN_SKIP + MT9M001_MAX_WIDTH - rect.width);
284 rect.height = clamp_t(u32, rect.height, MT9M001_MIN_HEIGHT,
286 rect.top = clamp_t(u32, rect.top, MT9M001_ROW_SKIP,
287 MT9M001_ROW_SKIP + MT9M001_MAX_HEIGHT - rect.height);
289 mt9m001->total_h = rect.height + mt9m001->y_skip_top +
290 MT9M001_DEFAULT_VBLANK;
292 mt9m001->rect = rect;
297 static int mt9m001_get_selection(struct v4l2_subdev *sd,
298 struct v4l2_subdev_state *sd_state,
299 struct v4l2_subdev_selection *sel)
301 struct i2c_client *client = v4l2_get_subdevdata(sd);
302 struct mt9m001 *mt9m001 = to_mt9m001(client);
304 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE)
307 switch (sel->target) {
308 case V4L2_SEL_TGT_CROP_BOUNDS:
309 sel->r.left = MT9M001_COLUMN_SKIP;
310 sel->r.top = MT9M001_ROW_SKIP;
311 sel->r.width = MT9M001_MAX_WIDTH;
312 sel->r.height = MT9M001_MAX_HEIGHT;
314 case V4L2_SEL_TGT_CROP:
315 sel->r = mt9m001->rect;
322 static int mt9m001_get_fmt(struct v4l2_subdev *sd,
323 struct v4l2_subdev_state *sd_state,
324 struct v4l2_subdev_format *format)
326 struct i2c_client *client = v4l2_get_subdevdata(sd);
327 struct mt9m001 *mt9m001 = to_mt9m001(client);
328 struct v4l2_mbus_framefmt *mf = &format->format;
333 if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
334 mf = v4l2_subdev_get_try_format(sd, sd_state, 0);
335 format->format = *mf;
339 mf->width = mt9m001->rect.width;
340 mf->height = mt9m001->rect.height;
341 mf->code = mt9m001->fmt->code;
342 mf->colorspace = mt9m001->fmt->colorspace;
343 mf->field = V4L2_FIELD_NONE;
344 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
345 mf->quantization = V4L2_QUANTIZATION_DEFAULT;
346 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT;
351 static int mt9m001_s_fmt(struct v4l2_subdev *sd,
352 const struct mt9m001_datafmt *fmt,
353 struct v4l2_mbus_framefmt *mf)
355 struct i2c_client *client = v4l2_get_subdevdata(sd);
356 struct mt9m001 *mt9m001 = to_mt9m001(client);
357 struct v4l2_subdev_selection sel = {
358 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
359 .target = V4L2_SEL_TGT_CROP,
360 .r.left = mt9m001->rect.left,
361 .r.top = mt9m001->rect.top,
362 .r.width = mf->width,
363 .r.height = mf->height,
367 /* No support for scaling so far, just crop. TODO: use skipping */
368 ret = mt9m001_set_selection(sd, NULL, &sel);
370 mf->width = mt9m001->rect.width;
371 mf->height = mt9m001->rect.height;
373 mf->colorspace = fmt->colorspace;
379 static int mt9m001_set_fmt(struct v4l2_subdev *sd,
380 struct v4l2_subdev_state *sd_state,
381 struct v4l2_subdev_format *format)
383 struct v4l2_mbus_framefmt *mf = &format->format;
384 struct i2c_client *client = v4l2_get_subdevdata(sd);
385 struct mt9m001 *mt9m001 = to_mt9m001(client);
386 const struct mt9m001_datafmt *fmt;
391 v4l_bound_align_image(&mf->width, MT9M001_MIN_WIDTH,
392 MT9M001_MAX_WIDTH, 1,
393 &mf->height, MT9M001_MIN_HEIGHT + mt9m001->y_skip_top,
394 MT9M001_MAX_HEIGHT + mt9m001->y_skip_top, 0, 0);
396 if (mt9m001->fmts == mt9m001_colour_fmts)
397 mf->height = ALIGN(mf->height - 1, 2);
399 fmt = mt9m001_find_datafmt(mf->code, mt9m001->fmts,
403 mf->code = fmt->code;
406 mf->colorspace = fmt->colorspace;
407 mf->field = V4L2_FIELD_NONE;
408 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
409 mf->quantization = V4L2_QUANTIZATION_DEFAULT;
410 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT;
412 if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE)
413 return mt9m001_s_fmt(sd, fmt, mf);
414 sd_state->pads->try_fmt = *mf;
418 #ifdef CONFIG_VIDEO_ADV_DEBUG
419 static int mt9m001_g_register(struct v4l2_subdev *sd,
420 struct v4l2_dbg_register *reg)
422 struct i2c_client *client = v4l2_get_subdevdata(sd);
428 reg->val = reg_read(client, reg->reg);
430 if (reg->val > 0xffff)
436 static int mt9m001_s_register(struct v4l2_subdev *sd,
437 const struct v4l2_dbg_register *reg)
439 struct i2c_client *client = v4l2_get_subdevdata(sd);
444 if (reg_write(client, reg->reg, reg->val) < 0)
451 static int mt9m001_power_on(struct device *dev)
453 struct i2c_client *client = to_i2c_client(dev);
454 struct mt9m001 *mt9m001 = to_mt9m001(client);
457 ret = clk_prepare_enable(mt9m001->clk);
461 if (mt9m001->standby_gpio) {
462 gpiod_set_value_cansleep(mt9m001->standby_gpio, 0);
463 usleep_range(1000, 2000);
466 if (mt9m001->reset_gpio) {
467 gpiod_set_value_cansleep(mt9m001->reset_gpio, 1);
468 usleep_range(1000, 2000);
469 gpiod_set_value_cansleep(mt9m001->reset_gpio, 0);
470 usleep_range(1000, 2000);
476 static int mt9m001_power_off(struct device *dev)
478 struct i2c_client *client = to_i2c_client(dev);
479 struct mt9m001 *mt9m001 = to_mt9m001(client);
481 gpiod_set_value_cansleep(mt9m001->standby_gpio, 1);
482 clk_disable_unprepare(mt9m001->clk);
487 static int mt9m001_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
489 struct mt9m001 *mt9m001 = container_of(ctrl->handler,
490 struct mt9m001, hdl);
494 case V4L2_CID_EXPOSURE_AUTO:
495 min = mt9m001->exposure->minimum;
496 max = mt9m001->exposure->maximum;
497 mt9m001->exposure->val =
498 (524 + (mt9m001->total_h - 1) * (max - min)) / 1048 + min;
504 static int mt9m001_s_ctrl(struct v4l2_ctrl *ctrl)
506 struct mt9m001 *mt9m001 = container_of(ctrl->handler,
507 struct mt9m001, hdl);
508 struct v4l2_subdev *sd = &mt9m001->subdev;
509 struct i2c_client *client = v4l2_get_subdevdata(sd);
510 struct v4l2_ctrl *exp = mt9m001->exposure;
514 if (!pm_runtime_get_if_in_use(&client->dev))
520 ret = reg_set(client, MT9M001_READ_OPTIONS2, 0x8000);
522 ret = reg_clear(client, MT9M001_READ_OPTIONS2, 0x8000);
526 /* See Datasheet Table 7, Gain settings. */
527 if (ctrl->val <= ctrl->default_value) {
528 /* Pack it into 0..1 step 0.125, register values 0..8 */
529 unsigned long range = ctrl->default_value - ctrl->minimum;
530 data = ((ctrl->val - (s32)ctrl->minimum) * 8 + range / 2) / range;
532 dev_dbg(&client->dev, "Setting gain %d\n", data);
533 ret = reg_write(client, MT9M001_GLOBAL_GAIN, data);
535 /* Pack it into 1.125..15 variable step, register values 9..67 */
536 /* We assume qctrl->maximum - qctrl->default_value - 1 > 0 */
537 unsigned long range = ctrl->maximum - ctrl->default_value - 1;
538 unsigned long gain = ((ctrl->val - (s32)ctrl->default_value - 1) *
539 111 + range / 2) / range + 9;
544 data = ((gain - 32) * 16 + 16) / 32 + 80;
546 data = ((gain - 64) * 7 + 28) / 56 + 96;
548 dev_dbg(&client->dev, "Setting gain from %d to %d\n",
549 reg_read(client, MT9M001_GLOBAL_GAIN), data);
550 ret = reg_write(client, MT9M001_GLOBAL_GAIN, data);
554 case V4L2_CID_EXPOSURE_AUTO:
555 if (ctrl->val == V4L2_EXPOSURE_MANUAL) {
556 unsigned long range = exp->maximum - exp->minimum;
557 unsigned long shutter = ((exp->val - (s32)exp->minimum) * 1048 +
558 range / 2) / range + 1;
560 dev_dbg(&client->dev,
561 "Setting shutter width from %d to %lu\n",
562 reg_read(client, MT9M001_SHUTTER_WIDTH), shutter);
563 ret = reg_write(client, MT9M001_SHUTTER_WIDTH, shutter);
565 mt9m001->total_h = mt9m001->rect.height +
566 mt9m001->y_skip_top + MT9M001_DEFAULT_VBLANK;
567 ret = reg_write(client, MT9M001_SHUTTER_WIDTH,
576 pm_runtime_put(&client->dev);
582 * Interface active, can use i2c. If it fails, it can indeed mean, that
583 * this wasn't our capture interface, so, we wait for the right one
585 static int mt9m001_video_probe(struct i2c_client *client)
587 struct mt9m001 *mt9m001 = to_mt9m001(client);
591 /* Enable the chip */
592 data = reg_write(client, MT9M001_CHIP_ENABLE, 1);
593 dev_dbg(&client->dev, "write: %d\n", data);
595 /* Read out the chip version register */
596 data = reg_read(client, MT9M001_CHIP_VERSION);
598 /* must be 0x8411 or 0x8421 for colour sensor and 8431 for bw */
602 mt9m001->fmts = mt9m001_colour_fmts;
603 mt9m001->num_fmts = ARRAY_SIZE(mt9m001_colour_fmts);
606 mt9m001->fmts = mt9m001_monochrome_fmts;
607 mt9m001->num_fmts = ARRAY_SIZE(mt9m001_monochrome_fmts);
610 dev_err(&client->dev,
611 "No MT9M001 chip detected, register read %x\n", data);
616 mt9m001->fmt = &mt9m001->fmts[0];
618 dev_info(&client->dev, "Detected a MT9M001 chip ID %x (%s)\n", data,
619 data == 0x8431 ? "C12STM" : "C12ST");
621 ret = mt9m001_init(client);
623 dev_err(&client->dev, "Failed to initialise the camera\n");
627 /* mt9m001_init() has reset the chip, returning registers to defaults */
628 ret = v4l2_ctrl_handler_setup(&mt9m001->hdl);
634 static int mt9m001_g_skip_top_lines(struct v4l2_subdev *sd, u32 *lines)
636 struct i2c_client *client = v4l2_get_subdevdata(sd);
637 struct mt9m001 *mt9m001 = to_mt9m001(client);
639 *lines = mt9m001->y_skip_top;
644 static const struct v4l2_ctrl_ops mt9m001_ctrl_ops = {
645 .g_volatile_ctrl = mt9m001_g_volatile_ctrl,
646 .s_ctrl = mt9m001_s_ctrl,
649 static const struct v4l2_subdev_core_ops mt9m001_subdev_core_ops = {
650 .log_status = v4l2_ctrl_subdev_log_status,
651 .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
652 .unsubscribe_event = v4l2_event_subdev_unsubscribe,
653 #ifdef CONFIG_VIDEO_ADV_DEBUG
654 .g_register = mt9m001_g_register,
655 .s_register = mt9m001_s_register,
659 static int mt9m001_init_cfg(struct v4l2_subdev *sd,
660 struct v4l2_subdev_state *sd_state)
662 struct i2c_client *client = v4l2_get_subdevdata(sd);
663 struct mt9m001 *mt9m001 = to_mt9m001(client);
664 struct v4l2_mbus_framefmt *try_fmt =
665 v4l2_subdev_get_try_format(sd, sd_state, 0);
667 try_fmt->width = MT9M001_MAX_WIDTH;
668 try_fmt->height = MT9M001_MAX_HEIGHT;
669 try_fmt->code = mt9m001->fmts[0].code;
670 try_fmt->colorspace = mt9m001->fmts[0].colorspace;
671 try_fmt->field = V4L2_FIELD_NONE;
672 try_fmt->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
673 try_fmt->quantization = V4L2_QUANTIZATION_DEFAULT;
674 try_fmt->xfer_func = V4L2_XFER_FUNC_DEFAULT;
679 static int mt9m001_enum_mbus_code(struct v4l2_subdev *sd,
680 struct v4l2_subdev_state *sd_state,
681 struct v4l2_subdev_mbus_code_enum *code)
683 struct i2c_client *client = v4l2_get_subdevdata(sd);
684 struct mt9m001 *mt9m001 = to_mt9m001(client);
686 if (code->pad || code->index >= mt9m001->num_fmts)
689 code->code = mt9m001->fmts[code->index].code;
693 static int mt9m001_get_mbus_config(struct v4l2_subdev *sd,
695 struct v4l2_mbus_config *cfg)
697 /* MT9M001 has all capture_format parameters fixed */
698 cfg->type = V4L2_MBUS_PARALLEL;
699 cfg->bus.parallel.flags = V4L2_MBUS_PCLK_SAMPLE_FALLING |
700 V4L2_MBUS_HSYNC_ACTIVE_HIGH |
701 V4L2_MBUS_VSYNC_ACTIVE_HIGH |
702 V4L2_MBUS_DATA_ACTIVE_HIGH |
708 static const struct v4l2_subdev_video_ops mt9m001_subdev_video_ops = {
709 .s_stream = mt9m001_s_stream,
712 static const struct v4l2_subdev_sensor_ops mt9m001_subdev_sensor_ops = {
713 .g_skip_top_lines = mt9m001_g_skip_top_lines,
716 static const struct v4l2_subdev_pad_ops mt9m001_subdev_pad_ops = {
717 .init_cfg = mt9m001_init_cfg,
718 .enum_mbus_code = mt9m001_enum_mbus_code,
719 .get_selection = mt9m001_get_selection,
720 .set_selection = mt9m001_set_selection,
721 .get_fmt = mt9m001_get_fmt,
722 .set_fmt = mt9m001_set_fmt,
723 .get_mbus_config = mt9m001_get_mbus_config,
726 static const struct v4l2_subdev_ops mt9m001_subdev_ops = {
727 .core = &mt9m001_subdev_core_ops,
728 .video = &mt9m001_subdev_video_ops,
729 .sensor = &mt9m001_subdev_sensor_ops,
730 .pad = &mt9m001_subdev_pad_ops,
733 static int mt9m001_probe(struct i2c_client *client)
735 struct mt9m001 *mt9m001;
736 struct i2c_adapter *adapter = client->adapter;
739 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) {
740 dev_warn(&adapter->dev,
741 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_WORD\n");
745 mt9m001 = devm_kzalloc(&client->dev, sizeof(*mt9m001), GFP_KERNEL);
749 mt9m001->clk = devm_clk_get(&client->dev, NULL);
750 if (IS_ERR(mt9m001->clk))
751 return PTR_ERR(mt9m001->clk);
753 mt9m001->standby_gpio = devm_gpiod_get_optional(&client->dev, "standby",
755 if (IS_ERR(mt9m001->standby_gpio))
756 return PTR_ERR(mt9m001->standby_gpio);
758 mt9m001->reset_gpio = devm_gpiod_get_optional(&client->dev, "reset",
760 if (IS_ERR(mt9m001->reset_gpio))
761 return PTR_ERR(mt9m001->reset_gpio);
763 v4l2_i2c_subdev_init(&mt9m001->subdev, client, &mt9m001_subdev_ops);
764 mt9m001->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE |
765 V4L2_SUBDEV_FL_HAS_EVENTS;
766 v4l2_ctrl_handler_init(&mt9m001->hdl, 4);
767 v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
768 V4L2_CID_VFLIP, 0, 1, 1, 0);
769 v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
770 V4L2_CID_GAIN, 0, 127, 1, 64);
771 mt9m001->exposure = v4l2_ctrl_new_std(&mt9m001->hdl, &mt9m001_ctrl_ops,
772 V4L2_CID_EXPOSURE, 1, 255, 1, 255);
774 * Simulated autoexposure. If enabled, we calculate shutter width
775 * ourselves in the driver based on vertical blanking and frame width
777 mt9m001->autoexposure = v4l2_ctrl_new_std_menu(&mt9m001->hdl,
778 &mt9m001_ctrl_ops, V4L2_CID_EXPOSURE_AUTO, 1, 0,
780 mt9m001->subdev.ctrl_handler = &mt9m001->hdl;
781 if (mt9m001->hdl.error)
782 return mt9m001->hdl.error;
784 v4l2_ctrl_auto_cluster(2, &mt9m001->autoexposure,
785 V4L2_EXPOSURE_MANUAL, true);
787 mutex_init(&mt9m001->mutex);
788 mt9m001->hdl.lock = &mt9m001->mutex;
790 /* Second stage probe - when a capture adapter is there */
791 mt9m001->y_skip_top = 0;
792 mt9m001->rect.left = MT9M001_COLUMN_SKIP;
793 mt9m001->rect.top = MT9M001_ROW_SKIP;
794 mt9m001->rect.width = MT9M001_MAX_WIDTH;
795 mt9m001->rect.height = MT9M001_MAX_HEIGHT;
797 ret = mt9m001_power_on(&client->dev);
801 pm_runtime_set_active(&client->dev);
802 pm_runtime_enable(&client->dev);
804 ret = mt9m001_video_probe(client);
806 goto error_power_off;
808 mt9m001->pad.flags = MEDIA_PAD_FL_SOURCE;
809 mt9m001->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
810 ret = media_entity_pads_init(&mt9m001->subdev.entity, 1, &mt9m001->pad);
812 goto error_power_off;
814 ret = v4l2_async_register_subdev(&mt9m001->subdev);
816 goto error_entity_cleanup;
818 pm_runtime_idle(&client->dev);
822 error_entity_cleanup:
823 media_entity_cleanup(&mt9m001->subdev.entity);
825 pm_runtime_disable(&client->dev);
826 pm_runtime_set_suspended(&client->dev);
827 mt9m001_power_off(&client->dev);
830 v4l2_ctrl_handler_free(&mt9m001->hdl);
831 mutex_destroy(&mt9m001->mutex);
836 static void mt9m001_remove(struct i2c_client *client)
838 struct mt9m001 *mt9m001 = to_mt9m001(client);
841 * As it increments RPM usage_count even on errors, we don't need to
842 * check the returned code here.
844 pm_runtime_get_sync(&client->dev);
846 v4l2_async_unregister_subdev(&mt9m001->subdev);
847 media_entity_cleanup(&mt9m001->subdev.entity);
849 pm_runtime_disable(&client->dev);
850 pm_runtime_set_suspended(&client->dev);
851 pm_runtime_put_noidle(&client->dev);
852 mt9m001_power_off(&client->dev);
854 v4l2_ctrl_handler_free(&mt9m001->hdl);
855 mutex_destroy(&mt9m001->mutex);
858 static const struct i2c_device_id mt9m001_id[] = {
862 MODULE_DEVICE_TABLE(i2c, mt9m001_id);
864 static const struct dev_pm_ops mt9m001_pm_ops = {
865 SET_RUNTIME_PM_OPS(mt9m001_power_off, mt9m001_power_on, NULL)
868 static const struct of_device_id mt9m001_of_match[] = {
869 { .compatible = "onnn,mt9m001", },
872 MODULE_DEVICE_TABLE(of, mt9m001_of_match);
874 static struct i2c_driver mt9m001_i2c_driver = {
877 .pm = &mt9m001_pm_ops,
878 .of_match_table = mt9m001_of_match,
880 .probe_new = mt9m001_probe,
881 .remove = mt9m001_remove,
882 .id_table = mt9m001_id,
885 module_i2c_driver(mt9m001_i2c_driver);
887 MODULE_DESCRIPTION("Micron MT9M001 Camera driver");
889 MODULE_LICENSE("GPL v2");