Merge tag 'm68k-for-v6.9-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert...
[linux-2.6-microblaze.git] / drivers / gpu / drm / msm / adreno / a2xx_gpu.h
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018 The Linux Foundation. All rights reserved. */
3
4 #ifndef __A2XX_GPU_H__
5 #define __A2XX_GPU_H__
6
7 #include "adreno_gpu.h"
8
9 /* arrg, somehow fb.h is getting pulled in: */
10 #undef ROP_COPY
11 #undef ROP_XOR
12
13 #include "a2xx.xml.h"
14
15 struct a2xx_gpu {
16         struct adreno_gpu base;
17         bool pm_enabled;
18         bool protection_disabled;
19 };
20 #define to_a2xx_gpu(x) container_of(x, struct a2xx_gpu, base)
21
22 #endif /* __A2XX_GPU_H__ */