boost.h 714 B

123456789101112131415161718192021222324252627
  1. #ifndef __NVBIOS_BOOST_H__
  2. #define __NVBIOS_BOOST_H__
  3. u16 nvbios_boostTe(struct nvkm_bios *, u8 *, u8 *, u8 *, u8 *, u8 *, u8 *);
  4. struct nvbios_boostE {
  5. u8 pstate;
  6. u32 min;
  7. u32 max;
  8. };
  9. u16 nvbios_boostEe(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *);
  10. u16 nvbios_boostEp(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *,
  11. struct nvbios_boostE *);
  12. u16 nvbios_boostEm(struct nvkm_bios *, u8, u8 *, u8 *, u8 *, u8 *,
  13. struct nvbios_boostE *);
  14. struct nvbios_boostS {
  15. u8 domain;
  16. u8 percent;
  17. u32 min;
  18. u32 max;
  19. };
  20. u16 nvbios_boostSe(struct nvkm_bios *, int, u16, u8 *, u8 *, u8, u8);
  21. u16 nvbios_boostSp(struct nvkm_bios *, int, u16, u8 *, u8 *, u8, u8,
  22. struct nvbios_boostS *);
  23. #endif