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

gsp.h (334B)


      1#ifndef __NVKM_GSP_H__
      2#define __NVKM_GSP_H__
      3#define nvkm_gsp(p) container_of((p), struct nvkm_gsp, subdev)
      4#include <core/subdev.h>
      5#include <core/falcon.h>
      6
      7struct nvkm_gsp {
      8	struct nvkm_subdev subdev;
      9	struct nvkm_falcon falcon;
     10};
     11
     12int gv100_gsp_new(struct nvkm_device *, enum nvkm_subdev_type, int, struct nvkm_gsp **);
     13#endif