msm_drv.h 16.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
4 5 6 7 8 9 10 11 12 13 14
 * Copyright (C) 2013 Red Hat
 * Author: Rob Clark <robdclark@gmail.com>
 */

#ifndef __MSM_DRV_H__
#define __MSM_DRV_H__

#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/cpufreq.h>
#include <linux/module.h>
15
#include <linux/component.h>
16 17 18 19 20 21 22
#include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/pm_runtime.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/iommu.h>
#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

R
Rob Clark 已提交
28 29 30
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_plane_helper.h>
31
#include <drm/drm_probe_helper.h>
32
#include <drm/drm_fb_helper.h>
R
Rob Clark 已提交
33
#include <drm/msm_drm.h>
D
Daniel Vetter 已提交
34
#include <drm/drm_gem.h>
35 36

struct msm_kms;
R
Rob Clark 已提交
37
struct msm_gpu;
38
struct msm_mmu;
39
struct msm_mdss;
R
Rob Clark 已提交
40
struct msm_rd_state;
R
Rob Clark 已提交
41
struct msm_perf_state;
R
Rob Clark 已提交
42
struct msm_gem_submit;
R
Rob Clark 已提交
43
struct msm_fence_context;
44 45
struct msm_gem_address_space;
struct msm_gem_vma;
46

47
#define MAX_CRTCS      8
48
#define MAX_PLANES     20
49 50 51 52
#define MAX_ENCODERS   8
#define MAX_BRIDGES    8
#define MAX_CONNECTORS 8

53 54
#define FRAC_16_16(mult, div)    (((mult) << 16) / (div))

R
Rob Clark 已提交
55
struct msm_file_private {
56 57 58
	rwlock_t queuelock;
	struct list_head submitqueues;
	int queueid;
59
	struct msm_gem_address_space *aspace;
60
	struct kref ref;
R
Rob Clark 已提交
61
};
62

63 64 65 66 67 68 69
enum msm_mdp_plane_property {
	PLANE_PROP_ZPOS,
	PLANE_PROP_ALPHA,
	PLANE_PROP_PREMULTIPLIED,
	PLANE_PROP_MAX_NUM
};

70
#define MSM_GPU_MAX_RINGS 4
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
#define MAX_H_TILES_PER_DISPLAY 2

/**
 * enum msm_display_caps - features/capabilities supported by displays
 * @MSM_DISPLAY_CAP_VID_MODE:           Video or "active" mode supported
 * @MSM_DISPLAY_CAP_CMD_MODE:           Command mode supported
 * @MSM_DISPLAY_CAP_HOT_PLUG:           Hot plug detection supported
 * @MSM_DISPLAY_CAP_EDID:               EDID supported
 */
enum msm_display_caps {
	MSM_DISPLAY_CAP_VID_MODE	= BIT(0),
	MSM_DISPLAY_CAP_CMD_MODE	= BIT(1),
	MSM_DISPLAY_CAP_HOT_PLUG	= BIT(2),
	MSM_DISPLAY_CAP_EDID		= BIT(3),
};

/**
 * enum msm_event_wait - type of HW events to wait for
 * @MSM_ENC_COMMIT_DONE - wait for the driver to flush the registers to HW
 * @MSM_ENC_TX_COMPLETE - wait for the HW to transfer the frame to panel
 * @MSM_ENC_VBLANK - wait for the HW VBLANK event (for driver-internal waiters)
 */
enum msm_event_wait {
	MSM_ENC_COMMIT_DONE = 0,
	MSM_ENC_TX_COMPLETE,
	MSM_ENC_VBLANK,
};

/**
 * struct msm_display_topology - defines a display topology pipeline
 * @num_lm:       number of layer mixers used
 * @num_enc:      number of compression encoder blocks used
 * @num_intf:     number of interfaces the panel is mounted on
 */
struct msm_display_topology {
	u32 num_lm;
	u32 num_enc;
	u32 num_intf;
109
	u32 num_dspp;
110 111 112 113
};

/**
 * struct msm_display_info - defines display properties
114
 * @intf_type:          DRM_MODE_ENCODER_ type
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
 * @capabilities:       Bitmask of display flags
 * @num_of_h_tiles:     Number of horizontal tiles in case of split interface
 * @h_tile_instance:    Controller instance used per tile. Number of elements is
 *                      based on num_of_h_tiles
 * @is_te_using_watchdog_timer:  Boolean to indicate watchdog TE is
 *				 used instead of panel TE in cmd mode panels
 */
struct msm_display_info {
	int intf_type;
	uint32_t capabilities;
	uint32_t num_of_h_tiles;
	uint32_t h_tile_instance[MAX_H_TILES_PER_DISPLAY];
	bool is_te_using_watchdog_timer;
};

/* Commit/Event thread specific structure */
struct msm_drm_thread {
	struct drm_device *dev;
	unsigned int crtc_id;
134
	struct kthread_worker *worker;
135
};
136

137 138
struct msm_drm_private {

R
Rob Clark 已提交
139 140
	struct drm_device *dev;

141 142
	struct msm_kms *kms;

143
	/* subordinate devices, if present: */
R
Rob Clark 已提交
144 145
	struct platform_device *gpu_pdev;

146
	/* top level MDSS wrapper device (for MDP5/DPU only) */
147 148
	struct msm_mdss *mdss;

R
Rob Clark 已提交
149 150 151 152
	/* possibly this should be in the kms component, but it is
	 * shared by both mdp4 and mdp5..
	 */
	struct hdmi *hdmi;
153

154 155 156 157 158 159
	/* eDP is for mdp5 only, but kms has not been created
	 * when edp_bind() and edp_init() are called. Here is the only
	 * place to keep the edp instance.
	 */
	struct msm_edp *edp;

160 161 162
	/* DSI is shared by mdp4 and mdp5 */
	struct msm_dsi *dsi[2];

163 164
	struct msm_dp *dp;

R
Rob Clark 已提交
165 166 167
	/* when we have more than one 'msm_gpu' these need to be an array: */
	struct msm_gpu *gpu;
	struct msm_file_private *lastctx;
J
Jonathan Marek 已提交
168 169
	/* gpu is only set on open(), but we need this info earlier */
	bool is_a2xx;
R
Rob Clark 已提交
170

171 172
	struct drm_fb_helper *fbdev;

R
Rob Clark 已提交
173 174
	struct msm_rd_state *rd;       /* debugfs to dump all submits */
	struct msm_rd_state *hangrd;   /* debugfs to dump hanging submits */
R
Rob Clark 已提交
175
	struct msm_perf_state *perf;
R
Rob Clark 已提交
176

R
Rob Clark 已提交
177 178 179 180 181 182 183 184
	/**
	 * List of all GEM objects (mainly for debugfs, protected by obj_lock
	 * (acquire before per GEM object lock)
	 */
	struct list_head objects;
	struct mutex obj_lock;

	/**
185
	 * LRUs of inactive GEM objects.  Every bo is either in one of the
186
	 * inactive lists (depending on whether or not it is shrinkable) or
R
Rob Clark 已提交
187 188
	 * gpu->active_list (for the gpu it is active on[1]), or transiently
	 * on a temporary list as the shrinker is running.
189
	 *
190 191 192 193
	 * Note that inactive_willneed also contains pinned and vmap'd bos,
	 * but the number of pinned-but-not-active objects is small (scanout
	 * buffers, ringbuffer, etc).
	 *
194 195
	 * These lists are protected by mm_lock (which should be acquired
	 * before per GEM object lock).  One should *not* hold mm_lock in
196 197 198 199 200
	 * get_pages()/vmap()/etc paths, as they can trigger the shrinker.
	 *
	 * [1] if someone ever added support for the old 2d cores, there could be
	 *     more than one gpu object
	 */
201 202 203
	struct list_head inactive_willneed;  /* inactive + potentially unpin/evictable */
	struct list_head inactive_dontneed;  /* inactive + shrinkable */
	struct list_head inactive_unpinned;  /* inactive + purged or unpinned */
204
	long shrinkable_count;               /* write access under mm_lock */
205
	long evictable_count;                /* write access under mm_lock */
206
	struct mutex mm_lock;
207

208 209
	struct workqueue_struct *wq;

R
Rob Clark 已提交
210
	unsigned int num_planes;
211
	struct drm_plane *planes[MAX_PLANES];
R
Rob Clark 已提交
212

213
	unsigned int num_crtcs;
214
	struct drm_crtc *crtcs[MAX_CRTCS];
215

216 217
	struct msm_drm_thread event_thread[MAX_CRTCS];

218
	unsigned int num_encoders;
219
	struct drm_encoder *encoders[MAX_ENCODERS];
220

R
Rob Clark 已提交
221
	unsigned int num_bridges;
222
	struct drm_bridge *bridges[MAX_BRIDGES];
R
Rob Clark 已提交
223

224
	unsigned int num_connectors;
225
	struct drm_connector *connectors[MAX_CONNECTORS];
226

227 228 229
	/* Properties */
	struct drm_property *plane_property[PLANE_PROP_MAX_NUM];

230 231 232 233 234 235 236 237
	/* VRAM carveout, used when no IOMMU: */
	struct {
		unsigned long size;
		dma_addr_t paddr;
		/* NOTE: mm managed at the page level, size is in # of pages
		 * and position mm_node->start is in # of pages:
		 */
		struct drm_mm mm;
238
		spinlock_t lock; /* Protects drm_mm node allocation/removal */
239
	} vram;
240

R
Rob Clark 已提交
241
	struct notifier_block vmap_notifier;
R
Rob Clark 已提交
242 243
	struct shrinker shrinker;

244
	struct drm_atomic_state *pm_state;
245 246 247 248 249 250
};

struct msm_format {
	uint32_t pixel_format;
};

R
Rob Clark 已提交
251 252
struct msm_pending_timer;

253 254
int msm_atomic_prepare_fb(struct drm_plane *plane,
			  struct drm_plane_state *new_state);
255
int msm_atomic_init_pending_timer(struct msm_pending_timer *timer,
R
Rob Clark 已提交
256
		struct msm_kms *kms, int crtc_idx);
257
void msm_atomic_destroy_pending_timer(struct msm_pending_timer *timer);
258
void msm_atomic_commit_tail(struct drm_atomic_state *state);
R
Rob Clark 已提交
259 260 261
struct drm_atomic_state *msm_atomic_state_alloc(struct drm_device *dev);
void msm_atomic_state_clear(struct drm_atomic_state *state);
void msm_atomic_state_free(struct drm_atomic_state *state);
R
Rob Clark 已提交
262

263 264 265
int msm_crtc_enable_vblank(struct drm_crtc *crtc);
void msm_crtc_disable_vblank(struct drm_crtc *crtc);

266
int msm_gem_init_vma(struct msm_gem_address_space *aspace,
267 268
		struct msm_gem_vma *vma, int npages,
		u64 range_start, u64 range_end);
269 270
void msm_gem_purge_vma(struct msm_gem_address_space *aspace,
		struct msm_gem_vma *vma);
271
void msm_gem_unmap_vma(struct msm_gem_address_space *aspace,
272
		struct msm_gem_vma *vma);
273
int msm_gem_map_vma(struct msm_gem_address_space *aspace,
R
Rob Clark 已提交
274 275
		struct msm_gem_vma *vma, int prot,
		struct sg_table *sgt, int npages);
276 277
void msm_gem_close_vma(struct msm_gem_address_space *aspace,
		struct msm_gem_vma *vma);
278

279 280 281 282

struct msm_gem_address_space *
msm_gem_address_space_get(struct msm_gem_address_space *aspace);

283 284
void msm_gem_address_space_put(struct msm_gem_address_space *aspace);

285
struct msm_gem_address_space *
286 287
msm_gem_address_space_create(struct msm_mmu *mmu, const char *name,
		u64 va_start, u64 size);
J
Jonathan Marek 已提交
288

289 290 291
int msm_register_mmu(struct drm_device *dev, struct msm_mmu *mmu);
void msm_unregister_mmu(struct drm_device *dev, struct msm_mmu *mmu);

J
Jonathan Marek 已提交
292 293
bool msm_use_mmu(struct drm_device *dev);

R
Rob Clark 已提交
294 295 296
int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
		struct drm_file *file);

R
Rob Clark 已提交
297 298 299
void msm_gem_shrinker_init(struct drm_device *dev);
void msm_gem_shrinker_cleanup(struct drm_device *dev);

R
Rob Clark 已提交
300
struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj);
301 302
int msm_gem_prime_vmap(struct drm_gem_object *obj, struct dma_buf_map *map);
void msm_gem_prime_vunmap(struct drm_gem_object *obj, struct dma_buf_map *map);
303
int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
R
Rob Clark 已提交
304
struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
305
		struct dma_buf_attachment *attach, struct sg_table *sg);
R
Rob Clark 已提交
306 307
int msm_gem_prime_pin(struct drm_gem_object *obj);
void msm_gem_prime_unpin(struct drm_gem_object *obj);
308

309 310 311 312 313 314
int msm_framebuffer_prepare(struct drm_framebuffer *fb,
		struct msm_gem_address_space *aspace);
void msm_framebuffer_cleanup(struct drm_framebuffer *fb,
		struct msm_gem_address_space *aspace);
uint32_t msm_framebuffer_iova(struct drm_framebuffer *fb,
		struct msm_gem_address_space *aspace, int plane);
315 316 317
struct drm_gem_object *msm_framebuffer_bo(struct drm_framebuffer *fb, int plane);
const struct msm_format *msm_framebuffer_format(struct drm_framebuffer *fb);
struct drm_framebuffer *msm_framebuffer_create(struct drm_device *dev,
318
		struct drm_file *file, const struct drm_mode_fb_cmd2 *mode_cmd);
319 320
struct drm_framebuffer * msm_alloc_stolen_fb(struct drm_device *dev,
		int w, int h, int p, uint32_t format);
321 322

struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev);
323
void msm_fbdev_free(struct drm_device *dev);
324

325
struct hdmi;
A
Arnd Bergmann 已提交
326
int msm_hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
R
Rob Clark 已提交
327
		struct drm_encoder *encoder);
A
Arnd Bergmann 已提交
328 329
void __init msm_hdmi_register(void);
void __exit msm_hdmi_unregister(void);
330

331 332 333 334 335 336
struct msm_edp;
void __init msm_edp_register(void);
void __exit msm_edp_unregister(void);
int msm_edp_modeset_init(struct msm_edp *edp, struct drm_device *dev,
		struct drm_encoder *encoder);

337 338 339 340 341
struct msm_dsi;
#ifdef CONFIG_DRM_MSM_DSI
void __init msm_dsi_register(void);
void __exit msm_dsi_unregister(void);
int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
342
			 struct drm_encoder *encoder);
343 344 345 346 347 348 349 350
#else
static inline void __init msm_dsi_register(void)
{
}
static inline void __exit msm_dsi_unregister(void)
{
}
static inline int msm_dsi_modeset_init(struct msm_dsi *msm_dsi,
351 352
				       struct drm_device *dev,
				       struct drm_encoder *encoder)
353 354 355 356 357
{
	return -EINVAL;
}
#endif

358 359 360 361 362 363 364
#ifdef CONFIG_DRM_MSM_DP
int __init msm_dp_register(void);
void __exit msm_dp_unregister(void);
int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
			 struct drm_encoder *encoder);
int msm_dp_display_enable(struct msm_dp *dp, struct drm_encoder *encoder);
int msm_dp_display_disable(struct msm_dp *dp, struct drm_encoder *encoder);
365
int msm_dp_display_pre_disable(struct msm_dp *dp, struct drm_encoder *encoder);
366 367 368
void msm_dp_display_mode_set(struct msm_dp *dp, struct drm_encoder *encoder,
				struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode);
369
void msm_dp_irq_postinstall(struct msm_dp *dp_display);
370

371 372
void msm_dp_debugfs_init(struct msm_dp *dp_display, struct drm_minor *minor);

373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
#else
static inline int __init msm_dp_register(void)
{
	return -EINVAL;
}
static inline void __exit msm_dp_unregister(void)
{
}
static inline int msm_dp_modeset_init(struct msm_dp *dp_display,
				       struct drm_device *dev,
				       struct drm_encoder *encoder)
{
	return -EINVAL;
}
static inline int msm_dp_display_enable(struct msm_dp *dp,
					struct drm_encoder *encoder)
{
	return -EINVAL;
}
static inline int msm_dp_display_disable(struct msm_dp *dp,
					struct drm_encoder *encoder)
{
	return -EINVAL;
}
397 398
static inline int msm_dp_display_pre_disable(struct msm_dp *dp,
					struct drm_encoder *encoder)
399 400 401 402 403 404 405 406 407
{
	return -EINVAL;
}
static inline void msm_dp_display_mode_set(struct msm_dp *dp,
				struct drm_encoder *encoder,
				struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode)
{
}
408 409 410 411 412

static inline void msm_dp_irq_postinstall(struct msm_dp *dp_display)
{
}

413 414 415 416 417
static inline void msm_dp_debugfs_init(struct msm_dp *dp_display,
		struct drm_minor *minor)
{
}

418 419
#endif

420 421
void __init msm_mdp_register(void);
void __exit msm_mdp_unregister(void);
422 423
void __init msm_dpu_register(void);
void __exit msm_dpu_unregister(void);
424

425 426
#ifdef CONFIG_DEBUG_FS
void msm_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
R
Rob Clark 已提交
427 428
int msm_debugfs_late_init(struct drm_device *dev);
int msm_rd_debugfs_init(struct drm_minor *minor);
429
void msm_rd_debugfs_cleanup(struct msm_drm_private *priv);
J
Joe Perches 已提交
430
__printf(3, 4)
431 432
void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
		const char *fmt, ...);
R
Rob Clark 已提交
433
int msm_perf_debugfs_init(struct drm_minor *minor);
434
void msm_perf_debugfs_cleanup(struct msm_drm_private *priv);
R
Rob Clark 已提交
435 436
#else
static inline int msm_debugfs_late_init(struct drm_device *dev) { return 0; }
J
Joe Perches 已提交
437
__printf(3, 4)
438 439 440
static inline void msm_rd_dump_submit(struct msm_rd_state *rd,
			struct msm_gem_submit *submit,
			const char *fmt, ...) {}
441 442
static inline void msm_rd_debugfs_cleanup(struct msm_drm_private *priv) {}
static inline void msm_perf_debugfs_cleanup(struct msm_drm_private *priv) {}
443 444
#endif

445
struct clk *msm_clk_get(struct platform_device *pdev, const char *name);
446 447 448

struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
	const char *name);
449 450
void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
		const char *dbgname);
451 452
void __iomem *msm_ioremap_quiet(struct platform_device *pdev, const char *name,
		const char *dbgname);
453 454
void msm_writel(u32 data, void __iomem *addr);
u32 msm_readl(const void __iomem *addr);
455
void msm_rmw(void __iomem *addr, u32 mask, u32 or);
456

457
struct msm_gpu_submitqueue;
458
int msm_submitqueue_init(struct drm_device *drm, struct msm_file_private *ctx);
459 460
struct msm_gpu_submitqueue *msm_submitqueue_get(struct msm_file_private *ctx,
		u32 id);
461 462
int msm_submitqueue_create(struct drm_device *drm,
		struct msm_file_private *ctx,
463
		u32 prio, u32 flags, u32 *id);
464 465
int msm_submitqueue_query(struct drm_device *drm, struct msm_file_private *ctx,
		struct drm_msm_submitqueue_query *args);
466 467 468 469 470
int msm_submitqueue_remove(struct msm_file_private *ctx, u32 id);
void msm_submitqueue_close(struct msm_file_private *ctx);

void msm_submitqueue_destroy(struct kref *kref);

471 472 473 474 475
static inline void __msm_file_private_destroy(struct kref *kref)
{
	struct msm_file_private *ctx = container_of(kref,
		struct msm_file_private, ref);

476
	msm_gem_address_space_put(ctx->aspace);
477 478 479 480 481 482 483 484 485 486 487 488 489 490
	kfree(ctx);
}

static inline void msm_file_private_put(struct msm_file_private *ctx)
{
	kref_put(&ctx->ref, __msm_file_private_destroy);
}

static inline struct msm_file_private *msm_file_private_get(
	struct msm_file_private *ctx)
{
	kref_get(&ctx->ref);
	return ctx;
}
491

R
Rob Clark 已提交
492 493
#define DBG(fmt, ...) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
#define VERB(fmt, ...) if (0) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
494 495 496 497 498 499 500 501 502 503

static inline int align_pitch(int width, int bpp)
{
	int bytespp = (bpp + 7) / 8;
	/* adreno needs pitch aligned to 32 pixels: */
	return bytespp * ALIGN(width, 32);
}

/* for the generated headers: */
#define INVALID_IDX(idx) ({BUG(); 0;})
R
Rob Clark 已提交
504 505 506
#define fui(x)                ({BUG(); 0;})
#define util_float_to_half(x) ({BUG(); 0;})

507 508 509 510 511 512

#define FIELD(val, name) (((val) & name ## __MASK) >> name ## __SHIFT)

/* for conditionally setting boolean flag(s): */
#define COND(bool, val) ((bool) ? (val) : 0)

513 514 515 516 517 518 519 520 521
static inline unsigned long timeout_to_jiffies(const ktime_t *timeout)
{
	ktime_t now = ktime_get();
	unsigned long remaining_jiffies;

	if (ktime_compare(*timeout, now) < 0) {
		remaining_jiffies = 0;
	} else {
		ktime_t rem = ktime_sub(*timeout, now);
A
Arnd Bergmann 已提交
522
		remaining_jiffies = ktime_divns(rem, NSEC_PER_SEC / HZ);
523 524 525 526
	}

	return remaining_jiffies;
}
527 528

#endif /* __MSM_DRV_H__ */