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

nv40.h (403B)


      1/* SPDX-License-Identifier: MIT */
      2#ifndef __NVKM_PM_NV40_H__
      3#define __NVKM_PM_NV40_H__
      4#define nv40_pm(p) container_of((p), struct nv40_pm, base)
      5#include "priv.h"
      6
      7struct nv40_pm {
      8	struct nvkm_pm base;
      9	u32 sequence;
     10};
     11
     12int nv40_pm_new_(const struct nvkm_specdom *, struct nvkm_device *, enum nvkm_subdev_type, int,
     13		 struct nvkm_pm **);
     14extern const struct nvkm_funcdom nv40_perfctr_func;
     15#endif