Merge branch 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / drivers / gpu / drm / msm / adreno / a6xx_gpu.h
CommitLineData
4b565ca5 1/* SPDX-License-Identifier: GPL-2.0 */
e812744c 2/* Copyright (c) 2017, 2019 The Linux Foundation. All rights reserved. */
4b565ca5
JC
3
4#ifndef __A6XX_GPU_H__
5#define __A6XX_GPU_H__
6
7
8#include "adreno_gpu.h"
9#include "a6xx.xml.h"
10
11#include "a6xx_gmu.h"
12
13extern bool hang_debug;
14
15struct a6xx_gpu {
16 struct adreno_gpu base;
17
18 struct drm_gem_object *sqe_bo;
19 uint64_t sqe_iova;
20
21 struct msm_ringbuffer *cur_ring;
22
23 struct a6xx_gmu gmu;
24};
25
26#define to_a6xx_gpu(x) container_of(x, struct a6xx_gpu, base)
27
28/*
29 * Given a register and a count, return a value to program into
30 * REG_CP_PROTECT_REG(n) - this will block both reads and writes for _len
31 * registers starting at _reg.
32 */
33#define A6XX_PROTECT_RW(_reg, _len) \
34 ((1 << 31) | \
35 (((_len) & 0x3FFF) << 18) | ((_reg) & 0x3FFFF))
36
37/*
38 * Same as above, but allow reads over the range. For areas of mixed use (such
39 * as performance counters) this allows us to protect a much larger range with a
40 * single register
41 */
42#define A6XX_PROTECT_RDONLY(_reg, _len) \
43 ((((_len) & 0x3FFF) << 18) | ((_reg) & 0x3FFFF))
44
e812744c
SM
45static inline bool a6xx_has_gbif(struct adreno_gpu *gpu)
46{
47 if(adreno_is_a630(gpu))
48 return false;
49
50 return true;
51}
4b565ca5
JC
52
53int a6xx_gmu_resume(struct a6xx_gpu *gpu);
54int a6xx_gmu_stop(struct a6xx_gpu *gpu);
55
e31fdb74 56int a6xx_gmu_wait_for_idle(struct a6xx_gmu *gmu);
4b565ca5 57
4b565ca5
JC
58bool a6xx_gmu_isidle(struct a6xx_gmu *gmu);
59
60int a6xx_gmu_set_oob(struct a6xx_gmu *gmu, enum a6xx_gmu_oob_state state);
61void a6xx_gmu_clear_oob(struct a6xx_gmu *gmu, enum a6xx_gmu_oob_state state);
62
981f2aab 63int a6xx_gmu_init(struct a6xx_gpu *a6xx_gpu, struct device_node *node);
4b565ca5 64void a6xx_gmu_remove(struct a6xx_gpu *a6xx_gpu);
1707add8 65
a2c3c0a5
SM
66void a6xx_gmu_set_freq(struct msm_gpu *gpu, unsigned long freq);
67unsigned long a6xx_gmu_get_freq(struct msm_gpu *gpu);
1707add8
JC
68
69void a6xx_show(struct msm_gpu *gpu, struct msm_gpu_state *state,
70 struct drm_printer *p);
71
72struct msm_gpu_state *a6xx_gpu_state_get(struct msm_gpu *gpu);
73int a6xx_gpu_state_put(struct msm_gpu_state *state);
74
4b565ca5 75#endif /* __A6XX_GPU_H__ */