xref: /openbmc/linux/drivers/media/i2c/ov5675.c (revision 255490f9)
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2019 Intel Corporation.
3 
4 #include <asm/unaligned.h>
5 #include <linux/acpi.h>
6 #include <linux/delay.h>
7 #include <linux/i2c.h>
8 #include <linux/module.h>
9 #include <linux/pm_runtime.h>
10 #include <media/v4l2-ctrls.h>
11 #include <media/v4l2-device.h>
12 #include <media/v4l2-fwnode.h>
13 
14 #define OV5675_REG_VALUE_08BIT		1
15 #define OV5675_REG_VALUE_16BIT		2
16 #define OV5675_REG_VALUE_24BIT		3
17 
18 #define OV5675_LINK_FREQ_450MHZ		450000000ULL
19 #define OV5675_SCLK			90000000LL
20 #define OV5675_MCLK			19200000
21 #define OV5675_DATA_LANES		2
22 #define OV5675_RGB_DEPTH		10
23 
24 #define OV5675_REG_CHIP_ID		0x300a
25 #define OV5675_CHIP_ID			0x5675
26 
27 #define OV5675_REG_MODE_SELECT		0x0100
28 #define OV5675_MODE_STANDBY		0x00
29 #define OV5675_MODE_STREAMING		0x01
30 
31 /* vertical-timings from sensor */
32 #define OV5675_REG_VTS			0x380e
33 #define OV5675_VTS_30FPS		0x07e4
34 #define OV5675_VTS_30FPS_MIN		0x07e4
35 #define OV5675_VTS_MAX			0x7fff
36 
37 /* horizontal-timings from sensor */
38 #define OV5675_REG_HTS			0x380c
39 
40 /* Exposure controls from sensor */
41 #define OV5675_REG_EXPOSURE		0x3500
42 #define	OV5675_EXPOSURE_MIN		4
43 #define OV5675_EXPOSURE_MAX_MARGIN	4
44 #define	OV5675_EXPOSURE_STEP		1
45 
46 /* Analog gain controls from sensor */
47 #define OV5675_REG_ANALOG_GAIN		0x3508
48 #define	OV5675_ANAL_GAIN_MIN		128
49 #define	OV5675_ANAL_GAIN_MAX		2047
50 #define	OV5675_ANAL_GAIN_STEP		1
51 
52 /* Digital gain controls from sensor */
53 #define OV5675_REG_DIGITAL_GAIN		0x350a
54 #define OV5675_REG_MWB_R_GAIN		0x5019
55 #define OV5675_REG_MWB_G_GAIN		0x501b
56 #define OV5675_REG_MWB_B_GAIN		0x501d
57 #define OV5675_DGTL_GAIN_MIN		1024
58 #define OV5675_DGTL_GAIN_MAX		4095
59 #define OV5675_DGTL_GAIN_STEP		1
60 #define OV5675_DGTL_GAIN_DEFAULT	1024
61 
62 /* Group Access */
63 #define OV5675_REG_GROUP_ACCESS		0x3208
64 #define OV5675_GROUP_HOLD_START		0x0
65 #define OV5675_GROUP_HOLD_END		0x10
66 #define OV5675_GROUP_HOLD_LAUNCH	0xa0
67 
68 /* Test Pattern Control */
69 #define OV5675_REG_TEST_PATTERN		0x4503
70 #define OV5675_TEST_PATTERN_ENABLE	BIT(7)
71 #define OV5675_TEST_PATTERN_BAR_SHIFT	2
72 
73 /* Flip Mirror Controls from sensor */
74 #define OV5675_REG_FORMAT1		0x3820
75 #define OV5675_REG_FORMAT2		0x373d
76 
77 #define to_ov5675(_sd)			container_of(_sd, struct ov5675, sd)
78 
79 enum {
80 	OV5675_LINK_FREQ_900MBPS,
81 };
82 
83 struct ov5675_reg {
84 	u16 address;
85 	u8 val;
86 };
87 
88 struct ov5675_reg_list {
89 	u32 num_of_regs;
90 	const struct ov5675_reg *regs;
91 };
92 
93 struct ov5675_link_freq_config {
94 	const struct ov5675_reg_list reg_list;
95 };
96 
97 struct ov5675_mode {
98 	/* Frame width in pixels */
99 	u32 width;
100 
101 	/* Frame height in pixels */
102 	u32 height;
103 
104 	/* Horizontal timining size */
105 	u32 hts;
106 
107 	/* Default vertical timining size */
108 	u32 vts_def;
109 
110 	/* Min vertical timining size */
111 	u32 vts_min;
112 
113 	/* Link frequency needed for this resolution */
114 	u32 link_freq_index;
115 
116 	/* Sensor register settings for this resolution */
117 	const struct ov5675_reg_list reg_list;
118 };
119 
120 static const struct ov5675_reg mipi_data_rate_900mbps[] = {
121 	{0x0103, 0x01},
122 	{0x0100, 0x00},
123 	{0x0300, 0x04},
124 	{0x0302, 0x8d},
125 	{0x0303, 0x00},
126 	{0x030d, 0x26},
127 };
128 
129 static const struct ov5675_reg mode_2592x1944_regs[] = {
130 	{0x3002, 0x21},
131 	{0x3107, 0x23},
132 	{0x3501, 0x20},
133 	{0x3503, 0x0c},
134 	{0x3508, 0x03},
135 	{0x3509, 0x00},
136 	{0x3600, 0x66},
137 	{0x3602, 0x30},
138 	{0x3610, 0xa5},
139 	{0x3612, 0x93},
140 	{0x3620, 0x80},
141 	{0x3642, 0x0e},
142 	{0x3661, 0x00},
143 	{0x3662, 0x10},
144 	{0x3664, 0xf3},
145 	{0x3665, 0x9e},
146 	{0x3667, 0xa5},
147 	{0x366e, 0x55},
148 	{0x366f, 0x55},
149 	{0x3670, 0x11},
150 	{0x3671, 0x11},
151 	{0x3672, 0x11},
152 	{0x3673, 0x11},
153 	{0x3714, 0x24},
154 	{0x371a, 0x3e},
155 	{0x3733, 0x10},
156 	{0x3734, 0x00},
157 	{0x373d, 0x24},
158 	{0x3764, 0x20},
159 	{0x3765, 0x20},
160 	{0x3766, 0x12},
161 	{0x37a1, 0x14},
162 	{0x37a8, 0x1c},
163 	{0x37ab, 0x0f},
164 	{0x37c2, 0x04},
165 	{0x37cb, 0x00},
166 	{0x37cc, 0x00},
167 	{0x37cd, 0x00},
168 	{0x37ce, 0x00},
169 	{0x37d8, 0x02},
170 	{0x37d9, 0x08},
171 	{0x37dc, 0x04},
172 	{0x3800, 0x00},
173 	{0x3801, 0x00},
174 	{0x3802, 0x00},
175 	{0x3803, 0x04},
176 	{0x3804, 0x0a},
177 	{0x3805, 0x3f},
178 	{0x3806, 0x07},
179 	{0x3807, 0xb3},
180 	{0x3808, 0x0a},
181 	{0x3809, 0x20},
182 	{0x380a, 0x07},
183 	{0x380b, 0x98},
184 	{0x380c, 0x02},
185 	{0x380d, 0xee},
186 	{0x380e, 0x07},
187 	{0x380f, 0xe4},
188 	{0x3811, 0x10},
189 	{0x3813, 0x0d},
190 	{0x3814, 0x01},
191 	{0x3815, 0x01},
192 	{0x3816, 0x01},
193 	{0x3817, 0x01},
194 	{0x381e, 0x02},
195 	{0x3820, 0x88},
196 	{0x3821, 0x01},
197 	{0x3832, 0x04},
198 	{0x3c80, 0x01},
199 	{0x3c82, 0x00},
200 	{0x3c83, 0xc8},
201 	{0x3c8c, 0x0f},
202 	{0x3c8d, 0xa0},
203 	{0x3c90, 0x07},
204 	{0x3c91, 0x00},
205 	{0x3c92, 0x00},
206 	{0x3c93, 0x00},
207 	{0x3c94, 0xd0},
208 	{0x3c95, 0x50},
209 	{0x3c96, 0x35},
210 	{0x3c97, 0x00},
211 	{0x4001, 0xe0},
212 	{0x4008, 0x02},
213 	{0x4009, 0x0d},
214 	{0x400f, 0x80},
215 	{0x4013, 0x02},
216 	{0x4040, 0x00},
217 	{0x4041, 0x07},
218 	{0x404c, 0x50},
219 	{0x404e, 0x20},
220 	{0x4500, 0x06},
221 	{0x4503, 0x00},
222 	{0x450a, 0x04},
223 	{0x4809, 0x04},
224 	{0x480c, 0x12},
225 	{0x4819, 0x70},
226 	{0x4825, 0x32},
227 	{0x4826, 0x32},
228 	{0x482a, 0x06},
229 	{0x4833, 0x08},
230 	{0x4837, 0x0d},
231 	{0x5000, 0x77},
232 	{0x5b00, 0x01},
233 	{0x5b01, 0x10},
234 	{0x5b02, 0x01},
235 	{0x5b03, 0xdb},
236 	{0x5b05, 0x6c},
237 	{0x5e10, 0xfc},
238 	{0x3500, 0x00},
239 	{0x3501, 0x3E},
240 	{0x3502, 0x60},
241 	{0x3503, 0x08},
242 	{0x3508, 0x04},
243 	{0x3509, 0x00},
244 	{0x3832, 0x48},
245 	{0x5780, 0x3e},
246 	{0x5781, 0x0f},
247 	{0x5782, 0x44},
248 	{0x5783, 0x02},
249 	{0x5784, 0x01},
250 	{0x5785, 0x01},
251 	{0x5786, 0x00},
252 	{0x5787, 0x04},
253 	{0x5788, 0x02},
254 	{0x5789, 0x0f},
255 	{0x578a, 0xfd},
256 	{0x578b, 0xf5},
257 	{0x578c, 0xf5},
258 	{0x578d, 0x03},
259 	{0x578e, 0x08},
260 	{0x578f, 0x0c},
261 	{0x5790, 0x08},
262 	{0x5791, 0x06},
263 	{0x5792, 0x00},
264 	{0x5793, 0x52},
265 	{0x5794, 0xa3},
266 	{0x4003, 0x40},
267 	{0x3107, 0x01},
268 	{0x3c80, 0x08},
269 	{0x3c83, 0xb1},
270 	{0x3c8c, 0x10},
271 	{0x3c8d, 0x00},
272 	{0x3c90, 0x00},
273 	{0x3c94, 0x00},
274 	{0x3c95, 0x00},
275 	{0x3c96, 0x00},
276 	{0x37cb, 0x09},
277 	{0x37cc, 0x15},
278 	{0x37cd, 0x1f},
279 	{0x37ce, 0x1f},
280 };
281 
282 static const struct ov5675_reg mode_1296x972_regs[] = {
283 	{0x3002, 0x21},
284 	{0x3107, 0x23},
285 	{0x3501, 0x20},
286 	{0x3503, 0x0c},
287 	{0x3508, 0x03},
288 	{0x3509, 0x00},
289 	{0x3600, 0x66},
290 	{0x3602, 0x30},
291 	{0x3610, 0xa5},
292 	{0x3612, 0x93},
293 	{0x3620, 0x80},
294 	{0x3642, 0x0e},
295 	{0x3661, 0x00},
296 	{0x3662, 0x08},
297 	{0x3664, 0xf3},
298 	{0x3665, 0x9e},
299 	{0x3667, 0xa5},
300 	{0x366e, 0x55},
301 	{0x366f, 0x55},
302 	{0x3670, 0x11},
303 	{0x3671, 0x11},
304 	{0x3672, 0x11},
305 	{0x3673, 0x11},
306 	{0x3714, 0x28},
307 	{0x371a, 0x3e},
308 	{0x3733, 0x10},
309 	{0x3734, 0x00},
310 	{0x373d, 0x24},
311 	{0x3764, 0x20},
312 	{0x3765, 0x20},
313 	{0x3766, 0x12},
314 	{0x37a1, 0x14},
315 	{0x37a8, 0x1c},
316 	{0x37ab, 0x0f},
317 	{0x37c2, 0x14},
318 	{0x37cb, 0x00},
319 	{0x37cc, 0x00},
320 	{0x37cd, 0x00},
321 	{0x37ce, 0x00},
322 	{0x37d8, 0x02},
323 	{0x37d9, 0x04},
324 	{0x37dc, 0x04},
325 	{0x3800, 0x00},
326 	{0x3801, 0x00},
327 	{0x3802, 0x00},
328 	{0x3803, 0x00},
329 	{0x3804, 0x0a},
330 	{0x3805, 0x3f},
331 	{0x3806, 0x07},
332 	{0x3807, 0xb7},
333 	{0x3808, 0x05},
334 	{0x3809, 0x10},
335 	{0x380a, 0x03},
336 	{0x380b, 0xcc},
337 	{0x380c, 0x02},
338 	{0x380d, 0xee},
339 	{0x380e, 0x07},
340 	{0x380f, 0xd0},
341 	{0x3811, 0x08},
342 	{0x3813, 0x0d},
343 	{0x3814, 0x03},
344 	{0x3815, 0x01},
345 	{0x3816, 0x03},
346 	{0x3817, 0x01},
347 	{0x381e, 0x02},
348 	{0x3820, 0x8b},
349 	{0x3821, 0x01},
350 	{0x3832, 0x04},
351 	{0x3c80, 0x01},
352 	{0x3c82, 0x00},
353 	{0x3c83, 0xc8},
354 	{0x3c8c, 0x0f},
355 	{0x3c8d, 0xa0},
356 	{0x3c90, 0x07},
357 	{0x3c91, 0x00},
358 	{0x3c92, 0x00},
359 	{0x3c93, 0x00},
360 	{0x3c94, 0xd0},
361 	{0x3c95, 0x50},
362 	{0x3c96, 0x35},
363 	{0x3c97, 0x00},
364 	{0x4001, 0xe0},
365 	{0x4008, 0x00},
366 	{0x4009, 0x07},
367 	{0x400f, 0x80},
368 	{0x4013, 0x02},
369 	{0x4040, 0x00},
370 	{0x4041, 0x03},
371 	{0x404c, 0x50},
372 	{0x404e, 0x20},
373 	{0x4500, 0x06},
374 	{0x4503, 0x00},
375 	{0x450a, 0x04},
376 	{0x4809, 0x04},
377 	{0x480c, 0x12},
378 	{0x4819, 0x70},
379 	{0x4825, 0x32},
380 	{0x4826, 0x32},
381 	{0x482a, 0x06},
382 	{0x4833, 0x08},
383 	{0x4837, 0x0d},
384 	{0x5000, 0x77},
385 	{0x5b00, 0x01},
386 	{0x5b01, 0x10},
387 	{0x5b02, 0x01},
388 	{0x5b03, 0xdb},
389 	{0x5b05, 0x6c},
390 	{0x5e10, 0xfc},
391 	{0x3500, 0x00},
392 	{0x3501, 0x1F},
393 	{0x3502, 0x20},
394 	{0x3503, 0x08},
395 	{0x3508, 0x04},
396 	{0x3509, 0x00},
397 	{0x3832, 0x48},
398 	{0x5780, 0x3e},
399 	{0x5781, 0x0f},
400 	{0x5782, 0x44},
401 	{0x5783, 0x02},
402 	{0x5784, 0x01},
403 	{0x5785, 0x01},
404 	{0x5786, 0x00},
405 	{0x5787, 0x04},
406 	{0x5788, 0x02},
407 	{0x5789, 0x0f},
408 	{0x578a, 0xfd},
409 	{0x578b, 0xf5},
410 	{0x578c, 0xf5},
411 	{0x578d, 0x03},
412 	{0x578e, 0x08},
413 	{0x578f, 0x0c},
414 	{0x5790, 0x08},
415 	{0x5791, 0x06},
416 	{0x5792, 0x00},
417 	{0x5793, 0x52},
418 	{0x5794, 0xa3},
419 	{0x4003, 0x40},
420 	{0x3107, 0x01},
421 	{0x3c80, 0x08},
422 	{0x3c83, 0xb1},
423 	{0x3c8c, 0x10},
424 	{0x3c8d, 0x00},
425 	{0x3c90, 0x00},
426 	{0x3c94, 0x00},
427 	{0x3c95, 0x00},
428 	{0x3c96, 0x00},
429 	{0x37cb, 0x09},
430 	{0x37cc, 0x15},
431 	{0x37cd, 0x1f},
432 	{0x37ce, 0x1f},
433 };
434 
435 static const char * const ov5675_test_pattern_menu[] = {
436 	"Disabled",
437 	"Standard Color Bar",
438 	"Top-Bottom Darker Color Bar",
439 	"Right-Left Darker Color Bar",
440 	"Bottom-Top Darker Color Bar"
441 };
442 
443 static const s64 link_freq_menu_items[] = {
444 	OV5675_LINK_FREQ_450MHZ,
445 };
446 
447 static const struct ov5675_link_freq_config link_freq_configs[] = {
448 	[OV5675_LINK_FREQ_900MBPS] = {
449 		.reg_list = {
450 			.num_of_regs = ARRAY_SIZE(mipi_data_rate_900mbps),
451 			.regs = mipi_data_rate_900mbps,
452 		}
453 	}
454 };
455 
456 static const struct ov5675_mode supported_modes[] = {
457 	{
458 		.width = 2592,
459 		.height = 1944,
460 		.hts = 1500,
461 		.vts_def = OV5675_VTS_30FPS,
462 		.vts_min = OV5675_VTS_30FPS_MIN,
463 		.reg_list = {
464 			.num_of_regs = ARRAY_SIZE(mode_2592x1944_regs),
465 			.regs = mode_2592x1944_regs,
466 		},
467 		.link_freq_index = OV5675_LINK_FREQ_900MBPS,
468 	},
469 	{
470 		.width = 1296,
471 		.height = 972,
472 		.hts = 1500,
473 		.vts_def = OV5675_VTS_30FPS,
474 		.vts_min = OV5675_VTS_30FPS_MIN,
475 		.reg_list = {
476 			.num_of_regs = ARRAY_SIZE(mode_1296x972_regs),
477 			.regs = mode_1296x972_regs,
478 		},
479 		.link_freq_index = OV5675_LINK_FREQ_900MBPS,
480 	}
481 };
482 
483 struct ov5675 {
484 	struct v4l2_subdev sd;
485 	struct media_pad pad;
486 	struct v4l2_ctrl_handler ctrl_handler;
487 
488 	/* V4L2 Controls */
489 	struct v4l2_ctrl *link_freq;
490 	struct v4l2_ctrl *pixel_rate;
491 	struct v4l2_ctrl *vblank;
492 	struct v4l2_ctrl *hblank;
493 	struct v4l2_ctrl *exposure;
494 
495 	/* Current mode */
496 	const struct ov5675_mode *cur_mode;
497 
498 	/* To serialize asynchronus callbacks */
499 	struct mutex mutex;
500 
501 	/* Streaming on/off */
502 	bool streaming;
503 
504 	/* True if the device has been identified */
505 	bool identified;
506 };
507 
508 static u64 to_pixel_rate(u32 f_index)
509 {
510 	u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OV5675_DATA_LANES;
511 
512 	do_div(pixel_rate, OV5675_RGB_DEPTH);
513 
514 	return pixel_rate;
515 }
516 
517 static u64 to_pixels_per_line(u32 hts, u32 f_index)
518 {
519 	u64 ppl = hts * to_pixel_rate(f_index);
520 
521 	do_div(ppl, OV5675_SCLK);
522 
523 	return ppl;
524 }
525 
526 static int ov5675_read_reg(struct ov5675 *ov5675, u16 reg, u16 len, u32 *val)
527 {
528 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
529 	struct i2c_msg msgs[2];
530 	u8 addr_buf[2];
531 	u8 data_buf[4] = {0};
532 	int ret;
533 
534 	if (len > 4)
535 		return -EINVAL;
536 
537 	put_unaligned_be16(reg, addr_buf);
538 	msgs[0].addr = client->addr;
539 	msgs[0].flags = 0;
540 	msgs[0].len = sizeof(addr_buf);
541 	msgs[0].buf = addr_buf;
542 	msgs[1].addr = client->addr;
543 	msgs[1].flags = I2C_M_RD;
544 	msgs[1].len = len;
545 	msgs[1].buf = &data_buf[4 - len];
546 
547 	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
548 	if (ret != ARRAY_SIZE(msgs))
549 		return -EIO;
550 
551 	*val = get_unaligned_be32(data_buf);
552 
553 	return 0;
554 }
555 
556 static int ov5675_write_reg(struct ov5675 *ov5675, u16 reg, u16 len, u32 val)
557 {
558 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
559 	u8 buf[6];
560 
561 	if (len > 4)
562 		return -EINVAL;
563 
564 	put_unaligned_be16(reg, buf);
565 	put_unaligned_be32(val << 8 * (4 - len), buf + 2);
566 	if (i2c_master_send(client, buf, len + 2) != len + 2)
567 		return -EIO;
568 
569 	return 0;
570 }
571 
572 static int ov5675_write_reg_list(struct ov5675 *ov5675,
573 				 const struct ov5675_reg_list *r_list)
574 {
575 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
576 	unsigned int i;
577 	int ret;
578 
579 	for (i = 0; i < r_list->num_of_regs; i++) {
580 		ret = ov5675_write_reg(ov5675, r_list->regs[i].address, 1,
581 				       r_list->regs[i].val);
582 		if (ret) {
583 			dev_err_ratelimited(&client->dev,
584 				    "failed to write reg 0x%4.4x. error = %d",
585 				    r_list->regs[i].address, ret);
586 			return ret;
587 		}
588 	}
589 
590 	return 0;
591 }
592 
593 static int ov5675_update_digital_gain(struct ov5675 *ov5675, u32 d_gain)
594 {
595 	int ret;
596 
597 	ret = ov5675_write_reg(ov5675, OV5675_REG_GROUP_ACCESS,
598 			       OV5675_REG_VALUE_08BIT,
599 			       OV5675_GROUP_HOLD_START);
600 	if (ret)
601 		return ret;
602 
603 	ret = ov5675_write_reg(ov5675, OV5675_REG_MWB_R_GAIN,
604 			       OV5675_REG_VALUE_16BIT, d_gain);
605 	if (ret)
606 		return ret;
607 
608 	ret = ov5675_write_reg(ov5675, OV5675_REG_MWB_G_GAIN,
609 			       OV5675_REG_VALUE_16BIT, d_gain);
610 	if (ret)
611 		return ret;
612 
613 	ret = ov5675_write_reg(ov5675, OV5675_REG_MWB_B_GAIN,
614 			       OV5675_REG_VALUE_16BIT, d_gain);
615 	if (ret)
616 		return ret;
617 
618 	ret = ov5675_write_reg(ov5675, OV5675_REG_GROUP_ACCESS,
619 			       OV5675_REG_VALUE_08BIT,
620 			       OV5675_GROUP_HOLD_END);
621 	if (ret)
622 		return ret;
623 
624 	ret = ov5675_write_reg(ov5675, OV5675_REG_GROUP_ACCESS,
625 			       OV5675_REG_VALUE_08BIT,
626 			       OV5675_GROUP_HOLD_LAUNCH);
627 	return ret;
628 }
629 
630 static int ov5675_test_pattern(struct ov5675 *ov5675, u32 pattern)
631 {
632 	if (pattern)
633 		pattern = (pattern - 1) << OV5675_TEST_PATTERN_BAR_SHIFT |
634 			  OV5675_TEST_PATTERN_ENABLE;
635 
636 	return ov5675_write_reg(ov5675, OV5675_REG_TEST_PATTERN,
637 				OV5675_REG_VALUE_08BIT, pattern);
638 }
639 
640 /*
641  * OV5675 supports keeping the pixel order by mirror and flip function
642  * The Bayer order isn't affected by the flip controls
643  */
644 static int ov5675_set_ctrl_hflip(struct ov5675 *ov5675, u32 ctrl_val)
645 {
646 	int ret;
647 	u32 val;
648 
649 	ret = ov5675_read_reg(ov5675, OV5675_REG_FORMAT1,
650 			      OV5675_REG_VALUE_08BIT, &val);
651 	if (ret)
652 		return ret;
653 
654 	return ov5675_write_reg(ov5675, OV5675_REG_FORMAT1,
655 				OV5675_REG_VALUE_08BIT,
656 				ctrl_val ? val & ~BIT(3) : val | BIT(3));
657 }
658 
659 static int ov5675_set_ctrl_vflip(struct ov5675 *ov5675, u8 ctrl_val)
660 {
661 	int ret;
662 	u32 val;
663 
664 	ret = ov5675_read_reg(ov5675, OV5675_REG_FORMAT1,
665 			      OV5675_REG_VALUE_08BIT, &val);
666 	if (ret)
667 		return ret;
668 
669 	ret = ov5675_write_reg(ov5675, OV5675_REG_FORMAT1,
670 			       OV5675_REG_VALUE_08BIT,
671 			       ctrl_val ? val | BIT(4) | BIT(5)  : val & ~BIT(4) & ~BIT(5));
672 
673 	if (ret)
674 		return ret;
675 
676 	ret = ov5675_read_reg(ov5675, OV5675_REG_FORMAT2,
677 			      OV5675_REG_VALUE_08BIT, &val);
678 
679 	if (ret)
680 		return ret;
681 
682 	return ov5675_write_reg(ov5675, OV5675_REG_FORMAT2,
683 				OV5675_REG_VALUE_08BIT,
684 				ctrl_val ? val | BIT(1) : val & ~BIT(1));
685 }
686 
687 static int ov5675_set_ctrl(struct v4l2_ctrl *ctrl)
688 {
689 	struct ov5675 *ov5675 = container_of(ctrl->handler,
690 					     struct ov5675, ctrl_handler);
691 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
692 	s64 exposure_max;
693 	int ret = 0;
694 
695 	/* Propagate change of current control to all related controls */
696 	if (ctrl->id == V4L2_CID_VBLANK) {
697 		/* Update max exposure while meeting expected vblanking */
698 		exposure_max = ov5675->cur_mode->height + ctrl->val -
699 			OV5675_EXPOSURE_MAX_MARGIN;
700 		__v4l2_ctrl_modify_range(ov5675->exposure,
701 					 ov5675->exposure->minimum,
702 					 exposure_max, ov5675->exposure->step,
703 					 exposure_max);
704 	}
705 
706 	/* V4L2 controls values will be applied only when power is already up */
707 	if (!pm_runtime_get_if_in_use(&client->dev))
708 		return 0;
709 
710 	switch (ctrl->id) {
711 	case V4L2_CID_ANALOGUE_GAIN:
712 		ret = ov5675_write_reg(ov5675, OV5675_REG_ANALOG_GAIN,
713 				       OV5675_REG_VALUE_16BIT, ctrl->val);
714 		break;
715 
716 	case V4L2_CID_DIGITAL_GAIN:
717 		ret = ov5675_update_digital_gain(ov5675, ctrl->val);
718 		break;
719 
720 	case V4L2_CID_EXPOSURE:
721 		/* 4 least significant bits of expsoure are fractional part
722 		 * val = val << 4
723 		 * for ov5675, the unit of exposure is differnt from other
724 		 * OmniVision sensors, its exposure value is twice of the
725 		 * register value, the exposure should be divided by 2 before
726 		 * set register, e.g. val << 3.
727 		 */
728 		ret = ov5675_write_reg(ov5675, OV5675_REG_EXPOSURE,
729 				       OV5675_REG_VALUE_24BIT, ctrl->val << 3);
730 		break;
731 
732 	case V4L2_CID_VBLANK:
733 		ret = ov5675_write_reg(ov5675, OV5675_REG_VTS,
734 				       OV5675_REG_VALUE_16BIT,
735 				       ov5675->cur_mode->height + ctrl->val +
736 				       10);
737 		break;
738 
739 	case V4L2_CID_TEST_PATTERN:
740 		ret = ov5675_test_pattern(ov5675, ctrl->val);
741 		break;
742 
743 	case V4L2_CID_HFLIP:
744 		ov5675_set_ctrl_hflip(ov5675, ctrl->val);
745 		break;
746 
747 	case V4L2_CID_VFLIP:
748 		ov5675_set_ctrl_vflip(ov5675, ctrl->val);
749 		break;
750 
751 	default:
752 		ret = -EINVAL;
753 		break;
754 	}
755 
756 	pm_runtime_put(&client->dev);
757 
758 	return ret;
759 }
760 
761 static const struct v4l2_ctrl_ops ov5675_ctrl_ops = {
762 	.s_ctrl = ov5675_set_ctrl,
763 };
764 
765 static int ov5675_init_controls(struct ov5675 *ov5675)
766 {
767 	struct v4l2_ctrl_handler *ctrl_hdlr;
768 	s64 exposure_max, h_blank;
769 	int ret;
770 
771 	ctrl_hdlr = &ov5675->ctrl_handler;
772 	ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
773 	if (ret)
774 		return ret;
775 
776 	ctrl_hdlr->lock = &ov5675->mutex;
777 	ov5675->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov5675_ctrl_ops,
778 					   V4L2_CID_LINK_FREQ,
779 					   ARRAY_SIZE(link_freq_menu_items) - 1,
780 					   0, link_freq_menu_items);
781 	if (ov5675->link_freq)
782 		ov5675->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY;
783 
784 	ov5675->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
785 				       V4L2_CID_PIXEL_RATE, 0,
786 				       to_pixel_rate(OV5675_LINK_FREQ_900MBPS),
787 				       1,
788 				       to_pixel_rate(OV5675_LINK_FREQ_900MBPS));
789 	ov5675->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
790 			  V4L2_CID_VBLANK,
791 			  ov5675->cur_mode->vts_min - ov5675->cur_mode->height,
792 			  OV5675_VTS_MAX - ov5675->cur_mode->height, 1,
793 			  ov5675->cur_mode->vts_def - ov5675->cur_mode->height);
794 	h_blank = to_pixels_per_line(ov5675->cur_mode->hts,
795 		  ov5675->cur_mode->link_freq_index) - ov5675->cur_mode->width;
796 	ov5675->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
797 					   V4L2_CID_HBLANK, h_blank, h_blank, 1,
798 					   h_blank);
799 	if (ov5675->hblank)
800 		ov5675->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
801 
802 	v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
803 			  OV5675_ANAL_GAIN_MIN, OV5675_ANAL_GAIN_MAX,
804 			  OV5675_ANAL_GAIN_STEP, OV5675_ANAL_GAIN_MIN);
805 	v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
806 			  OV5675_DGTL_GAIN_MIN, OV5675_DGTL_GAIN_MAX,
807 			  OV5675_DGTL_GAIN_STEP, OV5675_DGTL_GAIN_DEFAULT);
808 	exposure_max = (ov5675->cur_mode->vts_def - OV5675_EXPOSURE_MAX_MARGIN);
809 	ov5675->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
810 					     V4L2_CID_EXPOSURE,
811 					     OV5675_EXPOSURE_MIN, exposure_max,
812 					     OV5675_EXPOSURE_STEP,
813 					     exposure_max);
814 	v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov5675_ctrl_ops,
815 				     V4L2_CID_TEST_PATTERN,
816 				     ARRAY_SIZE(ov5675_test_pattern_menu) - 1,
817 				     0, 0, ov5675_test_pattern_menu);
818 	v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
819 			  V4L2_CID_HFLIP, 0, 1, 1, 0);
820 	v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
821 			  V4L2_CID_VFLIP, 0, 1, 1, 0);
822 
823 	if (ctrl_hdlr->error)
824 		return ctrl_hdlr->error;
825 
826 	ov5675->sd.ctrl_handler = ctrl_hdlr;
827 
828 	return 0;
829 }
830 
831 static void ov5675_update_pad_format(const struct ov5675_mode *mode,
832 				     struct v4l2_mbus_framefmt *fmt)
833 {
834 	fmt->width = mode->width;
835 	fmt->height = mode->height;
836 	fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10;
837 	fmt->field = V4L2_FIELD_NONE;
838 }
839 
840 static int ov5675_identify_module(struct ov5675 *ov5675)
841 {
842 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
843 	int ret;
844 	u32 val;
845 
846 	if (ov5675->identified)
847 		return 0;
848 
849 	ret = ov5675_read_reg(ov5675, OV5675_REG_CHIP_ID,
850 			      OV5675_REG_VALUE_24BIT, &val);
851 	if (ret)
852 		return ret;
853 
854 	if (val != OV5675_CHIP_ID) {
855 		dev_err(&client->dev, "chip id mismatch: %x!=%x",
856 			OV5675_CHIP_ID, val);
857 		return -ENXIO;
858 	}
859 
860 	ov5675->identified = true;
861 
862 	return 0;
863 }
864 
865 static int ov5675_start_streaming(struct ov5675 *ov5675)
866 {
867 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
868 	const struct ov5675_reg_list *reg_list;
869 	int link_freq_index, ret;
870 
871 	ret = ov5675_identify_module(ov5675);
872 	if (ret)
873 		return ret;
874 
875 	link_freq_index = ov5675->cur_mode->link_freq_index;
876 	reg_list = &link_freq_configs[link_freq_index].reg_list;
877 	ret = ov5675_write_reg_list(ov5675, reg_list);
878 	if (ret) {
879 		dev_err(&client->dev, "failed to set plls");
880 		return ret;
881 	}
882 
883 	reg_list = &ov5675->cur_mode->reg_list;
884 	ret = ov5675_write_reg_list(ov5675, reg_list);
885 	if (ret) {
886 		dev_err(&client->dev, "failed to set mode");
887 		return ret;
888 	}
889 
890 	ret = __v4l2_ctrl_handler_setup(ov5675->sd.ctrl_handler);
891 	if (ret)
892 		return ret;
893 
894 	ret = ov5675_write_reg(ov5675, OV5675_REG_MODE_SELECT,
895 			       OV5675_REG_VALUE_08BIT, OV5675_MODE_STREAMING);
896 	if (ret) {
897 		dev_err(&client->dev, "failed to set stream");
898 		return ret;
899 	}
900 
901 	return 0;
902 }
903 
904 static void ov5675_stop_streaming(struct ov5675 *ov5675)
905 {
906 	struct i2c_client *client = v4l2_get_subdevdata(&ov5675->sd);
907 
908 	if (ov5675_write_reg(ov5675, OV5675_REG_MODE_SELECT,
909 			     OV5675_REG_VALUE_08BIT, OV5675_MODE_STANDBY))
910 		dev_err(&client->dev, "failed to set stream");
911 }
912 
913 static int ov5675_set_stream(struct v4l2_subdev *sd, int enable)
914 {
915 	struct ov5675 *ov5675 = to_ov5675(sd);
916 	struct i2c_client *client = v4l2_get_subdevdata(sd);
917 	int ret = 0;
918 
919 	if (ov5675->streaming == enable)
920 		return 0;
921 
922 	mutex_lock(&ov5675->mutex);
923 	if (enable) {
924 		ret = pm_runtime_resume_and_get(&client->dev);
925 		if (ret < 0) {
926 			mutex_unlock(&ov5675->mutex);
927 			return ret;
928 		}
929 
930 		ret = ov5675_start_streaming(ov5675);
931 		if (ret) {
932 			enable = 0;
933 			ov5675_stop_streaming(ov5675);
934 			pm_runtime_put(&client->dev);
935 		}
936 	} else {
937 		ov5675_stop_streaming(ov5675);
938 		pm_runtime_put(&client->dev);
939 	}
940 
941 	ov5675->streaming = enable;
942 	mutex_unlock(&ov5675->mutex);
943 
944 	return ret;
945 }
946 
947 static int __maybe_unused ov5675_suspend(struct device *dev)
948 {
949 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
950 	struct ov5675 *ov5675 = to_ov5675(sd);
951 
952 	mutex_lock(&ov5675->mutex);
953 	if (ov5675->streaming)
954 		ov5675_stop_streaming(ov5675);
955 
956 	mutex_unlock(&ov5675->mutex);
957 
958 	return 0;
959 }
960 
961 static int __maybe_unused ov5675_resume(struct device *dev)
962 {
963 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
964 	struct ov5675 *ov5675 = to_ov5675(sd);
965 	int ret;
966 
967 	mutex_lock(&ov5675->mutex);
968 	if (ov5675->streaming) {
969 		ret = ov5675_start_streaming(ov5675);
970 		if (ret) {
971 			ov5675->streaming = false;
972 			ov5675_stop_streaming(ov5675);
973 			mutex_unlock(&ov5675->mutex);
974 			return ret;
975 		}
976 	}
977 
978 	mutex_unlock(&ov5675->mutex);
979 
980 	return 0;
981 }
982 
983 static int ov5675_set_format(struct v4l2_subdev *sd,
984 			     struct v4l2_subdev_state *sd_state,
985 			     struct v4l2_subdev_format *fmt)
986 {
987 	struct ov5675 *ov5675 = to_ov5675(sd);
988 	const struct ov5675_mode *mode;
989 	s32 vblank_def, h_blank;
990 
991 	mode = v4l2_find_nearest_size(supported_modes,
992 				      ARRAY_SIZE(supported_modes), width,
993 				      height, fmt->format.width,
994 				      fmt->format.height);
995 
996 	mutex_lock(&ov5675->mutex);
997 	ov5675_update_pad_format(mode, &fmt->format);
998 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
999 		*v4l2_subdev_get_try_format(sd, sd_state, fmt->pad) = fmt->format;
1000 	} else {
1001 		ov5675->cur_mode = mode;
1002 		__v4l2_ctrl_s_ctrl(ov5675->link_freq, mode->link_freq_index);
1003 		__v4l2_ctrl_s_ctrl_int64(ov5675->pixel_rate,
1004 					 to_pixel_rate(mode->link_freq_index));
1005 
1006 		/* Update limits and set FPS to default */
1007 		vblank_def = mode->vts_def - mode->height;
1008 		__v4l2_ctrl_modify_range(ov5675->vblank,
1009 					 mode->vts_min - mode->height,
1010 					 OV5675_VTS_MAX - mode->height, 1,
1011 					 vblank_def);
1012 		__v4l2_ctrl_s_ctrl(ov5675->vblank, vblank_def);
1013 		h_blank = to_pixels_per_line(mode->hts, mode->link_freq_index) -
1014 			  mode->width;
1015 		__v4l2_ctrl_modify_range(ov5675->hblank, h_blank, h_blank, 1,
1016 					 h_blank);
1017 	}
1018 
1019 	mutex_unlock(&ov5675->mutex);
1020 
1021 	return 0;
1022 }
1023 
1024 static int ov5675_get_format(struct v4l2_subdev *sd,
1025 			     struct v4l2_subdev_state *sd_state,
1026 			     struct v4l2_subdev_format *fmt)
1027 {
1028 	struct ov5675 *ov5675 = to_ov5675(sd);
1029 
1030 	mutex_lock(&ov5675->mutex);
1031 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
1032 		fmt->format = *v4l2_subdev_get_try_format(&ov5675->sd,
1033 							  sd_state,
1034 							  fmt->pad);
1035 	else
1036 		ov5675_update_pad_format(ov5675->cur_mode, &fmt->format);
1037 
1038 	mutex_unlock(&ov5675->mutex);
1039 
1040 	return 0;
1041 }
1042 
1043 static int ov5675_enum_mbus_code(struct v4l2_subdev *sd,
1044 				 struct v4l2_subdev_state *sd_state,
1045 				 struct v4l2_subdev_mbus_code_enum *code)
1046 {
1047 	if (code->index > 0)
1048 		return -EINVAL;
1049 
1050 	code->code = MEDIA_BUS_FMT_SGRBG10_1X10;
1051 
1052 	return 0;
1053 }
1054 
1055 static int ov5675_enum_frame_size(struct v4l2_subdev *sd,
1056 				  struct v4l2_subdev_state *sd_state,
1057 				  struct v4l2_subdev_frame_size_enum *fse)
1058 {
1059 	if (fse->index >= ARRAY_SIZE(supported_modes))
1060 		return -EINVAL;
1061 
1062 	if (fse->code != MEDIA_BUS_FMT_SGRBG10_1X10)
1063 		return -EINVAL;
1064 
1065 	fse->min_width = supported_modes[fse->index].width;
1066 	fse->max_width = fse->min_width;
1067 	fse->min_height = supported_modes[fse->index].height;
1068 	fse->max_height = fse->min_height;
1069 
1070 	return 0;
1071 }
1072 
1073 static int ov5675_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
1074 {
1075 	struct ov5675 *ov5675 = to_ov5675(sd);
1076 
1077 	mutex_lock(&ov5675->mutex);
1078 	ov5675_update_pad_format(&supported_modes[0],
1079 				 v4l2_subdev_get_try_format(sd, fh->state, 0));
1080 	mutex_unlock(&ov5675->mutex);
1081 
1082 	return 0;
1083 }
1084 
1085 static const struct v4l2_subdev_video_ops ov5675_video_ops = {
1086 	.s_stream = ov5675_set_stream,
1087 };
1088 
1089 static const struct v4l2_subdev_pad_ops ov5675_pad_ops = {
1090 	.set_fmt = ov5675_set_format,
1091 	.get_fmt = ov5675_get_format,
1092 	.enum_mbus_code = ov5675_enum_mbus_code,
1093 	.enum_frame_size = ov5675_enum_frame_size,
1094 };
1095 
1096 static const struct v4l2_subdev_ops ov5675_subdev_ops = {
1097 	.video = &ov5675_video_ops,
1098 	.pad = &ov5675_pad_ops,
1099 };
1100 
1101 static const struct media_entity_operations ov5675_subdev_entity_ops = {
1102 	.link_validate = v4l2_subdev_link_validate,
1103 };
1104 
1105 static const struct v4l2_subdev_internal_ops ov5675_internal_ops = {
1106 	.open = ov5675_open,
1107 };
1108 
1109 static int ov5675_check_hwcfg(struct device *dev)
1110 {
1111 	struct fwnode_handle *ep;
1112 	struct fwnode_handle *fwnode = dev_fwnode(dev);
1113 	struct v4l2_fwnode_endpoint bus_cfg = {
1114 		.bus_type = V4L2_MBUS_CSI2_DPHY
1115 	};
1116 	u32 mclk;
1117 	int ret;
1118 	unsigned int i, j;
1119 
1120 	if (!fwnode)
1121 		return -ENXIO;
1122 
1123 	ret = fwnode_property_read_u32(fwnode, "clock-frequency", &mclk);
1124 
1125 	if (ret) {
1126 		dev_err(dev, "can't get clock frequency");
1127 		return ret;
1128 	}
1129 
1130 	if (mclk != OV5675_MCLK) {
1131 		dev_err(dev, "external clock %d is not supported", mclk);
1132 		return -EINVAL;
1133 	}
1134 
1135 	ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
1136 	if (!ep)
1137 		return -ENXIO;
1138 
1139 	ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
1140 	fwnode_handle_put(ep);
1141 	if (ret)
1142 		return ret;
1143 
1144 	if (bus_cfg.bus.mipi_csi2.num_data_lanes != OV5675_DATA_LANES) {
1145 		dev_err(dev, "number of CSI2 data lanes %d is not supported",
1146 			bus_cfg.bus.mipi_csi2.num_data_lanes);
1147 		ret = -EINVAL;
1148 		goto check_hwcfg_error;
1149 	}
1150 
1151 	if (!bus_cfg.nr_of_link_frequencies) {
1152 		dev_err(dev, "no link frequencies defined");
1153 		ret = -EINVAL;
1154 		goto check_hwcfg_error;
1155 	}
1156 
1157 	for (i = 0; i < ARRAY_SIZE(link_freq_menu_items); i++) {
1158 		for (j = 0; j < bus_cfg.nr_of_link_frequencies; j++) {
1159 			if (link_freq_menu_items[i] ==
1160 				bus_cfg.link_frequencies[j])
1161 				break;
1162 		}
1163 
1164 		if (j == bus_cfg.nr_of_link_frequencies) {
1165 			dev_err(dev, "no link frequency %lld supported",
1166 				link_freq_menu_items[i]);
1167 			ret = -EINVAL;
1168 			goto check_hwcfg_error;
1169 		}
1170 	}
1171 
1172 check_hwcfg_error:
1173 	v4l2_fwnode_endpoint_free(&bus_cfg);
1174 
1175 	return ret;
1176 }
1177 
1178 static int ov5675_remove(struct i2c_client *client)
1179 {
1180 	struct v4l2_subdev *sd = i2c_get_clientdata(client);
1181 	struct ov5675 *ov5675 = to_ov5675(sd);
1182 
1183 	v4l2_async_unregister_subdev(sd);
1184 	media_entity_cleanup(&sd->entity);
1185 	v4l2_ctrl_handler_free(sd->ctrl_handler);
1186 	pm_runtime_disable(&client->dev);
1187 	mutex_destroy(&ov5675->mutex);
1188 
1189 	return 0;
1190 }
1191 
1192 static int ov5675_probe(struct i2c_client *client)
1193 {
1194 	struct ov5675 *ov5675;
1195 	bool full_power;
1196 	int ret;
1197 
1198 	ret = ov5675_check_hwcfg(&client->dev);
1199 	if (ret) {
1200 		dev_err(&client->dev, "failed to check HW configuration: %d",
1201 			ret);
1202 		return ret;
1203 	}
1204 
1205 	ov5675 = devm_kzalloc(&client->dev, sizeof(*ov5675), GFP_KERNEL);
1206 	if (!ov5675)
1207 		return -ENOMEM;
1208 
1209 	v4l2_i2c_subdev_init(&ov5675->sd, client, &ov5675_subdev_ops);
1210 
1211 	full_power = acpi_dev_state_d0(&client->dev);
1212 	if (full_power) {
1213 		ret = ov5675_identify_module(ov5675);
1214 		if (ret) {
1215 			dev_err(&client->dev, "failed to find sensor: %d", ret);
1216 			return ret;
1217 		}
1218 	}
1219 
1220 	mutex_init(&ov5675->mutex);
1221 	ov5675->cur_mode = &supported_modes[0];
1222 	ret = ov5675_init_controls(ov5675);
1223 	if (ret) {
1224 		dev_err(&client->dev, "failed to init controls: %d", ret);
1225 		goto probe_error_v4l2_ctrl_handler_free;
1226 	}
1227 
1228 	ov5675->sd.internal_ops = &ov5675_internal_ops;
1229 	ov5675->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1230 	ov5675->sd.entity.ops = &ov5675_subdev_entity_ops;
1231 	ov5675->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
1232 	ov5675->pad.flags = MEDIA_PAD_FL_SOURCE;
1233 	ret = media_entity_pads_init(&ov5675->sd.entity, 1, &ov5675->pad);
1234 	if (ret) {
1235 		dev_err(&client->dev, "failed to init entity pads: %d", ret);
1236 		goto probe_error_v4l2_ctrl_handler_free;
1237 	}
1238 
1239 	ret = v4l2_async_register_subdev_sensor(&ov5675->sd);
1240 	if (ret < 0) {
1241 		dev_err(&client->dev, "failed to register V4L2 subdev: %d",
1242 			ret);
1243 		goto probe_error_media_entity_cleanup;
1244 	}
1245 
1246 	/*
1247 	 * Device is already turned on by i2c-core with ACPI domain PM.
1248 	 * Enable runtime PM and turn off the device.
1249 	 */
1250 
1251 	/* Set the device's state to active if it's in D0 state. */
1252 	if (full_power)
1253 		pm_runtime_set_active(&client->dev);
1254 	pm_runtime_enable(&client->dev);
1255 	pm_runtime_idle(&client->dev);
1256 
1257 	return 0;
1258 
1259 probe_error_media_entity_cleanup:
1260 	media_entity_cleanup(&ov5675->sd.entity);
1261 
1262 probe_error_v4l2_ctrl_handler_free:
1263 	v4l2_ctrl_handler_free(ov5675->sd.ctrl_handler);
1264 	mutex_destroy(&ov5675->mutex);
1265 
1266 	return ret;
1267 }
1268 
1269 static const struct dev_pm_ops ov5675_pm_ops = {
1270 	SET_SYSTEM_SLEEP_PM_OPS(ov5675_suspend, ov5675_resume)
1271 };
1272 
1273 #ifdef CONFIG_ACPI
1274 static const struct acpi_device_id ov5675_acpi_ids[] = {
1275 	{"OVTI5675"},
1276 	{}
1277 };
1278 
1279 MODULE_DEVICE_TABLE(acpi, ov5675_acpi_ids);
1280 #endif
1281 
1282 static struct i2c_driver ov5675_i2c_driver = {
1283 	.driver = {
1284 		.name = "ov5675",
1285 		.pm = &ov5675_pm_ops,
1286 		.acpi_match_table = ACPI_PTR(ov5675_acpi_ids),
1287 	},
1288 	.probe_new = ov5675_probe,
1289 	.remove = ov5675_remove,
1290 	.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
1291 };
1292 
1293 module_i2c_driver(ov5675_i2c_driver);
1294 
1295 MODULE_AUTHOR("Shawn Tu <shawnx.tu@intel.com>");
1296 MODULE_DESCRIPTION("OmniVision OV5675 sensor driver");
1297 MODULE_LICENSE("GPL v2");
1298