timing.h 405 B

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