xref: /linux/drivers/media/i2c/hi556.c (revision 292f83dc68442c8a33cdc6358795786234bf2f50)
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 HI556_REG_VALUE_08BIT		1
15 #define HI556_REG_VALUE_16BIT		2
16 #define HI556_REG_VALUE_24BIT		3
17 
18 #define HI556_LINK_FREQ_437MHZ		437000000ULL
19 #define HI556_MCLK			19200000
20 #define HI556_DATA_LANES		2
21 #define HI556_RGB_DEPTH			10
22 
23 #define HI556_REG_CHIP_ID		0x0f16
24 #define HI556_CHIP_ID			0x0556
25 
26 #define HI556_REG_MODE_SELECT		0x0a00
27 #define HI556_MODE_STANDBY		0x0000
28 #define HI556_MODE_STREAMING		0x0100
29 
30 /* vertical-timings from sensor */
31 #define HI556_REG_FLL			0x0006
32 #define HI556_FLL_30FPS			0x0814
33 #define HI556_FLL_30FPS_MIN		0x0814
34 #define HI556_FLL_MAX			0x7fff
35 
36 /* horizontal-timings from sensor */
37 #define HI556_REG_LLP			0x0008
38 
39 /* Exposure controls from sensor */
40 #define HI556_REG_EXPOSURE		0x0074
41 #define HI556_EXPOSURE_MIN		6
42 #define HI556_EXPOSURE_MAX_MARGIN	2
43 #define HI556_EXPOSURE_STEP		1
44 
45 /* Analog gain controls from sensor */
46 #define HI556_REG_ANALOG_GAIN		0x0077
47 #define HI556_ANAL_GAIN_MIN		0
48 #define HI556_ANAL_GAIN_MAX		240
49 #define HI556_ANAL_GAIN_STEP		1
50 
51 /* Digital gain controls from sensor */
52 #define HI556_REG_MWB_GR_GAIN		0x0078
53 #define HI556_REG_MWB_GB_GAIN		0x007a
54 #define HI556_REG_MWB_R_GAIN		0x007c
55 #define HI556_REG_MWB_B_GAIN		0x007e
56 #define HI556_DGTL_GAIN_MIN		0
57 #define HI556_DGTL_GAIN_MAX		2048
58 #define HI556_DGTL_GAIN_STEP		1
59 #define HI556_DGTL_GAIN_DEFAULT		256
60 
61 /* Test Pattern Control */
62 #define HI556_REG_ISP			0X0a05
63 #define HI556_REG_ISP_TPG_EN		0x01
64 #define HI556_REG_TEST_PATTERN		0x0201
65 
66 /* HI556 native and active pixel array size. */
67 #define HI556_NATIVE_WIDTH		2592U
68 #define HI556_NATIVE_HEIGHT		1944U
69 #define HI556_PIXEL_ARRAY_LEFT		0U
70 #define HI556_PIXEL_ARRAY_TOP		0U
71 #define HI556_PIXEL_ARRAY_WIDTH	2592U
72 #define HI556_PIXEL_ARRAY_HEIGHT	1944U
73 
74 enum {
75 	HI556_LINK_FREQ_437MHZ_INDEX,
76 };
77 
78 struct hi556_reg {
79 	u16 address;
80 	u16 val;
81 };
82 
83 struct hi556_reg_list {
84 	u32 num_of_regs;
85 	const struct hi556_reg *regs;
86 };
87 
88 struct hi556_link_freq_config {
89 	const struct hi556_reg_list reg_list;
90 };
91 
92 struct hi556_mode {
93 	/* Frame width in pixels */
94 	u32 width;
95 
96 	/* Frame height in pixels */
97 	u32 height;
98 
99 	/* Analog crop rectangle. */
100 	struct v4l2_rect crop;
101 
102 	/* Horizontal timining size */
103 	u32 llp;
104 
105 	/* Default vertical timining size */
106 	u32 fll_def;
107 
108 	/* Min vertical timining size */
109 	u32 fll_min;
110 
111 	/* Link frequency needed for this resolution */
112 	u32 link_freq_index;
113 
114 	/* Sensor register settings for this resolution */
115 	const struct hi556_reg_list reg_list;
116 };
117 
118 #define to_hi556(_sd) container_of(_sd, struct hi556, sd)
119 
120 //SENSOR_INITIALIZATION
121 static const struct hi556_reg mipi_data_rate_874mbps[] = {
122 	{0x0e00, 0x0102},
123 	{0x0e02, 0x0102},
124 	{0x0e0c, 0x0100},
125 	{0x2000, 0x7400},
126 	{0x2002, 0x001c},
127 	{0x2004, 0x0242},
128 	{0x2006, 0x0942},
129 	{0x2008, 0x7007},
130 	{0x200a, 0x0fd9},
131 	{0x200c, 0x0259},
132 	{0x200e, 0x7008},
133 	{0x2010, 0x160e},
134 	{0x2012, 0x0047},
135 	{0x2014, 0x2118},
136 	{0x2016, 0x0041},
137 	{0x2018, 0x00d8},
138 	{0x201a, 0x0145},
139 	{0x201c, 0x0006},
140 	{0x201e, 0x0181},
141 	{0x2020, 0x13cc},
142 	{0x2022, 0x2057},
143 	{0x2024, 0x7001},
144 	{0x2026, 0x0fca},
145 	{0x2028, 0x00cb},
146 	{0x202a, 0x009f},
147 	{0x202c, 0x7002},
148 	{0x202e, 0x13cc},
149 	{0x2030, 0x019b},
150 	{0x2032, 0x014d},
151 	{0x2034, 0x2987},
152 	{0x2036, 0x2766},
153 	{0x2038, 0x0020},
154 	{0x203a, 0x2060},
155 	{0x203c, 0x0e5d},
156 	{0x203e, 0x181d},
157 	{0x2040, 0x2066},
158 	{0x2042, 0x20c4},
159 	{0x2044, 0x5000},
160 	{0x2046, 0x0005},
161 	{0x2048, 0x0000},
162 	{0x204a, 0x01db},
163 	{0x204c, 0x025a},
164 	{0x204e, 0x00c0},
165 	{0x2050, 0x0005},
166 	{0x2052, 0x0006},
167 	{0x2054, 0x0ad9},
168 	{0x2056, 0x0259},
169 	{0x2058, 0x0618},
170 	{0x205a, 0x0258},
171 	{0x205c, 0x2266},
172 	{0x205e, 0x20c8},
173 	{0x2060, 0x2060},
174 	{0x2062, 0x707b},
175 	{0x2064, 0x0fdd},
176 	{0x2066, 0x81b8},
177 	{0x2068, 0x5040},
178 	{0x206a, 0x0020},
179 	{0x206c, 0x5060},
180 	{0x206e, 0x3143},
181 	{0x2070, 0x5081},
182 	{0x2072, 0x025c},
183 	{0x2074, 0x7800},
184 	{0x2076, 0x7400},
185 	{0x2078, 0x001c},
186 	{0x207a, 0x0242},
187 	{0x207c, 0x0942},
188 	{0x207e, 0x0bd9},
189 	{0x2080, 0x0259},
190 	{0x2082, 0x7008},
191 	{0x2084, 0x160e},
192 	{0x2086, 0x0047},
193 	{0x2088, 0x2118},
194 	{0x208a, 0x0041},
195 	{0x208c, 0x00d8},
196 	{0x208e, 0x0145},
197 	{0x2090, 0x0006},
198 	{0x2092, 0x0181},
199 	{0x2094, 0x13cc},
200 	{0x2096, 0x2057},
201 	{0x2098, 0x7001},
202 	{0x209a, 0x0fca},
203 	{0x209c, 0x00cb},
204 	{0x209e, 0x009f},
205 	{0x20a0, 0x7002},
206 	{0x20a2, 0x13cc},
207 	{0x20a4, 0x019b},
208 	{0x20a6, 0x014d},
209 	{0x20a8, 0x2987},
210 	{0x20aa, 0x2766},
211 	{0x20ac, 0x0020},
212 	{0x20ae, 0x2060},
213 	{0x20b0, 0x0e5d},
214 	{0x20b2, 0x181d},
215 	{0x20b4, 0x2066},
216 	{0x20b6, 0x20c4},
217 	{0x20b8, 0x50a0},
218 	{0x20ba, 0x0005},
219 	{0x20bc, 0x0000},
220 	{0x20be, 0x01db},
221 	{0x20c0, 0x025a},
222 	{0x20c2, 0x00c0},
223 	{0x20c4, 0x0005},
224 	{0x20c6, 0x0006},
225 	{0x20c8, 0x0ad9},
226 	{0x20ca, 0x0259},
227 	{0x20cc, 0x0618},
228 	{0x20ce, 0x0258},
229 	{0x20d0, 0x2266},
230 	{0x20d2, 0x20c8},
231 	{0x20d4, 0x2060},
232 	{0x20d6, 0x707b},
233 	{0x20d8, 0x0fdd},
234 	{0x20da, 0x86b8},
235 	{0x20dc, 0x50e0},
236 	{0x20de, 0x0020},
237 	{0x20e0, 0x5100},
238 	{0x20e2, 0x3143},
239 	{0x20e4, 0x5121},
240 	{0x20e6, 0x7800},
241 	{0x20e8, 0x3140},
242 	{0x20ea, 0x01c4},
243 	{0x20ec, 0x01c1},
244 	{0x20ee, 0x01c0},
245 	{0x20f0, 0x01c4},
246 	{0x20f2, 0x2700},
247 	{0x20f4, 0x3d40},
248 	{0x20f6, 0x7800},
249 	{0x20f8, 0xffff},
250 	{0x27fe, 0xe000},
251 	{0x3000, 0x60f8},
252 	{0x3002, 0x187f},
253 	{0x3004, 0x7060},
254 	{0x3006, 0x0114},
255 	{0x3008, 0x60b0},
256 	{0x300a, 0x1473},
257 	{0x300c, 0x0013},
258 	{0x300e, 0x140f},
259 	{0x3010, 0x0040},
260 	{0x3012, 0x100f},
261 	{0x3014, 0x60f8},
262 	{0x3016, 0x187f},
263 	{0x3018, 0x7060},
264 	{0x301a, 0x0114},
265 	{0x301c, 0x60b0},
266 	{0x301e, 0x1473},
267 	{0x3020, 0x0013},
268 	{0x3022, 0x140f},
269 	{0x3024, 0x0040},
270 	{0x3026, 0x000f},
271 
272 	{0x0b00, 0x0000},
273 	{0x0b02, 0x0045},
274 	{0x0b04, 0xb405},
275 	{0x0b06, 0xc403},
276 	{0x0b08, 0x0081},
277 	{0x0b0a, 0x8252},
278 	{0x0b0c, 0xf814},
279 	{0x0b0e, 0xc618},
280 	{0x0b10, 0xa828},
281 	{0x0b12, 0x004c},
282 	{0x0b14, 0x4068},
283 	{0x0b16, 0x0000},
284 	{0x0f30, 0x5b15},
285 	{0x0f32, 0x7067},
286 	{0x0954, 0x0009},
287 	{0x0956, 0x0000},
288 	{0x0958, 0xbb80},
289 	{0x095a, 0x5140},
290 	{0x0c00, 0x1110},
291 	{0x0c02, 0x0011},
292 	{0x0c04, 0x0000},
293 	{0x0c06, 0x0200},
294 	{0x0c10, 0x0040},
295 	{0x0c12, 0x0040},
296 	{0x0c14, 0x0040},
297 	{0x0c16, 0x0040},
298 	{0x0a10, 0x4000},
299 	{0x3068, 0xf800},
300 	{0x306a, 0xf876},
301 	{0x006c, 0x0000},
302 	{0x005e, 0x0200},
303 	{0x000e, 0x0100},
304 	{0x0e0a, 0x0001},
305 	{0x004a, 0x0100},
306 	{0x004c, 0x0000},
307 	{0x004e, 0x0100},
308 	{0x000c, 0x0022},
309 	{0x0008, 0x0b00},
310 	{0x005a, 0x0202},
311 	{0x0012, 0x000e},
312 	{0x0018, 0x0a33},
313 	{0x0022, 0x0008},
314 	{0x0028, 0x0017},
315 	{0x0024, 0x0028},
316 	{0x002a, 0x002d},
317 	{0x0026, 0x0030},
318 	{0x002c, 0x07c9},
319 	{0x002e, 0x1111},
320 	{0x0030, 0x1111},
321 	{0x0032, 0x1111},
322 	{0x0006, 0x07bc},
323 	{0x0a22, 0x0000},
324 	{0x0a12, 0x0a20},
325 	{0x0a14, 0x0798},
326 	{0x003e, 0x0000},
327 	{0x0074, 0x080e},
328 	{0x0070, 0x0407},
329 	{0x0002, 0x0000},
330 	{0x0a02, 0x0100},
331 	{0x0a24, 0x0100},
332 	{0x0046, 0x0000},
333 	{0x0076, 0x0000},
334 	{0x0060, 0x0000},
335 	{0x0062, 0x0530},
336 	{0x0064, 0x0500},
337 	{0x0066, 0x0530},
338 	{0x0068, 0x0500},
339 	{0x0122, 0x0300},
340 	{0x015a, 0xff08},
341 	{0x0804, 0x0300},
342 	{0x0806, 0x0100},
343 	{0x005c, 0x0102},
344 	{0x0a1a, 0x0800},
345 };
346 
347 static const struct hi556_reg mode_2592x1944_regs[] = {
348 	{0x0a00, 0x0000},
349 	{0x0b0a, 0x8252},
350 	{0x0f30, 0x5b15},
351 	{0x0f32, 0x7067},
352 	{0x004a, 0x0100},
353 	{0x004c, 0x0000},
354 	{0x004e, 0x0100},
355 	{0x000c, 0x0022},
356 	{0x0008, 0x0b00},
357 	{0x005a, 0x0202},
358 	{0x0012, 0x000e},
359 	{0x0018, 0x0a33},
360 	{0x0022, 0x0008},
361 	{0x0028, 0x0017},
362 	{0x0024, 0x0028},
363 	{0x002a, 0x002d},
364 	{0x0026, 0x0030},
365 	{0x002c, 0x07c9},
366 	{0x002e, 0x1111},
367 	{0x0030, 0x1111},
368 	{0x0032, 0x1111},
369 	{0x0006, 0x0814},
370 	{0x0a22, 0x0000},
371 	{0x0a12, 0x0a20},
372 	{0x0a14, 0x0798},
373 	{0x003e, 0x0000},
374 	{0x0074, 0x0812},
375 	{0x0070, 0x0409},
376 	{0x0804, 0x0300},
377 	{0x0806, 0x0100},
378 	{0x0a04, 0x014a},
379 	{0x090c, 0x0fdc},
380 	{0x090e, 0x002d},
381 
382 	{0x0902, 0x4319},
383 	{0x0914, 0xc10a},
384 	{0x0916, 0x071f},
385 	{0x0918, 0x0408},
386 	{0x091a, 0x0c0d},
387 	{0x091c, 0x0f09},
388 	{0x091e, 0x0a00},
389 	{0x0958, 0xbb80},
390 };
391 
392 static const struct hi556_reg mode_2592x1444_regs[] = {
393 	{0x0a00, 0x0000},
394 	{0x0b0a, 0x8252},
395 	{0x0f30, 0xe545},
396 	{0x0f32, 0x7067},
397 	{0x004a, 0x0100},
398 	{0x004c, 0x0000},
399 	{0x000c, 0x0022},
400 	{0x0008, 0x0b00},
401 	{0x005a, 0x0202},
402 	{0x0012, 0x000e},
403 	{0x0018, 0x0a33},
404 	{0x0022, 0x0008},
405 	{0x0028, 0x0017},
406 	{0x0024, 0x0122},
407 	{0x002a, 0x0127},
408 	{0x0026, 0x012a},
409 	{0x002c, 0x06cf},
410 	{0x002e, 0x1111},
411 	{0x0030, 0x1111},
412 	{0x0032, 0x1111},
413 	{0x0006, 0x0821},
414 	{0x0a22, 0x0000},
415 	{0x0a12, 0x0a20},
416 	{0x0a14, 0x05a4},
417 	{0x003e, 0x0000},
418 	{0x0074, 0x081f},
419 	{0x0070, 0x040f},
420 	{0x0804, 0x0300},
421 	{0x0806, 0x0100},
422 	{0x0a04, 0x014a},
423 	{0x090c, 0x0fdc},
424 	{0x090e, 0x002d},
425 	{0x0902, 0x4319},
426 	{0x0914, 0xc10a},
427 	{0x0916, 0x071f},
428 	{0x0918, 0x0408},
429 	{0x091a, 0x0c0d},
430 	{0x091c, 0x0f09},
431 	{0x091e, 0x0a00},
432 	{0x0958, 0xbb80},
433 };
434 
435 static const struct hi556_reg mode_1296x972_regs[] = {
436 	{0x0a00, 0x0000},
437 	{0x0b0a, 0x8259},
438 	{0x0f30, 0x5b15},
439 	{0x0f32, 0x7167},
440 	{0x004a, 0x0100},
441 	{0x004c, 0x0000},
442 	{0x004e, 0x0100},
443 	{0x000c, 0x0122},
444 	{0x0008, 0x0b00},
445 	{0x005a, 0x0404},
446 	{0x0012, 0x000c},
447 	{0x0018, 0x0a33},
448 	{0x0022, 0x0008},
449 	{0x0028, 0x0017},
450 	{0x0024, 0x0022},
451 	{0x002a, 0x002b},
452 	{0x0026, 0x0030},
453 	{0x002c, 0x07c9},
454 	{0x002e, 0x3311},
455 	{0x0030, 0x3311},
456 	{0x0032, 0x3311},
457 	{0x0006, 0x0814},
458 	{0x0a22, 0x0000},
459 	{0x0a12, 0x0510},
460 	{0x0a14, 0x03cc},
461 	{0x003e, 0x0000},
462 	{0x0074, 0x0812},
463 	{0x0070, 0x0409},
464 	{0x0804, 0x0308},
465 	{0x0806, 0x0100},
466 	{0x0a04, 0x016a},
467 	{0x090e, 0x0010},
468 	{0x090c, 0x09c0},
469 
470 	{0x0902, 0x4319},
471 	{0x0914, 0xc106},
472 	{0x0916, 0x040e},
473 	{0x0918, 0x0304},
474 	{0x091a, 0x0708},
475 	{0x091c, 0x0e06},
476 	{0x091e, 0x0300},
477 	{0x0958, 0xbb80},
478 };
479 
480 static const char * const hi556_test_pattern_menu[] = {
481 	"Disabled",
482 	"Solid Colour",
483 	"100% Colour Bars",
484 	"Fade To Grey Colour Bars",
485 	"PN9",
486 	"Gradient Horizontal",
487 	"Gradient Vertical",
488 	"Check Board",
489 	"Slant Pattern",
490 };
491 
492 static const s64 link_freq_menu_items[] = {
493 	HI556_LINK_FREQ_437MHZ,
494 };
495 
496 static const struct hi556_link_freq_config link_freq_configs[] = {
497 	[HI556_LINK_FREQ_437MHZ_INDEX] = {
498 		.reg_list = {
499 			.num_of_regs = ARRAY_SIZE(mipi_data_rate_874mbps),
500 			.regs = mipi_data_rate_874mbps,
501 		}
502 	}
503 };
504 
505 static const struct hi556_mode supported_modes[] = {
506 	{
507 		.width = HI556_PIXEL_ARRAY_WIDTH,
508 		.height = HI556_PIXEL_ARRAY_HEIGHT,
509 		.crop = {
510 			.left = HI556_PIXEL_ARRAY_LEFT,
511 			.top = HI556_PIXEL_ARRAY_TOP,
512 			.width = HI556_PIXEL_ARRAY_WIDTH,
513 			.height = HI556_PIXEL_ARRAY_HEIGHT
514 		},
515 		.fll_def = HI556_FLL_30FPS,
516 		.fll_min = HI556_FLL_30FPS_MIN,
517 		.llp = 0x0b00,
518 		.reg_list = {
519 			.num_of_regs = ARRAY_SIZE(mode_2592x1944_regs),
520 			.regs = mode_2592x1944_regs,
521 		},
522 		.link_freq_index = HI556_LINK_FREQ_437MHZ_INDEX,
523 	},
524 	{
525 		.width = HI556_PIXEL_ARRAY_WIDTH,
526 		.height = 1444,
527 		.crop = {
528 			.left = HI556_PIXEL_ARRAY_LEFT,
529 			.top = 250,
530 			.width = HI556_PIXEL_ARRAY_WIDTH,
531 			.height = 1444
532 		},
533 		.fll_def = 0x821,
534 		.fll_min = 0x821,
535 		.llp = 0x0b00,
536 		.reg_list = {
537 			.num_of_regs = ARRAY_SIZE(mode_2592x1444_regs),
538 			.regs = mode_2592x1444_regs,
539 		},
540 		.link_freq_index = HI556_LINK_FREQ_437MHZ_INDEX,
541 	},
542 	{
543 		.width = 1296,
544 		.height = 972,
545 		.crop = {
546 			.left = HI556_PIXEL_ARRAY_LEFT,
547 			.top = HI556_PIXEL_ARRAY_TOP,
548 			.width = HI556_PIXEL_ARRAY_WIDTH,
549 			.height = HI556_PIXEL_ARRAY_HEIGHT
550 		},
551 		.fll_def = HI556_FLL_30FPS,
552 		.fll_min = HI556_FLL_30FPS_MIN,
553 		.llp = 0x0b00,
554 		.reg_list = {
555 			.num_of_regs = ARRAY_SIZE(mode_1296x972_regs),
556 			.regs = mode_1296x972_regs,
557 		},
558 		.link_freq_index = HI556_LINK_FREQ_437MHZ_INDEX,
559 	}
560 };
561 
562 struct hi556 {
563 	struct v4l2_subdev sd;
564 	struct media_pad pad;
565 	struct v4l2_ctrl_handler ctrl_handler;
566 
567 	/* V4L2 Controls */
568 	struct v4l2_ctrl *link_freq;
569 	struct v4l2_ctrl *pixel_rate;
570 	struct v4l2_ctrl *vblank;
571 	struct v4l2_ctrl *hblank;
572 	struct v4l2_ctrl *exposure;
573 
574 	/* Current mode */
575 	const struct hi556_mode *cur_mode;
576 
577 	/* To serialize asynchronus callbacks */
578 	struct mutex mutex;
579 
580 	/* True if the device has been identified */
581 	bool identified;
582 };
583 
584 static u64 to_pixel_rate(u32 f_index)
585 {
586 	u64 pixel_rate = link_freq_menu_items[f_index] * 2 * HI556_DATA_LANES;
587 
588 	do_div(pixel_rate, HI556_RGB_DEPTH);
589 
590 	return pixel_rate;
591 }
592 
593 static int hi556_read_reg(struct hi556 *hi556, u16 reg, u16 len, u32 *val)
594 {
595 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
596 	struct i2c_msg msgs[2];
597 	u8 addr_buf[2];
598 	u8 data_buf[4] = {0};
599 	int ret;
600 
601 	if (len > 4)
602 		return -EINVAL;
603 
604 	put_unaligned_be16(reg, addr_buf);
605 	msgs[0].addr = client->addr;
606 	msgs[0].flags = 0;
607 	msgs[0].len = sizeof(addr_buf);
608 	msgs[0].buf = addr_buf;
609 	msgs[1].addr = client->addr;
610 	msgs[1].flags = I2C_M_RD;
611 	msgs[1].len = len;
612 	msgs[1].buf = &data_buf[4 - len];
613 
614 	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
615 	if (ret != ARRAY_SIZE(msgs))
616 		return -EIO;
617 
618 	*val = get_unaligned_be32(data_buf);
619 
620 	return 0;
621 }
622 
623 static int hi556_write_reg(struct hi556 *hi556, u16 reg, u16 len, u32 val)
624 {
625 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
626 	u8 buf[6];
627 
628 	if (len > 4)
629 		return -EINVAL;
630 
631 	put_unaligned_be16(reg, buf);
632 	put_unaligned_be32(val << 8 * (4 - len), buf + 2);
633 	if (i2c_master_send(client, buf, len + 2) != len + 2)
634 		return -EIO;
635 
636 	return 0;
637 }
638 
639 static int hi556_write_reg_list(struct hi556 *hi556,
640 				const struct hi556_reg_list *r_list)
641 {
642 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
643 	unsigned int i;
644 	int ret;
645 
646 	for (i = 0; i < r_list->num_of_regs; i++) {
647 		ret = hi556_write_reg(hi556, r_list->regs[i].address,
648 				      HI556_REG_VALUE_16BIT,
649 				      r_list->regs[i].val);
650 		if (ret) {
651 			dev_err_ratelimited(&client->dev,
652 					    "failed to write reg 0x%4.4x. error = %d",
653 					    r_list->regs[i].address, ret);
654 			return ret;
655 		}
656 	}
657 
658 	return 0;
659 }
660 
661 static int hi556_update_digital_gain(struct hi556 *hi556, u32 d_gain)
662 {
663 	int ret;
664 
665 	ret = hi556_write_reg(hi556, HI556_REG_MWB_GR_GAIN,
666 			      HI556_REG_VALUE_16BIT, d_gain);
667 	if (ret)
668 		return ret;
669 
670 	ret = hi556_write_reg(hi556, HI556_REG_MWB_GB_GAIN,
671 			      HI556_REG_VALUE_16BIT, d_gain);
672 	if (ret)
673 		return ret;
674 
675 	ret = hi556_write_reg(hi556, HI556_REG_MWB_R_GAIN,
676 			      HI556_REG_VALUE_16BIT, d_gain);
677 	if (ret)
678 		return ret;
679 
680 	return hi556_write_reg(hi556, HI556_REG_MWB_B_GAIN,
681 			       HI556_REG_VALUE_16BIT, d_gain);
682 }
683 
684 static int hi556_test_pattern(struct hi556 *hi556, u32 pattern)
685 {
686 	int ret;
687 	u32 val;
688 
689 	if (pattern) {
690 		ret = hi556_read_reg(hi556, HI556_REG_ISP,
691 				     HI556_REG_VALUE_08BIT, &val);
692 		if (ret)
693 			return ret;
694 
695 		ret = hi556_write_reg(hi556, HI556_REG_ISP,
696 				      HI556_REG_VALUE_08BIT,
697 				      val | HI556_REG_ISP_TPG_EN);
698 		if (ret)
699 			return ret;
700 	}
701 
702 	return hi556_write_reg(hi556, HI556_REG_TEST_PATTERN,
703 			       HI556_REG_VALUE_08BIT, pattern);
704 }
705 
706 static int hi556_set_ctrl(struct v4l2_ctrl *ctrl)
707 {
708 	struct hi556 *hi556 = container_of(ctrl->handler,
709 					     struct hi556, ctrl_handler);
710 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
711 	s64 exposure_max;
712 	int ret = 0;
713 
714 	/* Propagate change of current control to all related controls */
715 	if (ctrl->id == V4L2_CID_VBLANK) {
716 		/* Update max exposure while meeting expected vblanking */
717 		exposure_max = hi556->cur_mode->height + ctrl->val -
718 			       HI556_EXPOSURE_MAX_MARGIN;
719 		__v4l2_ctrl_modify_range(hi556->exposure,
720 					 hi556->exposure->minimum,
721 					 exposure_max, hi556->exposure->step,
722 					 exposure_max);
723 	}
724 
725 	/* V4L2 controls values will be applied only when power is already up */
726 	if (!pm_runtime_get_if_in_use(&client->dev))
727 		return 0;
728 
729 	switch (ctrl->id) {
730 	case V4L2_CID_ANALOGUE_GAIN:
731 		ret = hi556_write_reg(hi556, HI556_REG_ANALOG_GAIN,
732 				      HI556_REG_VALUE_16BIT, ctrl->val);
733 		break;
734 
735 	case V4L2_CID_DIGITAL_GAIN:
736 		ret = hi556_update_digital_gain(hi556, ctrl->val);
737 		break;
738 
739 	case V4L2_CID_EXPOSURE:
740 		ret = hi556_write_reg(hi556, HI556_REG_EXPOSURE,
741 				      HI556_REG_VALUE_16BIT, ctrl->val);
742 		break;
743 
744 	case V4L2_CID_VBLANK:
745 		/* Update FLL that meets expected vertical blanking */
746 		ret = hi556_write_reg(hi556, HI556_REG_FLL,
747 				      HI556_REG_VALUE_16BIT,
748 				      hi556->cur_mode->height + ctrl->val);
749 		break;
750 
751 	case V4L2_CID_TEST_PATTERN:
752 		ret = hi556_test_pattern(hi556, ctrl->val);
753 		break;
754 
755 	default:
756 		ret = -EINVAL;
757 		break;
758 	}
759 
760 	pm_runtime_put(&client->dev);
761 
762 	return ret;
763 }
764 
765 static const struct v4l2_ctrl_ops hi556_ctrl_ops = {
766 	.s_ctrl = hi556_set_ctrl,
767 };
768 
769 static int hi556_init_controls(struct hi556 *hi556)
770 {
771 	struct v4l2_ctrl_handler *ctrl_hdlr;
772 	s64 exposure_max, h_blank;
773 	int ret;
774 
775 	ctrl_hdlr = &hi556->ctrl_handler;
776 	ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
777 	if (ret)
778 		return ret;
779 
780 	ctrl_hdlr->lock = &hi556->mutex;
781 	hi556->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &hi556_ctrl_ops,
782 						  V4L2_CID_LINK_FREQ,
783 					ARRAY_SIZE(link_freq_menu_items) - 1,
784 					0, link_freq_menu_items);
785 	if (hi556->link_freq)
786 		hi556->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY;
787 
788 	hi556->pixel_rate = v4l2_ctrl_new_std
789 			    (ctrl_hdlr, &hi556_ctrl_ops,
790 			     V4L2_CID_PIXEL_RATE, 0,
791 			     to_pixel_rate(HI556_LINK_FREQ_437MHZ_INDEX),
792 			     1,
793 			     to_pixel_rate(HI556_LINK_FREQ_437MHZ_INDEX));
794 	hi556->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &hi556_ctrl_ops,
795 					  V4L2_CID_VBLANK,
796 					  hi556->cur_mode->fll_min -
797 					  hi556->cur_mode->height,
798 					  HI556_FLL_MAX -
799 					  hi556->cur_mode->height, 1,
800 					  hi556->cur_mode->fll_def -
801 					  hi556->cur_mode->height);
802 
803 	h_blank = hi556->cur_mode->llp - hi556->cur_mode->width;
804 
805 	hi556->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &hi556_ctrl_ops,
806 					  V4L2_CID_HBLANK, h_blank, h_blank, 1,
807 					  h_blank);
808 	if (hi556->hblank)
809 		hi556->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
810 
811 	v4l2_ctrl_new_std(ctrl_hdlr, &hi556_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
812 			  HI556_ANAL_GAIN_MIN, HI556_ANAL_GAIN_MAX,
813 			  HI556_ANAL_GAIN_STEP, HI556_ANAL_GAIN_MIN);
814 	v4l2_ctrl_new_std(ctrl_hdlr, &hi556_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
815 			  HI556_DGTL_GAIN_MIN, HI556_DGTL_GAIN_MAX,
816 			  HI556_DGTL_GAIN_STEP, HI556_DGTL_GAIN_DEFAULT);
817 	exposure_max = hi556->cur_mode->fll_def - HI556_EXPOSURE_MAX_MARGIN;
818 	hi556->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &hi556_ctrl_ops,
819 					    V4L2_CID_EXPOSURE,
820 					    HI556_EXPOSURE_MIN, exposure_max,
821 					    HI556_EXPOSURE_STEP,
822 					    exposure_max);
823 	v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &hi556_ctrl_ops,
824 				     V4L2_CID_TEST_PATTERN,
825 				     ARRAY_SIZE(hi556_test_pattern_menu) - 1,
826 				     0, 0, hi556_test_pattern_menu);
827 	if (ctrl_hdlr->error)
828 		return ctrl_hdlr->error;
829 
830 	hi556->sd.ctrl_handler = ctrl_hdlr;
831 
832 	return 0;
833 }
834 
835 static void hi556_assign_pad_format(const struct hi556_mode *mode,
836 				    struct v4l2_mbus_framefmt *fmt)
837 {
838 	fmt->width = mode->width;
839 	fmt->height = mode->height;
840 	fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10;
841 	fmt->field = V4L2_FIELD_NONE;
842 }
843 
844 static int hi556_identify_module(struct hi556 *hi556)
845 {
846 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
847 	int ret;
848 	u32 val;
849 
850 	if (hi556->identified)
851 		return 0;
852 
853 	ret = hi556_read_reg(hi556, HI556_REG_CHIP_ID,
854 			     HI556_REG_VALUE_16BIT, &val);
855 	if (ret)
856 		return ret;
857 
858 	if (val != HI556_CHIP_ID) {
859 		dev_err(&client->dev, "chip id mismatch: %x!=%x",
860 			HI556_CHIP_ID, val);
861 		return -ENXIO;
862 	}
863 
864 	hi556->identified = true;
865 
866 	return 0;
867 }
868 
869 static const struct v4l2_rect *
870 __hi556_get_pad_crop(struct hi556 *hi556,
871 		     struct v4l2_subdev_state *sd_state,
872 		     unsigned int pad, enum v4l2_subdev_format_whence which)
873 {
874 	switch (which) {
875 	case V4L2_SUBDEV_FORMAT_TRY:
876 		return v4l2_subdev_get_try_crop(&hi556->sd, sd_state, pad);
877 	case V4L2_SUBDEV_FORMAT_ACTIVE:
878 		return &hi556->cur_mode->crop;
879 	}
880 
881 	return NULL;
882 }
883 
884 static int hi556_get_selection(struct v4l2_subdev *sd,
885 			       struct v4l2_subdev_state *sd_state,
886 			       struct v4l2_subdev_selection *sel)
887 {
888 	switch (sel->target) {
889 	case V4L2_SEL_TGT_CROP: {
890 		struct hi556 *hi556 = to_hi556(sd);
891 
892 		mutex_lock(&hi556->mutex);
893 		sel->r = *__hi556_get_pad_crop(hi556, sd_state, sel->pad,
894 						sel->which);
895 		mutex_unlock(&hi556->mutex);
896 
897 		return 0;
898 	}
899 
900 	case V4L2_SEL_TGT_NATIVE_SIZE:
901 		sel->r.top = 0;
902 		sel->r.left = 0;
903 		sel->r.width = HI556_NATIVE_WIDTH;
904 		sel->r.height = HI556_NATIVE_HEIGHT;
905 
906 		return 0;
907 
908 	case V4L2_SEL_TGT_CROP_DEFAULT:
909 	case V4L2_SEL_TGT_CROP_BOUNDS:
910 		sel->r.top = HI556_PIXEL_ARRAY_TOP;
911 		sel->r.left = HI556_PIXEL_ARRAY_LEFT;
912 		sel->r.width = HI556_PIXEL_ARRAY_WIDTH;
913 		sel->r.height = HI556_PIXEL_ARRAY_HEIGHT;
914 
915 		return 0;
916 	}
917 
918 	return -EINVAL;
919 }
920 
921 static int hi556_start_streaming(struct hi556 *hi556)
922 {
923 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
924 	const struct hi556_reg_list *reg_list;
925 	int link_freq_index, ret;
926 
927 	ret = hi556_identify_module(hi556);
928 	if (ret)
929 		return ret;
930 
931 	link_freq_index = hi556->cur_mode->link_freq_index;
932 	reg_list = &link_freq_configs[link_freq_index].reg_list;
933 	ret = hi556_write_reg_list(hi556, reg_list);
934 	if (ret) {
935 		dev_err(&client->dev, "failed to set plls");
936 		return ret;
937 	}
938 
939 	reg_list = &hi556->cur_mode->reg_list;
940 	ret = hi556_write_reg_list(hi556, reg_list);
941 	if (ret) {
942 		dev_err(&client->dev, "failed to set mode");
943 		return ret;
944 	}
945 
946 	ret = __v4l2_ctrl_handler_setup(hi556->sd.ctrl_handler);
947 	if (ret)
948 		return ret;
949 
950 	ret = hi556_write_reg(hi556, HI556_REG_MODE_SELECT,
951 			      HI556_REG_VALUE_16BIT, HI556_MODE_STREAMING);
952 
953 	if (ret) {
954 		dev_err(&client->dev, "failed to set stream");
955 		return ret;
956 	}
957 
958 	return 0;
959 }
960 
961 static void hi556_stop_streaming(struct hi556 *hi556)
962 {
963 	struct i2c_client *client = v4l2_get_subdevdata(&hi556->sd);
964 
965 	if (hi556_write_reg(hi556, HI556_REG_MODE_SELECT,
966 			    HI556_REG_VALUE_16BIT, HI556_MODE_STANDBY))
967 		dev_err(&client->dev, "failed to set stream");
968 }
969 
970 static int hi556_set_stream(struct v4l2_subdev *sd, int enable)
971 {
972 	struct hi556 *hi556 = to_hi556(sd);
973 	struct i2c_client *client = v4l2_get_subdevdata(sd);
974 	int ret = 0;
975 
976 	mutex_lock(&hi556->mutex);
977 	if (enable) {
978 		ret = pm_runtime_resume_and_get(&client->dev);
979 		if (ret < 0) {
980 			mutex_unlock(&hi556->mutex);
981 			return ret;
982 		}
983 
984 		ret = hi556_start_streaming(hi556);
985 		if (ret) {
986 			enable = 0;
987 			hi556_stop_streaming(hi556);
988 			pm_runtime_put(&client->dev);
989 		}
990 	} else {
991 		hi556_stop_streaming(hi556);
992 		pm_runtime_put(&client->dev);
993 	}
994 
995 	mutex_unlock(&hi556->mutex);
996 
997 	return ret;
998 }
999 
1000 static int hi556_set_format(struct v4l2_subdev *sd,
1001 			    struct v4l2_subdev_state *sd_state,
1002 			    struct v4l2_subdev_format *fmt)
1003 {
1004 	struct hi556 *hi556 = to_hi556(sd);
1005 	const struct hi556_mode *mode;
1006 	s32 vblank_def, h_blank;
1007 
1008 	mode = v4l2_find_nearest_size(supported_modes,
1009 				      ARRAY_SIZE(supported_modes), width,
1010 				      height, fmt->format.width,
1011 				      fmt->format.height);
1012 
1013 	mutex_lock(&hi556->mutex);
1014 	hi556_assign_pad_format(mode, &fmt->format);
1015 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1016 		*v4l2_subdev_get_try_format(sd, sd_state, fmt->pad) = fmt->format;
1017 	} else {
1018 		hi556->cur_mode = mode;
1019 		__v4l2_ctrl_s_ctrl(hi556->link_freq, mode->link_freq_index);
1020 		__v4l2_ctrl_s_ctrl_int64(hi556->pixel_rate,
1021 					 to_pixel_rate(mode->link_freq_index));
1022 
1023 		/* Update limits and set FPS to default */
1024 		vblank_def = mode->fll_def - mode->height;
1025 		__v4l2_ctrl_modify_range(hi556->vblank,
1026 					 mode->fll_min - mode->height,
1027 					 HI556_FLL_MAX - mode->height, 1,
1028 					 vblank_def);
1029 		__v4l2_ctrl_s_ctrl(hi556->vblank, vblank_def);
1030 
1031 		h_blank = hi556->cur_mode->llp - hi556->cur_mode->width;
1032 
1033 		__v4l2_ctrl_modify_range(hi556->hblank, h_blank, h_blank, 1,
1034 					 h_blank);
1035 	}
1036 
1037 	mutex_unlock(&hi556->mutex);
1038 
1039 	return 0;
1040 }
1041 
1042 static int hi556_get_format(struct v4l2_subdev *sd,
1043 			    struct v4l2_subdev_state *sd_state,
1044 			    struct v4l2_subdev_format *fmt)
1045 {
1046 	struct hi556 *hi556 = to_hi556(sd);
1047 
1048 	mutex_lock(&hi556->mutex);
1049 	if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
1050 		fmt->format = *v4l2_subdev_get_try_format(&hi556->sd,
1051 							  sd_state,
1052 							  fmt->pad);
1053 	else
1054 		hi556_assign_pad_format(hi556->cur_mode, &fmt->format);
1055 
1056 	mutex_unlock(&hi556->mutex);
1057 
1058 	return 0;
1059 }
1060 
1061 static int hi556_enum_mbus_code(struct v4l2_subdev *sd,
1062 				struct v4l2_subdev_state *sd_state,
1063 				struct v4l2_subdev_mbus_code_enum *code)
1064 {
1065 	if (code->index > 0)
1066 		return -EINVAL;
1067 
1068 	code->code = MEDIA_BUS_FMT_SGRBG10_1X10;
1069 
1070 	return 0;
1071 }
1072 
1073 static int hi556_enum_frame_size(struct v4l2_subdev *sd,
1074 				 struct v4l2_subdev_state *sd_state,
1075 				 struct v4l2_subdev_frame_size_enum *fse)
1076 {
1077 	if (fse->index >= ARRAY_SIZE(supported_modes))
1078 		return -EINVAL;
1079 
1080 	if (fse->code != MEDIA_BUS_FMT_SGRBG10_1X10)
1081 		return -EINVAL;
1082 
1083 	fse->min_width = supported_modes[fse->index].width;
1084 	fse->max_width = fse->min_width;
1085 	fse->min_height = supported_modes[fse->index].height;
1086 	fse->max_height = fse->min_height;
1087 
1088 	return 0;
1089 }
1090 
1091 static int hi556_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
1092 {
1093 	struct hi556 *hi556 = to_hi556(sd);
1094 	struct v4l2_rect *try_crop;
1095 
1096 	mutex_lock(&hi556->mutex);
1097 	hi556_assign_pad_format(&supported_modes[0],
1098 				v4l2_subdev_get_try_format(sd, fh->state, 0));
1099 
1100 	/* Initialize try_crop rectangle. */
1101 	try_crop = v4l2_subdev_get_try_crop(sd, fh->state, 0);
1102 	try_crop->top = HI556_PIXEL_ARRAY_TOP;
1103 	try_crop->left = HI556_PIXEL_ARRAY_LEFT;
1104 	try_crop->width = HI556_PIXEL_ARRAY_WIDTH;
1105 	try_crop->height = HI556_PIXEL_ARRAY_HEIGHT;
1106 
1107 	mutex_unlock(&hi556->mutex);
1108 
1109 	return 0;
1110 }
1111 
1112 static const struct v4l2_subdev_video_ops hi556_video_ops = {
1113 	.s_stream = hi556_set_stream,
1114 };
1115 
1116 static const struct v4l2_subdev_pad_ops hi556_pad_ops = {
1117 	.set_fmt = hi556_set_format,
1118 	.get_fmt = hi556_get_format,
1119 	.get_selection = hi556_get_selection,
1120 	.enum_mbus_code = hi556_enum_mbus_code,
1121 	.enum_frame_size = hi556_enum_frame_size,
1122 };
1123 
1124 static const struct v4l2_subdev_ops hi556_subdev_ops = {
1125 	.video = &hi556_video_ops,
1126 	.pad = &hi556_pad_ops,
1127 };
1128 
1129 static const struct media_entity_operations hi556_subdev_entity_ops = {
1130 	.link_validate = v4l2_subdev_link_validate,
1131 };
1132 
1133 static const struct v4l2_subdev_internal_ops hi556_internal_ops = {
1134 	.open = hi556_open,
1135 };
1136 
1137 static int hi556_check_hwcfg(struct device *dev)
1138 {
1139 	struct fwnode_handle *ep;
1140 	struct fwnode_handle *fwnode = dev_fwnode(dev);
1141 	struct v4l2_fwnode_endpoint bus_cfg = {
1142 		.bus_type = V4L2_MBUS_CSI2_DPHY
1143 	};
1144 	u32 mclk;
1145 	int ret = 0;
1146 	unsigned int i, j;
1147 
1148 	if (!fwnode)
1149 		return -ENXIO;
1150 
1151 	ret = fwnode_property_read_u32(fwnode, "clock-frequency", &mclk);
1152 	if (ret) {
1153 		dev_err(dev, "can't get clock frequency");
1154 		return ret;
1155 	}
1156 
1157 	if (mclk != HI556_MCLK) {
1158 		dev_err(dev, "external clock %d is not supported", mclk);
1159 		return -EINVAL;
1160 	}
1161 
1162 	ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
1163 	if (!ep)
1164 		return -ENXIO;
1165 
1166 	ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
1167 	fwnode_handle_put(ep);
1168 	if (ret)
1169 		return ret;
1170 
1171 	if (bus_cfg.bus.mipi_csi2.num_data_lanes != 2) {
1172 		dev_err(dev, "number of CSI2 data lanes %d is not supported",
1173 			bus_cfg.bus.mipi_csi2.num_data_lanes);
1174 		ret = -EINVAL;
1175 		goto check_hwcfg_error;
1176 	}
1177 
1178 	if (!bus_cfg.nr_of_link_frequencies) {
1179 		dev_err(dev, "no link frequencies defined");
1180 		ret = -EINVAL;
1181 		goto check_hwcfg_error;
1182 	}
1183 
1184 	for (i = 0; i < ARRAY_SIZE(link_freq_menu_items); i++) {
1185 		for (j = 0; j < bus_cfg.nr_of_link_frequencies; j++) {
1186 			if (link_freq_menu_items[i] ==
1187 				bus_cfg.link_frequencies[j])
1188 				break;
1189 		}
1190 
1191 		if (j == bus_cfg.nr_of_link_frequencies) {
1192 			dev_err(dev, "no link frequency %lld supported",
1193 				link_freq_menu_items[i]);
1194 			ret = -EINVAL;
1195 			goto check_hwcfg_error;
1196 		}
1197 	}
1198 
1199 check_hwcfg_error:
1200 	v4l2_fwnode_endpoint_free(&bus_cfg);
1201 
1202 	return ret;
1203 }
1204 
1205 static void hi556_remove(struct i2c_client *client)
1206 {
1207 	struct v4l2_subdev *sd = i2c_get_clientdata(client);
1208 	struct hi556 *hi556 = to_hi556(sd);
1209 
1210 	v4l2_async_unregister_subdev(sd);
1211 	media_entity_cleanup(&sd->entity);
1212 	v4l2_ctrl_handler_free(sd->ctrl_handler);
1213 	pm_runtime_disable(&client->dev);
1214 	mutex_destroy(&hi556->mutex);
1215 }
1216 
1217 static int hi556_probe(struct i2c_client *client)
1218 {
1219 	struct hi556 *hi556;
1220 	bool full_power;
1221 	int ret;
1222 
1223 	ret = hi556_check_hwcfg(&client->dev);
1224 	if (ret) {
1225 		dev_err(&client->dev, "failed to check HW configuration: %d",
1226 			ret);
1227 		return ret;
1228 	}
1229 
1230 	hi556 = devm_kzalloc(&client->dev, sizeof(*hi556), GFP_KERNEL);
1231 	if (!hi556)
1232 		return -ENOMEM;
1233 
1234 	v4l2_i2c_subdev_init(&hi556->sd, client, &hi556_subdev_ops);
1235 
1236 	full_power = acpi_dev_state_d0(&client->dev);
1237 	if (full_power) {
1238 		ret = hi556_identify_module(hi556);
1239 		if (ret) {
1240 			dev_err(&client->dev, "failed to find sensor: %d", ret);
1241 			return ret;
1242 		}
1243 	}
1244 
1245 	mutex_init(&hi556->mutex);
1246 	hi556->cur_mode = &supported_modes[0];
1247 	ret = hi556_init_controls(hi556);
1248 	if (ret) {
1249 		dev_err(&client->dev, "failed to init controls: %d", ret);
1250 		goto probe_error_v4l2_ctrl_handler_free;
1251 	}
1252 
1253 	hi556->sd.internal_ops = &hi556_internal_ops;
1254 	hi556->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1255 	hi556->sd.entity.ops = &hi556_subdev_entity_ops;
1256 	hi556->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
1257 	hi556->pad.flags = MEDIA_PAD_FL_SOURCE;
1258 	ret = media_entity_pads_init(&hi556->sd.entity, 1, &hi556->pad);
1259 	if (ret) {
1260 		dev_err(&client->dev, "failed to init entity pads: %d", ret);
1261 		goto probe_error_v4l2_ctrl_handler_free;
1262 	}
1263 
1264 	ret = v4l2_async_register_subdev_sensor(&hi556->sd);
1265 	if (ret < 0) {
1266 		dev_err(&client->dev, "failed to register V4L2 subdev: %d",
1267 			ret);
1268 		goto probe_error_media_entity_cleanup;
1269 	}
1270 
1271 	/* Set the device's state to active if it's in D0 state. */
1272 	if (full_power)
1273 		pm_runtime_set_active(&client->dev);
1274 	pm_runtime_enable(&client->dev);
1275 	pm_runtime_idle(&client->dev);
1276 
1277 	return 0;
1278 
1279 probe_error_media_entity_cleanup:
1280 	media_entity_cleanup(&hi556->sd.entity);
1281 
1282 probe_error_v4l2_ctrl_handler_free:
1283 	v4l2_ctrl_handler_free(hi556->sd.ctrl_handler);
1284 	mutex_destroy(&hi556->mutex);
1285 
1286 	return ret;
1287 }
1288 
1289 #ifdef CONFIG_ACPI
1290 static const struct acpi_device_id hi556_acpi_ids[] = {
1291 	{"INT3537"},
1292 	{}
1293 };
1294 
1295 MODULE_DEVICE_TABLE(acpi, hi556_acpi_ids);
1296 #endif
1297 
1298 static struct i2c_driver hi556_i2c_driver = {
1299 	.driver = {
1300 		.name = "hi556",
1301 		.acpi_match_table = ACPI_PTR(hi556_acpi_ids),
1302 	},
1303 	.probe = hi556_probe,
1304 	.remove = hi556_remove,
1305 	.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
1306 };
1307 
1308 module_i2c_driver(hi556_i2c_driver);
1309 
1310 MODULE_AUTHOR("Shawn Tu");
1311 MODULE_DESCRIPTION("Hynix HI556 sensor driver");
1312 MODULE_LICENSE("GPL v2");
1313