cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

a2xx_gpu.h (434B)


      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
     15struct 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__ */