2 * Samsung S5P/EXYNOS4 SoC series MIPI-CSI receiver driver
4 * Copyright (C) 2011 - 2012 Samsung Electronics Co., Ltd.
5 * Sylwester Nawrocki <s.nawrocki@samsung.com>
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.
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>
18 #include <linux/irq.h>
19 #include <linux/kernel.h>
20 #include <linux/memory.h>
21 #include <linux/module.h>
23 #include <linux/platform_data/mipi-csis.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/regulator/consumer.h>
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29 #include <linux/videodev2.h>
30 #include <media/s5p_fimc.h>
31 #include <media/v4l2-of.h>
32 #include <media/v4l2-subdev.h>
34 #include "mipi-csis.h"
37 module_param(debug
, int, 0644);
38 MODULE_PARM_DESC(debug
, "Debug level (0-2)");
40 /* Register map definition */
42 /* CSIS global control */
43 #define S5PCSIS_CTRL 0x00
44 #define S5PCSIS_CTRL_DPDN_DEFAULT (0 << 31)
45 #define S5PCSIS_CTRL_DPDN_SWAP (1 << 31)
46 #define S5PCSIS_CTRL_ALIGN_32BIT (1 << 20)
47 #define S5PCSIS_CTRL_UPDATE_SHADOW (1 << 16)
48 #define S5PCSIS_CTRL_WCLK_EXTCLK (1 << 8)
49 #define S5PCSIS_CTRL_RESET (1 << 4)
50 #define S5PCSIS_CTRL_ENABLE (1 << 0)
53 #define S5PCSIS_DPHYCTRL 0x04
54 #define S5PCSIS_DPHYCTRL_HSS_MASK (0x1f << 27)
55 #define S5PCSIS_DPHYCTRL_ENABLE (0x1f << 0)
57 #define S5PCSIS_CONFIG 0x08
58 #define S5PCSIS_CFG_FMT_YCBCR422_8BIT (0x1e << 2)
59 #define S5PCSIS_CFG_FMT_RAW8 (0x2a << 2)
60 #define S5PCSIS_CFG_FMT_RAW10 (0x2b << 2)
61 #define S5PCSIS_CFG_FMT_RAW12 (0x2c << 2)
62 /* User defined formats, x = 1...4 */
63 #define S5PCSIS_CFG_FMT_USER(x) ((0x30 + x - 1) << 2)
64 #define S5PCSIS_CFG_FMT_MASK (0x3f << 2)
65 #define S5PCSIS_CFG_NR_LANE_MASK 3
68 #define S5PCSIS_INTMSK 0x10
69 #define S5PCSIS_INTMSK_EN_ALL 0xf000103f
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_ERR_SOT_HS (1 << 12)
75 #define S5PCSIS_INTMSK_ERR_LOST_FS (1 << 5)
76 #define S5PCSIS_INTMSK_ERR_LOST_FE (1 << 4)
77 #define S5PCSIS_INTMSK_ERR_OVER (1 << 3)
78 #define S5PCSIS_INTMSK_ERR_ECC (1 << 2)
79 #define S5PCSIS_INTMSK_ERR_CRC (1 << 1)
80 #define S5PCSIS_INTMSK_ERR_UNKNOWN (1 << 0)
82 /* Interrupt source */
83 #define S5PCSIS_INTSRC 0x14
84 #define S5PCSIS_INTSRC_EVEN_BEFORE (1 << 31)
85 #define S5PCSIS_INTSRC_EVEN_AFTER (1 << 30)
86 #define S5PCSIS_INTSRC_EVEN (0x3 << 30)
87 #define S5PCSIS_INTSRC_ODD_BEFORE (1 << 29)
88 #define S5PCSIS_INTSRC_ODD_AFTER (1 << 28)
89 #define S5PCSIS_INTSRC_ODD (0x3 << 28)
90 #define S5PCSIS_INTSRC_NON_IMAGE_DATA (0xff << 28)
91 #define S5PCSIS_INTSRC_ERR_SOT_HS (0xf << 12)
92 #define S5PCSIS_INTSRC_ERR_LOST_FS (1 << 5)
93 #define S5PCSIS_INTSRC_ERR_LOST_FE (1 << 4)
94 #define S5PCSIS_INTSRC_ERR_OVER (1 << 3)
95 #define S5PCSIS_INTSRC_ERR_ECC (1 << 2)
96 #define S5PCSIS_INTSRC_ERR_CRC (1 << 1)
97 #define S5PCSIS_INTSRC_ERR_UNKNOWN (1 << 0)
98 #define S5PCSIS_INTSRC_ERRORS 0xf03f
100 /* Pixel resolution */
101 #define S5PCSIS_RESOL 0x2c
102 #define CSIS_MAX_PIX_WIDTH 0xffff
103 #define CSIS_MAX_PIX_HEIGHT 0xffff
105 /* Non-image packet data buffers */
106 #define S5PCSIS_PKTDATA_ODD 0x2000
107 #define S5PCSIS_PKTDATA_EVEN 0x3000
108 #define S5PCSIS_PKTDATA_SIZE SZ_4K
115 static char *csi_clock_name
[] = {
116 [CSIS_CLK_MUX
] = "sclk_csis",
117 [CSIS_CLK_GATE
] = "csis",
119 #define NUM_CSIS_CLOCKS ARRAY_SIZE(csi_clock_name)
120 #define DEFAULT_SCLK_CSIS_FREQ 166000000UL
122 static const char * const csis_supply_name
[] = {
123 "vddcore", /* CSIS Core (1.0V, 1.1V or 1.2V) suppply */
124 "vddio", /* CSIS I/O and PLL (1.8V) supply */
126 #define CSIS_NUM_SUPPLIES ARRAY_SIZE(csis_supply_name)
134 struct s5pcsis_event
{
136 const char * const name
;
137 unsigned int counter
;
140 static const struct s5pcsis_event s5pcsis_events
[] = {
142 { S5PCSIS_INTSRC_ERR_SOT_HS
, "SOT Error" },
143 { S5PCSIS_INTSRC_ERR_LOST_FS
, "Lost Frame Start Error" },
144 { S5PCSIS_INTSRC_ERR_LOST_FE
, "Lost Frame End Error" },
145 { S5PCSIS_INTSRC_ERR_OVER
, "FIFO Overflow Error" },
146 { S5PCSIS_INTSRC_ERR_ECC
, "ECC Error" },
147 { S5PCSIS_INTSRC_ERR_CRC
, "CRC Error" },
148 { S5PCSIS_INTSRC_ERR_UNKNOWN
, "Unknown Error" },
149 /* Non-image data receive events */
150 { S5PCSIS_INTSRC_EVEN_BEFORE
, "Non-image data before even frame" },
151 { S5PCSIS_INTSRC_EVEN_AFTER
, "Non-image data after even frame" },
152 { S5PCSIS_INTSRC_ODD_BEFORE
, "Non-image data before odd frame" },
153 { S5PCSIS_INTSRC_ODD_AFTER
, "Non-image data after odd frame" },
155 #define S5PCSIS_NUM_EVENTS ARRAY_SIZE(s5pcsis_events)
163 * struct csis_state - the driver's internal state data structure
164 * @lock: mutex serializing the subdev and power management operations,
165 * protecting @format and @flags members
166 * @pads: CSIS pads array
167 * @sd: v4l2_subdev associated with CSIS device instance
168 * @index: the hardware instance index
169 * @pdev: CSIS platform device
170 * @regs: mmaped I/O registers memory
171 * @supplies: CSIS regulator supplies
172 * @clock: CSIS clocks
173 * @irq: requested s5p-mipi-csis irq number
174 * @flags: the state variable for power and streaming control
175 * @clock_frequency: device bus clock frequency
176 * @hs_settle: HS-RX settle time
177 * @num_lanes: number of MIPI-CSI data lanes used
178 * @max_num_lanes: maximum number of MIPI-CSI data lanes supported
179 * @wclk_ext: CSI wrapper clock: 0 - bus clock, 1 - external SCLK_CAM
180 * @csis_fmt: current CSIS pixel format
181 * @format: common media bus format for the source and sink pad
182 * @slock: spinlock protecting structure members below
183 * @pkt_buf: the frame embedded (non-image) data buffer
184 * @events: MIPI-CSIS event (error) counters
188 struct media_pad pads
[CSIS_PADS_NUM
];
189 struct v4l2_subdev sd
;
191 struct platform_device
*pdev
;
193 struct regulator_bulk_data supplies
[CSIS_NUM_SUPPLIES
];
194 struct clk
*clock
[NUM_CSIS_CLOCKS
];
204 const struct csis_pix_format
*csis_fmt
;
205 struct v4l2_mbus_framefmt format
;
208 struct csis_pktbuf pkt_buf
;
209 struct s5pcsis_event events
[S5PCSIS_NUM_EVENTS
];
213 * struct csis_pix_format - CSIS pixel format description
214 * @pix_width_alignment: horizontal pixel alignment, width will be
215 * multiple of 2^pix_width_alignment
216 * @code: corresponding media bus code
217 * @fmt_reg: S5PCSIS_CONFIG register value
218 * @data_alignment: MIPI-CSI data alignment in bits
220 struct csis_pix_format
{
221 unsigned int pix_width_alignment
;
222 enum v4l2_mbus_pixelcode code
;
227 static const struct csis_pix_format s5pcsis_formats
[] = {
229 .code
= V4L2_MBUS_FMT_VYUY8_2X8
,
230 .fmt_reg
= S5PCSIS_CFG_FMT_YCBCR422_8BIT
,
231 .data_alignment
= 32,
233 .code
= V4L2_MBUS_FMT_JPEG_1X8
,
234 .fmt_reg
= S5PCSIS_CFG_FMT_USER(1),
235 .data_alignment
= 32,
237 .code
= V4L2_MBUS_FMT_S5C_UYVY_JPEG_1X8
,
238 .fmt_reg
= S5PCSIS_CFG_FMT_USER(1),
239 .data_alignment
= 32,
241 .code
= V4L2_MBUS_FMT_SGRBG8_1X8
,
242 .fmt_reg
= S5PCSIS_CFG_FMT_RAW8
,
243 .data_alignment
= 24,
245 .code
= V4L2_MBUS_FMT_SGRBG10_1X10
,
246 .fmt_reg
= S5PCSIS_CFG_FMT_RAW10
,
247 .data_alignment
= 24,
249 .code
= V4L2_MBUS_FMT_SGRBG12_1X12
,
250 .fmt_reg
= S5PCSIS_CFG_FMT_RAW12
,
251 .data_alignment
= 24,
255 #define s5pcsis_write(__csis, __r, __v) writel(__v, __csis->regs + __r)
256 #define s5pcsis_read(__csis, __r) readl(__csis->regs + __r)
258 static struct csis_state
*sd_to_csis_state(struct v4l2_subdev
*sdev
)
260 return container_of(sdev
, struct csis_state
, sd
);
263 static const struct csis_pix_format
*find_csis_format(
264 struct v4l2_mbus_framefmt
*mf
)
268 for (i
= 0; i
< ARRAY_SIZE(s5pcsis_formats
); i
++)
269 if (mf
->code
== s5pcsis_formats
[i
].code
)
270 return &s5pcsis_formats
[i
];
274 static void s5pcsis_enable_interrupts(struct csis_state
*state
, bool on
)
276 u32 val
= s5pcsis_read(state
, S5PCSIS_INTMSK
);
278 val
= on
? val
| S5PCSIS_INTMSK_EN_ALL
:
279 val
& ~S5PCSIS_INTMSK_EN_ALL
;
280 s5pcsis_write(state
, S5PCSIS_INTMSK
, val
);
283 static void s5pcsis_reset(struct csis_state
*state
)
285 u32 val
= s5pcsis_read(state
, S5PCSIS_CTRL
);
287 s5pcsis_write(state
, S5PCSIS_CTRL
, val
| S5PCSIS_CTRL_RESET
);
291 static void s5pcsis_system_enable(struct csis_state
*state
, int on
)
295 val
= s5pcsis_read(state
, S5PCSIS_CTRL
);
297 val
|= S5PCSIS_CTRL_ENABLE
;
299 val
&= ~S5PCSIS_CTRL_ENABLE
;
300 s5pcsis_write(state
, S5PCSIS_CTRL
, val
);
302 val
= s5pcsis_read(state
, S5PCSIS_DPHYCTRL
);
303 val
&= ~S5PCSIS_DPHYCTRL_ENABLE
;
305 mask
= (1 << (state
->num_lanes
+ 1)) - 1;
306 val
|= (mask
& S5PCSIS_DPHYCTRL_ENABLE
);
308 s5pcsis_write(state
, S5PCSIS_DPHYCTRL
, val
);
311 /* Called with the state.lock mutex held */
312 static void __s5pcsis_set_format(struct csis_state
*state
)
314 struct v4l2_mbus_framefmt
*mf
= &state
->format
;
317 v4l2_dbg(1, debug
, &state
->sd
, "fmt: %#x, %d x %d\n",
318 mf
->code
, mf
->width
, mf
->height
);
321 val
= s5pcsis_read(state
, S5PCSIS_CONFIG
);
322 val
= (val
& ~S5PCSIS_CFG_FMT_MASK
) | state
->csis_fmt
->fmt_reg
;
323 s5pcsis_write(state
, S5PCSIS_CONFIG
, val
);
325 /* Pixel resolution */
326 val
= (mf
->width
<< 16) | mf
->height
;
327 s5pcsis_write(state
, S5PCSIS_RESOL
, val
);
330 static void s5pcsis_set_hsync_settle(struct csis_state
*state
, int settle
)
332 u32 val
= s5pcsis_read(state
, S5PCSIS_DPHYCTRL
);
334 val
= (val
& ~S5PCSIS_DPHYCTRL_HSS_MASK
) | (settle
<< 27);
335 s5pcsis_write(state
, S5PCSIS_DPHYCTRL
, val
);
338 static void s5pcsis_set_params(struct csis_state
*state
)
342 val
= s5pcsis_read(state
, S5PCSIS_CONFIG
);
343 val
= (val
& ~S5PCSIS_CFG_NR_LANE_MASK
) | (state
->num_lanes
- 1);
344 s5pcsis_write(state
, S5PCSIS_CONFIG
, val
);
346 __s5pcsis_set_format(state
);
347 s5pcsis_set_hsync_settle(state
, state
->hs_settle
);
349 val
= s5pcsis_read(state
, S5PCSIS_CTRL
);
350 if (state
->csis_fmt
->data_alignment
== 32)
351 val
|= S5PCSIS_CTRL_ALIGN_32BIT
;
353 val
&= ~S5PCSIS_CTRL_ALIGN_32BIT
;
355 val
&= ~S5PCSIS_CTRL_WCLK_EXTCLK
;
357 val
|= S5PCSIS_CTRL_WCLK_EXTCLK
;
358 s5pcsis_write(state
, S5PCSIS_CTRL
, val
);
360 /* Update the shadow register. */
361 val
= s5pcsis_read(state
, S5PCSIS_CTRL
);
362 s5pcsis_write(state
, S5PCSIS_CTRL
, val
| S5PCSIS_CTRL_UPDATE_SHADOW
);
365 static void s5pcsis_clk_put(struct csis_state
*state
)
369 for (i
= 0; i
< NUM_CSIS_CLOCKS
; i
++) {
370 if (IS_ERR(state
->clock
[i
]))
372 clk_unprepare(state
->clock
[i
]);
373 clk_put(state
->clock
[i
]);
374 state
->clock
[i
] = ERR_PTR(-EINVAL
);
378 static int s5pcsis_clk_get(struct csis_state
*state
)
380 struct device
*dev
= &state
->pdev
->dev
;
383 for (i
= 0; i
< NUM_CSIS_CLOCKS
; i
++)
384 state
->clock
[i
] = ERR_PTR(-EINVAL
);
386 for (i
= 0; i
< NUM_CSIS_CLOCKS
; i
++) {
387 state
->clock
[i
] = clk_get(dev
, csi_clock_name
[i
]);
388 if (IS_ERR(state
->clock
[i
])) {
389 ret
= PTR_ERR(state
->clock
[i
]);
392 ret
= clk_prepare(state
->clock
[i
]);
394 clk_put(state
->clock
[i
]);
395 state
->clock
[i
] = ERR_PTR(-EINVAL
);
401 s5pcsis_clk_put(state
);
402 dev_err(dev
, "failed to get clock: %s\n", csi_clock_name
[i
]);
406 static void dump_regs(struct csis_state
*state
, const char *label
)
410 const char * const name
;
413 { 0x04, "DPHYCTRL" },
418 { 0x38, "SDW_CONFIG" },
422 v4l2_info(&state
->sd
, "--- %s ---\n", label
);
424 for (i
= 0; i
< ARRAY_SIZE(registers
); i
++) {
425 u32 cfg
= s5pcsis_read(state
, registers
[i
].offset
);
426 v4l2_info(&state
->sd
, "%10s: 0x%08x\n", registers
[i
].name
, cfg
);
430 static void s5pcsis_start_stream(struct csis_state
*state
)
432 s5pcsis_reset(state
);
433 s5pcsis_set_params(state
);
434 s5pcsis_system_enable(state
, true);
435 s5pcsis_enable_interrupts(state
, true);
438 static void s5pcsis_stop_stream(struct csis_state
*state
)
440 s5pcsis_enable_interrupts(state
, false);
441 s5pcsis_system_enable(state
, false);
444 static void s5pcsis_clear_counters(struct csis_state
*state
)
449 spin_lock_irqsave(&state
->slock
, flags
);
450 for (i
= 0; i
< S5PCSIS_NUM_EVENTS
; i
++)
451 state
->events
[i
].counter
= 0;
452 spin_unlock_irqrestore(&state
->slock
, flags
);
455 static void s5pcsis_log_counters(struct csis_state
*state
, bool non_errors
)
457 int i
= non_errors
? S5PCSIS_NUM_EVENTS
: S5PCSIS_NUM_EVENTS
- 4;
460 spin_lock_irqsave(&state
->slock
, flags
);
462 for (i
--; i
>= 0; i
--) {
463 if (state
->events
[i
].counter
> 0 || debug
)
464 v4l2_info(&state
->sd
, "%s events: %d\n",
465 state
->events
[i
].name
,
466 state
->events
[i
].counter
);
468 spin_unlock_irqrestore(&state
->slock
, flags
);
472 * V4L2 subdev operations
474 static int s5pcsis_s_power(struct v4l2_subdev
*sd
, int on
)
476 struct csis_state
*state
= sd_to_csis_state(sd
);
477 struct device
*dev
= &state
->pdev
->dev
;
480 return pm_runtime_get_sync(dev
);
482 return pm_runtime_put_sync(dev
);
485 static int s5pcsis_s_stream(struct v4l2_subdev
*sd
, int enable
)
487 struct csis_state
*state
= sd_to_csis_state(sd
);
490 v4l2_dbg(1, debug
, sd
, "%s: %d, state: 0x%x\n",
491 __func__
, enable
, state
->flags
);
494 s5pcsis_clear_counters(state
);
495 ret
= pm_runtime_get_sync(&state
->pdev
->dev
);
500 mutex_lock(&state
->lock
);
502 if (state
->flags
& ST_SUSPENDED
) {
506 s5pcsis_start_stream(state
);
507 state
->flags
|= ST_STREAMING
;
509 s5pcsis_stop_stream(state
);
510 state
->flags
&= ~ST_STREAMING
;
512 s5pcsis_log_counters(state
, true);
515 mutex_unlock(&state
->lock
);
517 pm_runtime_put(&state
->pdev
->dev
);
519 return ret
== 1 ? 0 : ret
;
522 static int s5pcsis_enum_mbus_code(struct v4l2_subdev
*sd
,
523 struct v4l2_subdev_fh
*fh
,
524 struct v4l2_subdev_mbus_code_enum
*code
)
526 if (code
->index
>= ARRAY_SIZE(s5pcsis_formats
))
529 code
->code
= s5pcsis_formats
[code
->index
].code
;
533 static struct csis_pix_format
const *s5pcsis_try_format(
534 struct v4l2_mbus_framefmt
*mf
)
536 struct csis_pix_format
const *csis_fmt
;
538 csis_fmt
= find_csis_format(mf
);
539 if (csis_fmt
== NULL
)
540 csis_fmt
= &s5pcsis_formats
[0];
542 mf
->code
= csis_fmt
->code
;
543 v4l_bound_align_image(&mf
->width
, 1, CSIS_MAX_PIX_WIDTH
,
544 csis_fmt
->pix_width_alignment
,
545 &mf
->height
, 1, CSIS_MAX_PIX_HEIGHT
, 1,
550 static struct v4l2_mbus_framefmt
*__s5pcsis_get_format(
551 struct csis_state
*state
, struct v4l2_subdev_fh
*fh
,
552 enum v4l2_subdev_format_whence which
)
554 if (which
== V4L2_SUBDEV_FORMAT_TRY
)
555 return fh
? v4l2_subdev_get_try_format(fh
, 0) : NULL
;
557 return &state
->format
;
560 static int s5pcsis_set_fmt(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
,
561 struct v4l2_subdev_format
*fmt
)
563 struct csis_state
*state
= sd_to_csis_state(sd
);
564 struct csis_pix_format
const *csis_fmt
;
565 struct v4l2_mbus_framefmt
*mf
;
567 mf
= __s5pcsis_get_format(state
, fh
, fmt
->which
);
569 if (fmt
->pad
== CSIS_PAD_SOURCE
) {
571 mutex_lock(&state
->lock
);
573 mutex_unlock(&state
->lock
);
577 csis_fmt
= s5pcsis_try_format(&fmt
->format
);
579 mutex_lock(&state
->lock
);
581 if (fmt
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
)
582 state
->csis_fmt
= csis_fmt
;
583 mutex_unlock(&state
->lock
);
588 static int s5pcsis_get_fmt(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
,
589 struct v4l2_subdev_format
*fmt
)
591 struct csis_state
*state
= sd_to_csis_state(sd
);
592 struct v4l2_mbus_framefmt
*mf
;
594 mf
= __s5pcsis_get_format(state
, fh
, fmt
->which
);
598 mutex_lock(&state
->lock
);
600 mutex_unlock(&state
->lock
);
604 static int s5pcsis_s_rx_buffer(struct v4l2_subdev
*sd
, void *buf
,
607 struct csis_state
*state
= sd_to_csis_state(sd
);
610 *size
= min_t(unsigned int, *size
, S5PCSIS_PKTDATA_SIZE
);
612 spin_lock_irqsave(&state
->slock
, flags
);
613 state
->pkt_buf
.data
= buf
;
614 state
->pkt_buf
.len
= *size
;
615 spin_unlock_irqrestore(&state
->slock
, flags
);
620 static int s5pcsis_log_status(struct v4l2_subdev
*sd
)
622 struct csis_state
*state
= sd_to_csis_state(sd
);
624 mutex_lock(&state
->lock
);
625 s5pcsis_log_counters(state
, true);
626 if (debug
&& (state
->flags
& ST_POWERED
))
627 dump_regs(state
, __func__
);
628 mutex_unlock(&state
->lock
);
632 static int s5pcsis_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
634 struct v4l2_mbus_framefmt
*format
= v4l2_subdev_get_try_format(fh
, 0);
636 format
->colorspace
= V4L2_COLORSPACE_JPEG
;
637 format
->code
= s5pcsis_formats
[0].code
;
638 format
->width
= S5PCSIS_DEF_PIX_WIDTH
;
639 format
->height
= S5PCSIS_DEF_PIX_HEIGHT
;
640 format
->field
= V4L2_FIELD_NONE
;
645 static const struct v4l2_subdev_internal_ops s5pcsis_sd_internal_ops
= {
646 .open
= s5pcsis_open
,
649 static struct v4l2_subdev_core_ops s5pcsis_core_ops
= {
650 .s_power
= s5pcsis_s_power
,
651 .log_status
= s5pcsis_log_status
,
654 static struct v4l2_subdev_pad_ops s5pcsis_pad_ops
= {
655 .enum_mbus_code
= s5pcsis_enum_mbus_code
,
656 .get_fmt
= s5pcsis_get_fmt
,
657 .set_fmt
= s5pcsis_set_fmt
,
660 static struct v4l2_subdev_video_ops s5pcsis_video_ops
= {
661 .s_rx_buffer
= s5pcsis_s_rx_buffer
,
662 .s_stream
= s5pcsis_s_stream
,
665 static struct v4l2_subdev_ops s5pcsis_subdev_ops
= {
666 .core
= &s5pcsis_core_ops
,
667 .pad
= &s5pcsis_pad_ops
,
668 .video
= &s5pcsis_video_ops
,
671 static irqreturn_t
s5pcsis_irq_handler(int irq
, void *dev_id
)
673 struct csis_state
*state
= dev_id
;
674 struct csis_pktbuf
*pktbuf
= &state
->pkt_buf
;
678 status
= s5pcsis_read(state
, S5PCSIS_INTSRC
);
679 spin_lock_irqsave(&state
->slock
, flags
);
681 if ((status
& S5PCSIS_INTSRC_NON_IMAGE_DATA
) && pktbuf
->data
) {
684 if (status
& S5PCSIS_INTSRC_EVEN
)
685 offset
= S5PCSIS_PKTDATA_EVEN
;
687 offset
= S5PCSIS_PKTDATA_ODD
;
689 memcpy(pktbuf
->data
, state
->regs
+ offset
, pktbuf
->len
);
694 /* Update the event/error counters */
695 if ((status
& S5PCSIS_INTSRC_ERRORS
) || debug
) {
697 for (i
= 0; i
< S5PCSIS_NUM_EVENTS
; i
++) {
698 if (!(status
& state
->events
[i
].mask
))
700 state
->events
[i
].counter
++;
701 v4l2_dbg(2, debug
, &state
->sd
, "%s: %d\n",
702 state
->events
[i
].name
,
703 state
->events
[i
].counter
);
705 v4l2_dbg(2, debug
, &state
->sd
, "status: %08x\n", status
);
707 spin_unlock_irqrestore(&state
->slock
, flags
);
709 s5pcsis_write(state
, S5PCSIS_INTSRC
, status
);
713 static int s5pcsis_get_platform_data(struct platform_device
*pdev
,
714 struct csis_state
*state
)
716 struct s5p_platform_mipi_csis
*pdata
= pdev
->dev
.platform_data
;
719 dev_err(&pdev
->dev
, "Platform data not specified\n");
723 state
->clk_frequency
= pdata
->clk_rate
;
724 state
->num_lanes
= pdata
->lanes
;
725 state
->hs_settle
= pdata
->hs_settle
;
726 state
->index
= max(0, pdev
->id
);
727 state
->max_num_lanes
= state
->index
? CSIS1_MAX_LANES
:
733 static int s5pcsis_parse_dt(struct platform_device
*pdev
,
734 struct csis_state
*state
)
736 struct device_node
*node
= pdev
->dev
.of_node
;
737 struct v4l2_of_endpoint endpoint
;
739 if (of_property_read_u32(node
, "clock-frequency",
740 &state
->clk_frequency
))
741 state
->clk_frequency
= DEFAULT_SCLK_CSIS_FREQ
;
742 if (of_property_read_u32(node
, "bus-width",
743 &state
->max_num_lanes
))
746 node
= v4l2_of_get_next_endpoint(node
, NULL
);
748 dev_err(&pdev
->dev
, "No port node at %s\n",
752 /* Get port node and validate MIPI-CSI channel id. */
753 v4l2_of_parse_endpoint(node
, &endpoint
);
755 state
->index
= endpoint
.port
- FIMC_INPUT_MIPI_CSI2_0
;
756 if (state
->index
< 0 || state
->index
>= CSIS_MAX_ENTITIES
)
759 /* Get MIPI CSI-2 bus configration from the endpoint node. */
760 of_property_read_u32(node
, "samsung,csis-hs-settle",
762 state
->wclk_ext
= of_property_read_bool(node
,
763 "samsung,csis-wclk");
765 state
->num_lanes
= endpoint
.bus
.mipi_csi2
.num_data_lanes
;
771 #define s5pcsis_parse_dt(pdev, state) (-ENOSYS)
774 static int s5pcsis_probe(struct platform_device
*pdev
)
776 struct device
*dev
= &pdev
->dev
;
777 struct resource
*mem_res
;
778 struct csis_state
*state
;
782 state
= devm_kzalloc(dev
, sizeof(*state
), GFP_KERNEL
);
786 mutex_init(&state
->lock
);
787 spin_lock_init(&state
->slock
);
791 ret
= s5pcsis_parse_dt(pdev
, state
);
793 ret
= s5pcsis_get_platform_data(pdev
, state
);
797 if (state
->num_lanes
== 0 || state
->num_lanes
> state
->max_num_lanes
) {
798 dev_err(dev
, "Unsupported number of data lanes: %d (max. %d)\n",
799 state
->num_lanes
, state
->max_num_lanes
);
803 mem_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
804 state
->regs
= devm_ioremap_resource(dev
, mem_res
);
805 if (IS_ERR(state
->regs
))
806 return PTR_ERR(state
->regs
);
808 state
->irq
= platform_get_irq(pdev
, 0);
809 if (state
->irq
< 0) {
810 dev_err(dev
, "Failed to get irq\n");
814 for (i
= 0; i
< CSIS_NUM_SUPPLIES
; i
++)
815 state
->supplies
[i
].supply
= csis_supply_name
[i
];
817 ret
= devm_regulator_bulk_get(dev
, CSIS_NUM_SUPPLIES
,
822 ret
= s5pcsis_clk_get(state
);
826 if (state
->clk_frequency
)
827 ret
= clk_set_rate(state
->clock
[CSIS_CLK_MUX
],
828 state
->clk_frequency
);
830 dev_WARN(dev
, "No clock frequency specified!\n");
834 ret
= clk_enable(state
->clock
[CSIS_CLK_MUX
]);
838 ret
= devm_request_irq(dev
, state
->irq
, s5pcsis_irq_handler
,
839 0, dev_name(dev
), state
);
841 dev_err(dev
, "Interrupt request failed\n");
845 v4l2_subdev_init(&state
->sd
, &s5pcsis_subdev_ops
);
846 state
->sd
.owner
= THIS_MODULE
;
847 snprintf(state
->sd
.name
, sizeof(state
->sd
.name
), "%s.%d",
848 CSIS_SUBDEV_NAME
, state
->index
);
849 state
->sd
.flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
850 state
->csis_fmt
= &s5pcsis_formats
[0];
852 state
->format
.code
= s5pcsis_formats
[0].code
;
853 state
->format
.width
= S5PCSIS_DEF_PIX_WIDTH
;
854 state
->format
.height
= S5PCSIS_DEF_PIX_HEIGHT
;
856 state
->pads
[CSIS_PAD_SINK
].flags
= MEDIA_PAD_FL_SINK
;
857 state
->pads
[CSIS_PAD_SOURCE
].flags
= MEDIA_PAD_FL_SOURCE
;
858 ret
= media_entity_init(&state
->sd
.entity
,
859 CSIS_PADS_NUM
, state
->pads
, 0);
863 /* This allows to retrieve the platform device id by the host driver */
864 v4l2_set_subdevdata(&state
->sd
, pdev
);
866 /* .. and a pointer to the subdev. */
867 platform_set_drvdata(pdev
, &state
->sd
);
868 memcpy(state
->events
, s5pcsis_events
, sizeof(state
->events
));
869 pm_runtime_enable(dev
);
871 dev_info(&pdev
->dev
, "lanes: %d, hs_settle: %d, wclk: %d, freq: %u\n",
872 state
->num_lanes
, state
->hs_settle
, state
->wclk_ext
,
873 state
->clk_frequency
);
877 clk_disable(state
->clock
[CSIS_CLK_MUX
]);
879 s5pcsis_clk_put(state
);
883 static int s5pcsis_pm_suspend(struct device
*dev
, bool runtime
)
885 struct platform_device
*pdev
= to_platform_device(dev
);
886 struct v4l2_subdev
*sd
= platform_get_drvdata(pdev
);
887 struct csis_state
*state
= sd_to_csis_state(sd
);
890 v4l2_dbg(1, debug
, sd
, "%s: flags: 0x%x\n",
891 __func__
, state
->flags
);
893 mutex_lock(&state
->lock
);
894 if (state
->flags
& ST_POWERED
) {
895 s5pcsis_stop_stream(state
);
896 ret
= s5p_csis_phy_enable(state
->index
, false);
899 ret
= regulator_bulk_disable(CSIS_NUM_SUPPLIES
,
903 clk_disable(state
->clock
[CSIS_CLK_GATE
]);
904 state
->flags
&= ~ST_POWERED
;
906 state
->flags
|= ST_SUSPENDED
;
909 mutex_unlock(&state
->lock
);
910 return ret
? -EAGAIN
: 0;
913 static int s5pcsis_pm_resume(struct device
*dev
, bool runtime
)
915 struct platform_device
*pdev
= to_platform_device(dev
);
916 struct v4l2_subdev
*sd
= platform_get_drvdata(pdev
);
917 struct csis_state
*state
= sd_to_csis_state(sd
);
920 v4l2_dbg(1, debug
, sd
, "%s: flags: 0x%x\n",
921 __func__
, state
->flags
);
923 mutex_lock(&state
->lock
);
924 if (!runtime
&& !(state
->flags
& ST_SUSPENDED
))
927 if (!(state
->flags
& ST_POWERED
)) {
928 ret
= regulator_bulk_enable(CSIS_NUM_SUPPLIES
,
932 ret
= s5p_csis_phy_enable(state
->index
, true);
934 state
->flags
|= ST_POWERED
;
936 regulator_bulk_disable(CSIS_NUM_SUPPLIES
,
940 clk_enable(state
->clock
[CSIS_CLK_GATE
]);
942 if (state
->flags
& ST_STREAMING
)
943 s5pcsis_start_stream(state
);
945 state
->flags
&= ~ST_SUSPENDED
;
947 mutex_unlock(&state
->lock
);
948 return ret
? -EAGAIN
: 0;
951 #ifdef CONFIG_PM_SLEEP
952 static int s5pcsis_suspend(struct device
*dev
)
954 return s5pcsis_pm_suspend(dev
, false);
957 static int s5pcsis_resume(struct device
*dev
)
959 return s5pcsis_pm_resume(dev
, false);
963 #ifdef CONFIG_PM_RUNTIME
964 static int s5pcsis_runtime_suspend(struct device
*dev
)
966 return s5pcsis_pm_suspend(dev
, true);
969 static int s5pcsis_runtime_resume(struct device
*dev
)
971 return s5pcsis_pm_resume(dev
, true);
975 static int s5pcsis_remove(struct platform_device
*pdev
)
977 struct v4l2_subdev
*sd
= platform_get_drvdata(pdev
);
978 struct csis_state
*state
= sd_to_csis_state(sd
);
980 pm_runtime_disable(&pdev
->dev
);
981 s5pcsis_pm_suspend(&pdev
->dev
, false);
982 clk_disable(state
->clock
[CSIS_CLK_MUX
]);
983 pm_runtime_set_suspended(&pdev
->dev
);
984 s5pcsis_clk_put(state
);
986 media_entity_cleanup(&state
->sd
.entity
);
991 static const struct dev_pm_ops s5pcsis_pm_ops
= {
992 SET_RUNTIME_PM_OPS(s5pcsis_runtime_suspend
, s5pcsis_runtime_resume
,
994 SET_SYSTEM_SLEEP_PM_OPS(s5pcsis_suspend
, s5pcsis_resume
)
997 static const struct of_device_id s5pcsis_of_match
[] = {
998 { .compatible
= "samsung,s5pv210-csis" },
999 { .compatible
= "samsung,exynos4210-csis" },
1002 MODULE_DEVICE_TABLE(of
, s5pcsis_of_match
);
1004 static struct platform_driver s5pcsis_driver
= {
1005 .probe
= s5pcsis_probe
,
1006 .remove
= s5pcsis_remove
,
1008 .of_match_table
= s5pcsis_of_match
,
1009 .name
= CSIS_DRIVER_NAME
,
1010 .owner
= THIS_MODULE
,
1011 .pm
= &s5pcsis_pm_ops
,
1015 module_platform_driver(s5pcsis_driver
);
1017 MODULE_AUTHOR("Sylwester Nawrocki <s.nawrocki@samsung.com>");
1018 MODULE_DESCRIPTION("Samsung S5P/EXYNOS SoC MIPI-CSI2 receiver driver");
1019 MODULE_LICENSE("GPL");