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

timing.h (440B)


      1/* SPDX-License-Identifier: MIT */
      2#ifndef __NVBIOS_TIMING_H__
      3#define __NVBIOS_TIMING_H__
      4#include <subdev/bios/ramcfg.h>
      5
      6u32 nvbios_timingTe(struct nvkm_bios *,
      7		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *snr, u8 *ssz);
      8u32 nvbios_timingEe(struct nvkm_bios *, int idx,
      9		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len);
     10u32 nvbios_timingEp(struct nvkm_bios *, int idx,
     11		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len, struct nvbios_ramcfg *);
     12#endif