blob: 13ecd72c09ab075b298cfd4b1da5e3cc75eb941f [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 Clarke22a2fb2017-02-13 10:14:11 -0700101 struct msm_gem_address_space *aspace;
Rob Clark7198e6b2013-07-19 12:59:32 -0400102
103 /* Power Control: */
104 struct regulator *gpu_reg, *gpu_cx;
Rob Clarkde558cd2015-05-06 13:14:30 -0400105 struct clk *ebi1_clk, *grp_clks[6];
Rob Clark7198e6b2013-07-19 12:59:32 -0400106 uint32_t fast_rate, slow_rate, bus_freq;
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500107
Rob Clark6490ad42015-06-04 10:26:37 -0400108#ifdef DOWNSTREAM_CONFIG_MSM_BUS_SCALING
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500109 struct msm_bus_scale_pdata *bus_scale_table;
Rob Clark7198e6b2013-07-19 12:59:32 -0400110 uint32_t bsc;
Rob Clarkbf2b33a2013-11-15 09:03:15 -0500111#endif
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400112
Rob Clark37d77c32014-01-11 16:25:08 -0500113 /* Hang and Inactivity Detection:
114 */
115#define DRM_MSM_INACTIVE_PERIOD 66 /* in ms (roughly four frames) */
116#define DRM_MSM_INACTIVE_JIFFIES msecs_to_jiffies(DRM_MSM_INACTIVE_PERIOD)
117 struct timer_list inactive_timer;
118 struct work_struct inactive_work;
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400119#define DRM_MSM_HANGCHECK_PERIOD 500 /* in ms */
120#define DRM_MSM_HANGCHECK_JIFFIES msecs_to_jiffies(DRM_MSM_HANGCHECK_PERIOD)
121 struct timer_list hangcheck_timer;
122 uint32_t hangcheck_fence;
123 struct work_struct recover_work;
Rob Clark1a370be2015-06-07 13:46:04 -0400124
125 struct list_head submit_list;
Rob Clark7198e6b2013-07-19 12:59:32 -0400126};
127
Rob Clark37d77c32014-01-11 16:25:08 -0500128static inline bool msm_gpu_active(struct msm_gpu *gpu)
129{
Rob Clarkca762a82016-03-15 17:22:13 -0400130 return gpu->fctx->last_fence > gpu->funcs->last_fence(gpu);
Rob Clark37d77c32014-01-11 16:25:08 -0500131}
132
Rob Clark70c70f02014-05-30 14:49:43 -0400133/* Perf-Counters:
134 * The select_reg and select_val are just there for the benefit of the child
135 * class that actually enables the perf counter.. but msm_gpu base class
136 * will handle sampling/displaying the counters.
137 */
138
139struct msm_gpu_perfcntr {
140 uint32_t select_reg;
141 uint32_t sample_reg;
142 uint32_t select_val;
143 const char *name;
144};
145
Rob Clark7198e6b2013-07-19 12:59:32 -0400146static inline void gpu_write(struct msm_gpu *gpu, u32 reg, u32 data)
147{
148 msm_writel(data, gpu->mmio + (reg << 2));
149}
150
151static inline u32 gpu_read(struct msm_gpu *gpu, u32 reg)
152{
153 return msm_readl(gpu->mmio + (reg << 2));
154}
155
156int msm_gpu_pm_suspend(struct msm_gpu *gpu);
157int msm_gpu_pm_resume(struct msm_gpu *gpu);
158
Rob Clark70c70f02014-05-30 14:49:43 -0400159void msm_gpu_perfcntr_start(struct msm_gpu *gpu);
160void msm_gpu_perfcntr_stop(struct msm_gpu *gpu);
161int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
162 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs);
163
Rob Clark7198e6b2013-07-19 12:59:32 -0400164void msm_gpu_retire(struct msm_gpu *gpu);
Rob Clarkf44d32c2016-06-16 16:37:38 -0400165void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
Rob Clark7198e6b2013-07-19 12:59:32 -0400166 struct msm_file_private *ctx);
167
168int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
169 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
170 const char *name, const char *ioname, const char *irqname, int ringsz);
171void msm_gpu_cleanup(struct msm_gpu *gpu);
172
Rob Clarke2550b72014-09-05 13:30:27 -0400173struct msm_gpu *adreno_load_gpu(struct drm_device *dev);
Rob Clarkbfd28b12014-09-05 13:06:37 -0400174void __init adreno_register(void);
175void __exit adreno_unregister(void);
Rob Clark7198e6b2013-07-19 12:59:32 -0400176
177#endif /* __MSM_GPU_H__ */