xref: /openbmc/linux/drivers/gpu/drm/msm/msm_drv.h (revision 801543b2)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
4  * Copyright (C) 2013 Red Hat
5  * Author: Rob Clark <robdclark@gmail.com>
6  */
7 
8 #ifndef __MSM_DRV_H__
9 #define __MSM_DRV_H__
10 
11 #include <linux/kernel.h>
12 #include <linux/clk.h>
13 #include <linux/cpufreq.h>
14 #include <linux/module.h>
15 #include <linux/component.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/slab.h>
20 #include <linux/list.h>
21 #include <linux/iommu.h>
22 #include <linux/types.h>
23 #include <linux/of_graph.h>
24 #include <linux/of_device.h>
25 #include <linux/sizes.h>
26 #include <linux/kthread.h>
27 
28 #include <drm/drm_atomic.h>
29 #include <drm/drm_atomic_helper.h>
30 #include <drm/drm_probe_helper.h>
31 #include <drm/drm_fb_helper.h>
32 #include <drm/display/drm_dsc.h>
33 #include <drm/msm_drm.h>
34 #include <drm/drm_gem.h>
35 
36 struct msm_kms;
37 struct msm_gpu;
38 struct msm_mmu;
39 struct msm_mdss;
40 struct msm_rd_state;
41 struct msm_perf_state;
42 struct msm_gem_submit;
43 struct msm_fence_context;
44 struct msm_gem_address_space;
45 struct msm_gem_vma;
46 struct msm_disp_state;
47 
48 #define MAX_CRTCS      8
49 #define MAX_BRIDGES    8
50 
51 #define FRAC_16_16(mult, div)    (((mult) << 16) / (div))
52 
53 enum msm_dp_controller {
54 	MSM_DP_CONTROLLER_0,
55 	MSM_DP_CONTROLLER_1,
56 	MSM_DP_CONTROLLER_2,
57 	MSM_DP_CONTROLLER_COUNT,
58 };
59 
60 #define MSM_GPU_MAX_RINGS 4
61 #define MAX_H_TILES_PER_DISPLAY 2
62 
63 /**
64  * enum msm_event_wait - type of HW events to wait for
65  * @MSM_ENC_COMMIT_DONE - wait for the driver to flush the registers to HW
66  * @MSM_ENC_TX_COMPLETE - wait for the HW to transfer the frame to panel
67  * @MSM_ENC_VBLANK - wait for the HW VBLANK event (for driver-internal waiters)
68  */
69 enum msm_event_wait {
70 	MSM_ENC_COMMIT_DONE = 0,
71 	MSM_ENC_TX_COMPLETE,
72 	MSM_ENC_VBLANK,
73 };
74 
75 /**
76  * struct msm_display_topology - defines a display topology pipeline
77  * @num_lm:       number of layer mixers used
78  * @num_enc:      number of compression encoder blocks used
79  * @num_intf:     number of interfaces the panel is mounted on
80  * @num_dspp:     number of dspp blocks used
81  * @num_dsc:      number of Display Stream Compression (DSC) blocks used
82  */
83 struct msm_display_topology {
84 	u32 num_lm;
85 	u32 num_enc;
86 	u32 num_intf;
87 	u32 num_dspp;
88 	u32 num_dsc;
89 };
90 
91 /* Commit/Event thread specific structure */
92 struct msm_drm_thread {
93 	struct drm_device *dev;
94 	unsigned int crtc_id;
95 	struct kthread_worker *worker;
96 };
97 
98 /* DSC config */
99 struct msm_display_dsc_config {
100 	struct drm_dsc_config *drm;
101 };
102 
103 struct msm_drm_private {
104 
105 	struct drm_device *dev;
106 
107 	struct msm_kms *kms;
108 	int (*kms_init)(struct drm_device *dev);
109 
110 	/* subordinate devices, if present: */
111 	struct platform_device *gpu_pdev;
112 
113 	/* possibly this should be in the kms component, but it is
114 	 * shared by both mdp4 and mdp5..
115 	 */
116 	struct hdmi *hdmi;
117 
118 	/* DSI is shared by mdp4 and mdp5 */
119 	struct msm_dsi *dsi[2];
120 
121 	struct msm_dp *dp[MSM_DP_CONTROLLER_COUNT];
122 
123 	/* when we have more than one 'msm_gpu' these need to be an array: */
124 	struct msm_gpu *gpu;
125 
126 	/* gpu is only set on open(), but we need this info earlier */
127 	bool is_a2xx;
128 	bool has_cached_coherent;
129 
130 	struct drm_fb_helper *fbdev;
131 
132 	struct msm_rd_state *rd;       /* debugfs to dump all submits */
133 	struct msm_rd_state *hangrd;   /* debugfs to dump hanging submits */
134 	struct msm_perf_state *perf;
135 
136 	/**
137 	 * List of all GEM objects (mainly for debugfs, protected by obj_lock
138 	 * (acquire before per GEM object lock)
139 	 */
140 	struct list_head objects;
141 	struct mutex obj_lock;
142 
143 	/**
144 	 * LRUs of inactive GEM objects.  Every bo is either in one of the
145 	 * inactive lists (depending on whether or not it is shrinkable) or
146 	 * gpu->active_list (for the gpu it is active on[1]), or transiently
147 	 * on a temporary list as the shrinker is running.
148 	 *
149 	 * Note that inactive_willneed also contains pinned and vmap'd bos,
150 	 * but the number of pinned-but-not-active objects is small (scanout
151 	 * buffers, ringbuffer, etc).
152 	 *
153 	 * These lists are protected by mm_lock (which should be acquired
154 	 * before per GEM object lock).  One should *not* hold mm_lock in
155 	 * get_pages()/vmap()/etc paths, as they can trigger the shrinker.
156 	 *
157 	 * [1] if someone ever added support for the old 2d cores, there could be
158 	 *     more than one gpu object
159 	 */
160 	struct list_head inactive_willneed;  /* inactive + potentially unpin/evictable */
161 	struct list_head inactive_dontneed;  /* inactive + shrinkable */
162 	struct list_head inactive_unpinned;  /* inactive + purged or unpinned */
163 	long shrinkable_count;               /* write access under mm_lock */
164 	long evictable_count;                /* write access under mm_lock */
165 	struct mutex mm_lock;
166 
167 	struct workqueue_struct *wq;
168 
169 	unsigned int num_crtcs;
170 	struct drm_crtc *crtcs[MAX_CRTCS];
171 
172 	struct msm_drm_thread event_thread[MAX_CRTCS];
173 
174 	unsigned int num_bridges;
175 	struct drm_bridge *bridges[MAX_BRIDGES];
176 
177 	/* VRAM carveout, used when no IOMMU: */
178 	struct {
179 		unsigned long size;
180 		dma_addr_t paddr;
181 		/* NOTE: mm managed at the page level, size is in # of pages
182 		 * and position mm_node->start is in # of pages:
183 		 */
184 		struct drm_mm mm;
185 		spinlock_t lock; /* Protects drm_mm node allocation/removal */
186 	} vram;
187 
188 	struct notifier_block vmap_notifier;
189 	struct shrinker shrinker;
190 
191 	struct drm_atomic_state *pm_state;
192 
193 	/* For hang detection, in ms */
194 	unsigned int hangcheck_period;
195 
196 	/**
197 	 * disable_err_irq:
198 	 *
199 	 * Disable handling of GPU hw error interrupts, to force fallback to
200 	 * sw hangcheck timer.  Written (via debugfs) by igt tests to test
201 	 * the sw hangcheck mechanism.
202 	 */
203 	bool disable_err_irq;
204 };
205 
206 struct msm_format {
207 	uint32_t pixel_format;
208 };
209 
210 struct msm_pending_timer;
211 
212 int msm_atomic_init_pending_timer(struct msm_pending_timer *timer,
213 		struct msm_kms *kms, int crtc_idx);
214 void msm_atomic_destroy_pending_timer(struct msm_pending_timer *timer);
215 void msm_atomic_commit_tail(struct drm_atomic_state *state);
216 struct drm_atomic_state *msm_atomic_state_alloc(struct drm_device *dev);
217 void msm_atomic_state_clear(struct drm_atomic_state *state);
218 void msm_atomic_state_free(struct drm_atomic_state *state);
219 
220 int msm_crtc_enable_vblank(struct drm_crtc *crtc);
221 void msm_crtc_disable_vblank(struct drm_crtc *crtc);
222 
223 int msm_register_mmu(struct drm_device *dev, struct msm_mmu *mmu);
224 void msm_unregister_mmu(struct drm_device *dev, struct msm_mmu *mmu);
225 
226 struct msm_gem_address_space *msm_kms_init_aspace(struct drm_device *dev);
227 bool msm_use_mmu(struct drm_device *dev);
228 
229 int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
230 		struct drm_file *file);
231 
232 #ifdef CONFIG_DEBUG_FS
233 unsigned long msm_gem_shrinker_shrink(struct drm_device *dev, unsigned long nr_to_scan);
234 #endif
235 
236 void msm_gem_shrinker_init(struct drm_device *dev);
237 void msm_gem_shrinker_cleanup(struct drm_device *dev);
238 
239 int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
240 struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj);
241 int msm_gem_prime_vmap(struct drm_gem_object *obj, struct iosys_map *map);
242 void msm_gem_prime_vunmap(struct drm_gem_object *obj, struct iosys_map *map);
243 struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
244 		struct dma_buf_attachment *attach, struct sg_table *sg);
245 int msm_gem_prime_pin(struct drm_gem_object *obj);
246 void msm_gem_prime_unpin(struct drm_gem_object *obj);
247 
248 int msm_framebuffer_prepare(struct drm_framebuffer *fb,
249 		struct msm_gem_address_space *aspace, bool needs_dirtyfb);
250 void msm_framebuffer_cleanup(struct drm_framebuffer *fb,
251 		struct msm_gem_address_space *aspace, bool needed_dirtyfb);
252 uint32_t msm_framebuffer_iova(struct drm_framebuffer *fb,
253 		struct msm_gem_address_space *aspace, int plane);
254 struct drm_gem_object *msm_framebuffer_bo(struct drm_framebuffer *fb, int plane);
255 const struct msm_format *msm_framebuffer_format(struct drm_framebuffer *fb);
256 struct drm_framebuffer *msm_framebuffer_create(struct drm_device *dev,
257 		struct drm_file *file, const struct drm_mode_fb_cmd2 *mode_cmd);
258 struct drm_framebuffer * msm_alloc_stolen_fb(struct drm_device *dev,
259 		int w, int h, int p, uint32_t format);
260 
261 struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev);
262 void msm_fbdev_free(struct drm_device *dev);
263 
264 struct hdmi;
265 #ifdef CONFIG_DRM_MSM_HDMI
266 int msm_hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
267 		struct drm_encoder *encoder);
268 void __init msm_hdmi_register(void);
269 void __exit msm_hdmi_unregister(void);
270 #else
271 static inline int msm_hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
272 		struct drm_encoder *encoder)
273 {
274 	return -EINVAL;
275 }
276 static inline void __init msm_hdmi_register(void) {}
277 static inline void __exit msm_hdmi_unregister(void) {}
278 #endif
279 
280 struct msm_dsi;
281 #ifdef CONFIG_DRM_MSM_DSI
282 int dsi_dev_attach(struct platform_device *pdev);
283 void dsi_dev_detach(struct platform_device *pdev);
284 void __init msm_dsi_register(void);
285 void __exit msm_dsi_unregister(void);
286 int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
287 			 struct drm_encoder *encoder);
288 void msm_dsi_snapshot(struct msm_disp_state *disp_state, struct msm_dsi *msm_dsi);
289 bool msm_dsi_is_cmd_mode(struct msm_dsi *msm_dsi);
290 bool msm_dsi_is_bonded_dsi(struct msm_dsi *msm_dsi);
291 bool msm_dsi_is_master_dsi(struct msm_dsi *msm_dsi);
292 struct msm_display_dsc_config *msm_dsi_get_dsc_config(struct msm_dsi *msm_dsi);
293 #else
294 static inline void __init msm_dsi_register(void)
295 {
296 }
297 static inline void __exit msm_dsi_unregister(void)
298 {
299 }
300 static inline int msm_dsi_modeset_init(struct msm_dsi *msm_dsi,
301 				       struct drm_device *dev,
302 				       struct drm_encoder *encoder)
303 {
304 	return -EINVAL;
305 }
306 static inline void msm_dsi_snapshot(struct msm_disp_state *disp_state, struct msm_dsi *msm_dsi)
307 {
308 }
309 static inline bool msm_dsi_is_cmd_mode(struct msm_dsi *msm_dsi)
310 {
311 	return false;
312 }
313 static inline bool msm_dsi_is_bonded_dsi(struct msm_dsi *msm_dsi)
314 {
315 	return false;
316 }
317 static inline bool msm_dsi_is_master_dsi(struct msm_dsi *msm_dsi)
318 {
319 	return false;
320 }
321 
322 static inline struct msm_display_dsc_config *msm_dsi_get_dsc_config(struct msm_dsi *msm_dsi)
323 {
324 	return NULL;
325 }
326 #endif
327 
328 #ifdef CONFIG_DRM_MSM_DP
329 int __init msm_dp_register(void);
330 void __exit msm_dp_unregister(void);
331 int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
332 			 struct drm_encoder *encoder);
333 void msm_dp_irq_postinstall(struct msm_dp *dp_display);
334 void msm_dp_snapshot(struct msm_disp_state *disp_state, struct msm_dp *dp_display);
335 
336 void msm_dp_debugfs_init(struct msm_dp *dp_display, struct drm_minor *minor);
337 bool msm_dp_wide_bus_available(const struct msm_dp *dp_display);
338 
339 #else
340 static inline int __init msm_dp_register(void)
341 {
342 	return -EINVAL;
343 }
344 static inline void __exit msm_dp_unregister(void)
345 {
346 }
347 static inline int msm_dp_modeset_init(struct msm_dp *dp_display,
348 				       struct drm_device *dev,
349 				       struct drm_encoder *encoder)
350 {
351 	return -EINVAL;
352 }
353 
354 static inline void msm_dp_irq_postinstall(struct msm_dp *dp_display)
355 {
356 }
357 
358 static inline void msm_dp_snapshot(struct msm_disp_state *disp_state, struct msm_dp *dp_display)
359 {
360 }
361 
362 static inline void msm_dp_debugfs_init(struct msm_dp *dp_display,
363 		struct drm_minor *minor)
364 {
365 }
366 
367 static inline bool msm_dp_wide_bus_available(const struct msm_dp *dp_display)
368 {
369 	return false;
370 }
371 
372 #endif
373 
374 #ifdef CONFIG_DRM_MSM_MDP4
375 void msm_mdp4_register(void);
376 void msm_mdp4_unregister(void);
377 #else
378 static inline void msm_mdp4_register(void) {}
379 static inline void msm_mdp4_unregister(void) {}
380 #endif
381 
382 #ifdef CONFIG_DRM_MSM_MDP5
383 void msm_mdp_register(void);
384 void msm_mdp_unregister(void);
385 #else
386 static inline void msm_mdp_register(void) {}
387 static inline void msm_mdp_unregister(void) {}
388 #endif
389 
390 #ifdef CONFIG_DRM_MSM_DPU
391 void msm_dpu_register(void);
392 void msm_dpu_unregister(void);
393 #else
394 static inline void msm_dpu_register(void) {}
395 static inline void msm_dpu_unregister(void) {}
396 #endif
397 
398 #ifdef CONFIG_DRM_MSM_MDSS
399 void msm_mdss_register(void);
400 void msm_mdss_unregister(void);
401 #else
402 static inline void msm_mdss_register(void) {}
403 static inline void msm_mdss_unregister(void) {}
404 #endif
405 
406 #ifdef CONFIG_DEBUG_FS
407 void msm_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
408 int msm_debugfs_late_init(struct drm_device *dev);
409 int msm_rd_debugfs_init(struct drm_minor *minor);
410 void msm_rd_debugfs_cleanup(struct msm_drm_private *priv);
411 __printf(3, 4)
412 void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
413 		const char *fmt, ...);
414 int msm_perf_debugfs_init(struct drm_minor *minor);
415 void msm_perf_debugfs_cleanup(struct msm_drm_private *priv);
416 #else
417 static inline int msm_debugfs_late_init(struct drm_device *dev) { return 0; }
418 __printf(3, 4)
419 static inline void msm_rd_dump_submit(struct msm_rd_state *rd,
420 			struct msm_gem_submit *submit,
421 			const char *fmt, ...) {}
422 static inline void msm_rd_debugfs_cleanup(struct msm_drm_private *priv) {}
423 static inline void msm_perf_debugfs_cleanup(struct msm_drm_private *priv) {}
424 #endif
425 
426 struct clk *msm_clk_get(struct platform_device *pdev, const char *name);
427 
428 struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
429 	const char *name);
430 void __iomem *msm_ioremap(struct platform_device *pdev, const char *name);
431 void __iomem *msm_ioremap_size(struct platform_device *pdev, const char *name,
432 		phys_addr_t *size);
433 void __iomem *msm_ioremap_quiet(struct platform_device *pdev, const char *name);
434 
435 #define msm_writel(data, addr) writel((data), (addr))
436 #define msm_readl(addr) readl((addr))
437 
438 static inline void msm_rmw(void __iomem *addr, u32 mask, u32 or)
439 {
440 	u32 val = msm_readl(addr);
441 
442 	val &= ~mask;
443 	msm_writel(val | or, addr);
444 }
445 
446 /**
447  * struct msm_hrtimer_work - a helper to combine an hrtimer with kthread_work
448  *
449  * @timer: hrtimer to control when the kthread work is triggered
450  * @work:  the kthread work
451  * @worker: the kthread worker the work will be scheduled on
452  */
453 struct msm_hrtimer_work {
454 	struct hrtimer timer;
455 	struct kthread_work work;
456 	struct kthread_worker *worker;
457 };
458 
459 void msm_hrtimer_queue_work(struct msm_hrtimer_work *work,
460 			    ktime_t wakeup_time,
461 			    enum hrtimer_mode mode);
462 void msm_hrtimer_work_init(struct msm_hrtimer_work *work,
463 			   struct kthread_worker *worker,
464 			   kthread_work_func_t fn,
465 			   clockid_t clock_id,
466 			   enum hrtimer_mode mode);
467 
468 #define DBG(fmt, ...) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
469 #define VERB(fmt, ...) if (0) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
470 
471 static inline int align_pitch(int width, int bpp)
472 {
473 	int bytespp = (bpp + 7) / 8;
474 	/* adreno needs pitch aligned to 32 pixels: */
475 	return bytespp * ALIGN(width, 32);
476 }
477 
478 /* for the generated headers: */
479 #define INVALID_IDX(idx) ({BUG(); 0;})
480 #define fui(x)                ({BUG(); 0;})
481 #define _mesa_float_to_half(x) ({BUG(); 0;})
482 
483 
484 #define FIELD(val, name) (((val) & name ## __MASK) >> name ## __SHIFT)
485 
486 /* for conditionally setting boolean flag(s): */
487 #define COND(bool, val) ((bool) ? (val) : 0)
488 
489 static inline unsigned long timeout_to_jiffies(const ktime_t *timeout)
490 {
491 	ktime_t now = ktime_get();
492 	s64 remaining_jiffies;
493 
494 	if (ktime_compare(*timeout, now) < 0) {
495 		remaining_jiffies = 0;
496 	} else {
497 		ktime_t rem = ktime_sub(*timeout, now);
498 		remaining_jiffies = ktime_divns(rem, NSEC_PER_SEC / HZ);
499 	}
500 
501 	return clamp(remaining_jiffies, 0LL, (s64)INT_MAX);
502 }
503 
504 /* Driver helpers */
505 
506 extern const struct component_master_ops msm_drm_ops;
507 
508 int msm_pm_prepare(struct device *dev);
509 void msm_pm_complete(struct device *dev);
510 
511 int msm_drv_probe(struct device *dev,
512 	int (*kms_init)(struct drm_device *dev));
513 void msm_drv_shutdown(struct platform_device *pdev);
514 
515 
516 #endif /* __MSM_DRV_H__ */
517