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

priv.h (419B)


      1/* SPDX-License-Identifier: MIT */
      2#ifndef __NVKM_GSP_PRIV_H__
      3#define __NVKM_GSP_PRIV_H__
      4#include <subdev/gsp.h>
      5enum nvkm_acr_lsf_id;
      6
      7struct nvkm_gsp_fwif {
      8	int version;
      9	int (*load)(struct nvkm_gsp *, int ver, const struct nvkm_gsp_fwif *);
     10	const struct nvkm_falcon_func *flcn;
     11};
     12
     13int nvkm_gsp_new_(const struct nvkm_gsp_fwif *, struct nvkm_device *, enum nvkm_subdev_type, int,
     14		  struct nvkm_gsp **);
     15#endif