Linux Audio

Check our new training course

Embedded Linux training

Mar 31-Apr 8, 2025
Register
Loading...
v4.10.11
 
 1#ifndef __NVBIOS_BOOST_H__
 2#define __NVBIOS_BOOST_H__
 3u32 nvbios_boostTe(struct nvkm_bios *, u8 *, u8 *, u8 *, u8 *, u8 *, u8 *);
 4
 5struct nvbios_boostE {
 6	u8  pstate;
 7	u32 min;
 8	u32 max;
 9};
10
11u32 nvbios_boostEe(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *);
12u32 nvbios_boostEp(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *,
13		   struct nvbios_boostE *);
14u32 nvbios_boostEm(struct nvkm_bios *, u8, u8 *, u8 *, u8 *, u8 *,
15		   struct nvbios_boostE *);
16
17struct nvbios_boostS {
18	u8  domain;
19	u8  percent;
20	u32 min;
21	u32 max;
22};
23
24u32 nvbios_boostSe(struct nvkm_bios *, int, u32, u8 *, u8 *, u8, u8);
25u32 nvbios_boostSp(struct nvkm_bios *, int, u32, u8 *, u8 *, u8, u8,
26		   struct nvbios_boostS *);
27#endif
v5.14.15
 1/* SPDX-License-Identifier: MIT */
 2#ifndef __NVBIOS_BOOST_H__
 3#define __NVBIOS_BOOST_H__
 4u32 nvbios_boostTe(struct nvkm_bios *, u8 *, u8 *, u8 *, u8 *, u8 *, u8 *);
 5
 6struct nvbios_boostE {
 7	u8  pstate;
 8	u32 min;
 9	u32 max;
10};
11
12u32 nvbios_boostEe(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *);
13u32 nvbios_boostEp(struct nvkm_bios *, int idx, u8 *, u8 *, u8 *, u8 *,
14		   struct nvbios_boostE *);
15u32 nvbios_boostEm(struct nvkm_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
25u32 nvbios_boostSe(struct nvkm_bios *, int, u32, u8 *, u8 *, u8, u8);
26u32 nvbios_boostSp(struct nvkm_bios *, int, u32, u8 *, u8 *, u8, u8,
27		   struct nvbios_boostS *);
28#endif