1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2017-2019 The Linux Foundation. All rights reserved. */
7 #include "msm_gpu_trace.h"
9 #include "a6xx_gmu.xml.h"
11 #include <linux/devfreq.h>
15 static inline bool _a6xx_check_idle(struct msm_gpu
*gpu
)
17 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
18 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
20 /* Check that the GMU is idle */
21 if (!a6xx_gmu_isidle(&a6xx_gpu
->gmu
))
24 /* Check tha the CX master is idle */
25 if (gpu_read(gpu
, REG_A6XX_RBBM_STATUS
) &
26 ~A6XX_RBBM_STATUS_CP_AHB_BUSY_CX_MASTER
)
29 return !(gpu_read(gpu
, REG_A6XX_RBBM_INT_0_STATUS
) &
30 A6XX_RBBM_INT_0_MASK_RBBM_HANG_DETECT
);
33 bool a6xx_idle(struct msm_gpu
*gpu
, struct msm_ringbuffer
*ring
)
35 /* wait for CP to drain ringbuffer: */
36 if (!adreno_idle(gpu
, ring
))
39 if (spin_until(_a6xx_check_idle(gpu
))) {
40 DRM_ERROR("%s: %ps: timeout waiting for GPU to idle: status %8.8X irq %8.8X rptr/wptr %d/%d\n",
41 gpu
->name
, __builtin_return_address(0),
42 gpu_read(gpu
, REG_A6XX_RBBM_STATUS
),
43 gpu_read(gpu
, REG_A6XX_RBBM_INT_0_STATUS
),
44 gpu_read(gpu
, REG_A6XX_CP_RB_RPTR
),
45 gpu_read(gpu
, REG_A6XX_CP_RB_WPTR
));
52 static void a6xx_flush(struct msm_gpu
*gpu
, struct msm_ringbuffer
*ring
)
57 spin_lock_irqsave(&ring
->lock
, flags
);
59 /* Copy the shadow to the actual register */
60 ring
->cur
= ring
->next
;
62 /* Make sure to wrap wptr if we need to */
63 wptr
= get_wptr(ring
);
65 spin_unlock_irqrestore(&ring
->lock
, flags
);
67 /* Make sure everything is posted before making a decision */
70 gpu_write(gpu
, REG_A6XX_CP_RB_WPTR
, wptr
);
73 static void get_stats_counter(struct msm_ringbuffer
*ring
, u32 counter
,
76 OUT_PKT7(ring
, CP_REG_TO_MEM
, 3);
77 OUT_RING(ring
, counter
| (1 << 30) | (2 << 18));
78 OUT_RING(ring
, lower_32_bits(iova
));
79 OUT_RING(ring
, upper_32_bits(iova
));
82 static void a6xx_submit(struct msm_gpu
*gpu
, struct msm_gem_submit
*submit
,
83 struct msm_file_private
*ctx
)
85 unsigned int index
= submit
->seqno
% MSM_GPU_SUBMIT_STATS_COUNT
;
86 struct msm_drm_private
*priv
= gpu
->dev
->dev_private
;
87 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
88 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
89 struct msm_ringbuffer
*ring
= submit
->ring
;
92 get_stats_counter(ring
, REG_A6XX_RBBM_PERFCTR_CP_0_LO
,
93 rbmemptr_stats(ring
, index
, cpcycles_start
));
96 * For PM4 the GMU register offsets are calculated from the base of the
97 * GPU registers so we need to add 0x1a800 to the register value on A630
98 * to get the right value from PM4.
100 get_stats_counter(ring
, REG_A6XX_GMU_ALWAYS_ON_COUNTER_L
+ 0x1a800,
101 rbmemptr_stats(ring
, index
, alwayson_start
));
103 /* Invalidate CCU depth and color */
104 OUT_PKT7(ring
, CP_EVENT_WRITE
, 1);
105 OUT_RING(ring
, PC_CCU_INVALIDATE_DEPTH
);
107 OUT_PKT7(ring
, CP_EVENT_WRITE
, 1);
108 OUT_RING(ring
, PC_CCU_INVALIDATE_COLOR
);
110 /* Submit the commands */
111 for (i
= 0; i
< submit
->nr_cmds
; i
++) {
112 switch (submit
->cmd
[i
].type
) {
113 case MSM_SUBMIT_CMD_IB_TARGET_BUF
:
115 case MSM_SUBMIT_CMD_CTX_RESTORE_BUF
:
116 if (priv
->lastctx
== ctx
)
119 case MSM_SUBMIT_CMD_BUF
:
120 OUT_PKT7(ring
, CP_INDIRECT_BUFFER_PFE
, 3);
121 OUT_RING(ring
, lower_32_bits(submit
->cmd
[i
].iova
));
122 OUT_RING(ring
, upper_32_bits(submit
->cmd
[i
].iova
));
123 OUT_RING(ring
, submit
->cmd
[i
].size
);
128 get_stats_counter(ring
, REG_A6XX_RBBM_PERFCTR_CP_0_LO
,
129 rbmemptr_stats(ring
, index
, cpcycles_end
));
130 get_stats_counter(ring
, REG_A6XX_GMU_ALWAYS_ON_COUNTER_L
+ 0x1a800,
131 rbmemptr_stats(ring
, index
, alwayson_end
));
133 /* Write the fence to the scratch register */
134 OUT_PKT4(ring
, REG_A6XX_CP_SCRATCH_REG(2), 1);
135 OUT_RING(ring
, submit
->seqno
);
138 * Execute a CACHE_FLUSH_TS event. This will ensure that the
139 * timestamp is written to the memory and then triggers the interrupt
141 OUT_PKT7(ring
, CP_EVENT_WRITE
, 4);
142 OUT_RING(ring
, CACHE_FLUSH_TS
| (1 << 31));
143 OUT_RING(ring
, lower_32_bits(rbmemptr(ring
, fence
)));
144 OUT_RING(ring
, upper_32_bits(rbmemptr(ring
, fence
)));
145 OUT_RING(ring
, submit
->seqno
);
147 trace_msm_gpu_submit_flush(submit
,
148 gmu_read64(&a6xx_gpu
->gmu
, REG_A6XX_GMU_ALWAYS_ON_COUNTER_L
,
149 REG_A6XX_GMU_ALWAYS_ON_COUNTER_H
));
151 a6xx_flush(gpu
, ring
);
154 static const struct {
158 {REG_A6XX_RBBM_CLOCK_CNTL_SP0
, 0x22222222},
159 {REG_A6XX_RBBM_CLOCK_CNTL_SP1
, 0x22222222},
160 {REG_A6XX_RBBM_CLOCK_CNTL_SP2
, 0x22222222},
161 {REG_A6XX_RBBM_CLOCK_CNTL_SP3
, 0x22222222},
162 {REG_A6XX_RBBM_CLOCK_CNTL2_SP0
, 0x02022220},
163 {REG_A6XX_RBBM_CLOCK_CNTL2_SP1
, 0x02022220},
164 {REG_A6XX_RBBM_CLOCK_CNTL2_SP2
, 0x02022220},
165 {REG_A6XX_RBBM_CLOCK_CNTL2_SP3
, 0x02022220},
166 {REG_A6XX_RBBM_CLOCK_DELAY_SP0
, 0x00000080},
167 {REG_A6XX_RBBM_CLOCK_DELAY_SP1
, 0x00000080},
168 {REG_A6XX_RBBM_CLOCK_DELAY_SP2
, 0x00000080},
169 {REG_A6XX_RBBM_CLOCK_DELAY_SP3
, 0x00000080},
170 {REG_A6XX_RBBM_CLOCK_HYST_SP0
, 0x0000f3cf},
171 {REG_A6XX_RBBM_CLOCK_HYST_SP1
, 0x0000f3cf},
172 {REG_A6XX_RBBM_CLOCK_HYST_SP2
, 0x0000f3cf},
173 {REG_A6XX_RBBM_CLOCK_HYST_SP3
, 0x0000f3cf},
174 {REG_A6XX_RBBM_CLOCK_CNTL_TP0
, 0x02222222},
175 {REG_A6XX_RBBM_CLOCK_CNTL_TP1
, 0x02222222},
176 {REG_A6XX_RBBM_CLOCK_CNTL_TP2
, 0x02222222},
177 {REG_A6XX_RBBM_CLOCK_CNTL_TP3
, 0x02222222},
178 {REG_A6XX_RBBM_CLOCK_CNTL2_TP0
, 0x22222222},
179 {REG_A6XX_RBBM_CLOCK_CNTL2_TP1
, 0x22222222},
180 {REG_A6XX_RBBM_CLOCK_CNTL2_TP2
, 0x22222222},
181 {REG_A6XX_RBBM_CLOCK_CNTL2_TP3
, 0x22222222},
182 {REG_A6XX_RBBM_CLOCK_CNTL3_TP0
, 0x22222222},
183 {REG_A6XX_RBBM_CLOCK_CNTL3_TP1
, 0x22222222},
184 {REG_A6XX_RBBM_CLOCK_CNTL3_TP2
, 0x22222222},
185 {REG_A6XX_RBBM_CLOCK_CNTL3_TP3
, 0x22222222},
186 {REG_A6XX_RBBM_CLOCK_CNTL4_TP0
, 0x00022222},
187 {REG_A6XX_RBBM_CLOCK_CNTL4_TP1
, 0x00022222},
188 {REG_A6XX_RBBM_CLOCK_CNTL4_TP2
, 0x00022222},
189 {REG_A6XX_RBBM_CLOCK_CNTL4_TP3
, 0x00022222},
190 {REG_A6XX_RBBM_CLOCK_HYST_TP0
, 0x77777777},
191 {REG_A6XX_RBBM_CLOCK_HYST_TP1
, 0x77777777},
192 {REG_A6XX_RBBM_CLOCK_HYST_TP2
, 0x77777777},
193 {REG_A6XX_RBBM_CLOCK_HYST_TP3
, 0x77777777},
194 {REG_A6XX_RBBM_CLOCK_HYST2_TP0
, 0x77777777},
195 {REG_A6XX_RBBM_CLOCK_HYST2_TP1
, 0x77777777},
196 {REG_A6XX_RBBM_CLOCK_HYST2_TP2
, 0x77777777},
197 {REG_A6XX_RBBM_CLOCK_HYST2_TP3
, 0x77777777},
198 {REG_A6XX_RBBM_CLOCK_HYST3_TP0
, 0x77777777},
199 {REG_A6XX_RBBM_CLOCK_HYST3_TP1
, 0x77777777},
200 {REG_A6XX_RBBM_CLOCK_HYST3_TP2
, 0x77777777},
201 {REG_A6XX_RBBM_CLOCK_HYST3_TP3
, 0x77777777},
202 {REG_A6XX_RBBM_CLOCK_HYST4_TP0
, 0x00077777},
203 {REG_A6XX_RBBM_CLOCK_HYST4_TP1
, 0x00077777},
204 {REG_A6XX_RBBM_CLOCK_HYST4_TP2
, 0x00077777},
205 {REG_A6XX_RBBM_CLOCK_HYST4_TP3
, 0x00077777},
206 {REG_A6XX_RBBM_CLOCK_DELAY_TP0
, 0x11111111},
207 {REG_A6XX_RBBM_CLOCK_DELAY_TP1
, 0x11111111},
208 {REG_A6XX_RBBM_CLOCK_DELAY_TP2
, 0x11111111},
209 {REG_A6XX_RBBM_CLOCK_DELAY_TP3
, 0x11111111},
210 {REG_A6XX_RBBM_CLOCK_DELAY2_TP0
, 0x11111111},
211 {REG_A6XX_RBBM_CLOCK_DELAY2_TP1
, 0x11111111},
212 {REG_A6XX_RBBM_CLOCK_DELAY2_TP2
, 0x11111111},
213 {REG_A6XX_RBBM_CLOCK_DELAY2_TP3
, 0x11111111},
214 {REG_A6XX_RBBM_CLOCK_DELAY3_TP0
, 0x11111111},
215 {REG_A6XX_RBBM_CLOCK_DELAY3_TP1
, 0x11111111},
216 {REG_A6XX_RBBM_CLOCK_DELAY3_TP2
, 0x11111111},
217 {REG_A6XX_RBBM_CLOCK_DELAY3_TP3
, 0x11111111},
218 {REG_A6XX_RBBM_CLOCK_DELAY4_TP0
, 0x00011111},
219 {REG_A6XX_RBBM_CLOCK_DELAY4_TP1
, 0x00011111},
220 {REG_A6XX_RBBM_CLOCK_DELAY4_TP2
, 0x00011111},
221 {REG_A6XX_RBBM_CLOCK_DELAY4_TP3
, 0x00011111},
222 {REG_A6XX_RBBM_CLOCK_CNTL_UCHE
, 0x22222222},
223 {REG_A6XX_RBBM_CLOCK_CNTL2_UCHE
, 0x22222222},
224 {REG_A6XX_RBBM_CLOCK_CNTL3_UCHE
, 0x22222222},
225 {REG_A6XX_RBBM_CLOCK_CNTL4_UCHE
, 0x00222222},
226 {REG_A6XX_RBBM_CLOCK_HYST_UCHE
, 0x00000004},
227 {REG_A6XX_RBBM_CLOCK_DELAY_UCHE
, 0x00000002},
228 {REG_A6XX_RBBM_CLOCK_CNTL_RB0
, 0x22222222},
229 {REG_A6XX_RBBM_CLOCK_CNTL_RB1
, 0x22222222},
230 {REG_A6XX_RBBM_CLOCK_CNTL_RB2
, 0x22222222},
231 {REG_A6XX_RBBM_CLOCK_CNTL_RB3
, 0x22222222},
232 {REG_A6XX_RBBM_CLOCK_CNTL2_RB0
, 0x00002222},
233 {REG_A6XX_RBBM_CLOCK_CNTL2_RB1
, 0x00002222},
234 {REG_A6XX_RBBM_CLOCK_CNTL2_RB2
, 0x00002222},
235 {REG_A6XX_RBBM_CLOCK_CNTL2_RB3
, 0x00002222},
236 {REG_A6XX_RBBM_CLOCK_CNTL_CCU0
, 0x00002220},
237 {REG_A6XX_RBBM_CLOCK_CNTL_CCU1
, 0x00002220},
238 {REG_A6XX_RBBM_CLOCK_CNTL_CCU2
, 0x00002220},
239 {REG_A6XX_RBBM_CLOCK_CNTL_CCU3
, 0x00002220},
240 {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU0
, 0x00040f00},
241 {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU1
, 0x00040f00},
242 {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU2
, 0x00040f00},
243 {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU3
, 0x00040f00},
244 {REG_A6XX_RBBM_CLOCK_CNTL_RAC
, 0x05022022},
245 {REG_A6XX_RBBM_CLOCK_CNTL2_RAC
, 0x00005555},
246 {REG_A6XX_RBBM_CLOCK_DELAY_RAC
, 0x00000011},
247 {REG_A6XX_RBBM_CLOCK_HYST_RAC
, 0x00445044},
248 {REG_A6XX_RBBM_CLOCK_CNTL_TSE_RAS_RBBM
, 0x04222222},
249 {REG_A6XX_RBBM_CLOCK_MODE_GPC
, 0x00222222},
250 {REG_A6XX_RBBM_CLOCK_MODE_VFD
, 0x00002222},
251 {REG_A6XX_RBBM_CLOCK_HYST_TSE_RAS_RBBM
, 0x00000000},
252 {REG_A6XX_RBBM_CLOCK_HYST_GPC
, 0x04104004},
253 {REG_A6XX_RBBM_CLOCK_HYST_VFD
, 0x00000000},
254 {REG_A6XX_RBBM_CLOCK_DELAY_HLSQ
, 0x00000000},
255 {REG_A6XX_RBBM_CLOCK_DELAY_TSE_RAS_RBBM
, 0x00004000},
256 {REG_A6XX_RBBM_CLOCK_DELAY_GPC
, 0x00000200},
257 {REG_A6XX_RBBM_CLOCK_DELAY_VFD
, 0x00002222},
258 {REG_A6XX_RBBM_CLOCK_DELAY_HLSQ_2
, 0x00000002},
259 {REG_A6XX_RBBM_CLOCK_MODE_HLSQ
, 0x00002222},
260 {REG_A6XX_RBBM_CLOCK_CNTL_GMU_GX
, 0x00000222},
261 {REG_A6XX_RBBM_CLOCK_DELAY_GMU_GX
, 0x00000111},
262 {REG_A6XX_RBBM_CLOCK_HYST_GMU_GX
, 0x00000555}
265 static void a6xx_set_hwcg(struct msm_gpu
*gpu
, bool state
)
267 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
268 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
269 struct a6xx_gmu
*gmu
= &a6xx_gpu
->gmu
;
273 val
= gpu_read(gpu
, REG_A6XX_RBBM_CLOCK_CNTL
);
275 /* Don't re-program the registers if they are already correct */
276 if ((!state
&& !val
) || (state
&& (val
== 0x8aa8aa02)))
279 /* Disable SP clock before programming HWCG registers */
280 gmu_rmw(gmu
, REG_A6XX_GPU_GMU_GX_SPTPRAC_CLOCK_CONTROL
, 1, 0);
282 for (i
= 0; i
< ARRAY_SIZE(a6xx_hwcg
); i
++)
283 gpu_write(gpu
, a6xx_hwcg
[i
].offset
,
284 state
? a6xx_hwcg
[i
].value
: 0);
286 /* Enable SP clock */
287 gmu_rmw(gmu
, REG_A6XX_GPU_GMU_GX_SPTPRAC_CLOCK_CONTROL
, 0, 1);
289 gpu_write(gpu
, REG_A6XX_RBBM_CLOCK_CNTL
, state
? 0x8aa8aa02 : 0);
292 static int a6xx_cp_init(struct msm_gpu
*gpu
)
294 struct msm_ringbuffer
*ring
= gpu
->rb
[0];
296 OUT_PKT7(ring
, CP_ME_INIT
, 8);
298 OUT_RING(ring
, 0x0000002f);
300 /* Enable multiple hardware contexts */
301 OUT_RING(ring
, 0x00000003);
303 /* Enable error detection */
304 OUT_RING(ring
, 0x20000000);
306 /* Don't enable header dump */
307 OUT_RING(ring
, 0x00000000);
308 OUT_RING(ring
, 0x00000000);
310 /* No workarounds enabled */
311 OUT_RING(ring
, 0x00000000);
313 /* Pad rest of the cmds with 0's */
314 OUT_RING(ring
, 0x00000000);
315 OUT_RING(ring
, 0x00000000);
317 a6xx_flush(gpu
, ring
);
318 return a6xx_idle(gpu
, ring
) ? 0 : -EINVAL
;
321 static int a6xx_ucode_init(struct msm_gpu
*gpu
)
323 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
324 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
326 if (!a6xx_gpu
->sqe_bo
) {
327 a6xx_gpu
->sqe_bo
= adreno_fw_create_bo(gpu
,
328 adreno_gpu
->fw
[ADRENO_FW_SQE
], &a6xx_gpu
->sqe_iova
);
330 if (IS_ERR(a6xx_gpu
->sqe_bo
)) {
331 int ret
= PTR_ERR(a6xx_gpu
->sqe_bo
);
333 a6xx_gpu
->sqe_bo
= NULL
;
334 DRM_DEV_ERROR(&gpu
->pdev
->dev
,
335 "Could not allocate SQE ucode: %d\n", ret
);
340 msm_gem_object_set_name(a6xx_gpu
->sqe_bo
, "sqefw");
343 gpu_write64(gpu
, REG_A6XX_CP_SQE_INSTR_BASE_LO
,
344 REG_A6XX_CP_SQE_INSTR_BASE_HI
, a6xx_gpu
->sqe_iova
);
349 static int a6xx_zap_shader_init(struct msm_gpu
*gpu
)
357 ret
= adreno_zap_shader_load(gpu
, GPU_PAS_ID
);
363 #define A6XX_INT_MASK (A6XX_RBBM_INT_0_MASK_CP_AHB_ERROR | \
364 A6XX_RBBM_INT_0_MASK_RBBM_ATB_ASYNCFIFO_OVERFLOW | \
365 A6XX_RBBM_INT_0_MASK_CP_HW_ERROR | \
366 A6XX_RBBM_INT_0_MASK_CP_IB2 | \
367 A6XX_RBBM_INT_0_MASK_CP_IB1 | \
368 A6XX_RBBM_INT_0_MASK_CP_RB | \
369 A6XX_RBBM_INT_0_MASK_CP_CACHE_FLUSH_TS | \
370 A6XX_RBBM_INT_0_MASK_RBBM_ATB_BUS_OVERFLOW | \
371 A6XX_RBBM_INT_0_MASK_RBBM_HANG_DETECT | \
372 A6XX_RBBM_INT_0_MASK_UCHE_OOB_ACCESS | \
373 A6XX_RBBM_INT_0_MASK_UCHE_TRAP_INTR)
375 static int a6xx_hw_init(struct msm_gpu
*gpu
)
377 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
378 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
382 * During a previous slumber, GBIF halt is asserted to ensure
383 * no further transaction can go through GPU before GPU
384 * headswitch is turned off.
386 * This halt is deasserted once headswitch goes off but
387 * incase headswitch doesn't goes off clear GBIF halt
388 * here to ensure GPU wake-up doesn't fail because of
389 * halted GPU transactions.
391 gpu_write(gpu
, REG_A6XX_GBIF_HALT
, 0x0);
393 /* Make sure the GMU keeps the GPU on while we set it up */
394 a6xx_gmu_set_oob(&a6xx_gpu
->gmu
, GMU_OOB_GPU_SET
);
396 gpu_write(gpu
, REG_A6XX_RBBM_SECVID_TSB_CNTL
, 0);
399 * Disable the trusted memory range - we don't actually supported secure
400 * memory rendering at this point in time and we don't want to block off
401 * part of the virtual memory space.
403 gpu_write64(gpu
, REG_A6XX_RBBM_SECVID_TSB_TRUSTED_BASE_LO
,
404 REG_A6XX_RBBM_SECVID_TSB_TRUSTED_BASE_HI
, 0x00000000);
405 gpu_write(gpu
, REG_A6XX_RBBM_SECVID_TSB_TRUSTED_SIZE
, 0x00000000);
407 /* Turn on 64 bit addressing for all blocks */
408 gpu_write(gpu
, REG_A6XX_CP_ADDR_MODE_CNTL
, 0x1);
409 gpu_write(gpu
, REG_A6XX_VSC_ADDR_MODE_CNTL
, 0x1);
410 gpu_write(gpu
, REG_A6XX_GRAS_ADDR_MODE_CNTL
, 0x1);
411 gpu_write(gpu
, REG_A6XX_RB_ADDR_MODE_CNTL
, 0x1);
412 gpu_write(gpu
, REG_A6XX_PC_ADDR_MODE_CNTL
, 0x1);
413 gpu_write(gpu
, REG_A6XX_HLSQ_ADDR_MODE_CNTL
, 0x1);
414 gpu_write(gpu
, REG_A6XX_VFD_ADDR_MODE_CNTL
, 0x1);
415 gpu_write(gpu
, REG_A6XX_VPC_ADDR_MODE_CNTL
, 0x1);
416 gpu_write(gpu
, REG_A6XX_UCHE_ADDR_MODE_CNTL
, 0x1);
417 gpu_write(gpu
, REG_A6XX_SP_ADDR_MODE_CNTL
, 0x1);
418 gpu_write(gpu
, REG_A6XX_TPL1_ADDR_MODE_CNTL
, 0x1);
419 gpu_write(gpu
, REG_A6XX_RBBM_SECVID_TSB_ADDR_MODE_CNTL
, 0x1);
422 * enable hardware clockgating
423 * For now enable clock gating only for a630
425 if (adreno_is_a630(adreno_gpu
))
426 a6xx_set_hwcg(gpu
, true);
429 gpu_write(gpu
, REG_A6XX_RBBM_VBIF_CLIENT_QOS_CNTL
, 0x3);
430 if (adreno_is_a630(adreno_gpu
))
431 gpu_write(gpu
, REG_A6XX_VBIF_GATE_OFF_WRREQ_EN
, 0x00000009);
433 /* Make all blocks contribute to the GPU BUSY perf counter */
434 gpu_write(gpu
, REG_A6XX_RBBM_PERFCTR_GPU_BUSY_MASKED
, 0xffffffff);
436 /* Disable L2 bypass in the UCHE */
437 gpu_write(gpu
, REG_A6XX_UCHE_WRITE_RANGE_MAX_LO
, 0xffffffc0);
438 gpu_write(gpu
, REG_A6XX_UCHE_WRITE_RANGE_MAX_HI
, 0x0001ffff);
439 gpu_write(gpu
, REG_A6XX_UCHE_TRAP_BASE_LO
, 0xfffff000);
440 gpu_write(gpu
, REG_A6XX_UCHE_TRAP_BASE_HI
, 0x0001ffff);
441 gpu_write(gpu
, REG_A6XX_UCHE_WRITE_THRU_BASE_LO
, 0xfffff000);
442 gpu_write(gpu
, REG_A6XX_UCHE_WRITE_THRU_BASE_HI
, 0x0001ffff);
444 /* Set the GMEM VA range [0x100000:0x100000 + gpu->gmem - 1] */
445 gpu_write64(gpu
, REG_A6XX_UCHE_GMEM_RANGE_MIN_LO
,
446 REG_A6XX_UCHE_GMEM_RANGE_MIN_HI
, 0x00100000);
448 gpu_write64(gpu
, REG_A6XX_UCHE_GMEM_RANGE_MAX_LO
,
449 REG_A6XX_UCHE_GMEM_RANGE_MAX_HI
,
450 0x00100000 + adreno_gpu
->gmem
- 1);
452 gpu_write(gpu
, REG_A6XX_UCHE_FILTER_CNTL
, 0x804);
453 gpu_write(gpu
, REG_A6XX_UCHE_CACHE_WAYS
, 0x4);
455 gpu_write(gpu
, REG_A6XX_CP_ROQ_THRESHOLDS_2
, 0x010000c0);
456 gpu_write(gpu
, REG_A6XX_CP_ROQ_THRESHOLDS_1
, 0x8040362c);
458 /* Setting the mem pool size */
459 gpu_write(gpu
, REG_A6XX_CP_MEM_POOL_SIZE
, 128);
461 /* Setting the primFifo thresholds default values */
462 gpu_write(gpu
, REG_A6XX_PC_DBG_ECO_CNTL
, (0x300 << 11));
464 /* Set the AHB default slave response to "ERROR" */
465 gpu_write(gpu
, REG_A6XX_CP_AHB_CNTL
, 0x1);
467 /* Turn on performance counters */
468 gpu_write(gpu
, REG_A6XX_RBBM_PERFCTR_CNTL
, 0x1);
470 /* Select CP0 to always count cycles */
471 gpu_write(gpu
, REG_A6XX_CP_PERFCTR_CP_SEL_0
, PERF_CP_ALWAYS_COUNT
);
473 gpu_write(gpu
, REG_A6XX_RB_NC_MODE_CNTL
, 2 << 1);
474 gpu_write(gpu
, REG_A6XX_TPL1_NC_MODE_CNTL
, 2 << 1);
475 gpu_write(gpu
, REG_A6XX_SP_NC_MODE_CNTL
, 2 << 1);
476 gpu_write(gpu
, REG_A6XX_UCHE_MODE_CNTL
, 2 << 21);
478 /* Enable fault detection */
479 gpu_write(gpu
, REG_A6XX_RBBM_INTERFACE_HANG_INT_CNTL
,
480 (1 << 30) | 0x1fffff);
482 gpu_write(gpu
, REG_A6XX_UCHE_CLIENT_PF
, 1);
484 /* Protect registers from the CP */
485 gpu_write(gpu
, REG_A6XX_CP_PROTECT_CNTL
, 0x00000003);
487 gpu_write(gpu
, REG_A6XX_CP_PROTECT(0),
488 A6XX_PROTECT_RDONLY(0x600, 0x51));
489 gpu_write(gpu
, REG_A6XX_CP_PROTECT(1), A6XX_PROTECT_RW(0xae50, 0x2));
490 gpu_write(gpu
, REG_A6XX_CP_PROTECT(2), A6XX_PROTECT_RW(0x9624, 0x13));
491 gpu_write(gpu
, REG_A6XX_CP_PROTECT(3), A6XX_PROTECT_RW(0x8630, 0x8));
492 gpu_write(gpu
, REG_A6XX_CP_PROTECT(4), A6XX_PROTECT_RW(0x9e70, 0x1));
493 gpu_write(gpu
, REG_A6XX_CP_PROTECT(5), A6XX_PROTECT_RW(0x9e78, 0x187));
494 gpu_write(gpu
, REG_A6XX_CP_PROTECT(6), A6XX_PROTECT_RW(0xf000, 0x810));
495 gpu_write(gpu
, REG_A6XX_CP_PROTECT(7),
496 A6XX_PROTECT_RDONLY(0xfc00, 0x3));
497 gpu_write(gpu
, REG_A6XX_CP_PROTECT(8), A6XX_PROTECT_RW(0x50e, 0x0));
498 gpu_write(gpu
, REG_A6XX_CP_PROTECT(9), A6XX_PROTECT_RDONLY(0x50f, 0x0));
499 gpu_write(gpu
, REG_A6XX_CP_PROTECT(10), A6XX_PROTECT_RW(0x510, 0x0));
500 gpu_write(gpu
, REG_A6XX_CP_PROTECT(11),
501 A6XX_PROTECT_RDONLY(0x0, 0x4f9));
502 gpu_write(gpu
, REG_A6XX_CP_PROTECT(12),
503 A6XX_PROTECT_RDONLY(0x501, 0xa));
504 gpu_write(gpu
, REG_A6XX_CP_PROTECT(13),
505 A6XX_PROTECT_RDONLY(0x511, 0x44));
506 gpu_write(gpu
, REG_A6XX_CP_PROTECT(14), A6XX_PROTECT_RW(0xe00, 0xe));
507 gpu_write(gpu
, REG_A6XX_CP_PROTECT(15), A6XX_PROTECT_RW(0x8e00, 0x0));
508 gpu_write(gpu
, REG_A6XX_CP_PROTECT(16), A6XX_PROTECT_RW(0x8e50, 0xf));
509 gpu_write(gpu
, REG_A6XX_CP_PROTECT(17), A6XX_PROTECT_RW(0xbe02, 0x0));
510 gpu_write(gpu
, REG_A6XX_CP_PROTECT(18),
511 A6XX_PROTECT_RW(0xbe20, 0x11f3));
512 gpu_write(gpu
, REG_A6XX_CP_PROTECT(19), A6XX_PROTECT_RW(0x800, 0x82));
513 gpu_write(gpu
, REG_A6XX_CP_PROTECT(20), A6XX_PROTECT_RW(0x8a0, 0x8));
514 gpu_write(gpu
, REG_A6XX_CP_PROTECT(21), A6XX_PROTECT_RW(0x8ab, 0x19));
515 gpu_write(gpu
, REG_A6XX_CP_PROTECT(22), A6XX_PROTECT_RW(0x900, 0x4d));
516 gpu_write(gpu
, REG_A6XX_CP_PROTECT(23), A6XX_PROTECT_RW(0x98d, 0x76));
517 gpu_write(gpu
, REG_A6XX_CP_PROTECT(24),
518 A6XX_PROTECT_RDONLY(0x980, 0x4));
519 gpu_write(gpu
, REG_A6XX_CP_PROTECT(25), A6XX_PROTECT_RW(0xa630, 0x0));
521 /* Enable interrupts */
522 gpu_write(gpu
, REG_A6XX_RBBM_INT_0_MASK
, A6XX_INT_MASK
);
524 ret
= adreno_hw_init(gpu
);
528 ret
= a6xx_ucode_init(gpu
);
532 /* Always come up on rb 0 */
533 a6xx_gpu
->cur_ring
= gpu
->rb
[0];
535 /* Enable the SQE_to start the CP engine */
536 gpu_write(gpu
, REG_A6XX_CP_SQE_CNTL
, 1);
538 ret
= a6xx_cp_init(gpu
);
543 * Try to load a zap shader into the secure world. If successful
544 * we can use the CP to switch out of secure mode. If not then we
545 * have no resource but to try to switch ourselves out manually. If we
546 * guessed wrong then access to the RBBM_SECVID_TRUST_CNTL register will
547 * be blocked and a permissions violation will soon follow.
549 ret
= a6xx_zap_shader_init(gpu
);
551 OUT_PKT7(gpu
->rb
[0], CP_SET_SECURE_MODE
, 1);
552 OUT_RING(gpu
->rb
[0], 0x00000000);
554 a6xx_flush(gpu
, gpu
->rb
[0]);
555 if (!a6xx_idle(gpu
, gpu
->rb
[0]))
557 } else if (ret
== -ENODEV
) {
559 * This device does not use zap shader (but print a warning
560 * just in case someone got their dt wrong.. hopefully they
561 * have a debug UART to realize the error of their ways...
562 * if you mess this up you are about to crash horribly)
564 dev_warn_once(gpu
->dev
->dev
,
565 "Zap shader not enabled - using SECVID_TRUST_CNTL instead\n");
566 gpu_write(gpu
, REG_A6XX_RBBM_SECVID_TRUST_CNTL
, 0x0);
574 * Tell the GMU that we are done touching the GPU and it can start power
577 a6xx_gmu_clear_oob(&a6xx_gpu
->gmu
, GMU_OOB_GPU_SET
);
579 /* Take the GMU out of its special boot mode */
580 a6xx_gmu_clear_oob(&a6xx_gpu
->gmu
, GMU_OOB_BOOT_SLUMBER
);
585 static void a6xx_dump(struct msm_gpu
*gpu
)
587 DRM_DEV_INFO(&gpu
->pdev
->dev
, "status: %08x\n",
588 gpu_read(gpu
, REG_A6XX_RBBM_STATUS
));
592 #define VBIF_RESET_ACK_TIMEOUT 100
593 #define VBIF_RESET_ACK_MASK 0x00f0
595 static void a6xx_recover(struct msm_gpu
*gpu
)
597 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
598 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
601 adreno_dump_info(gpu
);
603 for (i
= 0; i
< 8; i
++)
604 DRM_DEV_INFO(&gpu
->pdev
->dev
, "CP_SCRATCH_REG%d: %u\n", i
,
605 gpu_read(gpu
, REG_A6XX_CP_SCRATCH_REG(i
)));
611 * Turn off keep alive that might have been enabled by the hang
614 gmu_write(&a6xx_gpu
->gmu
, REG_A6XX_GMU_GMU_PWR_COL_KEEPALIVE
, 0);
616 gpu
->funcs
->pm_suspend(gpu
);
617 gpu
->funcs
->pm_resume(gpu
);
619 msm_gpu_hw_init(gpu
);
622 static int a6xx_fault_handler(void *arg
, unsigned long iova
, int flags
)
624 struct msm_gpu
*gpu
= arg
;
626 pr_warn_ratelimited("*** gpu fault: iova=%08lx, flags=%d (%u,%u,%u,%u)\n",
628 gpu_read(gpu
, REG_A6XX_CP_SCRATCH_REG(4)),
629 gpu_read(gpu
, REG_A6XX_CP_SCRATCH_REG(5)),
630 gpu_read(gpu
, REG_A6XX_CP_SCRATCH_REG(6)),
631 gpu_read(gpu
, REG_A6XX_CP_SCRATCH_REG(7)));
636 static void a6xx_cp_hw_err_irq(struct msm_gpu
*gpu
)
638 u32 status
= gpu_read(gpu
, REG_A6XX_CP_INTERRUPT_STATUS
);
640 if (status
& A6XX_CP_INT_CP_OPCODE_ERROR
) {
643 gpu_write(gpu
, REG_A6XX_CP_SQE_STAT_ADDR
, 1);
644 val
= gpu_read(gpu
, REG_A6XX_CP_SQE_STAT_DATA
);
645 dev_err_ratelimited(&gpu
->pdev
->dev
,
646 "CP | opcode error | possible opcode=0x%8.8X\n",
650 if (status
& A6XX_CP_INT_CP_UCODE_ERROR
)
651 dev_err_ratelimited(&gpu
->pdev
->dev
,
652 "CP ucode error interrupt\n");
654 if (status
& A6XX_CP_INT_CP_HW_FAULT_ERROR
)
655 dev_err_ratelimited(&gpu
->pdev
->dev
, "CP | HW fault | status=0x%8.8X\n",
656 gpu_read(gpu
, REG_A6XX_CP_HW_FAULT
));
658 if (status
& A6XX_CP_INT_CP_REGISTER_PROTECTION_ERROR
) {
659 u32 val
= gpu_read(gpu
, REG_A6XX_CP_PROTECT_STATUS
);
661 dev_err_ratelimited(&gpu
->pdev
->dev
,
662 "CP | protected mode error | %s | addr=0x%8.8X | status=0x%8.8X\n",
663 val
& (1 << 20) ? "READ" : "WRITE",
664 (val
& 0x3ffff), val
);
667 if (status
& A6XX_CP_INT_CP_AHB_ERROR
)
668 dev_err_ratelimited(&gpu
->pdev
->dev
, "CP AHB error interrupt\n");
670 if (status
& A6XX_CP_INT_CP_VSD_PARITY_ERROR
)
671 dev_err_ratelimited(&gpu
->pdev
->dev
, "CP VSD decoder parity error\n");
673 if (status
& A6XX_CP_INT_CP_ILLEGAL_INSTR_ERROR
)
674 dev_err_ratelimited(&gpu
->pdev
->dev
, "CP illegal instruction error\n");
678 static void a6xx_fault_detect_irq(struct msm_gpu
*gpu
)
680 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
681 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
682 struct drm_device
*dev
= gpu
->dev
;
683 struct msm_drm_private
*priv
= dev
->dev_private
;
684 struct msm_ringbuffer
*ring
= gpu
->funcs
->active_ring(gpu
);
687 * Force the GPU to stay on until after we finish
688 * collecting information
690 gmu_write(&a6xx_gpu
->gmu
, REG_A6XX_GMU_GMU_PWR_COL_KEEPALIVE
, 1);
692 DRM_DEV_ERROR(&gpu
->pdev
->dev
,
693 "gpu fault ring %d fence %x status %8.8X rb %4.4x/%4.4x ib1 %16.16llX/%4.4x ib2 %16.16llX/%4.4x\n",
694 ring
? ring
->id
: -1, ring
? ring
->seqno
: 0,
695 gpu_read(gpu
, REG_A6XX_RBBM_STATUS
),
696 gpu_read(gpu
, REG_A6XX_CP_RB_RPTR
),
697 gpu_read(gpu
, REG_A6XX_CP_RB_WPTR
),
698 gpu_read64(gpu
, REG_A6XX_CP_IB1_BASE
, REG_A6XX_CP_IB1_BASE_HI
),
699 gpu_read(gpu
, REG_A6XX_CP_IB1_REM_SIZE
),
700 gpu_read64(gpu
, REG_A6XX_CP_IB2_BASE
, REG_A6XX_CP_IB2_BASE_HI
),
701 gpu_read(gpu
, REG_A6XX_CP_IB2_REM_SIZE
));
703 /* Turn off the hangcheck timer to keep it from bothering us */
704 del_timer(&gpu
->hangcheck_timer
);
706 queue_work(priv
->wq
, &gpu
->recover_work
);
709 static irqreturn_t
a6xx_irq(struct msm_gpu
*gpu
)
711 u32 status
= gpu_read(gpu
, REG_A6XX_RBBM_INT_0_STATUS
);
713 gpu_write(gpu
, REG_A6XX_RBBM_INT_CLEAR_CMD
, status
);
715 if (status
& A6XX_RBBM_INT_0_MASK_RBBM_HANG_DETECT
)
716 a6xx_fault_detect_irq(gpu
);
718 if (status
& A6XX_RBBM_INT_0_MASK_CP_AHB_ERROR
)
719 dev_err_ratelimited(&gpu
->pdev
->dev
, "CP | AHB bus error\n");
721 if (status
& A6XX_RBBM_INT_0_MASK_CP_HW_ERROR
)
722 a6xx_cp_hw_err_irq(gpu
);
724 if (status
& A6XX_RBBM_INT_0_MASK_RBBM_ATB_ASYNCFIFO_OVERFLOW
)
725 dev_err_ratelimited(&gpu
->pdev
->dev
, "RBBM | ATB ASYNC overflow\n");
727 if (status
& A6XX_RBBM_INT_0_MASK_RBBM_ATB_BUS_OVERFLOW
)
728 dev_err_ratelimited(&gpu
->pdev
->dev
, "RBBM | ATB bus overflow\n");
730 if (status
& A6XX_RBBM_INT_0_MASK_UCHE_OOB_ACCESS
)
731 dev_err_ratelimited(&gpu
->pdev
->dev
, "UCHE | Out of bounds access\n");
733 if (status
& A6XX_RBBM_INT_0_MASK_CP_CACHE_FLUSH_TS
)
739 static const u32 a6xx_register_offsets
[REG_ADRENO_REGISTER_MAX
] = {
740 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_BASE
, REG_A6XX_CP_RB_BASE
),
741 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_BASE_HI
, REG_A6XX_CP_RB_BASE_HI
),
742 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_RPTR_ADDR
,
743 REG_A6XX_CP_RB_RPTR_ADDR_LO
),
744 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_RPTR_ADDR_HI
,
745 REG_A6XX_CP_RB_RPTR_ADDR_HI
),
746 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_RPTR
, REG_A6XX_CP_RB_RPTR
),
747 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_WPTR
, REG_A6XX_CP_RB_WPTR
),
748 REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_CNTL
, REG_A6XX_CP_RB_CNTL
),
751 #define GBIF_CLIENT_HALT_MASK BIT(0)
752 #define GBIF_ARB_HALT_MASK BIT(1)
754 static void a6xx_bus_clear_pending_transactions(struct adreno_gpu
*adreno_gpu
)
756 struct msm_gpu
*gpu
= &adreno_gpu
->base
;
758 if(!a6xx_has_gbif(adreno_gpu
)){
759 gpu_write(gpu
, REG_A6XX_VBIF_XIN_HALT_CTRL0
, 0xf);
760 spin_until((gpu_read(gpu
, REG_A6XX_VBIF_XIN_HALT_CTRL1
) &
762 gpu_write(gpu
, REG_A6XX_VBIF_XIN_HALT_CTRL0
, 0);
767 /* Halt new client requests on GBIF */
768 gpu_write(gpu
, REG_A6XX_GBIF_HALT
, GBIF_CLIENT_HALT_MASK
);
769 spin_until((gpu_read(gpu
, REG_A6XX_GBIF_HALT_ACK
) &
770 (GBIF_CLIENT_HALT_MASK
)) == GBIF_CLIENT_HALT_MASK
);
772 /* Halt all AXI requests on GBIF */
773 gpu_write(gpu
, REG_A6XX_GBIF_HALT
, GBIF_ARB_HALT_MASK
);
774 spin_until((gpu_read(gpu
, REG_A6XX_GBIF_HALT_ACK
) &
775 (GBIF_ARB_HALT_MASK
)) == GBIF_ARB_HALT_MASK
);
778 * GMU needs DDR access in slumber path. Deassert GBIF halt now
779 * to allow for GMU to access system memory.
781 gpu_write(gpu
, REG_A6XX_GBIF_HALT
, 0x0);
784 static int a6xx_pm_resume(struct msm_gpu
*gpu
)
786 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
787 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
790 gpu
->needs_hw_init
= true;
792 ret
= a6xx_gmu_resume(a6xx_gpu
);
796 msm_gpu_resume_devfreq(gpu
);
801 static int a6xx_pm_suspend(struct msm_gpu
*gpu
)
803 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
804 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
806 devfreq_suspend_device(gpu
->devfreq
.devfreq
);
809 * Make sure the GMU is idle before continuing (because some transitions
812 a6xx_gmu_wait_for_idle(&a6xx_gpu
->gmu
);
814 /* Clear the VBIF pipe before shutting down */
815 /* FIXME: This accesses the GPU - do we need to make sure it is on? */
816 a6xx_bus_clear_pending_transactions(adreno_gpu
);
818 return a6xx_gmu_stop(a6xx_gpu
);
821 static int a6xx_get_timestamp(struct msm_gpu
*gpu
, uint64_t *value
)
823 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
824 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
826 /* Force the GPU power on so we can read this register */
827 a6xx_gmu_set_oob(&a6xx_gpu
->gmu
, GMU_OOB_GPU_SET
);
829 *value
= gpu_read64(gpu
, REG_A6XX_RBBM_PERFCTR_CP_0_LO
,
830 REG_A6XX_RBBM_PERFCTR_CP_0_HI
);
832 a6xx_gmu_clear_oob(&a6xx_gpu
->gmu
, GMU_OOB_GPU_SET
);
836 static struct msm_ringbuffer
*a6xx_active_ring(struct msm_gpu
*gpu
)
838 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
839 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
841 return a6xx_gpu
->cur_ring
;
844 static void a6xx_destroy(struct msm_gpu
*gpu
)
846 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
847 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
849 if (a6xx_gpu
->sqe_bo
) {
850 msm_gem_unpin_iova(a6xx_gpu
->sqe_bo
, gpu
->aspace
);
851 drm_gem_object_put_unlocked(a6xx_gpu
->sqe_bo
);
854 a6xx_gmu_remove(a6xx_gpu
);
856 adreno_gpu_cleanup(adreno_gpu
);
860 static unsigned long a6xx_gpu_busy(struct msm_gpu
*gpu
)
862 struct adreno_gpu
*adreno_gpu
= to_adreno_gpu(gpu
);
863 struct a6xx_gpu
*a6xx_gpu
= to_a6xx_gpu(adreno_gpu
);
864 u64 busy_cycles
, busy_time
;
866 busy_cycles
= gmu_read64(&a6xx_gpu
->gmu
,
867 REG_A6XX_GMU_CX_GMU_POWER_COUNTER_XOCLK_0_L
,
868 REG_A6XX_GMU_CX_GMU_POWER_COUNTER_XOCLK_0_H
);
870 busy_time
= (busy_cycles
- gpu
->devfreq
.busy_cycles
) * 10;
871 do_div(busy_time
, 192);
873 gpu
->devfreq
.busy_cycles
= busy_cycles
;
875 if (WARN_ON(busy_time
> ~0LU))
878 return (unsigned long)busy_time
;
881 static const struct adreno_gpu_funcs funcs
= {
883 .get_param
= adreno_get_param
,
884 .hw_init
= a6xx_hw_init
,
885 .pm_suspend
= a6xx_pm_suspend
,
886 .pm_resume
= a6xx_pm_resume
,
887 .recover
= a6xx_recover
,
888 .submit
= a6xx_submit
,
890 .active_ring
= a6xx_active_ring
,
892 .destroy
= a6xx_destroy
,
893 #if defined(CONFIG_DRM_MSM_GPU_STATE)
896 .gpu_busy
= a6xx_gpu_busy
,
897 .gpu_get_freq
= a6xx_gmu_get_freq
,
898 .gpu_set_freq
= a6xx_gmu_set_freq
,
899 #if defined(CONFIG_DRM_MSM_GPU_STATE)
900 .gpu_state_get
= a6xx_gpu_state_get
,
901 .gpu_state_put
= a6xx_gpu_state_put
,
904 .get_timestamp
= a6xx_get_timestamp
,
907 struct msm_gpu
*a6xx_gpu_init(struct drm_device
*dev
)
909 struct msm_drm_private
*priv
= dev
->dev_private
;
910 struct platform_device
*pdev
= priv
->gpu_pdev
;
911 struct device_node
*node
;
912 struct a6xx_gpu
*a6xx_gpu
;
913 struct adreno_gpu
*adreno_gpu
;
917 a6xx_gpu
= kzalloc(sizeof(*a6xx_gpu
), GFP_KERNEL
);
919 return ERR_PTR(-ENOMEM
);
921 adreno_gpu
= &a6xx_gpu
->base
;
922 gpu
= &adreno_gpu
->base
;
924 adreno_gpu
->registers
= NULL
;
925 adreno_gpu
->reg_offsets
= a6xx_register_offsets
;
927 ret
= adreno_gpu_init(dev
, pdev
, adreno_gpu
, &funcs
, 1);
929 a6xx_destroy(&(a6xx_gpu
->base
.base
));
933 /* Check if there is a GMU phandle and set it up */
934 node
= of_parse_phandle(pdev
->dev
.of_node
, "qcom,gmu", 0);
936 /* FIXME: How do we gracefully handle this? */
939 ret
= a6xx_gmu_init(a6xx_gpu
, node
);
941 a6xx_destroy(&(a6xx_gpu
->base
.base
));
946 msm_mmu_set_fault_handler(gpu
->aspace
->mmu
, gpu
,