1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#ifndef PP_POWERSTATE_H
24#define PP_POWERSTATE_H
25
26struct pp_hw_power_state {
27 unsigned int magic;
28};
29
30struct pp_power_state;
31
32
33#define PP_INVALID_POWER_STATE_ID (0)
34
35
36
37
38
39
40struct PP_StateLinkedList {
41 struct pp_power_state *next;
42 struct pp_power_state *prev;
43};
44
45
46enum PP_StateUILabel {
47 PP_StateUILabel_None,
48 PP_StateUILabel_Battery,
49 PP_StateUILabel_MiddleLow,
50 PP_StateUILabel_Balanced,
51 PP_StateUILabel_MiddleHigh,
52 PP_StateUILabel_Performance,
53 PP_StateUILabel_BACO
54};
55
56enum PP_StateClassificationFlag {
57 PP_StateClassificationFlag_Boot = 0x0001,
58 PP_StateClassificationFlag_Thermal = 0x0002,
59 PP_StateClassificationFlag_LimitedPowerSource = 0x0004,
60 PP_StateClassificationFlag_Rest = 0x0008,
61 PP_StateClassificationFlag_Forced = 0x0010,
62 PP_StateClassificationFlag_User3DPerformance = 0x0020,
63 PP_StateClassificationFlag_User2DPerformance = 0x0040,
64 PP_StateClassificationFlag_3DPerformance = 0x0080,
65 PP_StateClassificationFlag_ACOverdriveTemplate = 0x0100,
66 PP_StateClassificationFlag_Uvd = 0x0200,
67 PP_StateClassificationFlag_3DPerformanceLow = 0x0400,
68 PP_StateClassificationFlag_ACPI = 0x0800,
69 PP_StateClassificationFlag_HD2 = 0x1000,
70 PP_StateClassificationFlag_UvdHD = 0x2000,
71 PP_StateClassificationFlag_UvdSD = 0x4000,
72 PP_StateClassificationFlag_UserDCPerformance = 0x8000,
73 PP_StateClassificationFlag_DCOverdriveTemplate = 0x10000,
74 PP_StateClassificationFlag_BACO = 0x20000,
75 PP_StateClassificationFlag_LimitedPowerSource_2 = 0x40000,
76 PP_StateClassificationFlag_ULV = 0x80000,
77 PP_StateClassificationFlag_UvdMVC = 0x100000,
78};
79
80typedef unsigned int PP_StateClassificationFlags;
81
82struct PP_StateClassificationBlock {
83 enum PP_StateUILabel ui_label;
84 enum PP_StateClassificationFlag flags;
85 int bios_index;
86 bool temporary_state;
87 bool to_be_deleted;
88};
89
90struct PP_StatePcieBlock {
91 unsigned int lanes;
92};
93
94enum PP_RefreshrateSource {
95 PP_RefreshrateSource_EDID,
96 PP_RefreshrateSource_Explicit
97};
98
99struct PP_StateDisplayBlock {
100 bool disableFrameModulation;
101 bool limitRefreshrate;
102 enum PP_RefreshrateSource refreshrateSource;
103 int explicitRefreshrate;
104 int edidRefreshrateIndex;
105 bool enableVariBright;
106};
107
108struct PP_StateMemroyBlock {
109 bool dllOff;
110 uint8_t m3arb;
111 uint8_t unused[3];
112};
113
114struct PP_StateSoftwareAlgorithmBlock {
115 bool disableLoadBalancing;
116 bool enableSleepForTimestamps;
117};
118
119#define PP_TEMPERATURE_UNITS_PER_CENTIGRADES 1000
120
121
122
123
124struct PP_TemperatureRange {
125 uint32_t min;
126 uint32_t max;
127};
128
129struct PP_StateValidationBlock {
130 bool singleDisplayOnly;
131 bool disallowOnDC;
132 uint8_t supportedPowerLevels;
133};
134
135struct PP_UVD_CLOCKS {
136 uint32_t VCLK;
137 uint32_t DCLK;
138};
139
140
141
142
143struct pp_power_state {
144 uint32_t id;
145 struct PP_StateLinkedList orderedList;
146 struct PP_StateLinkedList allStatesList;
147
148 struct PP_StateClassificationBlock classification;
149 struct PP_StateValidationBlock validation;
150 struct PP_StatePcieBlock pcie;
151 struct PP_StateDisplayBlock display;
152 struct PP_StateMemroyBlock memory;
153 struct PP_TemperatureRange temperatures;
154 struct PP_StateSoftwareAlgorithmBlock software;
155 struct PP_UVD_CLOCKS uvd_clocks;
156 struct pp_hw_power_state hardware;
157};
158
159enum PP_MMProfilingState {
160 PP_MMProfilingState_NA = 0,
161 PP_MMProfilingState_Started,
162 PP_MMProfilingState_Stopped
163};
164
165struct pp_clock_engine_request {
166 unsigned long client_type;
167 unsigned long ctx_id;
168 uint64_t context_handle;
169 unsigned long sclk;
170 unsigned long sclk_hard_min;
171 unsigned long mclk;
172 unsigned long iclk;
173 unsigned long evclk;
174 unsigned long ecclk;
175 unsigned long ecclk_hard_min;
176 unsigned long vclk;
177 unsigned long dclk;
178 unsigned long sclk_over_drive;
179 unsigned long mclk_over_drive;
180 unsigned long sclk_threshold;
181 unsigned long flag;
182 unsigned long vclk_ceiling;
183 unsigned long dclk_ceiling;
184 unsigned long num_cus;
185 unsigned long pm_flag;
186 enum PP_MMProfilingState mm_profiling_state;
187};
188
189#endif
190