1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Samsung CSIS MIPI CSI-2 receiver driver.
4  *
5  * The Samsung CSIS IP is a MIPI CSI-2 receiver found in various NXP i.MX7 and
6  * i.MX8 SoCs. The i.MX7 features version 3.3 of the IP, while i.MX8 features
7  * version 3.6.3.
8  *
9  * Copyright (C) 2019 Linaro Ltd
10  * Copyright (C) 2015-2016 Freescale Semiconductor, Inc. All Rights Reserved.
11  * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd.
12  *
13  */
14 
15 #include <linux/clk.h>
16 #include <linux/debugfs.h>
17 #include <linux/delay.h>
18 #include <linux/errno.h>
19 #include <linux/interrupt.h>
20 #include <linux/io.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/mutex.h>
24 #include <linux/of.h>
25 #include <linux/of_device.h>
26 #include <linux/platform_device.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/regulator/consumer.h>
29 #include <linux/reset.h>
30 #include <linux/spinlock.h>
31 
32 #include <media/v4l2-common.h>
33 #include <media/v4l2-device.h>
34 #include <media/v4l2-fwnode.h>
35 #include <media/v4l2-mc.h>
36 #include <media/v4l2-subdev.h>
37 
38 #define CSIS_DRIVER_NAME			"imx-mipi-csis"
39 
40 #define CSIS_PAD_SINK				0
41 #define CSIS_PAD_SOURCE				1
42 #define CSIS_PADS_NUM				2
43 
44 #define MIPI_CSIS_DEF_PIX_WIDTH			640
45 #define MIPI_CSIS_DEF_PIX_HEIGHT		480
46 
47 /* Register map definition */
48 
49 /* CSIS common control */
50 #define MIPI_CSIS_CMN_CTRL			0x04
51 #define MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW	BIT(16)
52 #define MIPI_CSIS_CMN_CTRL_INTER_MODE		BIT(10)
53 #define MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW_CTRL	BIT(2)
54 #define MIPI_CSIS_CMN_CTRL_RESET		BIT(1)
55 #define MIPI_CSIS_CMN_CTRL_ENABLE		BIT(0)
56 
57 #define MIPI_CSIS_CMN_CTRL_LANE_NR_OFFSET	8
58 #define MIPI_CSIS_CMN_CTRL_LANE_NR_MASK		(3 << 8)
59 
60 /* CSIS clock control */
61 #define MIPI_CSIS_CLK_CTRL			0x08
62 #define MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH3(x)	((x) << 28)
63 #define MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH2(x)	((x) << 24)
64 #define MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH1(x)	((x) << 20)
65 #define MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH0(x)	((x) << 16)
66 #define MIPI_CSIS_CLK_CTRL_CLKGATE_EN_MSK	(0xf << 4)
67 #define MIPI_CSIS_CLK_CTRL_WCLK_SRC		BIT(0)
68 
69 /* CSIS Interrupt mask */
70 #define MIPI_CSIS_INT_MSK			0x10
71 #define MIPI_CSIS_INT_MSK_EVEN_BEFORE		BIT(31)
72 #define MIPI_CSIS_INT_MSK_EVEN_AFTER		BIT(30)
73 #define MIPI_CSIS_INT_MSK_ODD_BEFORE		BIT(29)
74 #define MIPI_CSIS_INT_MSK_ODD_AFTER		BIT(28)
75 #define MIPI_CSIS_INT_MSK_FRAME_START		BIT(24)
76 #define MIPI_CSIS_INT_MSK_FRAME_END		BIT(20)
77 #define MIPI_CSIS_INT_MSK_ERR_SOT_HS		BIT(16)
78 #define MIPI_CSIS_INT_MSK_ERR_LOST_FS		BIT(12)
79 #define MIPI_CSIS_INT_MSK_ERR_LOST_FE		BIT(8)
80 #define MIPI_CSIS_INT_MSK_ERR_OVER		BIT(4)
81 #define MIPI_CSIS_INT_MSK_ERR_WRONG_CFG		BIT(3)
82 #define MIPI_CSIS_INT_MSK_ERR_ECC		BIT(2)
83 #define MIPI_CSIS_INT_MSK_ERR_CRC		BIT(1)
84 #define MIPI_CSIS_INT_MSK_ERR_UNKNOWN		BIT(0)
85 
86 /* CSIS Interrupt source */
87 #define MIPI_CSIS_INT_SRC			0x14
88 #define MIPI_CSIS_INT_SRC_EVEN_BEFORE		BIT(31)
89 #define MIPI_CSIS_INT_SRC_EVEN_AFTER		BIT(30)
90 #define MIPI_CSIS_INT_SRC_EVEN			BIT(30)
91 #define MIPI_CSIS_INT_SRC_ODD_BEFORE		BIT(29)
92 #define MIPI_CSIS_INT_SRC_ODD_AFTER		BIT(28)
93 #define MIPI_CSIS_INT_SRC_ODD			(0x3 << 28)
94 #define MIPI_CSIS_INT_SRC_NON_IMAGE_DATA	(0xf << 28)
95 #define MIPI_CSIS_INT_SRC_FRAME_START		BIT(24)
96 #define MIPI_CSIS_INT_SRC_FRAME_END		BIT(20)
97 #define MIPI_CSIS_INT_SRC_ERR_SOT_HS		BIT(16)
98 #define MIPI_CSIS_INT_SRC_ERR_LOST_FS		BIT(12)
99 #define MIPI_CSIS_INT_SRC_ERR_LOST_FE		BIT(8)
100 #define MIPI_CSIS_INT_SRC_ERR_OVER		BIT(4)
101 #define MIPI_CSIS_INT_SRC_ERR_WRONG_CFG		BIT(3)
102 #define MIPI_CSIS_INT_SRC_ERR_ECC		BIT(2)
103 #define MIPI_CSIS_INT_SRC_ERR_CRC		BIT(1)
104 #define MIPI_CSIS_INT_SRC_ERR_UNKNOWN		BIT(0)
105 #define MIPI_CSIS_INT_SRC_ERRORS		0xfffff
106 
107 /* D-PHY status control */
108 #define MIPI_CSIS_DPHY_STATUS			0x20
109 #define MIPI_CSIS_DPHY_STATUS_ULPS_DAT		BIT(8)
110 #define MIPI_CSIS_DPHY_STATUS_STOPSTATE_DAT	BIT(4)
111 #define MIPI_CSIS_DPHY_STATUS_ULPS_CLK		BIT(1)
112 #define MIPI_CSIS_DPHY_STATUS_STOPSTATE_CLK	BIT(0)
113 
114 /* D-PHY common control */
115 #define MIPI_CSIS_DPHY_CMN_CTRL			0x24
116 #define MIPI_CSIS_DPHY_CMN_CTRL_HSSETTLE(n)	((n) << 24)
117 #define MIPI_CSIS_DPHY_CMN_CTRL_HSSETTLE_MASK	GENMASK(31, 24)
118 #define MIPI_CSIS_DPHY_CMN_CTRL_CLKSETTLE(n)	((n) << 22)
119 #define MIPI_CSIS_DPHY_CMN_CTRL_CLKSETTLE_MASK	GENMASK(23, 22)
120 #define MIPI_CSIS_DPHY_CMN_CTRL_DPDN_SWAP_CLK	BIT(6)
121 #define MIPI_CSIS_DPHY_CMN_CTRL_DPDN_SWAP_DAT	BIT(5)
122 #define MIPI_CSIS_DPHY_CMN_CTRL_ENABLE_DAT	BIT(1)
123 #define MIPI_CSIS_DPHY_CMN_CTRL_ENABLE_CLK	BIT(0)
124 #define MIPI_CSIS_DPHY_CMN_CTRL_ENABLE		(0x1f << 0)
125 
126 /* D-PHY Master and Slave Control register Low */
127 #define MIPI_CSIS_DPHY_BCTRL_L			0x30
128 #define MIPI_CSIS_DPHY_BCTRL_L_USER_DATA_PATTERN_LOW(n)		(((n) & 3U) << 30)
129 #define MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_715MV		(0 << 28)
130 #define MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_724MV		(1 << 28)
131 #define MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_733MV		(2 << 28)
132 #define MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_706MV		(3 << 28)
133 #define MIPI_CSIS_DPHY_BCTRL_L_BGR_CHOPPER_FREQ_3MHZ		(0 << 27)
134 #define MIPI_CSIS_DPHY_BCTRL_L_BGR_CHOPPER_FREQ_1_5MHZ		(1 << 27)
135 #define MIPI_CSIS_DPHY_BCTRL_L_VREG12_EXTPWR_EN_CTL		BIT(26)
136 #define MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_2V		(0 << 24)
137 #define MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_23V		(1 << 24)
138 #define MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_17V		(2 << 24)
139 #define MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_26V		(3 << 24)
140 #define MIPI_CSIS_DPHY_BCTRL_L_REG_1P2_LVL_SEL			BIT(23)
141 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_HYS_LVL_80MV		(0 << 21)
142 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_HYS_LVL_100MV		(1 << 21)
143 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_HYS_LVL_120MV		(2 << 21)
144 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_HYS_LVL_140MV		(3 << 21)
145 #define MIPI_CSIS_DPHY_BCTRL_L_VREF_SRC_SEL			BIT(20)
146 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_715MV		(0 << 18)
147 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_743MV		(1 << 18)
148 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_650MV		(2 << 18)
149 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_682MV		(3 << 18)
150 #define MIPI_CSIS_DPHY_BCTRL_L_LP_RX_PULSE_REJECT		BIT(17)
151 #define MIPI_CSIS_DPHY_BCTRL_L_MSTRCLK_LP_SLEW_RATE_DOWN_0	(0 << 15)
152 #define MIPI_CSIS_DPHY_BCTRL_L_MSTRCLK_LP_SLEW_RATE_DOWN_15P	(1 << 15)
153 #define MIPI_CSIS_DPHY_BCTRL_L_MSTRCLK_LP_SLEW_RATE_DOWN_30P	(3 << 15)
154 #define MIPI_CSIS_DPHY_BCTRL_L_MSTRCLK_LP_SLEW_RATE_UP		BIT(14)
155 #define MIPI_CSIS_DPHY_BCTRL_L_LP_CD_HYS_60MV			(0 << 13)
156 #define MIPI_CSIS_DPHY_BCTRL_L_LP_CD_HYS_70MV			(1 << 13)
157 #define MIPI_CSIS_DPHY_BCTRL_L_BGR_CHOPPER_EN			BIT(12)
158 #define MIPI_CSIS_DPHY_BCTRL_L_ERRCONTENTION_LP_EN		BIT(11)
159 #define MIPI_CSIS_DPHY_BCTRL_L_TXTRIGGER_CLK_EN			BIT(10)
160 #define MIPI_CSIS_DPHY_BCTRL_L_B_DPHYCTRL(n)			(((n) * 25 / 1000000) << 0)
161 
162 /* D-PHY Master and Slave Control register High */
163 #define MIPI_CSIS_DPHY_BCTRL_H			0x34
164 /* D-PHY Slave Control register Low */
165 #define MIPI_CSIS_DPHY_SCTRL_L			0x38
166 /* D-PHY Slave Control register High */
167 #define MIPI_CSIS_DPHY_SCTRL_H			0x3c
168 
169 /* ISP Configuration register */
170 #define MIPI_CSIS_ISP_CONFIG_CH(n)		(0x40 + (n) * 0x10)
171 #define MIPI_CSIS_ISPCFG_MEM_FULL_GAP_MSK	(0xff << 24)
172 #define MIPI_CSIS_ISPCFG_MEM_FULL_GAP(x)	((x) << 24)
173 #define MIPI_CSIS_ISPCFG_PIXEL_MODE_SINGLE	(0 << 12)
174 #define MIPI_CSIS_ISPCFG_PIXEL_MODE_DUAL	(1 << 12)
175 #define MIPI_CSIS_ISPCFG_PIXEL_MODE_QUAD	(2 << 12)	/* i.MX8M[MNP] only */
176 #define MIPI_CSIS_ISPCFG_PIXEL_MASK		(3 << 12)
177 #define MIPI_CSIS_ISPCFG_ALIGN_32BIT		BIT(11)
178 #define MIPI_CSIS_ISPCFG_FMT(fmt)		((fmt) << 2)
179 #define MIPI_CSIS_ISPCFG_FMT_MASK		(0x3f << 2)
180 
181 /* ISP Image Resolution register */
182 #define MIPI_CSIS_ISP_RESOL_CH(n)		(0x44 + (n) * 0x10)
183 #define CSIS_MAX_PIX_WIDTH			0xffff
184 #define CSIS_MAX_PIX_HEIGHT			0xffff
185 
186 /* ISP SYNC register */
187 #define MIPI_CSIS_ISP_SYNC_CH(n)		(0x48 + (n) * 0x10)
188 #define MIPI_CSIS_ISP_SYNC_HSYNC_LINTV_OFFSET	18
189 #define MIPI_CSIS_ISP_SYNC_VSYNC_SINTV_OFFSET	12
190 #define MIPI_CSIS_ISP_SYNC_VSYNC_EINTV_OFFSET	0
191 
192 /* ISP shadow registers */
193 #define MIPI_CSIS_SDW_CONFIG_CH(n)		(0x80 + (n) * 0x10)
194 #define MIPI_CSIS_SDW_RESOL_CH(n)		(0x84 + (n) * 0x10)
195 #define MIPI_CSIS_SDW_SYNC_CH(n)		(0x88 + (n) * 0x10)
196 
197 /* Debug control register */
198 #define MIPI_CSIS_DBG_CTRL			0xc0
199 #define MIPI_CSIS_DBG_INTR_MSK			0xc4
200 #define MIPI_CSIS_DBG_INTR_MSK_DT_NOT_SUPPORT	BIT(25)
201 #define MIPI_CSIS_DBG_INTR_MSK_DT_IGNORE	BIT(24)
202 #define MIPI_CSIS_DBG_INTR_MSK_ERR_FRAME_SIZE	BIT(20)
203 #define MIPI_CSIS_DBG_INTR_MSK_TRUNCATED_FRAME	BIT(16)
204 #define MIPI_CSIS_DBG_INTR_MSK_EARLY_FE		BIT(12)
205 #define MIPI_CSIS_DBG_INTR_MSK_EARLY_FS		BIT(8)
206 #define MIPI_CSIS_DBG_INTR_MSK_CAM_VSYNC_FALL	BIT(4)
207 #define MIPI_CSIS_DBG_INTR_MSK_CAM_VSYNC_RISE	BIT(0)
208 #define MIPI_CSIS_DBG_INTR_SRC			0xc8
209 #define MIPI_CSIS_DBG_INTR_SRC_DT_NOT_SUPPORT	BIT(25)
210 #define MIPI_CSIS_DBG_INTR_SRC_DT_IGNORE	BIT(24)
211 #define MIPI_CSIS_DBG_INTR_SRC_ERR_FRAME_SIZE	BIT(20)
212 #define MIPI_CSIS_DBG_INTR_SRC_TRUNCATED_FRAME	BIT(16)
213 #define MIPI_CSIS_DBG_INTR_SRC_EARLY_FE		BIT(12)
214 #define MIPI_CSIS_DBG_INTR_SRC_EARLY_FS		BIT(8)
215 #define MIPI_CSIS_DBG_INTR_SRC_CAM_VSYNC_FALL	BIT(4)
216 #define MIPI_CSIS_DBG_INTR_SRC_CAM_VSYNC_RISE	BIT(0)
217 
218 #define MIPI_CSIS_FRAME_COUNTER_CH(n)		(0x0100 + (n) * 4)
219 
220 /* Non-image packet data buffers */
221 #define MIPI_CSIS_PKTDATA_ODD			0x2000
222 #define MIPI_CSIS_PKTDATA_EVEN			0x3000
223 #define MIPI_CSIS_PKTDATA_SIZE			SZ_4K
224 
225 #define DEFAULT_SCLK_CSIS_FREQ			166000000UL
226 
227 /* MIPI CSI-2 Data Types */
228 #define MIPI_CSI2_DATA_TYPE_YUV420_8		0x18
229 #define MIPI_CSI2_DATA_TYPE_YUV420_10		0x19
230 #define MIPI_CSI2_DATA_TYPE_LE_YUV420_8		0x1a
231 #define MIPI_CSI2_DATA_TYPE_CS_YUV420_8		0x1c
232 #define MIPI_CSI2_DATA_TYPE_CS_YUV420_10	0x1d
233 #define MIPI_CSI2_DATA_TYPE_YUV422_8		0x1e
234 #define MIPI_CSI2_DATA_TYPE_YUV422_10		0x1f
235 #define MIPI_CSI2_DATA_TYPE_RGB565		0x22
236 #define MIPI_CSI2_DATA_TYPE_RGB666		0x23
237 #define MIPI_CSI2_DATA_TYPE_RGB888		0x24
238 #define MIPI_CSI2_DATA_TYPE_RAW6		0x28
239 #define MIPI_CSI2_DATA_TYPE_RAW7		0x29
240 #define MIPI_CSI2_DATA_TYPE_RAW8		0x2a
241 #define MIPI_CSI2_DATA_TYPE_RAW10		0x2b
242 #define MIPI_CSI2_DATA_TYPE_RAW12		0x2c
243 #define MIPI_CSI2_DATA_TYPE_RAW14		0x2d
244 #define MIPI_CSI2_DATA_TYPE_USER(x)		(0x30 + (x))
245 
246 enum {
247 	ST_POWERED	= 1,
248 	ST_STREAMING	= 2,
249 	ST_SUSPENDED	= 4,
250 };
251 
252 struct mipi_csis_event {
253 	bool debug;
254 	u32 mask;
255 	const char * const name;
256 	unsigned int counter;
257 };
258 
259 static const struct mipi_csis_event mipi_csis_events[] = {
260 	/* Errors */
261 	{ false, MIPI_CSIS_INT_SRC_ERR_SOT_HS,		"SOT Error" },
262 	{ false, MIPI_CSIS_INT_SRC_ERR_LOST_FS,		"Lost Frame Start Error" },
263 	{ false, MIPI_CSIS_INT_SRC_ERR_LOST_FE,		"Lost Frame End Error" },
264 	{ false, MIPI_CSIS_INT_SRC_ERR_OVER,		"FIFO Overflow Error" },
265 	{ false, MIPI_CSIS_INT_SRC_ERR_WRONG_CFG,	"Wrong Configuration Error" },
266 	{ false, MIPI_CSIS_INT_SRC_ERR_ECC,		"ECC Error" },
267 	{ false, MIPI_CSIS_INT_SRC_ERR_CRC,		"CRC Error" },
268 	{ false, MIPI_CSIS_INT_SRC_ERR_UNKNOWN,		"Unknown Error" },
269 	{ true, MIPI_CSIS_DBG_INTR_SRC_DT_NOT_SUPPORT,	"Data Type Not Supported" },
270 	{ true, MIPI_CSIS_DBG_INTR_SRC_DT_IGNORE,	"Data Type Ignored" },
271 	{ true, MIPI_CSIS_DBG_INTR_SRC_ERR_FRAME_SIZE,	"Frame Size Error" },
272 	{ true, MIPI_CSIS_DBG_INTR_SRC_TRUNCATED_FRAME,	"Truncated Frame" },
273 	{ true, MIPI_CSIS_DBG_INTR_SRC_EARLY_FE,	"Early Frame End" },
274 	{ true, MIPI_CSIS_DBG_INTR_SRC_EARLY_FS,	"Early Frame Start" },
275 	/* Non-image data receive events */
276 	{ false, MIPI_CSIS_INT_SRC_EVEN_BEFORE,		"Non-image data before even frame" },
277 	{ false, MIPI_CSIS_INT_SRC_EVEN_AFTER,		"Non-image data after even frame" },
278 	{ false, MIPI_CSIS_INT_SRC_ODD_BEFORE,		"Non-image data before odd frame" },
279 	{ false, MIPI_CSIS_INT_SRC_ODD_AFTER,		"Non-image data after odd frame" },
280 	/* Frame start/end */
281 	{ false, MIPI_CSIS_INT_SRC_FRAME_START,		"Frame Start" },
282 	{ false, MIPI_CSIS_INT_SRC_FRAME_END,		"Frame End" },
283 	{ true, MIPI_CSIS_DBG_INTR_SRC_CAM_VSYNC_FALL,	"VSYNC Falling Edge" },
284 	{ true, MIPI_CSIS_DBG_INTR_SRC_CAM_VSYNC_RISE,	"VSYNC Rising Edge" },
285 };
286 
287 #define MIPI_CSIS_NUM_EVENTS ARRAY_SIZE(mipi_csis_events)
288 
289 enum mipi_csis_clk {
290 	MIPI_CSIS_CLK_PCLK,
291 	MIPI_CSIS_CLK_WRAP,
292 	MIPI_CSIS_CLK_PHY,
293 	MIPI_CSIS_CLK_AXI,
294 };
295 
296 static const char * const mipi_csis_clk_id[] = {
297 	"pclk",
298 	"wrap",
299 	"phy",
300 	"axi",
301 };
302 
303 enum mipi_csis_version {
304 	MIPI_CSIS_V3_3,
305 	MIPI_CSIS_V3_6_3,
306 };
307 
308 struct mipi_csis_info {
309 	enum mipi_csis_version version;
310 	unsigned int num_clocks;
311 };
312 
313 struct csi_state {
314 	struct device *dev;
315 	void __iomem *regs;
316 	struct clk_bulk_data *clks;
317 	struct reset_control *mrst;
318 	struct regulator *mipi_phy_regulator;
319 	const struct mipi_csis_info *info;
320 
321 	struct v4l2_subdev sd;
322 	struct media_pad pads[CSIS_PADS_NUM];
323 	struct v4l2_async_notifier notifier;
324 	struct v4l2_subdev *src_sd;
325 
326 	struct v4l2_mbus_config_mipi_csi2 bus;
327 	u32 clk_frequency;
328 	u32 hs_settle;
329 	u32 clk_settle;
330 
331 	struct mutex lock;	/* Protect csis_fmt, format_mbus and state */
332 	const struct csis_pix_format *csis_fmt;
333 	struct v4l2_mbus_framefmt format_mbus[CSIS_PADS_NUM];
334 	u32 state;
335 
336 	spinlock_t slock;	/* Protect events */
337 	struct mipi_csis_event events[MIPI_CSIS_NUM_EVENTS];
338 	struct dentry *debugfs_root;
339 	struct {
340 		bool enable;
341 		u32 hs_settle;
342 		u32 clk_settle;
343 	} debug;
344 };
345 
346 /* -----------------------------------------------------------------------------
347  * Format helpers
348  */
349 
350 struct csis_pix_format {
351 	u32 code;
352 	u32 output;
353 	u32 data_type;
354 	u8 width;
355 };
356 
357 static const struct csis_pix_format mipi_csis_formats[] = {
358 	/* YUV formats. */
359 	{
360 		.code = MEDIA_BUS_FMT_UYVY8_1X16,
361 		.output = MEDIA_BUS_FMT_UYVY8_1X16,
362 		.data_type = MIPI_CSI2_DATA_TYPE_YUV422_8,
363 		.width = 16,
364 	},
365 	/* RGB formats. */
366 	{
367 		.code = MEDIA_BUS_FMT_RGB565_1X16,
368 		.output = MEDIA_BUS_FMT_RGB565_1X16,
369 		.data_type = MIPI_CSI2_DATA_TYPE_RGB565,
370 		.width = 16,
371 	}, {
372 		.code = MEDIA_BUS_FMT_BGR888_1X24,
373 		.output = MEDIA_BUS_FMT_RGB888_1X24,
374 		.data_type = MIPI_CSI2_DATA_TYPE_RGB888,
375 		.width = 24,
376 	},
377 	/* RAW (Bayer and greyscale) formats. */
378 	{
379 		.code = MEDIA_BUS_FMT_SBGGR8_1X8,
380 		.output = MEDIA_BUS_FMT_SBGGR8_1X8,
381 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
382 		.width = 8,
383 	}, {
384 		.code = MEDIA_BUS_FMT_SGBRG8_1X8,
385 		.output = MEDIA_BUS_FMT_SGBRG8_1X8,
386 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
387 		.width = 8,
388 	}, {
389 		.code = MEDIA_BUS_FMT_SGRBG8_1X8,
390 		.output = MEDIA_BUS_FMT_SGRBG8_1X8,
391 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
392 		.width = 8,
393 	}, {
394 		.code = MEDIA_BUS_FMT_SRGGB8_1X8,
395 		.output = MEDIA_BUS_FMT_SRGGB8_1X8,
396 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
397 		.width = 8,
398 	}, {
399 		.code = MEDIA_BUS_FMT_Y8_1X8,
400 		.output = MEDIA_BUS_FMT_Y8_1X8,
401 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
402 		.width = 8,
403 	}, {
404 		.code = MEDIA_BUS_FMT_SBGGR10_1X10,
405 		.output = MEDIA_BUS_FMT_SBGGR10_1X10,
406 		.data_type = MIPI_CSI2_DATA_TYPE_RAW10,
407 		.width = 10,
408 	}, {
409 		.code = MEDIA_BUS_FMT_SGBRG10_1X10,
410 		.output = MEDIA_BUS_FMT_SGBRG10_1X10,
411 		.data_type = MIPI_CSI2_DATA_TYPE_RAW10,
412 		.width = 10,
413 	}, {
414 		.code = MEDIA_BUS_FMT_SGRBG10_1X10,
415 		.output = MEDIA_BUS_FMT_SGRBG10_1X10,
416 		.data_type = MIPI_CSI2_DATA_TYPE_RAW10,
417 		.width = 10,
418 	}, {
419 		.code = MEDIA_BUS_FMT_SRGGB10_1X10,
420 		.output = MEDIA_BUS_FMT_SRGGB10_1X10,
421 		.data_type = MIPI_CSI2_DATA_TYPE_RAW10,
422 		.width = 10,
423 	}, {
424 		.code = MEDIA_BUS_FMT_Y10_1X10,
425 		.output = MEDIA_BUS_FMT_Y10_1X10,
426 		.data_type = MIPI_CSI2_DATA_TYPE_RAW10,
427 		.width = 10,
428 	}, {
429 		.code = MEDIA_BUS_FMT_SBGGR12_1X12,
430 		.output = MEDIA_BUS_FMT_SBGGR12_1X12,
431 		.data_type = MIPI_CSI2_DATA_TYPE_RAW12,
432 		.width = 12,
433 	}, {
434 		.code = MEDIA_BUS_FMT_SGBRG12_1X12,
435 		.output = MEDIA_BUS_FMT_SGBRG12_1X12,
436 		.data_type = MIPI_CSI2_DATA_TYPE_RAW12,
437 		.width = 12,
438 	}, {
439 		.code = MEDIA_BUS_FMT_SGRBG12_1X12,
440 		.output = MEDIA_BUS_FMT_SGRBG12_1X12,
441 		.data_type = MIPI_CSI2_DATA_TYPE_RAW12,
442 		.width = 12,
443 	}, {
444 		.code = MEDIA_BUS_FMT_SRGGB12_1X12,
445 		.output = MEDIA_BUS_FMT_SRGGB12_1X12,
446 		.data_type = MIPI_CSI2_DATA_TYPE_RAW12,
447 		.width = 12,
448 	}, {
449 		.code = MEDIA_BUS_FMT_Y12_1X12,
450 		.output = MEDIA_BUS_FMT_Y12_1X12,
451 		.data_type = MIPI_CSI2_DATA_TYPE_RAW12,
452 		.width = 12,
453 	}, {
454 		.code = MEDIA_BUS_FMT_SBGGR14_1X14,
455 		.output = MEDIA_BUS_FMT_SBGGR14_1X14,
456 		.data_type = MIPI_CSI2_DATA_TYPE_RAW14,
457 		.width = 14,
458 	}, {
459 		.code = MEDIA_BUS_FMT_SGBRG14_1X14,
460 		.output = MEDIA_BUS_FMT_SGBRG14_1X14,
461 		.data_type = MIPI_CSI2_DATA_TYPE_RAW14,
462 		.width = 14,
463 	}, {
464 		.code = MEDIA_BUS_FMT_SGRBG14_1X14,
465 		.output = MEDIA_BUS_FMT_SGRBG14_1X14,
466 		.data_type = MIPI_CSI2_DATA_TYPE_RAW14,
467 		.width = 14,
468 	}, {
469 		.code = MEDIA_BUS_FMT_SRGGB14_1X14,
470 		.output = MEDIA_BUS_FMT_SRGGB14_1X14,
471 		.data_type = MIPI_CSI2_DATA_TYPE_RAW14,
472 		.width = 14,
473 	},
474 	/* JPEG */
475 	{
476 		.code = MEDIA_BUS_FMT_JPEG_1X8,
477 		.output = MEDIA_BUS_FMT_JPEG_1X8,
478 		/*
479 		 * Map JPEG_1X8 to the RAW8 datatype.
480 		 *
481 		 * The CSI-2 specification suggests in Annex A "JPEG8 Data
482 		 * Format (informative)" to transmit JPEG data using one of the
483 		 * Data Types aimed to represent arbitrary data, such as the
484 		 * "User Defined Data Type 1" (0x30).
485 		 *
486 		 * However, when configured with a User Defined Data Type, the
487 		 * CSIS outputs data in quad pixel mode regardless of the mode
488 		 * selected in the MIPI_CSIS_ISP_CONFIG_CH register. Neither of
489 		 * the IP cores connected to the CSIS in i.MX SoCs (CSI bridge
490 		 * or ISI) support quad pixel mode, so this will never work in
491 		 * practice.
492 		 *
493 		 * Some sensors (such as the OV5640) send JPEG data using the
494 		 * RAW8 data type. This is usable and works, so map the JPEG
495 		 * format to RAW8. If the CSIS ends up being integrated in an
496 		 * SoC that can support quad pixel mode, this will have to be
497 		 * revisited.
498 		 */
499 		.data_type = MIPI_CSI2_DATA_TYPE_RAW8,
500 		.width = 8,
501 	}
502 };
503 
504 static const struct csis_pix_format *find_csis_format(u32 code)
505 {
506 	unsigned int i;
507 
508 	for (i = 0; i < ARRAY_SIZE(mipi_csis_formats); i++)
509 		if (code == mipi_csis_formats[i].code)
510 			return &mipi_csis_formats[i];
511 	return NULL;
512 }
513 
514 /* -----------------------------------------------------------------------------
515  * Hardware configuration
516  */
517 
518 static inline u32 mipi_csis_read(struct csi_state *state, u32 reg)
519 {
520 	return readl(state->regs + reg);
521 }
522 
523 static inline void mipi_csis_write(struct csi_state *state, u32 reg, u32 val)
524 {
525 	writel(val, state->regs + reg);
526 }
527 
528 static void mipi_csis_enable_interrupts(struct csi_state *state, bool on)
529 {
530 	mipi_csis_write(state, MIPI_CSIS_INT_MSK, on ? 0xffffffff : 0);
531 	mipi_csis_write(state, MIPI_CSIS_DBG_INTR_MSK, on ? 0xffffffff : 0);
532 }
533 
534 static void mipi_csis_sw_reset(struct csi_state *state)
535 {
536 	u32 val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
537 
538 	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL,
539 			val | MIPI_CSIS_CMN_CTRL_RESET);
540 	usleep_range(10, 20);
541 }
542 
543 static void mipi_csis_system_enable(struct csi_state *state, int on)
544 {
545 	u32 val, mask;
546 
547 	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
548 	if (on)
549 		val |= MIPI_CSIS_CMN_CTRL_ENABLE;
550 	else
551 		val &= ~MIPI_CSIS_CMN_CTRL_ENABLE;
552 	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL, val);
553 
554 	val = mipi_csis_read(state, MIPI_CSIS_DPHY_CMN_CTRL);
555 	val &= ~MIPI_CSIS_DPHY_CMN_CTRL_ENABLE;
556 	if (on) {
557 		mask = (1 << (state->bus.num_data_lanes + 1)) - 1;
558 		val |= (mask & MIPI_CSIS_DPHY_CMN_CTRL_ENABLE);
559 	}
560 	mipi_csis_write(state, MIPI_CSIS_DPHY_CMN_CTRL, val);
561 }
562 
563 /* Called with the state.lock mutex held */
564 static void __mipi_csis_set_format(struct csi_state *state)
565 {
566 	struct v4l2_mbus_framefmt *mf = &state->format_mbus[CSIS_PAD_SINK];
567 	u32 val;
568 
569 	/* Color format */
570 	val = mipi_csis_read(state, MIPI_CSIS_ISP_CONFIG_CH(0));
571 	val &= ~(MIPI_CSIS_ISPCFG_ALIGN_32BIT | MIPI_CSIS_ISPCFG_FMT_MASK
572 		| MIPI_CSIS_ISPCFG_PIXEL_MASK);
573 
574 	/*
575 	 * YUV 4:2:2 can be transferred with 8 or 16 bits per clock sample
576 	 * (referred to in the documentation as single and dual pixel modes
577 	 * respectively, although the 8-bit mode transfers half a pixel per
578 	 * clock sample and the 16-bit mode one pixel). While both mode work
579 	 * when the CSIS is connected to a receiver that supports either option,
580 	 * single pixel mode requires clock rates twice as high. As all SoCs
581 	 * that integrate the CSIS can operate in 16-bit bit mode, and some do
582 	 * not support 8-bit mode (this is the case of the i.MX8MP), use dual
583 	 * pixel mode unconditionally.
584 	 *
585 	 * TODO: Verify which other formats require DUAL (or QUAD) modes.
586 	 */
587 	if (state->csis_fmt->data_type == MIPI_CSI2_DATA_TYPE_YUV422_8)
588 		val |= MIPI_CSIS_ISPCFG_PIXEL_MODE_DUAL;
589 
590 	val |= MIPI_CSIS_ISPCFG_FMT(state->csis_fmt->data_type);
591 	mipi_csis_write(state, MIPI_CSIS_ISP_CONFIG_CH(0), val);
592 
593 	/* Pixel resolution */
594 	val = mf->width | (mf->height << 16);
595 	mipi_csis_write(state, MIPI_CSIS_ISP_RESOL_CH(0), val);
596 }
597 
598 static int mipi_csis_calculate_params(struct csi_state *state)
599 {
600 	s64 link_freq;
601 	u32 lane_rate;
602 
603 	/* Calculate the line rate from the pixel rate. */
604 	link_freq = v4l2_get_link_freq(state->src_sd->ctrl_handler,
605 				       state->csis_fmt->width,
606 				       state->bus.num_data_lanes * 2);
607 	if (link_freq < 0) {
608 		dev_err(state->dev, "Unable to obtain link frequency: %d\n",
609 			(int)link_freq);
610 		return link_freq;
611 	}
612 
613 	lane_rate = link_freq * 2;
614 
615 	if (lane_rate < 80000000 || lane_rate > 1500000000) {
616 		dev_dbg(state->dev, "Out-of-bound lane rate %u\n", lane_rate);
617 		return -EINVAL;
618 	}
619 
620 	/*
621 	 * The HSSETTLE counter value is document in a table, but can also
622 	 * easily be calculated. Hardcode the CLKSETTLE value to 0 for now
623 	 * (which is documented as corresponding to CSI-2 v0.87 to v1.00) until
624 	 * we figure out how to compute it correctly.
625 	 */
626 	state->hs_settle = (lane_rate - 5000000) / 45000000;
627 	state->clk_settle = 0;
628 
629 	dev_dbg(state->dev, "lane rate %u, Tclk_settle %u, Ths_settle %u\n",
630 		lane_rate, state->clk_settle, state->hs_settle);
631 
632 	if (state->debug.hs_settle < 0xff) {
633 		dev_dbg(state->dev, "overriding Ths_settle with %u\n",
634 			state->debug.hs_settle);
635 		state->hs_settle = state->debug.hs_settle;
636 	}
637 
638 	if (state->debug.clk_settle < 4) {
639 		dev_dbg(state->dev, "overriding Tclk_settle with %u\n",
640 			state->debug.clk_settle);
641 		state->clk_settle = state->debug.clk_settle;
642 	}
643 
644 	return 0;
645 }
646 
647 static void mipi_csis_set_params(struct csi_state *state)
648 {
649 	int lanes = state->bus.num_data_lanes;
650 	u32 val;
651 
652 	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
653 	val &= ~MIPI_CSIS_CMN_CTRL_LANE_NR_MASK;
654 	val |= (lanes - 1) << MIPI_CSIS_CMN_CTRL_LANE_NR_OFFSET;
655 	if (state->info->version == MIPI_CSIS_V3_3)
656 		val |= MIPI_CSIS_CMN_CTRL_INTER_MODE;
657 	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL, val);
658 
659 	__mipi_csis_set_format(state);
660 
661 	mipi_csis_write(state, MIPI_CSIS_DPHY_CMN_CTRL,
662 			MIPI_CSIS_DPHY_CMN_CTRL_HSSETTLE(state->hs_settle) |
663 			MIPI_CSIS_DPHY_CMN_CTRL_CLKSETTLE(state->clk_settle));
664 
665 	val = (0 << MIPI_CSIS_ISP_SYNC_HSYNC_LINTV_OFFSET)
666 	    | (0 << MIPI_CSIS_ISP_SYNC_VSYNC_SINTV_OFFSET)
667 	    | (0 << MIPI_CSIS_ISP_SYNC_VSYNC_EINTV_OFFSET);
668 	mipi_csis_write(state, MIPI_CSIS_ISP_SYNC_CH(0), val);
669 
670 	val = mipi_csis_read(state, MIPI_CSIS_CLK_CTRL);
671 	val |= MIPI_CSIS_CLK_CTRL_WCLK_SRC;
672 	val |= MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH0(15);
673 	val &= ~MIPI_CSIS_CLK_CTRL_CLKGATE_EN_MSK;
674 	mipi_csis_write(state, MIPI_CSIS_CLK_CTRL, val);
675 
676 	mipi_csis_write(state, MIPI_CSIS_DPHY_BCTRL_L,
677 			MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_715MV |
678 			MIPI_CSIS_DPHY_BCTRL_L_BGR_CHOPPER_FREQ_3MHZ |
679 			MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_2V |
680 			MIPI_CSIS_DPHY_BCTRL_L_LP_RX_HYS_LVL_80MV |
681 			MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_715MV |
682 			MIPI_CSIS_DPHY_BCTRL_L_LP_CD_HYS_60MV |
683 			MIPI_CSIS_DPHY_BCTRL_L_B_DPHYCTRL(20000000));
684 	mipi_csis_write(state, MIPI_CSIS_DPHY_BCTRL_H, 0);
685 
686 	/* Update the shadow register. */
687 	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
688 	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL,
689 			val | MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW |
690 			MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW_CTRL);
691 }
692 
693 static int mipi_csis_clk_enable(struct csi_state *state)
694 {
695 	return clk_bulk_prepare_enable(state->info->num_clocks, state->clks);
696 }
697 
698 static void mipi_csis_clk_disable(struct csi_state *state)
699 {
700 	clk_bulk_disable_unprepare(state->info->num_clocks, state->clks);
701 }
702 
703 static int mipi_csis_clk_get(struct csi_state *state)
704 {
705 	unsigned int i;
706 	int ret;
707 
708 	state->clks = devm_kcalloc(state->dev, state->info->num_clocks,
709 				   sizeof(*state->clks), GFP_KERNEL);
710 
711 	if (!state->clks)
712 		return -ENOMEM;
713 
714 	for (i = 0; i < state->info->num_clocks; i++)
715 		state->clks[i].id = mipi_csis_clk_id[i];
716 
717 	ret = devm_clk_bulk_get(state->dev, state->info->num_clocks,
718 				state->clks);
719 	if (ret < 0)
720 		return ret;
721 
722 	/* Set clock rate */
723 	ret = clk_set_rate(state->clks[MIPI_CSIS_CLK_WRAP].clk,
724 			   state->clk_frequency);
725 	if (ret < 0)
726 		dev_err(state->dev, "set rate=%d failed: %d\n",
727 			state->clk_frequency, ret);
728 
729 	return ret;
730 }
731 
732 static void mipi_csis_start_stream(struct csi_state *state)
733 {
734 	mipi_csis_sw_reset(state);
735 	mipi_csis_set_params(state);
736 	mipi_csis_system_enable(state, true);
737 	mipi_csis_enable_interrupts(state, true);
738 }
739 
740 static void mipi_csis_stop_stream(struct csi_state *state)
741 {
742 	mipi_csis_enable_interrupts(state, false);
743 	mipi_csis_system_enable(state, false);
744 }
745 
746 static irqreturn_t mipi_csis_irq_handler(int irq, void *dev_id)
747 {
748 	struct csi_state *state = dev_id;
749 	unsigned long flags;
750 	unsigned int i;
751 	u32 status;
752 	u32 dbg_status;
753 
754 	status = mipi_csis_read(state, MIPI_CSIS_INT_SRC);
755 	dbg_status = mipi_csis_read(state, MIPI_CSIS_DBG_INTR_SRC);
756 
757 	spin_lock_irqsave(&state->slock, flags);
758 
759 	/* Update the event/error counters */
760 	if ((status & MIPI_CSIS_INT_SRC_ERRORS) || state->debug.enable) {
761 		for (i = 0; i < MIPI_CSIS_NUM_EVENTS; i++) {
762 			struct mipi_csis_event *event = &state->events[i];
763 
764 			if ((!event->debug && (status & event->mask)) ||
765 			    (event->debug && (dbg_status & event->mask)))
766 				event->counter++;
767 		}
768 	}
769 	spin_unlock_irqrestore(&state->slock, flags);
770 
771 	mipi_csis_write(state, MIPI_CSIS_INT_SRC, status);
772 	mipi_csis_write(state, MIPI_CSIS_DBG_INTR_SRC, dbg_status);
773 
774 	return IRQ_HANDLED;
775 }
776 
777 /* -----------------------------------------------------------------------------
778  * PHY regulator and reset
779  */
780 
781 static int mipi_csis_phy_enable(struct csi_state *state)
782 {
783 	if (state->info->version != MIPI_CSIS_V3_3)
784 		return 0;
785 
786 	return regulator_enable(state->mipi_phy_regulator);
787 }
788 
789 static int mipi_csis_phy_disable(struct csi_state *state)
790 {
791 	if (state->info->version != MIPI_CSIS_V3_3)
792 		return 0;
793 
794 	return regulator_disable(state->mipi_phy_regulator);
795 }
796 
797 static void mipi_csis_phy_reset(struct csi_state *state)
798 {
799 	if (state->info->version != MIPI_CSIS_V3_3)
800 		return;
801 
802 	reset_control_assert(state->mrst);
803 	msleep(20);
804 	reset_control_deassert(state->mrst);
805 }
806 
807 static int mipi_csis_phy_init(struct csi_state *state)
808 {
809 	if (state->info->version != MIPI_CSIS_V3_3)
810 		return 0;
811 
812 	/* Get MIPI PHY reset and regulator. */
813 	state->mrst = devm_reset_control_get_exclusive(state->dev, NULL);
814 	if (IS_ERR(state->mrst))
815 		return PTR_ERR(state->mrst);
816 
817 	state->mipi_phy_regulator = devm_regulator_get(state->dev, "phy");
818 	if (IS_ERR(state->mipi_phy_regulator))
819 		return PTR_ERR(state->mipi_phy_regulator);
820 
821 	return regulator_set_voltage(state->mipi_phy_regulator, 1000000,
822 				     1000000);
823 }
824 
825 /* -----------------------------------------------------------------------------
826  * Debug
827  */
828 
829 static void mipi_csis_clear_counters(struct csi_state *state)
830 {
831 	unsigned long flags;
832 	unsigned int i;
833 
834 	spin_lock_irqsave(&state->slock, flags);
835 	for (i = 0; i < MIPI_CSIS_NUM_EVENTS; i++)
836 		state->events[i].counter = 0;
837 	spin_unlock_irqrestore(&state->slock, flags);
838 }
839 
840 static void mipi_csis_log_counters(struct csi_state *state, bool non_errors)
841 {
842 	unsigned int num_events = non_errors ? MIPI_CSIS_NUM_EVENTS
843 				: MIPI_CSIS_NUM_EVENTS - 8;
844 	unsigned long flags;
845 	unsigned int i;
846 
847 	spin_lock_irqsave(&state->slock, flags);
848 
849 	for (i = 0; i < num_events; ++i) {
850 		if (state->events[i].counter > 0 || state->debug.enable)
851 			dev_info(state->dev, "%s events: %d\n",
852 				 state->events[i].name,
853 				 state->events[i].counter);
854 	}
855 	spin_unlock_irqrestore(&state->slock, flags);
856 }
857 
858 static int mipi_csis_dump_regs(struct csi_state *state)
859 {
860 	static const struct {
861 		u32 offset;
862 		const char * const name;
863 	} registers[] = {
864 		{ MIPI_CSIS_CMN_CTRL, "CMN_CTRL" },
865 		{ MIPI_CSIS_CLK_CTRL, "CLK_CTRL" },
866 		{ MIPI_CSIS_INT_MSK, "INT_MSK" },
867 		{ MIPI_CSIS_DPHY_STATUS, "DPHY_STATUS" },
868 		{ MIPI_CSIS_DPHY_CMN_CTRL, "DPHY_CMN_CTRL" },
869 		{ MIPI_CSIS_DPHY_SCTRL_L, "DPHY_SCTRL_L" },
870 		{ MIPI_CSIS_DPHY_SCTRL_H, "DPHY_SCTRL_H" },
871 		{ MIPI_CSIS_ISP_CONFIG_CH(0), "ISP_CONFIG_CH0" },
872 		{ MIPI_CSIS_ISP_RESOL_CH(0), "ISP_RESOL_CH0" },
873 		{ MIPI_CSIS_SDW_CONFIG_CH(0), "SDW_CONFIG_CH0" },
874 		{ MIPI_CSIS_SDW_RESOL_CH(0), "SDW_RESOL_CH0" },
875 		{ MIPI_CSIS_DBG_CTRL, "DBG_CTRL" },
876 		{ MIPI_CSIS_FRAME_COUNTER_CH(0), "FRAME_COUNTER_CH0" },
877 	};
878 
879 	unsigned int i;
880 	u32 cfg;
881 
882 	dev_info(state->dev, "--- REGISTERS ---\n");
883 
884 	for (i = 0; i < ARRAY_SIZE(registers); i++) {
885 		cfg = mipi_csis_read(state, registers[i].offset);
886 		dev_info(state->dev, "%14s: 0x%08x\n", registers[i].name, cfg);
887 	}
888 
889 	return 0;
890 }
891 
892 static int mipi_csis_dump_regs_show(struct seq_file *m, void *private)
893 {
894 	struct csi_state *state = m->private;
895 
896 	return mipi_csis_dump_regs(state);
897 }
898 DEFINE_SHOW_ATTRIBUTE(mipi_csis_dump_regs);
899 
900 static void mipi_csis_debugfs_init(struct csi_state *state)
901 {
902 	state->debug.hs_settle = UINT_MAX;
903 	state->debug.clk_settle = UINT_MAX;
904 
905 	state->debugfs_root = debugfs_create_dir(dev_name(state->dev), NULL);
906 
907 	debugfs_create_bool("debug_enable", 0600, state->debugfs_root,
908 			    &state->debug.enable);
909 	debugfs_create_file("dump_regs", 0600, state->debugfs_root, state,
910 			    &mipi_csis_dump_regs_fops);
911 	debugfs_create_u32("tclk_settle", 0600, state->debugfs_root,
912 			   &state->debug.clk_settle);
913 	debugfs_create_u32("ths_settle", 0600, state->debugfs_root,
914 			   &state->debug.hs_settle);
915 }
916 
917 static void mipi_csis_debugfs_exit(struct csi_state *state)
918 {
919 	debugfs_remove_recursive(state->debugfs_root);
920 }
921 
922 /* -----------------------------------------------------------------------------
923  * V4L2 subdev operations
924  */
925 
926 static struct csi_state *mipi_sd_to_csis_state(struct v4l2_subdev *sdev)
927 {
928 	return container_of(sdev, struct csi_state, sd);
929 }
930 
931 static int mipi_csis_s_stream(struct v4l2_subdev *sd, int enable)
932 {
933 	struct csi_state *state = mipi_sd_to_csis_state(sd);
934 	int ret;
935 
936 	if (enable) {
937 		ret = mipi_csis_calculate_params(state);
938 		if (ret < 0)
939 			return ret;
940 
941 		mipi_csis_clear_counters(state);
942 
943 		ret = pm_runtime_resume_and_get(state->dev);
944 		if (ret < 0)
945 			return ret;
946 
947 		ret = v4l2_subdev_call(state->src_sd, core, s_power, 1);
948 		if (ret < 0 && ret != -ENOIOCTLCMD)
949 			goto done;
950 	}
951 
952 	mutex_lock(&state->lock);
953 
954 	if (enable) {
955 		if (state->state & ST_SUSPENDED) {
956 			ret = -EBUSY;
957 			goto unlock;
958 		}
959 
960 		mipi_csis_start_stream(state);
961 		ret = v4l2_subdev_call(state->src_sd, video, s_stream, 1);
962 		if (ret < 0)
963 			goto unlock;
964 
965 		mipi_csis_log_counters(state, true);
966 
967 		state->state |= ST_STREAMING;
968 	} else {
969 		v4l2_subdev_call(state->src_sd, video, s_stream, 0);
970 		ret = v4l2_subdev_call(state->src_sd, core, s_power, 0);
971 		if (ret == -ENOIOCTLCMD)
972 			ret = 0;
973 		mipi_csis_stop_stream(state);
974 		state->state &= ~ST_STREAMING;
975 		if (state->debug.enable)
976 			mipi_csis_log_counters(state, true);
977 	}
978 
979 unlock:
980 	mutex_unlock(&state->lock);
981 
982 done:
983 	if (!enable || ret < 0)
984 		pm_runtime_put(state->dev);
985 
986 	return ret;
987 }
988 
989 static struct v4l2_mbus_framefmt *
990 mipi_csis_get_format(struct csi_state *state,
991 		     struct v4l2_subdev_state *sd_state,
992 		     enum v4l2_subdev_format_whence which,
993 		     unsigned int pad)
994 {
995 	if (which == V4L2_SUBDEV_FORMAT_TRY)
996 		return v4l2_subdev_get_try_format(&state->sd, sd_state, pad);
997 
998 	return &state->format_mbus[pad];
999 }
1000 
1001 static int mipi_csis_init_cfg(struct v4l2_subdev *sd,
1002 			      struct v4l2_subdev_state *sd_state)
1003 {
1004 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1005 	struct v4l2_mbus_framefmt *fmt_sink;
1006 	struct v4l2_mbus_framefmt *fmt_source;
1007 	enum v4l2_subdev_format_whence which;
1008 
1009 	which = sd_state ? V4L2_SUBDEV_FORMAT_TRY : V4L2_SUBDEV_FORMAT_ACTIVE;
1010 	fmt_sink = mipi_csis_get_format(state, sd_state, which, CSIS_PAD_SINK);
1011 
1012 	fmt_sink->code = MEDIA_BUS_FMT_UYVY8_1X16;
1013 	fmt_sink->width = MIPI_CSIS_DEF_PIX_WIDTH;
1014 	fmt_sink->height = MIPI_CSIS_DEF_PIX_HEIGHT;
1015 	fmt_sink->field = V4L2_FIELD_NONE;
1016 
1017 	fmt_sink->colorspace = V4L2_COLORSPACE_SMPTE170M;
1018 	fmt_sink->xfer_func = V4L2_MAP_XFER_FUNC_DEFAULT(fmt_sink->colorspace);
1019 	fmt_sink->ycbcr_enc = V4L2_MAP_YCBCR_ENC_DEFAULT(fmt_sink->colorspace);
1020 	fmt_sink->quantization =
1021 		V4L2_MAP_QUANTIZATION_DEFAULT(false, fmt_sink->colorspace,
1022 					      fmt_sink->ycbcr_enc);
1023 
1024 	/*
1025 	 * When called from mipi_csis_subdev_init() to initialize the active
1026 	 * configuration, cfg is NULL, which indicates there's no source pad
1027 	 * configuration to set.
1028 	 */
1029 	if (!sd_state)
1030 		return 0;
1031 
1032 	fmt_source = mipi_csis_get_format(state, sd_state, which,
1033 					  CSIS_PAD_SOURCE);
1034 	*fmt_source = *fmt_sink;
1035 
1036 	return 0;
1037 }
1038 
1039 static int mipi_csis_get_fmt(struct v4l2_subdev *sd,
1040 			     struct v4l2_subdev_state *sd_state,
1041 			     struct v4l2_subdev_format *sdformat)
1042 {
1043 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1044 	struct v4l2_mbus_framefmt *fmt;
1045 
1046 	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
1047 				   sdformat->pad);
1048 
1049 	mutex_lock(&state->lock);
1050 	sdformat->format = *fmt;
1051 	mutex_unlock(&state->lock);
1052 
1053 	return 0;
1054 }
1055 
1056 static int mipi_csis_enum_mbus_code(struct v4l2_subdev *sd,
1057 				    struct v4l2_subdev_state *sd_state,
1058 				    struct v4l2_subdev_mbus_code_enum *code)
1059 {
1060 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1061 
1062 	/*
1063 	 * The CSIS can't transcode in any way, the source format is identical
1064 	 * to the sink format.
1065 	 */
1066 	if (code->pad == CSIS_PAD_SOURCE) {
1067 		struct v4l2_mbus_framefmt *fmt;
1068 
1069 		if (code->index > 0)
1070 			return -EINVAL;
1071 
1072 		fmt = mipi_csis_get_format(state, sd_state, code->which,
1073 					   code->pad);
1074 		code->code = fmt->code;
1075 		return 0;
1076 	}
1077 
1078 	if (code->pad != CSIS_PAD_SINK)
1079 		return -EINVAL;
1080 
1081 	if (code->index >= ARRAY_SIZE(mipi_csis_formats))
1082 		return -EINVAL;
1083 
1084 	code->code = mipi_csis_formats[code->index].code;
1085 
1086 	return 0;
1087 }
1088 
1089 static int mipi_csis_set_fmt(struct v4l2_subdev *sd,
1090 			     struct v4l2_subdev_state *sd_state,
1091 			     struct v4l2_subdev_format *sdformat)
1092 {
1093 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1094 	struct csis_pix_format const *csis_fmt;
1095 	struct v4l2_mbus_framefmt *fmt;
1096 	unsigned int align;
1097 
1098 	/*
1099 	 * The CSIS can't transcode in any way, the source format can't be
1100 	 * modified.
1101 	 */
1102 	if (sdformat->pad == CSIS_PAD_SOURCE)
1103 		return mipi_csis_get_fmt(sd, sd_state, sdformat);
1104 
1105 	if (sdformat->pad != CSIS_PAD_SINK)
1106 		return -EINVAL;
1107 
1108 	/*
1109 	 * Validate the media bus code and clamp and align the size.
1110 	 *
1111 	 * The total number of bits per line must be a multiple of 8. We thus
1112 	 * need to align the width for formats that are not multiples of 8
1113 	 * bits.
1114 	 */
1115 	csis_fmt = find_csis_format(sdformat->format.code);
1116 	if (!csis_fmt)
1117 		csis_fmt = &mipi_csis_formats[0];
1118 
1119 	switch (csis_fmt->width % 8) {
1120 	case 0:
1121 		align = 0;
1122 		break;
1123 	case 4:
1124 		align = 1;
1125 		break;
1126 	case 2:
1127 	case 6:
1128 		align = 2;
1129 		break;
1130 	default:
1131 		/* 1, 3, 5, 7 */
1132 		align = 3;
1133 		break;
1134 	}
1135 
1136 	v4l_bound_align_image(&sdformat->format.width, 1,
1137 			      CSIS_MAX_PIX_WIDTH, align,
1138 			      &sdformat->format.height, 1,
1139 			      CSIS_MAX_PIX_HEIGHT, 0, 0);
1140 
1141 	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
1142 				   sdformat->pad);
1143 
1144 	mutex_lock(&state->lock);
1145 
1146 	fmt->code = csis_fmt->code;
1147 	fmt->width = sdformat->format.width;
1148 	fmt->height = sdformat->format.height;
1149 	fmt->colorspace = sdformat->format.colorspace;
1150 	fmt->quantization = sdformat->format.quantization;
1151 	fmt->xfer_func = sdformat->format.xfer_func;
1152 	fmt->ycbcr_enc = sdformat->format.ycbcr_enc;
1153 
1154 	sdformat->format = *fmt;
1155 
1156 	/* Propagate the format from sink to source. */
1157 	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
1158 				   CSIS_PAD_SOURCE);
1159 	*fmt = sdformat->format;
1160 
1161 	/* The format on the source pad might change due to unpacking. */
1162 	fmt->code = csis_fmt->output;
1163 
1164 	/* Store the CSIS format descriptor for active formats. */
1165 	if (sdformat->which == V4L2_SUBDEV_FORMAT_ACTIVE)
1166 		state->csis_fmt = csis_fmt;
1167 
1168 	mutex_unlock(&state->lock);
1169 
1170 	return 0;
1171 }
1172 
1173 static int mipi_csis_log_status(struct v4l2_subdev *sd)
1174 {
1175 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1176 
1177 	mutex_lock(&state->lock);
1178 	mipi_csis_log_counters(state, true);
1179 	if (state->debug.enable && (state->state & ST_POWERED))
1180 		mipi_csis_dump_regs(state);
1181 	mutex_unlock(&state->lock);
1182 
1183 	return 0;
1184 }
1185 
1186 static const struct v4l2_subdev_core_ops mipi_csis_core_ops = {
1187 	.log_status	= mipi_csis_log_status,
1188 };
1189 
1190 static const struct v4l2_subdev_video_ops mipi_csis_video_ops = {
1191 	.s_stream	= mipi_csis_s_stream,
1192 };
1193 
1194 static const struct v4l2_subdev_pad_ops mipi_csis_pad_ops = {
1195 	.init_cfg		= mipi_csis_init_cfg,
1196 	.enum_mbus_code		= mipi_csis_enum_mbus_code,
1197 	.get_fmt		= mipi_csis_get_fmt,
1198 	.set_fmt		= mipi_csis_set_fmt,
1199 };
1200 
1201 static const struct v4l2_subdev_ops mipi_csis_subdev_ops = {
1202 	.core	= &mipi_csis_core_ops,
1203 	.video	= &mipi_csis_video_ops,
1204 	.pad	= &mipi_csis_pad_ops,
1205 };
1206 
1207 /* -----------------------------------------------------------------------------
1208  * Media entity operations
1209  */
1210 
1211 static int mipi_csis_link_setup(struct media_entity *entity,
1212 				const struct media_pad *local_pad,
1213 				const struct media_pad *remote_pad, u32 flags)
1214 {
1215 	struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1216 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1217 	struct v4l2_subdev *remote_sd;
1218 
1219 	dev_dbg(state->dev, "link setup %s -> %s", remote_pad->entity->name,
1220 		local_pad->entity->name);
1221 
1222 	/* We only care about the link to the source. */
1223 	if (!(local_pad->flags & MEDIA_PAD_FL_SINK))
1224 		return 0;
1225 
1226 	remote_sd = media_entity_to_v4l2_subdev(remote_pad->entity);
1227 
1228 	if (flags & MEDIA_LNK_FL_ENABLED) {
1229 		if (state->src_sd)
1230 			return -EBUSY;
1231 
1232 		state->src_sd = remote_sd;
1233 	} else {
1234 		state->src_sd = NULL;
1235 	}
1236 
1237 	return 0;
1238 }
1239 
1240 static const struct media_entity_operations mipi_csis_entity_ops = {
1241 	.link_setup	= mipi_csis_link_setup,
1242 	.link_validate	= v4l2_subdev_link_validate,
1243 	.get_fwnode_pad = v4l2_subdev_get_fwnode_pad_1_to_1,
1244 };
1245 
1246 /* -----------------------------------------------------------------------------
1247  * Async subdev notifier
1248  */
1249 
1250 static struct csi_state *
1251 mipi_notifier_to_csis_state(struct v4l2_async_notifier *n)
1252 {
1253 	return container_of(n, struct csi_state, notifier);
1254 }
1255 
1256 static int mipi_csis_notify_bound(struct v4l2_async_notifier *notifier,
1257 				  struct v4l2_subdev *sd,
1258 				  struct v4l2_async_subdev *asd)
1259 {
1260 	struct csi_state *state = mipi_notifier_to_csis_state(notifier);
1261 	struct media_pad *sink = &state->sd.entity.pads[CSIS_PAD_SINK];
1262 
1263 	return v4l2_create_fwnode_links_to_pad(sd, sink, 0);
1264 }
1265 
1266 static const struct v4l2_async_notifier_operations mipi_csis_notify_ops = {
1267 	.bound = mipi_csis_notify_bound,
1268 };
1269 
1270 static int mipi_csis_async_register(struct csi_state *state)
1271 {
1272 	struct v4l2_fwnode_endpoint vep = {
1273 		.bus_type = V4L2_MBUS_CSI2_DPHY,
1274 	};
1275 	struct v4l2_async_subdev *asd;
1276 	struct fwnode_handle *ep;
1277 	unsigned int i;
1278 	int ret;
1279 
1280 	v4l2_async_nf_init(&state->notifier);
1281 
1282 	ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(state->dev), 0, 0,
1283 					     FWNODE_GRAPH_ENDPOINT_NEXT);
1284 	if (!ep)
1285 		return -ENOTCONN;
1286 
1287 	ret = v4l2_fwnode_endpoint_parse(ep, &vep);
1288 	if (ret)
1289 		goto err_parse;
1290 
1291 	for (i = 0; i < vep.bus.mipi_csi2.num_data_lanes; ++i) {
1292 		if (vep.bus.mipi_csi2.data_lanes[i] != i + 1) {
1293 			dev_err(state->dev,
1294 				"data lanes reordering is not supported");
1295 			ret = -EINVAL;
1296 			goto err_parse;
1297 		}
1298 	}
1299 
1300 	state->bus = vep.bus.mipi_csi2;
1301 
1302 	dev_dbg(state->dev, "data lanes: %d\n", state->bus.num_data_lanes);
1303 	dev_dbg(state->dev, "flags: 0x%08x\n", state->bus.flags);
1304 
1305 	asd = v4l2_async_nf_add_fwnode_remote(&state->notifier, ep,
1306 					      struct v4l2_async_subdev);
1307 	if (IS_ERR(asd)) {
1308 		ret = PTR_ERR(asd);
1309 		goto err_parse;
1310 	}
1311 
1312 	fwnode_handle_put(ep);
1313 
1314 	state->notifier.ops = &mipi_csis_notify_ops;
1315 
1316 	ret = v4l2_async_subdev_nf_register(&state->sd, &state->notifier);
1317 	if (ret)
1318 		return ret;
1319 
1320 	return v4l2_async_register_subdev(&state->sd);
1321 
1322 err_parse:
1323 	fwnode_handle_put(ep);
1324 
1325 	return ret;
1326 }
1327 
1328 /* -----------------------------------------------------------------------------
1329  * Suspend/resume
1330  */
1331 
1332 static int mipi_csis_pm_suspend(struct device *dev, bool runtime)
1333 {
1334 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
1335 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1336 	int ret = 0;
1337 
1338 	mutex_lock(&state->lock);
1339 	if (state->state & ST_POWERED) {
1340 		mipi_csis_stop_stream(state);
1341 		ret = mipi_csis_phy_disable(state);
1342 		if (ret)
1343 			goto unlock;
1344 		mipi_csis_clk_disable(state);
1345 		state->state &= ~ST_POWERED;
1346 		if (!runtime)
1347 			state->state |= ST_SUSPENDED;
1348 	}
1349 
1350 unlock:
1351 	mutex_unlock(&state->lock);
1352 
1353 	return ret ? -EAGAIN : 0;
1354 }
1355 
1356 static int mipi_csis_pm_resume(struct device *dev, bool runtime)
1357 {
1358 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
1359 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1360 	int ret = 0;
1361 
1362 	mutex_lock(&state->lock);
1363 	if (!runtime && !(state->state & ST_SUSPENDED))
1364 		goto unlock;
1365 
1366 	if (!(state->state & ST_POWERED)) {
1367 		ret = mipi_csis_phy_enable(state);
1368 		if (ret)
1369 			goto unlock;
1370 
1371 		state->state |= ST_POWERED;
1372 		mipi_csis_clk_enable(state);
1373 	}
1374 	if (state->state & ST_STREAMING)
1375 		mipi_csis_start_stream(state);
1376 
1377 	state->state &= ~ST_SUSPENDED;
1378 
1379 unlock:
1380 	mutex_unlock(&state->lock);
1381 
1382 	return ret ? -EAGAIN : 0;
1383 }
1384 
1385 static int __maybe_unused mipi_csis_suspend(struct device *dev)
1386 {
1387 	return mipi_csis_pm_suspend(dev, false);
1388 }
1389 
1390 static int __maybe_unused mipi_csis_resume(struct device *dev)
1391 {
1392 	return mipi_csis_pm_resume(dev, false);
1393 }
1394 
1395 static int __maybe_unused mipi_csis_runtime_suspend(struct device *dev)
1396 {
1397 	return mipi_csis_pm_suspend(dev, true);
1398 }
1399 
1400 static int __maybe_unused mipi_csis_runtime_resume(struct device *dev)
1401 {
1402 	return mipi_csis_pm_resume(dev, true);
1403 }
1404 
1405 static const struct dev_pm_ops mipi_csis_pm_ops = {
1406 	SET_RUNTIME_PM_OPS(mipi_csis_runtime_suspend, mipi_csis_runtime_resume,
1407 			   NULL)
1408 	SET_SYSTEM_SLEEP_PM_OPS(mipi_csis_suspend, mipi_csis_resume)
1409 };
1410 
1411 /* -----------------------------------------------------------------------------
1412  * Probe/remove & platform driver
1413  */
1414 
1415 static int mipi_csis_subdev_init(struct csi_state *state)
1416 {
1417 	struct v4l2_subdev *sd = &state->sd;
1418 
1419 	v4l2_subdev_init(sd, &mipi_csis_subdev_ops);
1420 	sd->owner = THIS_MODULE;
1421 	snprintf(sd->name, sizeof(sd->name), "csis-%s",
1422 		 dev_name(state->dev));
1423 
1424 	sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1425 	sd->ctrl_handler = NULL;
1426 
1427 	sd->entity.function = MEDIA_ENT_F_VID_IF_BRIDGE;
1428 	sd->entity.ops = &mipi_csis_entity_ops;
1429 
1430 	sd->dev = state->dev;
1431 
1432 	state->csis_fmt = &mipi_csis_formats[0];
1433 	mipi_csis_init_cfg(sd, NULL);
1434 
1435 	state->pads[CSIS_PAD_SINK].flags = MEDIA_PAD_FL_SINK
1436 					 | MEDIA_PAD_FL_MUST_CONNECT;
1437 	state->pads[CSIS_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE
1438 					   | MEDIA_PAD_FL_MUST_CONNECT;
1439 	return media_entity_pads_init(&sd->entity, CSIS_PADS_NUM,
1440 				      state->pads);
1441 }
1442 
1443 static int mipi_csis_parse_dt(struct csi_state *state)
1444 {
1445 	struct device_node *node = state->dev->of_node;
1446 
1447 	if (of_property_read_u32(node, "clock-frequency",
1448 				 &state->clk_frequency))
1449 		state->clk_frequency = DEFAULT_SCLK_CSIS_FREQ;
1450 
1451 	return 0;
1452 }
1453 
1454 static int mipi_csis_probe(struct platform_device *pdev)
1455 {
1456 	struct device *dev = &pdev->dev;
1457 	struct csi_state *state;
1458 	int irq;
1459 	int ret;
1460 
1461 	state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
1462 	if (!state)
1463 		return -ENOMEM;
1464 
1465 	mutex_init(&state->lock);
1466 	spin_lock_init(&state->slock);
1467 
1468 	state->dev = dev;
1469 	state->info = of_device_get_match_data(dev);
1470 
1471 	memcpy(state->events, mipi_csis_events, sizeof(state->events));
1472 
1473 	/* Parse DT properties. */
1474 	ret = mipi_csis_parse_dt(state);
1475 	if (ret < 0) {
1476 		dev_err(dev, "Failed to parse device tree: %d\n", ret);
1477 		return ret;
1478 	}
1479 
1480 	/* Acquire resources. */
1481 	state->regs = devm_platform_ioremap_resource(pdev, 0);
1482 	if (IS_ERR(state->regs))
1483 		return PTR_ERR(state->regs);
1484 
1485 	irq = platform_get_irq(pdev, 0);
1486 	if (irq < 0)
1487 		return irq;
1488 
1489 	ret = mipi_csis_phy_init(state);
1490 	if (ret < 0)
1491 		return ret;
1492 
1493 	ret = mipi_csis_clk_get(state);
1494 	if (ret < 0)
1495 		return ret;
1496 
1497 	/* Reset PHY and enable the clocks. */
1498 	mipi_csis_phy_reset(state);
1499 
1500 	ret = mipi_csis_clk_enable(state);
1501 	if (ret < 0) {
1502 		dev_err(state->dev, "failed to enable clocks: %d\n", ret);
1503 		return ret;
1504 	}
1505 
1506 	/* Now that the hardware is initialized, request the interrupt. */
1507 	ret = devm_request_irq(dev, irq, mipi_csis_irq_handler, 0,
1508 			       dev_name(dev), state);
1509 	if (ret) {
1510 		dev_err(dev, "Interrupt request failed\n");
1511 		goto disable_clock;
1512 	}
1513 
1514 	/* Initialize and register the subdev. */
1515 	ret = mipi_csis_subdev_init(state);
1516 	if (ret < 0)
1517 		goto disable_clock;
1518 
1519 	platform_set_drvdata(pdev, &state->sd);
1520 
1521 	ret = mipi_csis_async_register(state);
1522 	if (ret < 0) {
1523 		dev_err(dev, "async register failed: %d\n", ret);
1524 		goto cleanup;
1525 	}
1526 
1527 	/* Initialize debugfs. */
1528 	mipi_csis_debugfs_init(state);
1529 
1530 	/* Enable runtime PM. */
1531 	pm_runtime_enable(dev);
1532 	if (!pm_runtime_enabled(dev)) {
1533 		ret = mipi_csis_pm_resume(dev, true);
1534 		if (ret < 0)
1535 			goto unregister_all;
1536 	}
1537 
1538 	dev_info(dev, "lanes: %d, freq: %u\n",
1539 		 state->bus.num_data_lanes, state->clk_frequency);
1540 
1541 	return 0;
1542 
1543 unregister_all:
1544 	mipi_csis_debugfs_exit(state);
1545 cleanup:
1546 	media_entity_cleanup(&state->sd.entity);
1547 	v4l2_async_nf_unregister(&state->notifier);
1548 	v4l2_async_nf_cleanup(&state->notifier);
1549 	v4l2_async_unregister_subdev(&state->sd);
1550 disable_clock:
1551 	mipi_csis_clk_disable(state);
1552 	mutex_destroy(&state->lock);
1553 
1554 	return ret;
1555 }
1556 
1557 static int mipi_csis_remove(struct platform_device *pdev)
1558 {
1559 	struct v4l2_subdev *sd = platform_get_drvdata(pdev);
1560 	struct csi_state *state = mipi_sd_to_csis_state(sd);
1561 
1562 	mipi_csis_debugfs_exit(state);
1563 	v4l2_async_nf_unregister(&state->notifier);
1564 	v4l2_async_nf_cleanup(&state->notifier);
1565 	v4l2_async_unregister_subdev(&state->sd);
1566 
1567 	pm_runtime_disable(&pdev->dev);
1568 	mipi_csis_pm_suspend(&pdev->dev, true);
1569 	mipi_csis_clk_disable(state);
1570 	media_entity_cleanup(&state->sd.entity);
1571 	mutex_destroy(&state->lock);
1572 	pm_runtime_set_suspended(&pdev->dev);
1573 
1574 	return 0;
1575 }
1576 
1577 static const struct of_device_id mipi_csis_of_match[] = {
1578 	{
1579 		.compatible = "fsl,imx7-mipi-csi2",
1580 		.data = &(const struct mipi_csis_info){
1581 			.version = MIPI_CSIS_V3_3,
1582 			.num_clocks = 3,
1583 		},
1584 	}, {
1585 		.compatible = "fsl,imx8mm-mipi-csi2",
1586 		.data = &(const struct mipi_csis_info){
1587 			.version = MIPI_CSIS_V3_6_3,
1588 			.num_clocks = 4,
1589 		},
1590 	},
1591 	{ /* sentinel */ },
1592 };
1593 MODULE_DEVICE_TABLE(of, mipi_csis_of_match);
1594 
1595 static struct platform_driver mipi_csis_driver = {
1596 	.probe		= mipi_csis_probe,
1597 	.remove		= mipi_csis_remove,
1598 	.driver		= {
1599 		.of_match_table = mipi_csis_of_match,
1600 		.name		= CSIS_DRIVER_NAME,
1601 		.pm		= &mipi_csis_pm_ops,
1602 	},
1603 };
1604 
1605 module_platform_driver(mipi_csis_driver);
1606 
1607 MODULE_DESCRIPTION("i.MX7 & i.MX8 MIPI CSI-2 receiver driver");
1608 MODULE_LICENSE("GPL v2");
1609 MODULE_ALIAS("platform:imx-mipi-csi2");
1610