]> Git Repo - linux.git/blob - drivers/media/i2c/imx258.c
Merge tag 'trace-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux.git] / drivers / media / i2c / imx258.c
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2018 Intel Corporation
3
4 #include <linux/acpi.h>
5 #include <linux/clk.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 <asm/unaligned.h>
13
14 #define IMX258_REG_VALUE_08BIT          1
15 #define IMX258_REG_VALUE_16BIT          2
16
17 #define IMX258_REG_MODE_SELECT          0x0100
18 #define IMX258_MODE_STANDBY             0x00
19 #define IMX258_MODE_STREAMING           0x01
20
21 /* Chip ID */
22 #define IMX258_REG_CHIP_ID              0x0016
23 #define IMX258_CHIP_ID                  0x0258
24
25 /* V_TIMING internal */
26 #define IMX258_VTS_30FPS                0x0c98
27 #define IMX258_VTS_30FPS_2K             0x0638
28 #define IMX258_VTS_30FPS_VGA            0x034c
29 #define IMX258_VTS_MAX                  0xffff
30
31 /*Frame Length Line*/
32 #define IMX258_FLL_MIN                  0x08a6
33 #define IMX258_FLL_MAX                  0xffff
34 #define IMX258_FLL_STEP                 1
35 #define IMX258_FLL_DEFAULT              0x0c98
36
37 /* HBLANK control - read only */
38 #define IMX258_PPL_DEFAULT              5352
39
40 /* Exposure control */
41 #define IMX258_REG_EXPOSURE             0x0202
42 #define IMX258_EXPOSURE_MIN             4
43 #define IMX258_EXPOSURE_STEP            1
44 #define IMX258_EXPOSURE_DEFAULT         0x640
45 #define IMX258_EXPOSURE_MAX             65535
46
47 /* Analog gain control */
48 #define IMX258_REG_ANALOG_GAIN          0x0204
49 #define IMX258_ANA_GAIN_MIN             0
50 #define IMX258_ANA_GAIN_MAX             0x1fff
51 #define IMX258_ANA_GAIN_STEP            1
52 #define IMX258_ANA_GAIN_DEFAULT         0x0
53
54 /* Digital gain control */
55 #define IMX258_REG_GR_DIGITAL_GAIN      0x020e
56 #define IMX258_REG_R_DIGITAL_GAIN       0x0210
57 #define IMX258_REG_B_DIGITAL_GAIN       0x0212
58 #define IMX258_REG_GB_DIGITAL_GAIN      0x0214
59 #define IMX258_DGTL_GAIN_MIN            0
60 #define IMX258_DGTL_GAIN_MAX            4096    /* Max = 0xFFF */
61 #define IMX258_DGTL_GAIN_DEFAULT        1024
62 #define IMX258_DGTL_GAIN_STEP           1
63
64 /* HDR control */
65 #define IMX258_REG_HDR                  0x0220
66 #define IMX258_HDR_ON                   BIT(0)
67 #define IMX258_REG_HDR_RATIO            0x0222
68 #define IMX258_HDR_RATIO_MIN            0
69 #define IMX258_HDR_RATIO_MAX            5
70 #define IMX258_HDR_RATIO_STEP           1
71 #define IMX258_HDR_RATIO_DEFAULT        0x0
72
73 /* Test Pattern Control */
74 #define IMX258_REG_TEST_PATTERN         0x0600
75
76 /* Orientation */
77 #define REG_MIRROR_FLIP_CONTROL         0x0101
78 #define REG_CONFIG_MIRROR_FLIP          0x03
79 #define REG_CONFIG_FLIP_TEST_PATTERN    0x02
80
81 /* Input clock frequency in Hz */
82 #define IMX258_INPUT_CLOCK_FREQ         19200000
83
84 struct imx258_reg {
85         u16 address;
86         u8 val;
87 };
88
89 struct imx258_reg_list {
90         u32 num_of_regs;
91         const struct imx258_reg *regs;
92 };
93
94 /* Link frequency config */
95 struct imx258_link_freq_config {
96         u32 pixels_per_line;
97
98         /* PLL registers for this link frequency */
99         struct imx258_reg_list reg_list;
100 };
101
102 /* Mode : resolution and related config&values */
103 struct imx258_mode {
104         /* Frame width */
105         u32 width;
106         /* Frame height */
107         u32 height;
108
109         /* V-timing */
110         u32 vts_def;
111         u32 vts_min;
112
113         /* Index of Link frequency config to be used */
114         u32 link_freq_index;
115         /* Default register values */
116         struct imx258_reg_list reg_list;
117 };
118
119 /* 4208x3118 needs 1267Mbps/lane, 4 lanes */
120 static const struct imx258_reg mipi_data_rate_1267mbps[] = {
121         { 0x0301, 0x05 },
122         { 0x0303, 0x02 },
123         { 0x0305, 0x03 },
124         { 0x0306, 0x00 },
125         { 0x0307, 0xC6 },
126         { 0x0309, 0x0A },
127         { 0x030B, 0x01 },
128         { 0x030D, 0x02 },
129         { 0x030E, 0x00 },
130         { 0x030F, 0xD8 },
131         { 0x0310, 0x00 },
132         { 0x0820, 0x13 },
133         { 0x0821, 0x4C },
134         { 0x0822, 0xCC },
135         { 0x0823, 0xCC },
136 };
137
138 static const struct imx258_reg mipi_data_rate_640mbps[] = {
139         { 0x0301, 0x05 },
140         { 0x0303, 0x02 },
141         { 0x0305, 0x03 },
142         { 0x0306, 0x00 },
143         { 0x0307, 0x64 },
144         { 0x0309, 0x0A },
145         { 0x030B, 0x01 },
146         { 0x030D, 0x02 },
147         { 0x030E, 0x00 },
148         { 0x030F, 0xD8 },
149         { 0x0310, 0x00 },
150         { 0x0820, 0x0A },
151         { 0x0821, 0x00 },
152         { 0x0822, 0x00 },
153         { 0x0823, 0x00 },
154 };
155
156 static const struct imx258_reg mode_4208x3118_regs[] = {
157         { 0x0136, 0x13 },
158         { 0x0137, 0x33 },
159         { 0x3051, 0x00 },
160         { 0x3052, 0x00 },
161         { 0x4E21, 0x14 },
162         { 0x6B11, 0xCF },
163         { 0x7FF0, 0x08 },
164         { 0x7FF1, 0x0F },
165         { 0x7FF2, 0x08 },
166         { 0x7FF3, 0x1B },
167         { 0x7FF4, 0x23 },
168         { 0x7FF5, 0x60 },
169         { 0x7FF6, 0x00 },
170         { 0x7FF7, 0x01 },
171         { 0x7FF8, 0x00 },
172         { 0x7FF9, 0x78 },
173         { 0x7FFA, 0x00 },
174         { 0x7FFB, 0x00 },
175         { 0x7FFC, 0x00 },
176         { 0x7FFD, 0x00 },
177         { 0x7FFE, 0x00 },
178         { 0x7FFF, 0x03 },
179         { 0x7F76, 0x03 },
180         { 0x7F77, 0xFE },
181         { 0x7FA8, 0x03 },
182         { 0x7FA9, 0xFE },
183         { 0x7B24, 0x81 },
184         { 0x7B25, 0x00 },
185         { 0x6564, 0x07 },
186         { 0x6B0D, 0x41 },
187         { 0x653D, 0x04 },
188         { 0x6B05, 0x8C },
189         { 0x6B06, 0xF9 },
190         { 0x6B08, 0x65 },
191         { 0x6B09, 0xFC },
192         { 0x6B0A, 0xCF },
193         { 0x6B0B, 0xD2 },
194         { 0x6700, 0x0E },
195         { 0x6707, 0x0E },
196         { 0x9104, 0x00 },
197         { 0x4648, 0x7F },
198         { 0x7420, 0x00 },
199         { 0x7421, 0x1C },
200         { 0x7422, 0x00 },
201         { 0x7423, 0xD7 },
202         { 0x5F04, 0x00 },
203         { 0x5F05, 0xED },
204         { 0x0112, 0x0A },
205         { 0x0113, 0x0A },
206         { 0x0114, 0x03 },
207         { 0x0342, 0x14 },
208         { 0x0343, 0xE8 },
209         { 0x0340, 0x0C },
210         { 0x0341, 0x50 },
211         { 0x0344, 0x00 },
212         { 0x0345, 0x00 },
213         { 0x0346, 0x00 },
214         { 0x0347, 0x00 },
215         { 0x0348, 0x10 },
216         { 0x0349, 0x6F },
217         { 0x034A, 0x0C },
218         { 0x034B, 0x2E },
219         { 0x0381, 0x01 },
220         { 0x0383, 0x01 },
221         { 0x0385, 0x01 },
222         { 0x0387, 0x01 },
223         { 0x0900, 0x00 },
224         { 0x0901, 0x11 },
225         { 0x0401, 0x00 },
226         { 0x0404, 0x00 },
227         { 0x0405, 0x10 },
228         { 0x0408, 0x00 },
229         { 0x0409, 0x00 },
230         { 0x040A, 0x00 },
231         { 0x040B, 0x00 },
232         { 0x040C, 0x10 },
233         { 0x040D, 0x70 },
234         { 0x040E, 0x0C },
235         { 0x040F, 0x30 },
236         { 0x3038, 0x00 },
237         { 0x303A, 0x00 },
238         { 0x303B, 0x10 },
239         { 0x300D, 0x00 },
240         { 0x034C, 0x10 },
241         { 0x034D, 0x70 },
242         { 0x034E, 0x0C },
243         { 0x034F, 0x30 },
244         { 0x0350, 0x01 },
245         { 0x0202, 0x0C },
246         { 0x0203, 0x46 },
247         { 0x0204, 0x00 },
248         { 0x0205, 0x00 },
249         { 0x020E, 0x01 },
250         { 0x020F, 0x00 },
251         { 0x0210, 0x01 },
252         { 0x0211, 0x00 },
253         { 0x0212, 0x01 },
254         { 0x0213, 0x00 },
255         { 0x0214, 0x01 },
256         { 0x0215, 0x00 },
257         { 0x7BCD, 0x00 },
258         { 0x94DC, 0x20 },
259         { 0x94DD, 0x20 },
260         { 0x94DE, 0x20 },
261         { 0x95DC, 0x20 },
262         { 0x95DD, 0x20 },
263         { 0x95DE, 0x20 },
264         { 0x7FB0, 0x00 },
265         { 0x9010, 0x3E },
266         { 0x9419, 0x50 },
267         { 0x941B, 0x50 },
268         { 0x9519, 0x50 },
269         { 0x951B, 0x50 },
270         { 0x3030, 0x00 },
271         { 0x3032, 0x00 },
272         { 0x0220, 0x00 },
273 };
274
275 static const struct imx258_reg mode_2104_1560_regs[] = {
276         { 0x0136, 0x13 },
277         { 0x0137, 0x33 },
278         { 0x3051, 0x00 },
279         { 0x3052, 0x00 },
280         { 0x4E21, 0x14 },
281         { 0x6B11, 0xCF },
282         { 0x7FF0, 0x08 },
283         { 0x7FF1, 0x0F },
284         { 0x7FF2, 0x08 },
285         { 0x7FF3, 0x1B },
286         { 0x7FF4, 0x23 },
287         { 0x7FF5, 0x60 },
288         { 0x7FF6, 0x00 },
289         { 0x7FF7, 0x01 },
290         { 0x7FF8, 0x00 },
291         { 0x7FF9, 0x78 },
292         { 0x7FFA, 0x00 },
293         { 0x7FFB, 0x00 },
294         { 0x7FFC, 0x00 },
295         { 0x7FFD, 0x00 },
296         { 0x7FFE, 0x00 },
297         { 0x7FFF, 0x03 },
298         { 0x7F76, 0x03 },
299         { 0x7F77, 0xFE },
300         { 0x7FA8, 0x03 },
301         { 0x7FA9, 0xFE },
302         { 0x7B24, 0x81 },
303         { 0x7B25, 0x00 },
304         { 0x6564, 0x07 },
305         { 0x6B0D, 0x41 },
306         { 0x653D, 0x04 },
307         { 0x6B05, 0x8C },
308         { 0x6B06, 0xF9 },
309         { 0x6B08, 0x65 },
310         { 0x6B09, 0xFC },
311         { 0x6B0A, 0xCF },
312         { 0x6B0B, 0xD2 },
313         { 0x6700, 0x0E },
314         { 0x6707, 0x0E },
315         { 0x9104, 0x00 },
316         { 0x4648, 0x7F },
317         { 0x7420, 0x00 },
318         { 0x7421, 0x1C },
319         { 0x7422, 0x00 },
320         { 0x7423, 0xD7 },
321         { 0x5F04, 0x00 },
322         { 0x5F05, 0xED },
323         { 0x0112, 0x0A },
324         { 0x0113, 0x0A },
325         { 0x0114, 0x03 },
326         { 0x0342, 0x14 },
327         { 0x0343, 0xE8 },
328         { 0x0340, 0x06 },
329         { 0x0341, 0x38 },
330         { 0x0344, 0x00 },
331         { 0x0345, 0x00 },
332         { 0x0346, 0x00 },
333         { 0x0347, 0x00 },
334         { 0x0348, 0x10 },
335         { 0x0349, 0x6F },
336         { 0x034A, 0x0C },
337         { 0x034B, 0x2E },
338         { 0x0381, 0x01 },
339         { 0x0383, 0x01 },
340         { 0x0385, 0x01 },
341         { 0x0387, 0x01 },
342         { 0x0900, 0x01 },
343         { 0x0901, 0x12 },
344         { 0x0401, 0x01 },
345         { 0x0404, 0x00 },
346         { 0x0405, 0x20 },
347         { 0x0408, 0x00 },
348         { 0x0409, 0x02 },
349         { 0x040A, 0x00 },
350         { 0x040B, 0x00 },
351         { 0x040C, 0x10 },
352         { 0x040D, 0x6A },
353         { 0x040E, 0x06 },
354         { 0x040F, 0x18 },
355         { 0x3038, 0x00 },
356         { 0x303A, 0x00 },
357         { 0x303B, 0x10 },
358         { 0x300D, 0x00 },
359         { 0x034C, 0x08 },
360         { 0x034D, 0x38 },
361         { 0x034E, 0x06 },
362         { 0x034F, 0x18 },
363         { 0x0350, 0x01 },
364         { 0x0202, 0x06 },
365         { 0x0203, 0x2E },
366         { 0x0204, 0x00 },
367         { 0x0205, 0x00 },
368         { 0x020E, 0x01 },
369         { 0x020F, 0x00 },
370         { 0x0210, 0x01 },
371         { 0x0211, 0x00 },
372         { 0x0212, 0x01 },
373         { 0x0213, 0x00 },
374         { 0x0214, 0x01 },
375         { 0x0215, 0x00 },
376         { 0x7BCD, 0x01 },
377         { 0x94DC, 0x20 },
378         { 0x94DD, 0x20 },
379         { 0x94DE, 0x20 },
380         { 0x95DC, 0x20 },
381         { 0x95DD, 0x20 },
382         { 0x95DE, 0x20 },
383         { 0x7FB0, 0x00 },
384         { 0x9010, 0x3E },
385         { 0x9419, 0x50 },
386         { 0x941B, 0x50 },
387         { 0x9519, 0x50 },
388         { 0x951B, 0x50 },
389         { 0x3030, 0x00 },
390         { 0x3032, 0x00 },
391         { 0x0220, 0x00 },
392 };
393
394 static const struct imx258_reg mode_1048_780_regs[] = {
395         { 0x0136, 0x13 },
396         { 0x0137, 0x33 },
397         { 0x3051, 0x00 },
398         { 0x3052, 0x00 },
399         { 0x4E21, 0x14 },
400         { 0x6B11, 0xCF },
401         { 0x7FF0, 0x08 },
402         { 0x7FF1, 0x0F },
403         { 0x7FF2, 0x08 },
404         { 0x7FF3, 0x1B },
405         { 0x7FF4, 0x23 },
406         { 0x7FF5, 0x60 },
407         { 0x7FF6, 0x00 },
408         { 0x7FF7, 0x01 },
409         { 0x7FF8, 0x00 },
410         { 0x7FF9, 0x78 },
411         { 0x7FFA, 0x00 },
412         { 0x7FFB, 0x00 },
413         { 0x7FFC, 0x00 },
414         { 0x7FFD, 0x00 },
415         { 0x7FFE, 0x00 },
416         { 0x7FFF, 0x03 },
417         { 0x7F76, 0x03 },
418         { 0x7F77, 0xFE },
419         { 0x7FA8, 0x03 },
420         { 0x7FA9, 0xFE },
421         { 0x7B24, 0x81 },
422         { 0x7B25, 0x00 },
423         { 0x6564, 0x07 },
424         { 0x6B0D, 0x41 },
425         { 0x653D, 0x04 },
426         { 0x6B05, 0x8C },
427         { 0x6B06, 0xF9 },
428         { 0x6B08, 0x65 },
429         { 0x6B09, 0xFC },
430         { 0x6B0A, 0xCF },
431         { 0x6B0B, 0xD2 },
432         { 0x6700, 0x0E },
433         { 0x6707, 0x0E },
434         { 0x9104, 0x00 },
435         { 0x4648, 0x7F },
436         { 0x7420, 0x00 },
437         { 0x7421, 0x1C },
438         { 0x7422, 0x00 },
439         { 0x7423, 0xD7 },
440         { 0x5F04, 0x00 },
441         { 0x5F05, 0xED },
442         { 0x0112, 0x0A },
443         { 0x0113, 0x0A },
444         { 0x0114, 0x03 },
445         { 0x0342, 0x14 },
446         { 0x0343, 0xE8 },
447         { 0x0340, 0x03 },
448         { 0x0341, 0x4C },
449         { 0x0344, 0x00 },
450         { 0x0345, 0x00 },
451         { 0x0346, 0x00 },
452         { 0x0347, 0x00 },
453         { 0x0348, 0x10 },
454         { 0x0349, 0x6F },
455         { 0x034A, 0x0C },
456         { 0x034B, 0x2E },
457         { 0x0381, 0x01 },
458         { 0x0383, 0x01 },
459         { 0x0385, 0x01 },
460         { 0x0387, 0x01 },
461         { 0x0900, 0x01 },
462         { 0x0901, 0x14 },
463         { 0x0401, 0x01 },
464         { 0x0404, 0x00 },
465         { 0x0405, 0x40 },
466         { 0x0408, 0x00 },
467         { 0x0409, 0x06 },
468         { 0x040A, 0x00 },
469         { 0x040B, 0x00 },
470         { 0x040C, 0x10 },
471         { 0x040D, 0x64 },
472         { 0x040E, 0x03 },
473         { 0x040F, 0x0C },
474         { 0x3038, 0x00 },
475         { 0x303A, 0x00 },
476         { 0x303B, 0x10 },
477         { 0x300D, 0x00 },
478         { 0x034C, 0x04 },
479         { 0x034D, 0x18 },
480         { 0x034E, 0x03 },
481         { 0x034F, 0x0C },
482         { 0x0350, 0x01 },
483         { 0x0202, 0x03 },
484         { 0x0203, 0x42 },
485         { 0x0204, 0x00 },
486         { 0x0205, 0x00 },
487         { 0x020E, 0x01 },
488         { 0x020F, 0x00 },
489         { 0x0210, 0x01 },
490         { 0x0211, 0x00 },
491         { 0x0212, 0x01 },
492         { 0x0213, 0x00 },
493         { 0x0214, 0x01 },
494         { 0x0215, 0x00 },
495         { 0x7BCD, 0x00 },
496         { 0x94DC, 0x20 },
497         { 0x94DD, 0x20 },
498         { 0x94DE, 0x20 },
499         { 0x95DC, 0x20 },
500         { 0x95DD, 0x20 },
501         { 0x95DE, 0x20 },
502         { 0x7FB0, 0x00 },
503         { 0x9010, 0x3E },
504         { 0x9419, 0x50 },
505         { 0x941B, 0x50 },
506         { 0x9519, 0x50 },
507         { 0x951B, 0x50 },
508         { 0x3030, 0x00 },
509         { 0x3032, 0x00 },
510         { 0x0220, 0x00 },
511 };
512
513 static const char * const imx258_test_pattern_menu[] = {
514         "Disabled",
515         "Solid Colour",
516         "Eight Vertical Colour Bars",
517         "Colour Bars With Fade to Grey",
518         "Pseudorandom Sequence (PN9)",
519 };
520
521 /* Configurations for supported link frequencies */
522 #define IMX258_LINK_FREQ_634MHZ 633600000ULL
523 #define IMX258_LINK_FREQ_320MHZ 320000000ULL
524
525 enum {
526         IMX258_LINK_FREQ_1267MBPS,
527         IMX258_LINK_FREQ_640MBPS,
528 };
529
530 /*
531  * pixel_rate = link_freq * data-rate * nr_of_lanes / bits_per_sample
532  * data rate => double data rate; number of lanes => 4; bits per pixel => 10
533  */
534 static u64 link_freq_to_pixel_rate(u64 f)
535 {
536         f *= 2 * 4;
537         do_div(f, 10);
538
539         return f;
540 }
541
542 /* Menu items for LINK_FREQ V4L2 control */
543 static const s64 link_freq_menu_items[] = {
544         IMX258_LINK_FREQ_634MHZ,
545         IMX258_LINK_FREQ_320MHZ,
546 };
547
548 /* Link frequency configs */
549 static const struct imx258_link_freq_config link_freq_configs[] = {
550         [IMX258_LINK_FREQ_1267MBPS] = {
551                 .pixels_per_line = IMX258_PPL_DEFAULT,
552                 .reg_list = {
553                         .num_of_regs = ARRAY_SIZE(mipi_data_rate_1267mbps),
554                         .regs = mipi_data_rate_1267mbps,
555                 }
556         },
557         [IMX258_LINK_FREQ_640MBPS] = {
558                 .pixels_per_line = IMX258_PPL_DEFAULT,
559                 .reg_list = {
560                         .num_of_regs = ARRAY_SIZE(mipi_data_rate_640mbps),
561                         .regs = mipi_data_rate_640mbps,
562                 }
563         },
564 };
565
566 /* Mode configs */
567 static const struct imx258_mode supported_modes[] = {
568         {
569                 .width = 4208,
570                 .height = 3118,
571                 .vts_def = IMX258_VTS_30FPS,
572                 .vts_min = IMX258_VTS_30FPS,
573                 .reg_list = {
574                         .num_of_regs = ARRAY_SIZE(mode_4208x3118_regs),
575                         .regs = mode_4208x3118_regs,
576                 },
577                 .link_freq_index = IMX258_LINK_FREQ_1267MBPS,
578         },
579         {
580                 .width = 2104,
581                 .height = 1560,
582                 .vts_def = IMX258_VTS_30FPS_2K,
583                 .vts_min = IMX258_VTS_30FPS_2K,
584                 .reg_list = {
585                         .num_of_regs = ARRAY_SIZE(mode_2104_1560_regs),
586                         .regs = mode_2104_1560_regs,
587                 },
588                 .link_freq_index = IMX258_LINK_FREQ_640MBPS,
589         },
590         {
591                 .width = 1048,
592                 .height = 780,
593                 .vts_def = IMX258_VTS_30FPS_VGA,
594                 .vts_min = IMX258_VTS_30FPS_VGA,
595                 .reg_list = {
596                         .num_of_regs = ARRAY_SIZE(mode_1048_780_regs),
597                         .regs = mode_1048_780_regs,
598                 },
599                 .link_freq_index = IMX258_LINK_FREQ_640MBPS,
600         },
601 };
602
603 struct imx258 {
604         struct v4l2_subdev sd;
605         struct media_pad pad;
606
607         struct v4l2_ctrl_handler ctrl_handler;
608         /* V4L2 Controls */
609         struct v4l2_ctrl *link_freq;
610         struct v4l2_ctrl *pixel_rate;
611         struct v4l2_ctrl *vblank;
612         struct v4l2_ctrl *hblank;
613         struct v4l2_ctrl *exposure;
614
615         /* Current mode */
616         const struct imx258_mode *cur_mode;
617
618         /*
619          * Mutex for serialized access:
620          * Protect sensor module set pad format and start/stop streaming safely.
621          */
622         struct mutex mutex;
623
624         /* Streaming on/off */
625         bool streaming;
626
627         struct clk *clk;
628 };
629
630 static inline struct imx258 *to_imx258(struct v4l2_subdev *_sd)
631 {
632         return container_of(_sd, struct imx258, sd);
633 }
634
635 /* Read registers up to 2 at a time */
636 static int imx258_read_reg(struct imx258 *imx258, u16 reg, u32 len, u32 *val)
637 {
638         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
639         struct i2c_msg msgs[2];
640         u8 addr_buf[2] = { reg >> 8, reg & 0xff };
641         u8 data_buf[4] = { 0, };
642         int ret;
643
644         if (len > 4)
645                 return -EINVAL;
646
647         /* Write register address */
648         msgs[0].addr = client->addr;
649         msgs[0].flags = 0;
650         msgs[0].len = ARRAY_SIZE(addr_buf);
651         msgs[0].buf = addr_buf;
652
653         /* Read data from register */
654         msgs[1].addr = client->addr;
655         msgs[1].flags = I2C_M_RD;
656         msgs[1].len = len;
657         msgs[1].buf = &data_buf[4 - len];
658
659         ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
660         if (ret != ARRAY_SIZE(msgs))
661                 return -EIO;
662
663         *val = get_unaligned_be32(data_buf);
664
665         return 0;
666 }
667
668 /* Write registers up to 2 at a time */
669 static int imx258_write_reg(struct imx258 *imx258, u16 reg, u32 len, u32 val)
670 {
671         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
672         u8 buf[6];
673
674         if (len > 4)
675                 return -EINVAL;
676
677         put_unaligned_be16(reg, buf);
678         put_unaligned_be32(val << (8 * (4 - len)), buf + 2);
679         if (i2c_master_send(client, buf, len + 2) != len + 2)
680                 return -EIO;
681
682         return 0;
683 }
684
685 /* Write a list of registers */
686 static int imx258_write_regs(struct imx258 *imx258,
687                              const struct imx258_reg *regs, u32 len)
688 {
689         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
690         unsigned int i;
691         int ret;
692
693         for (i = 0; i < len; i++) {
694                 ret = imx258_write_reg(imx258, regs[i].address, 1,
695                                         regs[i].val);
696                 if (ret) {
697                         dev_err_ratelimited(
698                                 &client->dev,
699                                 "Failed to write reg 0x%4.4x. error = %d\n",
700                                 regs[i].address, ret);
701
702                         return ret;
703                 }
704         }
705
706         return 0;
707 }
708
709 /* Open sub-device */
710 static int imx258_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
711 {
712         struct v4l2_mbus_framefmt *try_fmt =
713                 v4l2_subdev_get_try_format(sd, fh->pad, 0);
714
715         /* Initialize try_fmt */
716         try_fmt->width = supported_modes[0].width;
717         try_fmt->height = supported_modes[0].height;
718         try_fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10;
719         try_fmt->field = V4L2_FIELD_NONE;
720
721         return 0;
722 }
723
724 static int imx258_update_digital_gain(struct imx258 *imx258, u32 len, u32 val)
725 {
726         int ret;
727
728         ret = imx258_write_reg(imx258, IMX258_REG_GR_DIGITAL_GAIN,
729                                 IMX258_REG_VALUE_16BIT,
730                                 val);
731         if (ret)
732                 return ret;
733         ret = imx258_write_reg(imx258, IMX258_REG_GB_DIGITAL_GAIN,
734                                 IMX258_REG_VALUE_16BIT,
735                                 val);
736         if (ret)
737                 return ret;
738         ret = imx258_write_reg(imx258, IMX258_REG_R_DIGITAL_GAIN,
739                                 IMX258_REG_VALUE_16BIT,
740                                 val);
741         if (ret)
742                 return ret;
743         ret = imx258_write_reg(imx258, IMX258_REG_B_DIGITAL_GAIN,
744                                 IMX258_REG_VALUE_16BIT,
745                                 val);
746         if (ret)
747                 return ret;
748         return 0;
749 }
750
751 static int imx258_set_ctrl(struct v4l2_ctrl *ctrl)
752 {
753         struct imx258 *imx258 =
754                 container_of(ctrl->handler, struct imx258, ctrl_handler);
755         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
756         int ret = 0;
757
758         /*
759          * Applying V4L2 control value only happens
760          * when power is up for streaming
761          */
762         if (pm_runtime_get_if_in_use(&client->dev) == 0)
763                 return 0;
764
765         switch (ctrl->id) {
766         case V4L2_CID_ANALOGUE_GAIN:
767                 ret = imx258_write_reg(imx258, IMX258_REG_ANALOG_GAIN,
768                                 IMX258_REG_VALUE_16BIT,
769                                 ctrl->val);
770                 break;
771         case V4L2_CID_EXPOSURE:
772                 ret = imx258_write_reg(imx258, IMX258_REG_EXPOSURE,
773                                 IMX258_REG_VALUE_16BIT,
774                                 ctrl->val);
775                 break;
776         case V4L2_CID_DIGITAL_GAIN:
777                 ret = imx258_update_digital_gain(imx258, IMX258_REG_VALUE_16BIT,
778                                 ctrl->val);
779                 break;
780         case V4L2_CID_TEST_PATTERN:
781                 ret = imx258_write_reg(imx258, IMX258_REG_TEST_PATTERN,
782                                 IMX258_REG_VALUE_16BIT,
783                                 ctrl->val);
784                 ret = imx258_write_reg(imx258, REG_MIRROR_FLIP_CONTROL,
785                                 IMX258_REG_VALUE_08BIT,
786                                 !ctrl->val ? REG_CONFIG_MIRROR_FLIP :
787                                 REG_CONFIG_FLIP_TEST_PATTERN);
788                 break;
789         case V4L2_CID_WIDE_DYNAMIC_RANGE:
790                 if (!ctrl->val) {
791                         ret = imx258_write_reg(imx258, IMX258_REG_HDR,
792                                                IMX258_REG_VALUE_08BIT,
793                                                IMX258_HDR_RATIO_MIN);
794                 } else {
795                         ret = imx258_write_reg(imx258, IMX258_REG_HDR,
796                                                IMX258_REG_VALUE_08BIT,
797                                                IMX258_HDR_ON);
798                         if (ret)
799                                 break;
800                         ret = imx258_write_reg(imx258, IMX258_REG_HDR_RATIO,
801                                                IMX258_REG_VALUE_08BIT,
802                                                BIT(IMX258_HDR_RATIO_MAX));
803                 }
804                 break;
805         default:
806                 dev_info(&client->dev,
807                          "ctrl(id:0x%x,val:0x%x) is not handled\n",
808                          ctrl->id, ctrl->val);
809                 ret = -EINVAL;
810                 break;
811         }
812
813         pm_runtime_put(&client->dev);
814
815         return ret;
816 }
817
818 static const struct v4l2_ctrl_ops imx258_ctrl_ops = {
819         .s_ctrl = imx258_set_ctrl,
820 };
821
822 static int imx258_enum_mbus_code(struct v4l2_subdev *sd,
823                                   struct v4l2_subdev_pad_config *cfg,
824                                   struct v4l2_subdev_mbus_code_enum *code)
825 {
826         /* Only one bayer order(GRBG) is supported */
827         if (code->index > 0)
828                 return -EINVAL;
829
830         code->code = MEDIA_BUS_FMT_SGRBG10_1X10;
831
832         return 0;
833 }
834
835 static int imx258_enum_frame_size(struct v4l2_subdev *sd,
836                                   struct v4l2_subdev_pad_config *cfg,
837                                   struct v4l2_subdev_frame_size_enum *fse)
838 {
839         if (fse->index >= ARRAY_SIZE(supported_modes))
840                 return -EINVAL;
841
842         if (fse->code != MEDIA_BUS_FMT_SGRBG10_1X10)
843                 return -EINVAL;
844
845         fse->min_width = supported_modes[fse->index].width;
846         fse->max_width = fse->min_width;
847         fse->min_height = supported_modes[fse->index].height;
848         fse->max_height = fse->min_height;
849
850         return 0;
851 }
852
853 static void imx258_update_pad_format(const struct imx258_mode *mode,
854                                      struct v4l2_subdev_format *fmt)
855 {
856         fmt->format.width = mode->width;
857         fmt->format.height = mode->height;
858         fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10;
859         fmt->format.field = V4L2_FIELD_NONE;
860 }
861
862 static int __imx258_get_pad_format(struct imx258 *imx258,
863                                    struct v4l2_subdev_pad_config *cfg,
864                                    struct v4l2_subdev_format *fmt)
865 {
866         if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
867                 fmt->format = *v4l2_subdev_get_try_format(&imx258->sd, cfg,
868                                                           fmt->pad);
869         else
870                 imx258_update_pad_format(imx258->cur_mode, fmt);
871
872         return 0;
873 }
874
875 static int imx258_get_pad_format(struct v4l2_subdev *sd,
876                                  struct v4l2_subdev_pad_config *cfg,
877                                  struct v4l2_subdev_format *fmt)
878 {
879         struct imx258 *imx258 = to_imx258(sd);
880         int ret;
881
882         mutex_lock(&imx258->mutex);
883         ret = __imx258_get_pad_format(imx258, cfg, fmt);
884         mutex_unlock(&imx258->mutex);
885
886         return ret;
887 }
888
889 static int imx258_set_pad_format(struct v4l2_subdev *sd,
890                                  struct v4l2_subdev_pad_config *cfg,
891                                  struct v4l2_subdev_format *fmt)
892 {
893         struct imx258 *imx258 = to_imx258(sd);
894         const struct imx258_mode *mode;
895         struct v4l2_mbus_framefmt *framefmt;
896         s32 vblank_def;
897         s32 vblank_min;
898         s64 h_blank;
899         s64 pixel_rate;
900         s64 link_freq;
901
902         mutex_lock(&imx258->mutex);
903
904         /* Only one raw bayer(GBRG) order is supported */
905         fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10;
906
907         mode = v4l2_find_nearest_size(supported_modes,
908                 ARRAY_SIZE(supported_modes), width, height,
909                 fmt->format.width, fmt->format.height);
910         imx258_update_pad_format(mode, fmt);
911         if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
912                 framefmt = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
913                 *framefmt = fmt->format;
914         } else {
915                 imx258->cur_mode = mode;
916                 __v4l2_ctrl_s_ctrl(imx258->link_freq, mode->link_freq_index);
917
918                 link_freq = link_freq_menu_items[mode->link_freq_index];
919                 pixel_rate = link_freq_to_pixel_rate(link_freq);
920                 __v4l2_ctrl_s_ctrl_int64(imx258->pixel_rate, pixel_rate);
921                 /* Update limits and set FPS to default */
922                 vblank_def = imx258->cur_mode->vts_def -
923                              imx258->cur_mode->height;
924                 vblank_min = imx258->cur_mode->vts_min -
925                              imx258->cur_mode->height;
926                 __v4l2_ctrl_modify_range(
927                         imx258->vblank, vblank_min,
928                         IMX258_VTS_MAX - imx258->cur_mode->height, 1,
929                         vblank_def);
930                 __v4l2_ctrl_s_ctrl(imx258->vblank, vblank_def);
931                 h_blank =
932                         link_freq_configs[mode->link_freq_index].pixels_per_line
933                          - imx258->cur_mode->width;
934                 __v4l2_ctrl_modify_range(imx258->hblank, h_blank,
935                                          h_blank, 1, h_blank);
936         }
937
938         mutex_unlock(&imx258->mutex);
939
940         return 0;
941 }
942
943 /* Start streaming */
944 static int imx258_start_streaming(struct imx258 *imx258)
945 {
946         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
947         const struct imx258_reg_list *reg_list;
948         int ret, link_freq_index;
949
950         /* Setup PLL */
951         link_freq_index = imx258->cur_mode->link_freq_index;
952         reg_list = &link_freq_configs[link_freq_index].reg_list;
953         ret = imx258_write_regs(imx258, reg_list->regs, reg_list->num_of_regs);
954         if (ret) {
955                 dev_err(&client->dev, "%s failed to set plls\n", __func__);
956                 return ret;
957         }
958
959         /* Apply default values of current mode */
960         reg_list = &imx258->cur_mode->reg_list;
961         ret = imx258_write_regs(imx258, reg_list->regs, reg_list->num_of_regs);
962         if (ret) {
963                 dev_err(&client->dev, "%s failed to set mode\n", __func__);
964                 return ret;
965         }
966
967         /* Set Orientation be 180 degree */
968         ret = imx258_write_reg(imx258, REG_MIRROR_FLIP_CONTROL,
969                                IMX258_REG_VALUE_08BIT, REG_CONFIG_MIRROR_FLIP);
970         if (ret) {
971                 dev_err(&client->dev, "%s failed to set orientation\n",
972                         __func__);
973                 return ret;
974         }
975
976         /* Apply customized values from user */
977         ret =  __v4l2_ctrl_handler_setup(imx258->sd.ctrl_handler);
978         if (ret)
979                 return ret;
980
981         /* set stream on register */
982         return imx258_write_reg(imx258, IMX258_REG_MODE_SELECT,
983                                 IMX258_REG_VALUE_08BIT,
984                                 IMX258_MODE_STREAMING);
985 }
986
987 /* Stop streaming */
988 static int imx258_stop_streaming(struct imx258 *imx258)
989 {
990         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
991         int ret;
992
993         /* set stream off register */
994         ret = imx258_write_reg(imx258, IMX258_REG_MODE_SELECT,
995                 IMX258_REG_VALUE_08BIT, IMX258_MODE_STANDBY);
996         if (ret)
997                 dev_err(&client->dev, "%s failed to set stream\n", __func__);
998
999         /*
1000          * Return success even if it was an error, as there is nothing the
1001          * caller can do about it.
1002          */
1003         return 0;
1004 }
1005
1006 static int imx258_power_on(struct device *dev)
1007 {
1008         struct v4l2_subdev *sd = dev_get_drvdata(dev);
1009         struct imx258 *imx258 = to_imx258(sd);
1010         int ret;
1011
1012         ret = clk_prepare_enable(imx258->clk);
1013         if (ret)
1014                 dev_err(dev, "failed to enable clock\n");
1015
1016         return ret;
1017 }
1018
1019 static int imx258_power_off(struct device *dev)
1020 {
1021         struct v4l2_subdev *sd = dev_get_drvdata(dev);
1022         struct imx258 *imx258 = to_imx258(sd);
1023
1024         clk_disable_unprepare(imx258->clk);
1025
1026         return 0;
1027 }
1028
1029 static int imx258_set_stream(struct v4l2_subdev *sd, int enable)
1030 {
1031         struct imx258 *imx258 = to_imx258(sd);
1032         struct i2c_client *client = v4l2_get_subdevdata(sd);
1033         int ret = 0;
1034
1035         mutex_lock(&imx258->mutex);
1036         if (imx258->streaming == enable) {
1037                 mutex_unlock(&imx258->mutex);
1038                 return 0;
1039         }
1040
1041         if (enable) {
1042                 ret = pm_runtime_get_sync(&client->dev);
1043                 if (ret < 0) {
1044                         pm_runtime_put_noidle(&client->dev);
1045                         goto err_unlock;
1046                 }
1047
1048                 /*
1049                  * Apply default & customized values
1050                  * and then start streaming.
1051                  */
1052                 ret = imx258_start_streaming(imx258);
1053                 if (ret)
1054                         goto err_rpm_put;
1055         } else {
1056                 imx258_stop_streaming(imx258);
1057                 pm_runtime_put(&client->dev);
1058         }
1059
1060         imx258->streaming = enable;
1061         mutex_unlock(&imx258->mutex);
1062
1063         return ret;
1064
1065 err_rpm_put:
1066         pm_runtime_put(&client->dev);
1067 err_unlock:
1068         mutex_unlock(&imx258->mutex);
1069
1070         return ret;
1071 }
1072
1073 static int __maybe_unused imx258_suspend(struct device *dev)
1074 {
1075         struct v4l2_subdev *sd = dev_get_drvdata(dev);
1076         struct imx258 *imx258 = to_imx258(sd);
1077
1078         if (imx258->streaming)
1079                 imx258_stop_streaming(imx258);
1080
1081         return 0;
1082 }
1083
1084 static int __maybe_unused imx258_resume(struct device *dev)
1085 {
1086         struct v4l2_subdev *sd = dev_get_drvdata(dev);
1087         struct imx258 *imx258 = to_imx258(sd);
1088         int ret;
1089
1090         if (imx258->streaming) {
1091                 ret = imx258_start_streaming(imx258);
1092                 if (ret)
1093                         goto error;
1094         }
1095
1096         return 0;
1097
1098 error:
1099         imx258_stop_streaming(imx258);
1100         imx258->streaming = 0;
1101         return ret;
1102 }
1103
1104 /* Verify chip ID */
1105 static int imx258_identify_module(struct imx258 *imx258)
1106 {
1107         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
1108         int ret;
1109         u32 val;
1110
1111         ret = imx258_read_reg(imx258, IMX258_REG_CHIP_ID,
1112                               IMX258_REG_VALUE_16BIT, &val);
1113         if (ret) {
1114                 dev_err(&client->dev, "failed to read chip id %x\n",
1115                         IMX258_CHIP_ID);
1116                 return ret;
1117         }
1118
1119         if (val != IMX258_CHIP_ID) {
1120                 dev_err(&client->dev, "chip id mismatch: %x!=%x\n",
1121                         IMX258_CHIP_ID, val);
1122                 return -EIO;
1123         }
1124
1125         return 0;
1126 }
1127
1128 static const struct v4l2_subdev_video_ops imx258_video_ops = {
1129         .s_stream = imx258_set_stream,
1130 };
1131
1132 static const struct v4l2_subdev_pad_ops imx258_pad_ops = {
1133         .enum_mbus_code = imx258_enum_mbus_code,
1134         .get_fmt = imx258_get_pad_format,
1135         .set_fmt = imx258_set_pad_format,
1136         .enum_frame_size = imx258_enum_frame_size,
1137 };
1138
1139 static const struct v4l2_subdev_ops imx258_subdev_ops = {
1140         .video = &imx258_video_ops,
1141         .pad = &imx258_pad_ops,
1142 };
1143
1144 static const struct v4l2_subdev_internal_ops imx258_internal_ops = {
1145         .open = imx258_open,
1146 };
1147
1148 /* Initialize control handlers */
1149 static int imx258_init_controls(struct imx258 *imx258)
1150 {
1151         struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd);
1152         struct v4l2_ctrl_handler *ctrl_hdlr;
1153         s64 vblank_def;
1154         s64 vblank_min;
1155         s64 pixel_rate_min;
1156         s64 pixel_rate_max;
1157         int ret;
1158
1159         ctrl_hdlr = &imx258->ctrl_handler;
1160         ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
1161         if (ret)
1162                 return ret;
1163
1164         mutex_init(&imx258->mutex);
1165         ctrl_hdlr->lock = &imx258->mutex;
1166         imx258->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr,
1167                                 &imx258_ctrl_ops,
1168                                 V4L2_CID_LINK_FREQ,
1169                                 ARRAY_SIZE(link_freq_menu_items) - 1,
1170                                 0,
1171                                 link_freq_menu_items);
1172
1173         if (imx258->link_freq)
1174                 imx258->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY;
1175
1176         pixel_rate_max = link_freq_to_pixel_rate(link_freq_menu_items[0]);
1177         pixel_rate_min = link_freq_to_pixel_rate(link_freq_menu_items[1]);
1178         /* By default, PIXEL_RATE is read only */
1179         imx258->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops,
1180                                 V4L2_CID_PIXEL_RATE,
1181                                 pixel_rate_min, pixel_rate_max,
1182                                 1, pixel_rate_max);
1183
1184
1185         vblank_def = imx258->cur_mode->vts_def - imx258->cur_mode->height;
1186         vblank_min = imx258->cur_mode->vts_min - imx258->cur_mode->height;
1187         imx258->vblank = v4l2_ctrl_new_std(
1188                                 ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_VBLANK,
1189                                 vblank_min,
1190                                 IMX258_VTS_MAX - imx258->cur_mode->height, 1,
1191                                 vblank_def);
1192
1193         if (imx258->vblank)
1194                 imx258->vblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
1195
1196         imx258->hblank = v4l2_ctrl_new_std(
1197                                 ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_HBLANK,
1198                                 IMX258_PPL_DEFAULT - imx258->cur_mode->width,
1199                                 IMX258_PPL_DEFAULT - imx258->cur_mode->width,
1200                                 1,
1201                                 IMX258_PPL_DEFAULT - imx258->cur_mode->width);
1202
1203         if (imx258->hblank)
1204                 imx258->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
1205
1206         imx258->exposure = v4l2_ctrl_new_std(
1207                                 ctrl_hdlr, &imx258_ctrl_ops,
1208                                 V4L2_CID_EXPOSURE, IMX258_EXPOSURE_MIN,
1209                                 IMX258_EXPOSURE_MAX, IMX258_EXPOSURE_STEP,
1210                                 IMX258_EXPOSURE_DEFAULT);
1211
1212         v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1213                                 IMX258_ANA_GAIN_MIN, IMX258_ANA_GAIN_MAX,
1214                                 IMX258_ANA_GAIN_STEP, IMX258_ANA_GAIN_DEFAULT);
1215
1216         v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1217                                 IMX258_DGTL_GAIN_MIN, IMX258_DGTL_GAIN_MAX,
1218                                 IMX258_DGTL_GAIN_STEP,
1219                                 IMX258_DGTL_GAIN_DEFAULT);
1220
1221         v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_WIDE_DYNAMIC_RANGE,
1222                                 0, 1, 1, IMX258_HDR_RATIO_DEFAULT);
1223
1224         v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx258_ctrl_ops,
1225                                 V4L2_CID_TEST_PATTERN,
1226                                 ARRAY_SIZE(imx258_test_pattern_menu) - 1,
1227                                 0, 0, imx258_test_pattern_menu);
1228
1229         if (ctrl_hdlr->error) {
1230                 ret = ctrl_hdlr->error;
1231                 dev_err(&client->dev, "%s control init failed (%d)\n",
1232                                 __func__, ret);
1233                 goto error;
1234         }
1235
1236         imx258->sd.ctrl_handler = ctrl_hdlr;
1237
1238         return 0;
1239
1240 error:
1241         v4l2_ctrl_handler_free(ctrl_hdlr);
1242         mutex_destroy(&imx258->mutex);
1243
1244         return ret;
1245 }
1246
1247 static void imx258_free_controls(struct imx258 *imx258)
1248 {
1249         v4l2_ctrl_handler_free(imx258->sd.ctrl_handler);
1250         mutex_destroy(&imx258->mutex);
1251 }
1252
1253 static int imx258_probe(struct i2c_client *client)
1254 {
1255         struct imx258 *imx258;
1256         int ret;
1257         u32 val = 0;
1258
1259         imx258 = devm_kzalloc(&client->dev, sizeof(*imx258), GFP_KERNEL);
1260         if (!imx258)
1261                 return -ENOMEM;
1262
1263         imx258->clk = devm_clk_get_optional(&client->dev, NULL);
1264         if (!imx258->clk) {
1265                 dev_dbg(&client->dev,
1266                         "no clock provided, using clock-frequency property\n");
1267
1268                 device_property_read_u32(&client->dev, "clock-frequency", &val);
1269                 if (val != IMX258_INPUT_CLOCK_FREQ)
1270                         return -EINVAL;
1271         } else if (IS_ERR(imx258->clk)) {
1272                 return dev_err_probe(&client->dev, PTR_ERR(imx258->clk),
1273                                      "error getting clock\n");
1274         }
1275         if (clk_get_rate(imx258->clk) != IMX258_INPUT_CLOCK_FREQ) {
1276                 dev_err(&client->dev, "input clock frequency not supported\n");
1277                 return -EINVAL;
1278         }
1279
1280         /*
1281          * Check that the device is mounted upside down. The driver only
1282          * supports a single pixel order right now.
1283          */
1284         ret = device_property_read_u32(&client->dev, "rotation", &val);
1285         if (ret || val != 180)
1286                 return -EINVAL;
1287
1288         /* Initialize subdev */
1289         v4l2_i2c_subdev_init(&imx258->sd, client, &imx258_subdev_ops);
1290
1291         /* Will be powered off via pm_runtime_idle */
1292         ret = imx258_power_on(&client->dev);
1293         if (ret)
1294                 return ret;
1295
1296         /* Check module identity */
1297         ret = imx258_identify_module(imx258);
1298         if (ret)
1299                 goto error_identify;
1300
1301         /* Set default mode to max resolution */
1302         imx258->cur_mode = &supported_modes[0];
1303
1304         ret = imx258_init_controls(imx258);
1305         if (ret)
1306                 goto error_identify;
1307
1308         /* Initialize subdev */
1309         imx258->sd.internal_ops = &imx258_internal_ops;
1310         imx258->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1311         imx258->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
1312
1313         /* Initialize source pad */
1314         imx258->pad.flags = MEDIA_PAD_FL_SOURCE;
1315
1316         ret = media_entity_pads_init(&imx258->sd.entity, 1, &imx258->pad);
1317         if (ret)
1318                 goto error_handler_free;
1319
1320         ret = v4l2_async_register_subdev_sensor(&imx258->sd);
1321         if (ret < 0)
1322                 goto error_media_entity;
1323
1324         pm_runtime_set_active(&client->dev);
1325         pm_runtime_enable(&client->dev);
1326         pm_runtime_idle(&client->dev);
1327
1328         return 0;
1329
1330 error_media_entity:
1331         media_entity_cleanup(&imx258->sd.entity);
1332
1333 error_handler_free:
1334         imx258_free_controls(imx258);
1335
1336 error_identify:
1337         imx258_power_off(&client->dev);
1338
1339         return ret;
1340 }
1341
1342 static int imx258_remove(struct i2c_client *client)
1343 {
1344         struct v4l2_subdev *sd = i2c_get_clientdata(client);
1345         struct imx258 *imx258 = to_imx258(sd);
1346
1347         v4l2_async_unregister_subdev(sd);
1348         media_entity_cleanup(&sd->entity);
1349         imx258_free_controls(imx258);
1350
1351         pm_runtime_disable(&client->dev);
1352         if (!pm_runtime_status_suspended(&client->dev))
1353                 imx258_power_off(&client->dev);
1354         pm_runtime_set_suspended(&client->dev);
1355
1356         return 0;
1357 }
1358
1359 static const struct dev_pm_ops imx258_pm_ops = {
1360         SET_SYSTEM_SLEEP_PM_OPS(imx258_suspend, imx258_resume)
1361         SET_RUNTIME_PM_OPS(imx258_power_off, imx258_power_on, NULL)
1362 };
1363
1364 #ifdef CONFIG_ACPI
1365 static const struct acpi_device_id imx258_acpi_ids[] = {
1366         { "SONY258A" },
1367         { /* sentinel */ }
1368 };
1369
1370 MODULE_DEVICE_TABLE(acpi, imx258_acpi_ids);
1371 #endif
1372
1373 static const struct of_device_id imx258_dt_ids[] = {
1374         { .compatible = "sony,imx258" },
1375         { /* sentinel */ }
1376 };
1377 MODULE_DEVICE_TABLE(of, imx258_dt_ids);
1378
1379 static struct i2c_driver imx258_i2c_driver = {
1380         .driver = {
1381                 .name = "imx258",
1382                 .pm = &imx258_pm_ops,
1383                 .acpi_match_table = ACPI_PTR(imx258_acpi_ids),
1384                 .of_match_table = imx258_dt_ids,
1385         },
1386         .probe_new = imx258_probe,
1387         .remove = imx258_remove,
1388 };
1389
1390 module_i2c_driver(imx258_i2c_driver);
1391
1392 MODULE_AUTHOR("Yeh, Andy <[email protected]>");
1393 MODULE_AUTHOR("Chiang, Alan");
1394 MODULE_AUTHOR("Chen, Jason");
1395 MODULE_DESCRIPTION("Sony IMX258 sensor driver");
1396 MODULE_LICENSE("GPL v2");
This page took 0.116198 seconds and 4 git commands to generate.