xref: /linux/drivers/media/i2c/ov7740.c (revision 98b3cd0bfc5c07809166421e8b8f82bf74ee8970)
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2017 Microchip Corporation.
3 
4 #include <linux/clk.h>
5 #include <linux/delay.h>
6 #include <linux/gpio/consumer.h>
7 #include <linux/i2c.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>
15 
16 #define REG_OUTSIZE_LSB 0x34
17 
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 */
27 
28 #define REG_REG0C	0x0C	/* filp enable */
29 #define REG0C_IMG_FLIP		0x80
30 #define REG0C_IMG_MIRROR	0x40
31 
32 #define REG_REG0E	0x0E	/* blc line */
33 #define REG_HAEC	0x0F	/* auto exposure cntrl */
34 #define REG_AEC		0x10	/* auto exposure cntrl */
35 
36 #define REG_CLK		0x11	/* Clock control */
37 #define REG_REG55	0x55	/* Clock PLL DIV/PreDiv */
38 
39 #define REG_REG12	0x12
40 
41 #define REG_REG13	0x13	/* auto/manual AGC, AEC, Write Balance*/
42 #define REG13_AEC_EN	0x01
43 #define REG13_AGC_EN	0x04
44 
45 #define REG_REG14	0x14
46 #define REG_CTRL15	0x15
47 #define REG15_GAIN_MSB	0x03
48 
49 #define REG_REG16	0x16
50 
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 */
55 
56 #define REG_84		0x84	/* lots of stuff */
57 #define REG_REG38	0x38	/* sub-addr */
58 
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 */
64 
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*/
69 
70 #define REG_ISP_CTRL00	0x80
71 #define ISPCTRL00_AWB_EN	0x10
72 #define ISPCTRL00_AWB_GAIN_EN	0x04
73 
74 #define	REG_YGAIN	0xE2	/* ygain for contrast control */
75 
76 #define	REG_YBRIGHT	  0xE3
77 #define	REG_SGNSET	  0xE4
78 #define	SGNSET_YBRIGHT_MASK	  0x08
79 
80 #define REG_USAT	0xDD
81 #define REG_VSAT	0xDE
82 
83 
84 struct ov7740 {
85 	struct v4l2_subdev subdev;
86 	struct media_pad pad;
87 	struct v4l2_mbus_framefmt format;
88 	const struct ov7740_pixfmt *fmt;  /* Current format */
89 	const struct ov7740_framesize *frmsize;
90 	struct regmap *regmap;
91 	struct clk *xvclk;
92 	struct v4l2_ctrl_handler ctrl_handler;
93 	struct {
94 		/* gain cluster */
95 		struct v4l2_ctrl *auto_gain;
96 		struct v4l2_ctrl *gain;
97 	};
98 	struct {
99 		struct v4l2_ctrl *auto_wb;
100 		struct v4l2_ctrl *blue_balance;
101 		struct v4l2_ctrl *red_balance;
102 	};
103 	struct {
104 		struct v4l2_ctrl *hflip;
105 		struct v4l2_ctrl *vflip;
106 	};
107 	struct {
108 		/* exposure cluster */
109 		struct v4l2_ctrl *auto_exposure;
110 		struct v4l2_ctrl *exposure;
111 	};
112 	struct {
113 		/* saturation/hue cluster */
114 		struct v4l2_ctrl *saturation;
115 		struct v4l2_ctrl *hue;
116 	};
117 	struct v4l2_ctrl *brightness;
118 	struct v4l2_ctrl *contrast;
119 
120 	struct mutex mutex;	/* To serialize asynchronus callbacks */
121 
122 	struct gpio_desc *resetb_gpio;
123 	struct gpio_desc *pwdn_gpio;
124 };
125 
126 struct ov7740_pixfmt {
127 	u32 mbus_code;
128 	enum v4l2_colorspace colorspace;
129 	const struct reg_sequence *regs;
130 	u32 reg_num;
131 };
132 
133 struct ov7740_framesize {
134 	u16 width;
135 	u16 height;
136 	const struct reg_sequence *regs;
137 	u32 reg_num;
138 };
139 
140 static const struct reg_sequence ov7740_vga[] = {
141 	{0x55, 0x40},
142 	{0x11, 0x02},
143 
144 	{0xd5, 0x10},
145 	{0x0c, 0x12},
146 	{0x0d, 0x34},
147 	{0x17, 0x25},
148 	{0x18, 0xa0},
149 	{0x19, 0x03},
150 	{0x1a, 0xf0},
151 	{0x1b, 0x89},
152 	{0x22, 0x03},
153 	{0x29, 0x18},
154 	{0x2b, 0xf8},
155 	{0x2c, 0x01},
156 	{REG_HOUTSIZE, 0xa0},
157 	{REG_VOUTSIZE, 0xf0},
158 	{0x33, 0xc4},
159 	{REG_OUTSIZE_LSB, 0x0},
160 	{0x35, 0x05},
161 	{0x04, 0x60},
162 	{0x27, 0x80},
163 	{0x3d, 0x0f},
164 	{0x3e, 0x80},
165 	{0x3f, 0x40},
166 	{0x40, 0x7f},
167 	{0x41, 0x6a},
168 	{0x42, 0x29},
169 	{0x44, 0x22},
170 	{0x45, 0x41},
171 	{0x47, 0x02},
172 	{0x49, 0x64},
173 	{0x4a, 0xa1},
174 	{0x4b, 0x40},
175 	{0x4c, 0x1a},
176 	{0x4d, 0x50},
177 	{0x4e, 0x13},
178 	{0x64, 0x00},
179 	{0x67, 0x88},
180 	{0x68, 0x1a},
181 
182 	{0x14, 0x28},
183 	{0x24, 0x3c},
184 	{0x25, 0x30},
185 	{0x26, 0x72},
186 	{0x50, 0x97},
187 	{0x51, 0x1f},
188 	{0x52, 0x00},
189 	{0x53, 0x00},
190 	{0x20, 0x00},
191 	{0x21, 0xcf},
192 	{0x50, 0x4b},
193 	{0x38, 0x14},
194 	{0xe9, 0x00},
195 	{0x56, 0x55},
196 	{0x57, 0xff},
197 	{0x58, 0xff},
198 	{0x59, 0xff},
199 	{0x5f, 0x04},
200 	{0xec, 0x00},
201 	{0x13, 0xff},
202 
203 	{0x81, 0x3f},
204 	{0x82, 0x32},
205 	{0x38, 0x11},
206 	{0x84, 0x70},
207 	{0x85, 0x00},
208 	{0x86, 0x03},
209 	{0x87, 0x01},
210 	{0x88, 0x05},
211 	{0x89, 0x30},
212 	{0x8d, 0x30},
213 	{0x8f, 0x85},
214 	{0x93, 0x30},
215 	{0x95, 0x85},
216 	{0x99, 0x30},
217 	{0x9b, 0x85},
218 
219 	{0x9c, 0x08},
220 	{0x9d, 0x12},
221 	{0x9e, 0x23},
222 	{0x9f, 0x45},
223 	{0xa0, 0x55},
224 	{0xa1, 0x64},
225 	{0xa2, 0x72},
226 	{0xa3, 0x7f},
227 	{0xa4, 0x8b},
228 	{0xa5, 0x95},
229 	{0xa6, 0xa7},
230 	{0xa7, 0xb5},
231 	{0xa8, 0xcb},
232 	{0xa9, 0xdd},
233 	{0xaa, 0xec},
234 	{0xab, 0x1a},
235 
236 	{0xce, 0x78},
237 	{0xcf, 0x6e},
238 	{0xd0, 0x0a},
239 	{0xd1, 0x0c},
240 	{0xd2, 0x84},
241 	{0xd3, 0x90},
242 	{0xd4, 0x1e},
243 
244 	{0x5a, 0x24},
245 	{0x5b, 0x1f},
246 	{0x5c, 0x88},
247 	{0x5d, 0x60},
248 
249 	{0xac, 0x6e},
250 	{0xbe, 0xff},
251 	{0xbf, 0x00},
252 
253 	{0x0f, 0x1d},
254 	{0x0f, 0x1f},
255 };
256 
257 static const struct ov7740_framesize ov7740_framesizes[] = {
258 	{
259 		.width		= VGA_WIDTH,
260 		.height		= VGA_HEIGHT,
261 		.regs		= ov7740_vga,
262 		.reg_num	= ARRAY_SIZE(ov7740_vga),
263 	},
264 };
265 
266 #ifdef CONFIG_VIDEO_ADV_DEBUG
267 static int ov7740_get_register(struct v4l2_subdev *sd,
268 			       struct v4l2_dbg_register *reg)
269 {
270 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
271 	struct regmap *regmap = ov7740->regmap;
272 	unsigned int val = 0;
273 	int ret;
274 
275 	ret = regmap_read(regmap, reg->reg & 0xff, &val);
276 	reg->val = val;
277 	reg->size = 1;
278 
279 	return ret;
280 }
281 
282 static int ov7740_set_register(struct v4l2_subdev *sd,
283 			       const struct v4l2_dbg_register *reg)
284 {
285 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
286 	struct regmap *regmap = ov7740->regmap;
287 
288 	regmap_write(regmap, reg->reg & 0xff, reg->val & 0xff);
289 
290 	return 0;
291 }
292 #endif
293 
294 static int ov7740_set_power(struct ov7740 *ov7740, int on)
295 {
296 	int ret;
297 
298 	if (on) {
299 		ret = clk_prepare_enable(ov7740->xvclk);
300 		if (ret)
301 			return ret;
302 
303 		if (ov7740->pwdn_gpio)
304 			gpiod_direction_output(ov7740->pwdn_gpio, 0);
305 
306 		if (ov7740->resetb_gpio) {
307 			gpiod_set_value(ov7740->resetb_gpio, 1);
308 			usleep_range(500, 1000);
309 			gpiod_set_value(ov7740->resetb_gpio, 0);
310 			usleep_range(3000, 5000);
311 		}
312 	} else {
313 		clk_disable_unprepare(ov7740->xvclk);
314 
315 		if (ov7740->pwdn_gpio)
316 			gpiod_direction_output(ov7740->pwdn_gpio, 0);
317 	}
318 
319 	return 0;
320 }
321 
322 static const struct v4l2_subdev_core_ops ov7740_subdev_core_ops = {
323 	.log_status = v4l2_ctrl_subdev_log_status,
324 #ifdef CONFIG_VIDEO_ADV_DEBUG
325 	.g_register = ov7740_get_register,
326 	.s_register = ov7740_set_register,
327 #endif
328 	.subscribe_event = v4l2_ctrl_subdev_subscribe_event,
329 	.unsubscribe_event = v4l2_event_subdev_unsubscribe,
330 };
331 
332 static int ov7740_set_white_balance(struct ov7740 *ov7740, int awb)
333 {
334 	struct regmap *regmap = ov7740->regmap;
335 	unsigned int value;
336 	int ret;
337 
338 	ret = regmap_read(regmap, REG_ISP_CTRL00, &value);
339 	if (!ret) {
340 		if (awb)
341 			value |= (ISPCTRL00_AWB_EN | ISPCTRL00_AWB_GAIN_EN);
342 		else
343 			value &= ~(ISPCTRL00_AWB_EN | ISPCTRL00_AWB_GAIN_EN);
344 		ret = regmap_write(regmap, REG_ISP_CTRL00, value);
345 		if (ret)
346 			return ret;
347 	}
348 
349 	if (!awb) {
350 		ret = regmap_write(regmap, REG_BGAIN,
351 				   ov7740->blue_balance->val);
352 		if (ret)
353 			return ret;
354 
355 		ret = regmap_write(regmap, REG_RGAIN, ov7740->red_balance->val);
356 		if (ret)
357 			return ret;
358 	}
359 
360 	return 0;
361 }
362 
363 static int ov7740_set_saturation(struct regmap *regmap, int value)
364 {
365 	int ret;
366 
367 	ret = regmap_write(regmap, REG_USAT, (unsigned char)value);
368 	if (ret)
369 		return ret;
370 
371 	return regmap_write(regmap, REG_VSAT, (unsigned char)value);
372 }
373 
374 static int ov7740_set_gain(struct regmap *regmap, int value)
375 {
376 	int ret;
377 
378 	ret = regmap_write(regmap, REG_GAIN, value & 0xff);
379 	if (ret)
380 		return ret;
381 
382 	ret = regmap_update_bits(regmap, REG_CTRL15,
383 				 REG15_GAIN_MSB, (value >> 8) & 0x3);
384 	if (!ret)
385 		ret = regmap_update_bits(regmap, REG_REG13, REG13_AGC_EN, 0);
386 
387 	return ret;
388 }
389 
390 static int ov7740_set_autogain(struct regmap *regmap, int value)
391 {
392 	unsigned int reg;
393 	int ret;
394 
395 	ret = regmap_read(regmap, REG_REG13, &reg);
396 	if (ret)
397 		return ret;
398 	if (value)
399 		reg |= REG13_AGC_EN;
400 	else
401 		reg &= ~REG13_AGC_EN;
402 	return regmap_write(regmap, REG_REG13, reg);
403 }
404 
405 static int ov7740_set_brightness(struct regmap *regmap, int value)
406 {
407 	/* Turn off AEC/AGC */
408 	regmap_update_bits(regmap, REG_REG13, REG13_AEC_EN, 0);
409 	regmap_update_bits(regmap, REG_REG13, REG13_AGC_EN, 0);
410 
411 	if (value >= 0) {
412 		regmap_write(regmap, REG_YBRIGHT, (unsigned char)value);
413 		regmap_update_bits(regmap, REG_SGNSET, SGNSET_YBRIGHT_MASK, 0);
414 	} else{
415 		regmap_write(regmap, REG_YBRIGHT, (unsigned char)(-value));
416 		regmap_update_bits(regmap, REG_SGNSET, SGNSET_YBRIGHT_MASK, 1);
417 	}
418 
419 	return 0;
420 }
421 
422 static int ov7740_set_contrast(struct regmap *regmap, int value)
423 {
424 	return regmap_write(regmap, REG_YGAIN, (unsigned char)value);
425 }
426 
427 static int ov7740_get_gain(struct ov7740 *ov7740, struct v4l2_ctrl *ctrl)
428 {
429 	struct regmap *regmap = ov7740->regmap;
430 	unsigned int value0, value1;
431 	int ret;
432 
433 	if (!ctrl->val)
434 		return 0;
435 
436 	ret = regmap_read(regmap, REG_GAIN, &value0);
437 	if (ret)
438 		return ret;
439 	ret = regmap_read(regmap, REG_CTRL15, &value1);
440 	if (ret)
441 		return ret;
442 
443 	ov7740->gain->val = (value1 << 8) | (value0 & 0xff);
444 
445 	return 0;
446 }
447 
448 static int ov7740_get_exp(struct ov7740 *ov7740, struct v4l2_ctrl *ctrl)
449 {
450 	struct regmap *regmap = ov7740->regmap;
451 	unsigned int value0, value1;
452 	int ret;
453 
454 	if (ctrl->val == V4L2_EXPOSURE_MANUAL)
455 		return 0;
456 
457 	ret = regmap_read(regmap, REG_AEC, &value0);
458 	if (ret)
459 		return ret;
460 	ret = regmap_read(regmap, REG_HAEC, &value1);
461 	if (ret)
462 		return ret;
463 
464 	ov7740->exposure->val = (value1 << 8) | (value0 & 0xff);
465 
466 	return 0;
467 }
468 
469 static int ov7740_set_exp(struct regmap *regmap, int value)
470 {
471 	int ret;
472 
473 	/* Turn off AEC/AGC */
474 	ret = regmap_update_bits(regmap, REG_REG13,
475 				 REG13_AEC_EN | REG13_AGC_EN, 0);
476 	if (ret)
477 		return ret;
478 
479 	ret = regmap_write(regmap, REG_AEC, (unsigned char)value);
480 	if (ret)
481 		return ret;
482 
483 	return regmap_write(regmap, REG_HAEC, (unsigned char)(value >> 8));
484 }
485 
486 static int ov7740_set_autoexp(struct regmap *regmap,
487 			      enum v4l2_exposure_auto_type value)
488 {
489 	unsigned int reg;
490 	int ret;
491 
492 	ret = regmap_read(regmap, REG_REG13, &reg);
493 	if (!ret) {
494 		if (value == V4L2_EXPOSURE_AUTO)
495 			reg |= (REG13_AEC_EN | REG13_AGC_EN);
496 		else
497 			reg &= ~(REG13_AEC_EN | REG13_AGC_EN);
498 		ret = regmap_write(regmap, REG_REG13, reg);
499 	}
500 
501 	return ret;
502 }
503 
504 
505 static int ov7740_get_volatile_ctrl(struct v4l2_ctrl *ctrl)
506 {
507 	struct ov7740 *ov7740 = container_of(ctrl->handler,
508 					     struct ov7740, ctrl_handler);
509 	int ret;
510 
511 	switch (ctrl->id) {
512 	case V4L2_CID_AUTOGAIN:
513 		ret = ov7740_get_gain(ov7740, ctrl);
514 		break;
515 	case V4L2_CID_EXPOSURE_AUTO:
516 		ret = ov7740_get_exp(ov7740, ctrl);
517 		break;
518 	default:
519 		ret = -EINVAL;
520 		break;
521 	}
522 	return ret;
523 }
524 
525 static int ov7740_set_ctrl(struct v4l2_ctrl *ctrl)
526 {
527 	struct ov7740 *ov7740 = container_of(ctrl->handler,
528 					     struct ov7740, ctrl_handler);
529 	struct i2c_client *client = v4l2_get_subdevdata(&ov7740->subdev);
530 	struct regmap *regmap = ov7740->regmap;
531 	int ret;
532 	u8 val;
533 
534 	if (!pm_runtime_get_if_in_use(&client->dev))
535 		return 0;
536 
537 	switch (ctrl->id) {
538 	case V4L2_CID_AUTO_WHITE_BALANCE:
539 		ret = ov7740_set_white_balance(ov7740, ctrl->val);
540 		break;
541 	case V4L2_CID_SATURATION:
542 		ret = ov7740_set_saturation(regmap, ctrl->val);
543 		break;
544 	case V4L2_CID_BRIGHTNESS:
545 		ret = ov7740_set_brightness(regmap, ctrl->val);
546 		break;
547 	case V4L2_CID_CONTRAST:
548 		ret = ov7740_set_contrast(regmap, ctrl->val);
549 		break;
550 	case V4L2_CID_VFLIP:
551 		val = ctrl->val ? REG0C_IMG_FLIP : 0x00;
552 		ret = regmap_update_bits(regmap, REG_REG0C,
553 					 REG0C_IMG_FLIP, val);
554 		break;
555 	case V4L2_CID_HFLIP:
556 		val = ctrl->val ? REG0C_IMG_MIRROR : 0x00;
557 		ret = regmap_update_bits(regmap, REG_REG0C,
558 					 REG0C_IMG_MIRROR, val);
559 		break;
560 	case V4L2_CID_AUTOGAIN:
561 		if (!ctrl->val)
562 			ret = ov7740_set_gain(regmap, ov7740->gain->val);
563 		else
564 			ret = ov7740_set_autogain(regmap, ctrl->val);
565 		break;
566 
567 	case V4L2_CID_EXPOSURE_AUTO:
568 		if (ctrl->val == V4L2_EXPOSURE_MANUAL)
569 			ret = ov7740_set_exp(regmap, ov7740->exposure->val);
570 		else
571 			ret = ov7740_set_autoexp(regmap, ctrl->val);
572 		break;
573 	default:
574 		ret = -EINVAL;
575 		break;
576 	}
577 
578 	pm_runtime_put(&client->dev);
579 
580 	return ret;
581 }
582 
583 static const struct v4l2_ctrl_ops ov7740_ctrl_ops = {
584 	.g_volatile_ctrl = ov7740_get_volatile_ctrl,
585 	.s_ctrl = ov7740_set_ctrl,
586 };
587 
588 static int ov7740_start_streaming(struct ov7740 *ov7740)
589 {
590 	int ret;
591 
592 	if (ov7740->fmt) {
593 		ret = regmap_multi_reg_write(ov7740->regmap,
594 					     ov7740->fmt->regs,
595 					     ov7740->fmt->reg_num);
596 		if (ret)
597 			return ret;
598 	}
599 
600 	if (ov7740->frmsize) {
601 		ret = regmap_multi_reg_write(ov7740->regmap,
602 					     ov7740->frmsize->regs,
603 					     ov7740->frmsize->reg_num);
604 		if (ret)
605 			return ret;
606 	}
607 
608 	return __v4l2_ctrl_handler_setup(ov7740->subdev.ctrl_handler);
609 }
610 
611 static int ov7740_set_stream(struct v4l2_subdev *sd, int enable)
612 {
613 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
614 	struct i2c_client *client = v4l2_get_subdevdata(sd);
615 	int ret = 0;
616 
617 	mutex_lock(&ov7740->mutex);
618 
619 	if (enable) {
620 		ret = pm_runtime_resume_and_get(&client->dev);
621 		if (ret < 0)
622 			goto err_unlock;
623 
624 		ret = ov7740_start_streaming(ov7740);
625 		if (ret)
626 			goto err_rpm_put;
627 	} else {
628 		pm_runtime_put(&client->dev);
629 	}
630 
631 	mutex_unlock(&ov7740->mutex);
632 	return ret;
633 
634 err_rpm_put:
635 	pm_runtime_put(&client->dev);
636 err_unlock:
637 	mutex_unlock(&ov7740->mutex);
638 	return ret;
639 }
640 
641 static int ov7740_g_frame_interval(struct v4l2_subdev *sd,
642 				   struct v4l2_subdev_frame_interval *ival)
643 {
644 	struct v4l2_fract *tpf = &ival->interval;
645 
646 
647 	tpf->numerator = 1;
648 	tpf->denominator = 60;
649 
650 	return 0;
651 }
652 
653 static int ov7740_s_frame_interval(struct v4l2_subdev *sd,
654 				   struct v4l2_subdev_frame_interval *ival)
655 {
656 	struct v4l2_fract *tpf = &ival->interval;
657 
658 
659 	tpf->numerator = 1;
660 	tpf->denominator = 60;
661 
662 	return 0;
663 }
664 
665 static const struct v4l2_subdev_video_ops ov7740_subdev_video_ops = {
666 	.s_stream = ov7740_set_stream,
667 	.s_frame_interval = ov7740_s_frame_interval,
668 	.g_frame_interval = ov7740_g_frame_interval,
669 };
670 
671 static const struct reg_sequence ov7740_format_yuyv[] = {
672 	{0x12, 0x00},
673 	{0x36, 0x3f},
674 	{0x80, 0x7f},
675 	{0x83, 0x01},
676 };
677 
678 static const struct reg_sequence ov7740_format_bggr8[] = {
679 	{0x36, 0x2f},
680 	{0x80, 0x01},
681 	{0x83, 0x04},
682 };
683 
684 static const struct ov7740_pixfmt ov7740_formats[] = {
685 	{
686 		.mbus_code = MEDIA_BUS_FMT_YUYV8_2X8,
687 		.colorspace = V4L2_COLORSPACE_SRGB,
688 		.regs = ov7740_format_yuyv,
689 		.reg_num = ARRAY_SIZE(ov7740_format_yuyv),
690 	},
691 	{
692 		.mbus_code = MEDIA_BUS_FMT_SBGGR8_1X8,
693 		.colorspace = V4L2_COLORSPACE_SRGB,
694 		.regs = ov7740_format_bggr8,
695 		.reg_num = ARRAY_SIZE(ov7740_format_bggr8),
696 	}
697 };
698 #define N_OV7740_FMTS ARRAY_SIZE(ov7740_formats)
699 
700 static int ov7740_enum_mbus_code(struct v4l2_subdev *sd,
701 				 struct v4l2_subdev_state *sd_state,
702 				 struct v4l2_subdev_mbus_code_enum *code)
703 {
704 	if (code->pad || code->index >= N_OV7740_FMTS)
705 		return -EINVAL;
706 
707 	code->code = ov7740_formats[code->index].mbus_code;
708 
709 	return 0;
710 }
711 
712 static int ov7740_enum_frame_interval(struct v4l2_subdev *sd,
713 				struct v4l2_subdev_state *sd_state,
714 				struct v4l2_subdev_frame_interval_enum *fie)
715 {
716 	if (fie->pad)
717 		return -EINVAL;
718 
719 	if (fie->index >= 1)
720 		return -EINVAL;
721 
722 	if ((fie->width != VGA_WIDTH) || (fie->height != VGA_HEIGHT))
723 		return -EINVAL;
724 
725 	fie->interval.numerator = 1;
726 	fie->interval.denominator = 60;
727 
728 	return 0;
729 }
730 
731 static int ov7740_enum_frame_size(struct v4l2_subdev *sd,
732 				  struct v4l2_subdev_state *sd_state,
733 				  struct v4l2_subdev_frame_size_enum *fse)
734 {
735 	if (fse->pad)
736 		return -EINVAL;
737 
738 	if (fse->index > 0)
739 		return -EINVAL;
740 
741 	fse->min_width = fse->max_width = VGA_WIDTH;
742 	fse->min_height = fse->max_height = VGA_HEIGHT;
743 
744 	return 0;
745 }
746 
747 static int ov7740_try_fmt_internal(struct v4l2_subdev *sd,
748 				   struct v4l2_mbus_framefmt *fmt,
749 				   const struct ov7740_pixfmt **ret_fmt,
750 				   const struct ov7740_framesize **ret_frmsize)
751 {
752 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
753 	const struct ov7740_framesize *fsize = &ov7740_framesizes[0];
754 	int index, i;
755 
756 	for (index = 0; index < N_OV7740_FMTS; index++) {
757 		if (ov7740_formats[index].mbus_code == fmt->code)
758 			break;
759 	}
760 	if (index >= N_OV7740_FMTS) {
761 		/* default to first format */
762 		index = 0;
763 		fmt->code = ov7740_formats[0].mbus_code;
764 	}
765 	if (ret_fmt != NULL)
766 		*ret_fmt = ov7740_formats + index;
767 
768 	for (i = 0; i < ARRAY_SIZE(ov7740_framesizes); i++) {
769 		if ((fsize->width >= fmt->width) &&
770 		    (fsize->height >= fmt->height)) {
771 			fmt->width = fsize->width;
772 			fmt->height = fsize->height;
773 			break;
774 		}
775 
776 		fsize++;
777 	}
778 	if (i >= ARRAY_SIZE(ov7740_framesizes)) {
779 		fsize = &ov7740_framesizes[0];
780 		fmt->width = fsize->width;
781 		fmt->height = fsize->height;
782 	}
783 	if (ret_frmsize != NULL)
784 		*ret_frmsize = fsize;
785 
786 	fmt->field = V4L2_FIELD_NONE;
787 	fmt->colorspace = ov7740_formats[index].colorspace;
788 
789 	ov7740->format = *fmt;
790 
791 	return 0;
792 }
793 
794 static int ov7740_set_fmt(struct v4l2_subdev *sd,
795 			  struct v4l2_subdev_state *sd_state,
796 			  struct v4l2_subdev_format *format)
797 {
798 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
799 	const struct ov7740_pixfmt *ovfmt;
800 	const struct ov7740_framesize *fsize;
801 	struct v4l2_mbus_framefmt *mbus_fmt;
802 	int ret;
803 
804 	mutex_lock(&ov7740->mutex);
805 	if (format->pad) {
806 		ret = -EINVAL;
807 		goto error;
808 	}
809 
810 	if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
811 		ret = ov7740_try_fmt_internal(sd, &format->format, NULL, NULL);
812 		if (ret)
813 			goto error;
814 
815 		mbus_fmt = v4l2_subdev_state_get_format(sd_state, format->pad);
816 		*mbus_fmt = format->format;
817 		mutex_unlock(&ov7740->mutex);
818 		return 0;
819 	}
820 
821 	ret = ov7740_try_fmt_internal(sd, &format->format, &ovfmt, &fsize);
822 	if (ret)
823 		goto error;
824 
825 	ov7740->fmt = ovfmt;
826 	ov7740->frmsize = fsize;
827 
828 	mutex_unlock(&ov7740->mutex);
829 	return 0;
830 
831 error:
832 	mutex_unlock(&ov7740->mutex);
833 	return ret;
834 }
835 
836 static int ov7740_get_fmt(struct v4l2_subdev *sd,
837 			  struct v4l2_subdev_state *sd_state,
838 			  struct v4l2_subdev_format *format)
839 {
840 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
841 	struct v4l2_mbus_framefmt *mbus_fmt;
842 
843 	mutex_lock(&ov7740->mutex);
844 	if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
845 		mbus_fmt = v4l2_subdev_state_get_format(sd_state, 0);
846 		format->format = *mbus_fmt;
847 	} else {
848 		format->format = ov7740->format;
849 	}
850 	mutex_unlock(&ov7740->mutex);
851 
852 	return 0;
853 }
854 
855 static const struct v4l2_subdev_pad_ops ov7740_subdev_pad_ops = {
856 	.enum_frame_interval = ov7740_enum_frame_interval,
857 	.enum_frame_size = ov7740_enum_frame_size,
858 	.enum_mbus_code = ov7740_enum_mbus_code,
859 	.get_fmt = ov7740_get_fmt,
860 	.set_fmt = ov7740_set_fmt,
861 };
862 
863 static const struct v4l2_subdev_ops ov7740_subdev_ops = {
864 	.core	= &ov7740_subdev_core_ops,
865 	.video	= &ov7740_subdev_video_ops,
866 	.pad	= &ov7740_subdev_pad_ops,
867 };
868 
869 static void ov7740_get_default_format(struct v4l2_subdev *sd,
870 				      struct v4l2_mbus_framefmt *format)
871 {
872 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
873 
874 	format->width = ov7740->frmsize->width;
875 	format->height = ov7740->frmsize->height;
876 	format->colorspace = ov7740->fmt->colorspace;
877 	format->code = ov7740->fmt->mbus_code;
878 	format->field = V4L2_FIELD_NONE;
879 }
880 
881 static int ov7740_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
882 {
883 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
884 	struct v4l2_mbus_framefmt *format =
885 				v4l2_subdev_state_get_format(fh->state, 0);
886 
887 	mutex_lock(&ov7740->mutex);
888 	ov7740_get_default_format(sd, format);
889 	mutex_unlock(&ov7740->mutex);
890 
891 	return 0;
892 }
893 
894 static const struct v4l2_subdev_internal_ops ov7740_subdev_internal_ops = {
895 	.open = ov7740_open,
896 };
897 
898 static int ov7740_probe_dt(struct i2c_client *client,
899 			   struct ov7740 *ov7740)
900 {
901 	ov7740->resetb_gpio = devm_gpiod_get_optional(&client->dev, "reset",
902 			GPIOD_OUT_HIGH);
903 	if (IS_ERR(ov7740->resetb_gpio)) {
904 		dev_info(&client->dev, "can't get %s GPIO\n", "reset");
905 		return PTR_ERR(ov7740->resetb_gpio);
906 	}
907 
908 	ov7740->pwdn_gpio = devm_gpiod_get_optional(&client->dev, "powerdown",
909 			GPIOD_OUT_LOW);
910 	if (IS_ERR(ov7740->pwdn_gpio)) {
911 		dev_info(&client->dev, "can't get %s GPIO\n", "powerdown");
912 		return PTR_ERR(ov7740->pwdn_gpio);
913 	}
914 
915 	return 0;
916 }
917 
918 static int ov7740_detect(struct ov7740 *ov7740)
919 {
920 	struct regmap *regmap = ov7740->regmap;
921 	unsigned int midh, midl, pidh, pidl;
922 	int ret;
923 
924 	ret = regmap_read(regmap, REG_MIDH, &midh);
925 	if (ret)
926 		return ret;
927 	if (midh != 0x7f)
928 		return -ENODEV;
929 
930 	ret = regmap_read(regmap, REG_MIDL, &midl);
931 	if (ret)
932 		return ret;
933 	if (midl != 0xa2)
934 		return -ENODEV;
935 
936 	ret = regmap_read(regmap, REG_PIDH, &pidh);
937 	if (ret)
938 		return ret;
939 	if (pidh != 0x77)
940 		return -ENODEV;
941 
942 	ret = regmap_read(regmap, REG_PIDL, &pidl);
943 	if (ret)
944 		return ret;
945 	if ((pidl != 0x40) && (pidl != 0x41) && (pidl != 0x42))
946 		return -ENODEV;
947 
948 	return 0;
949 }
950 
951 static int ov7740_init_controls(struct ov7740 *ov7740)
952 {
953 	struct i2c_client *client = v4l2_get_subdevdata(&ov7740->subdev);
954 	struct v4l2_ctrl_handler *ctrl_hdlr = &ov7740->ctrl_handler;
955 	int ret;
956 
957 	ret = v4l2_ctrl_handler_init(ctrl_hdlr, 12);
958 	if (ret < 0)
959 		return ret;
960 
961 	ctrl_hdlr->lock = &ov7740->mutex;
962 	ov7740->auto_wb = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
963 					  V4L2_CID_AUTO_WHITE_BALANCE,
964 					  0, 1, 1, 1);
965 	ov7740->blue_balance = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
966 					       V4L2_CID_BLUE_BALANCE,
967 					       0, 0xff, 1, 0x80);
968 	ov7740->red_balance = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
969 					      V4L2_CID_RED_BALANCE,
970 					      0, 0xff, 1, 0x80);
971 
972 	ov7740->brightness = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
973 					     V4L2_CID_BRIGHTNESS,
974 					     -255, 255, 1, 0);
975 	ov7740->contrast = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
976 					   V4L2_CID_CONTRAST,
977 					   0, 127, 1, 0x20);
978 	ov7740->saturation = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
979 			  V4L2_CID_SATURATION, 0, 256, 1, 0x80);
980 	ov7740->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
981 					V4L2_CID_HFLIP, 0, 1, 1, 0);
982 	ov7740->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
983 					V4L2_CID_VFLIP, 0, 1, 1, 0);
984 
985 	ov7740->gain = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
986 				       V4L2_CID_GAIN, 0, 1023, 1, 500);
987 
988 	ov7740->auto_gain = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
989 					    V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
990 
991 	ov7740->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov7740_ctrl_ops,
992 					   V4L2_CID_EXPOSURE, 0, 65535, 1, 500);
993 
994 	ov7740->auto_exposure = v4l2_ctrl_new_std_menu(ctrl_hdlr,
995 					&ov7740_ctrl_ops,
996 					V4L2_CID_EXPOSURE_AUTO,
997 					V4L2_EXPOSURE_MANUAL, 0,
998 					V4L2_EXPOSURE_AUTO);
999 
1000 	v4l2_ctrl_auto_cluster(3, &ov7740->auto_wb, 0, false);
1001 	v4l2_ctrl_auto_cluster(2, &ov7740->auto_gain, 0, true);
1002 	v4l2_ctrl_auto_cluster(2, &ov7740->auto_exposure,
1003 			       V4L2_EXPOSURE_MANUAL, true);
1004 
1005 	if (ctrl_hdlr->error) {
1006 		ret = ctrl_hdlr->error;
1007 		dev_err(&client->dev, "controls initialisation failed (%d)\n",
1008 			ret);
1009 		goto error;
1010 	}
1011 
1012 	ret = v4l2_ctrl_handler_setup(ctrl_hdlr);
1013 	if (ret) {
1014 		dev_err(&client->dev, "%s control init failed (%d)\n",
1015 			__func__, ret);
1016 		goto error;
1017 	}
1018 
1019 	ov7740->subdev.ctrl_handler = ctrl_hdlr;
1020 	return 0;
1021 
1022 error:
1023 	v4l2_ctrl_handler_free(ctrl_hdlr);
1024 	mutex_destroy(&ov7740->mutex);
1025 	return ret;
1026 }
1027 
1028 static void ov7740_free_controls(struct ov7740 *ov7740)
1029 {
1030 	v4l2_ctrl_handler_free(ov7740->subdev.ctrl_handler);
1031 	mutex_destroy(&ov7740->mutex);
1032 }
1033 
1034 #define OV7740_MAX_REGISTER     0xff
1035 static const struct regmap_config ov7740_regmap_config = {
1036 	.reg_bits	= 8,
1037 	.val_bits	= 8,
1038 	.max_register	= OV7740_MAX_REGISTER,
1039 };
1040 
1041 static int ov7740_probe(struct i2c_client *client)
1042 {
1043 	struct ov7740 *ov7740;
1044 	struct v4l2_subdev *sd;
1045 	int ret;
1046 
1047 	ov7740 = devm_kzalloc(&client->dev, sizeof(*ov7740), GFP_KERNEL);
1048 	if (!ov7740)
1049 		return -ENOMEM;
1050 
1051 	ov7740->xvclk = devm_clk_get(&client->dev, "xvclk");
1052 	if (IS_ERR(ov7740->xvclk)) {
1053 		ret = PTR_ERR(ov7740->xvclk);
1054 		dev_err(&client->dev,
1055 			"OV7740: fail to get xvclk: %d\n", ret);
1056 		return ret;
1057 	}
1058 
1059 	ret = ov7740_probe_dt(client, ov7740);
1060 	if (ret)
1061 		return ret;
1062 
1063 	ov7740->regmap = devm_regmap_init_sccb(client, &ov7740_regmap_config);
1064 	if (IS_ERR(ov7740->regmap)) {
1065 		ret = PTR_ERR(ov7740->regmap);
1066 		dev_err(&client->dev, "Failed to allocate register map: %d\n",
1067 			ret);
1068 		return ret;
1069 	}
1070 
1071 	sd = &ov7740->subdev;
1072 	v4l2_i2c_subdev_init(sd, client, &ov7740_subdev_ops);
1073 
1074 	sd->internal_ops = &ov7740_subdev_internal_ops;
1075 	sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | V4L2_SUBDEV_FL_HAS_EVENTS;
1076 
1077 	ov7740->pad.flags = MEDIA_PAD_FL_SOURCE;
1078 	sd->entity.function = MEDIA_ENT_F_CAM_SENSOR;
1079 	ret = media_entity_pads_init(&sd->entity, 1, &ov7740->pad);
1080 	if (ret)
1081 		return ret;
1082 
1083 	ret = ov7740_set_power(ov7740, 1);
1084 	if (ret)
1085 		return ret;
1086 
1087 	pm_runtime_set_active(&client->dev);
1088 	pm_runtime_enable(&client->dev);
1089 
1090 	ret = ov7740_detect(ov7740);
1091 	if (ret)
1092 		goto error_detect;
1093 
1094 	mutex_init(&ov7740->mutex);
1095 
1096 	ret = ov7740_init_controls(ov7740);
1097 	if (ret)
1098 		goto error_init_controls;
1099 
1100 	v4l_info(client, "chip found @ 0x%02x (%s)\n",
1101 			client->addr << 1, client->adapter->name);
1102 
1103 	ov7740->fmt = &ov7740_formats[0];
1104 	ov7740->frmsize = &ov7740_framesizes[0];
1105 
1106 	ov7740_get_default_format(sd, &ov7740->format);
1107 
1108 	ret = v4l2_async_register_subdev(sd);
1109 	if (ret)
1110 		goto error_async_register;
1111 
1112 	pm_runtime_idle(&client->dev);
1113 
1114 	return 0;
1115 
1116 error_async_register:
1117 	v4l2_ctrl_handler_free(ov7740->subdev.ctrl_handler);
1118 error_init_controls:
1119 	ov7740_free_controls(ov7740);
1120 error_detect:
1121 	pm_runtime_disable(&client->dev);
1122 	pm_runtime_set_suspended(&client->dev);
1123 	ov7740_set_power(ov7740, 0);
1124 	media_entity_cleanup(&ov7740->subdev.entity);
1125 
1126 	return ret;
1127 }
1128 
1129 static void ov7740_remove(struct i2c_client *client)
1130 {
1131 	struct v4l2_subdev *sd = i2c_get_clientdata(client);
1132 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
1133 
1134 	mutex_destroy(&ov7740->mutex);
1135 	v4l2_ctrl_handler_free(ov7740->subdev.ctrl_handler);
1136 	media_entity_cleanup(&ov7740->subdev.entity);
1137 	v4l2_async_unregister_subdev(sd);
1138 	ov7740_free_controls(ov7740);
1139 
1140 	pm_runtime_get_sync(&client->dev);
1141 	pm_runtime_disable(&client->dev);
1142 	pm_runtime_set_suspended(&client->dev);
1143 	pm_runtime_put_noidle(&client->dev);
1144 
1145 	ov7740_set_power(ov7740, 0);
1146 }
1147 
1148 static int __maybe_unused ov7740_runtime_suspend(struct device *dev)
1149 {
1150 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
1151 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
1152 
1153 	ov7740_set_power(ov7740, 0);
1154 
1155 	return 0;
1156 }
1157 
1158 static int __maybe_unused ov7740_runtime_resume(struct device *dev)
1159 {
1160 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
1161 	struct ov7740 *ov7740 = container_of(sd, struct ov7740, subdev);
1162 
1163 	return ov7740_set_power(ov7740, 1);
1164 }
1165 
1166 static const struct i2c_device_id ov7740_id[] = {
1167 	{ "ov7740", 0 },
1168 	{ /* sentinel */ }
1169 };
1170 MODULE_DEVICE_TABLE(i2c, ov7740_id);
1171 
1172 static const struct dev_pm_ops ov7740_pm_ops = {
1173 	SET_RUNTIME_PM_OPS(ov7740_runtime_suspend, ov7740_runtime_resume, NULL)
1174 };
1175 
1176 static const struct of_device_id ov7740_of_match[] = {
1177 	{.compatible = "ovti,ov7740", },
1178 	{ /* sentinel */ },
1179 };
1180 MODULE_DEVICE_TABLE(of, ov7740_of_match);
1181 
1182 static struct i2c_driver ov7740_i2c_driver = {
1183 	.driver = {
1184 		.name = "ov7740",
1185 		.pm = &ov7740_pm_ops,
1186 		.of_match_table = ov7740_of_match,
1187 	},
1188 	.probe    = ov7740_probe,
1189 	.remove   = ov7740_remove,
1190 	.id_table = ov7740_id,
1191 };
1192 module_i2c_driver(ov7740_i2c_driver);
1193 
1194 MODULE_DESCRIPTION("The V4L2 driver for Omnivision 7740 sensor");
1195 MODULE_AUTHOR("Songjun Wu <songjun.wu@atmel.com>");
1196 MODULE_LICENSE("GPL v2");
1197