xref: /linux/drivers/media/platform/ti/cal/cal.h (revision 6c8c1406)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * TI Camera Access Layer (CAL)
4  *
5  * Copyright (c) 2015-2020 Texas Instruments Inc.
6  *
7  * Authors:
8  *	Benoit Parrot <bparrot@ti.com>
9  *	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10  */
11 #ifndef __TI_CAL_H__
12 #define __TI_CAL_H__
13 
14 #include <linux/bitfield.h>
15 #include <linux/io.h>
16 #include <linux/list.h>
17 #include <linux/mutex.h>
18 #include <linux/spinlock.h>
19 #include <linux/videodev2.h>
20 #include <linux/wait.h>
21 
22 #include <media/media-device.h>
23 #include <media/v4l2-async.h>
24 #include <media/v4l2-ctrls.h>
25 #include <media/v4l2-dev.h>
26 #include <media/v4l2-device.h>
27 #include <media/v4l2-fwnode.h>
28 #include <media/v4l2-subdev.h>
29 #include <media/videobuf2-v4l2.h>
30 
31 #define CAL_MODULE_NAME			"cal"
32 #define CAL_MAX_NUM_CONTEXT		8
33 #define CAL_NUM_CSI2_PORTS		2
34 
35 /*
36  * The width is limited by the size of the CAL_WR_DMA_XSIZE_j.XSIZE field,
37  * expressed in multiples of 64 bits. The height is limited by the size of the
38  * CAL_CSI2_CTXi_j.CTXi_LINES and CAL_WR_DMA_CTRL_j.YSIZE fields, expressed in
39  * lines.
40  */
41 #define CAL_MIN_WIDTH_BYTES		16
42 #define CAL_MAX_WIDTH_BYTES		(8192 * 8)
43 #define CAL_MIN_HEIGHT_LINES		1
44 #define CAL_MAX_HEIGHT_LINES		16383
45 
46 #define CAL_CAMERARX_PAD_SINK		0
47 #define CAL_CAMERARX_PAD_FIRST_SOURCE	1
48 #define CAL_CAMERARX_NUM_SOURCE_PADS	1
49 #define CAL_CAMERARX_NUM_PADS		(1 + CAL_CAMERARX_NUM_SOURCE_PADS)
50 
51 static inline bool cal_rx_pad_is_sink(u32 pad)
52 {
53 	/* Camera RX has 1 sink pad, and N source pads */
54 	return pad == 0;
55 }
56 
57 static inline bool cal_rx_pad_is_source(u32 pad)
58 {
59 	/* Camera RX has 1 sink pad, and N source pads */
60 	return pad >= CAL_CAMERARX_PAD_FIRST_SOURCE &&
61 	       pad <= CAL_CAMERARX_NUM_SOURCE_PADS;
62 }
63 
64 struct device;
65 struct device_node;
66 struct resource;
67 struct regmap;
68 struct regmap_fied;
69 
70 /* CTRL_CORE_CAMERRX_CONTROL register field id */
71 enum cal_camerarx_field {
72 	F_CTRLCLKEN,
73 	F_CAMMODE,
74 	F_LANEENABLE,
75 	F_CSI_MODE,
76 	F_MAX_FIELDS,
77 };
78 
79 enum cal_dma_state {
80 	CAL_DMA_RUNNING,
81 	CAL_DMA_STOP_REQUESTED,
82 	CAL_DMA_STOP_PENDING,
83 	CAL_DMA_STOPPED,
84 };
85 
86 struct cal_format_info {
87 	u32	fourcc;
88 	u32	code;
89 	/* Bits per pixel */
90 	u8	bpp;
91 	bool	meta;
92 };
93 
94 /* buffer for one video frame */
95 struct cal_buffer {
96 	/* common v4l buffer stuff -- must be first */
97 	struct vb2_v4l2_buffer	vb;
98 	struct list_head	list;
99 };
100 
101 /**
102  * struct cal_dmaqueue - Queue of DMA buffers
103  */
104 struct cal_dmaqueue {
105 	/**
106 	 * @lock: Protects all fields in the cal_dmaqueue.
107 	 */
108 	spinlock_t		lock;
109 
110 	/**
111 	 * @queue: Buffers queued to the driver and waiting for DMA processing.
112 	 * Buffers are added to the list by the vb2 .buffer_queue() operation,
113 	 * and move to @pending when they are scheduled for the next frame.
114 	 */
115 	struct list_head	queue;
116 	/**
117 	 * @pending: Buffer provided to the hardware to DMA the next frame.
118 	 * Will move to @active at the end of the current frame.
119 	 */
120 	struct cal_buffer	*pending;
121 	/**
122 	 * @active: Buffer being DMA'ed to for the current frame. Will be
123 	 * retired and given back to vb2 at the end of the current frame if
124 	 * a @pending buffer has been scheduled to replace it.
125 	 */
126 	struct cal_buffer	*active;
127 
128 	/** @state: State of the DMA engine. */
129 	enum cal_dma_state	state;
130 	/** @wait: Wait queue to signal a @state transition to CAL_DMA_STOPPED. */
131 	struct wait_queue_head	wait;
132 };
133 
134 struct cal_camerarx_data {
135 	struct {
136 		unsigned int lsb;
137 		unsigned int msb;
138 	} fields[F_MAX_FIELDS];
139 	unsigned int num_lanes;
140 };
141 
142 struct cal_data {
143 	const struct cal_camerarx_data *camerarx;
144 	unsigned int num_csi2_phy;
145 	unsigned int flags;
146 };
147 
148 /*
149  * The Camera Adaptation Layer (CAL) module is paired with one or more complex
150  * I/O PHYs (CAMERARX). It contains multiple instances of CSI-2, processing and
151  * DMA contexts.
152  *
153  * The cal_dev structure represents the whole subsystem, including the CAL and
154  * the CAMERARX instances. Instances of struct cal_dev are named cal through the
155  * driver.
156  *
157  * The cal_camerarx structure represents one CAMERARX instance. Instances of
158  * cal_camerarx are named phy through the driver.
159  *
160  * The cal_ctx structure represents the combination of one CSI-2 context, one
161  * processing context and one DMA context. Instance of struct cal_ctx are named
162  * ctx through the driver.
163  */
164 
165 struct cal_camerarx {
166 	void __iomem		*base;
167 	struct resource		*res;
168 	struct regmap_field	*fields[F_MAX_FIELDS];
169 
170 	struct cal_dev		*cal;
171 	unsigned int		instance;
172 
173 	struct v4l2_fwnode_endpoint	endpoint;
174 	struct device_node	*source_ep_node;
175 	struct device_node	*source_node;
176 	struct v4l2_subdev	*source;
177 
178 	struct v4l2_subdev	subdev;
179 	struct media_pad	pads[CAL_CAMERARX_NUM_PADS];
180 	struct v4l2_mbus_framefmt	formats[CAL_CAMERARX_NUM_PADS];
181 
182 	/* protects the vc_* fields below */
183 	spinlock_t		vc_lock;
184 	u8			vc_enable_count[4];
185 	u16			vc_frame_number[4];
186 	u32			vc_sequence[4];
187 
188 	/*
189 	 * Lock for camerarx ops. Protects:
190 	 * - formats
191 	 * - enable_count
192 	 */
193 	struct mutex		mutex;
194 
195 	unsigned int		enable_count;
196 };
197 
198 struct cal_dev {
199 	struct clk		*fclk;
200 	int			irq;
201 	void __iomem		*base;
202 	struct resource		*res;
203 	struct device		*dev;
204 
205 	const struct cal_data	*data;
206 	u32			revision;
207 
208 	/* Control Module handle */
209 	struct regmap		*syscon_camerrx;
210 	u32			syscon_camerrx_offset;
211 
212 	/* Camera Core Module handle */
213 	struct cal_camerarx	*phy[CAL_NUM_CSI2_PORTS];
214 
215 	u32 num_contexts;
216 	struct cal_ctx		*ctx[CAL_MAX_NUM_CONTEXT];
217 
218 	struct media_device	mdev;
219 	struct v4l2_device	v4l2_dev;
220 	struct v4l2_async_notifier notifier;
221 
222 	unsigned long		reserved_pix_proc_mask;
223 };
224 
225 /*
226  * There is one cal_ctx structure for each camera core context.
227  */
228 struct cal_ctx {
229 	struct v4l2_ctrl_handler ctrl_handler;
230 	struct video_device	vdev;
231 	struct media_pad	pad;
232 
233 	struct cal_dev		*cal;
234 	struct cal_camerarx	*phy;
235 
236 	/* v4l2_ioctl mutex */
237 	struct mutex		mutex;
238 
239 	struct cal_dmaqueue	dma;
240 
241 	/* video capture */
242 	const struct cal_format_info	*fmtinfo;
243 	/* Used to store current pixel format */
244 	struct v4l2_format	v_fmt;
245 
246 	/* Current subdev enumerated format (legacy) */
247 	const struct cal_format_info	**active_fmt;
248 	unsigned int		num_active_fmt;
249 
250 	struct vb2_queue	vb_vidq;
251 	u8			dma_ctx;
252 	u8			cport;
253 	u8			csi2_ctx;
254 	u8			pix_proc;
255 	u8			vc;
256 	u8			datatype;
257 
258 	bool			use_pix_proc;
259 };
260 
261 extern unsigned int cal_debug;
262 extern int cal_video_nr;
263 extern bool cal_mc_api;
264 
265 #define cal_dbg(level, cal, fmt, arg...)				\
266 	do {								\
267 		if (cal_debug >= (level))				\
268 			dev_printk(KERN_DEBUG, (cal)->dev, fmt, ##arg);	\
269 	} while (0)
270 #define cal_info(cal, fmt, arg...)					\
271 	dev_info((cal)->dev, fmt, ##arg)
272 #define cal_err(cal, fmt, arg...)					\
273 	dev_err((cal)->dev, fmt, ##arg)
274 
275 #define ctx_dbg(level, ctx, fmt, arg...)				\
276 	cal_dbg(level, (ctx)->cal, "ctx%u: " fmt, (ctx)->dma_ctx, ##arg)
277 #define ctx_info(ctx, fmt, arg...)					\
278 	cal_info((ctx)->cal, "ctx%u: " fmt, (ctx)->dma_ctx, ##arg)
279 #define ctx_err(ctx, fmt, arg...)					\
280 	cal_err((ctx)->cal, "ctx%u: " fmt, (ctx)->dma_ctx, ##arg)
281 
282 #define phy_dbg(level, phy, fmt, arg...)				\
283 	cal_dbg(level, (phy)->cal, "phy%u: " fmt, (phy)->instance, ##arg)
284 #define phy_info(phy, fmt, arg...)					\
285 	cal_info((phy)->cal, "phy%u: " fmt, (phy)->instance, ##arg)
286 #define phy_err(phy, fmt, arg...)					\
287 	cal_err((phy)->cal, "phy%u: " fmt, (phy)->instance, ##arg)
288 
289 static inline u32 cal_read(struct cal_dev *cal, u32 offset)
290 {
291 	return ioread32(cal->base + offset);
292 }
293 
294 static inline void cal_write(struct cal_dev *cal, u32 offset, u32 val)
295 {
296 	iowrite32(val, cal->base + offset);
297 }
298 
299 static __always_inline u32 cal_read_field(struct cal_dev *cal, u32 offset, u32 mask)
300 {
301 	return FIELD_GET(mask, cal_read(cal, offset));
302 }
303 
304 static inline void cal_write_field(struct cal_dev *cal, u32 offset, u32 value,
305 				   u32 mask)
306 {
307 	u32 val = cal_read(cal, offset);
308 
309 	val &= ~mask;
310 	val |= (value << __ffs(mask)) & mask;
311 	cal_write(cal, offset, val);
312 }
313 
314 static inline void cal_set_field(u32 *valp, u32 field, u32 mask)
315 {
316 	u32 val = *valp;
317 
318 	val &= ~mask;
319 	val |= (field << __ffs(mask)) & mask;
320 	*valp = val;
321 }
322 
323 extern const struct cal_format_info cal_formats[];
324 extern const unsigned int cal_num_formats;
325 const struct cal_format_info *cal_format_by_fourcc(u32 fourcc);
326 const struct cal_format_info *cal_format_by_code(u32 code);
327 
328 void cal_quickdump_regs(struct cal_dev *cal);
329 
330 int cal_camerarx_get_remote_frame_desc(struct cal_camerarx *phy,
331 				       struct v4l2_mbus_frame_desc *desc);
332 void cal_camerarx_disable(struct cal_camerarx *phy);
333 void cal_camerarx_i913_errata(struct cal_camerarx *phy);
334 struct cal_camerarx *cal_camerarx_create(struct cal_dev *cal,
335 					 unsigned int instance);
336 void cal_camerarx_destroy(struct cal_camerarx *phy);
337 
338 int cal_ctx_prepare(struct cal_ctx *ctx);
339 void cal_ctx_unprepare(struct cal_ctx *ctx);
340 void cal_ctx_set_dma_addr(struct cal_ctx *ctx, dma_addr_t addr);
341 void cal_ctx_start(struct cal_ctx *ctx);
342 void cal_ctx_stop(struct cal_ctx *ctx);
343 
344 int cal_ctx_v4l2_register(struct cal_ctx *ctx);
345 void cal_ctx_v4l2_unregister(struct cal_ctx *ctx);
346 int cal_ctx_v4l2_init(struct cal_ctx *ctx);
347 void cal_ctx_v4l2_cleanup(struct cal_ctx *ctx);
348 
349 #endif /* __TI_CAL_H__ */
350