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