1
2
3
4
5
6
7#ifndef __MSM_GPU_H__
8#define __MSM_GPU_H__
9
10#include <linux/adreno-smmu-priv.h>
11#include <linux/clk.h>
12#include <linux/interconnect.h>
13#include <linux/pm_opp.h>
14#include <linux/regulator/consumer.h>
15
16#include "msm_drv.h"
17#include "msm_fence.h"
18#include "msm_ringbuffer.h"
19#include "msm_gem.h"
20
21struct msm_gem_submit;
22struct msm_gpu_perfcntr;
23struct msm_gpu_state;
24
25struct msm_gpu_config {
26 const char *ioname;
27 unsigned int nr_rings;
28};
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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);
49 void (*submit)(struct msm_gpu *gpu, struct msm_gem_submit *submit);
50 void (*flush)(struct msm_gpu *gpu, struct msm_ringbuffer *ring);
51 irqreturn_t (*irq)(struct msm_gpu *irq);
52 struct msm_ringbuffer *(*active_ring)(struct msm_gpu *gpu);
53 void (*recover)(struct msm_gpu *gpu);
54 void (*destroy)(struct msm_gpu *gpu);
55#if defined(CONFIG_DEBUG_FS) || defined(CONFIG_DEV_COREDUMP)
56
57 void (*show)(struct msm_gpu *gpu, struct msm_gpu_state *state,
58 struct drm_printer *p);
59
60 void (*debugfs_init)(struct msm_gpu *gpu, struct drm_minor *minor);
61#endif
62 unsigned long (*gpu_busy)(struct msm_gpu *gpu);
63 struct msm_gpu_state *(*gpu_state_get)(struct msm_gpu *gpu);
64 int (*gpu_state_put)(struct msm_gpu_state *state);
65 unsigned long (*gpu_get_freq)(struct msm_gpu *gpu);
66 void (*gpu_set_freq)(struct msm_gpu *gpu, struct dev_pm_opp *opp);
67 struct msm_gem_address_space *(*create_address_space)
68 (struct msm_gpu *gpu, struct platform_device *pdev);
69 struct msm_gem_address_space *(*create_private_address_space)
70 (struct msm_gpu *gpu);
71 uint32_t (*get_rptr)(struct msm_gpu *gpu, struct msm_ringbuffer *ring);
72};
73
74
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
83
84
85
86struct msm_gpu_devfreq {
87
88 struct devfreq *devfreq;
89
90
91
92
93
94
95 struct dev_pm_qos_request idle_freq;
96
97
98
99
100
101
102
103 struct dev_pm_qos_request boost_freq;
104
105
106
107
108
109
110
111
112 u64 busy_cycles;
113
114
115 ktime_t time;
116
117
118 ktime_t idle_time;
119
120
121
122
123
124
125 struct msm_hrtimer_work idle_work;
126
127
128
129
130
131
132
133 struct msm_hrtimer_work boost_work;
134};
135
136struct msm_gpu {
137 const char *name;
138 struct drm_device *dev;
139 struct platform_device *pdev;
140 const struct msm_gpu_funcs *funcs;
141
142 struct adreno_smmu_priv adreno_smmu;
143
144
145 spinlock_t perf_lock;
146 bool perfcntr_active;
147 struct {
148 bool active;
149 ktime_t time;
150 } last_sample;
151 uint32_t totaltime, activetime;
152 uint32_t last_cntrs[5];
153 const struct msm_gpu_perfcntr *perfcntrs;
154 uint32_t num_perfcntrs;
155
156 struct msm_ringbuffer *rb[MSM_GPU_MAX_RINGS];
157 int nr_rings;
158
159
160
161
162
163
164
165
166
167
168 int cur_ctx_seqno;
169
170
171
172
173
174 struct list_head active_list;
175
176
177
178
179
180
181
182
183
184 struct mutex lock;
185
186
187
188
189
190
191
192
193
194 int active_submits;
195
196
197 struct mutex active_lock;
198
199
200 bool needs_hw_init;
201
202
203 int global_faults;
204
205 void __iomem *mmio;
206 int irq;
207
208 struct msm_gem_address_space *aspace;
209
210
211 struct regulator *gpu_reg, *gpu_cx;
212 struct clk_bulk_data *grp_clks;
213 int nr_clocks;
214 struct clk *ebi1_clk, *core_clk, *rbbmtimer_clk;
215 uint32_t fast_rate;
216
217
218
219#define DRM_MSM_INACTIVE_PERIOD 66
220
221#define DRM_MSM_HANGCHECK_DEFAULT_PERIOD 500
222 struct timer_list hangcheck_timer;
223
224
225 struct msm_gpu_fault_info fault_info;
226
227
228 struct kthread_work fault_work;
229
230
231 struct kthread_work recover_work;
232
233
234 wait_queue_head_t retire_event;
235
236
237 struct kthread_work retire_work;
238
239
240 struct kthread_worker *worker;
241
242 struct drm_gem_object *memptrs_bo;
243
244 struct msm_gpu_devfreq devfreq;
245
246 uint32_t suspend_count;
247
248 struct msm_gpu_state *crashstate;
249
250
251 bool clamp_to_idle;
252
253
254 bool hw_apriv;
255
256 struct thermal_cooling_device *cooling;
257};
258
259static inline struct msm_gpu *dev_to_gpu(struct device *dev)
260{
261 struct adreno_smmu_priv *adreno_smmu = dev_get_drvdata(dev);
262 return container_of(adreno_smmu, struct msm_gpu, adreno_smmu);
263}
264
265
266#define MSM_GPU_RINGBUFFER_SZ SZ_32K
267#define MSM_GPU_RINGBUFFER_BLKSIZE 32
268
269#define MSM_GPU_RB_CNTL_DEFAULT \
270 (AXXX_CP_RB_CNTL_BUFSZ(ilog2(MSM_GPU_RINGBUFFER_SZ / 8)) | \
271 AXXX_CP_RB_CNTL_BLKSZ(ilog2(MSM_GPU_RINGBUFFER_BLKSIZE / 8)))
272
273static inline bool msm_gpu_active(struct msm_gpu *gpu)
274{
275 int i;
276
277 for (i = 0; i < gpu->nr_rings; i++) {
278 struct msm_ringbuffer *ring = gpu->rb[i];
279
280 if (fence_after(ring->seqno, ring->memptrs->fence))
281 return true;
282 }
283
284 return false;
285}
286
287
288
289
290
291
292
293struct msm_gpu_perfcntr {
294 uint32_t select_reg;
295 uint32_t sample_reg;
296 uint32_t select_val;
297 const char *name;
298};
299
300
301
302
303
304
305#define NR_SCHED_PRIORITIES (1 + DRM_SCHED_PRIORITY_HIGH - DRM_SCHED_PRIORITY_MIN)
306
307
308
309
310
311
312
313
314
315
316
317
318struct msm_file_private {
319 rwlock_t queuelock;
320 struct list_head submitqueues;
321 int queueid;
322 struct msm_gem_address_space *aspace;
323 struct kref ref;
324 int seqno;
325
326
327
328
329
330
331
332
333
334
335
336
337 struct drm_sched_entity *entities[NR_SCHED_PRIORITIES * MSM_GPU_MAX_RINGS];
338};
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365static inline int msm_gpu_convert_priority(struct msm_gpu *gpu, int prio,
366 unsigned *ring_nr, enum drm_sched_priority *sched_prio)
367{
368 unsigned rn, sp;
369
370 rn = div_u64_rem(prio, NR_SCHED_PRIORITIES, &sp);
371
372
373
374
375 sp = NR_SCHED_PRIORITIES - sp - 1;
376
377 if (rn >= gpu->nr_rings)
378 return -EINVAL;
379
380 *ring_nr = rn;
381 *sched_prio = sp;
382
383 return 0;
384}
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410struct msm_gpu_submitqueue {
411 int id;
412 u32 flags;
413 u32 ring_nr;
414 int faults;
415 uint32_t last_fence;
416 struct msm_file_private *ctx;
417 struct list_head node;
418 struct idr fence_idr;
419 struct mutex lock;
420 struct kref ref;
421 struct drm_sched_entity *entity;
422};
423
424struct msm_gpu_state_bo {
425 u64 iova;
426 size_t size;
427 void *data;
428 bool encoded;
429};
430
431struct msm_gpu_state {
432 struct kref ref;
433 struct timespec64 time;
434
435 struct {
436 u64 iova;
437 u32 fence;
438 u32 seqno;
439 u32 rptr;
440 u32 wptr;
441 void *data;
442 int data_size;
443 bool encoded;
444 } ring[MSM_GPU_MAX_RINGS];
445
446 int nr_registers;
447 u32 *registers;
448
449 u32 rbbm_status;
450
451 char *comm;
452 char *cmd;
453
454 struct msm_gpu_fault_info fault_info;
455
456 int nr_bos;
457 struct msm_gpu_state_bo *bos;
458};
459
460static inline void gpu_write(struct msm_gpu *gpu, u32 reg, u32 data)
461{
462 msm_writel(data, gpu->mmio + (reg << 2));
463}
464
465static inline u32 gpu_read(struct msm_gpu *gpu, u32 reg)
466{
467 return msm_readl(gpu->mmio + (reg << 2));
468}
469
470static inline void gpu_rmw(struct msm_gpu *gpu, u32 reg, u32 mask, u32 or)
471{
472 msm_rmw(gpu->mmio + (reg << 2), mask, or);
473}
474
475static inline u64 gpu_read64(struct msm_gpu *gpu, u32 lo, u32 hi)
476{
477 u64 val;
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493 val = (u64) msm_readl(gpu->mmio + (lo << 2));
494 val |= ((u64) msm_readl(gpu->mmio + (hi << 2)) << 32);
495
496 return val;
497}
498
499static inline void gpu_write64(struct msm_gpu *gpu, u32 lo, u32 hi, u64 val)
500{
501
502 msm_writel(lower_32_bits(val), gpu->mmio + (lo << 2));
503 msm_writel(upper_32_bits(val), gpu->mmio + (hi << 2));
504}
505
506int msm_gpu_pm_suspend(struct msm_gpu *gpu);
507int msm_gpu_pm_resume(struct msm_gpu *gpu);
508
509int msm_submitqueue_init(struct drm_device *drm, struct msm_file_private *ctx);
510struct msm_gpu_submitqueue *msm_submitqueue_get(struct msm_file_private *ctx,
511 u32 id);
512int msm_submitqueue_create(struct drm_device *drm,
513 struct msm_file_private *ctx,
514 u32 prio, u32 flags, u32 *id);
515int msm_submitqueue_query(struct drm_device *drm, struct msm_file_private *ctx,
516 struct drm_msm_submitqueue_query *args);
517int msm_submitqueue_remove(struct msm_file_private *ctx, u32 id);
518void msm_submitqueue_close(struct msm_file_private *ctx);
519
520void msm_submitqueue_destroy(struct kref *kref);
521
522void __msm_file_private_destroy(struct kref *kref);
523
524static inline void msm_file_private_put(struct msm_file_private *ctx)
525{
526 kref_put(&ctx->ref, __msm_file_private_destroy);
527}
528
529static inline struct msm_file_private *msm_file_private_get(
530 struct msm_file_private *ctx)
531{
532 kref_get(&ctx->ref);
533 return ctx;
534}
535
536void msm_devfreq_init(struct msm_gpu *gpu);
537void msm_devfreq_cleanup(struct msm_gpu *gpu);
538void msm_devfreq_resume(struct msm_gpu *gpu);
539void msm_devfreq_suspend(struct msm_gpu *gpu);
540void msm_devfreq_boost(struct msm_gpu *gpu, unsigned factor);
541void msm_devfreq_active(struct msm_gpu *gpu);
542void msm_devfreq_idle(struct msm_gpu *gpu);
543
544int msm_gpu_hw_init(struct msm_gpu *gpu);
545
546void msm_gpu_perfcntr_start(struct msm_gpu *gpu);
547void msm_gpu_perfcntr_stop(struct msm_gpu *gpu);
548int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
549 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs);
550
551void msm_gpu_retire(struct msm_gpu *gpu);
552void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit);
553
554int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
555 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
556 const char *name, struct msm_gpu_config *config);
557
558struct msm_gem_address_space *
559msm_gpu_create_private_address_space(struct msm_gpu *gpu, struct task_struct *task);
560
561void msm_gpu_cleanup(struct msm_gpu *gpu);
562
563struct msm_gpu *adreno_load_gpu(struct drm_device *dev);
564void __init adreno_register(void);
565void __exit adreno_unregister(void);
566
567static inline void msm_submitqueue_put(struct msm_gpu_submitqueue *queue)
568{
569 if (queue)
570 kref_put(&queue->ref, msm_submitqueue_destroy);
571}
572
573static inline struct msm_gpu_state *msm_gpu_crashstate_get(struct msm_gpu *gpu)
574{
575 struct msm_gpu_state *state = NULL;
576
577 mutex_lock(&gpu->lock);
578
579 if (gpu->crashstate) {
580 kref_get(&gpu->crashstate->ref);
581 state = gpu->crashstate;
582 }
583
584 mutex_unlock(&gpu->lock);
585
586 return state;
587}
588
589static inline void msm_gpu_crashstate_put(struct msm_gpu *gpu)
590{
591 mutex_lock(&gpu->lock);
592
593 if (gpu->crashstate) {
594 if (gpu->funcs->gpu_state_put(gpu->crashstate))
595 gpu->crashstate = NULL;
596 }
597
598 mutex_unlock(&gpu->lock);
599}
600
601
602
603
604
605#define check_apriv(gpu, flags) \
606 (((gpu)->hw_apriv ? MSM_BO_MAP_PRIV : 0) | (flags))
607
608
609#endif
610