blob: 643d008410c654ee8b871c093d10281421b60715 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 */
23#ifndef __AMDGPU_DPM_H__
24#define __AMDGPU_DPM_H__
25
Alex Deuchercf0978812016-10-07 11:40:09 -040026enum amdgpu_int_thermal_type {
27 THERMAL_TYPE_NONE,
28 THERMAL_TYPE_EXTERNAL,
29 THERMAL_TYPE_EXTERNAL_GPIO,
30 THERMAL_TYPE_RV6XX,
31 THERMAL_TYPE_RV770,
32 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
33 THERMAL_TYPE_EVERGREEN,
34 THERMAL_TYPE_SUMO,
35 THERMAL_TYPE_NI,
36 THERMAL_TYPE_SI,
37 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
38 THERMAL_TYPE_CI,
39 THERMAL_TYPE_KV,
40};
41
42enum amdgpu_dpm_auto_throttle_src {
43 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
44 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
45};
46
47enum amdgpu_dpm_event_src {
48 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
49 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
50 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
51 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
52 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
53};
54
Rex Zhu801caaf2016-11-02 13:35:15 +080055#define SCLK_DEEP_SLEEP_MASK 0x8
56
Alex Deuchercf0978812016-10-07 11:40:09 -040057struct amdgpu_ps {
58 u32 caps; /* vbios flags */
59 u32 class; /* vbios flags */
60 u32 class2; /* vbios flags */
61 /* UVD clocks */
62 u32 vclk;
63 u32 dclk;
64 /* VCE clocks */
65 u32 evclk;
66 u32 ecclk;
67 bool vce_active;
Rex Zhu0d8de7c2016-10-12 15:13:29 +080068 enum amd_vce_level vce_level;
Alex Deuchercf0978812016-10-07 11:40:09 -040069 /* asic priv */
70 void *ps_priv;
71};
72
73struct amdgpu_dpm_thermal {
74 /* thermal interrupt work */
75 struct work_struct work;
76 /* low temperature threshold */
77 int min_temp;
78 /* high temperature threshold */
79 int max_temp;
80 /* was last interrupt low to high or high to low */
81 bool high_to_low;
82 /* interrupt source */
83 struct amdgpu_irq_src irq;
84};
85
86enum amdgpu_clk_action
87{
88 AMDGPU_SCLK_UP = 1,
89 AMDGPU_SCLK_DOWN
90};
91
92struct amdgpu_blacklist_clocks
93{
94 u32 sclk;
95 u32 mclk;
96 enum amdgpu_clk_action action;
97};
98
99struct amdgpu_clock_and_voltage_limits {
100 u32 sclk;
101 u32 mclk;
102 u16 vddc;
103 u16 vddci;
104};
105
106struct amdgpu_clock_array {
107 u32 count;
108 u32 *values;
109};
110
111struct amdgpu_clock_voltage_dependency_entry {
112 u32 clk;
113 u16 v;
114};
115
116struct amdgpu_clock_voltage_dependency_table {
117 u32 count;
118 struct amdgpu_clock_voltage_dependency_entry *entries;
119};
120
121union amdgpu_cac_leakage_entry {
122 struct {
123 u16 vddc;
124 u32 leakage;
125 };
126 struct {
127 u16 vddc1;
128 u16 vddc2;
129 u16 vddc3;
130 };
131};
132
133struct amdgpu_cac_leakage_table {
134 u32 count;
135 union amdgpu_cac_leakage_entry *entries;
136};
137
138struct amdgpu_phase_shedding_limits_entry {
139 u16 voltage;
140 u32 sclk;
141 u32 mclk;
142};
143
144struct amdgpu_phase_shedding_limits_table {
145 u32 count;
146 struct amdgpu_phase_shedding_limits_entry *entries;
147};
148
149struct amdgpu_uvd_clock_voltage_dependency_entry {
150 u32 vclk;
151 u32 dclk;
152 u16 v;
153};
154
155struct amdgpu_uvd_clock_voltage_dependency_table {
156 u8 count;
157 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
158};
159
160struct amdgpu_vce_clock_voltage_dependency_entry {
161 u32 ecclk;
162 u32 evclk;
163 u16 v;
164};
165
166struct amdgpu_vce_clock_voltage_dependency_table {
167 u8 count;
168 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
169};
170
171struct amdgpu_ppm_table {
172 u8 ppm_design;
173 u16 cpu_core_number;
174 u32 platform_tdp;
175 u32 small_ac_platform_tdp;
176 u32 platform_tdc;
177 u32 small_ac_platform_tdc;
178 u32 apu_tdp;
179 u32 dgpu_tdp;
180 u32 dgpu_ulv_power;
181 u32 tj_max;
182};
183
184struct amdgpu_cac_tdp_table {
185 u16 tdp;
186 u16 configurable_tdp;
187 u16 tdc;
188 u16 battery_power_limit;
189 u16 small_power_limit;
190 u16 low_cac_leakage;
191 u16 high_cac_leakage;
192 u16 maximum_power_delivery_limit;
193};
194
195struct amdgpu_dpm_dynamic_state {
196 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
197 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
198 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
199 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
200 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
201 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
202 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
203 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
204 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
205 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
206 struct amdgpu_clock_array valid_sclk_values;
207 struct amdgpu_clock_array valid_mclk_values;
208 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
209 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
210 u32 mclk_sclk_ratio;
211 u32 sclk_mclk_delta;
212 u16 vddc_vddci_delta;
213 u16 min_vddc_for_pcie_gen2;
214 struct amdgpu_cac_leakage_table cac_leakage_table;
215 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
216 struct amdgpu_ppm_table *ppm_table;
217 struct amdgpu_cac_tdp_table *cac_tdp_table;
218};
219
220struct amdgpu_dpm_fan {
221 u16 t_min;
222 u16 t_med;
223 u16 t_high;
224 u16 pwm_min;
225 u16 pwm_med;
226 u16 pwm_high;
227 u8 t_hyst;
228 u32 cycle_delay;
229 u16 t_max;
230 u8 control_mode;
231 u16 default_max_fan_pwm;
232 u16 default_fan_output_sensitivity;
233 u16 fan_output_sensitivity;
234 bool ucode_fan_control;
235};
236
237enum amdgpu_pcie_gen {
238 AMDGPU_PCIE_GEN1 = 0,
239 AMDGPU_PCIE_GEN2 = 1,
240 AMDGPU_PCIE_GEN3 = 2,
241 AMDGPU_PCIE_GEN_INVALID = 0xffff
242};
243
Rex Zhucd4d7462017-09-06 18:43:52 +0800244#define amdgpu_dpm_pre_set_power_state(adev) \
245 ((adev)->powerplay.pp_funcs->pre_set_power_state((adev)->powerplay.pp_handle))
246
247#define amdgpu_dpm_set_power_state(adev) \
248 ((adev)->powerplay.pp_funcs->set_power_state((adev)->powerplay.pp_handle))
249
250#define amdgpu_dpm_post_set_power_state(adev) \
251 ((adev)->powerplay.pp_funcs->post_set_power_state((adev)->powerplay.pp_handle))
252
253#define amdgpu_dpm_display_configuration_changed(adev) \
254 ((adev)->powerplay.pp_funcs->display_configuration_changed((adev)->powerplay.pp_handle))
255
256#define amdgpu_dpm_print_power_state(adev, ps) \
257 ((adev)->powerplay.pp_funcs->print_power_state((adev)->powerplay.pp_handle, (ps)))
258
259#define amdgpu_dpm_vblank_too_short(adev) \
260 ((adev)->powerplay.pp_funcs->vblank_too_short((adev)->powerplay.pp_handle))
261
262#define amdgpu_dpm_enable_bapm(adev, e) \
263 ((adev)->powerplay.pp_funcs->enable_bapm((adev)->powerplay.pp_handle, (e)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400264
Tom St Denis9f8df7d2017-02-09 14:29:01 -0500265#define amdgpu_dpm_read_sensor(adev, idx, value, size) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800266 ((adev)->powerplay.pp_funcs->read_sensor((adev)->powerplay.pp_handle, (idx), (value), (size)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400267
Alex Deuchercf0978812016-10-07 11:40:09 -0400268#define amdgpu_dpm_set_fan_control_mode(adev, m) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800269 ((adev)->powerplay.pp_funcs->set_fan_control_mode((adev)->powerplay.pp_handle, (m)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400270
271#define amdgpu_dpm_get_fan_control_mode(adev) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800272 ((adev)->powerplay.pp_funcs->get_fan_control_mode((adev)->powerplay.pp_handle))
Alex Deuchercf0978812016-10-07 11:40:09 -0400273
274#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800275 ((adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400276
277#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800278 ((adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400279
Grazvydas Ignotas81c15142016-10-29 23:28:59 +0300280#define amdgpu_dpm_get_fan_speed_rpm(adev, s) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800281 ((adev)->powerplay.pp_funcs->get_fan_speed_rpm)((adev)->powerplay.pp_handle, (s))
Grazvydas Ignotas81c15142016-10-29 23:28:59 +0300282
Alex Deuchercf0978812016-10-07 11:40:09 -0400283#define amdgpu_dpm_get_sclk(adev, l) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800284 ((adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400285
286#define amdgpu_dpm_get_mclk(adev, l) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800287 ((adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400288
289#define amdgpu_dpm_force_performance_level(adev, l) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800290 ((adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400291
292#define amdgpu_dpm_powergate_uvd(adev, g) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800293 ((adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400294
295#define amdgpu_dpm_powergate_vce(adev, g) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800296 ((adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400297
298#define amdgpu_dpm_get_current_power_state(adev) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800299 ((adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle))
Alex Deuchercf0978812016-10-07 11:40:09 -0400300
Alex Deuchercf0978812016-10-07 11:40:09 -0400301#define amdgpu_dpm_get_pp_num_states(adev, data) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800302 ((adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data))
Alex Deuchercf0978812016-10-07 11:40:09 -0400303
304#define amdgpu_dpm_get_pp_table(adev, table) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800305 ((adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table))
Alex Deuchercf0978812016-10-07 11:40:09 -0400306
307#define amdgpu_dpm_set_pp_table(adev, buf, size) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800308 ((adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size))
Alex Deuchercf0978812016-10-07 11:40:09 -0400309
310#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800311 ((adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf))
Alex Deuchercf0978812016-10-07 11:40:09 -0400312
313#define amdgpu_dpm_force_clock_level(adev, type, level) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800314 ((adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level))
Alex Deuchercf0978812016-10-07 11:40:09 -0400315
316#define amdgpu_dpm_get_sclk_od(adev) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800317 ((adev)->powerplay.pp_funcs->get_sclk_od((adev)->powerplay.pp_handle))
Alex Deuchercf0978812016-10-07 11:40:09 -0400318
319#define amdgpu_dpm_set_sclk_od(adev, value) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800320 ((adev)->powerplay.pp_funcs->set_sclk_od((adev)->powerplay.pp_handle, value))
Alex Deuchercf0978812016-10-07 11:40:09 -0400321
322#define amdgpu_dpm_get_mclk_od(adev) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800323 ((adev)->powerplay.pp_funcs->get_mclk_od((adev)->powerplay.pp_handle))
Alex Deuchercf0978812016-10-07 11:40:09 -0400324
325#define amdgpu_dpm_set_mclk_od(adev, value) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800326 ((adev)->powerplay.pp_funcs->set_mclk_od((adev)->powerplay.pp_handle, value))
Alex Deuchercf0978812016-10-07 11:40:09 -0400327
Evan Quan39199b82017-12-29 14:46:13 +0800328#define amdgpu_dpm_dispatch_task(adev, task_id, user_state) \
329 ((adev)->powerplay.pp_funcs->dispatch_tasks)((adev)->powerplay.pp_handle, (task_id), (user_state))
Alex Deuchercf0978812016-10-07 11:40:09 -0400330
Rex Zhucd4d7462017-09-06 18:43:52 +0800331#define amdgpu_dpm_check_state_equal(adev, cps, rps, equal) \
332 ((adev)->powerplay.pp_funcs->check_state_equal((adev)->powerplay.pp_handle, (cps), (rps), (equal)))
Rex Zhufbebf2c2016-10-17 13:49:27 +0800333
Alex Deucher230cf1b2016-10-07 14:10:15 -0400334#define amdgpu_dpm_get_vce_clock_state(adev, i) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800335 ((adev)->powerplay.pp_funcs->get_vce_clock_state((adev)->powerplay.pp_handle, (i)))
Alex Deuchercf0978812016-10-07 11:40:09 -0400336
Rex Zhucd4d7462017-09-06 18:43:52 +0800337#define amdgpu_dpm_get_performance_level(adev) \
338 ((adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle))
Rex Zhue5d03ac2016-12-23 14:39:41 +0800339
Eric Huang34bb2732016-09-12 16:17:44 -0400340#define amdgpu_dpm_reset_power_profile_state(adev, request) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800341 ((adev)->powerplay.pp_funcs->reset_power_profile_state(\
Eric Huang34bb2732016-09-12 16:17:44 -0400342 (adev)->powerplay.pp_handle, request))
343
Rex Zhu052fe962018-03-02 20:09:11 +0800344#define amdgpu_dpm_switch_power_profile(adev, type, en) \
Rex Zhucd4d7462017-09-06 18:43:52 +0800345 ((adev)->powerplay.pp_funcs->switch_power_profile(\
Rex Zhu052fe962018-03-02 20:09:11 +0800346 (adev)->powerplay.pp_handle, type, en))
Eric Huang34bb2732016-09-12 16:17:44 -0400347
Rex Zhu3811f8f2017-09-26 13:39:38 +0800348#define amdgpu_dpm_set_clockgating_by_smu(adev, msg_id) \
349 ((adev)->powerplay.pp_funcs->set_clockgating_by_smu(\
350 (adev)->powerplay.pp_handle, msg_id))
351
Rex Zhud6689422017-09-15 18:34:42 +0800352#define amdgpu_dpm_notify_smu_memory_info(adev, virtual_addr_low, \
353 virtual_addr_hi, mc_addr_low, mc_addr_hi, size) \
354 ((adev)->powerplay.pp_funcs->notify_smu_memory_info)( \
355 (adev)->powerplay.pp_handle, virtual_addr_low, \
356 virtual_addr_hi, mc_addr_low, mc_addr_hi, size)
357
Rex Zhu37c5c4d2018-01-10 18:42:36 +0800358#define amdgpu_dpm_get_power_profile_mode(adev, buf) \
359 ((adev)->powerplay.pp_funcs->get_power_profile_mode(\
360 (adev)->powerplay.pp_handle, buf))
361
362#define amdgpu_dpm_set_power_profile_mode(adev, parameter, size) \
363 ((adev)->powerplay.pp_funcs->set_power_profile_mode(\
364 (adev)->powerplay.pp_handle, parameter, size))
365
Rex Zhue3933f22018-01-16 18:35:15 +0800366#define amdgpu_dpm_odn_edit_dpm_table(adev, type, parameter, size) \
367 ((adev)->powerplay.pp_funcs->odn_edit_dpm_table(\
368 (adev)->powerplay.pp_handle, type, parameter, size))
369
Eric Huang913fa7a2018-02-06 16:19:24 -0500370#define amdgpu_dpm_set_mmhub_powergating_by_smu(adev) \
371 ((adev)->powerplay.pp_funcs->set_mmhub_powergating_by_smu( \
372 (adev)->powerplay.pp_handle))
373
Alex Deuchercf0978812016-10-07 11:40:09 -0400374struct amdgpu_dpm {
375 struct amdgpu_ps *ps;
376 /* number of valid power states */
377 int num_ps;
378 /* current power state that is active */
379 struct amdgpu_ps *current_ps;
380 /* requested power state */
381 struct amdgpu_ps *requested_ps;
382 /* boot up power state */
383 struct amdgpu_ps *boot_ps;
384 /* default uvd power state */
385 struct amdgpu_ps *uvd_ps;
386 /* vce requirements */
Rex Zhu66ba1af2016-10-12 15:38:56 +0800387 u32 num_of_vce_states;
Rex Zhu0d8de7c2016-10-12 15:13:29 +0800388 struct amd_vce_state vce_states[AMD_MAX_VCE_LEVELS];
389 enum amd_vce_level vce_level;
Alex Deuchercf0978812016-10-07 11:40:09 -0400390 enum amd_pm_state_type state;
391 enum amd_pm_state_type user_state;
Rex Zhu86f8c592016-10-03 20:46:36 +0800392 enum amd_pm_state_type last_state;
393 enum amd_pm_state_type last_user_state;
Alex Deuchercf0978812016-10-07 11:40:09 -0400394 u32 platform_caps;
395 u32 voltage_response_time;
396 u32 backbias_response_time;
397 void *priv;
398 u32 new_active_crtcs;
399 int new_active_crtc_count;
400 u32 current_active_crtcs;
401 int current_active_crtc_count;
402 struct amdgpu_dpm_dynamic_state dyn_state;
403 struct amdgpu_dpm_fan fan;
404 u32 tdp_limit;
405 u32 near_tdp_limit;
406 u32 near_tdp_limit_adjusted;
407 u32 sq_ramping_threshold;
408 u32 cac_leakage;
409 u16 tdp_od_limit;
410 u32 tdp_adjustment;
411 u16 load_line_slope;
412 bool power_control;
413 bool ac_power;
414 /* special states active */
415 bool thermal_active;
416 bool uvd_active;
417 bool vce_active;
418 /* thermal handling */
419 struct amdgpu_dpm_thermal thermal;
420 /* forced levels */
Rex Zhue5d03ac2016-12-23 14:39:41 +0800421 enum amd_dpm_forced_level forced_level;
Alex Deuchercf0978812016-10-07 11:40:09 -0400422};
423
424struct amdgpu_pm {
425 struct mutex mutex;
426 u32 current_sclk;
427 u32 current_mclk;
428 u32 default_sclk;
429 u32 default_mclk;
430 struct amdgpu_i2c_chan *i2c_bus;
431 /* internal thermal controller on rv6xx+ */
432 enum amdgpu_int_thermal_type int_thermal_type;
433 struct device *int_hwmon_dev;
434 /* fan control parameters */
435 bool no_fan;
436 u8 fan_pulses_per_revolution;
437 u8 fan_min_rpm;
438 u8 fan_max_rpm;
439 /* dpm */
440 bool dpm_enabled;
441 bool sysfs_initialized;
442 struct amdgpu_dpm dpm;
443 const struct firmware *fw; /* SMC firmware */
444 uint32_t fw_version;
Alex Deuchercf0978812016-10-07 11:40:09 -0400445 uint32_t pcie_gen_mask;
446 uint32_t pcie_mlw_mask;
Harry Wentland45622362017-09-12 15:58:20 -0400447 struct amd_pp_display_configuration pm_display_cfg;/* set by dc */
Alex Deuchercf0978812016-10-07 11:40:09 -0400448};
449
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400450#define R600_SSTU_DFLT 0
451#define R600_SST_DFLT 0x00C8
452
453/* XXX are these ok? */
454#define R600_TEMP_RANGE_MIN (90 * 1000)
455#define R600_TEMP_RANGE_MAX (120 * 1000)
456
457#define FDO_PWM_MODE_STATIC 1
458#define FDO_PWM_MODE_STATIC_RPM 5
459
460enum amdgpu_td {
461 AMDGPU_TD_AUTO,
462 AMDGPU_TD_UP,
463 AMDGPU_TD_DOWN,
464};
465
466enum amdgpu_display_watermark {
467 AMDGPU_DISPLAY_WATERMARK_LOW = 0,
468 AMDGPU_DISPLAY_WATERMARK_HIGH = 1,
469};
470
471enum amdgpu_display_gap
472{
473 AMDGPU_PM_DISPLAY_GAP_VBLANK_OR_WM = 0,
474 AMDGPU_PM_DISPLAY_GAP_VBLANK = 1,
475 AMDGPU_PM_DISPLAY_GAP_WATERMARK = 2,
476 AMDGPU_PM_DISPLAY_GAP_IGNORE = 3,
477};
478
479void amdgpu_dpm_print_class_info(u32 class, u32 class2);
480void amdgpu_dpm_print_cap_info(u32 caps);
481void amdgpu_dpm_print_ps_status(struct amdgpu_device *adev,
482 struct amdgpu_ps *rps);
483u32 amdgpu_dpm_get_vblank_time(struct amdgpu_device *adev);
484u32 amdgpu_dpm_get_vrefresh(struct amdgpu_device *adev);
485bool amdgpu_is_uvd_state(u32 class, u32 class2);
486void amdgpu_calculate_u_and_p(u32 i, u32 r_c, u32 p_b,
487 u32 *p, u32 *u);
488int amdgpu_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
489
490bool amdgpu_is_internal_thermal_sensor(enum amdgpu_int_thermal_type sensor);
491
492int amdgpu_get_platform_caps(struct amdgpu_device *adev);
493
494int amdgpu_parse_extended_power_table(struct amdgpu_device *adev);
495void amdgpu_free_extended_power_table(struct amdgpu_device *adev);
496
497void amdgpu_add_thermal_controller(struct amdgpu_device *adev);
498
499enum amdgpu_pcie_gen amdgpu_get_pcie_gen_support(struct amdgpu_device *adev,
500 u32 sys_mask,
501 enum amdgpu_pcie_gen asic_gen,
502 enum amdgpu_pcie_gen default_gen);
503
504u16 amdgpu_get_pcie_lane_support(struct amdgpu_device *adev,
505 u16 asic_lanes,
506 u16 default_lanes);
507u8 amdgpu_encode_pci_lane_width(u32 lanes);
508
Alex Deucher825cc992016-10-07 12:38:04 -0400509struct amd_vce_state*
Rex Zhucfa289f2017-09-06 15:27:59 +0800510amdgpu_get_vce_clock_state(void *handle, u32 idx);
Alex Deucher825cc992016-10-07 12:38:04 -0400511
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512#endif