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 }; 19 #define to_a2xx_gpu(x) container_of(x, struct a2xx_gpu, base) 20 21 #endif /* __A2XX_GPU_H__ */ 22