blob: 030f82f149c2c7a4ad8b29b9c266a5b991d3e0be [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Rob Clark7198e6b2013-07-19 12:59:32 -04002/*
3 * Copyright (C) 2013 Red Hat
4 * Author: Rob Clark <robdclark@gmail.com>
Rob Clark7198e6b2013-07-19 12:59:32 -04005 */
6
7#ifndef __MSM_GPU_H__
8#define __MSM_GPU_H__
9
Rob Clark9cba4052020-08-17 15:01:32 -070010#include <linux/adreno-smmu-priv.h>
Rob Clark7198e6b2013-07-19 12:59:32 -040011#include <linux/clk.h>
Jordan Crousefcf9d0b2019-02-12 11:52:38 +020012#include <linux/interconnect.h>
Sharat Masetty1f60d112020-07-13 18:11:42 +053013#include <linux/pm_opp.h>
Rob Clark7198e6b2013-07-19 12:59:32 -040014#include <linux/regulator/consumer.h>
15
16#include "msm_drv.h"
Rob Clarkca762a82016-03-15 17:22:13 -040017#include "msm_fence.h"
Rob Clark7198e6b2013-07-19 12:59:32 -040018#include "msm_ringbuffer.h"
Jordan Crouse604234f2020-09-03 20:03:11 -060019#include "msm_gem.h"
Rob Clark7198e6b2013-07-19 12:59:32 -040020
21struct msm_gem_submit;
Rob Clark70c70f02014-05-30 14:49:43 -040022struct msm_gpu_perfcntr;
Jordan Crousee00e4732018-07-24 10:33:24 -060023struct msm_gpu_state;
Rob Clark7198e6b2013-07-19 12:59:32 -040024
Jordan Crouse5770fc72017-05-08 14:35:03 -060025struct msm_gpu_config {
26 const char *ioname;
Jordan Crousef97deca2017-10-20 11:06:57 -060027 unsigned int nr_rings;
Jordan Crouse5770fc72017-05-08 14:35:03 -060028};
29
Rob Clark7198e6b2013-07-19 12:59:32 -040030/* So far, with hardware that I've seen to date, we can have:
31 * + zero, one, or two z180 2d cores
32 * + a3xx or a2xx 3d core, which share a common CP (the firmware
33 * for the CP seems to implement some different PM4 packet types
34 * but the basics of cmdstream submission are the same)
35 *
36 * Which means that the eventual complete "class" hierarchy, once
37 * support for all past and present hw is in place, becomes:
38 * + msm_gpu
39 * + adreno_gpu
40 * + a3xx_gpu
41 * + a2xx_gpu
42 * + z180_gpu
43 */
44struct msm_gpu_funcs {
45 int (*get_param)(struct msm_gpu *gpu, uint32_t param, uint64_t *value);
46 int (*hw_init)(struct msm_gpu *gpu);
47 int (*pm_suspend)(struct msm_gpu *gpu);
48 int (*pm_resume)(struct msm_gpu *gpu);
Jordan Crouse15eb9ad2020-08-17 15:01:37 -070049 void (*submit)(struct msm_gpu *gpu, struct msm_gem_submit *submit);
Jordan Crousef97deca2017-10-20 11:06:57 -060050 void (*flush)(struct msm_gpu *gpu, struct msm_ringbuffer *ring);
Rob Clark7198e6b2013-07-19 12:59:32 -040051 irqreturn_t (*irq)(struct msm_gpu *irq);
Jordan Crousef97deca2017-10-20 11:06:57 -060052 struct msm_ringbuffer *(*active_ring)(struct msm_gpu *gpu);
Rob Clarkbd6f82d2013-08-24 14:20:38 -040053 void (*recover)(struct msm_gpu *gpu);
Rob Clark7198e6b2013-07-19 12:59:32 -040054 void (*destroy)(struct msm_gpu *gpu);
Arnd Bergmannc878a622018-08-13 23:23:44 +020055#if defined(CONFIG_DEBUG_FS) || defined(CONFIG_DEV_COREDUMP)
Rob Clark7198e6b2013-07-19 12:59:32 -040056 /* show GPU status in debugfs: */
Jordan Crouse4f776f42018-07-24 10:33:25 -060057 void (*show)(struct msm_gpu *gpu, struct msm_gpu_state *state,
Jordan Crousec0fec7f2018-07-24 10:33:27 -060058 struct drm_printer *p);
Rob Clark331dc0b2017-12-13 15:12:56 -050059 /* for generation specific debugfs: */
Wambui Karuga7ce844712020-03-10 16:31:21 +030060 void (*debugfs_init)(struct msm_gpu *gpu, struct drm_minor *minor);
Rob Clark7198e6b2013-07-19 12:59:32 -040061#endif
Sharat Masettyde0a3d092018-10-04 15:11:42 +053062 unsigned long (*gpu_busy)(struct msm_gpu *gpu);
Jordan Crousee00e4732018-07-24 10:33:24 -060063 struct msm_gpu_state *(*gpu_state_get)(struct msm_gpu *gpu);
Jordan Crousec0fec7f2018-07-24 10:33:27 -060064 int (*gpu_state_put)(struct msm_gpu_state *state);
Sharat Masettyde0a3d092018-10-04 15:11:42 +053065 unsigned long (*gpu_get_freq)(struct msm_gpu *gpu);
Sharat Masetty1f60d112020-07-13 18:11:42 +053066 void (*gpu_set_freq)(struct msm_gpu *gpu, struct dev_pm_opp *opp);
Jordan Crouseccac7ce2020-05-22 16:03:15 -060067 struct msm_gem_address_space *(*create_address_space)
68 (struct msm_gpu *gpu, struct platform_device *pdev);
Jordan Crouse933415e2020-08-17 15:01:40 -070069 struct msm_gem_address_space *(*create_private_address_space)
70 (struct msm_gpu *gpu);
Jordan Crouse8907afb2020-09-14 16:40:21 -060071 uint32_t (*get_rptr)(struct msm_gpu *gpu, struct msm_ringbuffer *ring);
Rob Clark7198e6b2013-07-19 12:59:32 -040072};
73
Rob Clarke25e92e2021-06-10 14:44:13 -070074/* Additional state for iommu faults: */
75struct msm_gpu_fault_info {
76 u64 ttbr0;
77 unsigned long iova;
78 int flags;
79 const char *type;
80 const char *block;
81};
82
Rob Clarkaf5b4ff2021-07-26 07:46:48 -070083/**
84 * struct msm_gpu_devfreq - devfreq related state
85 */
86struct msm_gpu_devfreq {
87 /** devfreq: devfreq instance */
88 struct devfreq *devfreq;
89
90 /**
91 * busy_cycles:
92 *
93 * Used by implementation of gpu->gpu_busy() to track the last
94 * busy counter value, for calculating elapsed busy cycles since
95 * last sampling period.
96 */
97 u64 busy_cycles;
98
99 /** time: Time of last sampling period. */
100 ktime_t time;
Rob Clark9bc95572021-07-26 07:46:50 -0700101
102 /** idle_time: Time of last transition to idle: */
103 ktime_t idle_time;
104
105 /**
106 * idle_freq:
107 *
108 * Shadow frequency used while the GPU is idle. From the PoV of
109 * the devfreq governor, we are continuing to sample busyness and
110 * adjust frequency while the GPU is idle, but we use this shadow
111 * value as the GPU is actually clamped to minimum frequency while
112 * it is inactive.
113 */
114 unsigned long idle_freq;
Rob Clarkaf5b4ff2021-07-26 07:46:48 -0700115};
116
Rob Clark7198e6b2013-07-19 12:59:32 -0400117struct msm_gpu {
118 const char *name;
119 struct drm_device *dev;
Rob Clarkeeb75472017-02-10 15:36:33 -0500120 struct platform_device *pdev;
Rob Clark7198e6b2013-07-19 12:59:32 -0400121 const struct msm_gpu_funcs *funcs;
122
Rob Clark9cba4052020-08-17 15:01:32 -0700123 struct adreno_smmu_priv adreno_smmu;
124
Rob Clark70c70f02014-05-30 14:49:43 -0400125 /* performance counters (hw & sw): */
126 spinlock_t perf_lock;
127 bool perfcntr_active;
128 struct {
129 bool active;
130 ktime_t time;
131 } last_sample;
132 uint32_t totaltime, activetime; /* sw counters */
133 uint32_t last_cntrs[5]; /* hw counters */
134 const struct msm_gpu_perfcntr *perfcntrs;
135 uint32_t num_perfcntrs;
136
Jordan Crousef97deca2017-10-20 11:06:57 -0600137 struct msm_ringbuffer *rb[MSM_GPU_MAX_RINGS];
138 int nr_rings;
Rob Clark7198e6b2013-07-19 12:59:32 -0400139
Rob Clarkd9844572020-10-23 09:51:14 -0700140 /*
141 * List of GEM active objects on this gpu. Protected by
142 * msm_drm_private::mm_lock
143 */
Rob Clark7198e6b2013-07-19 12:59:32 -0400144 struct list_head active_list;
145
Rob Clark9bc95572021-07-26 07:46:50 -0700146 /**
147 * active_submits:
148 *
149 * The number of submitted but not yet retired submits, used to
150 * determine transitions between active and idle.
151 *
152 * Protected by lock
153 */
154 int active_submits;
155
156 /** lock: protects active_submits and idle/active transitions */
157 struct mutex active_lock;
158
Rob Clarkeeb75472017-02-10 15:36:33 -0500159 /* does gpu need hw_init? */
160 bool needs_hw_init;
Rob Clark37d77c32014-01-11 16:25:08 -0500161
Rob Clark48dc4242019-04-16 16:13:28 -0700162 /* number of GPU hangs (for all contexts) */
163 int global_faults;
164
Rob Clark7198e6b2013-07-19 12:59:32 -0400165 void __iomem *mmio;
166 int irq;
167
Rob Clark667ce332016-09-28 19:58:32 -0400168 struct msm_gem_address_space *aspace;
Rob Clark7198e6b2013-07-19 12:59:32 -0400169
170 /* Power Control: */
171 struct regulator *gpu_reg, *gpu_cx;
Jordan Crouse8e54eea2018-08-06 11:33:21 -0600172 struct clk_bulk_data *grp_clks;
Jordan Crouse98db8032017-03-07 10:02:56 -0700173 int nr_clocks;
174 struct clk *ebi1_clk, *core_clk, *rbbmtimer_clk;
Jordan Crouse1babd702017-11-21 12:40:53 -0700175 uint32_t fast_rate;
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400176
Rob Clark37d77c32014-01-11 16:25:08 -0500177 /* Hang and Inactivity Detection:
178 */
179#define DRM_MSM_INACTIVE_PERIOD 66 /* in ms (roughly four frames) */
Rob Clarkeeb75472017-02-10 15:36:33 -0500180
Samuel Iglesias Gonsalvez1d2fa582021-06-07 12:44:41 +0200181#define DRM_MSM_HANGCHECK_DEFAULT_PERIOD 500 /* in ms */
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400182 struct timer_list hangcheck_timer;
Rob Clark7e688292020-10-19 14:10:51 -0700183
Rob Clarke25e92e2021-06-10 14:44:13 -0700184 /* Fault info for most recent iova fault: */
185 struct msm_gpu_fault_info fault_info;
186
187 /* work for handling GPU ioval faults: */
188 struct kthread_work fault_work;
189
Rob Clark7e688292020-10-19 14:10:51 -0700190 /* work for handling GPU recovery: */
191 struct kthread_work recover_work;
192
193 /* work for handling active-list retiring: */
194 struct kthread_work retire_work;
195
196 /* worker for retire/recover: */
197 struct kthread_worker *worker;
Rob Clark1a370be2015-06-07 13:46:04 -0400198
Jordan Crousecd414f32017-10-20 11:06:56 -0600199 struct drm_gem_object *memptrs_bo;
Jordan Crousef91c14a2018-01-10 10:41:54 -0700200
Rob Clarkaf5b4ff2021-07-26 07:46:48 -0700201 struct msm_gpu_devfreq devfreq;
Jordan Crousec0fec7f2018-07-24 10:33:27 -0600202
Rob Clark3ab1c5c2021-03-24 18:23:53 -0700203 uint32_t suspend_count;
204
Jordan Crousec0fec7f2018-07-24 10:33:27 -0600205 struct msm_gpu_state *crashstate;
Jordan Crouse604234f2020-09-03 20:03:11 -0600206 /* True if the hardware supports expanded apriv (a650 and newer) */
207 bool hw_apriv;
Akhil P Oommenec793cf2020-10-30 16:17:10 +0530208
209 struct thermal_cooling_device *cooling;
Rob Clark7198e6b2013-07-19 12:59:32 -0400210};
211
Rob Clark69a93132020-08-17 15:01:31 -0700212static inline struct msm_gpu *dev_to_gpu(struct device *dev)
213{
Rob Clark9cba4052020-08-17 15:01:32 -0700214 struct adreno_smmu_priv *adreno_smmu = dev_get_drvdata(dev);
215 return container_of(adreno_smmu, struct msm_gpu, adreno_smmu);
Rob Clark69a93132020-08-17 15:01:31 -0700216}
217
Jordan Crousef97deca2017-10-20 11:06:57 -0600218/* It turns out that all targets use the same ringbuffer size */
219#define MSM_GPU_RINGBUFFER_SZ SZ_32K
Jordan Crouse4d87fc32017-10-20 11:07:00 -0600220#define MSM_GPU_RINGBUFFER_BLKSIZE 32
221
222#define MSM_GPU_RB_CNTL_DEFAULT \
223 (AXXX_CP_RB_CNTL_BUFSZ(ilog2(MSM_GPU_RINGBUFFER_SZ / 8)) | \
224 AXXX_CP_RB_CNTL_BLKSZ(ilog2(MSM_GPU_RINGBUFFER_BLKSIZE / 8)))
Jordan Crousef97deca2017-10-20 11:06:57 -0600225
Rob Clark37d77c32014-01-11 16:25:08 -0500226static inline bool msm_gpu_active(struct msm_gpu *gpu)
227{
Jordan Crousef97deca2017-10-20 11:06:57 -0600228 int i;
229
230 for (i = 0; i < gpu->nr_rings; i++) {
231 struct msm_ringbuffer *ring = gpu->rb[i];
232
233 if (ring->seqno > ring->memptrs->fence)
234 return true;
235 }
236
237 return false;
Rob Clark37d77c32014-01-11 16:25:08 -0500238}
239
Rob Clark70c70f02014-05-30 14:49:43 -0400240/* Perf-Counters:
241 * The select_reg and select_val are just there for the benefit of the child
242 * class that actually enables the perf counter.. but msm_gpu base class
243 * will handle sampling/displaying the counters.
244 */
245
246struct msm_gpu_perfcntr {
247 uint32_t select_reg;
248 uint32_t sample_reg;
249 uint32_t select_val;
250 const char *name;
251};
252
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700253/*
254 * The number of priority levels provided by drm gpu scheduler. The
255 * DRM_SCHED_PRIORITY_KERNEL priority level is treated specially in some
256 * cases, so we don't use it (no need for kernel generated jobs).
257 */
258#define NR_SCHED_PRIORITIES (1 + DRM_SCHED_PRIORITY_HIGH - DRM_SCHED_PRIORITY_MIN)
259
260/**
Rob Clark4cd82aa2021-10-01 08:58:15 -0700261 * struct msm_file_private - per-drm_file context
262 *
263 * @queuelock: synchronizes access to submitqueues list
264 * @submitqueues: list of &msm_gpu_submitqueue created by userspace
265 * @queueid: counter incremented each time a submitqueue is created,
266 * used to assign &msm_gpu_submitqueue.id
267 * @aspace: the per-process GPU address-space
268 * @ref: reference count
269 * @seqno: unique per process seqno
270 */
271struct msm_file_private {
272 rwlock_t queuelock;
273 struct list_head submitqueues;
274 int queueid;
275 struct msm_gem_address_space *aspace;
276 struct kref ref;
277 int seqno;
Rob Clark68002462021-10-01 09:42:05 -0700278
279 /**
280 * entities:
281 *
282 * Table of per-priority-level sched entities used by submitqueues
283 * associated with this &drm_file. Because some userspace apps
284 * make assumptions about rendering from multiple gl contexts
285 * (of the same priority) within the process happening in FIFO
286 * order without requiring any fencing beyond MakeCurrent(), we
287 * create at most one &drm_sched_entity per-process per-priority-
288 * level.
289 */
290 struct drm_sched_entity *entities[NR_SCHED_PRIORITIES * MSM_GPU_MAX_RINGS];
Rob Clark4cd82aa2021-10-01 08:58:15 -0700291};
292
293/**
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700294 * msm_gpu_convert_priority - Map userspace priority to ring # and sched priority
295 *
296 * @gpu: the gpu instance
297 * @prio: the userspace priority level
298 * @ring_nr: [out] the ringbuffer the userspace priority maps to
299 * @sched_prio: [out] the gpu scheduler priority level which the userspace
300 * priority maps to
301 *
302 * With drm/scheduler providing it's own level of prioritization, our total
303 * number of available priority levels is (nr_rings * NR_SCHED_PRIORITIES).
304 * Each ring is associated with it's own scheduler instance. However, our
305 * UABI is that lower numerical values are higher priority. So mapping the
306 * single userspace priority level into ring_nr and sched_prio takes some
307 * care. The userspace provided priority (when a submitqueue is created)
308 * is mapped to ring nr and scheduler priority as such:
309 *
310 * ring_nr = userspace_prio / NR_SCHED_PRIORITIES
311 * sched_prio = NR_SCHED_PRIORITIES -
312 * (userspace_prio % NR_SCHED_PRIORITIES) - 1
313 *
314 * This allows generations without preemption (nr_rings==1) to have some
315 * amount of prioritization, and provides more priority levels for gens
316 * that do have preemption.
317 */
318static inline int msm_gpu_convert_priority(struct msm_gpu *gpu, int prio,
319 unsigned *ring_nr, enum drm_sched_priority *sched_prio)
320{
321 unsigned rn, sp;
322
323 rn = div_u64_rem(prio, NR_SCHED_PRIORITIES, &sp);
324
325 /* invert sched priority to map to higher-numeric-is-higher-
326 * priority convention
327 */
328 sp = NR_SCHED_PRIORITIES - sp - 1;
329
330 if (rn >= gpu->nr_rings)
331 return -EINVAL;
332
333 *ring_nr = rn;
334 *sched_prio = sp;
335
336 return 0;
337}
338
Rob Clark375f9a62021-07-27 18:06:06 -0700339/**
Rob Clark4cd82aa2021-10-01 08:58:15 -0700340 * struct msm_gpu_submitqueues - Userspace created context.
341 *
Rob Clark375f9a62021-07-27 18:06:06 -0700342 * A submitqueue is associated with a gl context or vk queue (or equiv)
343 * in userspace.
344 *
345 * @id: userspace id for the submitqueue, unique within the drm_file
346 * @flags: userspace flags for the submitqueue, specified at creation
347 * (currently unusued)
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700348 * @ring_nr: the ringbuffer used by this submitqueue, which is determined
349 * by the submitqueue's priority
Rob Clark375f9a62021-07-27 18:06:06 -0700350 * @faults: the number of GPU hangs associated with this submitqueue
351 * @ctx: the per-drm_file context associated with the submitqueue (ie.
352 * which set of pgtables do submits jobs associated with the
353 * submitqueue use)
354 * @node: node in the context's list of submitqueues
Rob Clarka61acbb2021-07-27 18:06:12 -0700355 * @fence_idr: maps fence-id to dma_fence for userspace visible fence
356 * seqno, protected by submitqueue lock
357 * @lock: submitqueue lock
Rob Clark375f9a62021-07-27 18:06:06 -0700358 * @ref: reference count
Rob Clark4cd82aa2021-10-01 08:58:15 -0700359 * @entity: the submit job-queue
Rob Clark375f9a62021-07-27 18:06:06 -0700360 */
Jordan Crousef7de1542017-10-20 11:06:55 -0600361struct msm_gpu_submitqueue {
362 int id;
363 u32 flags;
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700364 u32 ring_nr;
Jordan Crousef7de1542017-10-20 11:06:55 -0600365 int faults;
Jordan Crousecf655d62020-08-17 15:01:36 -0700366 struct msm_file_private *ctx;
Jordan Crousef7de1542017-10-20 11:06:55 -0600367 struct list_head node;
Rob Clarka61acbb2021-07-27 18:06:12 -0700368 struct idr fence_idr;
369 struct mutex lock;
Jordan Crousef7de1542017-10-20 11:06:55 -0600370 struct kref ref;
Rob Clark68002462021-10-01 09:42:05 -0700371 struct drm_sched_entity *entity;
Jordan Crousef7de1542017-10-20 11:06:55 -0600372};
373
Jordan Crousecdb95932018-07-24 10:33:31 -0600374struct msm_gpu_state_bo {
375 u64 iova;
376 size_t size;
377 void *data;
Sharat Masetty1df42892018-11-01 20:16:45 +0530378 bool encoded;
Jordan Crousecdb95932018-07-24 10:33:31 -0600379};
380
Jordan Crousee00e4732018-07-24 10:33:24 -0600381struct msm_gpu_state {
Jordan Crousec0fec7f2018-07-24 10:33:27 -0600382 struct kref ref;
Arnd Bergmann3530a172018-07-26 14:39:25 +0200383 struct timespec64 time;
Jordan Crousee00e4732018-07-24 10:33:24 -0600384
385 struct {
386 u64 iova;
387 u32 fence;
388 u32 seqno;
389 u32 rptr;
390 u32 wptr;
Jordan Crouse43a56682018-07-24 10:33:29 -0600391 void *data;
392 int data_size;
Sharat Masetty1df42892018-11-01 20:16:45 +0530393 bool encoded;
Jordan Crousee00e4732018-07-24 10:33:24 -0600394 } ring[MSM_GPU_MAX_RINGS];
395
396 int nr_registers;
397 u32 *registers;
398
399 u32 rbbm_status;
Jordan Crousec0fec7f2018-07-24 10:33:27 -0600400
401 char *comm;
402 char *cmd;
Jordan Crousecdb95932018-07-24 10:33:31 -0600403
Rob Clarke25e92e2021-06-10 14:44:13 -0700404 struct msm_gpu_fault_info fault_info;
405
Jordan Crousecdb95932018-07-24 10:33:31 -0600406 int nr_bos;
407 struct msm_gpu_state_bo *bos;
Jordan Crousee00e4732018-07-24 10:33:24 -0600408};
409
Rob Clark7198e6b2013-07-19 12:59:32 -0400410static inline void gpu_write(struct msm_gpu *gpu, u32 reg, u32 data)
411{
412 msm_writel(data, gpu->mmio + (reg << 2));
413}
414
415static inline u32 gpu_read(struct msm_gpu *gpu, u32 reg)
416{
417 return msm_readl(gpu->mmio + (reg << 2));
418}
419
Jordan Crouseae53a822016-11-28 12:28:28 -0700420static inline void gpu_rmw(struct msm_gpu *gpu, u32 reg, u32 mask, u32 or)
421{
Sharat Masetty40a72b02020-11-25 12:30:14 +0530422 msm_rmw(gpu->mmio + (reg << 2), mask, or);
Jordan Crouseae53a822016-11-28 12:28:28 -0700423}
424
425static inline u64 gpu_read64(struct msm_gpu *gpu, u32 lo, u32 hi)
426{
427 u64 val;
428
429 /*
430 * Why not a readq here? Two reasons: 1) many of the LO registers are
431 * not quad word aligned and 2) the GPU hardware designers have a bit
432 * of a history of putting registers where they fit, especially in
433 * spins. The longer a GPU family goes the higher the chance that
434 * we'll get burned. We could do a series of validity checks if we
435 * wanted to, but really is a readq() that much better? Nah.
436 */
437
438 /*
439 * For some lo/hi registers (like perfcounters), the hi value is latched
440 * when the lo is read, so make sure to read the lo first to trigger
441 * that
442 */
443 val = (u64) msm_readl(gpu->mmio + (lo << 2));
444 val |= ((u64) msm_readl(gpu->mmio + (hi << 2)) << 32);
445
446 return val;
447}
448
449static inline void gpu_write64(struct msm_gpu *gpu, u32 lo, u32 hi, u64 val)
450{
451 /* Why not a writeq here? Read the screed above */
452 msm_writel(lower_32_bits(val), gpu->mmio + (lo << 2));
453 msm_writel(upper_32_bits(val), gpu->mmio + (hi << 2));
454}
455
Rob Clark7198e6b2013-07-19 12:59:32 -0400456int msm_gpu_pm_suspend(struct msm_gpu *gpu);
457int msm_gpu_pm_resume(struct msm_gpu *gpu);
Rob Clarkaf5b4ff2021-07-26 07:46:48 -0700458
Rob Clark4cd82aa2021-10-01 08:58:15 -0700459int msm_submitqueue_init(struct drm_device *drm, struct msm_file_private *ctx);
460struct msm_gpu_submitqueue *msm_submitqueue_get(struct msm_file_private *ctx,
461 u32 id);
462int msm_submitqueue_create(struct drm_device *drm,
463 struct msm_file_private *ctx,
464 u32 prio, u32 flags, u32 *id);
465int msm_submitqueue_query(struct drm_device *drm, struct msm_file_private *ctx,
466 struct drm_msm_submitqueue_query *args);
467int msm_submitqueue_remove(struct msm_file_private *ctx, u32 id);
468void msm_submitqueue_close(struct msm_file_private *ctx);
469
470void msm_submitqueue_destroy(struct kref *kref);
471
Rob Clark68002462021-10-01 09:42:05 -0700472void __msm_file_private_destroy(struct kref *kref);
Rob Clark4cd82aa2021-10-01 08:58:15 -0700473
474static inline void msm_file_private_put(struct msm_file_private *ctx)
475{
476 kref_put(&ctx->ref, __msm_file_private_destroy);
477}
478
479static inline struct msm_file_private *msm_file_private_get(
480 struct msm_file_private *ctx)
481{
482 kref_get(&ctx->ref);
483 return ctx;
484}
485
Rob Clarkaf5b4ff2021-07-26 07:46:48 -0700486void msm_devfreq_init(struct msm_gpu *gpu);
487void msm_devfreq_cleanup(struct msm_gpu *gpu);
488void msm_devfreq_resume(struct msm_gpu *gpu);
489void msm_devfreq_suspend(struct msm_gpu *gpu);
Rob Clark9bc95572021-07-26 07:46:50 -0700490void msm_devfreq_active(struct msm_gpu *gpu);
491void msm_devfreq_idle(struct msm_gpu *gpu);
Rob Clark7198e6b2013-07-19 12:59:32 -0400492
Rob Clarkeeb75472017-02-10 15:36:33 -0500493int msm_gpu_hw_init(struct msm_gpu *gpu);
494
Rob Clark70c70f02014-05-30 14:49:43 -0400495void msm_gpu_perfcntr_start(struct msm_gpu *gpu);
496void msm_gpu_perfcntr_stop(struct msm_gpu *gpu);
497int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
498 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs);
499
Rob Clark7198e6b2013-07-19 12:59:32 -0400500void msm_gpu_retire(struct msm_gpu *gpu);
Jordan Crouse15eb9ad2020-08-17 15:01:37 -0700501void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit);
Rob Clark7198e6b2013-07-19 12:59:32 -0400502
503int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
504 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
Jordan Crouse5770fc72017-05-08 14:35:03 -0600505 const char *name, struct msm_gpu_config *config);
506
Jordan Crouse933415e2020-08-17 15:01:40 -0700507struct msm_gem_address_space *
Rob Clark25faf2f2020-08-17 15:01:45 -0700508msm_gpu_create_private_address_space(struct msm_gpu *gpu, struct task_struct *task);
Jordan Crouse933415e2020-08-17 15:01:40 -0700509
Rob Clark7198e6b2013-07-19 12:59:32 -0400510void msm_gpu_cleanup(struct msm_gpu *gpu);
511
Rob Clarke2550b72014-09-05 13:30:27 -0400512struct msm_gpu *adreno_load_gpu(struct drm_device *dev);
Rob Clarkbfd28b12014-09-05 13:06:37 -0400513void __init adreno_register(void);
514void __exit adreno_unregister(void);
Rob Clark7198e6b2013-07-19 12:59:32 -0400515
Jordan Crousef7de1542017-10-20 11:06:55 -0600516static inline void msm_submitqueue_put(struct msm_gpu_submitqueue *queue)
517{
518 if (queue)
519 kref_put(&queue->ref, msm_submitqueue_destroy);
520}
521
Jordan Crousec0fec7f2018-07-24 10:33:27 -0600522static inline struct msm_gpu_state *msm_gpu_crashstate_get(struct msm_gpu *gpu)
523{
524 struct msm_gpu_state *state = NULL;
525
526 mutex_lock(&gpu->dev->struct_mutex);
527
528 if (gpu->crashstate) {
529 kref_get(&gpu->crashstate->ref);
530 state = gpu->crashstate;
531 }
532
533 mutex_unlock(&gpu->dev->struct_mutex);
534
535 return state;
536}
537
538static inline void msm_gpu_crashstate_put(struct msm_gpu *gpu)
539{
540 mutex_lock(&gpu->dev->struct_mutex);
541
542 if (gpu->crashstate) {
543 if (gpu->funcs->gpu_state_put(gpu->crashstate))
544 gpu->crashstate = NULL;
545 }
546
547 mutex_unlock(&gpu->dev->struct_mutex);
548}
549
Jordan Crouse604234f2020-09-03 20:03:11 -0600550/*
551 * Simple macro to semi-cleanly add the MAP_PRIV flag for targets that can
552 * support expanded privileges
553 */
554#define check_apriv(gpu, flags) \
555 (((gpu)->hw_apriv ? MSM_BO_MAP_PRIV : 0) | (flags))
556
557
Rob Clark7198e6b2013-07-19 12:59:32 -0400558#endif /* __MSM_GPU_H__ */