2 * Driver for the OV5645 camera sensor.
4 * Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
5 * Copyright (C) 2015 By Tech Design S.L. All Rights Reserved.
6 * Copyright (C) 2012-2013 Freescale Semiconductor, Inc. All Rights Reserved.
9 * - the OV5645 driver from QC msm-3.10 kernel on codeaurora.org:
10 * https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/tree/drivers/
11 * media/platform/msm/camera_v2/sensor/ov5645.c?h=LA.BR.1.2.4_rb1.41
12 * - the OV5640 driver posted on linux-media:
13 * https://www.mail-archive.com/linux-media%40vger.kernel.org/msg92671.html
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
28 #include <linux/bitops.h>
29 #include <linux/clk.h>
30 #include <linux/delay.h>
31 #include <linux/device.h>
32 #include <linux/gpio/consumer.h>
33 #include <linux/i2c.h>
34 #include <linux/init.h>
35 #include <linux/module.h>
37 #include <linux/of_graph.h>
38 #include <linux/regulator/consumer.h>
39 #include <linux/slab.h>
40 #include <linux/types.h>
41 #include <media/v4l2-ctrls.h>
42 #include <media/v4l2-fwnode.h>
43 #include <media/v4l2-subdev.h>
45 #define OV5645_VOLTAGE_ANALOG 2800000
46 #define OV5645_VOLTAGE_DIGITAL_CORE 1500000
47 #define OV5645_VOLTAGE_DIGITAL_IO 1800000
49 #define OV5645_SYSTEM_CTRL0 0x3008
50 #define OV5645_SYSTEM_CTRL0_START 0x02
51 #define OV5645_SYSTEM_CTRL0_STOP 0x42
52 #define OV5645_CHIP_ID_HIGH 0x300a
53 #define OV5645_CHIP_ID_HIGH_BYTE 0x56
54 #define OV5645_CHIP_ID_LOW 0x300b
55 #define OV5645_CHIP_ID_LOW_BYTE 0x45
56 #define OV5645_AWB_MANUAL_CONTROL 0x3406
57 #define OV5645_AWB_MANUAL_ENABLE BIT(0)
58 #define OV5645_AEC_PK_MANUAL 0x3503
59 #define OV5645_AEC_MANUAL_ENABLE BIT(0)
60 #define OV5645_AGC_MANUAL_ENABLE BIT(1)
61 #define OV5645_TIMING_TC_REG20 0x3820
62 #define OV5645_SENSOR_VFLIP BIT(1)
63 #define OV5645_ISP_VFLIP BIT(2)
64 #define OV5645_TIMING_TC_REG21 0x3821
65 #define OV5645_SENSOR_MIRROR BIT(1)
66 #define OV5645_PRE_ISP_TEST_SETTING_1 0x503d
67 #define OV5645_TEST_PATTERN_MASK 0x3
68 #define OV5645_SET_TEST_PATTERN(x) ((x) & OV5645_TEST_PATTERN_MASK)
69 #define OV5645_TEST_PATTERN_ENABLE BIT(7)
70 #define OV5645_SDE_SAT_U 0x5583
71 #define OV5645_SDE_SAT_V 0x5584
78 struct ov5645_mode_info
{
81 const struct reg_value
*data
;
88 struct i2c_client
*i2c_client
;
90 struct v4l2_subdev sd
;
92 struct v4l2_fwnode_endpoint ep
;
93 struct v4l2_mbus_framefmt fmt
;
94 struct v4l2_rect crop
;
97 struct regulator
*io_regulator
;
98 struct regulator
*core_regulator
;
99 struct regulator
*analog_regulator
;
101 const struct ov5645_mode_info
*current_mode
;
103 struct v4l2_ctrl_handler ctrls
;
104 struct v4l2_ctrl
*pixel_clock
;
105 struct v4l2_ctrl
*link_freq
;
107 /* Cached register values */
112 struct mutex power_lock
; /* lock to protect power state */
115 struct gpio_desc
*enable_gpio
;
116 struct gpio_desc
*rst_gpio
;
119 static inline struct ov5645
*to_ov5645(struct v4l2_subdev
*sd
)
121 return container_of(sd
, struct ov5645
, sd
);
124 static const struct reg_value ov5645_global_init_setting
[] = {
364 static const struct reg_value ov5645_setting_sxga
[] = {
412 static const struct reg_value ov5645_setting_1080p
[] = {
462 static const struct reg_value ov5645_setting_full
[] = {
512 static const s64 link_freq
[] = {
517 static const struct ov5645_mode_info ov5645_mode_info_data
[] = {
521 .data
= ov5645_setting_sxga
,
522 .data_size
= ARRAY_SIZE(ov5645_setting_sxga
),
523 .pixel_clock
= 112000000,
524 .link_freq
= 0 /* an index in link_freq[] */
529 .data
= ov5645_setting_1080p
,
530 .data_size
= ARRAY_SIZE(ov5645_setting_1080p
),
531 .pixel_clock
= 168000000,
532 .link_freq
= 1 /* an index in link_freq[] */
537 .data
= ov5645_setting_full
,
538 .data_size
= ARRAY_SIZE(ov5645_setting_full
),
539 .pixel_clock
= 168000000,
540 .link_freq
= 1 /* an index in link_freq[] */
544 static int ov5645_regulators_enable(struct ov5645
*ov5645
)
548 ret
= regulator_enable(ov5645
->io_regulator
);
550 dev_err(ov5645
->dev
, "set io voltage failed\n");
554 ret
= regulator_enable(ov5645
->analog_regulator
);
556 dev_err(ov5645
->dev
, "set analog voltage failed\n");
560 ret
= regulator_enable(ov5645
->core_regulator
);
562 dev_err(ov5645
->dev
, "set core voltage failed\n");
563 goto err_disable_analog
;
569 regulator_disable(ov5645
->analog_regulator
);
571 regulator_disable(ov5645
->io_regulator
);
576 static void ov5645_regulators_disable(struct ov5645
*ov5645
)
580 ret
= regulator_disable(ov5645
->core_regulator
);
582 dev_err(ov5645
->dev
, "core regulator disable failed\n");
584 ret
= regulator_disable(ov5645
->analog_regulator
);
586 dev_err(ov5645
->dev
, "analog regulator disable failed\n");
588 ret
= regulator_disable(ov5645
->io_regulator
);
590 dev_err(ov5645
->dev
, "io regulator disable failed\n");
593 static int ov5645_write_reg(struct ov5645
*ov5645
, u16 reg
, u8 val
)
598 regbuf
[0] = reg
>> 8;
599 regbuf
[1] = reg
& 0xff;
602 ret
= i2c_master_send(ov5645
->i2c_client
, regbuf
, 3);
604 dev_err(ov5645
->dev
, "%s: write reg error %d: reg=%x, val=%x\n",
605 __func__
, ret
, reg
, val
);
612 static int ov5645_read_reg(struct ov5645
*ov5645
, u16 reg
, u8
*val
)
617 regbuf
[0] = reg
>> 8;
618 regbuf
[1] = reg
& 0xff;
620 ret
= i2c_master_send(ov5645
->i2c_client
, regbuf
, 2);
622 dev_err(ov5645
->dev
, "%s: write reg error %d: reg=%x\n",
627 ret
= i2c_master_recv(ov5645
->i2c_client
, val
, 1);
629 dev_err(ov5645
->dev
, "%s: read reg error %d: reg=%x\n",
637 static int ov5645_set_aec_mode(struct ov5645
*ov5645
, u32 mode
)
639 u8 val
= ov5645
->aec_pk_manual
;
642 if (mode
== V4L2_EXPOSURE_AUTO
)
643 val
&= ~OV5645_AEC_MANUAL_ENABLE
;
644 else /* V4L2_EXPOSURE_MANUAL */
645 val
|= OV5645_AEC_MANUAL_ENABLE
;
647 ret
= ov5645_write_reg(ov5645
, OV5645_AEC_PK_MANUAL
, val
);
649 ov5645
->aec_pk_manual
= val
;
654 static int ov5645_set_agc_mode(struct ov5645
*ov5645
, u32 enable
)
656 u8 val
= ov5645
->aec_pk_manual
;
660 val
&= ~OV5645_AGC_MANUAL_ENABLE
;
662 val
|= OV5645_AGC_MANUAL_ENABLE
;
664 ret
= ov5645_write_reg(ov5645
, OV5645_AEC_PK_MANUAL
, val
);
666 ov5645
->aec_pk_manual
= val
;
671 static int ov5645_set_register_array(struct ov5645
*ov5645
,
672 const struct reg_value
*settings
,
673 unsigned int num_settings
)
678 for (i
= 0; i
< num_settings
; ++i
, ++settings
) {
679 ret
= ov5645_write_reg(ov5645
, settings
->reg
, settings
->val
);
687 static int ov5645_set_power_on(struct ov5645
*ov5645
)
691 ret
= ov5645_regulators_enable(ov5645
);
696 ret
= clk_prepare_enable(ov5645
->xclk
);
698 dev_err(ov5645
->dev
, "clk prepare enable failed\n");
699 ov5645_regulators_disable(ov5645
);
703 usleep_range(5000, 15000);
704 gpiod_set_value_cansleep(ov5645
->enable_gpio
, 1);
706 usleep_range(1000, 2000);
707 gpiod_set_value_cansleep(ov5645
->rst_gpio
, 0);
714 static void ov5645_set_power_off(struct ov5645
*ov5645
)
716 gpiod_set_value_cansleep(ov5645
->rst_gpio
, 1);
717 gpiod_set_value_cansleep(ov5645
->enable_gpio
, 0);
718 clk_disable_unprepare(ov5645
->xclk
);
719 ov5645_regulators_disable(ov5645
);
722 static int ov5645_s_power(struct v4l2_subdev
*sd
, int on
)
724 struct ov5645
*ov5645
= to_ov5645(sd
);
727 mutex_lock(&ov5645
->power_lock
);
729 /* If the power count is modified from 0 to != 0 or from != 0 to 0,
730 * update the power state.
732 if (ov5645
->power_count
== !on
) {
734 ret
= ov5645_set_power_on(ov5645
);
738 ret
= ov5645_set_register_array(ov5645
,
739 ov5645_global_init_setting
,
740 ARRAY_SIZE(ov5645_global_init_setting
));
743 "could not set init registers\n");
744 ov5645_set_power_off(ov5645
);
748 ret
= ov5645_write_reg(ov5645
, OV5645_SYSTEM_CTRL0
,
749 OV5645_SYSTEM_CTRL0_STOP
);
751 ov5645_set_power_off(ov5645
);
755 ov5645_set_power_off(ov5645
);
759 /* Update the power count. */
760 ov5645
->power_count
+= on
? 1 : -1;
761 WARN_ON(ov5645
->power_count
< 0);
764 mutex_unlock(&ov5645
->power_lock
);
769 static int ov5645_set_saturation(struct ov5645
*ov5645
, s32 value
)
771 u32 reg_value
= (value
* 0x10) + 0x40;
774 ret
= ov5645_write_reg(ov5645
, OV5645_SDE_SAT_U
, reg_value
);
778 return ov5645_write_reg(ov5645
, OV5645_SDE_SAT_V
, reg_value
);
781 static int ov5645_set_hflip(struct ov5645
*ov5645
, s32 value
)
783 u8 val
= ov5645
->timing_tc_reg21
;
787 val
&= ~(OV5645_SENSOR_MIRROR
);
789 val
|= (OV5645_SENSOR_MIRROR
);
791 ret
= ov5645_write_reg(ov5645
, OV5645_TIMING_TC_REG21
, val
);
793 ov5645
->timing_tc_reg21
= val
;
798 static int ov5645_set_vflip(struct ov5645
*ov5645
, s32 value
)
800 u8 val
= ov5645
->timing_tc_reg20
;
804 val
|= (OV5645_SENSOR_VFLIP
| OV5645_ISP_VFLIP
);
806 val
&= ~(OV5645_SENSOR_VFLIP
| OV5645_ISP_VFLIP
);
808 ret
= ov5645_write_reg(ov5645
, OV5645_TIMING_TC_REG20
, val
);
810 ov5645
->timing_tc_reg20
= val
;
815 static int ov5645_set_test_pattern(struct ov5645
*ov5645
, s32 value
)
820 val
= OV5645_SET_TEST_PATTERN(value
- 1);
821 val
|= OV5645_TEST_PATTERN_ENABLE
;
824 return ov5645_write_reg(ov5645
, OV5645_PRE_ISP_TEST_SETTING_1
, val
);
827 static const char * const ov5645_test_pattern_menu
[] = {
829 "Vertical Color Bars",
830 "Pseudo-Random Data",
835 static int ov5645_set_awb(struct ov5645
*ov5645
, s32 enable_auto
)
840 val
= OV5645_AWB_MANUAL_ENABLE
;
842 return ov5645_write_reg(ov5645
, OV5645_AWB_MANUAL_CONTROL
, val
);
845 static int ov5645_s_ctrl(struct v4l2_ctrl
*ctrl
)
847 struct ov5645
*ov5645
= container_of(ctrl
->handler
,
848 struct ov5645
, ctrls
);
851 mutex_lock(&ov5645
->power_lock
);
852 if (!ov5645
->power_count
) {
853 mutex_unlock(&ov5645
->power_lock
);
858 case V4L2_CID_SATURATION
:
859 ret
= ov5645_set_saturation(ov5645
, ctrl
->val
);
861 case V4L2_CID_AUTO_WHITE_BALANCE
:
862 ret
= ov5645_set_awb(ov5645
, ctrl
->val
);
864 case V4L2_CID_AUTOGAIN
:
865 ret
= ov5645_set_agc_mode(ov5645
, ctrl
->val
);
867 case V4L2_CID_EXPOSURE_AUTO
:
868 ret
= ov5645_set_aec_mode(ov5645
, ctrl
->val
);
870 case V4L2_CID_TEST_PATTERN
:
871 ret
= ov5645_set_test_pattern(ov5645
, ctrl
->val
);
874 ret
= ov5645_set_hflip(ov5645
, ctrl
->val
);
877 ret
= ov5645_set_vflip(ov5645
, ctrl
->val
);
884 mutex_unlock(&ov5645
->power_lock
);
889 static struct v4l2_ctrl_ops ov5645_ctrl_ops
= {
890 .s_ctrl
= ov5645_s_ctrl
,
893 static int ov5645_enum_mbus_code(struct v4l2_subdev
*sd
,
894 struct v4l2_subdev_pad_config
*cfg
,
895 struct v4l2_subdev_mbus_code_enum
*code
)
900 code
->code
= MEDIA_BUS_FMT_UYVY8_2X8
;
905 static int ov5645_enum_frame_size(struct v4l2_subdev
*subdev
,
906 struct v4l2_subdev_pad_config
*cfg
,
907 struct v4l2_subdev_frame_size_enum
*fse
)
909 if (fse
->code
!= MEDIA_BUS_FMT_UYVY8_2X8
)
912 if (fse
->index
>= ARRAY_SIZE(ov5645_mode_info_data
))
915 fse
->min_width
= ov5645_mode_info_data
[fse
->index
].width
;
916 fse
->max_width
= ov5645_mode_info_data
[fse
->index
].width
;
917 fse
->min_height
= ov5645_mode_info_data
[fse
->index
].height
;
918 fse
->max_height
= ov5645_mode_info_data
[fse
->index
].height
;
923 static struct v4l2_mbus_framefmt
*
924 __ov5645_get_pad_format(struct ov5645
*ov5645
,
925 struct v4l2_subdev_pad_config
*cfg
,
927 enum v4l2_subdev_format_whence which
)
930 case V4L2_SUBDEV_FORMAT_TRY
:
931 return v4l2_subdev_get_try_format(&ov5645
->sd
, cfg
, pad
);
932 case V4L2_SUBDEV_FORMAT_ACTIVE
:
939 static int ov5645_get_format(struct v4l2_subdev
*sd
,
940 struct v4l2_subdev_pad_config
*cfg
,
941 struct v4l2_subdev_format
*format
)
943 struct ov5645
*ov5645
= to_ov5645(sd
);
945 format
->format
= *__ov5645_get_pad_format(ov5645
, cfg
, format
->pad
,
950 static struct v4l2_rect
*
951 __ov5645_get_pad_crop(struct ov5645
*ov5645
, struct v4l2_subdev_pad_config
*cfg
,
952 unsigned int pad
, enum v4l2_subdev_format_whence which
)
955 case V4L2_SUBDEV_FORMAT_TRY
:
956 return v4l2_subdev_get_try_crop(&ov5645
->sd
, cfg
, pad
);
957 case V4L2_SUBDEV_FORMAT_ACTIVE
:
958 return &ov5645
->crop
;
964 static int ov5645_set_format(struct v4l2_subdev
*sd
,
965 struct v4l2_subdev_pad_config
*cfg
,
966 struct v4l2_subdev_format
*format
)
968 struct ov5645
*ov5645
= to_ov5645(sd
);
969 struct v4l2_mbus_framefmt
*__format
;
970 struct v4l2_rect
*__crop
;
971 const struct ov5645_mode_info
*new_mode
;
974 __crop
= __ov5645_get_pad_crop(ov5645
, cfg
, format
->pad
,
977 new_mode
= v4l2_find_nearest_size(ov5645_mode_info_data
,
978 ARRAY_SIZE(ov5645_mode_info_data
),
980 format
->format
.width
, format
->format
.height
);
982 __crop
->width
= new_mode
->width
;
983 __crop
->height
= new_mode
->height
;
985 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
) {
986 ret
= v4l2_ctrl_s_ctrl_int64(ov5645
->pixel_clock
,
987 new_mode
->pixel_clock
);
991 ret
= v4l2_ctrl_s_ctrl(ov5645
->link_freq
,
992 new_mode
->link_freq
);
996 ov5645
->current_mode
= new_mode
;
999 __format
= __ov5645_get_pad_format(ov5645
, cfg
, format
->pad
,
1001 __format
->width
= __crop
->width
;
1002 __format
->height
= __crop
->height
;
1003 __format
->code
= MEDIA_BUS_FMT_UYVY8_2X8
;
1004 __format
->field
= V4L2_FIELD_NONE
;
1005 __format
->colorspace
= V4L2_COLORSPACE_SRGB
;
1007 format
->format
= *__format
;
1012 static int ov5645_entity_init_cfg(struct v4l2_subdev
*subdev
,
1013 struct v4l2_subdev_pad_config
*cfg
)
1015 struct v4l2_subdev_format fmt
= { 0 };
1017 fmt
.which
= cfg
? V4L2_SUBDEV_FORMAT_TRY
: V4L2_SUBDEV_FORMAT_ACTIVE
;
1018 fmt
.format
.width
= 1920;
1019 fmt
.format
.height
= 1080;
1021 ov5645_set_format(subdev
, cfg
, &fmt
);
1026 static int ov5645_get_selection(struct v4l2_subdev
*sd
,
1027 struct v4l2_subdev_pad_config
*cfg
,
1028 struct v4l2_subdev_selection
*sel
)
1030 struct ov5645
*ov5645
= to_ov5645(sd
);
1032 if (sel
->target
!= V4L2_SEL_TGT_CROP
)
1035 sel
->r
= *__ov5645_get_pad_crop(ov5645
, cfg
, sel
->pad
,
1040 static int ov5645_s_stream(struct v4l2_subdev
*subdev
, int enable
)
1042 struct ov5645
*ov5645
= to_ov5645(subdev
);
1046 ret
= ov5645_set_register_array(ov5645
,
1047 ov5645
->current_mode
->data
,
1048 ov5645
->current_mode
->data_size
);
1050 dev_err(ov5645
->dev
, "could not set mode %dx%d\n",
1051 ov5645
->current_mode
->width
,
1052 ov5645
->current_mode
->height
);
1055 ret
= v4l2_ctrl_handler_setup(&ov5645
->ctrls
);
1057 dev_err(ov5645
->dev
, "could not sync v4l2 controls\n");
1060 ret
= ov5645_write_reg(ov5645
, OV5645_SYSTEM_CTRL0
,
1061 OV5645_SYSTEM_CTRL0_START
);
1065 ret
= ov5645_write_reg(ov5645
, OV5645_SYSTEM_CTRL0
,
1066 OV5645_SYSTEM_CTRL0_STOP
);
1074 static const struct v4l2_subdev_core_ops ov5645_core_ops
= {
1075 .s_power
= ov5645_s_power
,
1078 static const struct v4l2_subdev_video_ops ov5645_video_ops
= {
1079 .s_stream
= ov5645_s_stream
,
1082 static const struct v4l2_subdev_pad_ops ov5645_subdev_pad_ops
= {
1083 .init_cfg
= ov5645_entity_init_cfg
,
1084 .enum_mbus_code
= ov5645_enum_mbus_code
,
1085 .enum_frame_size
= ov5645_enum_frame_size
,
1086 .get_fmt
= ov5645_get_format
,
1087 .set_fmt
= ov5645_set_format
,
1088 .get_selection
= ov5645_get_selection
,
1091 static const struct v4l2_subdev_ops ov5645_subdev_ops
= {
1092 .core
= &ov5645_core_ops
,
1093 .video
= &ov5645_video_ops
,
1094 .pad
= &ov5645_subdev_pad_ops
,
1097 static int ov5645_probe(struct i2c_client
*client
,
1098 const struct i2c_device_id
*id
)
1100 struct device
*dev
= &client
->dev
;
1101 struct device_node
*endpoint
;
1102 struct ov5645
*ov5645
;
1103 u8 chip_id_high
, chip_id_low
;
1107 ov5645
= devm_kzalloc(dev
, sizeof(struct ov5645
), GFP_KERNEL
);
1111 ov5645
->i2c_client
= client
;
1114 endpoint
= of_graph_get_next_endpoint(dev
->of_node
, NULL
);
1116 dev_err(dev
, "endpoint node not found\n");
1120 ret
= v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint
),
1123 of_node_put(endpoint
);
1126 dev_err(dev
, "parsing endpoint node failed\n");
1130 if (ov5645
->ep
.bus_type
!= V4L2_MBUS_CSI2
) {
1131 dev_err(dev
, "invalid bus type, must be CSI2\n");
1135 /* get system clock (xclk) */
1136 ov5645
->xclk
= devm_clk_get(dev
, "xclk");
1137 if (IS_ERR(ov5645
->xclk
)) {
1138 dev_err(dev
, "could not get xclk");
1139 return PTR_ERR(ov5645
->xclk
);
1142 ret
= of_property_read_u32(dev
->of_node
, "clock-frequency", &xclk_freq
);
1144 dev_err(dev
, "could not get xclk frequency\n");
1148 /* external clock must be 24MHz, allow 1% tolerance */
1149 if (xclk_freq
< 23760000 || xclk_freq
> 24240000) {
1150 dev_err(dev
, "external clock frequency %u is not supported\n",
1155 ret
= clk_set_rate(ov5645
->xclk
, xclk_freq
);
1157 dev_err(dev
, "could not set xclk frequency\n");
1161 ov5645
->io_regulator
= devm_regulator_get(dev
, "vdddo");
1162 if (IS_ERR(ov5645
->io_regulator
)) {
1163 dev_err(dev
, "cannot get io regulator\n");
1164 return PTR_ERR(ov5645
->io_regulator
);
1167 ret
= regulator_set_voltage(ov5645
->io_regulator
,
1168 OV5645_VOLTAGE_DIGITAL_IO
,
1169 OV5645_VOLTAGE_DIGITAL_IO
);
1171 dev_err(dev
, "cannot set io voltage\n");
1175 ov5645
->core_regulator
= devm_regulator_get(dev
, "vddd");
1176 if (IS_ERR(ov5645
->core_regulator
)) {
1177 dev_err(dev
, "cannot get core regulator\n");
1178 return PTR_ERR(ov5645
->core_regulator
);
1181 ret
= regulator_set_voltage(ov5645
->core_regulator
,
1182 OV5645_VOLTAGE_DIGITAL_CORE
,
1183 OV5645_VOLTAGE_DIGITAL_CORE
);
1185 dev_err(dev
, "cannot set core voltage\n");
1189 ov5645
->analog_regulator
= devm_regulator_get(dev
, "vdda");
1190 if (IS_ERR(ov5645
->analog_regulator
)) {
1191 dev_err(dev
, "cannot get analog regulator\n");
1192 return PTR_ERR(ov5645
->analog_regulator
);
1195 ret
= regulator_set_voltage(ov5645
->analog_regulator
,
1196 OV5645_VOLTAGE_ANALOG
,
1197 OV5645_VOLTAGE_ANALOG
);
1199 dev_err(dev
, "cannot set analog voltage\n");
1203 ov5645
->enable_gpio
= devm_gpiod_get(dev
, "enable", GPIOD_OUT_HIGH
);
1204 if (IS_ERR(ov5645
->enable_gpio
)) {
1205 dev_err(dev
, "cannot get enable gpio\n");
1206 return PTR_ERR(ov5645
->enable_gpio
);
1209 ov5645
->rst_gpio
= devm_gpiod_get(dev
, "reset", GPIOD_OUT_HIGH
);
1210 if (IS_ERR(ov5645
->rst_gpio
)) {
1211 dev_err(dev
, "cannot get reset gpio\n");
1212 return PTR_ERR(ov5645
->rst_gpio
);
1215 mutex_init(&ov5645
->power_lock
);
1217 v4l2_ctrl_handler_init(&ov5645
->ctrls
, 9);
1218 v4l2_ctrl_new_std(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1219 V4L2_CID_SATURATION
, -4, 4, 1, 0);
1220 v4l2_ctrl_new_std(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1221 V4L2_CID_HFLIP
, 0, 1, 1, 0);
1222 v4l2_ctrl_new_std(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1223 V4L2_CID_VFLIP
, 0, 1, 1, 0);
1224 v4l2_ctrl_new_std(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1225 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
1226 v4l2_ctrl_new_std(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1227 V4L2_CID_AUTO_WHITE_BALANCE
, 0, 1, 1, 1);
1228 v4l2_ctrl_new_std_menu(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1229 V4L2_CID_EXPOSURE_AUTO
, V4L2_EXPOSURE_MANUAL
,
1230 0, V4L2_EXPOSURE_AUTO
);
1231 v4l2_ctrl_new_std_menu_items(&ov5645
->ctrls
, &ov5645_ctrl_ops
,
1232 V4L2_CID_TEST_PATTERN
,
1233 ARRAY_SIZE(ov5645_test_pattern_menu
) - 1,
1234 0, 0, ov5645_test_pattern_menu
);
1235 ov5645
->pixel_clock
= v4l2_ctrl_new_std(&ov5645
->ctrls
,
1237 V4L2_CID_PIXEL_RATE
,
1239 ov5645
->link_freq
= v4l2_ctrl_new_int_menu(&ov5645
->ctrls
,
1242 ARRAY_SIZE(link_freq
) - 1,
1244 if (ov5645
->link_freq
)
1245 ov5645
->link_freq
->flags
|= V4L2_CTRL_FLAG_READ_ONLY
;
1247 ov5645
->sd
.ctrl_handler
= &ov5645
->ctrls
;
1249 if (ov5645
->ctrls
.error
) {
1250 dev_err(dev
, "%s: control initialization error %d\n",
1251 __func__
, ov5645
->ctrls
.error
);
1252 ret
= ov5645
->ctrls
.error
;
1256 v4l2_i2c_subdev_init(&ov5645
->sd
, client
, &ov5645_subdev_ops
);
1257 ov5645
->sd
.flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1258 ov5645
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1259 ov5645
->sd
.dev
= &client
->dev
;
1260 ov5645
->sd
.entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1262 ret
= media_entity_pads_init(&ov5645
->sd
.entity
, 1, &ov5645
->pad
);
1264 dev_err(dev
, "could not register media entity\n");
1268 ret
= ov5645_s_power(&ov5645
->sd
, true);
1270 dev_err(dev
, "could not power up OV5645\n");
1274 ret
= ov5645_read_reg(ov5645
, OV5645_CHIP_ID_HIGH
, &chip_id_high
);
1275 if (ret
< 0 || chip_id_high
!= OV5645_CHIP_ID_HIGH_BYTE
) {
1276 dev_err(dev
, "could not read ID high\n");
1280 ret
= ov5645_read_reg(ov5645
, OV5645_CHIP_ID_LOW
, &chip_id_low
);
1281 if (ret
< 0 || chip_id_low
!= OV5645_CHIP_ID_LOW_BYTE
) {
1282 dev_err(dev
, "could not read ID low\n");
1287 dev_info(dev
, "OV5645 detected at address 0x%02x\n", client
->addr
);
1289 ret
= ov5645_read_reg(ov5645
, OV5645_AEC_PK_MANUAL
,
1290 &ov5645
->aec_pk_manual
);
1292 dev_err(dev
, "could not read AEC/AGC mode\n");
1297 ret
= ov5645_read_reg(ov5645
, OV5645_TIMING_TC_REG20
,
1298 &ov5645
->timing_tc_reg20
);
1300 dev_err(dev
, "could not read vflip value\n");
1305 ret
= ov5645_read_reg(ov5645
, OV5645_TIMING_TC_REG21
,
1306 &ov5645
->timing_tc_reg21
);
1308 dev_err(dev
, "could not read hflip value\n");
1313 ov5645_s_power(&ov5645
->sd
, false);
1315 ret
= v4l2_async_register_subdev(&ov5645
->sd
);
1317 dev_err(dev
, "could not register v4l2 device\n");
1321 ov5645_entity_init_cfg(&ov5645
->sd
, NULL
);
1326 ov5645_s_power(&ov5645
->sd
, false);
1328 media_entity_cleanup(&ov5645
->sd
.entity
);
1330 v4l2_ctrl_handler_free(&ov5645
->ctrls
);
1331 mutex_destroy(&ov5645
->power_lock
);
1336 static int ov5645_remove(struct i2c_client
*client
)
1338 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1339 struct ov5645
*ov5645
= to_ov5645(sd
);
1341 v4l2_async_unregister_subdev(&ov5645
->sd
);
1342 media_entity_cleanup(&ov5645
->sd
.entity
);
1343 v4l2_ctrl_handler_free(&ov5645
->ctrls
);
1344 mutex_destroy(&ov5645
->power_lock
);
1349 static const struct i2c_device_id ov5645_id
[] = {
1353 MODULE_DEVICE_TABLE(i2c
, ov5645_id
);
1355 static const struct of_device_id ov5645_of_match
[] = {
1356 { .compatible
= "ovti,ov5645" },
1359 MODULE_DEVICE_TABLE(of
, ov5645_of_match
);
1361 static struct i2c_driver ov5645_i2c_driver
= {
1363 .of_match_table
= of_match_ptr(ov5645_of_match
),
1366 .probe
= ov5645_probe
,
1367 .remove
= ov5645_remove
,
1368 .id_table
= ov5645_id
,
1371 module_i2c_driver(ov5645_i2c_driver
);
1373 MODULE_DESCRIPTION("Omnivision OV5645 Camera Driver");
1374 MODULE_AUTHOR("Todor Tomov <todor.tomov@linaro.org>");
1375 MODULE_LICENSE("GPL v2");