xref: /linux/drivers/gpu/drm/vc4/vc4_drv.h (revision 30f8c74ca9b7b3a2db55f6bb1d2e9f8c47a79f94)
1d2912cb1SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */
2c8b75bcaSEric Anholt /*
3c8b75bcaSEric Anholt  * Copyright (C) 2015 Broadcom
4c8b75bcaSEric Anholt  */
56a88752cSMaxime Ripard #ifndef _VC4_DRV_H_
66a88752cSMaxime Ripard #define _VC4_DRV_H_
7c8b75bcaSEric Anholt 
8fd6d6d80SSam Ravnborg #include <linux/delay.h>
9fd6d6d80SSam Ravnborg #include <linux/refcount.h>
10fd6d6d80SSam Ravnborg #include <linux/uaccess.h>
11fd6d6d80SSam Ravnborg 
12fd6d6d80SSam Ravnborg #include <drm/drm_atomic.h>
13fd6d6d80SSam Ravnborg #include <drm/drm_debugfs.h>
14fd6d6d80SSam Ravnborg #include <drm/drm_device.h>
159338203cSLaurent Pinchart #include <drm/drm_encoder.h>
16b7e8e25bSMasahiro Yamada #include <drm/drm_gem_cma_helper.h>
171c80be48SMaxime Ripard #include <drm/drm_managed.h>
18fd6d6d80SSam Ravnborg #include <drm/drm_mm.h>
19fd6d6d80SSam Ravnborg #include <drm/drm_modeset_lock.h>
209338203cSLaurent Pinchart 
2165101d8cSBoris Brezillon #include "uapi/drm/vc4_drm.h"
2265101d8cSBoris Brezillon 
23fd6d6d80SSam Ravnborg struct drm_device;
24fd6d6d80SSam Ravnborg struct drm_gem_object;
25fd6d6d80SSam Ravnborg 
26f3099462SEric Anholt /* Don't forget to update vc4_bo.c: bo_type_names[] when adding to
27f3099462SEric Anholt  * this.
28f3099462SEric Anholt  */
29f3099462SEric Anholt enum vc4_kernel_bo_type {
30f3099462SEric Anholt 	/* Any kernel allocation (gem_create_object hook) before it
31f3099462SEric Anholt 	 * gets another type set.
32f3099462SEric Anholt 	 */
33f3099462SEric Anholt 	VC4_BO_TYPE_KERNEL,
34f3099462SEric Anholt 	VC4_BO_TYPE_V3D,
35f3099462SEric Anholt 	VC4_BO_TYPE_V3D_SHADER,
36f3099462SEric Anholt 	VC4_BO_TYPE_DUMB,
37f3099462SEric Anholt 	VC4_BO_TYPE_BIN,
38f3099462SEric Anholt 	VC4_BO_TYPE_RCL,
39f3099462SEric Anholt 	VC4_BO_TYPE_BCL,
40f3099462SEric Anholt 	VC4_BO_TYPE_KERNEL_CACHE,
41f3099462SEric Anholt 	VC4_BO_TYPE_COUNT
42f3099462SEric Anholt };
43f3099462SEric Anholt 
4465101d8cSBoris Brezillon /* Performance monitor object. The perform lifetime is controlled by userspace
4565101d8cSBoris Brezillon  * using perfmon related ioctls. A perfmon can be attached to a submit_cl
4665101d8cSBoris Brezillon  * request, and when this is the case, HW perf counters will be activated just
4765101d8cSBoris Brezillon  * before the submit_cl is submitted to the GPU and disabled when the job is
4865101d8cSBoris Brezillon  * done. This way, only events related to a specific job will be counted.
4965101d8cSBoris Brezillon  */
5065101d8cSBoris Brezillon struct vc4_perfmon {
51*30f8c74cSMaxime Ripard 	struct vc4_dev *dev;
52*30f8c74cSMaxime Ripard 
5365101d8cSBoris Brezillon 	/* Tracks the number of users of the perfmon, when this counter reaches
5465101d8cSBoris Brezillon 	 * zero the perfmon is destroyed.
5565101d8cSBoris Brezillon 	 */
5665101d8cSBoris Brezillon 	refcount_t refcnt;
5765101d8cSBoris Brezillon 
5865101d8cSBoris Brezillon 	/* Number of counters activated in this perfmon instance
5965101d8cSBoris Brezillon 	 * (should be less than DRM_VC4_MAX_PERF_COUNTERS).
6065101d8cSBoris Brezillon 	 */
6165101d8cSBoris Brezillon 	u8 ncounters;
6265101d8cSBoris Brezillon 
6365101d8cSBoris Brezillon 	/* Events counted by the HW perf counters. */
6465101d8cSBoris Brezillon 	u8 events[DRM_VC4_MAX_PERF_COUNTERS];
6565101d8cSBoris Brezillon 
6665101d8cSBoris Brezillon 	/* Storage for counter values. Counters are incremented by the HW
6765101d8cSBoris Brezillon 	 * perf counter values every time the perfmon is attached to a GPU job.
6865101d8cSBoris Brezillon 	 * This way, perfmon users don't have to retrieve the results after
6965101d8cSBoris Brezillon 	 * each job if they want to track events covering several submissions.
7065101d8cSBoris Brezillon 	 * Note that counter values can't be reset, but you can fake a reset by
7165101d8cSBoris Brezillon 	 * destroying the perfmon and creating a new one.
7265101d8cSBoris Brezillon 	 */
735b2adbddSGustavo A. R. Silva 	u64 counters[];
7465101d8cSBoris Brezillon };
7565101d8cSBoris Brezillon 
76c8b75bcaSEric Anholt struct vc4_dev {
7784d7d472SMaxime Ripard 	struct drm_device base;
78c8b75bcaSEric Anholt 
791cbc91ebSMaxime Ripard 	bool is_vc5;
801cbc91ebSMaxime Ripard 
815226711eSThomas Zimmermann 	unsigned int irq;
825226711eSThomas Zimmermann 
83c8b75bcaSEric Anholt 	struct vc4_hvs *hvs;
84d3f5168aSEric Anholt 	struct vc4_v3d *v3d;
8508302c35SEric Anholt 	struct vc4_dpi *dpi;
86e4b81f8cSBoris Brezillon 	struct vc4_vec *vec;
87008095e0SBoris Brezillon 	struct vc4_txp *txp;
8848666d56SDerek Foreman 
8921461365SEric Anholt 	struct vc4_hang_state *hang_state;
9021461365SEric Anholt 
91c826a6e1SEric Anholt 	/* The kernel-space BO cache.  Tracks buffers that have been
92c826a6e1SEric Anholt 	 * unreferenced by all other users (refcounts of 0!) but not
93c826a6e1SEric Anholt 	 * yet freed, so we can do cheap allocations.
94c826a6e1SEric Anholt 	 */
95c826a6e1SEric Anholt 	struct vc4_bo_cache {
96c826a6e1SEric Anholt 		/* Array of list heads for entries in the BO cache,
97c826a6e1SEric Anholt 		 * based on number of pages, so we can do O(1) lookups
98c826a6e1SEric Anholt 		 * in the cache when allocating.
99c826a6e1SEric Anholt 		 */
100c826a6e1SEric Anholt 		struct list_head *size_list;
101c826a6e1SEric Anholt 		uint32_t size_list_size;
102c826a6e1SEric Anholt 
103c826a6e1SEric Anholt 		/* List of all BOs in the cache, ordered by age, so we
104c826a6e1SEric Anholt 		 * can do O(1) lookups when trying to free old
105c826a6e1SEric Anholt 		 * buffers.
106c826a6e1SEric Anholt 		 */
107c826a6e1SEric Anholt 		struct list_head time_list;
108c826a6e1SEric Anholt 		struct work_struct time_work;
109c826a6e1SEric Anholt 		struct timer_list time_timer;
110c826a6e1SEric Anholt 	} bo_cache;
111c826a6e1SEric Anholt 
112f3099462SEric Anholt 	u32 num_labels;
113f3099462SEric Anholt 	struct vc4_label {
114f3099462SEric Anholt 		const char *name;
115c826a6e1SEric Anholt 		u32 num_allocated;
116c826a6e1SEric Anholt 		u32 size_allocated;
117f3099462SEric Anholt 	} *bo_labels;
118c826a6e1SEric Anholt 
119f3099462SEric Anholt 	/* Protects bo_cache and bo_labels. */
120c826a6e1SEric Anholt 	struct mutex bo_lock;
121d5b1a78aSEric Anholt 
122b9f19259SBoris Brezillon 	/* Purgeable BO pool. All BOs in this pool can have their memory
123b9f19259SBoris Brezillon 	 * reclaimed if the driver is unable to allocate new BOs. We also
124b9f19259SBoris Brezillon 	 * keep stats related to the purge mechanism here.
125b9f19259SBoris Brezillon 	 */
126b9f19259SBoris Brezillon 	struct {
127b9f19259SBoris Brezillon 		struct list_head list;
128b9f19259SBoris Brezillon 		unsigned int num;
129b9f19259SBoris Brezillon 		size_t size;
130b9f19259SBoris Brezillon 		unsigned int purged_num;
131b9f19259SBoris Brezillon 		size_t purged_size;
132b9f19259SBoris Brezillon 		struct mutex lock;
133b9f19259SBoris Brezillon 	} purgeable;
134b9f19259SBoris Brezillon 
135cdec4d36SEric Anholt 	uint64_t dma_fence_context;
136cdec4d36SEric Anholt 
137ca26d28bSVarad Gautam 	/* Sequence number for the last job queued in bin_job_list.
138d5b1a78aSEric Anholt 	 * Starts at 0 (no jobs emitted).
139d5b1a78aSEric Anholt 	 */
140d5b1a78aSEric Anholt 	uint64_t emit_seqno;
141d5b1a78aSEric Anholt 
142d5b1a78aSEric Anholt 	/* Sequence number for the last completed job on the GPU.
143d5b1a78aSEric Anholt 	 * Starts at 0 (no jobs completed).
144d5b1a78aSEric Anholt 	 */
145d5b1a78aSEric Anholt 	uint64_t finished_seqno;
146d5b1a78aSEric Anholt 
147ca26d28bSVarad Gautam 	/* List of all struct vc4_exec_info for jobs to be executed in
148ca26d28bSVarad Gautam 	 * the binner.  The first job in the list is the one currently
149ca26d28bSVarad Gautam 	 * programmed into ct0ca for execution.
150d5b1a78aSEric Anholt 	 */
151ca26d28bSVarad Gautam 	struct list_head bin_job_list;
152ca26d28bSVarad Gautam 
153ca26d28bSVarad Gautam 	/* List of all struct vc4_exec_info for jobs that have
154ca26d28bSVarad Gautam 	 * completed binning and are ready for rendering.  The first
155ca26d28bSVarad Gautam 	 * job in the list is the one currently programmed into ct1ca
156ca26d28bSVarad Gautam 	 * for execution.
157ca26d28bSVarad Gautam 	 */
158ca26d28bSVarad Gautam 	struct list_head render_job_list;
159ca26d28bSVarad Gautam 
160d5b1a78aSEric Anholt 	/* List of the finished vc4_exec_infos waiting to be freed by
161d5b1a78aSEric Anholt 	 * job_done_work.
162d5b1a78aSEric Anholt 	 */
163d5b1a78aSEric Anholt 	struct list_head job_done_list;
164d5b1a78aSEric Anholt 	/* Spinlock used to synchronize the job_list and seqno
165d5b1a78aSEric Anholt 	 * accesses between the IRQ handler and GEM ioctls.
166d5b1a78aSEric Anholt 	 */
167d5b1a78aSEric Anholt 	spinlock_t job_lock;
168d5b1a78aSEric Anholt 	wait_queue_head_t job_wait_queue;
169d5b1a78aSEric Anholt 	struct work_struct job_done_work;
170d5b1a78aSEric Anholt 
17165101d8cSBoris Brezillon 	/* Used to track the active perfmon if any. Access to this field is
17265101d8cSBoris Brezillon 	 * protected by job_lock.
17365101d8cSBoris Brezillon 	 */
17465101d8cSBoris Brezillon 	struct vc4_perfmon *active_perfmon;
17565101d8cSBoris Brezillon 
176b501baccSEric Anholt 	/* List of struct vc4_seqno_cb for callbacks to be made from a
177b501baccSEric Anholt 	 * workqueue when the given seqno is passed.
178b501baccSEric Anholt 	 */
179b501baccSEric Anholt 	struct list_head seqno_cb_list;
180b501baccSEric Anholt 
181553c942fSEric Anholt 	/* The memory used for storing binner tile alloc, tile state,
182553c942fSEric Anholt 	 * and overflow memory allocations.  This is freed when V3D
183553c942fSEric Anholt 	 * powers down.
184d5b1a78aSEric Anholt 	 */
185553c942fSEric Anholt 	struct vc4_bo *bin_bo;
186553c942fSEric Anholt 
187553c942fSEric Anholt 	/* Size of blocks allocated within bin_bo. */
188553c942fSEric Anholt 	uint32_t bin_alloc_size;
189553c942fSEric Anholt 
190553c942fSEric Anholt 	/* Bitmask of the bin_alloc_size chunks in bin_bo that are
191553c942fSEric Anholt 	 * used.
192553c942fSEric Anholt 	 */
193553c942fSEric Anholt 	uint32_t bin_alloc_used;
194553c942fSEric Anholt 
195553c942fSEric Anholt 	/* Bitmask of the current bin_alloc used for overflow memory. */
196553c942fSEric Anholt 	uint32_t bin_alloc_overflow;
197553c942fSEric Anholt 
198531a1b62SBoris Brezillon 	/* Incremented when an underrun error happened after an atomic commit.
199531a1b62SBoris Brezillon 	 * This is particularly useful to detect when a specific modeset is too
200531a1b62SBoris Brezillon 	 * demanding in term of memory or HVS bandwidth which is hard to guess
201531a1b62SBoris Brezillon 	 * at atomic check time.
202531a1b62SBoris Brezillon 	 */
203531a1b62SBoris Brezillon 	atomic_t underrun;
204531a1b62SBoris Brezillon 
205d5b1a78aSEric Anholt 	struct work_struct overflow_mem_work;
206d5b1a78aSEric Anholt 
20736cb6253SEric Anholt 	int power_refcount;
20836cb6253SEric Anholt 
2096b5c029dSPaul Kocialkowski 	/* Set to true when the load tracker is active. */
2106b5c029dSPaul Kocialkowski 	bool load_tracker_enabled;
2116b5c029dSPaul Kocialkowski 
21236cb6253SEric Anholt 	/* Mutex controlling the power refcount. */
21336cb6253SEric Anholt 	struct mutex power_lock;
21436cb6253SEric Anholt 
215d5b1a78aSEric Anholt 	struct {
216d5b1a78aSEric Anholt 		struct timer_list timer;
217d5b1a78aSEric Anholt 		struct work_struct reset_work;
218d5b1a78aSEric Anholt 	} hangcheck;
219d5b1a78aSEric Anholt 
220766cc6b1SStefan Schake 	struct drm_modeset_lock ctm_state_lock;
221766cc6b1SStefan Schake 	struct drm_private_obj ctm_manager;
222f2df84e0SMaxime Ripard 	struct drm_private_obj hvs_channels;
2234686da83SBoris Brezillon 	struct drm_private_obj load_tracker;
224c9be804cSEric Anholt 
225c9be804cSEric Anholt 	/* List of vc4_debugfs_info_entry for adding to debugfs once
226c9be804cSEric Anholt 	 * the minor is available (after drm_dev_register()).
227c9be804cSEric Anholt 	 */
228c9be804cSEric Anholt 	struct list_head debugfs_list;
22935c8b4b2SPaul Kocialkowski 
23035c8b4b2SPaul Kocialkowski 	/* Mutex for binner bo allocation. */
23135c8b4b2SPaul Kocialkowski 	struct mutex bin_bo_lock;
23235c8b4b2SPaul Kocialkowski 	/* Reference count for our binner bo. */
23335c8b4b2SPaul Kocialkowski 	struct kref bin_bo_kref;
234c8b75bcaSEric Anholt };
235c8b75bcaSEric Anholt 
236c8b75bcaSEric Anholt static inline struct vc4_dev *
237c8b75bcaSEric Anholt to_vc4_dev(struct drm_device *dev)
238c8b75bcaSEric Anholt {
23984d7d472SMaxime Ripard 	return container_of(dev, struct vc4_dev, base);
240c8b75bcaSEric Anholt }
241c8b75bcaSEric Anholt 
242c8b75bcaSEric Anholt struct vc4_bo {
243c8b75bcaSEric Anholt 	struct drm_gem_cma_object base;
244c826a6e1SEric Anholt 
2457edabee0SEric Anholt 	/* seqno of the last job to render using this BO. */
246d5b1a78aSEric Anholt 	uint64_t seqno;
247d5b1a78aSEric Anholt 
2487edabee0SEric Anholt 	/* seqno of the last job to use the RCL to write to this BO.
2497edabee0SEric Anholt 	 *
2507edabee0SEric Anholt 	 * Note that this doesn't include binner overflow memory
2517edabee0SEric Anholt 	 * writes.
2527edabee0SEric Anholt 	 */
2537edabee0SEric Anholt 	uint64_t write_seqno;
2547edabee0SEric Anholt 
25583753117SEric Anholt 	bool t_format;
25683753117SEric Anholt 
257c826a6e1SEric Anholt 	/* List entry for the BO's position in either
258c826a6e1SEric Anholt 	 * vc4_exec_info->unref_list or vc4_dev->bo_cache.time_list
259c826a6e1SEric Anholt 	 */
260c826a6e1SEric Anholt 	struct list_head unref_head;
261c826a6e1SEric Anholt 
262c826a6e1SEric Anholt 	/* Time in jiffies when the BO was put in vc4->bo_cache. */
263c826a6e1SEric Anholt 	unsigned long free_time;
264c826a6e1SEric Anholt 
265c826a6e1SEric Anholt 	/* List entry for the BO's position in vc4_dev->bo_cache.size_list */
266c826a6e1SEric Anholt 	struct list_head size_head;
267463873d5SEric Anholt 
268463873d5SEric Anholt 	/* Struct for shader validation state, if created by
269463873d5SEric Anholt 	 * DRM_IOCTL_VC4_CREATE_SHADER_BO.
270463873d5SEric Anholt 	 */
271463873d5SEric Anholt 	struct vc4_validated_shader_info *validated_shader;
272cdec4d36SEric Anholt 
273f3099462SEric Anholt 	/* One of enum vc4_kernel_bo_type, or VC4_BO_TYPE_COUNT + i
274f3099462SEric Anholt 	 * for user-allocated labels.
275f3099462SEric Anholt 	 */
276f3099462SEric Anholt 	int label;
277b9f19259SBoris Brezillon 
278b9f19259SBoris Brezillon 	/* Count the number of active users. This is needed to determine
279b9f19259SBoris Brezillon 	 * whether we can move the BO to the purgeable list or not (when the BO
280b9f19259SBoris Brezillon 	 * is used by the GPU or the display engine we can't purge it).
281b9f19259SBoris Brezillon 	 */
282b9f19259SBoris Brezillon 	refcount_t usecnt;
283b9f19259SBoris Brezillon 
284b9f19259SBoris Brezillon 	/* Store purgeable/purged state here */
285b9f19259SBoris Brezillon 	u32 madv;
286b9f19259SBoris Brezillon 	struct mutex madv_lock;
287c8b75bcaSEric Anholt };
288c8b75bcaSEric Anholt 
289c8b75bcaSEric Anholt static inline struct vc4_bo *
290c8b75bcaSEric Anholt to_vc4_bo(struct drm_gem_object *bo)
291c8b75bcaSEric Anholt {
2925066f42cSMaxime Ripard 	return container_of(to_drm_gem_cma_obj(bo), struct vc4_bo, base);
293c8b75bcaSEric Anholt }
294c8b75bcaSEric Anholt 
295cdec4d36SEric Anholt struct vc4_fence {
296cdec4d36SEric Anholt 	struct dma_fence base;
297cdec4d36SEric Anholt 	struct drm_device *dev;
298cdec4d36SEric Anholt 	/* vc4 seqno for signaled() test */
299cdec4d36SEric Anholt 	uint64_t seqno;
300cdec4d36SEric Anholt };
301cdec4d36SEric Anholt 
302cdec4d36SEric Anholt static inline struct vc4_fence *
303cdec4d36SEric Anholt to_vc4_fence(struct dma_fence *fence)
304cdec4d36SEric Anholt {
3055066f42cSMaxime Ripard 	return container_of(fence, struct vc4_fence, base);
306cdec4d36SEric Anholt }
307cdec4d36SEric Anholt 
308b501baccSEric Anholt struct vc4_seqno_cb {
309b501baccSEric Anholt 	struct work_struct work;
310b501baccSEric Anholt 	uint64_t seqno;
311b501baccSEric Anholt 	void (*func)(struct vc4_seqno_cb *cb);
312b501baccSEric Anholt };
313b501baccSEric Anholt 
314d3f5168aSEric Anholt struct vc4_v3d {
315001bdb55SEric Anholt 	struct vc4_dev *vc4;
316d3f5168aSEric Anholt 	struct platform_device *pdev;
317d3f5168aSEric Anholt 	void __iomem *regs;
318b72a2816SEric Anholt 	struct clk *clk;
3193051719aSEric Anholt 	struct debugfs_regset32 regset;
320d3f5168aSEric Anholt };
321d3f5168aSEric Anholt 
322c8b75bcaSEric Anholt struct vc4_hvs {
3231cbc91ebSMaxime Ripard 	struct vc4_dev *vc4;
324c8b75bcaSEric Anholt 	struct platform_device *pdev;
325c8b75bcaSEric Anholt 	void __iomem *regs;
326d8dbf44fSEric Anholt 	u32 __iomem *dlist;
327d8dbf44fSEric Anholt 
328d7d96c00SMaxime Ripard 	struct clk *core_clk;
329d7d96c00SMaxime Ripard 
330d8dbf44fSEric Anholt 	/* Memory manager for CRTCs to allocate space in the display
331d8dbf44fSEric Anholt 	 * list.  Units are dwords.
332d8dbf44fSEric Anholt 	 */
333d8dbf44fSEric Anholt 	struct drm_mm dlist_mm;
33421af94cfSEric Anholt 	/* Memory manager for the LBM memory used by HVS scaling. */
33521af94cfSEric Anholt 	struct drm_mm lbm_mm;
336d8dbf44fSEric Anholt 	spinlock_t mm_lock;
33721af94cfSEric Anholt 
33821af94cfSEric Anholt 	struct drm_mm_node mitchell_netravali_filter;
339c54619b0SDave Stevenson 
3403051719aSEric Anholt 	struct debugfs_regset32 regset;
341c8b75bcaSEric Anholt };
342c8b75bcaSEric Anholt 
343c8b75bcaSEric Anholt struct vc4_plane {
344c8b75bcaSEric Anholt 	struct drm_plane base;
345c8b75bcaSEric Anholt };
346c8b75bcaSEric Anholt 
347c8b75bcaSEric Anholt static inline struct vc4_plane *
348c8b75bcaSEric Anholt to_vc4_plane(struct drm_plane *plane)
349c8b75bcaSEric Anholt {
3505066f42cSMaxime Ripard 	return container_of(plane, struct vc4_plane, base);
351c8b75bcaSEric Anholt }
352c8b75bcaSEric Anholt 
35382364698SStefan Schake enum vc4_scaling_mode {
35482364698SStefan Schake 	VC4_SCALING_NONE,
35582364698SStefan Schake 	VC4_SCALING_TPZ,
35682364698SStefan Schake 	VC4_SCALING_PPF,
35782364698SStefan Schake };
35882364698SStefan Schake 
35982364698SStefan Schake struct vc4_plane_state {
36082364698SStefan Schake 	struct drm_plane_state base;
36182364698SStefan Schake 	/* System memory copy of the display list for this element, computed
36282364698SStefan Schake 	 * at atomic_check time.
36382364698SStefan Schake 	 */
36482364698SStefan Schake 	u32 *dlist;
36582364698SStefan Schake 	u32 dlist_size; /* Number of dwords allocated for the display list */
36682364698SStefan Schake 	u32 dlist_count; /* Number of used dwords in the display list. */
36782364698SStefan Schake 
36882364698SStefan Schake 	/* Offset in the dlist to various words, for pageflip or
36982364698SStefan Schake 	 * cursor updates.
37082364698SStefan Schake 	 */
37182364698SStefan Schake 	u32 pos0_offset;
37282364698SStefan Schake 	u32 pos2_offset;
37382364698SStefan Schake 	u32 ptr0_offset;
3740a038c1cSBoris Brezillon 	u32 lbm_offset;
37582364698SStefan Schake 
37682364698SStefan Schake 	/* Offset where the plane's dlist was last stored in the
37782364698SStefan Schake 	 * hardware at vc4_crtc_atomic_flush() time.
37882364698SStefan Schake 	 */
37982364698SStefan Schake 	u32 __iomem *hw_dlist;
38082364698SStefan Schake 
38182364698SStefan Schake 	/* Clipped coordinates of the plane on the display. */
38282364698SStefan Schake 	int crtc_x, crtc_y, crtc_w, crtc_h;
38382364698SStefan Schake 	/* Clipped area being scanned from in the FB. */
38482364698SStefan Schake 	u32 src_x, src_y;
38582364698SStefan Schake 
38682364698SStefan Schake 	u32 src_w[2], src_h[2];
38782364698SStefan Schake 
38882364698SStefan Schake 	/* Scaling selection for the RGB/Y plane and the Cb/Cr planes. */
38982364698SStefan Schake 	enum vc4_scaling_mode x_scaling[2], y_scaling[2];
39082364698SStefan Schake 	bool is_unity;
39182364698SStefan Schake 	bool is_yuv;
39282364698SStefan Schake 
39382364698SStefan Schake 	/* Offset to start scanning out from the start of the plane's
39482364698SStefan Schake 	 * BO.
39582364698SStefan Schake 	 */
39682364698SStefan Schake 	u32 offsets[3];
39782364698SStefan Schake 
39882364698SStefan Schake 	/* Our allocation in LBM for temporary storage during scaling. */
39982364698SStefan Schake 	struct drm_mm_node lbm;
40082364698SStefan Schake 
40182364698SStefan Schake 	/* Set when the plane has per-pixel alpha content or does not cover
40282364698SStefan Schake 	 * the entire screen. This is a hint to the CRTC that it might need
40382364698SStefan Schake 	 * to enable background color fill.
40482364698SStefan Schake 	 */
40582364698SStefan Schake 	bool needs_bg_fill;
4068d938449SBoris Brezillon 
4078d938449SBoris Brezillon 	/* Mark the dlist as initialized. Useful to avoid initializing it twice
4088d938449SBoris Brezillon 	 * when async update is not possible.
4098d938449SBoris Brezillon 	 */
4108d938449SBoris Brezillon 	bool dlist_initialized;
4114686da83SBoris Brezillon 
4124686da83SBoris Brezillon 	/* Load of this plane on the HVS block. The load is expressed in HVS
4134686da83SBoris Brezillon 	 * cycles/sec.
4144686da83SBoris Brezillon 	 */
4154686da83SBoris Brezillon 	u64 hvs_load;
4164686da83SBoris Brezillon 
4174686da83SBoris Brezillon 	/* Memory bandwidth needed for this plane. This is expressed in
4184686da83SBoris Brezillon 	 * bytes/sec.
4194686da83SBoris Brezillon 	 */
4204686da83SBoris Brezillon 	u64 membus_load;
42182364698SStefan Schake };
42282364698SStefan Schake 
42382364698SStefan Schake static inline struct vc4_plane_state *
42482364698SStefan Schake to_vc4_plane_state(struct drm_plane_state *state)
42582364698SStefan Schake {
4265066f42cSMaxime Ripard 	return container_of(state, struct vc4_plane_state, base);
42782364698SStefan Schake }
42882364698SStefan Schake 
429c8b75bcaSEric Anholt enum vc4_encoder_type {
430ab8df60eSBoris Brezillon 	VC4_ENCODER_TYPE_NONE,
431ed024b22SMaxime Ripard 	VC4_ENCODER_TYPE_HDMI0,
432aa2fd1caSMaxime Ripard 	VC4_ENCODER_TYPE_HDMI1,
433c8b75bcaSEric Anholt 	VC4_ENCODER_TYPE_VEC,
434c8b75bcaSEric Anholt 	VC4_ENCODER_TYPE_DSI0,
435c8b75bcaSEric Anholt 	VC4_ENCODER_TYPE_DSI1,
436c8b75bcaSEric Anholt 	VC4_ENCODER_TYPE_SMI,
437c8b75bcaSEric Anholt 	VC4_ENCODER_TYPE_DPI,
438c8b75bcaSEric Anholt };
439c8b75bcaSEric Anholt 
440c8b75bcaSEric Anholt struct vc4_encoder {
441c8b75bcaSEric Anholt 	struct drm_encoder base;
442c8b75bcaSEric Anholt 	enum vc4_encoder_type type;
443c8b75bcaSEric Anholt 	u32 clock_select;
444792c3132SMaxime Ripard 
4458d914746SMaxime Ripard 	void (*pre_crtc_configure)(struct drm_encoder *encoder, struct drm_atomic_state *state);
4468d914746SMaxime Ripard 	void (*pre_crtc_enable)(struct drm_encoder *encoder, struct drm_atomic_state *state);
4478d914746SMaxime Ripard 	void (*post_crtc_enable)(struct drm_encoder *encoder, struct drm_atomic_state *state);
448792c3132SMaxime Ripard 
4498d914746SMaxime Ripard 	void (*post_crtc_disable)(struct drm_encoder *encoder, struct drm_atomic_state *state);
4508d914746SMaxime Ripard 	void (*post_crtc_powerdown)(struct drm_encoder *encoder, struct drm_atomic_state *state);
451c8b75bcaSEric Anholt };
452c8b75bcaSEric Anholt 
453c8b75bcaSEric Anholt static inline struct vc4_encoder *
454c8b75bcaSEric Anholt to_vc4_encoder(struct drm_encoder *encoder)
455c8b75bcaSEric Anholt {
456c8b75bcaSEric Anholt 	return container_of(encoder, struct vc4_encoder, base);
457c8b75bcaSEric Anholt }
458c8b75bcaSEric Anholt 
45979271807SStefan Schake struct vc4_crtc_data {
46087ebcd42SMaxime Ripard 	/* Bitmask of channels (FIFOs) of the HVS that the output can source from */
46187ebcd42SMaxime Ripard 	unsigned int hvs_available_channels;
46287ebcd42SMaxime Ripard 
4638ebb2cf0SMaxime Ripard 	/* Which output of the HVS this pixelvalve sources from. */
4648ebb2cf0SMaxime Ripard 	int hvs_output;
4655a20ff8bSMaxime Ripard };
4665a20ff8bSMaxime Ripard 
4675a20ff8bSMaxime Ripard struct vc4_pv_data {
4685a20ff8bSMaxime Ripard 	struct vc4_crtc_data	base;
46979271807SStefan Schake 
470649abf2fSMaxime Ripard 	/* Depth of the PixelValve FIFO in bytes */
471649abf2fSMaxime Ripard 	unsigned int fifo_depth;
472649abf2fSMaxime Ripard 
473644df22fSMaxime Ripard 	/* Number of pixels output per clock period */
474644df22fSMaxime Ripard 	u8 pixels_per_clock;
475644df22fSMaxime Ripard 
47679271807SStefan Schake 	enum vc4_encoder_type encoder_types[4];
477c9be804cSEric Anholt 	const char *debugfs_name;
4785a20ff8bSMaxime Ripard 
47979271807SStefan Schake };
48079271807SStefan Schake 
48179271807SStefan Schake struct vc4_crtc {
48279271807SStefan Schake 	struct drm_crtc base;
4833051719aSEric Anholt 	struct platform_device *pdev;
48479271807SStefan Schake 	const struct vc4_crtc_data *data;
48579271807SStefan Schake 	void __iomem *regs;
48679271807SStefan Schake 
48779271807SStefan Schake 	/* Timestamp at start of vblank irq - unaffected by lock delays. */
48879271807SStefan Schake 	ktime_t t_vblank;
48979271807SStefan Schake 
49079271807SStefan Schake 	u8 lut_r[256];
49179271807SStefan Schake 	u8 lut_g[256];
49279271807SStefan Schake 	u8 lut_b[256];
49379271807SStefan Schake 
49479271807SStefan Schake 	struct drm_pending_vblank_event *event;
4953051719aSEric Anholt 
4963051719aSEric Anholt 	struct debugfs_regset32 regset;
497a16c6640SMaxime Ripard 
498a16c6640SMaxime Ripard 	/**
499a16c6640SMaxime Ripard 	 * @feeds_txp: True if the CRTC feeds our writeback controller.
500a16c6640SMaxime Ripard 	 */
501a16c6640SMaxime Ripard 	bool feeds_txp;
5020c250c15SMaxime Ripard 
5030c250c15SMaxime Ripard 	/**
5040c250c15SMaxime Ripard 	 * @irq_lock: Spinlock protecting the resources shared between
5050c250c15SMaxime Ripard 	 * the atomic code and our vblank handler.
5060c250c15SMaxime Ripard 	 */
5070c250c15SMaxime Ripard 	spinlock_t irq_lock;
5080c250c15SMaxime Ripard 
5090c250c15SMaxime Ripard 	/**
5100c250c15SMaxime Ripard 	 * @current_dlist: Start offset of the display list currently
5110c250c15SMaxime Ripard 	 * set in the HVS for that CRTC. Protected by @irq_lock, and
5120c250c15SMaxime Ripard 	 * copied in vc4_hvs_update_dlist() for the CRTC interrupt
5130c250c15SMaxime Ripard 	 * handler to have access to that value.
5140c250c15SMaxime Ripard 	 */
5150c250c15SMaxime Ripard 	unsigned int current_dlist;
516eeb6ab46SMaxime Ripard 
517eeb6ab46SMaxime Ripard 	/**
518eeb6ab46SMaxime Ripard 	 * @current_hvs_channel: HVS channel currently assigned to the
519eeb6ab46SMaxime Ripard 	 * CRTC. Protected by @irq_lock, and copied in
520eeb6ab46SMaxime Ripard 	 * vc4_hvs_atomic_begin() for the CRTC interrupt handler to have
521eeb6ab46SMaxime Ripard 	 * access to that value.
522eeb6ab46SMaxime Ripard 	 */
523eeb6ab46SMaxime Ripard 	unsigned int current_hvs_channel;
52479271807SStefan Schake };
52579271807SStefan Schake 
52679271807SStefan Schake static inline struct vc4_crtc *
52779271807SStefan Schake to_vc4_crtc(struct drm_crtc *crtc)
52879271807SStefan Schake {
5295066f42cSMaxime Ripard 	return container_of(crtc, struct vc4_crtc, base);
53079271807SStefan Schake }
53179271807SStefan Schake 
5325a20ff8bSMaxime Ripard static inline const struct vc4_crtc_data *
5335a20ff8bSMaxime Ripard vc4_crtc_to_vc4_crtc_data(const struct vc4_crtc *crtc)
5345a20ff8bSMaxime Ripard {
5355a20ff8bSMaxime Ripard 	return crtc->data;
5365a20ff8bSMaxime Ripard }
5375a20ff8bSMaxime Ripard 
5385a20ff8bSMaxime Ripard static inline const struct vc4_pv_data *
5395a20ff8bSMaxime Ripard vc4_crtc_to_vc4_pv_data(const struct vc4_crtc *crtc)
5405a20ff8bSMaxime Ripard {
5415a20ff8bSMaxime Ripard 	const struct vc4_crtc_data *data = vc4_crtc_to_vc4_crtc_data(crtc);
5425a20ff8bSMaxime Ripard 
5435a20ff8bSMaxime Ripard 	return container_of(data, struct vc4_pv_data, base);
5445a20ff8bSMaxime Ripard }
5455a20ff8bSMaxime Ripard 
546d0229c36SMaxime Ripard struct drm_encoder *vc4_get_crtc_encoder(struct drm_crtc *crtc,
54794c1adc4SMaxime Ripard 					 struct drm_crtc_state *state);
548d0229c36SMaxime Ripard 
549ae44a527SMaxime Ripard struct vc4_crtc_state {
550ae44a527SMaxime Ripard 	struct drm_crtc_state base;
551ae44a527SMaxime Ripard 	/* Dlist area for this CRTC configuration. */
552ae44a527SMaxime Ripard 	struct drm_mm_node mm;
553ae44a527SMaxime Ripard 	bool txp_armed;
55487ebcd42SMaxime Ripard 	unsigned int assigned_channel;
555ae44a527SMaxime Ripard 
556ae44a527SMaxime Ripard 	struct {
557ae44a527SMaxime Ripard 		unsigned int left;
558ae44a527SMaxime Ripard 		unsigned int right;
559ae44a527SMaxime Ripard 		unsigned int top;
560ae44a527SMaxime Ripard 		unsigned int bottom;
561ae44a527SMaxime Ripard 	} margins;
5622820526dSMaxime Ripard 
56316e10105SMaxime Ripard 	unsigned long hvs_load;
56416e10105SMaxime Ripard 
5652820526dSMaxime Ripard 	/* Transitional state below, only valid during atomic commits */
5662820526dSMaxime Ripard 	bool update_muxing;
567ae44a527SMaxime Ripard };
568ae44a527SMaxime Ripard 
5698ba0b6d1SMaxime Ripard #define VC4_HVS_CHANNEL_DISABLED ((unsigned int)-1)
5708ba0b6d1SMaxime Ripard 
571ae44a527SMaxime Ripard static inline struct vc4_crtc_state *
572ae44a527SMaxime Ripard to_vc4_crtc_state(struct drm_crtc_state *crtc_state)
573ae44a527SMaxime Ripard {
5745066f42cSMaxime Ripard 	return container_of(crtc_state, struct vc4_crtc_state, base);
575ae44a527SMaxime Ripard }
576ae44a527SMaxime Ripard 
577d3f5168aSEric Anholt #define V3D_READ(offset) readl(vc4->v3d->regs + offset)
578d3f5168aSEric Anholt #define V3D_WRITE(offset, val) writel(val, vc4->v3d->regs + offset)
5793454f01aSMaxime Ripard #define HVS_READ(offset) readl(hvs->regs + offset)
5803454f01aSMaxime Ripard #define HVS_WRITE(offset, val) writel(val, hvs->regs + offset)
581c8b75bcaSEric Anholt 
5823051719aSEric Anholt #define VC4_REG32(reg) { .name = #reg, .offset = reg }
5833051719aSEric Anholt 
584d5b1a78aSEric Anholt struct vc4_exec_info {
585*30f8c74cSMaxime Ripard 	struct vc4_dev *dev;
586*30f8c74cSMaxime Ripard 
587d5b1a78aSEric Anholt 	/* Sequence number for this bin/render job. */
588d5b1a78aSEric Anholt 	uint64_t seqno;
589d5b1a78aSEric Anholt 
5907edabee0SEric Anholt 	/* Latest write_seqno of any BO that binning depends on. */
5917edabee0SEric Anholt 	uint64_t bin_dep_seqno;
5927edabee0SEric Anholt 
593cdec4d36SEric Anholt 	struct dma_fence *fence;
594cdec4d36SEric Anholt 
595c4ce60dcSEric Anholt 	/* Last current addresses the hardware was processing when the
596c4ce60dcSEric Anholt 	 * hangcheck timer checked on us.
597c4ce60dcSEric Anholt 	 */
598c4ce60dcSEric Anholt 	uint32_t last_ct0ca, last_ct1ca;
599c4ce60dcSEric Anholt 
600d5b1a78aSEric Anholt 	/* Kernel-space copy of the ioctl arguments */
601d5b1a78aSEric Anholt 	struct drm_vc4_submit_cl *args;
602d5b1a78aSEric Anholt 
603d5b1a78aSEric Anholt 	/* This is the array of BOs that were looked up at the start of exec.
604d5b1a78aSEric Anholt 	 * Command validation will use indices into this array.
605d5b1a78aSEric Anholt 	 */
606d5b1a78aSEric Anholt 	struct drm_gem_cma_object **bo;
607d5b1a78aSEric Anholt 	uint32_t bo_count;
608d5b1a78aSEric Anholt 
6097edabee0SEric Anholt 	/* List of BOs that are being written by the RCL.  Other than
6107edabee0SEric Anholt 	 * the binner temporary storage, this is all the BOs written
6117edabee0SEric Anholt 	 * by the job.
6127edabee0SEric Anholt 	 */
6137edabee0SEric Anholt 	struct drm_gem_cma_object *rcl_write_bo[4];
6147edabee0SEric Anholt 	uint32_t rcl_write_bo_count;
6157edabee0SEric Anholt 
616d5b1a78aSEric Anholt 	/* Pointers for our position in vc4->job_list */
617d5b1a78aSEric Anholt 	struct list_head head;
618d5b1a78aSEric Anholt 
619d5b1a78aSEric Anholt 	/* List of other BOs used in the job that need to be released
620d5b1a78aSEric Anholt 	 * once the job is complete.
621d5b1a78aSEric Anholt 	 */
622d5b1a78aSEric Anholt 	struct list_head unref_list;
623d5b1a78aSEric Anholt 
624d5b1a78aSEric Anholt 	/* Current unvalidated indices into @bo loaded by the non-hardware
625d5b1a78aSEric Anholt 	 * VC4_PACKET_GEM_HANDLES.
626d5b1a78aSEric Anholt 	 */
627d5b1a78aSEric Anholt 	uint32_t bo_index[2];
628d5b1a78aSEric Anholt 
629d5b1a78aSEric Anholt 	/* This is the BO where we store the validated command lists, shader
630d5b1a78aSEric Anholt 	 * records, and uniforms.
631d5b1a78aSEric Anholt 	 */
632d5b1a78aSEric Anholt 	struct drm_gem_cma_object *exec_bo;
633d5b1a78aSEric Anholt 
634d5b1a78aSEric Anholt 	/**
635d5b1a78aSEric Anholt 	 * This tracks the per-shader-record state (packet 64) that
636d5b1a78aSEric Anholt 	 * determines the length of the shader record and the offset
637d5b1a78aSEric Anholt 	 * it's expected to be found at.  It gets read in from the
638d5b1a78aSEric Anholt 	 * command lists.
639d5b1a78aSEric Anholt 	 */
640d5b1a78aSEric Anholt 	struct vc4_shader_state {
641d5b1a78aSEric Anholt 		uint32_t addr;
642d5b1a78aSEric Anholt 		/* Maximum vertex index referenced by any primitive using this
643d5b1a78aSEric Anholt 		 * shader state.
644d5b1a78aSEric Anholt 		 */
645d5b1a78aSEric Anholt 		uint32_t max_index;
646d5b1a78aSEric Anholt 	} *shader_state;
647d5b1a78aSEric Anholt 
648d5b1a78aSEric Anholt 	/** How many shader states the user declared they were using. */
649d5b1a78aSEric Anholt 	uint32_t shader_state_size;
650d5b1a78aSEric Anholt 	/** How many shader state records the validator has seen. */
651d5b1a78aSEric Anholt 	uint32_t shader_state_count;
652d5b1a78aSEric Anholt 
653d5b1a78aSEric Anholt 	bool found_tile_binning_mode_config_packet;
654d5b1a78aSEric Anholt 	bool found_start_tile_binning_packet;
655d5b1a78aSEric Anholt 	bool found_increment_semaphore_packet;
656d5b1a78aSEric Anholt 	bool found_flush;
657d5b1a78aSEric Anholt 	uint8_t bin_tiles_x, bin_tiles_y;
658553c942fSEric Anholt 	/* Physical address of the start of the tile alloc array
659553c942fSEric Anholt 	 * (where each tile's binned CL will start)
660553c942fSEric Anholt 	 */
661d5b1a78aSEric Anholt 	uint32_t tile_alloc_offset;
662553c942fSEric Anholt 	/* Bitmask of which binner slots are freed when this job completes. */
663553c942fSEric Anholt 	uint32_t bin_slots;
664d5b1a78aSEric Anholt 
665d5b1a78aSEric Anholt 	/**
666d5b1a78aSEric Anholt 	 * Computed addresses pointing into exec_bo where we start the
667d5b1a78aSEric Anholt 	 * bin thread (ct0) and render thread (ct1).
668d5b1a78aSEric Anholt 	 */
669d5b1a78aSEric Anholt 	uint32_t ct0ca, ct0ea;
670d5b1a78aSEric Anholt 	uint32_t ct1ca, ct1ea;
671d5b1a78aSEric Anholt 
672d5b1a78aSEric Anholt 	/* Pointer to the unvalidated bin CL (if present). */
673d5b1a78aSEric Anholt 	void *bin_u;
674d5b1a78aSEric Anholt 
675d5b1a78aSEric Anholt 	/* Pointers to the shader recs.  These paddr gets incremented as CL
676d5b1a78aSEric Anholt 	 * packets are relocated in validate_gl_shader_state, and the vaddrs
677d5b1a78aSEric Anholt 	 * (u and v) get incremented and size decremented as the shader recs
678d5b1a78aSEric Anholt 	 * themselves are validated.
679d5b1a78aSEric Anholt 	 */
680d5b1a78aSEric Anholt 	void *shader_rec_u;
681d5b1a78aSEric Anholt 	void *shader_rec_v;
682d5b1a78aSEric Anholt 	uint32_t shader_rec_p;
683d5b1a78aSEric Anholt 	uint32_t shader_rec_size;
684d5b1a78aSEric Anholt 
685d5b1a78aSEric Anholt 	/* Pointers to the uniform data.  These pointers are incremented, and
686d5b1a78aSEric Anholt 	 * size decremented, as each batch of uniforms is uploaded.
687d5b1a78aSEric Anholt 	 */
688d5b1a78aSEric Anholt 	void *uniforms_u;
689d5b1a78aSEric Anholt 	void *uniforms_v;
690d5b1a78aSEric Anholt 	uint32_t uniforms_p;
691d5b1a78aSEric Anholt 	uint32_t uniforms_size;
69265101d8cSBoris Brezillon 
69365101d8cSBoris Brezillon 	/* Pointer to a performance monitor object if the user requested it,
69465101d8cSBoris Brezillon 	 * NULL otherwise.
69565101d8cSBoris Brezillon 	 */
69665101d8cSBoris Brezillon 	struct vc4_perfmon *perfmon;
69735c8b4b2SPaul Kocialkowski 
69835c8b4b2SPaul Kocialkowski 	/* Whether the exec has taken a reference to the binner BO, which should
69935c8b4b2SPaul Kocialkowski 	 * happen with a VC4_PACKET_TILE_BINNING_MODE_CONFIG packet.
70035c8b4b2SPaul Kocialkowski 	 */
70135c8b4b2SPaul Kocialkowski 	bool bin_bo_used;
70265101d8cSBoris Brezillon };
70365101d8cSBoris Brezillon 
70465101d8cSBoris Brezillon /* Per-open file private data. Any driver-specific resource that has to be
70565101d8cSBoris Brezillon  * released when the DRM file is closed should be placed here.
70665101d8cSBoris Brezillon  */
70765101d8cSBoris Brezillon struct vc4_file {
708*30f8c74cSMaxime Ripard 	struct vc4_dev *dev;
709*30f8c74cSMaxime Ripard 
71065101d8cSBoris Brezillon 	struct {
71165101d8cSBoris Brezillon 		struct idr idr;
71265101d8cSBoris Brezillon 		struct mutex lock;
71365101d8cSBoris Brezillon 	} perfmon;
71435c8b4b2SPaul Kocialkowski 
71535c8b4b2SPaul Kocialkowski 	bool bin_bo_used;
716d5b1a78aSEric Anholt };
717d5b1a78aSEric Anholt 
718d5b1a78aSEric Anholt static inline struct vc4_exec_info *
719ca26d28bSVarad Gautam vc4_first_bin_job(struct vc4_dev *vc4)
720d5b1a78aSEric Anholt {
72157b9f569SMasahiro Yamada 	return list_first_entry_or_null(&vc4->bin_job_list,
72257b9f569SMasahiro Yamada 					struct vc4_exec_info, head);
723ca26d28bSVarad Gautam }
724ca26d28bSVarad Gautam 
725ca26d28bSVarad Gautam static inline struct vc4_exec_info *
726ca26d28bSVarad Gautam vc4_first_render_job(struct vc4_dev *vc4)
727ca26d28bSVarad Gautam {
72857b9f569SMasahiro Yamada 	return list_first_entry_or_null(&vc4->render_job_list,
729ca26d28bSVarad Gautam 					struct vc4_exec_info, head);
730d5b1a78aSEric Anholt }
731d5b1a78aSEric Anholt 
7329326e6f2SEric Anholt static inline struct vc4_exec_info *
7339326e6f2SEric Anholt vc4_last_render_job(struct vc4_dev *vc4)
7349326e6f2SEric Anholt {
7359326e6f2SEric Anholt 	if (list_empty(&vc4->render_job_list))
7369326e6f2SEric Anholt 		return NULL;
7379326e6f2SEric Anholt 	return list_last_entry(&vc4->render_job_list,
7389326e6f2SEric Anholt 			       struct vc4_exec_info, head);
7399326e6f2SEric Anholt }
7409326e6f2SEric Anholt 
741c8b75bcaSEric Anholt /**
742463873d5SEric Anholt  * struct vc4_texture_sample_info - saves the offsets into the UBO for texture
743463873d5SEric Anholt  * setup parameters.
744463873d5SEric Anholt  *
745463873d5SEric Anholt  * This will be used at draw time to relocate the reference to the texture
746463873d5SEric Anholt  * contents in p0, and validate that the offset combined with
747463873d5SEric Anholt  * width/height/stride/etc. from p1 and p2/p3 doesn't sample outside the BO.
748463873d5SEric Anholt  * Note that the hardware treats unprovided config parameters as 0, so not all
749463873d5SEric Anholt  * of them need to be set up for every texure sample, and we'll store ~0 as
750463873d5SEric Anholt  * the offset to mark the unused ones.
751463873d5SEric Anholt  *
752463873d5SEric Anholt  * See the VC4 3D architecture guide page 41 ("Texture and Memory Lookup Unit
753463873d5SEric Anholt  * Setup") for definitions of the texture parameters.
754463873d5SEric Anholt  */
755463873d5SEric Anholt struct vc4_texture_sample_info {
756463873d5SEric Anholt 	bool is_direct;
757463873d5SEric Anholt 	uint32_t p_offset[4];
758463873d5SEric Anholt };
759463873d5SEric Anholt 
760463873d5SEric Anholt /**
761463873d5SEric Anholt  * struct vc4_validated_shader_info - information about validated shaders that
762463873d5SEric Anholt  * needs to be used from command list validation.
763463873d5SEric Anholt  *
764463873d5SEric Anholt  * For a given shader, each time a shader state record references it, we need
765463873d5SEric Anholt  * to verify that the shader doesn't read more uniforms than the shader state
766463873d5SEric Anholt  * record's uniform BO pointer can provide, and we need to apply relocations
767463873d5SEric Anholt  * and validate the shader state record's uniforms that define the texture
768463873d5SEric Anholt  * samples.
769463873d5SEric Anholt  */
770463873d5SEric Anholt struct vc4_validated_shader_info {
771463873d5SEric Anholt 	uint32_t uniforms_size;
772463873d5SEric Anholt 	uint32_t uniforms_src_size;
773463873d5SEric Anholt 	uint32_t num_texture_samples;
774463873d5SEric Anholt 	struct vc4_texture_sample_info *texture_samples;
7756d45c81dSEric Anholt 
7766d45c81dSEric Anholt 	uint32_t num_uniform_addr_offsets;
7776d45c81dSEric Anholt 	uint32_t *uniform_addr_offsets;
778c778cc5dSJonas Pfeil 
779c778cc5dSJonas Pfeil 	bool is_threaded;
780463873d5SEric Anholt };
781463873d5SEric Anholt 
782463873d5SEric Anholt /**
7837f2a09ecSJames Hughes  * __wait_for - magic wait macro
784c8b75bcaSEric Anholt  *
7857f2a09ecSJames Hughes  * Macro to help avoid open coding check/wait/timeout patterns. Note that it's
7867f2a09ecSJames Hughes  * important that we check the condition again after having timed out, since the
7877f2a09ecSJames Hughes  * timeout could be due to preemption or similar and we've never had a chance to
7887f2a09ecSJames Hughes  * check the condition before the timeout.
789c8b75bcaSEric Anholt  */
7907f2a09ecSJames Hughes #define __wait_for(OP, COND, US, Wmin, Wmax) ({ \
7917f2a09ecSJames Hughes 	const ktime_t end__ = ktime_add_ns(ktime_get_raw(), 1000ll * (US)); \
7927f2a09ecSJames Hughes 	long wait__ = (Wmin); /* recommended min for usleep is 10 us */	\
7937f2a09ecSJames Hughes 	int ret__;							\
7947f2a09ecSJames Hughes 	might_sleep();							\
7957f2a09ecSJames Hughes 	for (;;) {							\
7967f2a09ecSJames Hughes 		const bool expired__ = ktime_after(ktime_get_raw(), end__); \
7977f2a09ecSJames Hughes 		OP;							\
7987f2a09ecSJames Hughes 		/* Guarantee COND check prior to timeout */		\
7997f2a09ecSJames Hughes 		barrier();						\
8007f2a09ecSJames Hughes 		if (COND) {						\
8017f2a09ecSJames Hughes 			ret__ = 0;					\
8027f2a09ecSJames Hughes 			break;						\
8037f2a09ecSJames Hughes 		}							\
8047f2a09ecSJames Hughes 		if (expired__) {					\
805c8b75bcaSEric Anholt 			ret__ = -ETIMEDOUT;				\
806c8b75bcaSEric Anholt 			break;						\
807c8b75bcaSEric Anholt 		}							\
8087f2a09ecSJames Hughes 		usleep_range(wait__, wait__ * 2);			\
8097f2a09ecSJames Hughes 		if (wait__ < (Wmax))					\
8107f2a09ecSJames Hughes 			wait__ <<= 1;					\
811c8b75bcaSEric Anholt 	}								\
812c8b75bcaSEric Anholt 	ret__;								\
813c8b75bcaSEric Anholt })
814c8b75bcaSEric Anholt 
8157f2a09ecSJames Hughes #define _wait_for(COND, US, Wmin, Wmax)	__wait_for(, (COND), (US), (Wmin), \
8167f2a09ecSJames Hughes 						   (Wmax))
8177f2a09ecSJames Hughes #define wait_for(COND, MS)		_wait_for((COND), (MS) * 1000, 10, 1000)
818c8b75bcaSEric Anholt 
819c8b75bcaSEric Anholt /* vc4_bo.c */
820c826a6e1SEric Anholt struct drm_gem_object *vc4_create_object(struct drm_device *dev, size_t size);
821c826a6e1SEric Anholt struct vc4_bo *vc4_bo_create(struct drm_device *dev, size_t size,
822f3099462SEric Anholt 			     bool from_cache, enum vc4_kernel_bo_type type);
823dd2dfd44SMaxime Ripard int vc4_bo_dumb_create(struct drm_file *file_priv,
824c8b75bcaSEric Anholt 		       struct drm_device *dev,
825c8b75bcaSEric Anholt 		       struct drm_mode_create_dumb *args);
826d5bc60f6SEric Anholt int vc4_create_bo_ioctl(struct drm_device *dev, void *data,
827d5bc60f6SEric Anholt 			struct drm_file *file_priv);
828463873d5SEric Anholt int vc4_create_shader_bo_ioctl(struct drm_device *dev, void *data,
829463873d5SEric Anholt 			       struct drm_file *file_priv);
830d5bc60f6SEric Anholt int vc4_mmap_bo_ioctl(struct drm_device *dev, void *data,
831d5bc60f6SEric Anholt 		      struct drm_file *file_priv);
83283753117SEric Anholt int vc4_set_tiling_ioctl(struct drm_device *dev, void *data,
83383753117SEric Anholt 			 struct drm_file *file_priv);
83483753117SEric Anholt int vc4_get_tiling_ioctl(struct drm_device *dev, void *data,
83583753117SEric Anholt 			 struct drm_file *file_priv);
83621461365SEric Anholt int vc4_get_hang_state_ioctl(struct drm_device *dev, void *data,
83721461365SEric Anholt 			     struct drm_file *file_priv);
838f3099462SEric Anholt int vc4_label_bo_ioctl(struct drm_device *dev, void *data,
839f3099462SEric Anholt 		       struct drm_file *file_priv);
840f3099462SEric Anholt int vc4_bo_cache_init(struct drm_device *dev);
841b9f19259SBoris Brezillon int vc4_bo_inc_usecnt(struct vc4_bo *bo);
842b9f19259SBoris Brezillon void vc4_bo_dec_usecnt(struct vc4_bo *bo);
843b9f19259SBoris Brezillon void vc4_bo_add_to_purgeable_pool(struct vc4_bo *bo);
844b9f19259SBoris Brezillon void vc4_bo_remove_from_purgeable_pool(struct vc4_bo *bo);
845c8b75bcaSEric Anholt 
846c8b75bcaSEric Anholt /* vc4_crtc.c */
847c8b75bcaSEric Anholt extern struct platform_driver vc4_crtc_driver;
848875a4d53SMaxime Ripard int vc4_crtc_disable_at_boot(struct drm_crtc *crtc);
8495fefc601SMaxime Ripard int vc4_crtc_init(struct drm_device *drm, struct vc4_crtc *vc4_crtc,
8505fefc601SMaxime Ripard 		  const struct drm_crtc_funcs *crtc_funcs,
8515fefc601SMaxime Ripard 		  const struct drm_crtc_helper_funcs *crtc_helper_funcs);
852bdd96472SMaxime Ripard void vc4_crtc_destroy(struct drm_crtc *crtc);
853bdd96472SMaxime Ripard int vc4_page_flip(struct drm_crtc *crtc,
854bdd96472SMaxime Ripard 		  struct drm_framebuffer *fb,
855bdd96472SMaxime Ripard 		  struct drm_pending_vblank_event *event,
856bdd96472SMaxime Ripard 		  uint32_t flags,
857bdd96472SMaxime Ripard 		  struct drm_modeset_acquire_ctx *ctx);
858bdd96472SMaxime Ripard struct drm_crtc_state *vc4_crtc_duplicate_state(struct drm_crtc *crtc);
859bdd96472SMaxime Ripard void vc4_crtc_destroy_state(struct drm_crtc *crtc,
860bdd96472SMaxime Ripard 			    struct drm_crtc_state *state);
861bdd96472SMaxime Ripard void vc4_crtc_reset(struct drm_crtc *crtc);
862008095e0SBoris Brezillon void vc4_crtc_handle_vblank(struct vc4_crtc *crtc);
863666e7358SBoris Brezillon void vc4_crtc_get_margins(struct drm_crtc_state *state,
864e590c2b0SDan Carpenter 			  unsigned int *left, unsigned int *right,
865666e7358SBoris Brezillon 			  unsigned int *top, unsigned int *bottom);
866c8b75bcaSEric Anholt 
867c8b75bcaSEric Anholt /* vc4_debugfs.c */
8687ce84471SWambui Karuga void vc4_debugfs_init(struct drm_minor *minor);
869c9be804cSEric Anholt #ifdef CONFIG_DEBUG_FS
870c9be804cSEric Anholt void vc4_debugfs_add_file(struct drm_device *drm,
871c9be804cSEric Anholt 			  const char *filename,
872c9be804cSEric Anholt 			  int (*show)(struct seq_file*, void*),
873c9be804cSEric Anholt 			  void *data);
874c9be804cSEric Anholt void vc4_debugfs_add_regset32(struct drm_device *drm,
875c9be804cSEric Anholt 			      const char *filename,
876c9be804cSEric Anholt 			      struct debugfs_regset32 *regset);
877c9be804cSEric Anholt #else
878c9be804cSEric Anholt static inline void vc4_debugfs_add_file(struct drm_device *drm,
879c9be804cSEric Anholt 					const char *filename,
880c9be804cSEric Anholt 					int (*show)(struct seq_file*, void*),
881c9be804cSEric Anholt 					void *data)
882c9be804cSEric Anholt {
883c9be804cSEric Anholt }
884c9be804cSEric Anholt 
885c9be804cSEric Anholt static inline void vc4_debugfs_add_regset32(struct drm_device *drm,
886c9be804cSEric Anholt 					    const char *filename,
887c9be804cSEric Anholt 					    struct debugfs_regset32 *regset)
888c9be804cSEric Anholt {
889c9be804cSEric Anholt }
890c9be804cSEric Anholt #endif
891c8b75bcaSEric Anholt 
892c8b75bcaSEric Anholt /* vc4_drv.c */
893c8b75bcaSEric Anholt void __iomem *vc4_ioremap_regs(struct platform_device *dev, int index);
8943d763742SMaxime Ripard int vc4_dumb_fixup_args(struct drm_mode_create_dumb *args);
895c8b75bcaSEric Anholt 
89608302c35SEric Anholt /* vc4_dpi.c */
89708302c35SEric Anholt extern struct platform_driver vc4_dpi_driver;
89808302c35SEric Anholt 
8994078f575SEric Anholt /* vc4_dsi.c */
9004078f575SEric Anholt extern struct platform_driver vc4_dsi_driver;
9014078f575SEric Anholt 
902cdec4d36SEric Anholt /* vc4_fence.c */
903cdec4d36SEric Anholt extern const struct dma_fence_ops vc4_fence_ops;
904cdec4d36SEric Anholt 
905d5b1a78aSEric Anholt /* vc4_gem.c */
906171a072bSMaxime Ripard int vc4_gem_init(struct drm_device *dev);
907d5b1a78aSEric Anholt int vc4_submit_cl_ioctl(struct drm_device *dev, void *data,
908d5b1a78aSEric Anholt 			struct drm_file *file_priv);
909d5b1a78aSEric Anholt int vc4_wait_seqno_ioctl(struct drm_device *dev, void *data,
910d5b1a78aSEric Anholt 			 struct drm_file *file_priv);
911d5b1a78aSEric Anholt int vc4_wait_bo_ioctl(struct drm_device *dev, void *data,
912d5b1a78aSEric Anholt 		      struct drm_file *file_priv);
913ca26d28bSVarad Gautam void vc4_submit_next_bin_job(struct drm_device *dev);
914ca26d28bSVarad Gautam void vc4_submit_next_render_job(struct drm_device *dev);
915ca26d28bSVarad Gautam void vc4_move_job_to_render(struct drm_device *dev, struct vc4_exec_info *exec);
916d5b1a78aSEric Anholt int vc4_wait_for_seqno(struct drm_device *dev, uint64_t seqno,
917d5b1a78aSEric Anholt 		       uint64_t timeout_ns, bool interruptible);
918d5b1a78aSEric Anholt void vc4_job_handle_completed(struct vc4_dev *vc4);
919b501baccSEric Anholt int vc4_queue_seqno_cb(struct drm_device *dev,
920b501baccSEric Anholt 		       struct vc4_seqno_cb *cb, uint64_t seqno,
921b501baccSEric Anholt 		       void (*func)(struct vc4_seqno_cb *cb));
922b9f19259SBoris Brezillon int vc4_gem_madvise_ioctl(struct drm_device *dev, void *data,
923b9f19259SBoris Brezillon 			  struct drm_file *file_priv);
924d5b1a78aSEric Anholt 
925c8b75bcaSEric Anholt /* vc4_hdmi.c */
926c8b75bcaSEric Anholt extern struct platform_driver vc4_hdmi_driver;
927c8b75bcaSEric Anholt 
9289a8d5e4aSBoris Brezillon /* vc4_vec.c */
929e4b81f8cSBoris Brezillon extern struct platform_driver vc4_vec_driver;
930e4b81f8cSBoris Brezillon 
931008095e0SBoris Brezillon /* vc4_txp.c */
932008095e0SBoris Brezillon extern struct platform_driver vc4_txp_driver;
933008095e0SBoris Brezillon 
934d5b1a78aSEric Anholt /* vc4_irq.c */
9355226711eSThomas Zimmermann void vc4_irq_enable(struct drm_device *dev);
9365226711eSThomas Zimmermann void vc4_irq_disable(struct drm_device *dev);
9375226711eSThomas Zimmermann int vc4_irq_install(struct drm_device *dev, int irq);
938d5b1a78aSEric Anholt void vc4_irq_uninstall(struct drm_device *dev);
939d5b1a78aSEric Anholt void vc4_irq_reset(struct drm_device *dev);
940d5b1a78aSEric Anholt 
941c8b75bcaSEric Anholt /* vc4_hvs.c */
942c8b75bcaSEric Anholt extern struct platform_driver vc4_hvs_driver;
9433454f01aSMaxime Ripard void vc4_hvs_stop_channel(struct vc4_hvs *hvs, unsigned int output);
9443454f01aSMaxime Ripard int vc4_hvs_get_fifo_from_output(struct vc4_hvs *hvs, unsigned int output);
9453454f01aSMaxime Ripard u8 vc4_hvs_get_fifo_frame_count(struct vc4_hvs *hvs, unsigned int fifo);
946ee6965c8SMaxime Ripard int vc4_hvs_atomic_check(struct drm_crtc *crtc, struct drm_atomic_state *state);
947eeb6ab46SMaxime Ripard void vc4_hvs_atomic_begin(struct drm_crtc *crtc, struct drm_atomic_state *state);
948ee6965c8SMaxime Ripard void vc4_hvs_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state);
949ee6965c8SMaxime Ripard void vc4_hvs_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state);
950ee6965c8SMaxime Ripard void vc4_hvs_atomic_flush(struct drm_crtc *crtc, struct drm_atomic_state *state);
9513454f01aSMaxime Ripard void vc4_hvs_dump_state(struct vc4_hvs *hvs);
9523454f01aSMaxime Ripard void vc4_hvs_unmask_underrun(struct vc4_hvs *hvs, int channel);
9533454f01aSMaxime Ripard void vc4_hvs_mask_underrun(struct vc4_hvs *hvs, int channel);
954c8b75bcaSEric Anholt 
955c8b75bcaSEric Anholt /* vc4_kms.c */
956c8b75bcaSEric Anholt int vc4_kms_load(struct drm_device *dev);
957c8b75bcaSEric Anholt 
958c8b75bcaSEric Anholt /* vc4_plane.c */
959c8b75bcaSEric Anholt struct drm_plane *vc4_plane_init(struct drm_device *dev,
960c8b75bcaSEric Anholt 				 enum drm_plane_type type);
9610c2a50f1SMaxime Ripard int vc4_plane_create_additional_planes(struct drm_device *dev);
962c8b75bcaSEric Anholt u32 vc4_plane_write_dlist(struct drm_plane *plane, u32 __iomem *dlist);
9632f196b7cSDaniel Vetter u32 vc4_plane_dlist_size(const struct drm_plane_state *state);
964b501baccSEric Anholt void vc4_plane_async_set_fb(struct drm_plane *plane,
965b501baccSEric Anholt 			    struct drm_framebuffer *fb);
966463873d5SEric Anholt 
967d3f5168aSEric Anholt /* vc4_v3d.c */
968d3f5168aSEric Anholt extern struct platform_driver vc4_v3d_driver;
969ffc26740SEric Anholt extern const struct of_device_id vc4_v3d_dt_match[];
970553c942fSEric Anholt int vc4_v3d_get_bin_slot(struct vc4_dev *vc4);
97135c8b4b2SPaul Kocialkowski int vc4_v3d_bin_bo_get(struct vc4_dev *vc4, bool *used);
97235c8b4b2SPaul Kocialkowski void vc4_v3d_bin_bo_put(struct vc4_dev *vc4);
973cb74f6eeSEric Anholt int vc4_v3d_pm_get(struct vc4_dev *vc4);
974cb74f6eeSEric Anholt void vc4_v3d_pm_put(struct vc4_dev *vc4);
975d5b1a78aSEric Anholt 
976d5b1a78aSEric Anholt /* vc4_validate.c */
977d5b1a78aSEric Anholt int
978d5b1a78aSEric Anholt vc4_validate_bin_cl(struct drm_device *dev,
979d5b1a78aSEric Anholt 		    void *validated,
980d5b1a78aSEric Anholt 		    void *unvalidated,
981d5b1a78aSEric Anholt 		    struct vc4_exec_info *exec);
982d5b1a78aSEric Anholt 
983d5b1a78aSEric Anholt int
984d5b1a78aSEric Anholt vc4_validate_shader_recs(struct drm_device *dev, struct vc4_exec_info *exec);
985d5b1a78aSEric Anholt 
986d5b1a78aSEric Anholt struct drm_gem_cma_object *vc4_use_bo(struct vc4_exec_info *exec,
987d5b1a78aSEric Anholt 				      uint32_t hindex);
988d5b1a78aSEric Anholt 
989d5b1a78aSEric Anholt int vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec);
990d5b1a78aSEric Anholt 
991d5b1a78aSEric Anholt bool vc4_check_tex_size(struct vc4_exec_info *exec,
992d5b1a78aSEric Anholt 			struct drm_gem_cma_object *fbo,
993d5b1a78aSEric Anholt 			uint32_t offset, uint8_t tiling_format,
994d5b1a78aSEric Anholt 			uint32_t width, uint32_t height, uint8_t cpp);
995d3f5168aSEric Anholt 
996463873d5SEric Anholt /* vc4_validate_shader.c */
997463873d5SEric Anholt struct vc4_validated_shader_info *
998463873d5SEric Anholt vc4_validate_shader(struct drm_gem_cma_object *shader_obj);
99965101d8cSBoris Brezillon 
100065101d8cSBoris Brezillon /* vc4_perfmon.c */
100165101d8cSBoris Brezillon void vc4_perfmon_get(struct vc4_perfmon *perfmon);
100265101d8cSBoris Brezillon void vc4_perfmon_put(struct vc4_perfmon *perfmon);
100365101d8cSBoris Brezillon void vc4_perfmon_start(struct vc4_dev *vc4, struct vc4_perfmon *perfmon);
100465101d8cSBoris Brezillon void vc4_perfmon_stop(struct vc4_dev *vc4, struct vc4_perfmon *perfmon,
100565101d8cSBoris Brezillon 		      bool capture);
100665101d8cSBoris Brezillon struct vc4_perfmon *vc4_perfmon_find(struct vc4_file *vc4file, int id);
100765101d8cSBoris Brezillon void vc4_perfmon_open_file(struct vc4_file *vc4file);
100865101d8cSBoris Brezillon void vc4_perfmon_close_file(struct vc4_file *vc4file);
100965101d8cSBoris Brezillon int vc4_perfmon_create_ioctl(struct drm_device *dev, void *data,
101065101d8cSBoris Brezillon 			     struct drm_file *file_priv);
101165101d8cSBoris Brezillon int vc4_perfmon_destroy_ioctl(struct drm_device *dev, void *data,
101265101d8cSBoris Brezillon 			      struct drm_file *file_priv);
101365101d8cSBoris Brezillon int vc4_perfmon_get_values_ioctl(struct drm_device *dev, void *data,
101465101d8cSBoris Brezillon 				 struct drm_file *file_priv);
10156a88752cSMaxime Ripard 
10166a88752cSMaxime Ripard #endif /* _VC4_DRV_H_ */
1017