]> Git Repo - linux.git/blob - drivers/media/i2c/imx415.c
Linux 6.14-rc3
[linux.git] / drivers / media / i2c / imx415.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Driver for the Sony IMX415 CMOS Image Sensor.
4  *
5  * Copyright (C) 2023 WolfVision GmbH.
6  */
7
8 #include <linux/clk.h>
9 #include <linux/gpio/consumer.h>
10 #include <linux/i2c.h>
11 #include <linux/module.h>
12 #include <linux/of.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/regmap.h>
15 #include <linux/regulator/consumer.h>
16 #include <linux/slab.h>
17 #include <linux/videodev2.h>
18
19 #include <media/v4l2-cci.h>
20 #include <media/v4l2-ctrls.h>
21 #include <media/v4l2-fwnode.h>
22 #include <media/v4l2-subdev.h>
23
24 #define IMX415_PIXEL_ARRAY_TOP    0
25 #define IMX415_PIXEL_ARRAY_LEFT   0
26 #define IMX415_PIXEL_ARRAY_WIDTH  3864
27 #define IMX415_PIXEL_ARRAY_HEIGHT 2192
28 #define IMX415_PIXEL_ARRAY_VBLANK 58
29
30 #define IMX415_NUM_CLK_PARAM_REGS 11
31
32 #define IMX415_MODE               CCI_REG8(0x3000)
33 #define IMX415_MODE_OPERATING     (0)
34 #define IMX415_MODE_STANDBY       BIT(0)
35 #define IMX415_REGHOLD            CCI_REG8(0x3001)
36 #define IMX415_REGHOLD_INVALID    (0)
37 #define IMX415_REGHOLD_VALID      BIT(0)
38 #define IMX415_XMSTA              CCI_REG8(0x3002)
39 #define IMX415_XMSTA_START        (0)
40 #define IMX415_XMSTA_STOP         BIT(0)
41 #define IMX415_BCWAIT_TIME        CCI_REG16_LE(0x3008)
42 #define IMX415_CPWAIT_TIME        CCI_REG16_LE(0x300a)
43 #define IMX415_WINMODE            CCI_REG8(0x301c)
44 #define IMX415_ADDMODE            CCI_REG8(0x3022)
45 #define IMX415_REVERSE            CCI_REG8(0x3030)
46 #define IMX415_HREVERSE_SHIFT     (0)
47 #define IMX415_VREVERSE_SHIFT     BIT(0)
48 #define IMX415_ADBIT              CCI_REG8(0x3031)
49 #define IMX415_MDBIT              CCI_REG8(0x3032)
50 #define IMX415_SYS_MODE           CCI_REG8(0x3033)
51 #define IMX415_OUTSEL             CCI_REG8(0x30c0)
52 #define IMX415_DRV                CCI_REG8(0x30c1)
53 #define IMX415_VMAX               CCI_REG24_LE(0x3024)
54 #define IMX415_HMAX               CCI_REG16_LE(0x3028)
55 #define IMX415_SHR0               CCI_REG24_LE(0x3050)
56 #define IMX415_GAIN_PCG_0         CCI_REG16_LE(0x3090)
57 #define IMX415_AGAIN_MIN          0
58 #define IMX415_AGAIN_MAX          100
59 #define IMX415_AGAIN_STEP         1
60 #define IMX415_BLKLEVEL           CCI_REG16_LE(0x30e2)
61 #define IMX415_BLKLEVEL_DEFAULT   50
62 #define IMX415_TPG_EN_DUOUT       CCI_REG8(0x30e4)
63 #define IMX415_TPG_PATSEL_DUOUT   CCI_REG8(0x30e6)
64 #define IMX415_TPG_COLORWIDTH     CCI_REG8(0x30e8)
65 #define IMX415_TESTCLKEN_MIPI     CCI_REG8(0x3110)
66 #define IMX415_INCKSEL1           CCI_REG8(0x3115)
67 #define IMX415_INCKSEL2           CCI_REG8(0x3116)
68 #define IMX415_INCKSEL3           CCI_REG16_LE(0x3118)
69 #define IMX415_INCKSEL4           CCI_REG16_LE(0x311a)
70 #define IMX415_INCKSEL5           CCI_REG8(0x311e)
71 #define IMX415_DIG_CLP_MODE       CCI_REG8(0x32c8)
72 #define IMX415_WRJ_OPEN           CCI_REG8(0x3390)
73 #define IMX415_SENSOR_INFO        CCI_REG16_LE(0x3f12)
74 #define IMX415_SENSOR_INFO_MASK   0xfff
75 #define IMX415_CHIP_ID            0x514
76 #define IMX415_LANEMODE           CCI_REG16_LE(0x4001)
77 #define IMX415_LANEMODE_2         1
78 #define IMX415_LANEMODE_4         3
79 #define IMX415_TXCLKESC_FREQ      CCI_REG16_LE(0x4004)
80 #define IMX415_INCKSEL6           CCI_REG8(0x400c)
81 #define IMX415_TCLKPOST           CCI_REG16_LE(0x4018)
82 #define IMX415_TCLKPREPARE        CCI_REG16_LE(0x401a)
83 #define IMX415_TCLKTRAIL          CCI_REG16_LE(0x401c)
84 #define IMX415_TCLKZERO           CCI_REG16_LE(0x401e)
85 #define IMX415_THSPREPARE         CCI_REG16_LE(0x4020)
86 #define IMX415_THSZERO            CCI_REG16_LE(0x4022)
87 #define IMX415_THSTRAIL           CCI_REG16_LE(0x4024)
88 #define IMX415_THSEXIT            CCI_REG16_LE(0x4026)
89 #define IMX415_TLPX               CCI_REG16_LE(0x4028)
90 #define IMX415_INCKSEL7           CCI_REG8(0x4074)
91
92 static const char *const imx415_supply_names[] = {
93         "dvdd",
94         "ovdd",
95         "avdd",
96 };
97
98 /*
99  * The IMX415 data sheet uses lane rates but v4l2 uses link frequency to
100  * describe MIPI CSI-2 speed. This driver uses lane rates wherever possible
101  * and converts them to link frequencies by a factor of two when needed.
102  */
103 static const s64 link_freq_menu_items[] = {
104         594000000 / 2,  720000000 / 2,  891000000 / 2,
105         1440000000 / 2, 1485000000 / 2,
106 };
107
108 struct imx415_clk_params {
109         u64 lane_rate;
110         u64 inck;
111         struct cci_reg_sequence regs[IMX415_NUM_CLK_PARAM_REGS];
112 };
113
114 /* INCK Settings - includes all lane rate and INCK dependent registers */
115 static const struct imx415_clk_params imx415_clk_params[] = {
116         {
117                 .lane_rate = 594000000UL,
118                 .inck = 27000000,
119                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
120                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
121                 .regs[2] = { IMX415_SYS_MODE, 0x7 },
122                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
123                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
124                 .regs[5] = { IMX415_INCKSEL3, 0x084 },
125                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
126                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
127                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
128                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
129                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
130         },
131         {
132                 .lane_rate = 594000000UL,
133                 .inck = 37125000,
134                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
135                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
136                 .regs[2] = { IMX415_SYS_MODE, 0x7 },
137                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
138                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
139                 .regs[5] = { IMX415_INCKSEL3, 0x080 },
140                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
141                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
142                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
143                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
144                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0984 },
145         },
146         {
147                 .lane_rate = 594000000UL,
148                 .inck = 74250000,
149                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
150                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
151                 .regs[2] = { IMX415_SYS_MODE, 0x7 },
152                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
153                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
154                 .regs[5] = { IMX415_INCKSEL3, 0x080 },
155                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
156                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
157                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
158                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
159                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
160         },
161         {
162                 .lane_rate = 720000000UL,
163                 .inck = 24000000,
164                 .regs[0] = { IMX415_BCWAIT_TIME, 0x054 },
165                 .regs[1] = { IMX415_CPWAIT_TIME, 0x03B },
166                 .regs[2] = { IMX415_SYS_MODE, 0x9 },
167                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
168                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
169                 .regs[5] = { IMX415_INCKSEL3, 0x0B4 },
170                 .regs[6] = { IMX415_INCKSEL4, 0x0FC },
171                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
172                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
173                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
174                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0600 },
175         },
176         {
177                 .lane_rate = 720000000UL,
178                 .inck = 72000000,
179                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0F8 },
180                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B0 },
181                 .regs[2] = { IMX415_SYS_MODE, 0x9 },
182                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
183                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
184                 .regs[5] = { IMX415_INCKSEL3, 0x0A0 },
185                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
186                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
187                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
188                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
189                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1200 },
190         },
191         {
192                 .lane_rate = 891000000UL,
193                 .inck = 27000000,
194                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
195                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
196                 .regs[2] = { IMX415_SYS_MODE, 0x5 },
197                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
198                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
199                 .regs[5] = { IMX415_INCKSEL3, 0x0C6 },
200                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
201                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
202                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
203                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
204                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
205         },
206         {
207                 .lane_rate = 891000000UL,
208                 .inck = 37125000,
209                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
210                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
211                 .regs[2] = { IMX415_SYS_MODE, 0x5 },
212                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
213                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
214                 .regs[5] = { IMX415_INCKSEL3, 0x0C0 },
215                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
216                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
217                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
218                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
219                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0948 },
220         },
221         {
222                 .lane_rate = 891000000UL,
223                 .inck = 74250000,
224                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
225                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
226                 .regs[2] = { IMX415_SYS_MODE, 0x5 },
227                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
228                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
229                 .regs[5] = { IMX415_INCKSEL3, 0x0C0 },
230                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
231                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
232                 .regs[8] = { IMX415_INCKSEL6, 0x0 },
233                 .regs[9] = { IMX415_INCKSEL7, 0x1 },
234                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
235         },
236         {
237                 .lane_rate = 1440000000UL,
238                 .inck = 24000000,
239                 .regs[0] = { IMX415_BCWAIT_TIME, 0x054 },
240                 .regs[1] = { IMX415_CPWAIT_TIME, 0x03B },
241                 .regs[2] = { IMX415_SYS_MODE, 0x8 },
242                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
243                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
244                 .regs[5] = { IMX415_INCKSEL3, 0x0B4 },
245                 .regs[6] = { IMX415_INCKSEL4, 0x0FC },
246                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
247                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
248                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
249                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0600 },
250         },
251         {
252                 .lane_rate = 1440000000UL,
253                 .inck = 72000000,
254                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0F8 },
255                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B0 },
256                 .regs[2] = { IMX415_SYS_MODE, 0x8 },
257                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
258                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
259                 .regs[5] = { IMX415_INCKSEL3, 0x0A0 },
260                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
261                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
262                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
263                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
264                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1200 },
265         },
266         {
267                 .lane_rate = 1485000000UL,
268                 .inck = 27000000,
269                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
270                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
271                 .regs[2] = { IMX415_SYS_MODE, 0x8 },
272                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
273                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
274                 .regs[5] = { IMX415_INCKSEL3, 0x0A5 },
275                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
276                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
277                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
278                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
279                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
280         },
281         {
282                 .lane_rate = 1485000000UL,
283                 .inck = 37125000,
284                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
285                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
286                 .regs[2] = { IMX415_SYS_MODE, 0x8 },
287                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
288                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
289                 .regs[5] = { IMX415_INCKSEL3, 0x0A0 },
290                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
291                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
292                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
293                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
294                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0948 },
295         },
296         {
297                 .lane_rate = 1485000000UL,
298                 .inck = 74250000,
299                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
300                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
301                 .regs[2] = { IMX415_SYS_MODE, 0x8 },
302                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
303                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
304                 .regs[5] = { IMX415_INCKSEL3, 0x0A0 },
305                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
306                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
307                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
308                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
309                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
310         },
311         {
312                 .lane_rate = 1782000000UL,
313                 .inck = 27000000,
314                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
315                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
316                 .regs[2] = { IMX415_SYS_MODE, 0x4 },
317                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
318                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
319                 .regs[5] = { IMX415_INCKSEL3, 0x0C6 },
320                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
321                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
322                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
323                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
324                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
325         },
326         {
327                 .lane_rate = 1782000000UL,
328                 .inck = 37125000,
329                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
330                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
331                 .regs[2] = { IMX415_SYS_MODE, 0x4 },
332                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
333                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
334                 .regs[5] = { IMX415_INCKSEL3, 0x0C0 },
335                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
336                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
337                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
338                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
339                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0948 },
340         },
341         {
342                 .lane_rate = 1782000000UL,
343                 .inck = 74250000,
344                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
345                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
346                 .regs[2] = { IMX415_SYS_MODE, 0x4 },
347                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
348                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
349                 .regs[5] = { IMX415_INCKSEL3, 0x0C0 },
350                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
351                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
352                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
353                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
354                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
355         },
356         {
357                 .lane_rate = 2079000000UL,
358                 .inck = 27000000,
359                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
360                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
361                 .regs[2] = { IMX415_SYS_MODE, 0x2 },
362                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
363                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
364                 .regs[5] = { IMX415_INCKSEL3, 0x0E7 },
365                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
366                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
367                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
368                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
369                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
370         },
371         {
372                 .lane_rate = 2079000000UL,
373                 .inck = 37125000,
374                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
375                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
376                 .regs[2] = { IMX415_SYS_MODE, 0x2 },
377                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
378                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
379                 .regs[5] = { IMX415_INCKSEL3, 0x0E0 },
380                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
381                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
382                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
383                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
384                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0948 },
385         },
386         {
387                 .lane_rate = 2079000000UL,
388                 .inck = 74250000,
389                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
390                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
391                 .regs[2] = { IMX415_SYS_MODE, 0x2 },
392                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
393                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
394                 .regs[5] = { IMX415_INCKSEL3, 0x0E0 },
395                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
396                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
397                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
398                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
399                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
400         },
401         {
402                 .lane_rate = 2376000000UL,
403                 .inck = 27000000,
404                 .regs[0] = { IMX415_BCWAIT_TIME, 0x05D },
405                 .regs[1] = { IMX415_CPWAIT_TIME, 0x042 },
406                 .regs[2] = { IMX415_SYS_MODE, 0x0 },
407                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
408                 .regs[4] = { IMX415_INCKSEL2, 0x23 },
409                 .regs[5] = { IMX415_INCKSEL3, 0x108 },
410                 .regs[6] = { IMX415_INCKSEL4, 0x0E7 },
411                 .regs[7] = { IMX415_INCKSEL5, 0x23 },
412                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
413                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
414                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x06C0 },
415         },
416         {
417                 .lane_rate = 2376000000UL,
418                 .inck = 37125000,
419                 .regs[0] = { IMX415_BCWAIT_TIME, 0x07F },
420                 .regs[1] = { IMX415_CPWAIT_TIME, 0x05B },
421                 .regs[2] = { IMX415_SYS_MODE, 0x0 },
422                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
423                 .regs[4] = { IMX415_INCKSEL2, 0x24 },
424                 .regs[5] = { IMX415_INCKSEL3, 0x100 },
425                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
426                 .regs[7] = { IMX415_INCKSEL5, 0x24 },
427                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
428                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
429                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x0948 },
430         },
431         {
432                 .lane_rate = 2376000000UL,
433                 .inck = 74250000,
434                 .regs[0] = { IMX415_BCWAIT_TIME, 0x0FF },
435                 .regs[1] = { IMX415_CPWAIT_TIME, 0x0B6 },
436                 .regs[2] = { IMX415_SYS_MODE, 0x0 },
437                 .regs[3] = { IMX415_INCKSEL1, 0x00 },
438                 .regs[4] = { IMX415_INCKSEL2, 0x28 },
439                 .regs[5] = { IMX415_INCKSEL3, 0x100 },
440                 .regs[6] = { IMX415_INCKSEL4, 0x0E0 },
441                 .regs[7] = { IMX415_INCKSEL5, 0x28 },
442                 .regs[8] = { IMX415_INCKSEL6, 0x1 },
443                 .regs[9] = { IMX415_INCKSEL7, 0x0 },
444                 .regs[10] = { IMX415_TXCLKESC_FREQ, 0x1290 },
445         },
446 };
447
448 /* all-pixel 2-lane 720 Mbps 15.74 Hz mode */
449 static const struct cci_reg_sequence imx415_mode_2_720[] = {
450         { IMX415_VMAX, 0x08CA },
451         { IMX415_HMAX, 0x07F0 },
452         { IMX415_LANEMODE, IMX415_LANEMODE_2 },
453         { IMX415_TCLKPOST, 0x006F },
454         { IMX415_TCLKPREPARE, 0x002F },
455         { IMX415_TCLKTRAIL, 0x002F },
456         { IMX415_TCLKZERO, 0x00BF },
457         { IMX415_THSPREPARE, 0x002F },
458         { IMX415_THSZERO, 0x0057 },
459         { IMX415_THSTRAIL, 0x002F },
460         { IMX415_THSEXIT, 0x004F },
461         { IMX415_TLPX, 0x0027 },
462 };
463
464 /* all-pixel 2-lane 1440 Mbps 30.01 Hz mode */
465 static const struct cci_reg_sequence imx415_mode_2_1440[] = {
466         { IMX415_VMAX, 0x08CA },
467         { IMX415_HMAX, 0x042A },
468         { IMX415_LANEMODE, IMX415_LANEMODE_2 },
469         { IMX415_TCLKPOST, 0x009F },
470         { IMX415_TCLKPREPARE, 0x0057 },
471         { IMX415_TCLKTRAIL, 0x0057 },
472         { IMX415_TCLKZERO, 0x0187 },
473         { IMX415_THSPREPARE, 0x005F },
474         { IMX415_THSZERO, 0x00A7 },
475         { IMX415_THSTRAIL, 0x005F },
476         { IMX415_THSEXIT, 0x0097 },
477         { IMX415_TLPX, 0x004F },
478 };
479
480 /* all-pixel 4-lane 891 Mbps 30 Hz mode */
481 static const struct cci_reg_sequence imx415_mode_4_891[] = {
482         { IMX415_VMAX, 0x08CA },
483         { IMX415_HMAX, 0x044C },
484         { IMX415_LANEMODE, IMX415_LANEMODE_4 },
485         { IMX415_TCLKPOST, 0x007F },
486         { IMX415_TCLKPREPARE, 0x0037 },
487         { IMX415_TCLKTRAIL, 0x0037 },
488         { IMX415_TCLKZERO, 0x00F7 },
489         { IMX415_THSPREPARE, 0x003F },
490         { IMX415_THSZERO, 0x006F },
491         { IMX415_THSTRAIL, 0x003F },
492         { IMX415_THSEXIT, 0x005F },
493         { IMX415_TLPX, 0x002F },
494 };
495
496 struct imx415_mode_reg_list {
497         u32 num_of_regs;
498         const struct cci_reg_sequence *regs;
499 };
500
501 /*
502  * Mode : number of lanes, lane rate and frame rate dependent settings
503  *
504  * pixel_rate and hmax_pix are needed to calculate hblank for the v4l2 ctrl
505  * interface. These values can not be found in the data sheet and should be
506  * treated as virtual values. Use following table when adding new modes.
507  *
508  * lane_rate  lanes    fps     hmax_pix   pixel_rate
509  *
510  *     594      2     10.000     4400       99000000
511  *     891      2     15.000     4400      148500000
512  *     720      2     15.748     4064      144000000
513  *    1782      2     30.000     4400      297000000
514  *    2079      2     30.000     4400      297000000
515  *    1440      2     30.019     4510      304615385
516  *
517  *     594      4     20.000     5500      247500000
518  *     594      4     25.000     4400      247500000
519  *     720      4     25.000     4400      247500000
520  *     720      4     30.019     4510      304615385
521  *     891      4     30.000     4400      297000000
522  *    1440      4     30.019     4510      304615385
523  *    1440      4     60.038     4510      609230769
524  *    1485      4     60.000     4400      594000000
525  *    1782      4     60.000     4400      594000000
526  *    2079      4     60.000     4400      594000000
527  *    2376      4     90.164     4392      891000000
528  */
529 struct imx415_mode {
530         u64 lane_rate;
531         u32 lanes;
532         u32 hmax_pix;
533         u64 pixel_rate;
534         struct imx415_mode_reg_list reg_list;
535 };
536
537 /* mode configs */
538 static const struct imx415_mode supported_modes[] = {
539         {
540                 .lane_rate = 720000000,
541                 .lanes = 2,
542                 .hmax_pix = 4064,
543                 .pixel_rate = 144000000,
544                 .reg_list = {
545                         .num_of_regs = ARRAY_SIZE(imx415_mode_2_720),
546                         .regs = imx415_mode_2_720,
547                 },
548         },
549         {
550                 .lane_rate = 1440000000,
551                 .lanes = 2,
552                 .hmax_pix = 4510,
553                 .pixel_rate = 304615385,
554                 .reg_list = {
555                         .num_of_regs = ARRAY_SIZE(imx415_mode_2_1440),
556                         .regs = imx415_mode_2_1440,
557                 },
558         },
559         {
560                 .lane_rate = 891000000,
561                 .lanes = 4,
562                 .hmax_pix = 4400,
563                 .pixel_rate = 297000000,
564                 .reg_list = {
565                         .num_of_regs = ARRAY_SIZE(imx415_mode_4_891),
566                         .regs = imx415_mode_4_891,
567                 },
568         },
569 };
570
571 static const char *const imx415_test_pattern_menu[] = {
572         "disabled",
573         "solid black",
574         "solid white",
575         "solid dark gray",
576         "solid light gray",
577         "stripes light/dark grey",
578         "stripes dark/light grey",
579         "stripes black/dark grey",
580         "stripes dark grey/black",
581         "stripes black/white",
582         "stripes white/black",
583         "horizontal color bar",
584         "vertical color bar",
585 };
586
587 struct imx415 {
588         struct device *dev;
589         struct clk *clk;
590         struct regulator_bulk_data supplies[ARRAY_SIZE(imx415_supply_names)];
591         struct gpio_desc *reset;
592         struct regmap *regmap;
593
594         const struct imx415_clk_params *clk_params;
595
596         struct v4l2_subdev subdev;
597         struct media_pad pad;
598
599         struct v4l2_ctrl_handler ctrls;
600         struct v4l2_ctrl *vblank;
601         struct v4l2_ctrl *hflip;
602         struct v4l2_ctrl *vflip;
603
604         unsigned int cur_mode;
605         unsigned int num_data_lanes;
606 };
607
608 /*
609  * This table includes fixed register settings and a bunch of undocumented
610  * registers that have to be set to another value than default.
611  */
612 static const struct cci_reg_sequence imx415_init_table[] = {
613         /* use all-pixel readout mode, no flip */
614         { IMX415_WINMODE, 0x00 },
615         { IMX415_ADDMODE, 0x00 },
616         { IMX415_REVERSE, 0x00 },
617         /* use RAW 10-bit mode */
618         { IMX415_ADBIT, 0x00 },
619         { IMX415_MDBIT, 0x00 },
620         /* output VSYNC on XVS and low on XHS */
621         { IMX415_OUTSEL, 0x22 },
622         { IMX415_DRV, 0x00 },
623
624         /* SONY magic registers */
625         { CCI_REG8(0x32D4), 0x21 },
626         { CCI_REG8(0x32EC), 0xA1 },
627         { CCI_REG8(0x3452), 0x7F },
628         { CCI_REG8(0x3453), 0x03 },
629         { CCI_REG8(0x358A), 0x04 },
630         { CCI_REG8(0x35A1), 0x02 },
631         { CCI_REG8(0x36BC), 0x0C },
632         { CCI_REG8(0x36CC), 0x53 },
633         { CCI_REG8(0x36CD), 0x00 },
634         { CCI_REG8(0x36CE), 0x3C },
635         { CCI_REG8(0x36D0), 0x8C },
636         { CCI_REG8(0x36D1), 0x00 },
637         { CCI_REG8(0x36D2), 0x71 },
638         { CCI_REG8(0x36D4), 0x3C },
639         { CCI_REG8(0x36D6), 0x53 },
640         { CCI_REG8(0x36D7), 0x00 },
641         { CCI_REG8(0x36D8), 0x71 },
642         { CCI_REG8(0x36DA), 0x8C },
643         { CCI_REG8(0x36DB), 0x00 },
644         { CCI_REG8(0x3724), 0x02 },
645         { CCI_REG8(0x3726), 0x02 },
646         { CCI_REG8(0x3732), 0x02 },
647         { CCI_REG8(0x3734), 0x03 },
648         { CCI_REG8(0x3736), 0x03 },
649         { CCI_REG8(0x3742), 0x03 },
650         { CCI_REG8(0x3862), 0xE0 },
651         { CCI_REG8(0x38CC), 0x30 },
652         { CCI_REG8(0x38CD), 0x2F },
653         { CCI_REG8(0x395C), 0x0C },
654         { CCI_REG8(0x3A42), 0xD1 },
655         { CCI_REG8(0x3A4C), 0x77 },
656         { CCI_REG8(0x3AE0), 0x02 },
657         { CCI_REG8(0x3AEC), 0x0C },
658         { CCI_REG8(0x3B00), 0x2E },
659         { CCI_REG8(0x3B06), 0x29 },
660         { CCI_REG8(0x3B98), 0x25 },
661         { CCI_REG8(0x3B99), 0x21 },
662         { CCI_REG8(0x3B9B), 0x13 },
663         { CCI_REG8(0x3B9C), 0x13 },
664         { CCI_REG8(0x3B9D), 0x13 },
665         { CCI_REG8(0x3B9E), 0x13 },
666         { CCI_REG8(0x3BA1), 0x00 },
667         { CCI_REG8(0x3BA2), 0x06 },
668         { CCI_REG8(0x3BA3), 0x0B },
669         { CCI_REG8(0x3BA4), 0x10 },
670         { CCI_REG8(0x3BA5), 0x14 },
671         { CCI_REG8(0x3BA6), 0x18 },
672         { CCI_REG8(0x3BA7), 0x1A },
673         { CCI_REG8(0x3BA8), 0x1A },
674         { CCI_REG8(0x3BA9), 0x1A },
675         { CCI_REG8(0x3BAC), 0xED },
676         { CCI_REG8(0x3BAD), 0x01 },
677         { CCI_REG8(0x3BAE), 0xF6 },
678         { CCI_REG8(0x3BAF), 0x02 },
679         { CCI_REG8(0x3BB0), 0xA2 },
680         { CCI_REG8(0x3BB1), 0x03 },
681         { CCI_REG8(0x3BB2), 0xE0 },
682         { CCI_REG8(0x3BB3), 0x03 },
683         { CCI_REG8(0x3BB4), 0xE0 },
684         { CCI_REG8(0x3BB5), 0x03 },
685         { CCI_REG8(0x3BB6), 0xE0 },
686         { CCI_REG8(0x3BB7), 0x03 },
687         { CCI_REG8(0x3BB8), 0xE0 },
688         { CCI_REG8(0x3BBA), 0xE0 },
689         { CCI_REG8(0x3BBC), 0xDA },
690         { CCI_REG8(0x3BBE), 0x88 },
691         { CCI_REG8(0x3BC0), 0x44 },
692         { CCI_REG8(0x3BC2), 0x7B },
693         { CCI_REG8(0x3BC4), 0xA2 },
694         { CCI_REG8(0x3BC8), 0xBD },
695         { CCI_REG8(0x3BCA), 0xBD },
696 };
697
698 static inline struct imx415 *to_imx415(struct v4l2_subdev *sd)
699 {
700         return container_of(sd, struct imx415, subdev);
701 }
702
703 static int imx415_set_testpattern(struct imx415 *sensor, int val)
704 {
705         int ret = 0;
706
707         if (val) {
708                 cci_write(sensor->regmap, IMX415_BLKLEVEL, 0x00, &ret);
709                 cci_write(sensor->regmap, IMX415_TPG_EN_DUOUT, 0x01, &ret);
710                 cci_write(sensor->regmap, IMX415_TPG_PATSEL_DUOUT,
711                           val - 1, &ret);
712                 cci_write(sensor->regmap, IMX415_TPG_COLORWIDTH, 0x01, &ret);
713                 cci_write(sensor->regmap, IMX415_TESTCLKEN_MIPI, 0x20, &ret);
714                 cci_write(sensor->regmap, IMX415_DIG_CLP_MODE, 0x00, &ret);
715                 cci_write(sensor->regmap, IMX415_WRJ_OPEN, 0x00, &ret);
716         } else {
717                 cci_write(sensor->regmap, IMX415_BLKLEVEL,
718                           IMX415_BLKLEVEL_DEFAULT, &ret);
719                 cci_write(sensor->regmap, IMX415_TPG_EN_DUOUT, 0x00, &ret);
720                 cci_write(sensor->regmap, IMX415_TESTCLKEN_MIPI, 0x00, &ret);
721                 cci_write(sensor->regmap, IMX415_DIG_CLP_MODE, 0x01, &ret);
722                 cci_write(sensor->regmap, IMX415_WRJ_OPEN, 0x01, &ret);
723         }
724         return 0;
725 }
726
727 static int imx415_s_ctrl(struct v4l2_ctrl *ctrl)
728 {
729         struct imx415 *sensor = container_of(ctrl->handler, struct imx415,
730                                              ctrls);
731         const struct v4l2_mbus_framefmt *format;
732         struct v4l2_subdev_state *state;
733         unsigned int vmax;
734         unsigned int flip;
735         int ret;
736
737         if (!pm_runtime_get_if_in_use(sensor->dev))
738                 return 0;
739
740         state = v4l2_subdev_get_locked_active_state(&sensor->subdev);
741         format = v4l2_subdev_state_get_format(state, 0);
742
743         switch (ctrl->id) {
744         case V4L2_CID_EXPOSURE:
745                 /* clamp the exposure value to VMAX. */
746                 vmax = format->height + sensor->vblank->cur.val;
747                 ctrl->val = min_t(int, ctrl->val, vmax);
748                 ret = cci_write(sensor->regmap, IMX415_SHR0,
749                                 vmax - ctrl->val, NULL);
750                 break;
751
752         case V4L2_CID_ANALOGUE_GAIN:
753                 /* analogue gain in 0.3 dB step size */
754                 ret = cci_write(sensor->regmap, IMX415_GAIN_PCG_0,
755                                 ctrl->val, NULL);
756                 break;
757
758         case V4L2_CID_HFLIP:
759         case V4L2_CID_VFLIP:
760                 flip = (sensor->hflip->val << IMX415_HREVERSE_SHIFT) |
761                        (sensor->vflip->val << IMX415_VREVERSE_SHIFT);
762                 ret = cci_write(sensor->regmap, IMX415_REVERSE, flip, NULL);
763                 break;
764
765         case V4L2_CID_TEST_PATTERN:
766                 ret = imx415_set_testpattern(sensor, ctrl->val);
767                 break;
768
769         default:
770                 ret = -EINVAL;
771                 break;
772         }
773
774         pm_runtime_put(sensor->dev);
775
776         return ret;
777 }
778
779 static const struct v4l2_ctrl_ops imx415_ctrl_ops = {
780         .s_ctrl = imx415_s_ctrl,
781 };
782
783 static int imx415_ctrls_init(struct imx415 *sensor)
784 {
785         struct v4l2_fwnode_device_properties props;
786         struct v4l2_ctrl *ctrl;
787         u64 pixel_rate = supported_modes[sensor->cur_mode].pixel_rate;
788         u64 lane_rate = supported_modes[sensor->cur_mode].lane_rate;
789         u32 exposure_max = IMX415_PIXEL_ARRAY_HEIGHT +
790                            IMX415_PIXEL_ARRAY_VBLANK - 8;
791         u32 hblank;
792         unsigned int i;
793         int ret;
794
795         ret = v4l2_fwnode_device_parse(sensor->dev, &props);
796         if (ret < 0)
797                 return ret;
798
799         v4l2_ctrl_handler_init(&sensor->ctrls, 10);
800
801         for (i = 0; i < ARRAY_SIZE(link_freq_menu_items); ++i) {
802                 if (lane_rate == link_freq_menu_items[i] * 2)
803                         break;
804         }
805         if (i == ARRAY_SIZE(link_freq_menu_items)) {
806                 return dev_err_probe(sensor->dev, -EINVAL,
807                                      "lane rate %llu not supported\n",
808                                      lane_rate);
809         }
810
811         ctrl = v4l2_ctrl_new_int_menu(&sensor->ctrls, &imx415_ctrl_ops,
812                                       V4L2_CID_LINK_FREQ,
813                                       ARRAY_SIZE(link_freq_menu_items) - 1, i,
814                                       link_freq_menu_items);
815
816         if (ctrl)
817                 ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
818
819         v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops, V4L2_CID_EXPOSURE,
820                           4, exposure_max, 1, exposure_max);
821
822         v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops,
823                           V4L2_CID_ANALOGUE_GAIN, IMX415_AGAIN_MIN,
824                           IMX415_AGAIN_MAX, IMX415_AGAIN_STEP,
825                           IMX415_AGAIN_MIN);
826
827         hblank = supported_modes[sensor->cur_mode].hmax_pix -
828                  IMX415_PIXEL_ARRAY_WIDTH;
829         ctrl = v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops,
830                                  V4L2_CID_HBLANK, hblank, hblank, 1, hblank);
831         if (ctrl)
832                 ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
833
834         sensor->vblank = v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops,
835                                            V4L2_CID_VBLANK,
836                                            IMX415_PIXEL_ARRAY_VBLANK,
837                                            IMX415_PIXEL_ARRAY_VBLANK, 1,
838                                            IMX415_PIXEL_ARRAY_VBLANK);
839         if (sensor->vblank)
840                 sensor->vblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
841
842         /*
843          * The pixel rate used here is a virtual value and can be used for
844          * calculating the frame rate together with hblank. It may not
845          * necessarily be the physically correct pixel clock.
846          */
847         v4l2_ctrl_new_std(&sensor->ctrls, NULL, V4L2_CID_PIXEL_RATE, pixel_rate,
848                           pixel_rate, 1, pixel_rate);
849
850         sensor->hflip = v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops,
851                                           V4L2_CID_HFLIP, 0, 1, 1, 0);
852         sensor->vflip = v4l2_ctrl_new_std(&sensor->ctrls, &imx415_ctrl_ops,
853                                           V4L2_CID_VFLIP, 0, 1, 1, 0);
854
855         v4l2_ctrl_new_std_menu_items(&sensor->ctrls, &imx415_ctrl_ops,
856                                      V4L2_CID_TEST_PATTERN,
857                                      ARRAY_SIZE(imx415_test_pattern_menu) - 1,
858                                      0, 0, imx415_test_pattern_menu);
859
860         v4l2_ctrl_new_fwnode_properties(&sensor->ctrls, &imx415_ctrl_ops,
861                                         &props);
862
863         if (sensor->ctrls.error) {
864                 dev_err_probe(sensor->dev, sensor->ctrls.error,
865                               "failed to add controls\n");
866                 v4l2_ctrl_handler_free(&sensor->ctrls);
867                 return sensor->ctrls.error;
868         }
869         sensor->subdev.ctrl_handler = &sensor->ctrls;
870
871         return 0;
872 }
873
874 static int imx415_set_mode(struct imx415 *sensor, int mode)
875 {
876         int ret = 0;
877
878         if (mode >= ARRAY_SIZE(supported_modes)) {
879                 dev_err(sensor->dev, "Mode %d not supported\n", mode);
880                 return -EINVAL;
881         }
882
883         cci_multi_reg_write(sensor->regmap,
884                             supported_modes[mode].reg_list.regs,
885                             supported_modes[mode].reg_list.num_of_regs,
886                             &ret);
887
888         cci_multi_reg_write(sensor->regmap,
889                             sensor->clk_params->regs,
890                             IMX415_NUM_CLK_PARAM_REGS,
891                             &ret);
892
893         return 0;
894 }
895
896 static int imx415_setup(struct imx415 *sensor, struct v4l2_subdev_state *state)
897 {
898         int ret;
899
900         ret = cci_multi_reg_write(sensor->regmap,
901                                   imx415_init_table,
902                                   ARRAY_SIZE(imx415_init_table),
903                                   NULL);
904         if (ret)
905                 return ret;
906
907         return imx415_set_mode(sensor, sensor->cur_mode);
908 }
909
910 static int imx415_wakeup(struct imx415 *sensor)
911 {
912         int ret;
913
914         ret = cci_write(sensor->regmap, IMX415_MODE,
915                         IMX415_MODE_OPERATING, NULL);
916         if (ret)
917                 return ret;
918
919         /*
920          * According to the datasheet we have to wait at least 63 us after
921          * leaving standby mode. But this doesn't work even after 30 ms.
922          * So probably this should be 63 ms and therefore we wait for 80 ms.
923          */
924         msleep(80);
925
926         return 0;
927 }
928
929 static int imx415_stream_on(struct imx415 *sensor)
930 {
931         int ret;
932
933         ret = imx415_wakeup(sensor);
934         return cci_write(sensor->regmap, IMX415_XMSTA,
935                          IMX415_XMSTA_START, &ret);
936 }
937
938 static int imx415_stream_off(struct imx415 *sensor)
939 {
940         int ret;
941
942         ret = cci_write(sensor->regmap, IMX415_XMSTA,
943                         IMX415_XMSTA_STOP, NULL);
944         return cci_write(sensor->regmap, IMX415_MODE,
945                          IMX415_MODE_STANDBY, &ret);
946 }
947
948 static int imx415_s_stream(struct v4l2_subdev *sd, int enable)
949 {
950         struct imx415 *sensor = to_imx415(sd);
951         struct v4l2_subdev_state *state;
952         int ret;
953
954         state = v4l2_subdev_lock_and_get_active_state(sd);
955
956         if (!enable) {
957                 ret = imx415_stream_off(sensor);
958
959                 pm_runtime_mark_last_busy(sensor->dev);
960                 pm_runtime_put_autosuspend(sensor->dev);
961
962                 goto unlock;
963         }
964
965         ret = pm_runtime_resume_and_get(sensor->dev);
966         if (ret < 0)
967                 goto unlock;
968
969         ret = imx415_setup(sensor, state);
970         if (ret)
971                 goto err_pm;
972
973         ret = __v4l2_ctrl_handler_setup(&sensor->ctrls);
974         if (ret < 0)
975                 goto err_pm;
976
977         ret = imx415_stream_on(sensor);
978         if (ret)
979                 goto err_pm;
980
981         ret = 0;
982
983 unlock:
984         v4l2_subdev_unlock_state(state);
985
986         return ret;
987
988 err_pm:
989         /*
990          * In case of error, turn the power off synchronously as the device
991          * likely has no other chance to recover.
992          */
993         pm_runtime_put_sync(sensor->dev);
994
995         goto unlock;
996 }
997
998 static int imx415_enum_mbus_code(struct v4l2_subdev *sd,
999                                  struct v4l2_subdev_state *state,
1000                                  struct v4l2_subdev_mbus_code_enum *code)
1001 {
1002         if (code->index != 0)
1003                 return -EINVAL;
1004
1005         code->code = MEDIA_BUS_FMT_SGBRG10_1X10;
1006
1007         return 0;
1008 }
1009
1010 static int imx415_enum_frame_size(struct v4l2_subdev *sd,
1011                                   struct v4l2_subdev_state *state,
1012                                   struct v4l2_subdev_frame_size_enum *fse)
1013 {
1014         const struct v4l2_mbus_framefmt *format;
1015
1016         format = v4l2_subdev_state_get_format(state, fse->pad);
1017
1018         if (fse->index > 0 || fse->code != format->code)
1019                 return -EINVAL;
1020
1021         fse->min_width = IMX415_PIXEL_ARRAY_WIDTH;
1022         fse->max_width = fse->min_width;
1023         fse->min_height = IMX415_PIXEL_ARRAY_HEIGHT;
1024         fse->max_height = fse->min_height;
1025         return 0;
1026 }
1027
1028 static int imx415_set_format(struct v4l2_subdev *sd,
1029                              struct v4l2_subdev_state *state,
1030                              struct v4l2_subdev_format *fmt)
1031 {
1032         struct v4l2_mbus_framefmt *format;
1033
1034         format = v4l2_subdev_state_get_format(state, fmt->pad);
1035
1036         format->width = fmt->format.width;
1037         format->height = fmt->format.height;
1038         format->code = MEDIA_BUS_FMT_SGBRG10_1X10;
1039         format->field = V4L2_FIELD_NONE;
1040         format->colorspace = V4L2_COLORSPACE_RAW;
1041         format->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
1042         format->quantization = V4L2_QUANTIZATION_DEFAULT;
1043         format->xfer_func = V4L2_XFER_FUNC_NONE;
1044
1045         fmt->format = *format;
1046         return 0;
1047 }
1048
1049 static int imx415_get_selection(struct v4l2_subdev *sd,
1050                                 struct v4l2_subdev_state *sd_state,
1051                                 struct v4l2_subdev_selection *sel)
1052 {
1053         switch (sel->target) {
1054         case V4L2_SEL_TGT_CROP:
1055         case V4L2_SEL_TGT_CROP_DEFAULT:
1056         case V4L2_SEL_TGT_CROP_BOUNDS:
1057                 sel->r.top = IMX415_PIXEL_ARRAY_TOP;
1058                 sel->r.left = IMX415_PIXEL_ARRAY_LEFT;
1059                 sel->r.width = IMX415_PIXEL_ARRAY_WIDTH;
1060                 sel->r.height = IMX415_PIXEL_ARRAY_HEIGHT;
1061
1062                 return 0;
1063         }
1064
1065         return -EINVAL;
1066 }
1067
1068 static int imx415_init_state(struct v4l2_subdev *sd,
1069                              struct v4l2_subdev_state *state)
1070 {
1071         struct v4l2_subdev_format format = {
1072                 .format = {
1073                         .width = IMX415_PIXEL_ARRAY_WIDTH,
1074                         .height = IMX415_PIXEL_ARRAY_HEIGHT,
1075                 },
1076         };
1077
1078         imx415_set_format(sd, state, &format);
1079
1080         return 0;
1081 }
1082
1083 static const struct v4l2_subdev_video_ops imx415_subdev_video_ops = {
1084         .s_stream = imx415_s_stream,
1085 };
1086
1087 static const struct v4l2_subdev_pad_ops imx415_subdev_pad_ops = {
1088         .enum_mbus_code = imx415_enum_mbus_code,
1089         .enum_frame_size = imx415_enum_frame_size,
1090         .get_fmt = v4l2_subdev_get_fmt,
1091         .set_fmt = imx415_set_format,
1092         .get_selection = imx415_get_selection,
1093 };
1094
1095 static const struct v4l2_subdev_ops imx415_subdev_ops = {
1096         .video = &imx415_subdev_video_ops,
1097         .pad = &imx415_subdev_pad_ops,
1098 };
1099
1100 static const struct v4l2_subdev_internal_ops imx415_internal_ops = {
1101         .init_state = imx415_init_state,
1102 };
1103
1104 static int imx415_subdev_init(struct imx415 *sensor)
1105 {
1106         struct i2c_client *client = to_i2c_client(sensor->dev);
1107         int ret;
1108
1109         v4l2_i2c_subdev_init(&sensor->subdev, client, &imx415_subdev_ops);
1110         sensor->subdev.internal_ops = &imx415_internal_ops;
1111
1112         ret = imx415_ctrls_init(sensor);
1113         if (ret)
1114                 return ret;
1115
1116         sensor->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1117         sensor->pad.flags = MEDIA_PAD_FL_SOURCE;
1118         sensor->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
1119         ret = media_entity_pads_init(&sensor->subdev.entity, 1, &sensor->pad);
1120         if (ret < 0) {
1121                 v4l2_ctrl_handler_free(&sensor->ctrls);
1122                 return ret;
1123         }
1124
1125         sensor->subdev.state_lock = sensor->subdev.ctrl_handler->lock;
1126         v4l2_subdev_init_finalize(&sensor->subdev);
1127
1128         return 0;
1129 }
1130
1131 static void imx415_subdev_cleanup(struct imx415 *sensor)
1132 {
1133         media_entity_cleanup(&sensor->subdev.entity);
1134         v4l2_ctrl_handler_free(&sensor->ctrls);
1135 }
1136
1137 static int imx415_power_on(struct imx415 *sensor)
1138 {
1139         int ret;
1140
1141         ret = regulator_bulk_enable(ARRAY_SIZE(sensor->supplies),
1142                                     sensor->supplies);
1143         if (ret < 0)
1144                 return ret;
1145
1146         gpiod_set_value_cansleep(sensor->reset, 0);
1147
1148         udelay(1);
1149
1150         ret = clk_prepare_enable(sensor->clk);
1151         if (ret < 0)
1152                 goto err_reset;
1153
1154         /*
1155          * Data sheet states that 20 us are required before communication start,
1156          * but this doesn't work in all cases. Use 100 us to be on the safe
1157          * side.
1158          */
1159         usleep_range(100, 200);
1160
1161         return 0;
1162
1163 err_reset:
1164         gpiod_set_value_cansleep(sensor->reset, 1);
1165         regulator_bulk_disable(ARRAY_SIZE(sensor->supplies), sensor->supplies);
1166         return ret;
1167 }
1168
1169 static void imx415_power_off(struct imx415 *sensor)
1170 {
1171         clk_disable_unprepare(sensor->clk);
1172         gpiod_set_value_cansleep(sensor->reset, 1);
1173         regulator_bulk_disable(ARRAY_SIZE(sensor->supplies), sensor->supplies);
1174 }
1175
1176 static int imx415_identify_model(struct imx415 *sensor)
1177 {
1178         int model, ret;
1179         u64 chip_id;
1180
1181         /*
1182          * While most registers can be read when the sensor is in standby, this
1183          * is not the case of the sensor info register :-(
1184          */
1185         ret = imx415_wakeup(sensor);
1186         if (ret)
1187                 return dev_err_probe(sensor->dev, ret,
1188                                      "failed to get sensor out of standby\n");
1189
1190         ret = cci_read(sensor->regmap, IMX415_SENSOR_INFO, &chip_id, NULL);
1191         if (ret < 0) {
1192                 dev_err_probe(sensor->dev, ret,
1193                               "failed to read sensor information\n");
1194                 goto done;
1195         }
1196
1197         model = chip_id & IMX415_SENSOR_INFO_MASK;
1198
1199         switch (model) {
1200         case IMX415_CHIP_ID:
1201                 dev_info(sensor->dev, "Detected IMX415 image sensor\n");
1202                 break;
1203         default:
1204                 ret = dev_err_probe(sensor->dev, -ENODEV,
1205                                     "invalid device model 0x%04x\n", model);
1206                 goto done;
1207         }
1208
1209         ret = 0;
1210
1211 done:
1212         cci_write(sensor->regmap, IMX415_MODE, IMX415_MODE_STANDBY, &ret);
1213         return ret;
1214 }
1215
1216 static int imx415_check_inck(unsigned long inck, u64 link_frequency)
1217 {
1218         unsigned int i;
1219
1220         for (i = 0; i < ARRAY_SIZE(imx415_clk_params); ++i) {
1221                 if ((imx415_clk_params[i].lane_rate == link_frequency * 2) &&
1222                     imx415_clk_params[i].inck == inck)
1223                         break;
1224         }
1225
1226         if (i == ARRAY_SIZE(imx415_clk_params))
1227                 return -EINVAL;
1228         else
1229                 return 0;
1230 }
1231
1232 static int imx415_parse_hw_config(struct imx415 *sensor)
1233 {
1234         struct v4l2_fwnode_endpoint bus_cfg = {
1235                 .bus_type = V4L2_MBUS_CSI2_DPHY,
1236         };
1237         struct fwnode_handle *ep;
1238         u64 lane_rate;
1239         unsigned long inck;
1240         unsigned int i, j;
1241         int ret;
1242
1243         for (i = 0; i < ARRAY_SIZE(sensor->supplies); ++i)
1244                 sensor->supplies[i].supply = imx415_supply_names[i];
1245
1246         ret = devm_regulator_bulk_get(sensor->dev, ARRAY_SIZE(sensor->supplies),
1247                                       sensor->supplies);
1248         if (ret)
1249                 return dev_err_probe(sensor->dev, ret,
1250                                      "failed to get supplies\n");
1251
1252         sensor->reset = devm_gpiod_get_optional(sensor->dev, "reset",
1253                                                 GPIOD_OUT_HIGH);
1254         if (IS_ERR(sensor->reset))
1255                 return dev_err_probe(sensor->dev, PTR_ERR(sensor->reset),
1256                                      "failed to get reset GPIO\n");
1257
1258         sensor->clk = devm_clk_get(sensor->dev, "inck");
1259         if (IS_ERR(sensor->clk))
1260                 return dev_err_probe(sensor->dev, PTR_ERR(sensor->clk),
1261                                      "failed to get clock\n");
1262
1263         ep = fwnode_graph_get_next_endpoint(dev_fwnode(sensor->dev), NULL);
1264         if (!ep)
1265                 return -ENXIO;
1266
1267         ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
1268         fwnode_handle_put(ep);
1269         if (ret)
1270                 return ret;
1271
1272         switch (bus_cfg.bus.mipi_csi2.num_data_lanes) {
1273         case 2:
1274         case 4:
1275                 sensor->num_data_lanes = bus_cfg.bus.mipi_csi2.num_data_lanes;
1276                 break;
1277         default:
1278                 ret = dev_err_probe(sensor->dev, -EINVAL,
1279                                     "invalid number of CSI2 data lanes %d\n",
1280                                     bus_cfg.bus.mipi_csi2.num_data_lanes);
1281                 goto done_endpoint_free;
1282         }
1283
1284         if (!bus_cfg.nr_of_link_frequencies) {
1285                 ret = dev_err_probe(sensor->dev, -EINVAL,
1286                                     "no link frequencies defined");
1287                 goto done_endpoint_free;
1288         }
1289
1290         /*
1291          * Check if there exists a sensor mode defined for current INCK,
1292          * number of lanes and given lane rates.
1293          */
1294         inck = clk_get_rate(sensor->clk);
1295         for (i = 0; i < bus_cfg.nr_of_link_frequencies; ++i) {
1296                 if (imx415_check_inck(inck, bus_cfg.link_frequencies[i])) {
1297                         dev_dbg(sensor->dev,
1298                                 "INCK %lu Hz not supported for this link freq",
1299                                 inck);
1300                         continue;
1301                 }
1302
1303                 for (j = 0; j < ARRAY_SIZE(supported_modes); ++j) {
1304                         if (sensor->num_data_lanes != supported_modes[j].lanes)
1305                                 continue;
1306                         if (bus_cfg.link_frequencies[i] * 2 !=
1307                             supported_modes[j].lane_rate)
1308                                 continue;
1309                         sensor->cur_mode = j;
1310                         break;
1311                 }
1312                 if (j < ARRAY_SIZE(supported_modes))
1313                         break;
1314         }
1315         if (i == bus_cfg.nr_of_link_frequencies) {
1316                 ret = dev_err_probe(sensor->dev, -EINVAL,
1317                                     "no valid sensor mode defined\n");
1318                 goto done_endpoint_free;
1319         }
1320
1321         lane_rate = supported_modes[sensor->cur_mode].lane_rate;
1322         for (i = 0; i < ARRAY_SIZE(imx415_clk_params); ++i) {
1323                 if (lane_rate == imx415_clk_params[i].lane_rate &&
1324                     inck == imx415_clk_params[i].inck) {
1325                         sensor->clk_params = &imx415_clk_params[i];
1326                         break;
1327                 }
1328         }
1329         if (i == ARRAY_SIZE(imx415_clk_params)) {
1330                 ret = dev_err_probe(sensor->dev, -EINVAL,
1331                                     "Mode %d not supported\n",
1332                                     sensor->cur_mode);
1333                 goto done_endpoint_free;
1334         }
1335
1336         ret = 0;
1337         dev_dbg(sensor->dev, "clock: %lu Hz, lane_rate: %llu bps, lanes: %d\n",
1338                 inck, lane_rate, sensor->num_data_lanes);
1339
1340 done_endpoint_free:
1341         v4l2_fwnode_endpoint_free(&bus_cfg);
1342
1343         return ret;
1344 }
1345
1346 static int imx415_probe(struct i2c_client *client)
1347 {
1348         struct imx415 *sensor;
1349         int ret;
1350
1351         sensor = devm_kzalloc(&client->dev, sizeof(*sensor), GFP_KERNEL);
1352         if (!sensor)
1353                 return -ENOMEM;
1354
1355         sensor->dev = &client->dev;
1356
1357         ret = imx415_parse_hw_config(sensor);
1358         if (ret)
1359                 return ret;
1360
1361         sensor->regmap = devm_cci_regmap_init_i2c(client, 16);
1362         if (IS_ERR(sensor->regmap))
1363                 return PTR_ERR(sensor->regmap);
1364
1365         /*
1366          * Enable power management. The driver supports runtime PM, but needs to
1367          * work when runtime PM is disabled in the kernel. To that end, power
1368          * the sensor on manually here, identify it, and fully initialize it.
1369          */
1370         ret = imx415_power_on(sensor);
1371         if (ret)
1372                 return ret;
1373
1374         ret = imx415_identify_model(sensor);
1375         if (ret)
1376                 goto err_power;
1377
1378         ret = imx415_subdev_init(sensor);
1379         if (ret)
1380                 goto err_power;
1381
1382         /*
1383          * Enable runtime PM. As the device has been powered manually, mark it
1384          * as active, and increase the usage count without resuming the device.
1385          */
1386         pm_runtime_set_active(sensor->dev);
1387         pm_runtime_get_noresume(sensor->dev);
1388         pm_runtime_enable(sensor->dev);
1389
1390         ret = v4l2_async_register_subdev_sensor(&sensor->subdev);
1391         if (ret < 0)
1392                 goto err_pm;
1393
1394         /*
1395          * Finally, enable autosuspend and decrease the usage count. The device
1396          * will get suspended after the autosuspend delay, turning the power
1397          * off.
1398          */
1399         pm_runtime_set_autosuspend_delay(sensor->dev, 1000);
1400         pm_runtime_use_autosuspend(sensor->dev);
1401         pm_runtime_put_autosuspend(sensor->dev);
1402
1403         return 0;
1404
1405 err_pm:
1406         pm_runtime_disable(sensor->dev);
1407         pm_runtime_put_noidle(sensor->dev);
1408         imx415_subdev_cleanup(sensor);
1409 err_power:
1410         imx415_power_off(sensor);
1411         return ret;
1412 }
1413
1414 static void imx415_remove(struct i2c_client *client)
1415 {
1416         struct v4l2_subdev *subdev = i2c_get_clientdata(client);
1417         struct imx415 *sensor = to_imx415(subdev);
1418
1419         v4l2_async_unregister_subdev(subdev);
1420
1421         imx415_subdev_cleanup(sensor);
1422
1423         /*
1424          * Disable runtime PM. In case runtime PM is disabled in the kernel,
1425          * make sure to turn power off manually.
1426          */
1427         pm_runtime_disable(sensor->dev);
1428         if (!pm_runtime_status_suspended(sensor->dev))
1429                 imx415_power_off(sensor);
1430         pm_runtime_set_suspended(sensor->dev);
1431 }
1432
1433 static int imx415_runtime_resume(struct device *dev)
1434 {
1435         struct i2c_client *client = to_i2c_client(dev);
1436         struct v4l2_subdev *subdev = i2c_get_clientdata(client);
1437         struct imx415 *sensor = to_imx415(subdev);
1438
1439         return imx415_power_on(sensor);
1440 }
1441
1442 static int imx415_runtime_suspend(struct device *dev)
1443 {
1444         struct i2c_client *client = to_i2c_client(dev);
1445         struct v4l2_subdev *subdev = i2c_get_clientdata(client);
1446         struct imx415 *sensor = to_imx415(subdev);
1447
1448         imx415_power_off(sensor);
1449
1450         return 0;
1451 }
1452
1453 static DEFINE_RUNTIME_DEV_PM_OPS(imx415_pm_ops, imx415_runtime_suspend,
1454                                  imx415_runtime_resume, NULL);
1455
1456 static const struct of_device_id imx415_of_match[] = {
1457         { .compatible = "sony,imx415" },
1458         { /* sentinel */ }
1459 };
1460
1461 MODULE_DEVICE_TABLE(of, imx415_of_match);
1462
1463 static struct i2c_driver imx415_driver = {
1464         .probe = imx415_probe,
1465         .remove = imx415_remove,
1466         .driver = {
1467                 .name = "imx415",
1468                 .of_match_table = imx415_of_match,
1469                 .pm = pm_ptr(&imx415_pm_ops),
1470         },
1471 };
1472
1473 module_i2c_driver(imx415_driver);
1474
1475 MODULE_DESCRIPTION("Sony IMX415 image sensor driver");
1476 MODULE_AUTHOR("Gerald Loacker <[email protected]>");
1477 MODULE_AUTHOR("Michael Riesch <[email protected]>");
1478 MODULE_LICENSE("GPL");
This page took 0.114037 seconds and 4 git commands to generate.