xref: /openbmc/linux/drivers/media/i2c/ov8856.c (revision 65b96377)
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/clk.h>
7 #include <linux/delay.h>
8 #include <linux/gpio/consumer.h>
9 #include <linux/i2c.h>
10 #include <linux/module.h>
11 #include <linux/pm_runtime.h>
12 #include <linux/regulator/consumer.h>
13 #include <media/v4l2-ctrls.h>
14 #include <media/v4l2-device.h>
15 #include <media/v4l2-fwnode.h>
16 
17 #define OV8856_REG_VALUE_08BIT		1
18 #define OV8856_REG_VALUE_16BIT		2
19 #define OV8856_REG_VALUE_24BIT		3
20 
21 #define OV8856_SCLK			144000000ULL
22 #define OV8856_XVCLK_19_2		19200000
23 #define OV8856_DATA_LANES		4
24 #define OV8856_RGB_DEPTH		10
25 
26 #define OV8856_REG_CHIP_ID		0x300a
27 #define OV8856_CHIP_ID			0x00885a
28 
29 #define OV8856_REG_MODE_SELECT		0x0100
30 #define OV8856_MODE_STANDBY		0x00
31 #define OV8856_MODE_STREAMING		0x01
32 
33 /* module revisions */
34 #define OV8856_2A_MODULE		0x01
35 #define OV8856_1B_MODULE		0x02
36 
37 /* the OTP read-out buffer is at 0x7000 and 0xf is the offset
38  * of the byte in the OTP that means the module revision
39  */
40 #define OV8856_MODULE_REVISION		0x700f
41 #define OV8856_OTP_MODE_CTRL		0x3d84
42 #define OV8856_OTP_LOAD_CTRL		0x3d81
43 #define OV8856_OTP_MODE_AUTO		0x00
44 #define OV8856_OTP_LOAD_CTRL_ENABLE	BIT(0)
45 
46 /* vertical-timings from sensor */
47 #define OV8856_REG_VTS			0x380e
48 #define OV8856_VTS_MAX			0x7fff
49 
50 /* horizontal-timings from sensor */
51 #define OV8856_REG_HTS			0x380c
52 
53 /* Exposure controls from sensor */
54 #define OV8856_REG_EXPOSURE		0x3500
55 #define	OV8856_EXPOSURE_MIN		6
56 #define OV8856_EXPOSURE_MAX_MARGIN	6
57 #define	OV8856_EXPOSURE_STEP		1
58 
59 /* Analog gain controls from sensor */
60 #define OV8856_REG_ANALOG_GAIN		0x3508
61 #define	OV8856_ANAL_GAIN_MIN		128
62 #define	OV8856_ANAL_GAIN_MAX		2047
63 #define	OV8856_ANAL_GAIN_STEP		1
64 
65 /* Digital gain controls from sensor */
66 #define OV8856_REG_MWB_R_GAIN		0x5019
67 #define OV8856_REG_MWB_G_GAIN		0x501b
68 #define OV8856_REG_MWB_B_GAIN		0x501d
69 #define OV8856_DGTL_GAIN_MIN		0
70 #define OV8856_DGTL_GAIN_MAX		4095
71 #define OV8856_DGTL_GAIN_STEP		1
72 #define OV8856_DGTL_GAIN_DEFAULT	1024
73 
74 /* Test Pattern Control */
75 #define OV8856_REG_TEST_PATTERN		0x5e00
76 #define OV8856_TEST_PATTERN_ENABLE	BIT(7)
77 #define OV8856_TEST_PATTERN_BAR_SHIFT	2
78 
79 #define NUM_REGS				7
80 #define NUM_MODE_REGS				187
81 #define NUM_MODE_REGS_2				200
82 
83 /* Flip Mirror Controls from sensor */
84 #define OV8856_REG_FORMAT1			0x3820
85 #define OV8856_REG_FORMAT2			0x3821
86 #define OV8856_REG_FORMAT1_OP_1			BIT(1)
87 #define OV8856_REG_FORMAT1_OP_2			BIT(2)
88 #define OV8856_REG_FORMAT1_OP_3			BIT(6)
89 #define OV8856_REG_FORMAT2_OP_1			BIT(1)
90 #define OV8856_REG_FORMAT2_OP_2			BIT(2)
91 #define OV8856_REG_FORMAT2_OP_3			BIT(6)
92 #define OV8856_REG_FLIP_OPT_1			0x376b
93 #define OV8856_REG_FLIP_OPT_2			0x5001
94 #define OV8856_REG_FLIP_OPT_3			0x502e
95 #define OV8856_REG_MIRROR_OPT_1			0x5004
96 #define OV8856_REG_FLIP_OP_0			BIT(0)
97 #define OV8856_REG_FLIP_OP_1			BIT(1)
98 #define OV8856_REG_FLIP_OP_2			BIT(2)
99 #define OV8856_REG_MIRROR_OP_1			BIT(1)
100 #define OV8856_REG_MIRROR_OP_2			BIT(2)
101 
102 #define to_ov8856(_sd)			container_of(_sd, struct ov8856, sd)
103 
104 static const char * const ov8856_supply_names[] = {
105 	"dovdd",	/* Digital I/O power */
106 	"avdd",		/* Analog power */
107 	"dvdd",		/* Digital core power */
108 };
109 
110 enum {
111 	OV8856_MEDIA_BUS_FMT_SBGGR10_1X10,
112 	OV8856_MEDIA_BUS_FMT_SGRBG10_1X10,
113 };
114 
115 struct ov8856_reg {
116 	u16 address;
117 	u8 val;
118 };
119 
120 struct ov8856_reg_list {
121 	u32 num_of_regs;
122 	const struct ov8856_reg *regs;
123 };
124 
125 struct ov8856_link_freq_config {
126 	const struct ov8856_reg_list reg_list;
127 };
128 
129 struct ov8856_mode {
130 	/* Frame width in pixels */
131 	u32 width;
132 
133 	/* Frame height in pixels */
134 	u32 height;
135 
136 	/* Horizontal timining size */
137 	u32 hts;
138 
139 	/* Default vertical timining size */
140 	u32 vts_def;
141 
142 	/* Min vertical timining size */
143 	u32 vts_min;
144 
145 	/* Link frequency needed for this resolution */
146 	u32 link_freq_index;
147 
148 	/* Sensor register settings for this resolution */
149 	const struct ov8856_reg_list reg_list;
150 
151 	/* Number of data lanes */
152 	u8 data_lanes;
153 
154 	/* Default MEDIA_BUS_FMT for this mode */
155 	u32 default_mbus_index;
156 };
157 
158 struct ov8856_mipi_data_rates {
159 	const struct ov8856_reg regs_0[NUM_REGS];
160 	const struct ov8856_reg regs_1[NUM_REGS];
161 };
162 
163 static const struct ov8856_mipi_data_rates mipi_data_rate_lane_2 = {
164 	//mipi_data_rate_1440mbps
165 	{
166 		{0x0103, 0x01},
167 		{0x0100, 0x00},
168 		{0x0302, 0x43},
169 		{0x0303, 0x00},
170 		{0x030b, 0x02},
171 		{0x030d, 0x4b},
172 		{0x031e, 0x0c}
173 	},
174 	//mipi_data_rate_720mbps
175 	{
176 		{0x0103, 0x01},
177 		{0x0100, 0x00},
178 		{0x0302, 0x4b},
179 		{0x0303, 0x01},
180 		{0x030b, 0x02},
181 		{0x030d, 0x4b},
182 		{0x031e, 0x0c}
183 	}
184 };
185 
186 static const struct ov8856_mipi_data_rates mipi_data_rate_lane_4 = {
187 	//mipi_data_rate_720mbps
188 	{
189 		{0x0103, 0x01},
190 		{0x0100, 0x00},
191 		{0x0302, 0x4b},
192 		{0x0303, 0x01},
193 		{0x030b, 0x02},
194 		{0x030d, 0x4b},
195 		{0x031e, 0x0c}
196 	},
197 	//mipi_data_rate_360mbps
198 	{
199 		{0x0103, 0x01},
200 		{0x0100, 0x00},
201 		{0x0302, 0x4b},
202 		{0x0303, 0x03},
203 		{0x030b, 0x02},
204 		{0x030d, 0x4b},
205 		{0x031e, 0x0c}
206 	}
207 };
208 
209 static const struct ov8856_reg lane_2_mode_3280x2464[] = {
210 	/* 3280x2464 resolution */
211 		{0x3000, 0x20},
212 		{0x3003, 0x08},
213 		{0x300e, 0x20},
214 		{0x3010, 0x00},
215 		{0x3015, 0x84},
216 		{0x3018, 0x32},
217 		{0x3021, 0x23},
218 		{0x3033, 0x24},
219 		{0x3500, 0x00},
220 		{0x3501, 0x9a},
221 		{0x3502, 0x20},
222 		{0x3503, 0x08},
223 		{0x3505, 0x83},
224 		{0x3508, 0x01},
225 		{0x3509, 0x80},
226 		{0x350c, 0x00},
227 		{0x350d, 0x80},
228 		{0x350e, 0x04},
229 		{0x350f, 0x00},
230 		{0x3510, 0x00},
231 		{0x3511, 0x02},
232 		{0x3512, 0x00},
233 		{0x3600, 0x72},
234 		{0x3601, 0x40},
235 		{0x3602, 0x30},
236 		{0x3610, 0xc5},
237 		{0x3611, 0x58},
238 		{0x3612, 0x5c},
239 		{0x3613, 0xca},
240 		{0x3614, 0x50},
241 		{0x3628, 0xff},
242 		{0x3629, 0xff},
243 		{0x362a, 0xff},
244 		{0x3633, 0x10},
245 		{0x3634, 0x10},
246 		{0x3635, 0x10},
247 		{0x3636, 0x10},
248 		{0x3663, 0x08},
249 		{0x3669, 0x34},
250 		{0x366e, 0x10},
251 		{0x3706, 0x86},
252 		{0x370b, 0x7e},
253 		{0x3714, 0x23},
254 		{0x3730, 0x12},
255 		{0x3733, 0x10},
256 		{0x3764, 0x00},
257 		{0x3765, 0x00},
258 		{0x3769, 0x62},
259 		{0x376a, 0x2a},
260 		{0x376b, 0x30},
261 		{0x3780, 0x00},
262 		{0x3781, 0x24},
263 		{0x3782, 0x00},
264 		{0x3783, 0x23},
265 		{0x3798, 0x2f},
266 		{0x37a1, 0x60},
267 		{0x37a8, 0x6a},
268 		{0x37ab, 0x3f},
269 		{0x37c2, 0x04},
270 		{0x37c3, 0xf1},
271 		{0x37c9, 0x80},
272 		{0x37cb, 0x16},
273 		{0x37cc, 0x16},
274 		{0x37cd, 0x16},
275 		{0x37ce, 0x16},
276 		{0x3800, 0x00},
277 		{0x3801, 0x00},
278 		{0x3802, 0x00},
279 		{0x3803, 0x06},
280 		{0x3804, 0x0c},
281 		{0x3805, 0xdf},
282 		{0x3806, 0x09},
283 		{0x3807, 0xa7},
284 		{0x3808, 0x0c},
285 		{0x3809, 0xd0},
286 		{0x380a, 0x09},
287 		{0x380b, 0xa0},
288 		{0x380c, 0x07},
289 		{0x380d, 0x88},
290 		{0x380e, 0x09},
291 		{0x380f, 0xb8},
292 		{0x3810, 0x00},
293 		{0x3811, 0x00},
294 		{0x3812, 0x00},
295 		{0x3813, 0x01},
296 		{0x3814, 0x01},
297 		{0x3815, 0x01},
298 		{0x3816, 0x00},
299 		{0x3817, 0x00},
300 		{0x3818, 0x00},
301 		{0x3819, 0x00},
302 		{0x3820, 0x80},
303 		{0x3821, 0x46},
304 		{0x382a, 0x01},
305 		{0x382b, 0x01},
306 		{0x3830, 0x06},
307 		{0x3836, 0x02},
308 		{0x3837, 0x10},
309 		{0x3862, 0x04},
310 		{0x3863, 0x08},
311 		{0x3cc0, 0x33},
312 		{0x3d85, 0x14},
313 		{0x3d8c, 0x73},
314 		{0x3d8d, 0xde},
315 		{0x4001, 0xe0},
316 		{0x4003, 0x40},
317 		{0x4008, 0x00},
318 		{0x4009, 0x0b},
319 		{0x400a, 0x00},
320 		{0x400b, 0x84},
321 		{0x400f, 0x80},
322 		{0x4010, 0xf0},
323 		{0x4011, 0xff},
324 		{0x4012, 0x02},
325 		{0x4013, 0x01},
326 		{0x4014, 0x01},
327 		{0x4015, 0x01},
328 		{0x4042, 0x00},
329 		{0x4043, 0x80},
330 		{0x4044, 0x00},
331 		{0x4045, 0x80},
332 		{0x4046, 0x00},
333 		{0x4047, 0x80},
334 		{0x4048, 0x00},
335 		{0x4049, 0x80},
336 		{0x4041, 0x03},
337 		{0x404c, 0x20},
338 		{0x404d, 0x00},
339 		{0x404e, 0x20},
340 		{0x4203, 0x80},
341 		{0x4307, 0x30},
342 		{0x4317, 0x00},
343 		{0x4503, 0x08},
344 		{0x4601, 0x80},
345 		{0x4800, 0x44},
346 		{0x4816, 0x53},
347 		{0x481b, 0x58},
348 		{0x481f, 0x27},
349 		{0x4837, 0x0c},
350 		{0x483c, 0x0f},
351 		{0x484b, 0x05},
352 		{0x5000, 0x57},
353 		{0x5001, 0x0a},
354 		{0x5004, 0x04},
355 		{0x502e, 0x03},
356 		{0x5030, 0x41},
357 		{0x5795, 0x02},
358 		{0x5796, 0x20},
359 		{0x5797, 0x20},
360 		{0x5798, 0xd5},
361 		{0x5799, 0xd5},
362 		{0x579a, 0x00},
363 		{0x579b, 0x50},
364 		{0x579c, 0x00},
365 		{0x579d, 0x2c},
366 		{0x579e, 0x0c},
367 		{0x579f, 0x40},
368 		{0x57a0, 0x09},
369 		{0x57a1, 0x40},
370 		{0x5780, 0x14},
371 		{0x5781, 0x0f},
372 		{0x5782, 0x44},
373 		{0x5783, 0x02},
374 		{0x5784, 0x01},
375 		{0x5785, 0x01},
376 		{0x5786, 0x00},
377 		{0x5787, 0x04},
378 		{0x5788, 0x02},
379 		{0x5789, 0x0f},
380 		{0x578a, 0xfd},
381 		{0x578b, 0xf5},
382 		{0x578c, 0xf5},
383 		{0x578d, 0x03},
384 		{0x578e, 0x08},
385 		{0x578f, 0x0c},
386 		{0x5790, 0x08},
387 		{0x5791, 0x04},
388 		{0x5792, 0x00},
389 		{0x5793, 0x52},
390 		{0x5794, 0xa3},
391 		{0x59f8, 0x3d},
392 		{0x5a08, 0x02},
393 		{0x5b00, 0x02},
394 		{0x5b01, 0x10},
395 		{0x5b02, 0x03},
396 		{0x5b03, 0xcf},
397 		{0x5b05, 0x6c},
398 		{0x5e00, 0x00}
399 };
400 
401 static const struct ov8856_reg lane_2_mode_1640x1232[] = {
402 	/* 1640x1232 resolution */
403 		{0x3000, 0x20},
404 		{0x3003, 0x08},
405 		{0x300e, 0x20},
406 		{0x3010, 0x00},
407 		{0x3015, 0x84},
408 		{0x3018, 0x32},
409 		{0x3021, 0x23},
410 		{0x3033, 0x24},
411 		{0x3500, 0x00},
412 		{0x3501, 0x4c},
413 		{0x3502, 0xe0},
414 		{0x3503, 0x08},
415 		{0x3505, 0x83},
416 		{0x3508, 0x01},
417 		{0x3509, 0x80},
418 		{0x350c, 0x00},
419 		{0x350d, 0x80},
420 		{0x350e, 0x04},
421 		{0x350f, 0x00},
422 		{0x3510, 0x00},
423 		{0x3511, 0x02},
424 		{0x3512, 0x00},
425 		{0x3600, 0x72},
426 		{0x3601, 0x40},
427 		{0x3602, 0x30},
428 		{0x3610, 0xc5},
429 		{0x3611, 0x58},
430 		{0x3612, 0x5c},
431 		{0x3613, 0xca},
432 		{0x3614, 0x50},
433 		{0x3628, 0xff},
434 		{0x3629, 0xff},
435 		{0x362a, 0xff},
436 		{0x3633, 0x10},
437 		{0x3634, 0x10},
438 		{0x3635, 0x10},
439 		{0x3636, 0x10},
440 		{0x3663, 0x08},
441 		{0x3669, 0x34},
442 		{0x366e, 0x08},
443 		{0x3706, 0x86},
444 		{0x370b, 0x7e},
445 		{0x3714, 0x27},
446 		{0x3730, 0x12},
447 		{0x3733, 0x10},
448 		{0x3764, 0x00},
449 		{0x3765, 0x00},
450 		{0x3769, 0x62},
451 		{0x376a, 0x2a},
452 		{0x376b, 0x30},
453 		{0x3780, 0x00},
454 		{0x3781, 0x24},
455 		{0x3782, 0x00},
456 		{0x3783, 0x23},
457 		{0x3798, 0x2f},
458 		{0x37a1, 0x60},
459 		{0x37a8, 0x6a},
460 		{0x37ab, 0x3f},
461 		{0x37c2, 0x14},
462 		{0x37c3, 0xf1},
463 		{0x37c9, 0x80},
464 		{0x37cb, 0x16},
465 		{0x37cc, 0x16},
466 		{0x37cd, 0x16},
467 		{0x37ce, 0x16},
468 		{0x3800, 0x00},
469 		{0x3801, 0x00},
470 		{0x3802, 0x00},
471 		{0x3803, 0x00},
472 		{0x3804, 0x0c},
473 		{0x3805, 0xdf},
474 		{0x3806, 0x09},
475 		{0x3807, 0xaf},
476 		{0x3808, 0x06},
477 		{0x3809, 0x68},
478 		{0x380a, 0x04},
479 		{0x380b, 0xd0},
480 		{0x380c, 0x0c},
481 		{0x380d, 0x60},
482 		{0x380e, 0x05},
483 		{0x380f, 0xea},
484 		{0x3810, 0x00},
485 		{0x3811, 0x04},
486 		{0x3812, 0x00},
487 		{0x3813, 0x05},
488 		{0x3814, 0x03},
489 		{0x3815, 0x01},
490 		{0x3816, 0x00},
491 		{0x3817, 0x00},
492 		{0x3818, 0x00},
493 		{0x3819, 0x00},
494 		{0x3820, 0x90},
495 		{0x3821, 0x67},
496 		{0x382a, 0x03},
497 		{0x382b, 0x01},
498 		{0x3830, 0x06},
499 		{0x3836, 0x02},
500 		{0x3837, 0x10},
501 		{0x3862, 0x04},
502 		{0x3863, 0x08},
503 		{0x3cc0, 0x33},
504 		{0x3d85, 0x14},
505 		{0x3d8c, 0x73},
506 		{0x3d8d, 0xde},
507 		{0x4001, 0xe0},
508 		{0x4003, 0x40},
509 		{0x4008, 0x00},
510 		{0x4009, 0x05},
511 		{0x400a, 0x00},
512 		{0x400b, 0x84},
513 		{0x400f, 0x80},
514 		{0x4010, 0xf0},
515 		{0x4011, 0xff},
516 		{0x4012, 0x02},
517 		{0x4013, 0x01},
518 		{0x4014, 0x01},
519 		{0x4015, 0x01},
520 		{0x4042, 0x00},
521 		{0x4043, 0x80},
522 		{0x4044, 0x00},
523 		{0x4045, 0x80},
524 		{0x4046, 0x00},
525 		{0x4047, 0x80},
526 		{0x4048, 0x00},
527 		{0x4049, 0x80},
528 		{0x4041, 0x03},
529 		{0x404c, 0x20},
530 		{0x404d, 0x00},
531 		{0x404e, 0x20},
532 		{0x4203, 0x80},
533 		{0x4307, 0x30},
534 		{0x4317, 0x00},
535 		{0x4503, 0x08},
536 		{0x4601, 0x80},
537 		{0x4800, 0x44},
538 		{0x4816, 0x53},
539 		{0x481b, 0x58},
540 		{0x481f, 0x27},
541 		{0x4837, 0x16},
542 		{0x483c, 0x0f},
543 		{0x484b, 0x05},
544 		{0x5000, 0x57},
545 		{0x5001, 0x0a},
546 		{0x5004, 0x04},
547 		{0x502e, 0x03},
548 		{0x5030, 0x41},
549 		{0x5795, 0x00},
550 		{0x5796, 0x10},
551 		{0x5797, 0x10},
552 		{0x5798, 0x73},
553 		{0x5799, 0x73},
554 		{0x579a, 0x00},
555 		{0x579b, 0x28},
556 		{0x579c, 0x00},
557 		{0x579d, 0x16},
558 		{0x579e, 0x06},
559 		{0x579f, 0x20},
560 		{0x57a0, 0x04},
561 		{0x57a1, 0xa0},
562 		{0x5780, 0x14},
563 		{0x5781, 0x0f},
564 		{0x5782, 0x44},
565 		{0x5783, 0x02},
566 		{0x5784, 0x01},
567 		{0x5785, 0x01},
568 		{0x5786, 0x00},
569 		{0x5787, 0x04},
570 		{0x5788, 0x02},
571 		{0x5789, 0x0f},
572 		{0x578a, 0xfd},
573 		{0x578b, 0xf5},
574 		{0x578c, 0xf5},
575 		{0x578d, 0x03},
576 		{0x578e, 0x08},
577 		{0x578f, 0x0c},
578 		{0x5790, 0x08},
579 		{0x5791, 0x04},
580 		{0x5792, 0x00},
581 		{0x5793, 0x52},
582 		{0x5794, 0xa3},
583 		{0x59f8, 0x3d},
584 		{0x5a08, 0x02},
585 		{0x5b00, 0x02},
586 		{0x5b01, 0x10},
587 		{0x5b02, 0x03},
588 		{0x5b03, 0xcf},
589 		{0x5b05, 0x6c},
590 		{0x5e00, 0x00}
591 };
592 
593 static const struct ov8856_reg lane_4_mode_3280x2464[] = {
594 	/* 3280x2464 resolution */
595 		{0x3000, 0x20},
596 		{0x3003, 0x08},
597 		{0x300e, 0x20},
598 		{0x3010, 0x00},
599 		{0x3015, 0x84},
600 		{0x3018, 0x72},
601 		{0x3021, 0x23},
602 		{0x3033, 0x24},
603 		{0x3500, 0x00},
604 		{0x3501, 0x9a},
605 		{0x3502, 0x20},
606 		{0x3503, 0x08},
607 		{0x3505, 0x83},
608 		{0x3508, 0x01},
609 		{0x3509, 0x80},
610 		{0x350c, 0x00},
611 		{0x350d, 0x80},
612 		{0x350e, 0x04},
613 		{0x350f, 0x00},
614 		{0x3510, 0x00},
615 		{0x3511, 0x02},
616 		{0x3512, 0x00},
617 		{0x3600, 0x72},
618 		{0x3601, 0x40},
619 		{0x3602, 0x30},
620 		{0x3610, 0xc5},
621 		{0x3611, 0x58},
622 		{0x3612, 0x5c},
623 		{0x3613, 0xca},
624 		{0x3614, 0x20},
625 		{0x3628, 0xff},
626 		{0x3629, 0xff},
627 		{0x362a, 0xff},
628 		{0x3633, 0x10},
629 		{0x3634, 0x10},
630 		{0x3635, 0x10},
631 		{0x3636, 0x10},
632 		{0x3663, 0x08},
633 		{0x3669, 0x34},
634 		{0x366e, 0x10},
635 		{0x3706, 0x86},
636 		{0x370b, 0x7e},
637 		{0x3714, 0x23},
638 		{0x3730, 0x12},
639 		{0x3733, 0x10},
640 		{0x3764, 0x00},
641 		{0x3765, 0x00},
642 		{0x3769, 0x62},
643 		{0x376a, 0x2a},
644 		{0x376b, 0x30},
645 		{0x3780, 0x00},
646 		{0x3781, 0x24},
647 		{0x3782, 0x00},
648 		{0x3783, 0x23},
649 		{0x3798, 0x2f},
650 		{0x37a1, 0x60},
651 		{0x37a8, 0x6a},
652 		{0x37ab, 0x3f},
653 		{0x37c2, 0x04},
654 		{0x37c3, 0xf1},
655 		{0x37c9, 0x80},
656 		{0x37cb, 0x16},
657 		{0x37cc, 0x16},
658 		{0x37cd, 0x16},
659 		{0x37ce, 0x16},
660 		{0x3800, 0x00},
661 		{0x3801, 0x00},
662 		{0x3802, 0x00},
663 		{0x3803, 0x06},
664 		{0x3804, 0x0c},
665 		{0x3805, 0xdf},
666 		{0x3806, 0x09},
667 		{0x3807, 0xa7},
668 		{0x3808, 0x0c},
669 		{0x3809, 0xd0},
670 		{0x380a, 0x09},
671 		{0x380b, 0xa0},
672 		{0x380c, 0x07},
673 		{0x380d, 0x88},
674 		{0x380e, 0x09},
675 		{0x380f, 0xb8},
676 		{0x3810, 0x00},
677 		{0x3811, 0x00},
678 		{0x3812, 0x00},
679 		{0x3813, 0x01},
680 		{0x3814, 0x01},
681 		{0x3815, 0x01},
682 		{0x3816, 0x00},
683 		{0x3817, 0x00},
684 		{0x3818, 0x00},
685 		{0x3819, 0x10},
686 		{0x3820, 0x80},
687 		{0x3821, 0x46},
688 		{0x382a, 0x01},
689 		{0x382b, 0x01},
690 		{0x3830, 0x06},
691 		{0x3836, 0x02},
692 		{0x3862, 0x04},
693 		{0x3863, 0x08},
694 		{0x3cc0, 0x33},
695 		{0x3d85, 0x17},
696 		{0x3d8c, 0x73},
697 		{0x3d8d, 0xde},
698 		{0x4001, 0xe0},
699 		{0x4003, 0x40},
700 		{0x4008, 0x00},
701 		{0x4009, 0x0b},
702 		{0x400a, 0x00},
703 		{0x400b, 0x84},
704 		{0x400f, 0x80},
705 		{0x4010, 0xf0},
706 		{0x4011, 0xff},
707 		{0x4012, 0x02},
708 		{0x4013, 0x01},
709 		{0x4014, 0x01},
710 		{0x4015, 0x01},
711 		{0x4042, 0x00},
712 		{0x4043, 0x80},
713 		{0x4044, 0x00},
714 		{0x4045, 0x80},
715 		{0x4046, 0x00},
716 		{0x4047, 0x80},
717 		{0x4048, 0x00},
718 		{0x4049, 0x80},
719 		{0x4041, 0x03},
720 		{0x404c, 0x20},
721 		{0x404d, 0x00},
722 		{0x404e, 0x20},
723 		{0x4203, 0x80},
724 		{0x4307, 0x30},
725 		{0x4317, 0x00},
726 		{0x4503, 0x08},
727 		{0x4601, 0x80},
728 		{0x4800, 0x44},
729 		{0x4816, 0x53},
730 		{0x481b, 0x58},
731 		{0x481f, 0x27},
732 		{0x4837, 0x16},
733 		{0x483c, 0x0f},
734 		{0x484b, 0x05},
735 		{0x5000, 0x57},
736 		{0x5001, 0x0a},
737 		{0x5004, 0x04},
738 		{0x502e, 0x03},
739 		{0x5030, 0x41},
740 		{0x5780, 0x14},
741 		{0x5781, 0x0f},
742 		{0x5782, 0x44},
743 		{0x5783, 0x02},
744 		{0x5784, 0x01},
745 		{0x5785, 0x01},
746 		{0x5786, 0x00},
747 		{0x5787, 0x04},
748 		{0x5788, 0x02},
749 		{0x5789, 0x0f},
750 		{0x578a, 0xfd},
751 		{0x578b, 0xf5},
752 		{0x578c, 0xf5},
753 		{0x578d, 0x03},
754 		{0x578e, 0x08},
755 		{0x578f, 0x0c},
756 		{0x5790, 0x08},
757 		{0x5791, 0x04},
758 		{0x5792, 0x00},
759 		{0x5793, 0x52},
760 		{0x5794, 0xa3},
761 		{0x5795, 0x02},
762 		{0x5796, 0x20},
763 		{0x5797, 0x20},
764 		{0x5798, 0xd5},
765 		{0x5799, 0xd5},
766 		{0x579a, 0x00},
767 		{0x579b, 0x50},
768 		{0x579c, 0x00},
769 		{0x579d, 0x2c},
770 		{0x579e, 0x0c},
771 		{0x579f, 0x40},
772 		{0x57a0, 0x09},
773 		{0x57a1, 0x40},
774 		{0x59f8, 0x3d},
775 		{0x5a08, 0x02},
776 		{0x5b00, 0x02},
777 		{0x5b01, 0x10},
778 		{0x5b02, 0x03},
779 		{0x5b03, 0xcf},
780 		{0x5b05, 0x6c},
781 		{0x5e00, 0x00}
782 };
783 
784 static const struct ov8856_reg lane_4_mode_1640x1232[] = {
785 	/* 1640x1232 resolution */
786 		{0x3000, 0x20},
787 		{0x3003, 0x08},
788 		{0x300e, 0x20},
789 		{0x3010, 0x00},
790 		{0x3015, 0x84},
791 		{0x3018, 0x72},
792 		{0x3021, 0x23},
793 		{0x3033, 0x24},
794 		{0x3500, 0x00},
795 		{0x3501, 0x4c},
796 		{0x3502, 0xe0},
797 		{0x3503, 0x08},
798 		{0x3505, 0x83},
799 		{0x3508, 0x01},
800 		{0x3509, 0x80},
801 		{0x350c, 0x00},
802 		{0x350d, 0x80},
803 		{0x350e, 0x04},
804 		{0x350f, 0x00},
805 		{0x3510, 0x00},
806 		{0x3511, 0x02},
807 		{0x3512, 0x00},
808 		{0x3600, 0x72},
809 		{0x3601, 0x40},
810 		{0x3602, 0x30},
811 		{0x3610, 0xc5},
812 		{0x3611, 0x58},
813 		{0x3612, 0x5c},
814 		{0x3613, 0xca},
815 		{0x3614, 0x20},
816 		{0x3628, 0xff},
817 		{0x3629, 0xff},
818 		{0x362a, 0xff},
819 		{0x3633, 0x10},
820 		{0x3634, 0x10},
821 		{0x3635, 0x10},
822 		{0x3636, 0x10},
823 		{0x3663, 0x08},
824 		{0x3669, 0x34},
825 		{0x366e, 0x08},
826 		{0x3706, 0x86},
827 		{0x370b, 0x7e},
828 		{0x3714, 0x27},
829 		{0x3730, 0x12},
830 		{0x3733, 0x10},
831 		{0x3764, 0x00},
832 		{0x3765, 0x00},
833 		{0x3769, 0x62},
834 		{0x376a, 0x2a},
835 		{0x376b, 0x30},
836 		{0x3780, 0x00},
837 		{0x3781, 0x24},
838 		{0x3782, 0x00},
839 		{0x3783, 0x23},
840 		{0x3798, 0x2f},
841 		{0x37a1, 0x60},
842 		{0x37a8, 0x6a},
843 		{0x37ab, 0x3f},
844 		{0x37c2, 0x14},
845 		{0x37c3, 0xf1},
846 		{0x37c9, 0x80},
847 		{0x37cb, 0x16},
848 		{0x37cc, 0x16},
849 		{0x37cd, 0x16},
850 		{0x37ce, 0x16},
851 		{0x3800, 0x00},
852 		{0x3801, 0x00},
853 		{0x3802, 0x00},
854 		{0x3803, 0x00},
855 		{0x3804, 0x0c},
856 		{0x3805, 0xdf},
857 		{0x3806, 0x09},
858 		{0x3807, 0xaf},
859 		{0x3808, 0x06},
860 		{0x3809, 0x68},
861 		{0x380a, 0x04},
862 		{0x380b, 0xd0},
863 		{0x380c, 0x0e},
864 		{0x380d, 0xec},
865 		{0x380e, 0x04},
866 		{0x380f, 0xe8},
867 		{0x3810, 0x00},
868 		{0x3811, 0x04},
869 		{0x3812, 0x00},
870 		{0x3813, 0x05},
871 		{0x3814, 0x03},
872 		{0x3815, 0x01},
873 		{0x3816, 0x00},
874 		{0x3817, 0x00},
875 		{0x3818, 0x00},
876 		{0x3819, 0x10},
877 		{0x3820, 0x90},
878 		{0x3821, 0x67},
879 		{0x382a, 0x03},
880 		{0x382b, 0x01},
881 		{0x3830, 0x06},
882 		{0x3836, 0x02},
883 		{0x3862, 0x04},
884 		{0x3863, 0x08},
885 		{0x3cc0, 0x33},
886 		{0x3d85, 0x17},
887 		{0x3d8c, 0x73},
888 		{0x3d8d, 0xde},
889 		{0x4001, 0xe0},
890 		{0x4003, 0x40},
891 		{0x4008, 0x00},
892 		{0x4009, 0x05},
893 		{0x400a, 0x00},
894 		{0x400b, 0x84},
895 		{0x400f, 0x80},
896 		{0x4010, 0xf0},
897 		{0x4011, 0xff},
898 		{0x4012, 0x02},
899 		{0x4013, 0x01},
900 		{0x4014, 0x01},
901 		{0x4015, 0x01},
902 		{0x4042, 0x00},
903 		{0x4043, 0x80},
904 		{0x4044, 0x00},
905 		{0x4045, 0x80},
906 		{0x4046, 0x00},
907 		{0x4047, 0x80},
908 		{0x4048, 0x00},
909 		{0x4049, 0x80},
910 		{0x4041, 0x03},
911 		{0x404c, 0x20},
912 		{0x404d, 0x00},
913 		{0x404e, 0x20},
914 		{0x4203, 0x80},
915 		{0x4307, 0x30},
916 		{0x4317, 0x00},
917 		{0x4503, 0x08},
918 		{0x4601, 0x80},
919 		{0x4800, 0x44},
920 		{0x4816, 0x53},
921 		{0x481b, 0x58},
922 		{0x481f, 0x27},
923 		{0x4837, 0x16},
924 		{0x483c, 0x0f},
925 		{0x484b, 0x05},
926 		{0x5000, 0x57},
927 		{0x5001, 0x0a},
928 		{0x5004, 0x04},
929 		{0x502e, 0x03},
930 		{0x5030, 0x41},
931 		{0x5780, 0x14},
932 		{0x5781, 0x0f},
933 		{0x5782, 0x44},
934 		{0x5783, 0x02},
935 		{0x5784, 0x01},
936 		{0x5785, 0x01},
937 		{0x5786, 0x00},
938 		{0x5787, 0x04},
939 		{0x5788, 0x02},
940 		{0x5789, 0x0f},
941 		{0x578a, 0xfd},
942 		{0x578b, 0xf5},
943 		{0x578c, 0xf5},
944 		{0x578d, 0x03},
945 		{0x578e, 0x08},
946 		{0x578f, 0x0c},
947 		{0x5790, 0x08},
948 		{0x5791, 0x04},
949 		{0x5792, 0x00},
950 		{0x5793, 0x52},
951 		{0x5794, 0xa3},
952 		{0x5795, 0x00},
953 		{0x5796, 0x10},
954 		{0x5797, 0x10},
955 		{0x5798, 0x73},
956 		{0x5799, 0x73},
957 		{0x579a, 0x00},
958 		{0x579b, 0x28},
959 		{0x579c, 0x00},
960 		{0x579d, 0x16},
961 		{0x579e, 0x06},
962 		{0x579f, 0x20},
963 		{0x57a0, 0x04},
964 		{0x57a1, 0xa0},
965 		{0x59f8, 0x3d},
966 		{0x5a08, 0x02},
967 		{0x5b00, 0x02},
968 		{0x5b01, 0x10},
969 		{0x5b02, 0x03},
970 		{0x5b03, 0xcf},
971 		{0x5b05, 0x6c},
972 		{0x5e00, 0x00}
973 };
974 
975 static const struct ov8856_reg lane_4_mode_3264x2448[] = {
976 	/* 3264x2448 resolution */
977 		{0x0103, 0x01},
978 		{0x0302, 0x3c},
979 		{0x0303, 0x01},
980 		{0x031e, 0x0c},
981 		{0x3000, 0x20},
982 		{0x3003, 0x08},
983 		{0x300e, 0x20},
984 		{0x3010, 0x00},
985 		{0x3015, 0x84},
986 		{0x3018, 0x72},
987 		{0x3021, 0x23},
988 		{0x3033, 0x24},
989 		{0x3500, 0x00},
990 		{0x3501, 0x9a},
991 		{0x3502, 0x20},
992 		{0x3503, 0x08},
993 		{0x3505, 0x83},
994 		{0x3508, 0x01},
995 		{0x3509, 0x80},
996 		{0x350c, 0x00},
997 		{0x350d, 0x80},
998 		{0x350e, 0x04},
999 		{0x350f, 0x00},
1000 		{0x3510, 0x00},
1001 		{0x3511, 0x02},
1002 		{0x3512, 0x00},
1003 		{0x3600, 0x72},
1004 		{0x3601, 0x40},
1005 		{0x3602, 0x30},
1006 		{0x3610, 0xc5},
1007 		{0x3611, 0x58},
1008 		{0x3612, 0x5c},
1009 		{0x3613, 0xca},
1010 		{0x3614, 0x60},
1011 		{0x3628, 0xff},
1012 		{0x3629, 0xff},
1013 		{0x362a, 0xff},
1014 		{0x3633, 0x10},
1015 		{0x3634, 0x10},
1016 		{0x3635, 0x10},
1017 		{0x3636, 0x10},
1018 		{0x3663, 0x08},
1019 		{0x3669, 0x34},
1020 		{0x366d, 0x00},
1021 		{0x366e, 0x10},
1022 		{0x3706, 0x86},
1023 		{0x370b, 0x7e},
1024 		{0x3714, 0x23},
1025 		{0x3730, 0x12},
1026 		{0x3733, 0x10},
1027 		{0x3764, 0x00},
1028 		{0x3765, 0x00},
1029 		{0x3769, 0x62},
1030 		{0x376a, 0x2a},
1031 		{0x376b, 0x30},
1032 		{0x3780, 0x00},
1033 		{0x3781, 0x24},
1034 		{0x3782, 0x00},
1035 		{0x3783, 0x23},
1036 		{0x3798, 0x2f},
1037 		{0x37a1, 0x60},
1038 		{0x37a8, 0x6a},
1039 		{0x37ab, 0x3f},
1040 		{0x37c2, 0x04},
1041 		{0x37c3, 0xf1},
1042 		{0x37c9, 0x80},
1043 		{0x37cb, 0x16},
1044 		{0x37cc, 0x16},
1045 		{0x37cd, 0x16},
1046 		{0x37ce, 0x16},
1047 		{0x3800, 0x00},
1048 		{0x3801, 0x00},
1049 		{0x3802, 0x00},
1050 		{0x3803, 0x0c},
1051 		{0x3804, 0x0c},
1052 		{0x3805, 0xdf},
1053 		{0x3806, 0x09},
1054 		{0x3807, 0xa3},
1055 		{0x3808, 0x0c},
1056 		{0x3809, 0xc0},
1057 		{0x380a, 0x09},
1058 		{0x380b, 0x90},
1059 		{0x380c, 0x07},
1060 		{0x380d, 0x8c},
1061 		{0x380e, 0x09},
1062 		{0x380f, 0xb2},
1063 		{0x3810, 0x00},
1064 		{0x3811, 0x04},
1065 		{0x3812, 0x00},
1066 		{0x3813, 0x02},
1067 		{0x3814, 0x01},
1068 		{0x3815, 0x01},
1069 		{0x3816, 0x00},
1070 		{0x3817, 0x00},
1071 		{0x3818, 0x00},
1072 		{0x3819, 0x10},
1073 		{0x3820, 0x80},
1074 		{0x3821, 0x46},
1075 		{0x382a, 0x01},
1076 		{0x382b, 0x01},
1077 		{0x3830, 0x06},
1078 		{0x3836, 0x02},
1079 		{0x3862, 0x04},
1080 		{0x3863, 0x08},
1081 		{0x3cc0, 0x33},
1082 		{0x3d85, 0x17},
1083 		{0x3d8c, 0x73},
1084 		{0x3d8d, 0xde},
1085 		{0x4001, 0xe0},
1086 		{0x4003, 0x40},
1087 		{0x4008, 0x00},
1088 		{0x4009, 0x0b},
1089 		{0x400a, 0x00},
1090 		{0x400b, 0x84},
1091 		{0x400f, 0x80},
1092 		{0x4010, 0xf0},
1093 		{0x4011, 0xff},
1094 		{0x4012, 0x02},
1095 		{0x4013, 0x01},
1096 		{0x4014, 0x01},
1097 		{0x4015, 0x01},
1098 		{0x4042, 0x00},
1099 		{0x4043, 0x80},
1100 		{0x4044, 0x00},
1101 		{0x4045, 0x80},
1102 		{0x4046, 0x00},
1103 		{0x4047, 0x80},
1104 		{0x4048, 0x00},
1105 		{0x4049, 0x80},
1106 		{0x4041, 0x03},
1107 		{0x404c, 0x20},
1108 		{0x404d, 0x00},
1109 		{0x404e, 0x20},
1110 		{0x4203, 0x80},
1111 		{0x4307, 0x30},
1112 		{0x4317, 0x00},
1113 		{0x4502, 0x50},
1114 		{0x4503, 0x08},
1115 		{0x4601, 0x80},
1116 		{0x4800, 0x44},
1117 		{0x4816, 0x53},
1118 		{0x481b, 0x50},
1119 		{0x481f, 0x27},
1120 		{0x4823, 0x3c},
1121 		{0x482b, 0x00},
1122 		{0x4831, 0x66},
1123 		{0x4837, 0x16},
1124 		{0x483c, 0x0f},
1125 		{0x484b, 0x05},
1126 		{0x5000, 0x77},
1127 		{0x5001, 0x0a},
1128 		{0x5003, 0xc8},
1129 		{0x5004, 0x04},
1130 		{0x5006, 0x00},
1131 		{0x5007, 0x00},
1132 		{0x502e, 0x03},
1133 		{0x5030, 0x41},
1134 		{0x5780, 0x14},
1135 		{0x5781, 0x0f},
1136 		{0x5782, 0x44},
1137 		{0x5783, 0x02},
1138 		{0x5784, 0x01},
1139 		{0x5785, 0x01},
1140 		{0x5786, 0x00},
1141 		{0x5787, 0x04},
1142 		{0x5788, 0x02},
1143 		{0x5789, 0x0f},
1144 		{0x578a, 0xfd},
1145 		{0x578b, 0xf5},
1146 		{0x578c, 0xf5},
1147 		{0x578d, 0x03},
1148 		{0x578e, 0x08},
1149 		{0x578f, 0x0c},
1150 		{0x5790, 0x08},
1151 		{0x5791, 0x04},
1152 		{0x5792, 0x00},
1153 		{0x5793, 0x52},
1154 		{0x5794, 0xa3},
1155 		{0x5795, 0x02},
1156 		{0x5796, 0x20},
1157 		{0x5797, 0x20},
1158 		{0x5798, 0xd5},
1159 		{0x5799, 0xd5},
1160 		{0x579a, 0x00},
1161 		{0x579b, 0x50},
1162 		{0x579c, 0x00},
1163 		{0x579d, 0x2c},
1164 		{0x579e, 0x0c},
1165 		{0x579f, 0x40},
1166 		{0x57a0, 0x09},
1167 		{0x57a1, 0x40},
1168 		{0x59f8, 0x3d},
1169 		{0x5a08, 0x02},
1170 		{0x5b00, 0x02},
1171 		{0x5b01, 0x10},
1172 		{0x5b02, 0x03},
1173 		{0x5b03, 0xcf},
1174 		{0x5b05, 0x6c},
1175 		{0x5e00, 0x00},
1176 		{0x5e10, 0xfc}
1177 };
1178 
1179 static const struct ov8856_reg lane_4_mode_1632x1224[] = {
1180 	/* 1632x1224 resolution */
1181 		{0x0103, 0x01},
1182 		{0x0302, 0x3c},
1183 		{0x0303, 0x01},
1184 		{0x031e, 0x0c},
1185 		{0x3000, 0x20},
1186 		{0x3003, 0x08},
1187 		{0x300e, 0x20},
1188 		{0x3010, 0x00},
1189 		{0x3015, 0x84},
1190 		{0x3018, 0x72},
1191 		{0x3021, 0x23},
1192 		{0x3033, 0x24},
1193 		{0x3500, 0x00},
1194 		{0x3501, 0x4c},
1195 		{0x3502, 0xe0},
1196 		{0x3503, 0x08},
1197 		{0x3505, 0x83},
1198 		{0x3508, 0x01},
1199 		{0x3509, 0x80},
1200 		{0x350c, 0x00},
1201 		{0x350d, 0x80},
1202 		{0x350e, 0x04},
1203 		{0x350f, 0x00},
1204 		{0x3510, 0x00},
1205 		{0x3511, 0x02},
1206 		{0x3512, 0x00},
1207 		{0x3600, 0x72},
1208 		{0x3601, 0x40},
1209 		{0x3602, 0x30},
1210 		{0x3610, 0xc5},
1211 		{0x3611, 0x58},
1212 		{0x3612, 0x5c},
1213 		{0x3613, 0xca},
1214 		{0x3614, 0x60},
1215 		{0x3628, 0xff},
1216 		{0x3629, 0xff},
1217 		{0x362a, 0xff},
1218 		{0x3633, 0x10},
1219 		{0x3634, 0x10},
1220 		{0x3635, 0x10},
1221 		{0x3636, 0x10},
1222 		{0x3663, 0x08},
1223 		{0x3669, 0x34},
1224 		{0x366d, 0x00},
1225 		{0x366e, 0x08},
1226 		{0x3706, 0x86},
1227 		{0x370b, 0x7e},
1228 		{0x3714, 0x27},
1229 		{0x3730, 0x12},
1230 		{0x3733, 0x10},
1231 		{0x3764, 0x00},
1232 		{0x3765, 0x00},
1233 		{0x3769, 0x62},
1234 		{0x376a, 0x2a},
1235 		{0x376b, 0x30},
1236 		{0x3780, 0x00},
1237 		{0x3781, 0x24},
1238 		{0x3782, 0x00},
1239 		{0x3783, 0x23},
1240 		{0x3798, 0x2f},
1241 		{0x37a1, 0x60},
1242 		{0x37a8, 0x6a},
1243 		{0x37ab, 0x3f},
1244 		{0x37c2, 0x14},
1245 		{0x37c3, 0xf1},
1246 		{0x37c9, 0x80},
1247 		{0x37cb, 0x16},
1248 		{0x37cc, 0x16},
1249 		{0x37cd, 0x16},
1250 		{0x37ce, 0x16},
1251 		{0x3800, 0x00},
1252 		{0x3801, 0x00},
1253 		{0x3802, 0x00},
1254 		{0x3803, 0x0c},
1255 		{0x3804, 0x0c},
1256 		{0x3805, 0xdf},
1257 		{0x3806, 0x09},
1258 		{0x3807, 0xa3},
1259 		{0x3808, 0x06},
1260 		{0x3809, 0x60},
1261 		{0x380a, 0x04},
1262 		{0x380b, 0xc8},
1263 		{0x380c, 0x07},
1264 		{0x380d, 0x8c},
1265 		{0x380e, 0x09},
1266 		{0x380f, 0xb2},
1267 		{0x3810, 0x00},
1268 		{0x3811, 0x02},
1269 		{0x3812, 0x00},
1270 		{0x3813, 0x02},
1271 		{0x3814, 0x03},
1272 		{0x3815, 0x01},
1273 		{0x3816, 0x00},
1274 		{0x3817, 0x00},
1275 		{0x3818, 0x00},
1276 		{0x3819, 0x10},
1277 		{0x3820, 0x80},
1278 		{0x3821, 0x47},
1279 		{0x382a, 0x03},
1280 		{0x382b, 0x01},
1281 		{0x3830, 0x06},
1282 		{0x3836, 0x02},
1283 		{0x3862, 0x04},
1284 		{0x3863, 0x08},
1285 		{0x3cc0, 0x33},
1286 		{0x3d85, 0x17},
1287 		{0x3d8c, 0x73},
1288 		{0x3d8d, 0xde},
1289 		{0x4001, 0xe0},
1290 		{0x4003, 0x40},
1291 		{0x4008, 0x00},
1292 		{0x4009, 0x05},
1293 		{0x400a, 0x00},
1294 		{0x400b, 0x84},
1295 		{0x400f, 0x80},
1296 		{0x4010, 0xf0},
1297 		{0x4011, 0xff},
1298 		{0x4012, 0x02},
1299 		{0x4013, 0x01},
1300 		{0x4014, 0x01},
1301 		{0x4015, 0x01},
1302 		{0x4042, 0x00},
1303 		{0x4043, 0x80},
1304 		{0x4044, 0x00},
1305 		{0x4045, 0x80},
1306 		{0x4046, 0x00},
1307 		{0x4047, 0x80},
1308 		{0x4048, 0x00},
1309 		{0x4049, 0x80},
1310 		{0x4041, 0x03},
1311 		{0x404c, 0x20},
1312 		{0x404d, 0x00},
1313 		{0x404e, 0x20},
1314 		{0x4203, 0x80},
1315 		{0x4307, 0x30},
1316 		{0x4317, 0x00},
1317 		{0x4502, 0x50},
1318 		{0x4503, 0x08},
1319 		{0x4601, 0x80},
1320 		{0x4800, 0x44},
1321 		{0x4816, 0x53},
1322 		{0x481b, 0x50},
1323 		{0x481f, 0x27},
1324 		{0x4823, 0x3c},
1325 		{0x482b, 0x00},
1326 		{0x4831, 0x66},
1327 		{0x4837, 0x16},
1328 		{0x483c, 0x0f},
1329 		{0x484b, 0x05},
1330 		{0x5000, 0x77},
1331 		{0x5001, 0x0a},
1332 		{0x5003, 0xc8},
1333 		{0x5004, 0x04},
1334 		{0x5006, 0x00},
1335 		{0x5007, 0x00},
1336 		{0x502e, 0x03},
1337 		{0x5030, 0x41},
1338 		{0x5795, 0x00},
1339 		{0x5796, 0x10},
1340 		{0x5797, 0x10},
1341 		{0x5798, 0x73},
1342 		{0x5799, 0x73},
1343 		{0x579a, 0x00},
1344 		{0x579b, 0x28},
1345 		{0x579c, 0x00},
1346 		{0x579d, 0x16},
1347 		{0x579e, 0x06},
1348 		{0x579f, 0x20},
1349 		{0x57a0, 0x04},
1350 		{0x57a1, 0xa0},
1351 		{0x5780, 0x14},
1352 		{0x5781, 0x0f},
1353 		{0x5782, 0x44},
1354 		{0x5783, 0x02},
1355 		{0x5784, 0x01},
1356 		{0x5785, 0x01},
1357 		{0x5786, 0x00},
1358 		{0x5787, 0x04},
1359 		{0x5788, 0x02},
1360 		{0x5789, 0x0f},
1361 		{0x578a, 0xfd},
1362 		{0x578b, 0xf5},
1363 		{0x578c, 0xf5},
1364 		{0x578d, 0x03},
1365 		{0x578e, 0x08},
1366 		{0x578f, 0x0c},
1367 		{0x5790, 0x08},
1368 		{0x5791, 0x04},
1369 		{0x5792, 0x00},
1370 		{0x5793, 0x52},
1371 		{0x5794, 0xa3},
1372 		{0x59f8, 0x3d},
1373 		{0x5a08, 0x02},
1374 		{0x5b00, 0x02},
1375 		{0x5b01, 0x10},
1376 		{0x5b02, 0x03},
1377 		{0x5b03, 0xcf},
1378 		{0x5b05, 0x6c},
1379 		{0x5e00, 0x00},
1380 		{0x5e10, 0xfc}
1381 };
1382 
1383 static const struct ov8856_reg mipi_data_mbus_sbggr10_1x10[] = {
1384 	{0x3813, 0x02},
1385 };
1386 
1387 static const struct ov8856_reg mipi_data_mbus_sgrbg10_1x10[] = {
1388 	{0x3813, 0x01},
1389 };
1390 
1391 static const u32 ov8856_mbus_codes[] = {
1392 	MEDIA_BUS_FMT_SBGGR10_1X10,
1393 	MEDIA_BUS_FMT_SGRBG10_1X10
1394 };
1395 
1396 static const char * const ov8856_test_pattern_menu[] = {
1397 	"Disabled",
1398 	"Standard Color Bar",
1399 	"Top-Bottom Darker Color Bar",
1400 	"Right-Left Darker Color Bar",
1401 	"Bottom-Top Darker Color Bar"
1402 };
1403 
1404 static const struct ov8856_reg_list bayer_offset_configs[] = {
1405 	[OV8856_MEDIA_BUS_FMT_SBGGR10_1X10] = {
1406 		.num_of_regs = ARRAY_SIZE(mipi_data_mbus_sbggr10_1x10),
1407 		.regs = mipi_data_mbus_sbggr10_1x10,
1408 	},
1409 	[OV8856_MEDIA_BUS_FMT_SGRBG10_1X10] = {
1410 		.num_of_regs = ARRAY_SIZE(mipi_data_mbus_sgrbg10_1x10),
1411 		.regs = mipi_data_mbus_sgrbg10_1x10,
1412 	}
1413 };
1414 
1415 struct ov8856 {
1416 	struct v4l2_subdev sd;
1417 	struct media_pad pad;
1418 	struct v4l2_ctrl_handler ctrl_handler;
1419 
1420 	struct clk		*xvclk;
1421 	struct gpio_desc	*reset_gpio;
1422 	struct regulator_bulk_data supplies[ARRAY_SIZE(ov8856_supply_names)];
1423 
1424 	/* V4L2 Controls */
1425 	struct v4l2_ctrl *link_freq;
1426 	struct v4l2_ctrl *pixel_rate;
1427 	struct v4l2_ctrl *vblank;
1428 	struct v4l2_ctrl *hblank;
1429 	struct v4l2_ctrl *exposure;
1430 
1431 	/* Current mode */
1432 	const struct ov8856_mode *cur_mode;
1433 
1434 	/* Application specified mbus format */
1435 	u32 cur_mbus_index;
1436 
1437 	/* To serialize asynchronus callbacks */
1438 	struct mutex mutex;
1439 
1440 	/* Streaming on/off */
1441 	bool streaming;
1442 
1443 	/* lanes index */
1444 	u8 nlanes;
1445 
1446 	const struct ov8856_lane_cfg *priv_lane;
1447 	u8 modes_size;
1448 
1449 	/* True if the device has been identified */
1450 	bool identified;
1451 };
1452 
1453 struct ov8856_lane_cfg {
1454 	const s64 link_freq_menu_items[2];
1455 	const struct ov8856_link_freq_config link_freq_configs[2];
1456 	const struct ov8856_mode supported_modes[4];
1457 };
1458 
1459 static const struct ov8856_lane_cfg lane_cfg_2 = {
1460 	{
1461 		720000000,
1462 		360000000,
1463 	},
1464 	{{
1465 		.reg_list = {
1466 			.num_of_regs =
1467 			ARRAY_SIZE(mipi_data_rate_lane_2.regs_0),
1468 			.regs = mipi_data_rate_lane_2.regs_0,
1469 		}
1470 	},
1471 	{
1472 		.reg_list = {
1473 			.num_of_regs =
1474 			ARRAY_SIZE(mipi_data_rate_lane_2.regs_1),
1475 			.regs = mipi_data_rate_lane_2.regs_1,
1476 		}
1477 	}},
1478 	{{
1479 		.width = 3280,
1480 		.height = 2464,
1481 		.hts = 1928,
1482 		.vts_def = 2488,
1483 		.vts_min = 2488,
1484 		.reg_list = {
1485 			.num_of_regs =
1486 			ARRAY_SIZE(lane_2_mode_3280x2464),
1487 			.regs = lane_2_mode_3280x2464,
1488 		},
1489 		.link_freq_index = 0,
1490 		.data_lanes = 2,
1491 		.default_mbus_index = OV8856_MEDIA_BUS_FMT_SGRBG10_1X10,
1492 	},
1493 	{
1494 		.width = 1640,
1495 		.height = 1232,
1496 		.hts = 3168,
1497 		.vts_def = 1514,
1498 		.vts_min = 1514,
1499 		.reg_list = {
1500 			.num_of_regs =
1501 			ARRAY_SIZE(lane_2_mode_1640x1232),
1502 			.regs = lane_2_mode_1640x1232,
1503 		},
1504 		.link_freq_index = 1,
1505 		.data_lanes = 2,
1506 		.default_mbus_index = OV8856_MEDIA_BUS_FMT_SGRBG10_1X10,
1507 	}}
1508 };
1509 
1510 static const struct ov8856_lane_cfg lane_cfg_4 = {
1511 		{
1512 			360000000,
1513 			180000000,
1514 		},
1515 		{{
1516 			.reg_list = {
1517 				.num_of_regs =
1518 				 ARRAY_SIZE(mipi_data_rate_lane_4.regs_0),
1519 				.regs = mipi_data_rate_lane_4.regs_0,
1520 			}
1521 		},
1522 		{
1523 			.reg_list = {
1524 				.num_of_regs =
1525 				 ARRAY_SIZE(mipi_data_rate_lane_4.regs_1),
1526 				.regs = mipi_data_rate_lane_4.regs_1,
1527 			}
1528 		}},
1529 		{{
1530 			.width = 3280,
1531 			.height = 2464,
1532 			.hts = 1928,
1533 			.vts_def = 2488,
1534 			.vts_min = 2488,
1535 			.reg_list = {
1536 				.num_of_regs =
1537 				 ARRAY_SIZE(lane_4_mode_3280x2464),
1538 				.regs = lane_4_mode_3280x2464,
1539 			},
1540 			.link_freq_index = 0,
1541 			.data_lanes = 4,
1542 			.default_mbus_index = OV8856_MEDIA_BUS_FMT_SGRBG10_1X10,
1543 		},
1544 		{
1545 			.width = 1640,
1546 			.height = 1232,
1547 			.hts = 3820,
1548 			.vts_def = 1256,
1549 			.vts_min = 1256,
1550 			.reg_list = {
1551 				.num_of_regs =
1552 				 ARRAY_SIZE(lane_4_mode_1640x1232),
1553 				.regs = lane_4_mode_1640x1232,
1554 			},
1555 			.link_freq_index = 1,
1556 			.data_lanes = 4,
1557 			.default_mbus_index = OV8856_MEDIA_BUS_FMT_SGRBG10_1X10,
1558 		},
1559 		{
1560 			.width = 3264,
1561 			.height = 2448,
1562 			.hts = 1932,
1563 			.vts_def = 2482,
1564 			.vts_min = 2482,
1565 			.reg_list = {
1566 				.num_of_regs =
1567 				 ARRAY_SIZE(lane_4_mode_3264x2448),
1568 				.regs = lane_4_mode_3264x2448,
1569 			},
1570 			.link_freq_index = 0,
1571 			.data_lanes = 4,
1572 			.default_mbus_index = OV8856_MEDIA_BUS_FMT_SBGGR10_1X10,
1573 		},
1574 		{
1575 			.width = 1632,
1576 			.height = 1224,
1577 			.hts = 1932,
1578 			.vts_def = 2482,
1579 			.vts_min = 2482,
1580 			.reg_list = {
1581 				.num_of_regs =
1582 				 ARRAY_SIZE(lane_4_mode_1632x1224),
1583 				.regs = lane_4_mode_1632x1224,
1584 			},
1585 			.link_freq_index = 1,
1586 			.data_lanes = 4,
1587 			.default_mbus_index = OV8856_MEDIA_BUS_FMT_SBGGR10_1X10,
1588 		}}
1589 };
1590 
1591 static unsigned int ov8856_modes_num(const struct ov8856 *ov8856)
1592 {
1593 	unsigned int i, count = 0;
1594 
1595 	for (i = 0; i < ARRAY_SIZE(ov8856->priv_lane->supported_modes); i++) {
1596 		if (ov8856->priv_lane->supported_modes[i].width == 0)
1597 			break;
1598 		count++;
1599 	}
1600 
1601 	return count;
1602 }
1603 
1604 static u64 to_rate(const s64 *link_freq_menu_items,
1605 		   u32 f_index, u8 nlanes)
1606 {
1607 	u64 pixel_rate = link_freq_menu_items[f_index] * 2 * nlanes;
1608 
1609 	do_div(pixel_rate, OV8856_RGB_DEPTH);
1610 
1611 	return pixel_rate;
1612 }
1613 
1614 static u64 to_pixels_per_line(const s64 *link_freq_menu_items, u32 hts,
1615 			      u32 f_index, u8 nlanes)
1616 {
1617 	u64 ppl = hts * to_rate(link_freq_menu_items, f_index, nlanes);
1618 
1619 	do_div(ppl, OV8856_SCLK);
1620 
1621 	return ppl;
1622 }
1623 
1624 static int ov8856_read_reg(struct ov8856 *ov8856, u16 reg, u16 len, u32 *val)
1625 {
1626 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
1627 	struct i2c_msg msgs[2];
1628 	u8 addr_buf[2];
1629 	u8 data_buf[4] = {0};
1630 	int ret;
1631 
1632 	if (len > 4)
1633 		return -EINVAL;
1634 
1635 	put_unaligned_be16(reg, addr_buf);
1636 	msgs[0].addr = client->addr;
1637 	msgs[0].flags = 0;
1638 	msgs[0].len = sizeof(addr_buf);
1639 	msgs[0].buf = addr_buf;
1640 	msgs[1].addr = client->addr;
1641 	msgs[1].flags = I2C_M_RD;
1642 	msgs[1].len = len;
1643 	msgs[1].buf = &data_buf[4 - len];
1644 
1645 	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
1646 	if (ret != ARRAY_SIZE(msgs))
1647 		return -EIO;
1648 
1649 	*val = get_unaligned_be32(data_buf);
1650 
1651 	return 0;
1652 }
1653 
1654 static int ov8856_write_reg(struct ov8856 *ov8856, u16 reg, u16 len, u32 val)
1655 {
1656 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
1657 	u8 buf[6];
1658 
1659 	if (len > 4)
1660 		return -EINVAL;
1661 
1662 	put_unaligned_be16(reg, buf);
1663 	put_unaligned_be32(val << 8 * (4 - len), buf + 2);
1664 	if (i2c_master_send(client, buf, len + 2) != len + 2)
1665 		return -EIO;
1666 
1667 	return 0;
1668 }
1669 
1670 static int ov8856_write_reg_list(struct ov8856 *ov8856,
1671 				 const struct ov8856_reg_list *r_list)
1672 {
1673 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
1674 	unsigned int i;
1675 	int ret;
1676 
1677 	for (i = 0; i < r_list->num_of_regs; i++) {
1678 		ret = ov8856_write_reg(ov8856, r_list->regs[i].address, 1,
1679 				       r_list->regs[i].val);
1680 		if (ret) {
1681 			dev_err_ratelimited(&client->dev,
1682 				    "failed to write reg 0x%4.4x. error = %d",
1683 				    r_list->regs[i].address, ret);
1684 			return ret;
1685 		}
1686 	}
1687 
1688 	return 0;
1689 }
1690 
1691 static int ov8856_identify_module(struct ov8856 *ov8856)
1692 {
1693 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
1694 	int ret;
1695 	u32 val;
1696 
1697 	if (ov8856->identified)
1698 		return 0;
1699 
1700 	ret = ov8856_read_reg(ov8856, OV8856_REG_CHIP_ID,
1701 			      OV8856_REG_VALUE_24BIT, &val);
1702 	if (ret)
1703 		return ret;
1704 
1705 	if (val != OV8856_CHIP_ID) {
1706 		dev_err(&client->dev, "chip id mismatch: %x!=%x",
1707 			OV8856_CHIP_ID, val);
1708 		return -ENXIO;
1709 	}
1710 
1711 	ret = ov8856_write_reg(ov8856, OV8856_REG_MODE_SELECT,
1712 			       OV8856_REG_VALUE_08BIT, OV8856_MODE_STREAMING);
1713 	if (ret)
1714 		return ret;
1715 
1716 	ret = ov8856_write_reg(ov8856, OV8856_OTP_MODE_CTRL,
1717 			       OV8856_REG_VALUE_08BIT, OV8856_OTP_MODE_AUTO);
1718 	if (ret) {
1719 		dev_err(&client->dev, "failed to set otp mode");
1720 		return ret;
1721 	}
1722 
1723 	ret = ov8856_write_reg(ov8856, OV8856_OTP_LOAD_CTRL,
1724 			       OV8856_REG_VALUE_08BIT,
1725 			       OV8856_OTP_LOAD_CTRL_ENABLE);
1726 	if (ret) {
1727 		dev_err(&client->dev, "failed to enable load control");
1728 		return ret;
1729 	}
1730 
1731 	ret = ov8856_read_reg(ov8856, OV8856_MODULE_REVISION,
1732 			      OV8856_REG_VALUE_08BIT, &val);
1733 	if (ret) {
1734 		dev_err(&client->dev, "failed to read module revision");
1735 		return ret;
1736 	}
1737 
1738 	dev_info(&client->dev, "OV8856 revision %x (%s) at address 0x%02x\n",
1739 		 val,
1740 		 val == OV8856_2A_MODULE ? "2A" :
1741 		 val == OV8856_1B_MODULE ? "1B" : "unknown revision",
1742 		 client->addr);
1743 
1744 	ret = ov8856_write_reg(ov8856, OV8856_REG_MODE_SELECT,
1745 			       OV8856_REG_VALUE_08BIT, OV8856_MODE_STANDBY);
1746 	if (ret) {
1747 		dev_err(&client->dev, "failed to exit streaming mode");
1748 		return ret;
1749 	}
1750 
1751 	ov8856->identified = true;
1752 
1753 	return 0;
1754 }
1755 
1756 static int ov8856_update_digital_gain(struct ov8856 *ov8856, u32 d_gain)
1757 {
1758 	int ret;
1759 
1760 	ret = ov8856_write_reg(ov8856, OV8856_REG_MWB_R_GAIN,
1761 			       OV8856_REG_VALUE_16BIT, d_gain);
1762 	if (ret)
1763 		return ret;
1764 
1765 	ret = ov8856_write_reg(ov8856, OV8856_REG_MWB_G_GAIN,
1766 			       OV8856_REG_VALUE_16BIT, d_gain);
1767 	if (ret)
1768 		return ret;
1769 
1770 	return ov8856_write_reg(ov8856, OV8856_REG_MWB_B_GAIN,
1771 				OV8856_REG_VALUE_16BIT, d_gain);
1772 }
1773 
1774 static int ov8856_test_pattern(struct ov8856 *ov8856, u32 pattern)
1775 {
1776 	if (pattern)
1777 		pattern = (pattern - 1) << OV8856_TEST_PATTERN_BAR_SHIFT |
1778 			  OV8856_TEST_PATTERN_ENABLE;
1779 
1780 	return ov8856_write_reg(ov8856, OV8856_REG_TEST_PATTERN,
1781 				OV8856_REG_VALUE_08BIT, pattern);
1782 }
1783 
1784 static int ov8856_set_ctrl_hflip(struct ov8856 *ov8856, u32 ctrl_val)
1785 {
1786 	int ret;
1787 	u32 val;
1788 
1789 	ret = ov8856_read_reg(ov8856, OV8856_REG_MIRROR_OPT_1,
1790 			      OV8856_REG_VALUE_08BIT, &val);
1791 	if (ret)
1792 		return ret;
1793 
1794 	ret = ov8856_write_reg(ov8856, OV8856_REG_MIRROR_OPT_1,
1795 			       OV8856_REG_VALUE_08BIT,
1796 			       ctrl_val ? val & ~OV8856_REG_MIRROR_OP_2 :
1797 			       val | OV8856_REG_MIRROR_OP_2);
1798 
1799 	if (ret)
1800 		return ret;
1801 
1802 	ret = ov8856_read_reg(ov8856, OV8856_REG_FORMAT2,
1803 			      OV8856_REG_VALUE_08BIT, &val);
1804 	if (ret)
1805 		return ret;
1806 
1807 	return ov8856_write_reg(ov8856, OV8856_REG_FORMAT2,
1808 				OV8856_REG_VALUE_08BIT,
1809 				ctrl_val ? val & ~OV8856_REG_FORMAT2_OP_1 &
1810 				~OV8856_REG_FORMAT2_OP_2 &
1811 				~OV8856_REG_FORMAT2_OP_3 :
1812 				val | OV8856_REG_FORMAT2_OP_1 |
1813 				OV8856_REG_FORMAT2_OP_2 |
1814 				OV8856_REG_FORMAT2_OP_3);
1815 }
1816 
1817 static int ov8856_set_ctrl_vflip(struct ov8856 *ov8856, u8 ctrl_val)
1818 {
1819 	int ret;
1820 	u32 val;
1821 
1822 	ret = ov8856_read_reg(ov8856, OV8856_REG_FLIP_OPT_1,
1823 			      OV8856_REG_VALUE_08BIT, &val);
1824 	if (ret)
1825 		return ret;
1826 
1827 	ret = ov8856_write_reg(ov8856, OV8856_REG_FLIP_OPT_1,
1828 			       OV8856_REG_VALUE_08BIT,
1829 			       ctrl_val ? val | OV8856_REG_FLIP_OP_1 |
1830 			       OV8856_REG_FLIP_OP_2 :
1831 			       val & ~OV8856_REG_FLIP_OP_1 &
1832 			       ~OV8856_REG_FLIP_OP_2);
1833 
1834 	ret = ov8856_read_reg(ov8856, OV8856_REG_FLIP_OPT_2,
1835 			      OV8856_REG_VALUE_08BIT, &val);
1836 	if (ret)
1837 		return ret;
1838 
1839 	ret = ov8856_write_reg(ov8856, OV8856_REG_FLIP_OPT_2,
1840 			       OV8856_REG_VALUE_08BIT,
1841 			       ctrl_val ? val | OV8856_REG_FLIP_OP_2 :
1842 			       val & ~OV8856_REG_FLIP_OP_2);
1843 
1844 	ret = ov8856_read_reg(ov8856, OV8856_REG_FLIP_OPT_3,
1845 			      OV8856_REG_VALUE_08BIT, &val);
1846 	if (ret)
1847 		return ret;
1848 
1849 	ret = ov8856_write_reg(ov8856, OV8856_REG_FLIP_OPT_3,
1850 			       OV8856_REG_VALUE_08BIT,
1851 			       ctrl_val ? val & ~OV8856_REG_FLIP_OP_0 &
1852 			       ~OV8856_REG_FLIP_OP_1 :
1853 			       val | OV8856_REG_FLIP_OP_0 |
1854 			       OV8856_REG_FLIP_OP_1);
1855 
1856 	ret = ov8856_read_reg(ov8856, OV8856_REG_FORMAT1,
1857 			      OV8856_REG_VALUE_08BIT, &val);
1858 	if (ret)
1859 		return ret;
1860 
1861 	return ov8856_write_reg(ov8856, OV8856_REG_FORMAT1,
1862 			       OV8856_REG_VALUE_08BIT,
1863 			       ctrl_val ? val | OV8856_REG_FORMAT1_OP_1 |
1864 			       OV8856_REG_FORMAT1_OP_3 |
1865 			       OV8856_REG_FORMAT1_OP_2 :
1866 			       val & ~OV8856_REG_FORMAT1_OP_1 &
1867 			       ~OV8856_REG_FORMAT1_OP_3 &
1868 			       ~OV8856_REG_FORMAT1_OP_2);
1869 }
1870 
1871 static int ov8856_set_ctrl(struct v4l2_ctrl *ctrl)
1872 {
1873 	struct ov8856 *ov8856 = container_of(ctrl->handler,
1874 					     struct ov8856, ctrl_handler);
1875 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
1876 	s64 exposure_max;
1877 	int ret = 0;
1878 
1879 	/* Propagate change of current control to all related controls */
1880 	if (ctrl->id == V4L2_CID_VBLANK) {
1881 		/* Update max exposure while meeting expected vblanking */
1882 		exposure_max = ov8856->cur_mode->height + ctrl->val -
1883 			       OV8856_EXPOSURE_MAX_MARGIN;
1884 		__v4l2_ctrl_modify_range(ov8856->exposure,
1885 					 ov8856->exposure->minimum,
1886 					 exposure_max, ov8856->exposure->step,
1887 					 exposure_max);
1888 	}
1889 
1890 	/* V4L2 controls values will be applied only when power is already up */
1891 	if (!pm_runtime_get_if_in_use(&client->dev))
1892 		return 0;
1893 
1894 	switch (ctrl->id) {
1895 	case V4L2_CID_ANALOGUE_GAIN:
1896 		ret = ov8856_write_reg(ov8856, OV8856_REG_ANALOG_GAIN,
1897 				       OV8856_REG_VALUE_16BIT, ctrl->val);
1898 		break;
1899 
1900 	case V4L2_CID_DIGITAL_GAIN:
1901 		ret = ov8856_update_digital_gain(ov8856, ctrl->val);
1902 		break;
1903 
1904 	case V4L2_CID_EXPOSURE:
1905 		/* 4 least significant bits of expsoure are fractional part */
1906 		ret = ov8856_write_reg(ov8856, OV8856_REG_EXPOSURE,
1907 				       OV8856_REG_VALUE_24BIT, ctrl->val << 4);
1908 		break;
1909 
1910 	case V4L2_CID_VBLANK:
1911 		ret = ov8856_write_reg(ov8856, OV8856_REG_VTS,
1912 				       OV8856_REG_VALUE_16BIT,
1913 				       ov8856->cur_mode->height + ctrl->val);
1914 		break;
1915 
1916 	case V4L2_CID_TEST_PATTERN:
1917 		ret = ov8856_test_pattern(ov8856, ctrl->val);
1918 		break;
1919 
1920 	case V4L2_CID_HFLIP:
1921 		ret = ov8856_set_ctrl_hflip(ov8856, ctrl->val);
1922 		break;
1923 
1924 	case V4L2_CID_VFLIP:
1925 		ret = ov8856_set_ctrl_vflip(ov8856, ctrl->val);
1926 		break;
1927 
1928 	default:
1929 		ret = -EINVAL;
1930 		break;
1931 	}
1932 
1933 	pm_runtime_put(&client->dev);
1934 
1935 	return ret;
1936 }
1937 
1938 static const struct v4l2_ctrl_ops ov8856_ctrl_ops = {
1939 	.s_ctrl = ov8856_set_ctrl,
1940 };
1941 
1942 static int ov8856_init_controls(struct ov8856 *ov8856)
1943 {
1944 	struct v4l2_ctrl_handler *ctrl_hdlr;
1945 	s64 exposure_max, h_blank;
1946 	int ret;
1947 
1948 	ctrl_hdlr = &ov8856->ctrl_handler;
1949 	ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
1950 	if (ret)
1951 		return ret;
1952 
1953 	ctrl_hdlr->lock = &ov8856->mutex;
1954 	ov8856->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov8856_ctrl_ops,
1955 					   V4L2_CID_LINK_FREQ,
1956 					   ARRAY_SIZE
1957 					   (ov8856->priv_lane->link_freq_menu_items)
1958 					   - 1,
1959 					   0, ov8856->priv_lane->link_freq_menu_items);
1960 	if (ov8856->link_freq)
1961 		ov8856->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY;
1962 
1963 	ov8856->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1964 				       V4L2_CID_PIXEL_RATE, 0,
1965 				       to_rate(ov8856->priv_lane->link_freq_menu_items,
1966 					       0,
1967 					       ov8856->cur_mode->data_lanes), 1,
1968 				       to_rate(ov8856->priv_lane->link_freq_menu_items,
1969 					       0,
1970 					       ov8856->cur_mode->data_lanes));
1971 	ov8856->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1972 			  V4L2_CID_VBLANK,
1973 			  ov8856->cur_mode->vts_min - ov8856->cur_mode->height,
1974 			  OV8856_VTS_MAX - ov8856->cur_mode->height, 1,
1975 			  ov8856->cur_mode->vts_def -
1976 			  ov8856->cur_mode->height);
1977 	h_blank = to_pixels_per_line(ov8856->priv_lane->link_freq_menu_items,
1978 				     ov8856->cur_mode->hts,
1979 				     ov8856->cur_mode->link_freq_index,
1980 				     ov8856->cur_mode->data_lanes) -
1981 				     ov8856->cur_mode->width;
1982 	ov8856->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1983 					   V4L2_CID_HBLANK, h_blank, h_blank, 1,
1984 					   h_blank);
1985 	if (ov8856->hblank)
1986 		ov8856->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
1987 
1988 	v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1989 			  OV8856_ANAL_GAIN_MIN, OV8856_ANAL_GAIN_MAX,
1990 			  OV8856_ANAL_GAIN_STEP, OV8856_ANAL_GAIN_MIN);
1991 	v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1992 			  OV8856_DGTL_GAIN_MIN, OV8856_DGTL_GAIN_MAX,
1993 			  OV8856_DGTL_GAIN_STEP, OV8856_DGTL_GAIN_DEFAULT);
1994 	exposure_max = ov8856->cur_mode->vts_def - OV8856_EXPOSURE_MAX_MARGIN;
1995 	ov8856->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1996 					     V4L2_CID_EXPOSURE,
1997 					     OV8856_EXPOSURE_MIN, exposure_max,
1998 					     OV8856_EXPOSURE_STEP,
1999 					     exposure_max);
2000 	v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov8856_ctrl_ops,
2001 				     V4L2_CID_TEST_PATTERN,
2002 				     ARRAY_SIZE(ov8856_test_pattern_menu) - 1,
2003 				     0, 0, ov8856_test_pattern_menu);
2004 	v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
2005 			  V4L2_CID_HFLIP, 0, 1, 1, 0);
2006 	v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
2007 			  V4L2_CID_VFLIP, 0, 1, 1, 0);
2008 	if (ctrl_hdlr->error)
2009 		return ctrl_hdlr->error;
2010 
2011 	ov8856->sd.ctrl_handler = ctrl_hdlr;
2012 
2013 	return 0;
2014 }
2015 
2016 static void ov8856_update_pad_format(struct ov8856 *ov8856,
2017 				     const struct ov8856_mode *mode,
2018 				     struct v4l2_mbus_framefmt *fmt)
2019 {
2020 	int index;
2021 
2022 	fmt->width = mode->width;
2023 	fmt->height = mode->height;
2024 	for (index = 0; index < ARRAY_SIZE(ov8856_mbus_codes); ++index)
2025 		if (ov8856_mbus_codes[index] == fmt->code)
2026 			break;
2027 	if (index == ARRAY_SIZE(ov8856_mbus_codes))
2028 		index = mode->default_mbus_index;
2029 	fmt->code = ov8856_mbus_codes[index];
2030 	ov8856->cur_mbus_index = index;
2031 	fmt->field = V4L2_FIELD_NONE;
2032 }
2033 
2034 static int ov8856_start_streaming(struct ov8856 *ov8856)
2035 {
2036 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
2037 	const struct ov8856_reg_list *reg_list;
2038 	int link_freq_index, ret;
2039 
2040 	ret = ov8856_identify_module(ov8856);
2041 	if (ret)
2042 		return ret;
2043 
2044 	link_freq_index = ov8856->cur_mode->link_freq_index;
2045 	reg_list = &ov8856->priv_lane->link_freq_configs[link_freq_index].reg_list;
2046 
2047 	ret = ov8856_write_reg_list(ov8856, reg_list);
2048 	if (ret) {
2049 		dev_err(&client->dev, "failed to set plls");
2050 		return ret;
2051 	}
2052 
2053 	reg_list = &ov8856->cur_mode->reg_list;
2054 	ret = ov8856_write_reg_list(ov8856, reg_list);
2055 	if (ret) {
2056 		dev_err(&client->dev, "failed to set mode");
2057 		return ret;
2058 	}
2059 
2060 	reg_list = &bayer_offset_configs[ov8856->cur_mbus_index];
2061 	ret = ov8856_write_reg_list(ov8856, reg_list);
2062 	if (ret) {
2063 		dev_err(&client->dev, "failed to set mbus format");
2064 		return ret;
2065 	}
2066 
2067 	ret = __v4l2_ctrl_handler_setup(ov8856->sd.ctrl_handler);
2068 	if (ret)
2069 		return ret;
2070 
2071 	ret = ov8856_write_reg(ov8856, OV8856_REG_MODE_SELECT,
2072 			       OV8856_REG_VALUE_08BIT, OV8856_MODE_STREAMING);
2073 	if (ret) {
2074 		dev_err(&client->dev, "failed to set stream");
2075 		return ret;
2076 	}
2077 
2078 	return 0;
2079 }
2080 
2081 static void ov8856_stop_streaming(struct ov8856 *ov8856)
2082 {
2083 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
2084 
2085 	if (ov8856_write_reg(ov8856, OV8856_REG_MODE_SELECT,
2086 			     OV8856_REG_VALUE_08BIT, OV8856_MODE_STANDBY))
2087 		dev_err(&client->dev, "failed to set stream");
2088 }
2089 
2090 static int ov8856_set_stream(struct v4l2_subdev *sd, int enable)
2091 {
2092 	struct ov8856 *ov8856 = to_ov8856(sd);
2093 	struct i2c_client *client = v4l2_get_subdevdata(sd);
2094 	int ret = 0;
2095 
2096 	if (ov8856->streaming == enable)
2097 		return 0;
2098 
2099 	mutex_lock(&ov8856->mutex);
2100 	if (enable) {
2101 		ret = pm_runtime_resume_and_get(&client->dev);
2102 		if (ret < 0) {
2103 			mutex_unlock(&ov8856->mutex);
2104 			return ret;
2105 		}
2106 
2107 		ret = ov8856_start_streaming(ov8856);
2108 		if (ret) {
2109 			enable = 0;
2110 			ov8856_stop_streaming(ov8856);
2111 			pm_runtime_put(&client->dev);
2112 		}
2113 	} else {
2114 		ov8856_stop_streaming(ov8856);
2115 		pm_runtime_put(&client->dev);
2116 	}
2117 
2118 	ov8856->streaming = enable;
2119 	mutex_unlock(&ov8856->mutex);
2120 
2121 	return ret;
2122 }
2123 
2124 static int __ov8856_power_on(struct ov8856 *ov8856)
2125 {
2126 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
2127 	int ret;
2128 
2129 	if (is_acpi_node(dev_fwnode(&client->dev)))
2130 		return 0;
2131 
2132 	ret = clk_prepare_enable(ov8856->xvclk);
2133 	if (ret < 0) {
2134 		dev_err(&client->dev, "failed to enable xvclk\n");
2135 		return ret;
2136 	}
2137 
2138 	if (ov8856->reset_gpio) {
2139 		gpiod_set_value_cansleep(ov8856->reset_gpio, 1);
2140 		usleep_range(1000, 2000);
2141 	}
2142 
2143 	ret = regulator_bulk_enable(ARRAY_SIZE(ov8856_supply_names),
2144 				    ov8856->supplies);
2145 	if (ret < 0) {
2146 		dev_err(&client->dev, "failed to enable regulators\n");
2147 		goto disable_clk;
2148 	}
2149 
2150 	gpiod_set_value_cansleep(ov8856->reset_gpio, 0);
2151 	usleep_range(1500, 1800);
2152 
2153 	return 0;
2154 
2155 disable_clk:
2156 	gpiod_set_value_cansleep(ov8856->reset_gpio, 1);
2157 	clk_disable_unprepare(ov8856->xvclk);
2158 
2159 	return ret;
2160 }
2161 
2162 static void __ov8856_power_off(struct ov8856 *ov8856)
2163 {
2164 	struct i2c_client *client = v4l2_get_subdevdata(&ov8856->sd);
2165 
2166 	if (is_acpi_node(dev_fwnode(&client->dev)))
2167 		return;
2168 
2169 	gpiod_set_value_cansleep(ov8856->reset_gpio, 1);
2170 	regulator_bulk_disable(ARRAY_SIZE(ov8856_supply_names),
2171 			       ov8856->supplies);
2172 	clk_disable_unprepare(ov8856->xvclk);
2173 }
2174 
2175 static int __maybe_unused ov8856_suspend(struct device *dev)
2176 {
2177 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
2178 	struct ov8856 *ov8856 = to_ov8856(sd);
2179 
2180 	mutex_lock(&ov8856->mutex);
2181 	if (ov8856->streaming)
2182 		ov8856_stop_streaming(ov8856);
2183 
2184 	__ov8856_power_off(ov8856);
2185 	mutex_unlock(&ov8856->mutex);
2186 
2187 	return 0;
2188 }
2189 
2190 static int __maybe_unused ov8856_resume(struct device *dev)
2191 {
2192 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
2193 	struct ov8856 *ov8856 = to_ov8856(sd);
2194 	int ret;
2195 
2196 	mutex_lock(&ov8856->mutex);
2197 
2198 	__ov8856_power_on(ov8856);
2199 	if (ov8856->streaming) {
2200 		ret = ov8856_start_streaming(ov8856);
2201 		if (ret) {
2202 			ov8856->streaming = false;
2203 			ov8856_stop_streaming(ov8856);
2204 			mutex_unlock(&ov8856->mutex);
2205 			return ret;
2206 		}
2207 	}
2208 
2209 	mutex_unlock(&ov8856->mutex);
2210 
2211 	return 0;
2212 }
2213 
2214 static int ov8856_set_format(struct v4l2_subdev *sd,
2215 			     struct v4l2_subdev_state *sd_state,
2216 			     struct v4l2_subdev_format *fmt)
2217 {
2218 	struct ov8856 *ov8856 = to_ov8856(sd);
2219 	const struct ov8856_mode *mode;
2220 	s32 vblank_def, h_blank;
2221 
2222 	mode = v4l2_find_nearest_size(ov8856->priv_lane->supported_modes,
2223 				      ov8856->modes_size,
2224 				      width, height, fmt->format.width,
2225 				      fmt->format.height);
2226 
2227 	mutex_lock(&ov8856->mutex);
2228 	ov8856_update_pad_format(ov8856, mode, &fmt->format);
2229 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
2230 		*v4l2_subdev_get_try_format(sd, sd_state, fmt->pad) = fmt->format;
2231 	} else {
2232 		ov8856->cur_mode = mode;
2233 		__v4l2_ctrl_s_ctrl(ov8856->link_freq, mode->link_freq_index);
2234 		__v4l2_ctrl_s_ctrl_int64(ov8856->pixel_rate,
2235 					 to_rate(ov8856->priv_lane->link_freq_menu_items,
2236 						 mode->link_freq_index,
2237 						 ov8856->cur_mode->data_lanes));
2238 
2239 		/* Update limits and set FPS to default */
2240 		vblank_def = mode->vts_def - mode->height;
2241 		__v4l2_ctrl_modify_range(ov8856->vblank,
2242 					 mode->vts_min - mode->height,
2243 					 OV8856_VTS_MAX - mode->height, 1,
2244 					 vblank_def);
2245 		__v4l2_ctrl_s_ctrl(ov8856->vblank, vblank_def);
2246 		h_blank = to_pixels_per_line(ov8856->priv_lane->link_freq_menu_items,
2247 					     mode->hts,
2248 					     mode->link_freq_index,
2249 					     ov8856->cur_mode->data_lanes)
2250 					     - mode->width;
2251 		__v4l2_ctrl_modify_range(ov8856->hblank, h_blank, h_blank, 1,
2252 					 h_blank);
2253 	}
2254 
2255 	mutex_unlock(&ov8856->mutex);
2256 
2257 	return 0;
2258 }
2259 
2260 static int ov8856_get_format(struct v4l2_subdev *sd,
2261 			     struct v4l2_subdev_state *sd_state,
2262 			     struct v4l2_subdev_format *fmt)
2263 {
2264 	struct ov8856 *ov8856 = to_ov8856(sd);
2265 
2266 	mutex_lock(&ov8856->mutex);
2267 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
2268 		fmt->format = *v4l2_subdev_get_try_format(&ov8856->sd,
2269 							  sd_state,
2270 							  fmt->pad);
2271 	else
2272 		ov8856_update_pad_format(ov8856, ov8856->cur_mode, &fmt->format);
2273 
2274 	mutex_unlock(&ov8856->mutex);
2275 
2276 	return 0;
2277 }
2278 
2279 static int ov8856_enum_mbus_code(struct v4l2_subdev *sd,
2280 				 struct v4l2_subdev_state *sd_state,
2281 				 struct v4l2_subdev_mbus_code_enum *code)
2282 {
2283 	if (code->index >= ARRAY_SIZE(ov8856_mbus_codes))
2284 		return -EINVAL;
2285 
2286 	code->code = ov8856_mbus_codes[code->index];
2287 
2288 	return 0;
2289 }
2290 
2291 static int ov8856_enum_frame_size(struct v4l2_subdev *sd,
2292 				  struct v4l2_subdev_state *sd_state,
2293 				  struct v4l2_subdev_frame_size_enum *fse)
2294 {
2295 	struct ov8856 *ov8856 = to_ov8856(sd);
2296 	int index;
2297 
2298 	if (fse->index >= ov8856->modes_size)
2299 		return -EINVAL;
2300 
2301 	for (index = 0; index < ARRAY_SIZE(ov8856_mbus_codes); ++index)
2302 		if (fse->code == ov8856_mbus_codes[index])
2303 			break;
2304 	if (index == ARRAY_SIZE(ov8856_mbus_codes))
2305 		return -EINVAL;
2306 
2307 	fse->min_width = ov8856->priv_lane->supported_modes[fse->index].width;
2308 	fse->max_width = fse->min_width;
2309 	fse->min_height = ov8856->priv_lane->supported_modes[fse->index].height;
2310 	fse->max_height = fse->min_height;
2311 
2312 	return 0;
2313 }
2314 
2315 static int ov8856_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
2316 {
2317 	struct ov8856 *ov8856 = to_ov8856(sd);
2318 
2319 	mutex_lock(&ov8856->mutex);
2320 	ov8856_update_pad_format(ov8856, &ov8856->priv_lane->supported_modes[0],
2321 				 v4l2_subdev_get_try_format(sd, fh->state, 0));
2322 	mutex_unlock(&ov8856->mutex);
2323 
2324 	return 0;
2325 }
2326 
2327 static const struct v4l2_subdev_video_ops ov8856_video_ops = {
2328 	.s_stream = ov8856_set_stream,
2329 };
2330 
2331 static const struct v4l2_subdev_pad_ops ov8856_pad_ops = {
2332 	.set_fmt = ov8856_set_format,
2333 	.get_fmt = ov8856_get_format,
2334 	.enum_mbus_code = ov8856_enum_mbus_code,
2335 	.enum_frame_size = ov8856_enum_frame_size,
2336 };
2337 
2338 static const struct v4l2_subdev_ops ov8856_subdev_ops = {
2339 	.video = &ov8856_video_ops,
2340 	.pad = &ov8856_pad_ops,
2341 };
2342 
2343 static const struct media_entity_operations ov8856_subdev_entity_ops = {
2344 	.link_validate = v4l2_subdev_link_validate,
2345 };
2346 
2347 static const struct v4l2_subdev_internal_ops ov8856_internal_ops = {
2348 	.open = ov8856_open,
2349 };
2350 
2351 
2352 static int ov8856_get_hwcfg(struct ov8856 *ov8856, struct device *dev)
2353 {
2354 	struct fwnode_handle *ep;
2355 	struct fwnode_handle *fwnode = dev_fwnode(dev);
2356 	struct v4l2_fwnode_endpoint bus_cfg = {
2357 		.bus_type = V4L2_MBUS_CSI2_DPHY
2358 	};
2359 	u32 xvclk_rate;
2360 	int ret;
2361 	unsigned int i, j;
2362 
2363 	if (!fwnode)
2364 		return -ENXIO;
2365 
2366 	ret = fwnode_property_read_u32(fwnode, "clock-frequency", &xvclk_rate);
2367 	if (ret)
2368 		return ret;
2369 
2370 	if (!is_acpi_node(fwnode)) {
2371 		ov8856->xvclk = devm_clk_get(dev, "xvclk");
2372 		if (IS_ERR(ov8856->xvclk)) {
2373 			dev_err(dev, "could not get xvclk clock (%pe)\n",
2374 				ov8856->xvclk);
2375 			return PTR_ERR(ov8856->xvclk);
2376 		}
2377 
2378 		clk_set_rate(ov8856->xvclk, xvclk_rate);
2379 		xvclk_rate = clk_get_rate(ov8856->xvclk);
2380 
2381 		ov8856->reset_gpio = devm_gpiod_get_optional(dev, "reset",
2382 							     GPIOD_OUT_LOW);
2383 		if (IS_ERR(ov8856->reset_gpio))
2384 			return PTR_ERR(ov8856->reset_gpio);
2385 
2386 		for (i = 0; i < ARRAY_SIZE(ov8856_supply_names); i++)
2387 			ov8856->supplies[i].supply = ov8856_supply_names[i];
2388 
2389 		ret = devm_regulator_bulk_get(dev,
2390 					      ARRAY_SIZE(ov8856_supply_names),
2391 					      ov8856->supplies);
2392 		if (ret)
2393 			return ret;
2394 	}
2395 
2396 	if (xvclk_rate != OV8856_XVCLK_19_2)
2397 		dev_warn(dev, "external clock rate %u is unsupported",
2398 			 xvclk_rate);
2399 
2400 	ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
2401 	if (!ep)
2402 		return -ENXIO;
2403 
2404 	ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
2405 	fwnode_handle_put(ep);
2406 	if (ret)
2407 		return ret;
2408 
2409 	/* Get number of data lanes */
2410 	if (bus_cfg.bus.mipi_csi2.num_data_lanes != 2 &&
2411 	    bus_cfg.bus.mipi_csi2.num_data_lanes != 4) {
2412 		dev_err(dev, "number of CSI2 data lanes %d is not supported",
2413 			bus_cfg.bus.mipi_csi2.num_data_lanes);
2414 		ret = -EINVAL;
2415 		goto check_hwcfg_error;
2416 	}
2417 
2418 	dev_dbg(dev, "Using %u data lanes\n", ov8856->cur_mode->data_lanes);
2419 
2420 	if (bus_cfg.bus.mipi_csi2.num_data_lanes == 2)
2421 		ov8856->priv_lane = &lane_cfg_2;
2422 	else
2423 		ov8856->priv_lane = &lane_cfg_4;
2424 
2425 	ov8856->modes_size = ov8856_modes_num(ov8856);
2426 
2427 	if (!bus_cfg.nr_of_link_frequencies) {
2428 		dev_err(dev, "no link frequencies defined");
2429 		ret = -EINVAL;
2430 		goto check_hwcfg_error;
2431 	}
2432 
2433 	for (i = 0; i < ARRAY_SIZE(ov8856->priv_lane->link_freq_menu_items); i++) {
2434 		for (j = 0; j < bus_cfg.nr_of_link_frequencies; j++) {
2435 			if (ov8856->priv_lane->link_freq_menu_items[i] ==
2436 			    bus_cfg.link_frequencies[j])
2437 				break;
2438 		}
2439 
2440 		if (j == bus_cfg.nr_of_link_frequencies) {
2441 			dev_err(dev, "no link frequency %lld supported",
2442 				ov8856->priv_lane->link_freq_menu_items[i]);
2443 			ret = -EINVAL;
2444 			goto check_hwcfg_error;
2445 		}
2446 	}
2447 
2448 check_hwcfg_error:
2449 	v4l2_fwnode_endpoint_free(&bus_cfg);
2450 
2451 	return ret;
2452 }
2453 
2454 static int ov8856_remove(struct i2c_client *client)
2455 {
2456 	struct v4l2_subdev *sd = i2c_get_clientdata(client);
2457 	struct ov8856 *ov8856 = to_ov8856(sd);
2458 
2459 	v4l2_async_unregister_subdev(sd);
2460 	media_entity_cleanup(&sd->entity);
2461 	v4l2_ctrl_handler_free(sd->ctrl_handler);
2462 	pm_runtime_disable(&client->dev);
2463 	mutex_destroy(&ov8856->mutex);
2464 
2465 	__ov8856_power_off(ov8856);
2466 
2467 	return 0;
2468 }
2469 
2470 static int ov8856_probe(struct i2c_client *client)
2471 {
2472 	struct ov8856 *ov8856;
2473 	int ret;
2474 	bool full_power;
2475 
2476 	ov8856 = devm_kzalloc(&client->dev, sizeof(*ov8856), GFP_KERNEL);
2477 	if (!ov8856)
2478 		return -ENOMEM;
2479 
2480 	ret = ov8856_get_hwcfg(ov8856, &client->dev);
2481 	if (ret) {
2482 		dev_err(&client->dev, "failed to get HW configuration: %d",
2483 			ret);
2484 		return ret;
2485 	}
2486 
2487 	v4l2_i2c_subdev_init(&ov8856->sd, client, &ov8856_subdev_ops);
2488 
2489 	full_power = acpi_dev_state_d0(&client->dev);
2490 	if (full_power) {
2491 		ret = __ov8856_power_on(ov8856);
2492 		if (ret) {
2493 			dev_err(&client->dev, "failed to power on\n");
2494 			return ret;
2495 		}
2496 
2497 		ret = ov8856_identify_module(ov8856);
2498 		if (ret) {
2499 			dev_err(&client->dev, "failed to find sensor: %d", ret);
2500 			goto probe_power_off;
2501 		}
2502 	}
2503 
2504 	mutex_init(&ov8856->mutex);
2505 	ov8856->cur_mode = &ov8856->priv_lane->supported_modes[0];
2506 	ov8856->cur_mbus_index = ov8856->cur_mode->default_mbus_index;
2507 	ret = ov8856_init_controls(ov8856);
2508 	if (ret) {
2509 		dev_err(&client->dev, "failed to init controls: %d", ret);
2510 		goto probe_error_v4l2_ctrl_handler_free;
2511 	}
2512 
2513 	ov8856->sd.internal_ops = &ov8856_internal_ops;
2514 	ov8856->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
2515 	ov8856->sd.entity.ops = &ov8856_subdev_entity_ops;
2516 	ov8856->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
2517 	ov8856->pad.flags = MEDIA_PAD_FL_SOURCE;
2518 	ret = media_entity_pads_init(&ov8856->sd.entity, 1, &ov8856->pad);
2519 	if (ret) {
2520 		dev_err(&client->dev, "failed to init entity pads: %d", ret);
2521 		goto probe_error_v4l2_ctrl_handler_free;
2522 	}
2523 
2524 	ret = v4l2_async_register_subdev_sensor(&ov8856->sd);
2525 	if (ret < 0) {
2526 		dev_err(&client->dev, "failed to register V4L2 subdev: %d",
2527 			ret);
2528 		goto probe_error_media_entity_cleanup;
2529 	}
2530 
2531 	/* Set the device's state to active if it's in D0 state. */
2532 	if (full_power)
2533 		pm_runtime_set_active(&client->dev);
2534 	pm_runtime_enable(&client->dev);
2535 	pm_runtime_idle(&client->dev);
2536 
2537 	return 0;
2538 
2539 probe_error_media_entity_cleanup:
2540 	media_entity_cleanup(&ov8856->sd.entity);
2541 
2542 probe_error_v4l2_ctrl_handler_free:
2543 	v4l2_ctrl_handler_free(ov8856->sd.ctrl_handler);
2544 	mutex_destroy(&ov8856->mutex);
2545 
2546 probe_power_off:
2547 	__ov8856_power_off(ov8856);
2548 
2549 	return ret;
2550 }
2551 
2552 static const struct dev_pm_ops ov8856_pm_ops = {
2553 	SET_SYSTEM_SLEEP_PM_OPS(ov8856_suspend, ov8856_resume)
2554 };
2555 
2556 #ifdef CONFIG_ACPI
2557 static const struct acpi_device_id ov8856_acpi_ids[] = {
2558 	{"OVTI8856"},
2559 	{}
2560 };
2561 
2562 MODULE_DEVICE_TABLE(acpi, ov8856_acpi_ids);
2563 #endif
2564 
2565 static const struct of_device_id ov8856_of_match[] = {
2566 	{ .compatible = "ovti,ov8856" },
2567 	{ /* sentinel */ }
2568 };
2569 MODULE_DEVICE_TABLE(of, ov8856_of_match);
2570 
2571 static struct i2c_driver ov8856_i2c_driver = {
2572 	.driver = {
2573 		.name = "ov8856",
2574 		.pm = &ov8856_pm_ops,
2575 		.acpi_match_table = ACPI_PTR(ov8856_acpi_ids),
2576 		.of_match_table = ov8856_of_match,
2577 	},
2578 	.probe_new = ov8856_probe,
2579 	.remove = ov8856_remove,
2580 	.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
2581 };
2582 
2583 module_i2c_driver(ov8856_i2c_driver);
2584 
2585 MODULE_AUTHOR("Ben Kao <ben.kao@intel.com>");
2586 MODULE_DESCRIPTION("OmniVision OV8856 sensor driver");
2587 MODULE_LICENSE("GPL v2");
2588