1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2017 Microchip Corporation.
5 #include <linux/delay.h>
6 #include <linux/gpio/consumer.h>
8 #include <linux/module.h>
9 #include <linux/pm_runtime.h>
10 #include <linux/regmap.h>
11 #include <media/v4l2-ctrls.h>
12 #include <media/v4l2-event.h>
13 #include <media/v4l2-image-sizes.h>
14 #include <media/v4l2-subdev.h>
16 #define REG_OUTSIZE_LSB 0x34
18 /* OV7740 register tables */
19 #define REG_GAIN 0x00 /* Gain lower 8 bits (rest in vref) */
20 #define REG_BGAIN 0x01 /* blue gain */
21 #define REG_RGAIN 0x02 /* red gain */
22 #define REG_GGAIN 0x03 /* green gain */
23 #define REG_REG04 0x04 /* analog setting, don't change*/
24 #define REG_BAVG 0x05 /* b channel average */
25 #define REG_GAVG 0x06 /* g channel average */
26 #define REG_RAVG 0x07 /* r channel average */
28 #define REG_REG0C 0x0C /* filp enable */
29 #define REG0C_IMG_FLIP 0x80
30 #define REG0C_IMG_MIRROR 0x40
32 #define REG_REG0E 0x0E /* blc line */
33 #define REG_HAEC 0x0F /* auto exposure cntrl */
34 #define REG_AEC 0x10 /* auto exposure cntrl */
36 #define REG_CLK 0x11 /* Clock control */
37 #define REG_REG55 0x55 /* Clock PLL DIV/PreDiv */
39 #define REG_REG12 0x12
41 #define REG_REG13 0x13 /* auto/manual AGC, AEC, Write Balance*/
42 #define REG13_AEC_EN 0x01
43 #define REG13_AGC_EN 0x04
45 #define REG_REG14 0x14
46 #define REG_CTRL15 0x15
47 #define REG15_GAIN_MSB 0x03
49 #define REG_REG16 0x16
51 #define REG_MIDH 0x1C /* manufacture id byte */
52 #define REG_MIDL 0x1D /* manufacture id byre */
53 #define REG_PIDH 0x0A /* Product ID MSB */
54 #define REG_PIDL 0x0B /* Product ID LSB */
56 #define REG_84 0x84 /* lots of stuff */
57 #define REG_REG38 0x38 /* sub-addr */
59 #define REG_AHSTART 0x17 /* Horiz start high bits */
60 #define REG_AHSIZE 0x18
61 #define REG_AVSTART 0x19 /* Vert start high bits */
62 #define REG_AVSIZE 0x1A
63 #define REG_PSHFT 0x1b /* Pixel delay after HREF */
65 #define REG_HOUTSIZE 0x31
66 #define REG_VOUTSIZE 0x32
67 #define REG_HVSIZEOFF 0x33
68 #define REG_REG34 0x34 /* DSP output size H/V LSB*/
70 #define REG_ISP_CTRL00 0x80
71 #define ISPCTRL00_AWB_EN 0x10
72 #define ISPCTRL00_AWB_GAIN_EN 0x04
74 #define REG_YGAIN 0xE2 /* ygain for contrast control */
76 #define REG_YBRIGHT 0xE3
77 #define REG_SGNSET 0xE4
78 #define SGNSET_YBRIGHT_MASK 0x08
85 struct v4l2_subdev subdev
;
86 #if defined(CONFIG_MEDIA_CONTROLLER)
89 struct v4l2_mbus_framefmt format
;
90 const struct ov7740_pixfmt
*fmt
; /* Current format */
91 const struct ov7740_framesize
*frmsize
;
92 struct regmap
*regmap
;
94 struct v4l2_ctrl_handler ctrl_handler
;
97 struct v4l2_ctrl
*auto_gain
;
98 struct v4l2_ctrl
*gain
;
101 struct v4l2_ctrl
*auto_wb
;
102 struct v4l2_ctrl
*blue_balance
;
103 struct v4l2_ctrl
*red_balance
;
106 struct v4l2_ctrl
*hflip
;
107 struct v4l2_ctrl
*vflip
;
110 /* exposure cluster */
111 struct v4l2_ctrl
*auto_exposure
;
112 struct v4l2_ctrl
*exposure
;
115 /* saturation/hue cluster */
116 struct v4l2_ctrl
*saturation
;
117 struct v4l2_ctrl
*hue
;
119 struct v4l2_ctrl
*brightness
;
120 struct v4l2_ctrl
*contrast
;
122 struct mutex mutex
; /* To serialize asynchronus callbacks */
123 bool streaming
; /* Streaming on/off */
125 struct gpio_desc
*resetb_gpio
;
126 struct gpio_desc
*pwdn_gpio
;
129 struct ov7740_pixfmt
{
131 enum v4l2_colorspace colorspace
;
132 const struct reg_sequence
*regs
;
136 struct ov7740_framesize
{
139 const struct reg_sequence
*regs
;
143 static const struct reg_sequence ov7740_vga
[] = {
159 {REG_HOUTSIZE
, 0xa0},
160 {REG_VOUTSIZE
, 0xf0},
162 {REG_OUTSIZE_LSB
, 0x0},
260 static const struct ov7740_framesize ov7740_framesizes
[] = {
263 .height
= VGA_HEIGHT
,
265 .reg_num
= ARRAY_SIZE(ov7740_vga
),
269 #ifdef CONFIG_VIDEO_ADV_DEBUG
270 static int ov7740_get_register(struct v4l2_subdev
*sd
,
271 struct v4l2_dbg_register
*reg
)
273 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
274 struct regmap
*regmap
= ov7740
->regmap
;
275 unsigned int val
= 0;
278 ret
= regmap_read(regmap
, reg
->reg
& 0xff, &val
);
285 static int ov7740_set_register(struct v4l2_subdev
*sd
,
286 const struct v4l2_dbg_register
*reg
)
288 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
289 struct regmap
*regmap
= ov7740
->regmap
;
291 regmap_write(regmap
, reg
->reg
& 0xff, reg
->val
& 0xff);
297 static int ov7740_set_power(struct ov7740
*ov7740
, int on
)
302 ret
= clk_prepare_enable(ov7740
->xvclk
);
306 if (ov7740
->pwdn_gpio
)
307 gpiod_direction_output(ov7740
->pwdn_gpio
, 0);
309 if (ov7740
->resetb_gpio
) {
310 gpiod_set_value(ov7740
->resetb_gpio
, 1);
311 usleep_range(500, 1000);
312 gpiod_set_value(ov7740
->resetb_gpio
, 0);
313 usleep_range(3000, 5000);
316 clk_disable_unprepare(ov7740
->xvclk
);
318 if (ov7740
->pwdn_gpio
)
319 gpiod_direction_output(ov7740
->pwdn_gpio
, 0);
325 static const struct v4l2_subdev_core_ops ov7740_subdev_core_ops
= {
326 .log_status
= v4l2_ctrl_subdev_log_status
,
327 #ifdef CONFIG_VIDEO_ADV_DEBUG
328 .g_register
= ov7740_get_register
,
329 .s_register
= ov7740_set_register
,
331 .subscribe_event
= v4l2_ctrl_subdev_subscribe_event
,
332 .unsubscribe_event
= v4l2_event_subdev_unsubscribe
,
335 static int ov7740_set_white_balance(struct ov7740
*ov7740
, int awb
)
337 struct regmap
*regmap
= ov7740
->regmap
;
341 ret
= regmap_read(regmap
, REG_ISP_CTRL00
, &value
);
344 value
|= (ISPCTRL00_AWB_EN
| ISPCTRL00_AWB_GAIN_EN
);
346 value
&= ~(ISPCTRL00_AWB_EN
| ISPCTRL00_AWB_GAIN_EN
);
347 ret
= regmap_write(regmap
, REG_ISP_CTRL00
, value
);
353 ret
= regmap_write(regmap
, REG_BGAIN
,
354 ov7740
->blue_balance
->val
);
358 ret
= regmap_write(regmap
, REG_RGAIN
, ov7740
->red_balance
->val
);
366 static int ov7740_set_saturation(struct regmap
*regmap
, int value
)
370 ret
= regmap_write(regmap
, REG_USAT
, (unsigned char)value
);
374 return regmap_write(regmap
, REG_VSAT
, (unsigned char)value
);
377 static int ov7740_set_gain(struct regmap
*regmap
, int value
)
381 ret
= regmap_write(regmap
, REG_GAIN
, value
& 0xff);
385 ret
= regmap_update_bits(regmap
, REG_CTRL15
,
386 REG15_GAIN_MSB
, (value
>> 8) & 0x3);
388 ret
= regmap_update_bits(regmap
, REG_REG13
, REG13_AGC_EN
, 0);
393 static int ov7740_set_autogain(struct regmap
*regmap
, int value
)
398 ret
= regmap_read(regmap
, REG_REG13
, ®
);
404 reg
&= ~REG13_AGC_EN
;
405 return regmap_write(regmap
, REG_REG13
, reg
);
408 static int ov7740_set_brightness(struct regmap
*regmap
, int value
)
410 /* Turn off AEC/AGC */
411 regmap_update_bits(regmap
, REG_REG13
, REG13_AEC_EN
, 0);
412 regmap_update_bits(regmap
, REG_REG13
, REG13_AGC_EN
, 0);
415 regmap_write(regmap
, REG_YBRIGHT
, (unsigned char)value
);
416 regmap_update_bits(regmap
, REG_SGNSET
, SGNSET_YBRIGHT_MASK
, 0);
418 regmap_write(regmap
, REG_YBRIGHT
, (unsigned char)(-value
));
419 regmap_update_bits(regmap
, REG_SGNSET
, SGNSET_YBRIGHT_MASK
, 1);
425 static int ov7740_set_contrast(struct regmap
*regmap
, int value
)
427 return regmap_write(regmap
, REG_YGAIN
, (unsigned char)value
);
430 static int ov7740_get_gain(struct ov7740
*ov7740
, struct v4l2_ctrl
*ctrl
)
432 struct regmap
*regmap
= ov7740
->regmap
;
433 unsigned int value0
, value1
;
439 ret
= regmap_read(regmap
, REG_GAIN
, &value0
);
442 ret
= regmap_read(regmap
, REG_CTRL15
, &value1
);
446 ov7740
->gain
->val
= (value1
<< 8) | (value0
& 0xff);
451 static int ov7740_get_exp(struct ov7740
*ov7740
, struct v4l2_ctrl
*ctrl
)
453 struct regmap
*regmap
= ov7740
->regmap
;
454 unsigned int value0
, value1
;
457 if (ctrl
->val
== V4L2_EXPOSURE_MANUAL
)
460 ret
= regmap_read(regmap
, REG_AEC
, &value0
);
463 ret
= regmap_read(regmap
, REG_HAEC
, &value1
);
467 ov7740
->exposure
->val
= (value1
<< 8) | (value0
& 0xff);
472 static int ov7740_set_exp(struct regmap
*regmap
, int value
)
476 /* Turn off AEC/AGC */
477 ret
= regmap_update_bits(regmap
, REG_REG13
,
478 REG13_AEC_EN
| REG13_AGC_EN
, 0);
482 ret
= regmap_write(regmap
, REG_AEC
, (unsigned char)value
);
486 return regmap_write(regmap
, REG_HAEC
, (unsigned char)(value
>> 8));
489 static int ov7740_set_autoexp(struct regmap
*regmap
,
490 enum v4l2_exposure_auto_type value
)
495 ret
= regmap_read(regmap
, REG_REG13
, ®
);
497 if (value
== V4L2_EXPOSURE_AUTO
)
498 reg
|= (REG13_AEC_EN
| REG13_AGC_EN
);
500 reg
&= ~(REG13_AEC_EN
| REG13_AGC_EN
);
501 ret
= regmap_write(regmap
, REG_REG13
, reg
);
508 static int ov7740_get_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
510 struct ov7740
*ov7740
= container_of(ctrl
->handler
,
511 struct ov7740
, ctrl_handler
);
515 case V4L2_CID_AUTOGAIN
:
516 ret
= ov7740_get_gain(ov7740
, ctrl
);
518 case V4L2_CID_EXPOSURE_AUTO
:
519 ret
= ov7740_get_exp(ov7740
, ctrl
);
528 static int ov7740_set_ctrl(struct v4l2_ctrl
*ctrl
)
530 struct ov7740
*ov7740
= container_of(ctrl
->handler
,
531 struct ov7740
, ctrl_handler
);
532 struct i2c_client
*client
= v4l2_get_subdevdata(&ov7740
->subdev
);
533 struct regmap
*regmap
= ov7740
->regmap
;
537 if (!pm_runtime_get_if_in_use(&client
->dev
))
541 case V4L2_CID_AUTO_WHITE_BALANCE
:
542 ret
= ov7740_set_white_balance(ov7740
, ctrl
->val
);
544 case V4L2_CID_SATURATION
:
545 ret
= ov7740_set_saturation(regmap
, ctrl
->val
);
547 case V4L2_CID_BRIGHTNESS
:
548 ret
= ov7740_set_brightness(regmap
, ctrl
->val
);
550 case V4L2_CID_CONTRAST
:
551 ret
= ov7740_set_contrast(regmap
, ctrl
->val
);
554 val
= ctrl
->val
? REG0C_IMG_FLIP
: 0x00;
555 ret
= regmap_update_bits(regmap
, REG_REG0C
,
556 REG0C_IMG_FLIP
, val
);
559 val
= ctrl
->val
? REG0C_IMG_MIRROR
: 0x00;
560 ret
= regmap_update_bits(regmap
, REG_REG0C
,
561 REG0C_IMG_MIRROR
, val
);
563 case V4L2_CID_AUTOGAIN
:
565 ret
= ov7740_set_gain(regmap
, ov7740
->gain
->val
);
567 ret
= ov7740_set_autogain(regmap
, ctrl
->val
);
570 case V4L2_CID_EXPOSURE_AUTO
:
571 if (ctrl
->val
== V4L2_EXPOSURE_MANUAL
)
572 ret
= ov7740_set_exp(regmap
, ov7740
->exposure
->val
);
574 ret
= ov7740_set_autoexp(regmap
, ctrl
->val
);
581 pm_runtime_put(&client
->dev
);
586 static const struct v4l2_ctrl_ops ov7740_ctrl_ops
= {
587 .g_volatile_ctrl
= ov7740_get_volatile_ctrl
,
588 .s_ctrl
= ov7740_set_ctrl
,
591 static int ov7740_start_streaming(struct ov7740
*ov7740
)
596 ret
= regmap_multi_reg_write(ov7740
->regmap
,
598 ov7740
->fmt
->reg_num
);
603 if (ov7740
->frmsize
) {
604 ret
= regmap_multi_reg_write(ov7740
->regmap
,
605 ov7740
->frmsize
->regs
,
606 ov7740
->frmsize
->reg_num
);
611 return __v4l2_ctrl_handler_setup(ov7740
->subdev
.ctrl_handler
);
614 static int ov7740_set_stream(struct v4l2_subdev
*sd
, int enable
)
616 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
617 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
620 mutex_lock(&ov7740
->mutex
);
621 if (ov7740
->streaming
== enable
) {
622 mutex_unlock(&ov7740
->mutex
);
627 ret
= pm_runtime_get_sync(&client
->dev
);
629 pm_runtime_put_noidle(&client
->dev
);
633 ret
= ov7740_start_streaming(ov7740
);
637 pm_runtime_put(&client
->dev
);
640 ov7740
->streaming
= enable
;
642 mutex_unlock(&ov7740
->mutex
);
646 pm_runtime_put(&client
->dev
);
648 mutex_unlock(&ov7740
->mutex
);
652 static int ov7740_g_frame_interval(struct v4l2_subdev
*sd
,
653 struct v4l2_subdev_frame_interval
*ival
)
655 struct v4l2_fract
*tpf
= &ival
->interval
;
659 tpf
->denominator
= 60;
664 static int ov7740_s_frame_interval(struct v4l2_subdev
*sd
,
665 struct v4l2_subdev_frame_interval
*ival
)
667 struct v4l2_fract
*tpf
= &ival
->interval
;
671 tpf
->denominator
= 60;
676 static const struct v4l2_subdev_video_ops ov7740_subdev_video_ops
= {
677 .s_stream
= ov7740_set_stream
,
678 .s_frame_interval
= ov7740_s_frame_interval
,
679 .g_frame_interval
= ov7740_g_frame_interval
,
682 static const struct reg_sequence ov7740_format_yuyv
[] = {
689 static const struct reg_sequence ov7740_format_bggr8
[] = {
695 static const struct ov7740_pixfmt ov7740_formats
[] = {
697 .mbus_code
= MEDIA_BUS_FMT_YUYV8_2X8
,
698 .colorspace
= V4L2_COLORSPACE_SRGB
,
699 .regs
= ov7740_format_yuyv
,
700 .reg_num
= ARRAY_SIZE(ov7740_format_yuyv
),
703 .mbus_code
= MEDIA_BUS_FMT_SBGGR8_1X8
,
704 .colorspace
= V4L2_COLORSPACE_SRGB
,
705 .regs
= ov7740_format_bggr8
,
706 .reg_num
= ARRAY_SIZE(ov7740_format_bggr8
),
709 #define N_OV7740_FMTS ARRAY_SIZE(ov7740_formats)
711 static int ov7740_enum_mbus_code(struct v4l2_subdev
*sd
,
712 struct v4l2_subdev_pad_config
*cfg
,
713 struct v4l2_subdev_mbus_code_enum
*code
)
715 if (code
->pad
|| code
->index
>= N_OV7740_FMTS
)
718 code
->code
= ov7740_formats
[code
->index
].mbus_code
;
723 static int ov7740_enum_frame_interval(struct v4l2_subdev
*sd
,
724 struct v4l2_subdev_pad_config
*cfg
,
725 struct v4l2_subdev_frame_interval_enum
*fie
)
733 if ((fie
->width
!= VGA_WIDTH
) || (fie
->height
!= VGA_HEIGHT
))
736 fie
->interval
.numerator
= 1;
737 fie
->interval
.denominator
= 60;
742 static int ov7740_enum_frame_size(struct v4l2_subdev
*sd
,
743 struct v4l2_subdev_pad_config
*cfg
,
744 struct v4l2_subdev_frame_size_enum
*fse
)
752 fse
->min_width
= fse
->max_width
= VGA_WIDTH
;
753 fse
->min_height
= fse
->max_height
= VGA_HEIGHT
;
758 static int ov7740_try_fmt_internal(struct v4l2_subdev
*sd
,
759 struct v4l2_mbus_framefmt
*fmt
,
760 const struct ov7740_pixfmt
**ret_fmt
,
761 const struct ov7740_framesize
**ret_frmsize
)
763 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
764 const struct ov7740_framesize
*fsize
= &ov7740_framesizes
[0];
767 for (index
= 0; index
< N_OV7740_FMTS
; index
++) {
768 if (ov7740_formats
[index
].mbus_code
== fmt
->code
)
771 if (index
>= N_OV7740_FMTS
) {
772 /* default to first format */
774 fmt
->code
= ov7740_formats
[0].mbus_code
;
777 *ret_fmt
= ov7740_formats
+ index
;
779 for (i
= 0; i
< ARRAY_SIZE(ov7740_framesizes
); i
++) {
780 if ((fsize
->width
>= fmt
->width
) &&
781 (fsize
->height
>= fmt
->height
)) {
782 fmt
->width
= fsize
->width
;
783 fmt
->height
= fsize
->height
;
789 if (i
>= ARRAY_SIZE(ov7740_framesizes
)) {
790 fsize
= &ov7740_framesizes
[0];
791 fmt
->width
= fsize
->width
;
792 fmt
->height
= fsize
->height
;
794 if (ret_frmsize
!= NULL
)
795 *ret_frmsize
= fsize
;
797 fmt
->field
= V4L2_FIELD_NONE
;
798 fmt
->colorspace
= ov7740_formats
[index
].colorspace
;
800 ov7740
->format
= *fmt
;
805 static int ov7740_set_fmt(struct v4l2_subdev
*sd
,
806 struct v4l2_subdev_pad_config
*cfg
,
807 struct v4l2_subdev_format
*format
)
809 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
810 const struct ov7740_pixfmt
*ovfmt
;
811 const struct ov7740_framesize
*fsize
;
812 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
813 struct v4l2_mbus_framefmt
*mbus_fmt
;
817 mutex_lock(&ov7740
->mutex
);
823 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
824 ret
= ov7740_try_fmt_internal(sd
, &format
->format
, NULL
, NULL
);
827 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
828 mbus_fmt
= v4l2_subdev_get_try_format(sd
, cfg
, format
->pad
);
829 *mbus_fmt
= format
->format
;
831 mutex_unlock(&ov7740
->mutex
);
835 ret
= ov7740_try_fmt_internal(sd
, &format
->format
, &ovfmt
, &fsize
);
840 ov7740
->frmsize
= fsize
;
842 mutex_unlock(&ov7740
->mutex
);
846 mutex_unlock(&ov7740
->mutex
);
850 static int ov7740_get_fmt(struct v4l2_subdev
*sd
,
851 struct v4l2_subdev_pad_config
*cfg
,
852 struct v4l2_subdev_format
*format
)
854 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
855 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
856 struct v4l2_mbus_framefmt
*mbus_fmt
;
860 mutex_lock(&ov7740
->mutex
);
861 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
862 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
863 mbus_fmt
= v4l2_subdev_get_try_format(sd
, cfg
, 0);
864 format
->format
= *mbus_fmt
;
870 format
->format
= ov7740
->format
;
872 mutex_unlock(&ov7740
->mutex
);
877 static const struct v4l2_subdev_pad_ops ov7740_subdev_pad_ops
= {
878 .enum_frame_interval
= ov7740_enum_frame_interval
,
879 .enum_frame_size
= ov7740_enum_frame_size
,
880 .enum_mbus_code
= ov7740_enum_mbus_code
,
881 .get_fmt
= ov7740_get_fmt
,
882 .set_fmt
= ov7740_set_fmt
,
885 static const struct v4l2_subdev_ops ov7740_subdev_ops
= {
886 .core
= &ov7740_subdev_core_ops
,
887 .video
= &ov7740_subdev_video_ops
,
888 .pad
= &ov7740_subdev_pad_ops
,
891 static void ov7740_get_default_format(struct v4l2_subdev
*sd
,
892 struct v4l2_mbus_framefmt
*format
)
894 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
896 format
->width
= ov7740
->frmsize
->width
;
897 format
->height
= ov7740
->frmsize
->height
;
898 format
->colorspace
= ov7740
->fmt
->colorspace
;
899 format
->code
= ov7740
->fmt
->mbus_code
;
900 format
->field
= V4L2_FIELD_NONE
;
903 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
904 static int ov7740_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
906 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
907 struct v4l2_mbus_framefmt
*format
=
908 v4l2_subdev_get_try_format(sd
, fh
->pad
, 0);
910 mutex_lock(&ov7740
->mutex
);
911 ov7740_get_default_format(sd
, format
);
912 mutex_unlock(&ov7740
->mutex
);
917 static const struct v4l2_subdev_internal_ops ov7740_subdev_internal_ops
= {
922 static int ov7740_probe_dt(struct i2c_client
*client
,
923 struct ov7740
*ov7740
)
925 ov7740
->resetb_gpio
= devm_gpiod_get_optional(&client
->dev
, "reset",
927 if (IS_ERR(ov7740
->resetb_gpio
)) {
928 dev_info(&client
->dev
, "can't get %s GPIO\n", "reset");
929 return PTR_ERR(ov7740
->resetb_gpio
);
932 ov7740
->pwdn_gpio
= devm_gpiod_get_optional(&client
->dev
, "powerdown",
934 if (IS_ERR(ov7740
->pwdn_gpio
)) {
935 dev_info(&client
->dev
, "can't get %s GPIO\n", "powerdown");
936 return PTR_ERR(ov7740
->pwdn_gpio
);
942 static int ov7740_detect(struct ov7740
*ov7740
)
944 struct regmap
*regmap
= ov7740
->regmap
;
945 unsigned int midh
, midl
, pidh
, pidl
;
948 ret
= regmap_read(regmap
, REG_MIDH
, &midh
);
954 ret
= regmap_read(regmap
, REG_MIDL
, &midl
);
960 ret
= regmap_read(regmap
, REG_PIDH
, &pidh
);
966 ret
= regmap_read(regmap
, REG_PIDL
, &pidl
);
969 if ((pidl
!= 0x40) && (pidl
!= 0x41) && (pidl
!= 0x42))
975 static int ov7740_init_controls(struct ov7740
*ov7740
)
977 struct i2c_client
*client
= v4l2_get_subdevdata(&ov7740
->subdev
);
978 struct v4l2_ctrl_handler
*ctrl_hdlr
= &ov7740
->ctrl_handler
;
981 ret
= v4l2_ctrl_handler_init(ctrl_hdlr
, 12);
985 ctrl_hdlr
->lock
= &ov7740
->mutex
;
986 ov7740
->auto_wb
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
987 V4L2_CID_AUTO_WHITE_BALANCE
,
989 ov7740
->blue_balance
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
990 V4L2_CID_BLUE_BALANCE
,
992 ov7740
->red_balance
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
993 V4L2_CID_RED_BALANCE
,
996 ov7740
->brightness
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
999 ov7740
->contrast
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1002 ov7740
->saturation
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1003 V4L2_CID_SATURATION
, 0, 256, 1, 0x80);
1004 ov7740
->hflip
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1005 V4L2_CID_HFLIP
, 0, 1, 1, 0);
1006 ov7740
->vflip
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1007 V4L2_CID_VFLIP
, 0, 1, 1, 0);
1009 ov7740
->gain
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1010 V4L2_CID_GAIN
, 0, 1023, 1, 500);
1012 ov7740
->auto_gain
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1013 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
1015 ov7740
->exposure
= v4l2_ctrl_new_std(ctrl_hdlr
, &ov7740_ctrl_ops
,
1016 V4L2_CID_EXPOSURE
, 0, 65535, 1, 500);
1018 ov7740
->auto_exposure
= v4l2_ctrl_new_std_menu(ctrl_hdlr
,
1020 V4L2_CID_EXPOSURE_AUTO
,
1021 V4L2_EXPOSURE_MANUAL
, 0,
1022 V4L2_EXPOSURE_AUTO
);
1024 v4l2_ctrl_auto_cluster(3, &ov7740
->auto_wb
, 0, false);
1025 v4l2_ctrl_auto_cluster(2, &ov7740
->auto_gain
, 0, true);
1026 v4l2_ctrl_auto_cluster(2, &ov7740
->auto_exposure
,
1027 V4L2_EXPOSURE_MANUAL
, true);
1029 if (ctrl_hdlr
->error
) {
1030 ret
= ctrl_hdlr
->error
;
1031 dev_err(&client
->dev
, "controls initialisation failed (%d)\n",
1036 ret
= v4l2_ctrl_handler_setup(ctrl_hdlr
);
1038 dev_err(&client
->dev
, "%s control init failed (%d)\n",
1043 ov7740
->subdev
.ctrl_handler
= ctrl_hdlr
;
1047 v4l2_ctrl_handler_free(ctrl_hdlr
);
1048 mutex_destroy(&ov7740
->mutex
);
1052 static void ov7740_free_controls(struct ov7740
*ov7740
)
1054 v4l2_ctrl_handler_free(ov7740
->subdev
.ctrl_handler
);
1055 mutex_destroy(&ov7740
->mutex
);
1058 #define OV7740_MAX_REGISTER 0xff
1059 static const struct regmap_config ov7740_regmap_config
= {
1062 .max_register
= OV7740_MAX_REGISTER
,
1065 static int ov7740_probe(struct i2c_client
*client
)
1067 struct ov7740
*ov7740
;
1068 struct v4l2_subdev
*sd
;
1071 if (!i2c_check_functionality(client
->adapter
,
1072 I2C_FUNC_SMBUS_BYTE_DATA
)) {
1073 dev_err(&client
->dev
,
1074 "OV7740: I2C-Adapter doesn't support SMBUS\n");
1078 ov7740
= devm_kzalloc(&client
->dev
, sizeof(*ov7740
), GFP_KERNEL
);
1082 ov7740
->xvclk
= devm_clk_get(&client
->dev
, "xvclk");
1083 if (IS_ERR(ov7740
->xvclk
)) {
1084 ret
= PTR_ERR(ov7740
->xvclk
);
1085 dev_err(&client
->dev
,
1086 "OV7740: fail to get xvclk: %d\n", ret
);
1090 ret
= ov7740_probe_dt(client
, ov7740
);
1094 ov7740
->regmap
= devm_regmap_init_i2c(client
, &ov7740_regmap_config
);
1095 if (IS_ERR(ov7740
->regmap
)) {
1096 ret
= PTR_ERR(ov7740
->regmap
);
1097 dev_err(&client
->dev
, "Failed to allocate register map: %d\n",
1102 sd
= &ov7740
->subdev
;
1103 client
->flags
|= I2C_CLIENT_SCCB
;
1104 v4l2_i2c_subdev_init(sd
, client
, &ov7740_subdev_ops
);
1106 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1107 sd
->internal_ops
= &ov7740_subdev_internal_ops
;
1108 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
| V4L2_SUBDEV_FL_HAS_EVENTS
;
1111 #if defined(CONFIG_MEDIA_CONTROLLER)
1112 ov7740
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1113 sd
->entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1114 ret
= media_entity_pads_init(&sd
->entity
, 1, &ov7740
->pad
);
1119 ret
= ov7740_set_power(ov7740
, 1);
1123 pm_runtime_set_active(&client
->dev
);
1124 pm_runtime_enable(&client
->dev
);
1126 ret
= ov7740_detect(ov7740
);
1130 mutex_init(&ov7740
->mutex
);
1132 ret
= ov7740_init_controls(ov7740
);
1134 goto error_init_controls
;
1136 v4l_info(client
, "chip found @ 0x%02x (%s)\n",
1137 client
->addr
<< 1, client
->adapter
->name
);
1139 ov7740
->fmt
= &ov7740_formats
[0];
1140 ov7740
->frmsize
= &ov7740_framesizes
[0];
1142 ov7740_get_default_format(sd
, &ov7740
->format
);
1144 ret
= v4l2_async_register_subdev(sd
);
1146 goto error_async_register
;
1148 pm_runtime_idle(&client
->dev
);
1152 error_async_register
:
1153 v4l2_ctrl_handler_free(ov7740
->subdev
.ctrl_handler
);
1154 error_init_controls
:
1155 ov7740_free_controls(ov7740
);
1157 pm_runtime_disable(&client
->dev
);
1158 pm_runtime_set_suspended(&client
->dev
);
1159 ov7740_set_power(ov7740
, 0);
1160 media_entity_cleanup(&ov7740
->subdev
.entity
);
1165 static int ov7740_remove(struct i2c_client
*client
)
1167 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1168 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
1170 mutex_destroy(&ov7740
->mutex
);
1171 v4l2_ctrl_handler_free(ov7740
->subdev
.ctrl_handler
);
1172 media_entity_cleanup(&ov7740
->subdev
.entity
);
1173 v4l2_async_unregister_subdev(sd
);
1174 ov7740_free_controls(ov7740
);
1176 pm_runtime_get_sync(&client
->dev
);
1177 pm_runtime_disable(&client
->dev
);
1178 pm_runtime_set_suspended(&client
->dev
);
1179 pm_runtime_put_noidle(&client
->dev
);
1181 ov7740_set_power(ov7740
, 0);
1185 static int __maybe_unused
ov7740_runtime_suspend(struct device
*dev
)
1187 struct i2c_client
*client
= to_i2c_client(dev
);
1188 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1189 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
1191 ov7740_set_power(ov7740
, 0);
1196 static int __maybe_unused
ov7740_runtime_resume(struct device
*dev
)
1198 struct i2c_client
*client
= to_i2c_client(dev
);
1199 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1200 struct ov7740
*ov7740
= container_of(sd
, struct ov7740
, subdev
);
1202 return ov7740_set_power(ov7740
, 1);
1205 static const struct i2c_device_id ov7740_id
[] = {
1209 MODULE_DEVICE_TABLE(i2c
, ov7740_id
);
1211 static const struct dev_pm_ops ov7740_pm_ops
= {
1212 SET_RUNTIME_PM_OPS(ov7740_runtime_suspend
, ov7740_runtime_resume
, NULL
)
1215 static const struct of_device_id ov7740_of_match
[] = {
1216 {.compatible
= "ovti,ov7740", },
1219 MODULE_DEVICE_TABLE(of
, ov7740_of_match
);
1221 static struct i2c_driver ov7740_i2c_driver
= {
1224 .pm
= &ov7740_pm_ops
,
1225 .of_match_table
= of_match_ptr(ov7740_of_match
),
1227 .probe_new
= ov7740_probe
,
1228 .remove
= ov7740_remove
,
1229 .id_table
= ov7740_id
,
1231 module_i2c_driver(ov7740_i2c_driver
);
1233 MODULE_DESCRIPTION("The V4L2 driver for Omnivision 7740 sensor");
1234 MODULE_AUTHOR("Songjun Wu <songjun.wu@atmel.com>");
1235 MODULE_LICENSE("GPL v2");