2 * Omnivision OV2659 CMOS Image Sensor driver
4 * Copyright (C) 2015 Texas Instruments, Inc.
6 * Benoit Parrot <bparrot@ti.com>
7 * Lad, Prabhakar <prabhakar.csengg@gmail.com>
9 * This program is free software; you may redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 #include <linux/clk.h>
24 #include <linux/delay.h>
25 #include <linux/err.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
29 #include <linux/i2c.h>
30 #include <linux/kernel.h>
31 #include <linux/media.h>
32 #include <linux/module.h>
34 #include <linux/of_graph.h>
35 #include <linux/slab.h>
36 #include <linux/uaccess.h>
37 #include <linux/videodev2.h>
39 #include <media/media-entity.h>
40 #include <media/i2c/ov2659.h>
41 #include <media/v4l2-common.h>
42 #include <media/v4l2-ctrls.h>
43 #include <media/v4l2-device.h>
44 #include <media/v4l2-event.h>
45 #include <media/v4l2-fwnode.h>
46 #include <media/v4l2-image-sizes.h>
47 #include <media/v4l2-mediabus.h>
48 #include <media/v4l2-subdev.h>
50 #define DRIVER_NAME "ov2659"
53 * OV2659 register definitions
55 #define REG_SOFTWARE_STANDBY 0x0100
56 #define REG_SOFTWARE_RESET 0x0103
57 #define REG_IO_CTRL00 0x3000
58 #define REG_IO_CTRL01 0x3001
59 #define REG_IO_CTRL02 0x3002
60 #define REG_OUTPUT_VALUE00 0x3008
61 #define REG_OUTPUT_VALUE01 0x3009
62 #define REG_OUTPUT_VALUE02 0x300d
63 #define REG_OUTPUT_SELECT00 0x300e
64 #define REG_OUTPUT_SELECT01 0x300f
65 #define REG_OUTPUT_SELECT02 0x3010
66 #define REG_OUTPUT_DRIVE 0x3011
67 #define REG_INPUT_READOUT00 0x302d
68 #define REG_INPUT_READOUT01 0x302e
69 #define REG_INPUT_READOUT02 0x302f
71 #define REG_SC_PLL_CTRL0 0x3003
72 #define REG_SC_PLL_CTRL1 0x3004
73 #define REG_SC_PLL_CTRL2 0x3005
74 #define REG_SC_PLL_CTRL3 0x3006
75 #define REG_SC_CHIP_ID_H 0x300a
76 #define REG_SC_CHIP_ID_L 0x300b
77 #define REG_SC_PWC 0x3014
78 #define REG_SC_CLKRST0 0x301a
79 #define REG_SC_CLKRST1 0x301b
80 #define REG_SC_CLKRST2 0x301c
81 #define REG_SC_CLKRST3 0x301d
82 #define REG_SC_SUB_ID 0x302a
83 #define REG_SC_SCCB_ID 0x302b
85 #define REG_GROUP_ADDRESS_00 0x3200
86 #define REG_GROUP_ADDRESS_01 0x3201
87 #define REG_GROUP_ADDRESS_02 0x3202
88 #define REG_GROUP_ADDRESS_03 0x3203
89 #define REG_GROUP_ACCESS 0x3208
91 #define REG_AWB_R_GAIN_H 0x3400
92 #define REG_AWB_R_GAIN_L 0x3401
93 #define REG_AWB_G_GAIN_H 0x3402
94 #define REG_AWB_G_GAIN_L 0x3403
95 #define REG_AWB_B_GAIN_H 0x3404
96 #define REG_AWB_B_GAIN_L 0x3405
97 #define REG_AWB_MANUAL_CONTROL 0x3406
99 #define REG_TIMING_HS_H 0x3800
100 #define REG_TIMING_HS_L 0x3801
101 #define REG_TIMING_VS_H 0x3802
102 #define REG_TIMING_VS_L 0x3803
103 #define REG_TIMING_HW_H 0x3804
104 #define REG_TIMING_HW_L 0x3805
105 #define REG_TIMING_VH_H 0x3806
106 #define REG_TIMING_VH_L 0x3807
107 #define REG_TIMING_DVPHO_H 0x3808
108 #define REG_TIMING_DVPHO_L 0x3809
109 #define REG_TIMING_DVPVO_H 0x380a
110 #define REG_TIMING_DVPVO_L 0x380b
111 #define REG_TIMING_HTS_H 0x380c
112 #define REG_TIMING_HTS_L 0x380d
113 #define REG_TIMING_VTS_H 0x380e
114 #define REG_TIMING_VTS_L 0x380f
115 #define REG_TIMING_HOFFS_H 0x3810
116 #define REG_TIMING_HOFFS_L 0x3811
117 #define REG_TIMING_VOFFS_H 0x3812
118 #define REG_TIMING_VOFFS_L 0x3813
119 #define REG_TIMING_XINC 0x3814
120 #define REG_TIMING_YINC 0x3815
121 #define REG_TIMING_VERT_FORMAT 0x3820
122 #define REG_TIMING_HORIZ_FORMAT 0x3821
124 #define REG_FORMAT_CTRL00 0x4300
126 #define REG_VFIFO_READ_START_H 0x4608
127 #define REG_VFIFO_READ_START_L 0x4609
129 #define REG_DVP_CTRL02 0x4708
131 #define REG_ISP_CTRL00 0x5000
132 #define REG_ISP_CTRL01 0x5001
133 #define REG_ISP_CTRL02 0x5002
135 #define REG_LENC_RED_X0_H 0x500c
136 #define REG_LENC_RED_X0_L 0x500d
137 #define REG_LENC_RED_Y0_H 0x500e
138 #define REG_LENC_RED_Y0_L 0x500f
139 #define REG_LENC_RED_A1 0x5010
140 #define REG_LENC_RED_B1 0x5011
141 #define REG_LENC_RED_A2_B2 0x5012
142 #define REG_LENC_GREEN_X0_H 0x5013
143 #define REG_LENC_GREEN_X0_L 0x5014
144 #define REG_LENC_GREEN_Y0_H 0x5015
145 #define REG_LENC_GREEN_Y0_L 0x5016
146 #define REG_LENC_GREEN_A1 0x5017
147 #define REG_LENC_GREEN_B1 0x5018
148 #define REG_LENC_GREEN_A2_B2 0x5019
149 #define REG_LENC_BLUE_X0_H 0x501a
150 #define REG_LENC_BLUE_X0_L 0x501b
151 #define REG_LENC_BLUE_Y0_H 0x501c
152 #define REG_LENC_BLUE_Y0_L 0x501d
153 #define REG_LENC_BLUE_A1 0x501e
154 #define REG_LENC_BLUE_B1 0x501f
155 #define REG_LENC_BLUE_A2_B2 0x5020
157 #define REG_AWB_CTRL00 0x5035
158 #define REG_AWB_CTRL01 0x5036
159 #define REG_AWB_CTRL02 0x5037
160 #define REG_AWB_CTRL03 0x5038
161 #define REG_AWB_CTRL04 0x5039
162 #define REG_AWB_LOCAL_LIMIT 0x503a
163 #define REG_AWB_CTRL12 0x5049
164 #define REG_AWB_CTRL13 0x504a
165 #define REG_AWB_CTRL14 0x504b
167 #define REG_SHARPENMT_THRESH1 0x5064
168 #define REG_SHARPENMT_THRESH2 0x5065
169 #define REG_SHARPENMT_OFFSET1 0x5066
170 #define REG_SHARPENMT_OFFSET2 0x5067
171 #define REG_DENOISE_THRESH1 0x5068
172 #define REG_DENOISE_THRESH2 0x5069
173 #define REG_DENOISE_OFFSET1 0x506a
174 #define REG_DENOISE_OFFSET2 0x506b
175 #define REG_SHARPEN_THRESH1 0x506c
176 #define REG_SHARPEN_THRESH2 0x506d
177 #define REG_CIP_CTRL00 0x506e
178 #define REG_CIP_CTRL01 0x506f
180 #define REG_CMX_SIGN 0x5079
181 #define REG_CMX_MISC_CTRL 0x507a
183 #define REG_PRE_ISP_CTRL00 0x50a0
184 #define TEST_PATTERN_ENABLE BIT(7)
185 #define VERTICAL_COLOR_BAR_MASK 0x53
187 #define REG_NULL 0x0000 /* Array end token */
189 #define OV265X_ID(_msb, _lsb) ((_msb) << 8 | (_lsb))
190 #define OV2659_ID 0x2656
192 struct sensor_register
{
197 struct ov2659_framesize
{
201 const struct sensor_register
*regs
;
204 struct ov2659_pll_ctrl
{
210 struct ov2659_pixfmt
{
212 /* Output format Register Value (REG_FORMAT_CTRL00) */
213 struct sensor_register
*format_ctrl_regs
;
216 struct pll_ctrl_reg
{
222 struct v4l2_subdev sd
;
223 struct media_pad pad
;
224 struct v4l2_mbus_framefmt format
;
225 unsigned int xvclk_frequency
;
226 const struct ov2659_platform_data
*pdata
;
228 struct i2c_client
*client
;
229 struct v4l2_ctrl_handler ctrls
;
230 struct v4l2_ctrl
*link_frequency
;
231 const struct ov2659_framesize
*frame_size
;
232 struct sensor_register
*format_ctrl_regs
;
233 struct ov2659_pll_ctrl pll
;
237 static const struct sensor_register ov2659_init_regs
[] = {
238 { REG_IO_CTRL00
, 0x03 },
239 { REG_IO_CTRL01
, 0xff },
240 { REG_IO_CTRL02
, 0xe0 },
248 { REG_TIMING_HS_H
, 0x00 },
249 { REG_TIMING_HS_L
, 0x00 },
250 { REG_TIMING_VS_H
, 0x00 },
251 { REG_TIMING_VS_L
, 0x00 },
252 { REG_TIMING_HW_H
, 0x06 },
253 { REG_TIMING_HW_L
, 0x5f },
254 { REG_TIMING_VH_H
, 0x04 },
255 { REG_TIMING_VH_L
, 0xb7 },
256 { REG_TIMING_DVPHO_H
, 0x03 },
257 { REG_TIMING_DVPHO_L
, 0x20 },
258 { REG_TIMING_DVPVO_H
, 0x02 },
259 { REG_TIMING_DVPVO_L
, 0x58 },
260 { REG_TIMING_HTS_H
, 0x05 },
261 { REG_TIMING_HTS_L
, 0x14 },
262 { REG_TIMING_VTS_H
, 0x02 },
263 { REG_TIMING_VTS_L
, 0x68 },
264 { REG_TIMING_HOFFS_L
, 0x08 },
265 { REG_TIMING_VOFFS_L
, 0x02 },
266 { REG_TIMING_XINC
, 0x31 },
267 { REG_TIMING_YINC
, 0x31 },
278 { REG_DVP_CTRL02
, 0x01 },
286 { REG_TIMING_VERT_FORMAT
, 0x81 },
287 { REG_TIMING_HORIZ_FORMAT
, 0x01 },
289 { REG_VFIFO_READ_START_H
, 0x00 },
290 { REG_VFIFO_READ_START_L
, 0x80 },
291 { REG_FORMAT_CTRL00
, 0x30 },
293 { REG_ISP_CTRL00
, 0xfb },
294 { REG_ISP_CTRL01
, 0x1f },
295 { REG_ISP_CTRL02
, 0x00 },
321 { REG_CMX_SIGN
, 0x98 },
322 { REG_CMX_MISC_CTRL
, 0x21 },
323 { REG_AWB_CTRL00
, 0x6a },
324 { REG_AWB_CTRL01
, 0x11 },
325 { REG_AWB_CTRL02
, 0x92 },
326 { REG_AWB_CTRL03
, 0x21 },
327 { REG_AWB_CTRL04
, 0xe1 },
328 { REG_AWB_LOCAL_LIMIT
, 0x01 },
342 { REG_AWB_CTRL12
, 0x70 },
343 { REG_AWB_CTRL13
, 0xf0 },
344 { REG_AWB_CTRL14
, 0xf0 },
345 { REG_LENC_RED_X0_H
, 0x03 },
346 { REG_LENC_RED_X0_L
, 0x20 },
347 { REG_LENC_RED_Y0_H
, 0x02 },
348 { REG_LENC_RED_Y0_L
, 0x5c },
349 { REG_LENC_RED_A1
, 0x48 },
350 { REG_LENC_RED_B1
, 0x00 },
351 { REG_LENC_RED_A2_B2
, 0x66 },
352 { REG_LENC_GREEN_X0_H
, 0x03 },
353 { REG_LENC_GREEN_X0_L
, 0x30 },
354 { REG_LENC_GREEN_Y0_H
, 0x02 },
355 { REG_LENC_GREEN_Y0_L
, 0x7c },
356 { REG_LENC_GREEN_A1
, 0x40 },
357 { REG_LENC_GREEN_B1
, 0x00 },
358 { REG_LENC_GREEN_A2_B2
, 0x66 },
359 { REG_LENC_BLUE_X0_H
, 0x03 },
360 { REG_LENC_BLUE_X0_L
, 0x10 },
361 { REG_LENC_BLUE_Y0_H
, 0x02 },
362 { REG_LENC_BLUE_Y0_L
, 0x7c },
363 { REG_LENC_BLUE_A1
, 0x3a },
364 { REG_LENC_BLUE_B1
, 0x00 },
365 { REG_LENC_BLUE_A2_B2
, 0x66 },
366 { REG_CIP_CTRL00
, 0x44 },
367 { REG_SHARPENMT_THRESH1
, 0x08 },
368 { REG_SHARPENMT_THRESH2
, 0x10 },
369 { REG_SHARPENMT_OFFSET1
, 0x12 },
370 { REG_SHARPENMT_OFFSET2
, 0x02 },
371 { REG_SHARPEN_THRESH1
, 0x08 },
372 { REG_SHARPEN_THRESH2
, 0x10 },
373 { REG_CIP_CTRL01
, 0xa6 },
374 { REG_DENOISE_THRESH1
, 0x08 },
375 { REG_DENOISE_THRESH2
, 0x10 },
376 { REG_DENOISE_OFFSET1
, 0x04 },
377 { REG_DENOISE_OFFSET2
, 0x12 },
381 { REG_CMX_MISC_CTRL
, 0x01 },
399 static struct sensor_register ov2659_720p
[] = {
400 { REG_TIMING_HS_H
, 0x00 },
401 { REG_TIMING_HS_L
, 0xa0 },
402 { REG_TIMING_VS_H
, 0x00 },
403 { REG_TIMING_VS_L
, 0xf0 },
404 { REG_TIMING_HW_H
, 0x05 },
405 { REG_TIMING_HW_L
, 0xbf },
406 { REG_TIMING_VH_H
, 0x03 },
407 { REG_TIMING_VH_L
, 0xcb },
408 { REG_TIMING_DVPHO_H
, 0x05 },
409 { REG_TIMING_DVPHO_L
, 0x00 },
410 { REG_TIMING_DVPVO_H
, 0x02 },
411 { REG_TIMING_DVPVO_L
, 0xd0 },
412 { REG_TIMING_HTS_H
, 0x06 },
413 { REG_TIMING_HTS_L
, 0x4c },
414 { REG_TIMING_VTS_H
, 0x02 },
415 { REG_TIMING_VTS_L
, 0xe8 },
416 { REG_TIMING_HOFFS_L
, 0x10 },
417 { REG_TIMING_VOFFS_L
, 0x06 },
418 { REG_TIMING_XINC
, 0x11 },
419 { REG_TIMING_YINC
, 0x11 },
420 { REG_TIMING_VERT_FORMAT
, 0x80 },
421 { REG_TIMING_HORIZ_FORMAT
, 0x00 },
427 { REG_VFIFO_READ_START_H
, 0x00 },
428 { REG_VFIFO_READ_START_L
, 0x80 },
429 { REG_ISP_CTRL02
, 0x00 },
434 static struct sensor_register ov2659_uxga
[] = {
435 { REG_TIMING_HS_H
, 0x00 },
436 { REG_TIMING_HS_L
, 0x00 },
437 { REG_TIMING_VS_H
, 0x00 },
438 { REG_TIMING_VS_L
, 0x00 },
439 { REG_TIMING_HW_H
, 0x06 },
440 { REG_TIMING_HW_L
, 0x5f },
441 { REG_TIMING_VH_H
, 0x04 },
442 { REG_TIMING_VH_L
, 0xbb },
443 { REG_TIMING_DVPHO_H
, 0x06 },
444 { REG_TIMING_DVPHO_L
, 0x40 },
445 { REG_TIMING_DVPVO_H
, 0x04 },
446 { REG_TIMING_DVPVO_L
, 0xb0 },
447 { REG_TIMING_HTS_H
, 0x07 },
448 { REG_TIMING_HTS_L
, 0x9f },
449 { REG_TIMING_VTS_H
, 0x04 },
450 { REG_TIMING_VTS_L
, 0xd0 },
451 { REG_TIMING_HOFFS_L
, 0x10 },
452 { REG_TIMING_VOFFS_L
, 0x06 },
453 { REG_TIMING_XINC
, 0x11 },
454 { REG_TIMING_YINC
, 0x11 },
472 { REG_TIMING_VERT_FORMAT
, 0x80 },
473 { REG_TIMING_HORIZ_FORMAT
, 0x00 },
475 { REG_VFIFO_READ_START_H
, 0x00 },
476 { REG_VFIFO_READ_START_L
, 0x80 },
477 { REG_ISP_CTRL02
, 0x00 },
482 static struct sensor_register ov2659_sxga
[] = {
483 { REG_TIMING_HS_H
, 0x00 },
484 { REG_TIMING_HS_L
, 0x00 },
485 { REG_TIMING_VS_H
, 0x00 },
486 { REG_TIMING_VS_L
, 0x00 },
487 { REG_TIMING_HW_H
, 0x06 },
488 { REG_TIMING_HW_L
, 0x5f },
489 { REG_TIMING_VH_H
, 0x04 },
490 { REG_TIMING_VH_L
, 0xb7 },
491 { REG_TIMING_DVPHO_H
, 0x05 },
492 { REG_TIMING_DVPHO_L
, 0x00 },
493 { REG_TIMING_DVPVO_H
, 0x04 },
494 { REG_TIMING_DVPVO_L
, 0x00 },
495 { REG_TIMING_HTS_H
, 0x07 },
496 { REG_TIMING_HTS_L
, 0x9c },
497 { REG_TIMING_VTS_H
, 0x04 },
498 { REG_TIMING_VTS_L
, 0xd0 },
499 { REG_TIMING_HOFFS_L
, 0x10 },
500 { REG_TIMING_VOFFS_L
, 0x06 },
501 { REG_TIMING_XINC
, 0x11 },
502 { REG_TIMING_YINC
, 0x11 },
520 { REG_TIMING_VERT_FORMAT
, 0x80 },
521 { REG_TIMING_HORIZ_FORMAT
, 0x00 },
523 { REG_VFIFO_READ_START_H
, 0x00 },
524 { REG_VFIFO_READ_START_L
, 0x80 },
525 { REG_ISP_CTRL02
, 0x00 },
530 static struct sensor_register ov2659_xga
[] = {
531 { REG_TIMING_HS_H
, 0x00 },
532 { REG_TIMING_HS_L
, 0x00 },
533 { REG_TIMING_VS_H
, 0x00 },
534 { REG_TIMING_VS_L
, 0x00 },
535 { REG_TIMING_HW_H
, 0x06 },
536 { REG_TIMING_HW_L
, 0x5f },
537 { REG_TIMING_VH_H
, 0x04 },
538 { REG_TIMING_VH_L
, 0xb7 },
539 { REG_TIMING_DVPHO_H
, 0x04 },
540 { REG_TIMING_DVPHO_L
, 0x00 },
541 { REG_TIMING_DVPVO_H
, 0x03 },
542 { REG_TIMING_DVPVO_L
, 0x00 },
543 { REG_TIMING_HTS_H
, 0x07 },
544 { REG_TIMING_HTS_L
, 0x9c },
545 { REG_TIMING_VTS_H
, 0x04 },
546 { REG_TIMING_VTS_L
, 0xd0 },
547 { REG_TIMING_HOFFS_L
, 0x10 },
548 { REG_TIMING_VOFFS_L
, 0x06 },
549 { REG_TIMING_XINC
, 0x11 },
550 { REG_TIMING_YINC
, 0x11 },
568 { REG_TIMING_VERT_FORMAT
, 0x80 },
569 { REG_TIMING_HORIZ_FORMAT
, 0x00 },
571 { REG_VFIFO_READ_START_H
, 0x00 },
572 { REG_VFIFO_READ_START_L
, 0x80 },
573 { REG_ISP_CTRL02
, 0x00 },
578 static struct sensor_register ov2659_svga
[] = {
579 { REG_TIMING_HS_H
, 0x00 },
580 { REG_TIMING_HS_L
, 0x00 },
581 { REG_TIMING_VS_H
, 0x00 },
582 { REG_TIMING_VS_L
, 0x00 },
583 { REG_TIMING_HW_H
, 0x06 },
584 { REG_TIMING_HW_L
, 0x5f },
585 { REG_TIMING_VH_H
, 0x04 },
586 { REG_TIMING_VH_L
, 0xb7 },
587 { REG_TIMING_DVPHO_H
, 0x03 },
588 { REG_TIMING_DVPHO_L
, 0x20 },
589 { REG_TIMING_DVPVO_H
, 0x02 },
590 { REG_TIMING_DVPVO_L
, 0x58 },
591 { REG_TIMING_HTS_H
, 0x05 },
592 { REG_TIMING_HTS_L
, 0x14 },
593 { REG_TIMING_VTS_H
, 0x02 },
594 { REG_TIMING_VTS_L
, 0x68 },
595 { REG_TIMING_HOFFS_L
, 0x08 },
596 { REG_TIMING_VOFFS_L
, 0x02 },
597 { REG_TIMING_XINC
, 0x31 },
598 { REG_TIMING_YINC
, 0x31 },
616 { REG_TIMING_VERT_FORMAT
, 0x81 },
617 { REG_TIMING_HORIZ_FORMAT
, 0x01 },
619 { REG_VFIFO_READ_START_H
, 0x00 },
620 { REG_VFIFO_READ_START_L
, 0x80 },
621 { REG_ISP_CTRL02
, 0x00 },
626 static struct sensor_register ov2659_vga
[] = {
627 { REG_TIMING_HS_H
, 0x00 },
628 { REG_TIMING_HS_L
, 0x00 },
629 { REG_TIMING_VS_H
, 0x00 },
630 { REG_TIMING_VS_L
, 0x00 },
631 { REG_TIMING_HW_H
, 0x06 },
632 { REG_TIMING_HW_L
, 0x5f },
633 { REG_TIMING_VH_H
, 0x04 },
634 { REG_TIMING_VH_L
, 0xb7 },
635 { REG_TIMING_DVPHO_H
, 0x02 },
636 { REG_TIMING_DVPHO_L
, 0x80 },
637 { REG_TIMING_DVPVO_H
, 0x01 },
638 { REG_TIMING_DVPVO_L
, 0xe0 },
639 { REG_TIMING_HTS_H
, 0x05 },
640 { REG_TIMING_HTS_L
, 0x14 },
641 { REG_TIMING_VTS_H
, 0x02 },
642 { REG_TIMING_VTS_L
, 0x68 },
643 { REG_TIMING_HOFFS_L
, 0x08 },
644 { REG_TIMING_VOFFS_L
, 0x02 },
645 { REG_TIMING_XINC
, 0x31 },
646 { REG_TIMING_YINC
, 0x31 },
664 { REG_TIMING_VERT_FORMAT
, 0x81 },
665 { REG_TIMING_HORIZ_FORMAT
, 0x01 },
667 { REG_VFIFO_READ_START_H
, 0x00 },
668 { REG_VFIFO_READ_START_L
, 0x80 },
669 { REG_ISP_CTRL02
, 0x10 },
674 static struct sensor_register ov2659_qvga
[] = {
675 { REG_TIMING_HS_H
, 0x00 },
676 { REG_TIMING_HS_L
, 0x00 },
677 { REG_TIMING_VS_H
, 0x00 },
678 { REG_TIMING_VS_L
, 0x00 },
679 { REG_TIMING_HW_H
, 0x06 },
680 { REG_TIMING_HW_L
, 0x5f },
681 { REG_TIMING_VH_H
, 0x04 },
682 { REG_TIMING_VH_L
, 0xb7 },
683 { REG_TIMING_DVPHO_H
, 0x01 },
684 { REG_TIMING_DVPHO_L
, 0x40 },
685 { REG_TIMING_DVPVO_H
, 0x00 },
686 { REG_TIMING_DVPVO_L
, 0xf0 },
687 { REG_TIMING_HTS_H
, 0x05 },
688 { REG_TIMING_HTS_L
, 0x14 },
689 { REG_TIMING_VTS_H
, 0x02 },
690 { REG_TIMING_VTS_L
, 0x68 },
691 { REG_TIMING_HOFFS_L
, 0x08 },
692 { REG_TIMING_VOFFS_L
, 0x02 },
693 { REG_TIMING_XINC
, 0x31 },
694 { REG_TIMING_YINC
, 0x31 },
712 { REG_TIMING_VERT_FORMAT
, 0x81 },
713 { REG_TIMING_HORIZ_FORMAT
, 0x01 },
715 { REG_VFIFO_READ_START_H
, 0x00 },
716 { REG_VFIFO_READ_START_L
, 0x80 },
717 { REG_ISP_CTRL02
, 0x10 },
721 static const struct pll_ctrl_reg ctrl3
[] = {
738 static const struct pll_ctrl_reg ctrl1
[] = {
757 static const struct ov2659_framesize ov2659_framesizes
[] = {
762 .max_exp_lines
= 248,
767 .max_exp_lines
= 498,
772 .max_exp_lines
= 498,
777 .max_exp_lines
= 498,
782 .max_exp_lines
= 498,
787 .max_exp_lines
= 1048,
792 .max_exp_lines
= 498,
797 static struct sensor_register ov2659_format_yuyv
[] = {
798 { REG_FORMAT_CTRL00
, 0x30 },
803 static struct sensor_register ov2659_format_uyvy
[] = {
804 { REG_FORMAT_CTRL00
, 0x32 },
809 static struct sensor_register ov2659_format_bggr
[] = {
810 { REG_FORMAT_CTRL00
, 0x00 },
815 static struct sensor_register ov2659_format_rgb565
[] = {
816 { REG_FORMAT_CTRL00
, 0x60 },
820 static const struct ov2659_pixfmt ov2659_formats
[] = {
822 .code
= MEDIA_BUS_FMT_YUYV8_2X8
,
823 .format_ctrl_regs
= ov2659_format_yuyv
,
825 .code
= MEDIA_BUS_FMT_UYVY8_2X8
,
826 .format_ctrl_regs
= ov2659_format_uyvy
,
828 .code
= MEDIA_BUS_FMT_RGB565_2X8_BE
,
829 .format_ctrl_regs
= ov2659_format_rgb565
,
831 .code
= MEDIA_BUS_FMT_SBGGR8_1X8
,
832 .format_ctrl_regs
= ov2659_format_bggr
,
836 static inline struct ov2659
*to_ov2659(struct v4l2_subdev
*sd
)
838 return container_of(sd
, struct ov2659
, sd
);
841 /* sensor register write */
842 static int ov2659_write(struct i2c_client
*client
, u16 reg
, u8 val
)
852 msg
.addr
= client
->addr
;
853 msg
.flags
= client
->flags
;
855 msg
.len
= sizeof(buf
);
857 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
861 dev_dbg(&client
->dev
,
862 "ov2659 write reg(0x%x val:0x%x) failed !\n", reg
, val
);
867 /* sensor register read */
868 static int ov2659_read(struct i2c_client
*client
, u16 reg
, u8
*val
)
870 struct i2c_msg msg
[2];
877 msg
[0].addr
= client
->addr
;
878 msg
[0].flags
= client
->flags
;
880 msg
[0].len
= sizeof(buf
);
882 msg
[1].addr
= client
->addr
;
883 msg
[1].flags
= client
->flags
| I2C_M_RD
;
887 ret
= i2c_transfer(client
->adapter
, msg
, 2);
893 dev_dbg(&client
->dev
,
894 "ov2659 read reg(0x%x val:0x%x) failed !\n", reg
, *val
);
899 static int ov2659_write_array(struct i2c_client
*client
,
900 const struct sensor_register
*regs
)
904 for (i
= 0; ret
== 0 && regs
[i
].addr
; i
++)
905 ret
= ov2659_write(client
, regs
[i
].addr
, regs
[i
].value
);
910 static void ov2659_pll_calc_params(struct ov2659
*ov2659
)
912 const struct ov2659_platform_data
*pdata
= ov2659
->pdata
;
913 u8 ctrl1_reg
= 0, ctrl2_reg
= 0, ctrl3_reg
= 0;
914 struct i2c_client
*client
= ov2659
->client
;
915 unsigned int desired
= pdata
->link_frequency
;
916 u32 prediv
, postdiv
, mult
;
921 for (i
= 0; ctrl1
[i
].div
!= 0; i
++) {
922 postdiv
= ctrl1
[i
].div
;
923 for (j
= 0; ctrl3
[j
].div
!= 0; j
++) {
924 prediv
= ctrl3
[j
].div
;
925 for (mult
= 1; mult
<= 63; mult
++) {
926 actual
= ov2659
->xvclk_frequency
;
930 delta
= actual
- desired
;
933 if ((delta
< bestdelta
) || (bestdelta
== -1)) {
935 ctrl1_reg
= ctrl1
[i
].reg
;
937 ctrl3_reg
= ctrl3
[j
].reg
;
943 ov2659
->pll
.ctrl1
= ctrl1_reg
;
944 ov2659
->pll
.ctrl2
= ctrl2_reg
;
945 ov2659
->pll
.ctrl3
= ctrl3_reg
;
947 dev_dbg(&client
->dev
,
948 "Actual reg config: ctrl1_reg: %02x ctrl2_reg: %02x ctrl3_reg: %02x\n",
949 ctrl1_reg
, ctrl2_reg
, ctrl3_reg
);
952 static int ov2659_set_pixel_clock(struct ov2659
*ov2659
)
954 struct i2c_client
*client
= ov2659
->client
;
955 struct sensor_register pll_regs
[] = {
956 {REG_SC_PLL_CTRL1
, ov2659
->pll
.ctrl1
},
957 {REG_SC_PLL_CTRL2
, ov2659
->pll
.ctrl2
},
958 {REG_SC_PLL_CTRL3
, ov2659
->pll
.ctrl3
},
962 dev_dbg(&client
->dev
, "%s\n", __func__
);
964 return ov2659_write_array(client
, pll_regs
);
967 static void ov2659_get_default_format(struct v4l2_mbus_framefmt
*format
)
969 format
->width
= ov2659_framesizes
[2].width
;
970 format
->height
= ov2659_framesizes
[2].height
;
971 format
->colorspace
= V4L2_COLORSPACE_SRGB
;
972 format
->code
= ov2659_formats
[0].code
;
973 format
->field
= V4L2_FIELD_NONE
;
976 static void ov2659_set_streaming(struct ov2659
*ov2659
, int on
)
978 struct i2c_client
*client
= ov2659
->client
;
983 dev_dbg(&client
->dev
, "%s: on: %d\n", __func__
, on
);
985 ret
= ov2659_write(client
, REG_SOFTWARE_STANDBY
, on
);
987 dev_err(&client
->dev
, "ov2659 soft standby failed\n");
990 static int ov2659_init(struct v4l2_subdev
*sd
, u32 val
)
992 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
994 return ov2659_write_array(client
, ov2659_init_regs
);
998 * V4L2 subdev video and pad level operations
1001 static int ov2659_enum_mbus_code(struct v4l2_subdev
*sd
,
1002 struct v4l2_subdev_pad_config
*cfg
,
1003 struct v4l2_subdev_mbus_code_enum
*code
)
1005 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1007 dev_dbg(&client
->dev
, "%s:\n", __func__
);
1009 if (code
->index
>= ARRAY_SIZE(ov2659_formats
))
1012 code
->code
= ov2659_formats
[code
->index
].code
;
1017 static int ov2659_enum_frame_sizes(struct v4l2_subdev
*sd
,
1018 struct v4l2_subdev_pad_config
*cfg
,
1019 struct v4l2_subdev_frame_size_enum
*fse
)
1021 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1022 int i
= ARRAY_SIZE(ov2659_formats
);
1024 dev_dbg(&client
->dev
, "%s:\n", __func__
);
1026 if (fse
->index
>= ARRAY_SIZE(ov2659_framesizes
))
1030 if (fse
->code
== ov2659_formats
[i
].code
)
1033 fse
->code
= ov2659_formats
[i
].code
;
1035 fse
->min_width
= ov2659_framesizes
[fse
->index
].width
;
1036 fse
->max_width
= fse
->min_width
;
1037 fse
->max_height
= ov2659_framesizes
[fse
->index
].height
;
1038 fse
->min_height
= fse
->max_height
;
1043 static int ov2659_get_fmt(struct v4l2_subdev
*sd
,
1044 struct v4l2_subdev_pad_config
*cfg
,
1045 struct v4l2_subdev_format
*fmt
)
1047 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1048 struct ov2659
*ov2659
= to_ov2659(sd
);
1050 dev_dbg(&client
->dev
, "ov2659_get_fmt\n");
1052 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1053 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1054 struct v4l2_mbus_framefmt
*mf
;
1056 mf
= v4l2_subdev_get_try_format(sd
, cfg
, 0);
1057 mutex_lock(&ov2659
->lock
);
1059 mutex_unlock(&ov2659
->lock
);
1066 mutex_lock(&ov2659
->lock
);
1067 fmt
->format
= ov2659
->format
;
1068 mutex_unlock(&ov2659
->lock
);
1070 dev_dbg(&client
->dev
, "ov2659_get_fmt: %x %dx%d\n",
1071 ov2659
->format
.code
, ov2659
->format
.width
,
1072 ov2659
->format
.height
);
1077 static void __ov2659_try_frame_size(struct v4l2_mbus_framefmt
*mf
,
1078 const struct ov2659_framesize
**size
)
1080 const struct ov2659_framesize
*fsize
= &ov2659_framesizes
[0];
1081 const struct ov2659_framesize
*match
= NULL
;
1082 int i
= ARRAY_SIZE(ov2659_framesizes
);
1083 unsigned int min_err
= UINT_MAX
;
1086 int err
= abs(fsize
->width
- mf
->width
)
1087 + abs(fsize
->height
- mf
->height
);
1088 if ((err
< min_err
) && (fsize
->regs
[0].addr
)) {
1096 match
= &ov2659_framesizes
[2];
1098 mf
->width
= match
->width
;
1099 mf
->height
= match
->height
;
1105 static int ov2659_set_fmt(struct v4l2_subdev
*sd
,
1106 struct v4l2_subdev_pad_config
*cfg
,
1107 struct v4l2_subdev_format
*fmt
)
1109 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1110 int index
= ARRAY_SIZE(ov2659_formats
);
1111 struct v4l2_mbus_framefmt
*mf
= &fmt
->format
;
1112 const struct ov2659_framesize
*size
= NULL
;
1113 struct ov2659
*ov2659
= to_ov2659(sd
);
1116 dev_dbg(&client
->dev
, "ov2659_set_fmt\n");
1118 __ov2659_try_frame_size(mf
, &size
);
1120 while (--index
>= 0)
1121 if (ov2659_formats
[index
].code
== mf
->code
)
1126 mf
->code
= ov2659_formats
[index
].code
;
1129 mf
->colorspace
= V4L2_COLORSPACE_SRGB
;
1130 mf
->field
= V4L2_FIELD_NONE
;
1132 mutex_lock(&ov2659
->lock
);
1134 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1135 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1136 mf
= v4l2_subdev_get_try_format(sd
, cfg
, fmt
->pad
);
1144 if (ov2659
->streaming
) {
1145 mutex_unlock(&ov2659
->lock
);
1149 ov2659
->frame_size
= size
;
1150 ov2659
->format
= fmt
->format
;
1151 ov2659
->format_ctrl_regs
=
1152 ov2659_formats
[index
].format_ctrl_regs
;
1154 if (ov2659
->format
.code
!= MEDIA_BUS_FMT_SBGGR8_1X8
)
1155 val
= ov2659
->pdata
->link_frequency
/ 2;
1157 val
= ov2659
->pdata
->link_frequency
;
1159 ret
= v4l2_ctrl_s_ctrl_int64(ov2659
->link_frequency
, val
);
1161 dev_warn(&client
->dev
,
1162 "failed to set link_frequency rate (%d)\n",
1166 mutex_unlock(&ov2659
->lock
);
1170 static int ov2659_set_frame_size(struct ov2659
*ov2659
)
1172 struct i2c_client
*client
= ov2659
->client
;
1174 dev_dbg(&client
->dev
, "%s\n", __func__
);
1176 return ov2659_write_array(ov2659
->client
, ov2659
->frame_size
->regs
);
1179 static int ov2659_set_format(struct ov2659
*ov2659
)
1181 struct i2c_client
*client
= ov2659
->client
;
1183 dev_dbg(&client
->dev
, "%s\n", __func__
);
1185 return ov2659_write_array(ov2659
->client
, ov2659
->format_ctrl_regs
);
1188 static int ov2659_s_stream(struct v4l2_subdev
*sd
, int on
)
1190 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1191 struct ov2659
*ov2659
= to_ov2659(sd
);
1194 dev_dbg(&client
->dev
, "%s: on: %d\n", __func__
, on
);
1196 mutex_lock(&ov2659
->lock
);
1200 if (ov2659
->streaming
== on
)
1204 /* Stop Streaming Sequence */
1205 ov2659_set_streaming(ov2659
, 0);
1206 ov2659
->streaming
= on
;
1210 ret
= ov2659_set_pixel_clock(ov2659
);
1212 ret
= ov2659_set_frame_size(ov2659
);
1214 ret
= ov2659_set_format(ov2659
);
1216 ov2659_set_streaming(ov2659
, 1);
1217 ov2659
->streaming
= on
;
1221 mutex_unlock(&ov2659
->lock
);
1225 static int ov2659_set_test_pattern(struct ov2659
*ov2659
, int value
)
1227 struct i2c_client
*client
= v4l2_get_subdevdata(&ov2659
->sd
);
1231 ret
= ov2659_read(client
, REG_PRE_ISP_CTRL00
, &val
);
1237 val
&= ~TEST_PATTERN_ENABLE
;
1240 val
&= VERTICAL_COLOR_BAR_MASK
;
1241 val
|= TEST_PATTERN_ENABLE
;
1245 return ov2659_write(client
, REG_PRE_ISP_CTRL00
, val
);
1248 static int ov2659_s_ctrl(struct v4l2_ctrl
*ctrl
)
1250 struct ov2659
*ov2659
=
1251 container_of(ctrl
->handler
, struct ov2659
, ctrls
);
1254 case V4L2_CID_TEST_PATTERN
:
1255 return ov2659_set_test_pattern(ov2659
, ctrl
->val
);
1261 static const struct v4l2_ctrl_ops ov2659_ctrl_ops
= {
1262 .s_ctrl
= ov2659_s_ctrl
,
1265 static const char * const ov2659_test_pattern_menu
[] = {
1267 "Vertical Color Bars",
1270 /* -----------------------------------------------------------------------------
1271 * V4L2 subdev internal operations
1274 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1275 static int ov2659_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
1277 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1278 struct v4l2_mbus_framefmt
*format
=
1279 v4l2_subdev_get_try_format(sd
, fh
->pad
, 0);
1281 dev_dbg(&client
->dev
, "%s:\n", __func__
);
1283 ov2659_get_default_format(format
);
1289 static const struct v4l2_subdev_core_ops ov2659_subdev_core_ops
= {
1290 .log_status
= v4l2_ctrl_subdev_log_status
,
1291 .subscribe_event
= v4l2_ctrl_subdev_subscribe_event
,
1292 .unsubscribe_event
= v4l2_event_subdev_unsubscribe
,
1295 static const struct v4l2_subdev_video_ops ov2659_subdev_video_ops
= {
1296 .s_stream
= ov2659_s_stream
,
1299 static const struct v4l2_subdev_pad_ops ov2659_subdev_pad_ops
= {
1300 .enum_mbus_code
= ov2659_enum_mbus_code
,
1301 .enum_frame_size
= ov2659_enum_frame_sizes
,
1302 .get_fmt
= ov2659_get_fmt
,
1303 .set_fmt
= ov2659_set_fmt
,
1306 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1307 static const struct v4l2_subdev_ops ov2659_subdev_ops
= {
1308 .core
= &ov2659_subdev_core_ops
,
1309 .video
= &ov2659_subdev_video_ops
,
1310 .pad
= &ov2659_subdev_pad_ops
,
1313 static const struct v4l2_subdev_internal_ops ov2659_subdev_internal_ops
= {
1314 .open
= ov2659_open
,
1318 static int ov2659_detect(struct v4l2_subdev
*sd
)
1320 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1325 dev_dbg(&client
->dev
, "%s:\n", __func__
);
1327 ret
= ov2659_write(client
, REG_SOFTWARE_RESET
, 0x01);
1329 dev_err(&client
->dev
, "Sensor soft reset failed\n");
1332 usleep_range(1000, 2000);
1334 /* Check sensor revision */
1335 ret
= ov2659_read(client
, REG_SC_CHIP_ID_H
, &pid
);
1337 ret
= ov2659_read(client
, REG_SC_CHIP_ID_L
, &ver
);
1342 id
= OV265X_ID(pid
, ver
);
1343 if (id
!= OV2659_ID
)
1344 dev_err(&client
->dev
,
1345 "Sensor detection failed (%04X, %d)\n",
1348 dev_info(&client
->dev
, "Found OV%04X sensor\n", id
);
1349 ret
= ov2659_init(sd
, 0);
1356 static struct ov2659_platform_data
*
1357 ov2659_get_pdata(struct i2c_client
*client
)
1359 struct ov2659_platform_data
*pdata
;
1360 struct v4l2_fwnode_endpoint
*bus_cfg
;
1361 struct device_node
*endpoint
;
1363 if (!IS_ENABLED(CONFIG_OF
) || !client
->dev
.of_node
)
1364 return client
->dev
.platform_data
;
1366 endpoint
= of_graph_get_next_endpoint(client
->dev
.of_node
, NULL
);
1370 bus_cfg
= v4l2_fwnode_endpoint_alloc_parse(of_fwnode_handle(endpoint
));
1371 if (IS_ERR(bus_cfg
)) {
1376 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1380 if (!bus_cfg
->nr_of_link_frequencies
) {
1381 dev_err(&client
->dev
,
1382 "link-frequencies property not found or too many\n");
1387 pdata
->link_frequency
= bus_cfg
->link_frequencies
[0];
1390 v4l2_fwnode_endpoint_free(bus_cfg
);
1391 of_node_put(endpoint
);
1395 static int ov2659_probe(struct i2c_client
*client
,
1396 const struct i2c_device_id
*id
)
1398 const struct ov2659_platform_data
*pdata
= ov2659_get_pdata(client
);
1399 struct v4l2_subdev
*sd
;
1400 struct ov2659
*ov2659
;
1405 dev_err(&client
->dev
, "platform data not specified\n");
1409 ov2659
= devm_kzalloc(&client
->dev
, sizeof(*ov2659
), GFP_KERNEL
);
1413 ov2659
->pdata
= pdata
;
1414 ov2659
->client
= client
;
1416 clk
= devm_clk_get(&client
->dev
, "xvclk");
1418 return PTR_ERR(clk
);
1420 ov2659
->xvclk_frequency
= clk_get_rate(clk
);
1421 if (ov2659
->xvclk_frequency
< 6000000 ||
1422 ov2659
->xvclk_frequency
> 27000000)
1425 v4l2_ctrl_handler_init(&ov2659
->ctrls
, 2);
1426 ov2659
->link_frequency
=
1427 v4l2_ctrl_new_std(&ov2659
->ctrls
, &ov2659_ctrl_ops
,
1428 V4L2_CID_PIXEL_RATE
,
1429 pdata
->link_frequency
/ 2,
1430 pdata
->link_frequency
, 1,
1431 pdata
->link_frequency
);
1432 v4l2_ctrl_new_std_menu_items(&ov2659
->ctrls
, &ov2659_ctrl_ops
,
1433 V4L2_CID_TEST_PATTERN
,
1434 ARRAY_SIZE(ov2659_test_pattern_menu
) - 1,
1435 0, 0, ov2659_test_pattern_menu
);
1436 ov2659
->sd
.ctrl_handler
= &ov2659
->ctrls
;
1438 if (ov2659
->ctrls
.error
) {
1439 dev_err(&client
->dev
, "%s: control initialization error %d\n",
1440 __func__
, ov2659
->ctrls
.error
);
1441 return ov2659
->ctrls
.error
;
1445 client
->flags
|= I2C_CLIENT_SCCB
;
1446 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
1447 v4l2_i2c_subdev_init(sd
, client
, &ov2659_subdev_ops
);
1449 sd
->internal_ops
= &ov2659_subdev_internal_ops
;
1450 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
|
1451 V4L2_SUBDEV_FL_HAS_EVENTS
;
1454 #if defined(CONFIG_MEDIA_CONTROLLER)
1455 ov2659
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1456 sd
->entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1457 ret
= media_entity_pads_init(&sd
->entity
, 1, &ov2659
->pad
);
1459 v4l2_ctrl_handler_free(&ov2659
->ctrls
);
1464 mutex_init(&ov2659
->lock
);
1466 ov2659_get_default_format(&ov2659
->format
);
1467 ov2659
->frame_size
= &ov2659_framesizes
[2];
1468 ov2659
->format_ctrl_regs
= ov2659_formats
[0].format_ctrl_regs
;
1470 ret
= ov2659_detect(sd
);
1474 /* Calculate the PLL register value needed */
1475 ov2659_pll_calc_params(ov2659
);
1477 ret
= v4l2_async_register_subdev(&ov2659
->sd
);
1481 dev_info(&client
->dev
, "%s sensor driver registered !!\n", sd
->name
);
1486 v4l2_ctrl_handler_free(&ov2659
->ctrls
);
1487 media_entity_cleanup(&sd
->entity
);
1488 mutex_destroy(&ov2659
->lock
);
1492 static int ov2659_remove(struct i2c_client
*client
)
1494 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1495 struct ov2659
*ov2659
= to_ov2659(sd
);
1497 v4l2_ctrl_handler_free(&ov2659
->ctrls
);
1498 v4l2_async_unregister_subdev(sd
);
1499 media_entity_cleanup(&sd
->entity
);
1500 mutex_destroy(&ov2659
->lock
);
1505 static const struct i2c_device_id ov2659_id
[] = {
1509 MODULE_DEVICE_TABLE(i2c
, ov2659_id
);
1511 #if IS_ENABLED(CONFIG_OF)
1512 static const struct of_device_id ov2659_of_match
[] = {
1513 { .compatible
= "ovti,ov2659", },
1516 MODULE_DEVICE_TABLE(of
, ov2659_of_match
);
1519 static struct i2c_driver ov2659_i2c_driver
= {
1521 .name
= DRIVER_NAME
,
1522 .of_match_table
= of_match_ptr(ov2659_of_match
),
1524 .probe
= ov2659_probe
,
1525 .remove
= ov2659_remove
,
1526 .id_table
= ov2659_id
,
1529 module_i2c_driver(ov2659_i2c_driver
);
1531 MODULE_AUTHOR("Benoit Parrot <bparrot@ti.com>");
1532 MODULE_DESCRIPTION("OV2659 CMOS Image Sensor driver");
1533 MODULE_LICENSE("GPL v2");