mac80211: minstrel_ht: fix a crash in rate sorting
[cascardo/linux.git] / drivers / media / platform / exynos4-is / mipi-csis.c
1 /*
2  * Samsung S5P/EXYNOS SoC series MIPI-CSI receiver driver
3  *
4  * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd.
5  * Author: Sylwester Nawrocki <s.nawrocki@samsung.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/device.h>
15 #include <linux/errno.h>
16 #include <linux/interrupt.h>
17 #include <linux/io.h>
18 #include <linux/irq.h>
19 #include <linux/kernel.h>
20 #include <linux/memory.h>
21 #include <linux/module.h>
22 #include <linux/of.h>
23 #include <linux/of_graph.h>
24 #include <linux/phy/phy.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/regulator/consumer.h>
28 #include <linux/slab.h>
29 #include <linux/spinlock.h>
30 #include <linux/videodev2.h>
31 #include <media/exynos-fimc.h>
32 #include <media/v4l2-of.h>
33 #include <media/v4l2-subdev.h>
34
35 #include "mipi-csis.h"
36
37 static int debug;
38 module_param(debug, int, 0644);
39 MODULE_PARM_DESC(debug, "Debug level (0-2)");
40
41 /* Register map definition */
42
43 /* CSIS global control */
44 #define S5PCSIS_CTRL                    0x00
45 #define S5PCSIS_CTRL_DPDN_DEFAULT       (0 << 31)
46 #define S5PCSIS_CTRL_DPDN_SWAP          (1 << 31)
47 #define S5PCSIS_CTRL_ALIGN_32BIT        (1 << 20)
48 #define S5PCSIS_CTRL_UPDATE_SHADOW      (1 << 16)
49 #define S5PCSIS_CTRL_WCLK_EXTCLK        (1 << 8)
50 #define S5PCSIS_CTRL_RESET              (1 << 4)
51 #define S5PCSIS_CTRL_ENABLE             (1 << 0)
52
53 /* D-PHY control */
54 #define S5PCSIS_DPHYCTRL                0x04
55 #define S5PCSIS_DPHYCTRL_HSS_MASK       (0x1f << 27)
56 #define S5PCSIS_DPHYCTRL_ENABLE         (0x1f << 0)
57
58 #define S5PCSIS_CONFIG                  0x08
59 #define S5PCSIS_CFG_FMT_YCBCR422_8BIT   (0x1e << 2)
60 #define S5PCSIS_CFG_FMT_RAW8            (0x2a << 2)
61 #define S5PCSIS_CFG_FMT_RAW10           (0x2b << 2)
62 #define S5PCSIS_CFG_FMT_RAW12           (0x2c << 2)
63 /* User defined formats, x = 1...4 */
64 #define S5PCSIS_CFG_FMT_USER(x)         ((0x30 + x - 1) << 2)
65 #define S5PCSIS_CFG_FMT_MASK            (0x3f << 2)
66 #define S5PCSIS_CFG_NR_LANE_MASK        3
67
68 /* Interrupt mask */
69 #define S5PCSIS_INTMSK                  0x10
70 #define S5PCSIS_INTMSK_EVEN_BEFORE      (1 << 31)
71 #define S5PCSIS_INTMSK_EVEN_AFTER       (1 << 30)
72 #define S5PCSIS_INTMSK_ODD_BEFORE       (1 << 29)
73 #define S5PCSIS_INTMSK_ODD_AFTER        (1 << 28)
74 #define S5PCSIS_INTMSK_FRAME_START      (1 << 27)
75 #define S5PCSIS_INTMSK_FRAME_END        (1 << 26)
76 #define S5PCSIS_INTMSK_ERR_SOT_HS       (1 << 12)
77 #define S5PCSIS_INTMSK_ERR_LOST_FS      (1 << 5)
78 #define S5PCSIS_INTMSK_ERR_LOST_FE      (1 << 4)
79 #define S5PCSIS_INTMSK_ERR_OVER         (1 << 3)
80 #define S5PCSIS_INTMSK_ERR_ECC          (1 << 2)
81 #define S5PCSIS_INTMSK_ERR_CRC          (1 << 1)
82 #define S5PCSIS_INTMSK_ERR_UNKNOWN      (1 << 0)
83 #define S5PCSIS_INTMSK_EXYNOS4_EN_ALL   0xf000103f
84 #define S5PCSIS_INTMSK_EXYNOS5_EN_ALL   0xfc00103f
85
86 /* Interrupt source */
87 #define S5PCSIS_INTSRC                  0x14
88 #define S5PCSIS_INTSRC_EVEN_BEFORE      (1 << 31)
89 #define S5PCSIS_INTSRC_EVEN_AFTER       (1 << 30)
90 #define S5PCSIS_INTSRC_EVEN             (0x3 << 30)
91 #define S5PCSIS_INTSRC_ODD_BEFORE       (1 << 29)
92 #define S5PCSIS_INTSRC_ODD_AFTER        (1 << 28)
93 #define S5PCSIS_INTSRC_ODD              (0x3 << 28)
94 #define S5PCSIS_INTSRC_NON_IMAGE_DATA   (0xf << 28)
95 #define S5PCSIS_INTSRC_FRAME_START      (1 << 27)
96 #define S5PCSIS_INTSRC_FRAME_END        (1 << 26)
97 #define S5PCSIS_INTSRC_ERR_SOT_HS       (0xf << 12)
98 #define S5PCSIS_INTSRC_ERR_LOST_FS      (1 << 5)
99 #define S5PCSIS_INTSRC_ERR_LOST_FE      (1 << 4)
100 #define S5PCSIS_INTSRC_ERR_OVER         (1 << 3)
101 #define S5PCSIS_INTSRC_ERR_ECC          (1 << 2)
102 #define S5PCSIS_INTSRC_ERR_CRC          (1 << 1)
103 #define S5PCSIS_INTSRC_ERR_UNKNOWN      (1 << 0)
104 #define S5PCSIS_INTSRC_ERRORS           0xf03f
105
106 /* Pixel resolution */
107 #define S5PCSIS_RESOL                   0x2c
108 #define CSIS_MAX_PIX_WIDTH              0xffff
109 #define CSIS_MAX_PIX_HEIGHT             0xffff
110
111 /* Non-image packet data buffers */
112 #define S5PCSIS_PKTDATA_ODD             0x2000
113 #define S5PCSIS_PKTDATA_EVEN            0x3000
114 #define S5PCSIS_PKTDATA_SIZE            SZ_4K
115
116 enum {
117         CSIS_CLK_MUX,
118         CSIS_CLK_GATE,
119 };
120
121 static char *csi_clock_name[] = {
122         [CSIS_CLK_MUX]  = "sclk_csis",
123         [CSIS_CLK_GATE] = "csis",
124 };
125 #define NUM_CSIS_CLOCKS ARRAY_SIZE(csi_clock_name)
126 #define DEFAULT_SCLK_CSIS_FREQ  166000000UL
127
128 static const char * const csis_supply_name[] = {
129         "vddcore",  /* CSIS Core (1.0V, 1.1V or 1.2V) suppply */
130         "vddio",    /* CSIS I/O and PLL (1.8V) supply */
131 };
132 #define CSIS_NUM_SUPPLIES ARRAY_SIZE(csis_supply_name)
133
134 enum {
135         ST_POWERED      = 1,
136         ST_STREAMING    = 2,
137         ST_SUSPENDED    = 4,
138 };
139
140 struct s5pcsis_event {
141         u32 mask;
142         const char * const name;
143         unsigned int counter;
144 };
145
146 static const struct s5pcsis_event s5pcsis_events[] = {
147         /* Errors */
148         { S5PCSIS_INTSRC_ERR_SOT_HS,    "SOT Error" },
149         { S5PCSIS_INTSRC_ERR_LOST_FS,   "Lost Frame Start Error" },
150         { S5PCSIS_INTSRC_ERR_LOST_FE,   "Lost Frame End Error" },
151         { S5PCSIS_INTSRC_ERR_OVER,      "FIFO Overflow Error" },
152         { S5PCSIS_INTSRC_ERR_ECC,       "ECC Error" },
153         { S5PCSIS_INTSRC_ERR_CRC,       "CRC Error" },
154         { S5PCSIS_INTSRC_ERR_UNKNOWN,   "Unknown Error" },
155         /* Non-image data receive events */
156         { S5PCSIS_INTSRC_EVEN_BEFORE,   "Non-image data before even frame" },
157         { S5PCSIS_INTSRC_EVEN_AFTER,    "Non-image data after even frame" },
158         { S5PCSIS_INTSRC_ODD_BEFORE,    "Non-image data before odd frame" },
159         { S5PCSIS_INTSRC_ODD_AFTER,     "Non-image data after odd frame" },
160         /* Frame start/end */
161         { S5PCSIS_INTSRC_FRAME_START,   "Frame Start" },
162         { S5PCSIS_INTSRC_FRAME_END,     "Frame End" },
163 };
164 #define S5PCSIS_NUM_EVENTS ARRAY_SIZE(s5pcsis_events)
165
166 struct csis_pktbuf {
167         u32 *data;
168         unsigned int len;
169 };
170
171 struct csis_drvdata {
172         /* Mask of all used interrupts in S5PCSIS_INTMSK register */
173         u32 interrupt_mask;
174 };
175
176 /**
177  * struct csis_state - the driver's internal state data structure
178  * @lock: mutex serializing the subdev and power management operations,
179  *        protecting @format and @flags members
180  * @pads: CSIS pads array
181  * @sd: v4l2_subdev associated with CSIS device instance
182  * @index: the hardware instance index
183  * @pdev: CSIS platform device
184  * @phy: pointer to the CSIS generic PHY
185  * @regs: mmaped I/O registers memory
186  * @supplies: CSIS regulator supplies
187  * @clock: CSIS clocks
188  * @irq: requested s5p-mipi-csis irq number
189  * @interrupt_mask: interrupt mask of the all used interrupts
190  * @flags: the state variable for power and streaming control
191  * @clock_frequency: device bus clock frequency
192  * @hs_settle: HS-RX settle time
193  * @num_lanes: number of MIPI-CSI data lanes used
194  * @max_num_lanes: maximum number of MIPI-CSI data lanes supported
195  * @wclk_ext: CSI wrapper clock: 0 - bus clock, 1 - external SCLK_CAM
196  * @csis_fmt: current CSIS pixel format
197  * @format: common media bus format for the source and sink pad
198  * @slock: spinlock protecting structure members below
199  * @pkt_buf: the frame embedded (non-image) data buffer
200  * @events: MIPI-CSIS event (error) counters
201  */
202 struct csis_state {
203         struct mutex lock;
204         struct media_pad pads[CSIS_PADS_NUM];
205         struct v4l2_subdev sd;
206         u8 index;
207         struct platform_device *pdev;
208         struct phy *phy;
209         void __iomem *regs;
210         struct regulator_bulk_data supplies[CSIS_NUM_SUPPLIES];
211         struct clk *clock[NUM_CSIS_CLOCKS];
212         int irq;
213         u32 interrupt_mask;
214         u32 flags;
215
216         u32 clk_frequency;
217         u32 hs_settle;
218         u32 num_lanes;
219         u32 max_num_lanes;
220         u8 wclk_ext;
221
222         const struct csis_pix_format *csis_fmt;
223         struct v4l2_mbus_framefmt format;
224
225         spinlock_t slock;
226         struct csis_pktbuf pkt_buf;
227         struct s5pcsis_event events[S5PCSIS_NUM_EVENTS];
228 };
229
230 /**
231  * struct csis_pix_format - CSIS pixel format description
232  * @pix_width_alignment: horizontal pixel alignment, width will be
233  *                       multiple of 2^pix_width_alignment
234  * @code: corresponding media bus code
235  * @fmt_reg: S5PCSIS_CONFIG register value
236  * @data_alignment: MIPI-CSI data alignment in bits
237  */
238 struct csis_pix_format {
239         unsigned int pix_width_alignment;
240         enum v4l2_mbus_pixelcode code;
241         u32 fmt_reg;
242         u8 data_alignment;
243 };
244
245 static const struct csis_pix_format s5pcsis_formats[] = {
246         {
247                 .code = V4L2_MBUS_FMT_VYUY8_2X8,
248                 .fmt_reg = S5PCSIS_CFG_FMT_YCBCR422_8BIT,
249                 .data_alignment = 32,
250         }, {
251                 .code = V4L2_MBUS_FMT_JPEG_1X8,
252                 .fmt_reg = S5PCSIS_CFG_FMT_USER(1),
253                 .data_alignment = 32,
254         }, {
255                 .code = V4L2_MBUS_FMT_S5C_UYVY_JPEG_1X8,
256                 .fmt_reg = S5PCSIS_CFG_FMT_USER(1),
257                 .data_alignment = 32,
258         }, {
259                 .code = V4L2_MBUS_FMT_SGRBG8_1X8,
260                 .fmt_reg = S5PCSIS_CFG_FMT_RAW8,
261                 .data_alignment = 24,
262         }, {
263                 .code = V4L2_MBUS_FMT_SGRBG10_1X10,
264                 .fmt_reg = S5PCSIS_CFG_FMT_RAW10,
265                 .data_alignment = 24,
266         }, {
267                 .code = V4L2_MBUS_FMT_SGRBG12_1X12,
268                 .fmt_reg = S5PCSIS_CFG_FMT_RAW12,
269                 .data_alignment = 24,
270         }
271 };
272
273 #define s5pcsis_write(__csis, __r, __v) writel(__v, __csis->regs + __r)
274 #define s5pcsis_read(__csis, __r) readl(__csis->regs + __r)
275
276 static struct csis_state *sd_to_csis_state(struct v4l2_subdev *sdev)
277 {
278         return container_of(sdev, struct csis_state, sd);
279 }
280
281 static const struct csis_pix_format *find_csis_format(
282         struct v4l2_mbus_framefmt *mf)
283 {
284         int i;
285
286         for (i = 0; i < ARRAY_SIZE(s5pcsis_formats); i++)
287                 if (mf->code == s5pcsis_formats[i].code)
288                         return &s5pcsis_formats[i];
289         return NULL;
290 }
291
292 static void s5pcsis_enable_interrupts(struct csis_state *state, bool on)
293 {
294         u32 val = s5pcsis_read(state, S5PCSIS_INTMSK);
295         if (on)
296                 val |= state->interrupt_mask;
297         else
298                 val &= ~state->interrupt_mask;
299         s5pcsis_write(state, S5PCSIS_INTMSK, val);
300 }
301
302 static void s5pcsis_reset(struct csis_state *state)
303 {
304         u32 val = s5pcsis_read(state, S5PCSIS_CTRL);
305
306         s5pcsis_write(state, S5PCSIS_CTRL, val | S5PCSIS_CTRL_RESET);
307         udelay(10);
308 }
309
310 static void s5pcsis_system_enable(struct csis_state *state, int on)
311 {
312         u32 val, mask;
313
314         val = s5pcsis_read(state, S5PCSIS_CTRL);
315         if (on)
316                 val |= S5PCSIS_CTRL_ENABLE;
317         else
318                 val &= ~S5PCSIS_CTRL_ENABLE;
319         s5pcsis_write(state, S5PCSIS_CTRL, val);
320
321         val = s5pcsis_read(state, S5PCSIS_DPHYCTRL);
322         val &= ~S5PCSIS_DPHYCTRL_ENABLE;
323         if (on) {
324                 mask = (1 << (state->num_lanes + 1)) - 1;
325                 val |= (mask & S5PCSIS_DPHYCTRL_ENABLE);
326         }
327         s5pcsis_write(state, S5PCSIS_DPHYCTRL, val);
328 }
329
330 /* Called with the state.lock mutex held */
331 static void __s5pcsis_set_format(struct csis_state *state)
332 {
333         struct v4l2_mbus_framefmt *mf = &state->format;
334         u32 val;
335
336         v4l2_dbg(1, debug, &state->sd, "fmt: %#x, %d x %d\n",
337                  mf->code, mf->width, mf->height);
338
339         /* Color format */
340         val = s5pcsis_read(state, S5PCSIS_CONFIG);
341         val = (val & ~S5PCSIS_CFG_FMT_MASK) | state->csis_fmt->fmt_reg;
342         s5pcsis_write(state, S5PCSIS_CONFIG, val);
343
344         /* Pixel resolution */
345         val = (mf->width << 16) | mf->height;
346         s5pcsis_write(state, S5PCSIS_RESOL, val);
347 }
348
349 static void s5pcsis_set_hsync_settle(struct csis_state *state, int settle)
350 {
351         u32 val = s5pcsis_read(state, S5PCSIS_DPHYCTRL);
352
353         val = (val & ~S5PCSIS_DPHYCTRL_HSS_MASK) | (settle << 27);
354         s5pcsis_write(state, S5PCSIS_DPHYCTRL, val);
355 }
356
357 static void s5pcsis_set_params(struct csis_state *state)
358 {
359         u32 val;
360
361         val = s5pcsis_read(state, S5PCSIS_CONFIG);
362         val = (val & ~S5PCSIS_CFG_NR_LANE_MASK) | (state->num_lanes - 1);
363         s5pcsis_write(state, S5PCSIS_CONFIG, val);
364
365         __s5pcsis_set_format(state);
366         s5pcsis_set_hsync_settle(state, state->hs_settle);
367
368         val = s5pcsis_read(state, S5PCSIS_CTRL);
369         if (state->csis_fmt->data_alignment == 32)
370                 val |= S5PCSIS_CTRL_ALIGN_32BIT;
371         else /* 24-bits */
372                 val &= ~S5PCSIS_CTRL_ALIGN_32BIT;
373
374         val &= ~S5PCSIS_CTRL_WCLK_EXTCLK;
375         if (state->wclk_ext)
376                 val |= S5PCSIS_CTRL_WCLK_EXTCLK;
377         s5pcsis_write(state, S5PCSIS_CTRL, val);
378
379         /* Update the shadow register. */
380         val = s5pcsis_read(state, S5PCSIS_CTRL);
381         s5pcsis_write(state, S5PCSIS_CTRL, val | S5PCSIS_CTRL_UPDATE_SHADOW);
382 }
383
384 static void s5pcsis_clk_put(struct csis_state *state)
385 {
386         int i;
387
388         for (i = 0; i < NUM_CSIS_CLOCKS; i++) {
389                 if (IS_ERR(state->clock[i]))
390                         continue;
391                 clk_unprepare(state->clock[i]);
392                 clk_put(state->clock[i]);
393                 state->clock[i] = ERR_PTR(-EINVAL);
394         }
395 }
396
397 static int s5pcsis_clk_get(struct csis_state *state)
398 {
399         struct device *dev = &state->pdev->dev;
400         int i, ret;
401
402         for (i = 0; i < NUM_CSIS_CLOCKS; i++)
403                 state->clock[i] = ERR_PTR(-EINVAL);
404
405         for (i = 0; i < NUM_CSIS_CLOCKS; i++) {
406                 state->clock[i] = clk_get(dev, csi_clock_name[i]);
407                 if (IS_ERR(state->clock[i])) {
408                         ret = PTR_ERR(state->clock[i]);
409                         goto err;
410                 }
411                 ret = clk_prepare(state->clock[i]);
412                 if (ret < 0) {
413                         clk_put(state->clock[i]);
414                         state->clock[i] = ERR_PTR(-EINVAL);
415                         goto err;
416                 }
417         }
418         return 0;
419 err:
420         s5pcsis_clk_put(state);
421         dev_err(dev, "failed to get clock: %s\n", csi_clock_name[i]);
422         return ret;
423 }
424
425 static void dump_regs(struct csis_state *state, const char *label)
426 {
427         struct {
428                 u32 offset;
429                 const char * const name;
430         } registers[] = {
431                 { 0x00, "CTRL" },
432                 { 0x04, "DPHYCTRL" },
433                 { 0x08, "CONFIG" },
434                 { 0x0c, "DPHYSTS" },
435                 { 0x10, "INTMSK" },
436                 { 0x2c, "RESOL" },
437                 { 0x38, "SDW_CONFIG" },
438         };
439         u32 i;
440
441         v4l2_info(&state->sd, "--- %s ---\n", label);
442
443         for (i = 0; i < ARRAY_SIZE(registers); i++) {
444                 u32 cfg = s5pcsis_read(state, registers[i].offset);
445                 v4l2_info(&state->sd, "%10s: 0x%08x\n", registers[i].name, cfg);
446         }
447 }
448
449 static void s5pcsis_start_stream(struct csis_state *state)
450 {
451         s5pcsis_reset(state);
452         s5pcsis_set_params(state);
453         s5pcsis_system_enable(state, true);
454         s5pcsis_enable_interrupts(state, true);
455 }
456
457 static void s5pcsis_stop_stream(struct csis_state *state)
458 {
459         s5pcsis_enable_interrupts(state, false);
460         s5pcsis_system_enable(state, false);
461 }
462
463 static void s5pcsis_clear_counters(struct csis_state *state)
464 {
465         unsigned long flags;
466         int i;
467
468         spin_lock_irqsave(&state->slock, flags);
469         for (i = 0; i < S5PCSIS_NUM_EVENTS; i++)
470                 state->events[i].counter = 0;
471         spin_unlock_irqrestore(&state->slock, flags);
472 }
473
474 static void s5pcsis_log_counters(struct csis_state *state, bool non_errors)
475 {
476         int i = non_errors ? S5PCSIS_NUM_EVENTS : S5PCSIS_NUM_EVENTS - 4;
477         unsigned long flags;
478
479         spin_lock_irqsave(&state->slock, flags);
480
481         for (i--; i >= 0; i--) {
482                 if (state->events[i].counter > 0 || debug)
483                         v4l2_info(&state->sd, "%s events: %d\n",
484                                   state->events[i].name,
485                                   state->events[i].counter);
486         }
487         spin_unlock_irqrestore(&state->slock, flags);
488 }
489
490 /*
491  * V4L2 subdev operations
492  */
493 static int s5pcsis_s_power(struct v4l2_subdev *sd, int on)
494 {
495         struct csis_state *state = sd_to_csis_state(sd);
496         struct device *dev = &state->pdev->dev;
497
498         if (on)
499                 return pm_runtime_get_sync(dev);
500
501         return pm_runtime_put_sync(dev);
502 }
503
504 static int s5pcsis_s_stream(struct v4l2_subdev *sd, int enable)
505 {
506         struct csis_state *state = sd_to_csis_state(sd);
507         int ret = 0;
508
509         v4l2_dbg(1, debug, sd, "%s: %d, state: 0x%x\n",
510                  __func__, enable, state->flags);
511
512         if (enable) {
513                 s5pcsis_clear_counters(state);
514                 ret = pm_runtime_get_sync(&state->pdev->dev);
515                 if (ret && ret != 1)
516                         return ret;
517         }
518
519         mutex_lock(&state->lock);
520         if (enable) {
521                 if (state->flags & ST_SUSPENDED) {
522                         ret = -EBUSY;
523                         goto unlock;
524                 }
525                 s5pcsis_start_stream(state);
526                 state->flags |= ST_STREAMING;
527         } else {
528                 s5pcsis_stop_stream(state);
529                 state->flags &= ~ST_STREAMING;
530                 if (debug > 0)
531                         s5pcsis_log_counters(state, true);
532         }
533 unlock:
534         mutex_unlock(&state->lock);
535         if (!enable)
536                 pm_runtime_put(&state->pdev->dev);
537
538         return ret == 1 ? 0 : ret;
539 }
540
541 static int s5pcsis_enum_mbus_code(struct v4l2_subdev *sd,
542                                   struct v4l2_subdev_fh *fh,
543                                   struct v4l2_subdev_mbus_code_enum *code)
544 {
545         if (code->index >= ARRAY_SIZE(s5pcsis_formats))
546                 return -EINVAL;
547
548         code->code = s5pcsis_formats[code->index].code;
549         return 0;
550 }
551
552 static struct csis_pix_format const *s5pcsis_try_format(
553         struct v4l2_mbus_framefmt *mf)
554 {
555         struct csis_pix_format const *csis_fmt;
556
557         csis_fmt = find_csis_format(mf);
558         if (csis_fmt == NULL)
559                 csis_fmt = &s5pcsis_formats[0];
560
561         mf->code = csis_fmt->code;
562         v4l_bound_align_image(&mf->width, 1, CSIS_MAX_PIX_WIDTH,
563                               csis_fmt->pix_width_alignment,
564                               &mf->height, 1, CSIS_MAX_PIX_HEIGHT, 1,
565                               0);
566         return csis_fmt;
567 }
568
569 static struct v4l2_mbus_framefmt *__s5pcsis_get_format(
570                 struct csis_state *state, struct v4l2_subdev_fh *fh,
571                 enum v4l2_subdev_format_whence which)
572 {
573         if (which == V4L2_SUBDEV_FORMAT_TRY)
574                 return fh ? v4l2_subdev_get_try_format(fh, 0) : NULL;
575
576         return &state->format;
577 }
578
579 static int s5pcsis_set_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh,
580                            struct v4l2_subdev_format *fmt)
581 {
582         struct csis_state *state = sd_to_csis_state(sd);
583         struct csis_pix_format const *csis_fmt;
584         struct v4l2_mbus_framefmt *mf;
585
586         mf = __s5pcsis_get_format(state, fh, fmt->which);
587
588         if (fmt->pad == CSIS_PAD_SOURCE) {
589                 if (mf) {
590                         mutex_lock(&state->lock);
591                         fmt->format = *mf;
592                         mutex_unlock(&state->lock);
593                 }
594                 return 0;
595         }
596         csis_fmt = s5pcsis_try_format(&fmt->format);
597         if (mf) {
598                 mutex_lock(&state->lock);
599                 *mf = fmt->format;
600                 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE)
601                         state->csis_fmt = csis_fmt;
602                 mutex_unlock(&state->lock);
603         }
604         return 0;
605 }
606
607 static int s5pcsis_get_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh,
608                            struct v4l2_subdev_format *fmt)
609 {
610         struct csis_state *state = sd_to_csis_state(sd);
611         struct v4l2_mbus_framefmt *mf;
612
613         mf = __s5pcsis_get_format(state, fh, fmt->which);
614         if (!mf)
615                 return -EINVAL;
616
617         mutex_lock(&state->lock);
618         fmt->format = *mf;
619         mutex_unlock(&state->lock);
620         return 0;
621 }
622
623 static int s5pcsis_s_rx_buffer(struct v4l2_subdev *sd, void *buf,
624                                unsigned int *size)
625 {
626         struct csis_state *state = sd_to_csis_state(sd);
627         unsigned long flags;
628
629         *size = min_t(unsigned int, *size, S5PCSIS_PKTDATA_SIZE);
630
631         spin_lock_irqsave(&state->slock, flags);
632         state->pkt_buf.data = buf;
633         state->pkt_buf.len = *size;
634         spin_unlock_irqrestore(&state->slock, flags);
635
636         return 0;
637 }
638
639 static int s5pcsis_log_status(struct v4l2_subdev *sd)
640 {
641         struct csis_state *state = sd_to_csis_state(sd);
642
643         mutex_lock(&state->lock);
644         s5pcsis_log_counters(state, true);
645         if (debug && (state->flags & ST_POWERED))
646                 dump_regs(state, __func__);
647         mutex_unlock(&state->lock);
648         return 0;
649 }
650
651 static int s5pcsis_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
652 {
653         struct v4l2_mbus_framefmt *format = v4l2_subdev_get_try_format(fh, 0);
654
655         format->colorspace = V4L2_COLORSPACE_JPEG;
656         format->code = s5pcsis_formats[0].code;
657         format->width = S5PCSIS_DEF_PIX_WIDTH;
658         format->height = S5PCSIS_DEF_PIX_HEIGHT;
659         format->field = V4L2_FIELD_NONE;
660
661         return 0;
662 }
663
664 static const struct v4l2_subdev_internal_ops s5pcsis_sd_internal_ops = {
665         .open = s5pcsis_open,
666 };
667
668 static struct v4l2_subdev_core_ops s5pcsis_core_ops = {
669         .s_power = s5pcsis_s_power,
670         .log_status = s5pcsis_log_status,
671 };
672
673 static struct v4l2_subdev_pad_ops s5pcsis_pad_ops = {
674         .enum_mbus_code = s5pcsis_enum_mbus_code,
675         .get_fmt = s5pcsis_get_fmt,
676         .set_fmt = s5pcsis_set_fmt,
677 };
678
679 static struct v4l2_subdev_video_ops s5pcsis_video_ops = {
680         .s_rx_buffer = s5pcsis_s_rx_buffer,
681         .s_stream = s5pcsis_s_stream,
682 };
683
684 static struct v4l2_subdev_ops s5pcsis_subdev_ops = {
685         .core = &s5pcsis_core_ops,
686         .pad = &s5pcsis_pad_ops,
687         .video = &s5pcsis_video_ops,
688 };
689
690 static irqreturn_t s5pcsis_irq_handler(int irq, void *dev_id)
691 {
692         struct csis_state *state = dev_id;
693         struct csis_pktbuf *pktbuf = &state->pkt_buf;
694         unsigned long flags;
695         u32 status;
696
697         status = s5pcsis_read(state, S5PCSIS_INTSRC);
698         spin_lock_irqsave(&state->slock, flags);
699
700         if ((status & S5PCSIS_INTSRC_NON_IMAGE_DATA) && pktbuf->data) {
701                 u32 offset;
702
703                 if (status & S5PCSIS_INTSRC_EVEN)
704                         offset = S5PCSIS_PKTDATA_EVEN;
705                 else
706                         offset = S5PCSIS_PKTDATA_ODD;
707
708                 memcpy(pktbuf->data, state->regs + offset, pktbuf->len);
709                 pktbuf->data = NULL;
710                 rmb();
711         }
712
713         /* Update the event/error counters */
714         if ((status & S5PCSIS_INTSRC_ERRORS) || debug) {
715                 int i;
716                 for (i = 0; i < S5PCSIS_NUM_EVENTS; i++) {
717                         if (!(status & state->events[i].mask))
718                                 continue;
719                         state->events[i].counter++;
720                         v4l2_dbg(2, debug, &state->sd, "%s: %d\n",
721                                  state->events[i].name,
722                                  state->events[i].counter);
723                 }
724                 v4l2_dbg(2, debug, &state->sd, "status: %08x\n", status);
725         }
726         spin_unlock_irqrestore(&state->slock, flags);
727
728         s5pcsis_write(state, S5PCSIS_INTSRC, status);
729         return IRQ_HANDLED;
730 }
731
732 static int s5pcsis_parse_dt(struct platform_device *pdev,
733                             struct csis_state *state)
734 {
735         struct device_node *node = pdev->dev.of_node;
736         struct v4l2_of_endpoint endpoint;
737
738         if (of_property_read_u32(node, "clock-frequency",
739                                  &state->clk_frequency))
740                 state->clk_frequency = DEFAULT_SCLK_CSIS_FREQ;
741         if (of_property_read_u32(node, "bus-width",
742                                  &state->max_num_lanes))
743                 return -EINVAL;
744
745         node = of_graph_get_next_endpoint(node, NULL);
746         if (!node) {
747                 dev_err(&pdev->dev, "No port node at %s\n",
748                                 pdev->dev.of_node->full_name);
749                 return -EINVAL;
750         }
751         /* Get port node and validate MIPI-CSI channel id. */
752         v4l2_of_parse_endpoint(node, &endpoint);
753
754         state->index = endpoint.base.port - FIMC_INPUT_MIPI_CSI2_0;
755         if (state->index < 0 || state->index >= CSIS_MAX_ENTITIES)
756                 return -ENXIO;
757
758         /* Get MIPI CSI-2 bus configration from the endpoint node. */
759         of_property_read_u32(node, "samsung,csis-hs-settle",
760                                         &state->hs_settle);
761         state->wclk_ext = of_property_read_bool(node,
762                                         "samsung,csis-wclk");
763
764         state->num_lanes = endpoint.bus.mipi_csi2.num_data_lanes;
765         of_node_put(node);
766
767         return 0;
768 }
769
770 static int s5pcsis_pm_resume(struct device *dev, bool runtime);
771 static const struct of_device_id s5pcsis_of_match[];
772
773 static int s5pcsis_probe(struct platform_device *pdev)
774 {
775         const struct of_device_id *of_id;
776         const struct csis_drvdata *drv_data;
777         struct device *dev = &pdev->dev;
778         struct resource *mem_res;
779         struct csis_state *state;
780         int ret = -ENOMEM;
781         int i;
782
783         state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
784         if (!state)
785                 return -ENOMEM;
786
787         mutex_init(&state->lock);
788         spin_lock_init(&state->slock);
789         state->pdev = pdev;
790
791         of_id = of_match_node(s5pcsis_of_match, dev->of_node);
792         if (WARN_ON(of_id == NULL))
793                 return -EINVAL;
794
795         drv_data = of_id->data;
796         state->interrupt_mask = drv_data->interrupt_mask;
797
798         ret = s5pcsis_parse_dt(pdev, state);
799         if (ret < 0)
800                 return ret;
801
802         if (state->num_lanes == 0 || state->num_lanes > state->max_num_lanes) {
803                 dev_err(dev, "Unsupported number of data lanes: %d (max. %d)\n",
804                         state->num_lanes, state->max_num_lanes);
805                 return -EINVAL;
806         }
807
808         state->phy = devm_phy_get(dev, "csis");
809         if (IS_ERR(state->phy))
810                 return PTR_ERR(state->phy);
811
812         mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
813         state->regs = devm_ioremap_resource(dev, mem_res);
814         if (IS_ERR(state->regs))
815                 return PTR_ERR(state->regs);
816
817         state->irq = platform_get_irq(pdev, 0);
818         if (state->irq < 0) {
819                 dev_err(dev, "Failed to get irq\n");
820                 return state->irq;
821         }
822
823         for (i = 0; i < CSIS_NUM_SUPPLIES; i++)
824                 state->supplies[i].supply = csis_supply_name[i];
825
826         ret = devm_regulator_bulk_get(dev, CSIS_NUM_SUPPLIES,
827                                  state->supplies);
828         if (ret)
829                 return ret;
830
831         ret = s5pcsis_clk_get(state);
832         if (ret < 0)
833                 return ret;
834
835         if (state->clk_frequency)
836                 ret = clk_set_rate(state->clock[CSIS_CLK_MUX],
837                                    state->clk_frequency);
838         else
839                 dev_WARN(dev, "No clock frequency specified!\n");
840         if (ret < 0)
841                 goto e_clkput;
842
843         ret = clk_enable(state->clock[CSIS_CLK_MUX]);
844         if (ret < 0)
845                 goto e_clkput;
846
847         ret = devm_request_irq(dev, state->irq, s5pcsis_irq_handler,
848                                0, dev_name(dev), state);
849         if (ret) {
850                 dev_err(dev, "Interrupt request failed\n");
851                 goto e_clkdis;
852         }
853
854         v4l2_subdev_init(&state->sd, &s5pcsis_subdev_ops);
855         state->sd.owner = THIS_MODULE;
856         snprintf(state->sd.name, sizeof(state->sd.name), "%s.%d",
857                  CSIS_SUBDEV_NAME, state->index);
858         state->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
859         state->csis_fmt = &s5pcsis_formats[0];
860
861         state->format.code = s5pcsis_formats[0].code;
862         state->format.width = S5PCSIS_DEF_PIX_WIDTH;
863         state->format.height = S5PCSIS_DEF_PIX_HEIGHT;
864
865         state->pads[CSIS_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
866         state->pads[CSIS_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
867         ret = media_entity_init(&state->sd.entity,
868                                 CSIS_PADS_NUM, state->pads, 0);
869         if (ret < 0)
870                 goto e_clkdis;
871
872         /* This allows to retrieve the platform device id by the host driver */
873         v4l2_set_subdevdata(&state->sd, pdev);
874
875         /* .. and a pointer to the subdev. */
876         platform_set_drvdata(pdev, &state->sd);
877         memcpy(state->events, s5pcsis_events, sizeof(state->events));
878
879         pm_runtime_enable(dev);
880         if (!pm_runtime_enabled(dev)) {
881                 ret = s5pcsis_pm_resume(dev, true);
882                 if (ret < 0)
883                         goto e_m_ent;
884         }
885
886         dev_info(&pdev->dev, "lanes: %d, hs_settle: %d, wclk: %d, freq: %u\n",
887                  state->num_lanes, state->hs_settle, state->wclk_ext,
888                  state->clk_frequency);
889         return 0;
890
891 e_m_ent:
892         media_entity_cleanup(&state->sd.entity);
893 e_clkdis:
894         clk_disable(state->clock[CSIS_CLK_MUX]);
895 e_clkput:
896         s5pcsis_clk_put(state);
897         return ret;
898 }
899
900 static int s5pcsis_pm_suspend(struct device *dev, bool runtime)
901 {
902         struct platform_device *pdev = to_platform_device(dev);
903         struct v4l2_subdev *sd = platform_get_drvdata(pdev);
904         struct csis_state *state = sd_to_csis_state(sd);
905         int ret = 0;
906
907         v4l2_dbg(1, debug, sd, "%s: flags: 0x%x\n",
908                  __func__, state->flags);
909
910         mutex_lock(&state->lock);
911         if (state->flags & ST_POWERED) {
912                 s5pcsis_stop_stream(state);
913                 ret = phy_power_off(state->phy);
914                 if (ret)
915                         goto unlock;
916                 ret = regulator_bulk_disable(CSIS_NUM_SUPPLIES,
917                                              state->supplies);
918                 if (ret)
919                         goto unlock;
920                 clk_disable(state->clock[CSIS_CLK_GATE]);
921                 state->flags &= ~ST_POWERED;
922                 if (!runtime)
923                         state->flags |= ST_SUSPENDED;
924         }
925  unlock:
926         mutex_unlock(&state->lock);
927         return ret ? -EAGAIN : 0;
928 }
929
930 static int s5pcsis_pm_resume(struct device *dev, bool runtime)
931 {
932         struct platform_device *pdev = to_platform_device(dev);
933         struct v4l2_subdev *sd = platform_get_drvdata(pdev);
934         struct csis_state *state = sd_to_csis_state(sd);
935         int ret = 0;
936
937         v4l2_dbg(1, debug, sd, "%s: flags: 0x%x\n",
938                  __func__, state->flags);
939
940         mutex_lock(&state->lock);
941         if (!runtime && !(state->flags & ST_SUSPENDED))
942                 goto unlock;
943
944         if (!(state->flags & ST_POWERED)) {
945                 ret = regulator_bulk_enable(CSIS_NUM_SUPPLIES,
946                                             state->supplies);
947                 if (ret)
948                         goto unlock;
949                 ret = phy_power_on(state->phy);
950                 if (!ret) {
951                         state->flags |= ST_POWERED;
952                 } else {
953                         regulator_bulk_disable(CSIS_NUM_SUPPLIES,
954                                                state->supplies);
955                         goto unlock;
956                 }
957                 clk_enable(state->clock[CSIS_CLK_GATE]);
958         }
959         if (state->flags & ST_STREAMING)
960                 s5pcsis_start_stream(state);
961
962         state->flags &= ~ST_SUSPENDED;
963  unlock:
964         mutex_unlock(&state->lock);
965         return ret ? -EAGAIN : 0;
966 }
967
968 #ifdef CONFIG_PM_SLEEP
969 static int s5pcsis_suspend(struct device *dev)
970 {
971         return s5pcsis_pm_suspend(dev, false);
972 }
973
974 static int s5pcsis_resume(struct device *dev)
975 {
976         return s5pcsis_pm_resume(dev, false);
977 }
978 #endif
979
980 #ifdef CONFIG_PM_RUNTIME
981 static int s5pcsis_runtime_suspend(struct device *dev)
982 {
983         return s5pcsis_pm_suspend(dev, true);
984 }
985
986 static int s5pcsis_runtime_resume(struct device *dev)
987 {
988         return s5pcsis_pm_resume(dev, true);
989 }
990 #endif
991
992 static int s5pcsis_remove(struct platform_device *pdev)
993 {
994         struct v4l2_subdev *sd = platform_get_drvdata(pdev);
995         struct csis_state *state = sd_to_csis_state(sd);
996
997         pm_runtime_disable(&pdev->dev);
998         s5pcsis_pm_suspend(&pdev->dev, true);
999         clk_disable(state->clock[CSIS_CLK_MUX]);
1000         pm_runtime_set_suspended(&pdev->dev);
1001         s5pcsis_clk_put(state);
1002
1003         media_entity_cleanup(&state->sd.entity);
1004
1005         return 0;
1006 }
1007
1008 static const struct dev_pm_ops s5pcsis_pm_ops = {
1009         SET_RUNTIME_PM_OPS(s5pcsis_runtime_suspend, s5pcsis_runtime_resume,
1010                            NULL)
1011         SET_SYSTEM_SLEEP_PM_OPS(s5pcsis_suspend, s5pcsis_resume)
1012 };
1013
1014 static const struct csis_drvdata exynos4_csis_drvdata = {
1015         .interrupt_mask = S5PCSIS_INTMSK_EXYNOS4_EN_ALL,
1016 };
1017
1018 static const struct csis_drvdata exynos5_csis_drvdata = {
1019         .interrupt_mask = S5PCSIS_INTMSK_EXYNOS5_EN_ALL,
1020 };
1021
1022 static const struct of_device_id s5pcsis_of_match[] = {
1023         {
1024                 .compatible = "samsung,s5pv210-csis",
1025                 .data = &exynos4_csis_drvdata,
1026         }, {
1027                 .compatible = "samsung,exynos4210-csis",
1028                 .data = &exynos4_csis_drvdata,
1029         }, {
1030                 .compatible = "samsung,exynos5250-csis",
1031                 .data = &exynos5_csis_drvdata,
1032         },
1033         { /* sentinel */ },
1034 };
1035 MODULE_DEVICE_TABLE(of, s5pcsis_of_match);
1036
1037 static struct platform_driver s5pcsis_driver = {
1038         .probe          = s5pcsis_probe,
1039         .remove         = s5pcsis_remove,
1040         .driver         = {
1041                 .of_match_table = s5pcsis_of_match,
1042                 .name           = CSIS_DRIVER_NAME,
1043                 .owner          = THIS_MODULE,
1044                 .pm             = &s5pcsis_pm_ops,
1045         },
1046 };
1047
1048 module_platform_driver(s5pcsis_driver);
1049
1050 MODULE_AUTHOR("Sylwester Nawrocki <s.nawrocki@samsung.com>");
1051 MODULE_DESCRIPTION("Samsung S5P/EXYNOS SoC MIPI-CSI2 receiver driver");
1052 MODULE_LICENSE("GPL");