blob: d61d98a6e047fe9575760b64db94dc39aeadf9c0 [file] [log] [blame]
Rob Clark7198e6b2013-07-19 12:59:32 -04001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __MSM_GPU_H__
19#define __MSM_GPU_H__
20
21#include <linux/clk.h>
22#include <linux/regulator/consumer.h>
23
24#include "msm_drv.h"
Rob Clarkca762a82016-03-15 17:22:13 -040025#include "msm_fence.h"
Rob Clark7198e6b2013-07-19 12:59:32 -040026#include "msm_ringbuffer.h"
27
28struct msm_gem_submit;
Rob Clark70c70f02014-05-30 14:49:43 -040029struct msm_gpu_perfcntr;
Rob Clark7198e6b2013-07-19 12:59:32 -040030
31/* So far, with hardware that I've seen to date, we can have:
32 * + zero, one, or two z180 2d cores
33 * + a3xx or a2xx 3d core, which share a common CP (the firmware
34 * for the CP seems to implement some different PM4 packet types
35 * but the basics of cmdstream submission are the same)
36 *
37 * Which means that the eventual complete "class" hierarchy, once
38 * support for all past and present hw is in place, becomes:
39 * + msm_gpu
40 * + adreno_gpu
41 * + a3xx_gpu
42 * + a2xx_gpu
43 * + z180_gpu
44 */
45struct msm_gpu_funcs {
46 int (*get_param)(struct msm_gpu *gpu, uint32_t param, uint64_t *value);
47 int (*hw_init)(struct msm_gpu *gpu);
48 int (*pm_suspend)(struct msm_gpu *gpu);
49 int (*pm_resume)(struct msm_gpu *gpu);
Rob Clark1193c3b2016-05-03 09:46:49 -040050 void (*submit)(struct msm_gpu *gpu, struct msm_gem_submit *submit,
Rob Clark7198e6b2013-07-19 12:59:32 -040051 struct msm_file_private *ctx);
52 void (*flush)(struct msm_gpu *gpu);
53 void (*idle)(struct msm_gpu *gpu);
54 irqreturn_t (*irq)(struct msm_gpu *irq);
55 uint32_t (*last_fence)(struct msm_gpu *gpu);
Rob Clarkbd6f82d2013-08-24 14:20:38 -040056 void (*recover)(struct msm_gpu *gpu);
Rob Clark7198e6b2013-07-19 12:59:32 -040057 void (*destroy)(struct msm_gpu *gpu);
58#ifdef CONFIG_DEBUG_FS
59 /* show GPU status in debugfs: */
60 void (*show)(struct msm_gpu *gpu, struct seq_file *m);
61#endif
62};
63
64struct msm_gpu {
65 const char *name;
66 struct drm_device *dev;
67 const struct msm_gpu_funcs *funcs;
68
Rob Clark70c70f02014-05-30 14:49:43 -040069 /* performance counters (hw & sw): */
70 spinlock_t perf_lock;
71 bool perfcntr_active;
72 struct {
73 bool active;
74 ktime_t time;
75 } last_sample;
76 uint32_t totaltime, activetime; /* sw counters */
77 uint32_t last_cntrs[5]; /* hw counters */
78 const struct msm_gpu_perfcntr *perfcntrs;
79 uint32_t num_perfcntrs;
80
Rob Clarkca762a82016-03-15 17:22:13 -040081 /* ringbuffer: */
Rob Clark7198e6b2013-07-19 12:59:32 -040082 struct msm_ringbuffer *rb;
83 uint32_t rb_iova;
84
85 /* list of GEM active objects: */
86 struct list_head active_list;
87
Rob Clarkca762a82016-03-15 17:22:13 -040088 /* fencing: */
89 struct msm_fence_context *fctx;
Rob Clarkbd6f82d2013-08-24 14:20:38 -040090
Rob Clark37d77c32014-01-11 16:25:08 -050091 /* is gpu powered/active? */
92 int active_cnt;
93 bool inactive;
94
Rob Clark7198e6b2013-07-19 12:59:32 -040095 /* worker for handling active-list retiring: */
96 struct work_struct retire_work;
97
98 void __iomem *mmio;
99 int irq;
100
Rob Clark871d8122013-11-16 12:56:06 -0500101 struct msm_mmu *mmu;
Rob Clark7198e6b2013-07-19 12:59:32 -0400102 int id;
103
104 /* Power Control: */
105 struct regulator *gpu_reg, *gpu_cx;
Rob Clarkde558cd2015-05-06 13:14:30 -0400106 struct clk *ebi1_clk, *grp_clks[6];
Rob Clark7198e6b2013-07-19 12:59:32 -0400107 uint32_t fast_rate, slow_rate, bus_freq;
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500108
Rob Clark6490ad42015-06-04 10:26:37 -0400109#ifdef DOWNSTREAM_CONFIG_MSM_BUS_SCALING
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500110 struct msm_bus_scale_pdata *bus_scale_table;
Rob Clark7198e6b2013-07-19 12:59:32 -0400111 uint32_t bsc;
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500112#endif
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400113
Rob Clark37d77c32014-01-11 16:25:08 -0500114 /* Hang and Inactivity Detection:
115 */
116#define DRM_MSM_INACTIVE_PERIOD 66 /* in ms (roughly four frames) */
117#define DRM_MSM_INACTIVE_JIFFIES msecs_to_jiffies(DRM_MSM_INACTIVE_PERIOD)
118 struct timer_list inactive_timer;
119 struct work_struct inactive_work;
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400120#define DRM_MSM_HANGCHECK_PERIOD 500 /* in ms */
121#define DRM_MSM_HANGCHECK_JIFFIES msecs_to_jiffies(DRM_MSM_HANGCHECK_PERIOD)
122 struct timer_list hangcheck_timer;
123 uint32_t hangcheck_fence;
124 struct work_struct recover_work;
Rob Clark1a370be2015-06-07 13:46:04 -0400125
126 struct list_head submit_list;
Rob Clark7198e6b2013-07-19 12:59:32 -0400127};
128
Rob Clark37d77c32014-01-11 16:25:08 -0500129static inline bool msm_gpu_active(struct msm_gpu *gpu)
130{
Rob Clarkca762a82016-03-15 17:22:13 -0400131 return gpu->fctx->last_fence > gpu->funcs->last_fence(gpu);
Rob Clark37d77c32014-01-11 16:25:08 -0500132}
133
Rob Clark70c70f02014-05-30 14:49:43 -0400134/* Perf-Counters:
135 * The select_reg and select_val are just there for the benefit of the child
136 * class that actually enables the perf counter.. but msm_gpu base class
137 * will handle sampling/displaying the counters.
138 */
139
140struct msm_gpu_perfcntr {
141 uint32_t select_reg;
142 uint32_t sample_reg;
143 uint32_t select_val;
144 const char *name;
145};
146
Rob Clark7198e6b2013-07-19 12:59:32 -0400147static inline void gpu_write(struct msm_gpu *gpu, u32 reg, u32 data)
148{
149 msm_writel(data, gpu->mmio + (reg << 2));
150}
151
152static inline u32 gpu_read(struct msm_gpu *gpu, u32 reg)
153{
154 return msm_readl(gpu->mmio + (reg << 2));
155}
156
157int msm_gpu_pm_suspend(struct msm_gpu *gpu);
158int msm_gpu_pm_resume(struct msm_gpu *gpu);
159
Rob Clark70c70f02014-05-30 14:49:43 -0400160void msm_gpu_perfcntr_start(struct msm_gpu *gpu);
161void msm_gpu_perfcntr_stop(struct msm_gpu *gpu);
162int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
163 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs);
164
Rob Clark7198e6b2013-07-19 12:59:32 -0400165void msm_gpu_retire(struct msm_gpu *gpu);
Rob Clarkf44d32c2016-06-16 16:37:38 -0400166void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
Rob Clark7198e6b2013-07-19 12:59:32 -0400167 struct msm_file_private *ctx);
168
169int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
170 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
171 const char *name, const char *ioname, const char *irqname, int ringsz);
172void msm_gpu_cleanup(struct msm_gpu *gpu);
173
Rob Clarke2550b72014-09-05 13:30:27 -0400174struct msm_gpu *adreno_load_gpu(struct drm_device *dev);
Rob Clarkbfd28b12014-09-05 13:06:37 -0400175void __init adreno_register(void);
176void __exit adreno_unregister(void);
Rob Clark7198e6b2013-07-19 12:59:32 -0400177
178#endif /* __MSM_GPU_H__ */