]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
02d33b50e735281540168318560a02d29e592e8f
[linux.git] / drivers / gpu / drm / amd / powerplay / inc / amdgpu_smu.h
1 /*
2  * Copyright 2019 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 #ifndef __AMDGPU_SMU_H__
23 #define __AMDGPU_SMU_H__
24
25 #include "amdgpu.h"
26 #include "kgd_pp_interface.h"
27 #include "dm_pp_interface.h"
28 #include "dm_pp_smu.h"
29 #include "smu_types.h"
30
31 #define SMU_THERMAL_MINIMUM_ALERT_TEMP          0
32 #define SMU_THERMAL_MAXIMUM_ALERT_TEMP          255
33 #define SMU_TEMPERATURE_UNITS_PER_CENTIGRADES   1000
34
35 struct smu_hw_power_state {
36         unsigned int magic;
37 };
38
39 struct smu_power_state;
40
41 enum smu_state_ui_label {
42         SMU_STATE_UI_LABEL_NONE,
43         SMU_STATE_UI_LABEL_BATTERY,
44         SMU_STATE_UI_TABEL_MIDDLE_LOW,
45         SMU_STATE_UI_LABEL_BALLANCED,
46         SMU_STATE_UI_LABEL_MIDDLE_HIGHT,
47         SMU_STATE_UI_LABEL_PERFORMANCE,
48         SMU_STATE_UI_LABEL_BACO,
49 };
50
51 enum smu_state_classification_flag {
52         SMU_STATE_CLASSIFICATION_FLAG_BOOT                     = 0x0001,
53         SMU_STATE_CLASSIFICATION_FLAG_THERMAL                  = 0x0002,
54         SMU_STATE_CLASSIFICATIN_FLAG_LIMITED_POWER_SOURCE      = 0x0004,
55         SMU_STATE_CLASSIFICATION_FLAG_RESET                    = 0x0008,
56         SMU_STATE_CLASSIFICATION_FLAG_FORCED                   = 0x0010,
57         SMU_STATE_CLASSIFICATION_FLAG_USER_3D_PERFORMANCE      = 0x0020,
58         SMU_STATE_CLASSIFICATION_FLAG_USER_2D_PERFORMANCE      = 0x0040,
59         SMU_STATE_CLASSIFICATION_FLAG_3D_PERFORMANCE           = 0x0080,
60         SMU_STATE_CLASSIFICATION_FLAG_AC_OVERDIRVER_TEMPLATE   = 0x0100,
61         SMU_STATE_CLASSIFICATION_FLAG_UVD                      = 0x0200,
62         SMU_STATE_CLASSIFICATION_FLAG_3D_PERFORMANCE_LOW       = 0x0400,
63         SMU_STATE_CLASSIFICATION_FLAG_ACPI                     = 0x0800,
64         SMU_STATE_CLASSIFICATION_FLAG_HD2                      = 0x1000,
65         SMU_STATE_CLASSIFICATION_FLAG_UVD_HD                   = 0x2000,
66         SMU_STATE_CLASSIFICATION_FLAG_UVD_SD                   = 0x4000,
67         SMU_STATE_CLASSIFICATION_FLAG_USER_DC_PERFORMANCE      = 0x8000,
68         SMU_STATE_CLASSIFICATION_FLAG_DC_OVERDIRVER_TEMPLATE   = 0x10000,
69         SMU_STATE_CLASSIFICATION_FLAG_BACO                     = 0x20000,
70         SMU_STATE_CLASSIFICATIN_FLAG_LIMITED_POWER_SOURCE2      = 0x40000,
71         SMU_STATE_CLASSIFICATION_FLAG_ULV                      = 0x80000,
72         SMU_STATE_CLASSIFICATION_FLAG_UVD_MVC                  = 0x100000,
73 };
74
75 struct smu_state_classification_block {
76         enum smu_state_ui_label         ui_label;
77         enum smu_state_classification_flag  flags;
78         int                          bios_index;
79         bool                      temporary_state;
80         bool                      to_be_deleted;
81 };
82
83 struct smu_state_pcie_block {
84         unsigned int lanes;
85 };
86
87 enum smu_refreshrate_source {
88         SMU_REFRESHRATE_SOURCE_EDID,
89         SMU_REFRESHRATE_SOURCE_EXPLICIT
90 };
91
92 struct smu_state_display_block {
93         bool              disable_frame_modulation;
94         bool              limit_refreshrate;
95         enum smu_refreshrate_source refreshrate_source;
96         int                  explicit_refreshrate;
97         int                  edid_refreshrate_index;
98         bool              enable_vari_bright;
99 };
100
101 struct smu_state_memroy_block {
102         bool              dll_off;
103         uint8_t                 m3arb;
104         uint8_t                 unused[3];
105 };
106
107 struct smu_state_software_algorithm_block {
108         bool disable_load_balancing;
109         bool enable_sleep_for_timestamps;
110 };
111
112 struct smu_temperature_range {
113         int min;
114         int max;
115         int edge_emergency_max;
116         int hotspot_min;
117         int hotspot_crit_max;
118         int hotspot_emergency_max;
119         int mem_min;
120         int mem_crit_max;
121         int mem_emergency_max;
122 };
123
124 struct smu_state_validation_block {
125         bool single_display_only;
126         bool disallow_on_dc;
127         uint8_t supported_power_levels;
128 };
129
130 struct smu_uvd_clocks {
131         uint32_t vclk;
132         uint32_t dclk;
133 };
134
135 /**
136 * Structure to hold a SMU Power State.
137 */
138 struct smu_power_state {
139         uint32_t                                      id;
140         struct list_head                              ordered_list;
141         struct list_head                              all_states_list;
142
143         struct smu_state_classification_block         classification;
144         struct smu_state_validation_block             validation;
145         struct smu_state_pcie_block                   pcie;
146         struct smu_state_display_block                display;
147         struct smu_state_memroy_block                 memory;
148         struct smu_temperature_range                  temperatures;
149         struct smu_state_software_algorithm_block     software;
150         struct smu_uvd_clocks                         uvd_clocks;
151         struct smu_hw_power_state                     hardware;
152 };
153
154 enum smu_power_src_type
155 {
156         SMU_POWER_SOURCE_AC,
157         SMU_POWER_SOURCE_DC,
158         SMU_POWER_SOURCE_COUNT,
159 };
160
161 enum smu_memory_pool_size
162 {
163     SMU_MEMORY_POOL_SIZE_ZERO   = 0,
164     SMU_MEMORY_POOL_SIZE_256_MB = 0x10000000,
165     SMU_MEMORY_POOL_SIZE_512_MB = 0x20000000,
166     SMU_MEMORY_POOL_SIZE_1_GB   = 0x40000000,
167     SMU_MEMORY_POOL_SIZE_2_GB   = 0x80000000,
168 };
169
170 #define SMU_TABLE_INIT(tables, table_id, s, a, d)       \
171         do {                                            \
172                 tables[table_id].size = s;              \
173                 tables[table_id].align = a;             \
174                 tables[table_id].domain = d;            \
175         } while (0)
176
177 struct smu_table {
178         uint64_t size;
179         uint32_t align;
180         uint8_t domain;
181         uint64_t mc_address;
182         void *cpu_addr;
183         struct amdgpu_bo *bo;
184 };
185
186 enum smu_perf_level_designation {
187         PERF_LEVEL_ACTIVITY,
188         PERF_LEVEL_POWER_CONTAINMENT,
189 };
190
191 struct smu_performance_level {
192         uint32_t core_clock;
193         uint32_t memory_clock;
194         uint32_t vddc;
195         uint32_t vddci;
196         uint32_t non_local_mem_freq;
197         uint32_t non_local_mem_width;
198 };
199
200 struct smu_clock_info {
201         uint32_t min_mem_clk;
202         uint32_t max_mem_clk;
203         uint32_t min_eng_clk;
204         uint32_t max_eng_clk;
205         uint32_t min_bus_bandwidth;
206         uint32_t max_bus_bandwidth;
207 };
208
209 struct smu_bios_boot_up_values
210 {
211         uint32_t                        revision;
212         uint32_t                        gfxclk;
213         uint32_t                        uclk;
214         uint32_t                        socclk;
215         uint32_t                        dcefclk;
216         uint32_t                        eclk;
217         uint32_t                        vclk;
218         uint32_t                        dclk;
219         uint16_t                        vddc;
220         uint16_t                        vddci;
221         uint16_t                        mvddc;
222         uint16_t                        vdd_gfx;
223         uint8_t                         cooling_id;
224         uint32_t                        pp_table_id;
225         uint32_t                        format_revision;
226         uint32_t                        content_revision;
227         uint32_t                        fclk;
228 };
229
230 enum smu_table_id
231 {
232         SMU_TABLE_PPTABLE = 0,
233         SMU_TABLE_WATERMARKS,
234         SMU_TABLE_CUSTOM_DPM,
235         SMU_TABLE_DPMCLOCKS,
236         SMU_TABLE_AVFS,
237         SMU_TABLE_AVFS_PSM_DEBUG,
238         SMU_TABLE_AVFS_FUSE_OVERRIDE,
239         SMU_TABLE_PMSTATUSLOG,
240         SMU_TABLE_SMU_METRICS,
241         SMU_TABLE_DRIVER_SMU_CONFIG,
242         SMU_TABLE_ACTIVITY_MONITOR_COEFF,
243         SMU_TABLE_OVERDRIVE,
244         SMU_TABLE_I2C_COMMANDS,
245         SMU_TABLE_PACE,
246         SMU_TABLE_COUNT,
247 };
248
249 struct smu_table_context
250 {
251         void                            *power_play_table;
252         uint32_t                        power_play_table_size;
253         void                            *hardcode_pptable;
254         unsigned long                   metrics_time;
255         void                            *metrics_table;
256         void                            *clocks_table;
257         void                            *watermarks_table;
258
259         void                            *max_sustainable_clocks;
260         struct smu_bios_boot_up_values  boot_values;
261         void                            *driver_pptable;
262         struct smu_table                *tables;
263         struct smu_table                memory_pool;
264         uint8_t                         thermal_controller_type;
265
266         void                            *overdrive_table;
267 };
268
269 struct smu_dpm_context {
270         uint32_t dpm_context_size;
271         void *dpm_context;
272         void *golden_dpm_context;
273         bool enable_umd_pstate;
274         enum amd_dpm_forced_level dpm_level;
275         enum amd_dpm_forced_level saved_dpm_level;
276         enum amd_dpm_forced_level requested_dpm_level;
277         struct smu_power_state *dpm_request_power_state;
278         struct smu_power_state *dpm_current_power_state;
279         struct mclock_latency_table *mclk_latency_table;
280 };
281
282 struct smu_power_gate {
283         bool uvd_gated;
284         bool vce_gated;
285         bool vcn_gated;
286         bool jpeg_gated;
287 };
288
289 struct smu_power_context {
290         void *power_context;
291         uint32_t power_context_size;
292         struct smu_power_gate power_gate;
293 };
294
295
296 #define SMU_FEATURE_MAX (64)
297 struct smu_feature
298 {
299         uint32_t feature_num;
300         DECLARE_BITMAP(supported, SMU_FEATURE_MAX);
301         DECLARE_BITMAP(allowed, SMU_FEATURE_MAX);
302         DECLARE_BITMAP(enabled, SMU_FEATURE_MAX);
303         struct mutex mutex;
304 };
305
306 struct smu_clocks {
307         uint32_t engine_clock;
308         uint32_t memory_clock;
309         uint32_t bus_bandwidth;
310         uint32_t engine_clock_in_sr;
311         uint32_t dcef_clock;
312         uint32_t dcef_clock_in_sr;
313 };
314
315 #define MAX_REGULAR_DPM_NUM 16
316 struct mclk_latency_entries {
317         uint32_t  frequency;
318         uint32_t  latency;
319 };
320 struct mclock_latency_table {
321         uint32_t  count;
322         struct mclk_latency_entries  entries[MAX_REGULAR_DPM_NUM];
323 };
324
325 enum smu_reset_mode
326 {
327     SMU_RESET_MODE_0,
328     SMU_RESET_MODE_1,
329     SMU_RESET_MODE_2,
330 };
331
332 enum smu_baco_state
333 {
334         SMU_BACO_STATE_ENTER = 0,
335         SMU_BACO_STATE_EXIT,
336 };
337
338 struct smu_baco_context
339 {
340         struct mutex mutex;
341         uint32_t state;
342         bool platform_support;
343 };
344
345 #define WORKLOAD_POLICY_MAX 7
346 struct smu_context
347 {
348         struct amdgpu_device            *adev;
349         struct amdgpu_irq_src           *irq_source;
350
351         const struct pptable_funcs      *ppt_funcs;
352         struct mutex                    mutex;
353         struct mutex                    sensor_lock;
354         struct mutex                    metrics_lock;
355         uint64_t pool_size;
356
357         struct smu_table_context        smu_table;
358         struct smu_dpm_context          smu_dpm;
359         struct smu_power_context        smu_power;
360         struct smu_feature              smu_feature;
361         struct amd_pp_display_configuration  *display_config;
362         struct smu_baco_context         smu_baco;
363         void *od_settings;
364
365         uint32_t pstate_sclk;
366         uint32_t pstate_mclk;
367
368         bool od_enabled;
369         uint32_t power_limit;
370         uint32_t default_power_limit;
371
372         /* soft pptable */
373         uint32_t ppt_offset_bytes;
374         uint32_t ppt_size_bytes;
375         uint8_t  *ppt_start_addr;
376
377         bool support_power_containment;
378         bool disable_watermark;
379
380 #define WATERMARKS_EXIST        (1 << 0)
381 #define WATERMARKS_LOADED       (1 << 1)
382         uint32_t watermarks_bitmap;
383         uint32_t hard_min_uclk_req_from_dal;
384         bool disable_uclk_switch;
385
386         uint32_t workload_mask;
387         uint32_t workload_prority[WORKLOAD_POLICY_MAX];
388         uint32_t workload_setting[WORKLOAD_POLICY_MAX];
389         uint32_t power_profile_mode;
390         uint32_t default_power_profile_mode;
391         bool pm_enabled;
392         bool is_apu;
393
394         uint32_t smc_if_version;
395
396         bool uploading_custom_pp_table;
397 };
398
399 struct i2c_adapter;
400
401 struct pptable_funcs {
402         int (*alloc_dpm_context)(struct smu_context *smu);
403         int (*store_powerplay_table)(struct smu_context *smu);
404         int (*check_powerplay_table)(struct smu_context *smu);
405         int (*append_powerplay_table)(struct smu_context *smu);
406         int (*get_smu_msg_index)(struct smu_context *smu, uint32_t index);
407         int (*get_smu_clk_index)(struct smu_context *smu, uint32_t index);
408         int (*get_smu_feature_index)(struct smu_context *smu, uint32_t index);
409         int (*get_smu_table_index)(struct smu_context *smu, uint32_t index);
410         int (*get_smu_power_index)(struct smu_context *smu, uint32_t index);
411         int (*get_workload_type)(struct smu_context *smu, enum PP_SMC_POWER_PROFILE profile);
412         int (*run_btc)(struct smu_context *smu);
413         int (*get_allowed_feature_mask)(struct smu_context *smu, uint32_t *feature_mask, uint32_t num);
414         enum amd_pm_state_type (*get_current_power_state)(struct smu_context *smu);
415         int (*set_default_dpm_table)(struct smu_context *smu);
416         int (*set_power_state)(struct smu_context *smu);
417         int (*populate_umd_state_clk)(struct smu_context *smu);
418         int (*print_clk_levels)(struct smu_context *smu, enum smu_clk_type clk_type, char *buf);
419         int (*force_clk_levels)(struct smu_context *smu, enum smu_clk_type clk_type, uint32_t mask);
420         int (*set_default_od8_settings)(struct smu_context *smu);
421         int (*get_od_percentage)(struct smu_context *smu, enum smu_clk_type clk_type);
422         int (*set_od_percentage)(struct smu_context *smu,
423                                  enum smu_clk_type clk_type,
424                                  uint32_t value);
425         int (*od_edit_dpm_table)(struct smu_context *smu,
426                                  enum PP_OD_DPM_TABLE_COMMAND type,
427                                  long *input, uint32_t size);
428         int (*get_clock_by_type_with_latency)(struct smu_context *smu,
429                                               enum smu_clk_type clk_type,
430                                               struct
431                                               pp_clock_levels_with_latency
432                                               *clocks);
433         int (*get_clock_by_type_with_voltage)(struct smu_context *smu,
434                                               enum amd_pp_clock_type type,
435                                               struct
436                                               pp_clock_levels_with_voltage
437                                               *clocks);
438         int (*get_power_profile_mode)(struct smu_context *smu, char *buf);
439         int (*set_power_profile_mode)(struct smu_context *smu, long *input, uint32_t size);
440         int (*dpm_set_uvd_enable)(struct smu_context *smu, bool enable);
441         int (*dpm_set_vce_enable)(struct smu_context *smu, bool enable);
442         int (*dpm_set_jpeg_enable)(struct smu_context *smu, bool enable);
443         int (*read_sensor)(struct smu_context *smu, enum amd_pp_sensors sensor,
444                            void *data, uint32_t *size);
445         int (*pre_display_config_changed)(struct smu_context *smu);
446         int (*display_config_changed)(struct smu_context *smu);
447         int (*apply_clocks_adjust_rules)(struct smu_context *smu);
448         int (*notify_smc_display_config)(struct smu_context *smu);
449         int (*force_dpm_limit_value)(struct smu_context *smu, bool highest);
450         int (*unforce_dpm_levels)(struct smu_context *smu);
451         int (*get_profiling_clk_mask)(struct smu_context *smu,
452                                       enum amd_dpm_forced_level level,
453                                       uint32_t *sclk_mask,
454                                       uint32_t *mclk_mask,
455                                       uint32_t *soc_mask);
456         int (*set_cpu_power_state)(struct smu_context *smu);
457         bool (*is_dpm_running)(struct smu_context *smu);
458         int (*tables_init)(struct smu_context *smu, struct smu_table *tables);
459         int (*set_thermal_fan_table)(struct smu_context *smu);
460         int (*get_fan_speed_percent)(struct smu_context *smu, uint32_t *speed);
461         int (*get_fan_speed_rpm)(struct smu_context *smu, uint32_t *speed);
462         int (*set_watermarks_table)(struct smu_context *smu, void *watermarks,
463                                     struct dm_pp_wm_sets_with_clock_ranges_soc15 *clock_ranges);
464         int (*get_current_clk_freq_by_table)(struct smu_context *smu,
465                                              enum smu_clk_type clk_type,
466                                              uint32_t *value);
467         int (*get_thermal_temperature_range)(struct smu_context *smu, struct smu_temperature_range *range);
468         int (*get_uclk_dpm_states)(struct smu_context *smu, uint32_t *clocks_in_khz, uint32_t *num_states);
469         int (*set_default_od_settings)(struct smu_context *smu, bool initialize);
470         int (*set_performance_level)(struct smu_context *smu, enum amd_dpm_forced_level level);
471         int (*display_disable_memory_clock_switch)(struct smu_context *smu, bool disable_memory_clock_switch);
472         void (*dump_pptable)(struct smu_context *smu);
473         int (*get_power_limit)(struct smu_context *smu, uint32_t *limit, bool asic_default);
474         int (*get_dpm_clk_limited)(struct smu_context *smu, enum smu_clk_type clk_type,
475                                    uint32_t dpm_level, uint32_t *freq);
476         int (*set_df_cstate)(struct smu_context *smu, enum pp_df_cstate state);
477         int (*update_pcie_parameters)(struct smu_context *smu, uint32_t pcie_gen_cap, uint32_t pcie_width_cap);
478         int (*i2c_eeprom_init)(struct i2c_adapter *control);
479         void (*i2c_eeprom_fini)(struct i2c_adapter *control);
480         int (*get_dpm_clock_table)(struct smu_context *smu, struct dpm_clocks *clock_table);
481         int (*init_microcode)(struct smu_context *smu);
482         int (*load_microcode)(struct smu_context *smu);
483         int (*init_smc_tables)(struct smu_context *smu);
484         int (*fini_smc_tables)(struct smu_context *smu);
485         int (*init_power)(struct smu_context *smu);
486         int (*fini_power)(struct smu_context *smu);
487         int (*check_fw_status)(struct smu_context *smu);
488         int (*setup_pptable)(struct smu_context *smu);
489         int (*get_vbios_bootup_values)(struct smu_context *smu);
490         int (*get_clk_info_from_vbios)(struct smu_context *smu);
491         int (*check_pptable)(struct smu_context *smu);
492         int (*parse_pptable)(struct smu_context *smu);
493         int (*populate_smc_tables)(struct smu_context *smu);
494         int (*check_fw_version)(struct smu_context *smu);
495         int (*powergate_sdma)(struct smu_context *smu, bool gate);
496         int (*powergate_vcn)(struct smu_context *smu, bool gate);
497         int (*powergate_jpeg)(struct smu_context *smu, bool gate);
498         int (*set_gfx_cgpg)(struct smu_context *smu, bool enable);
499         int (*write_pptable)(struct smu_context *smu);
500         int (*set_min_dcef_deep_sleep)(struct smu_context *smu);
501         int (*set_tool_table_location)(struct smu_context *smu);
502         int (*notify_memory_pool_location)(struct smu_context *smu);
503         int (*set_last_dcef_min_deep_sleep_clk)(struct smu_context *smu);
504         int (*system_features_control)(struct smu_context *smu, bool en);
505         int (*send_smc_msg_with_param)(struct smu_context *smu,
506                                        enum smu_message_type msg, uint32_t param);
507         int (*read_smc_arg)(struct smu_context *smu, uint32_t *arg);
508         int (*init_display_count)(struct smu_context *smu, uint32_t count);
509         int (*set_allowed_mask)(struct smu_context *smu);
510         int (*get_enabled_mask)(struct smu_context *smu, uint32_t *feature_mask, uint32_t num);
511         int (*notify_display_change)(struct smu_context *smu);
512         int (*set_power_limit)(struct smu_context *smu, uint32_t n);
513         int (*get_current_clk_freq)(struct smu_context *smu, enum smu_clk_type clk_id, uint32_t *value);
514         int (*init_max_sustainable_clocks)(struct smu_context *smu);
515         int (*start_thermal_control)(struct smu_context *smu);
516         int (*stop_thermal_control)(struct smu_context *smu);
517         int (*set_deep_sleep_dcefclk)(struct smu_context *smu, uint32_t clk);
518         int (*set_active_display_count)(struct smu_context *smu, uint32_t count);
519         int (*store_cc6_data)(struct smu_context *smu, uint32_t separation_time,
520                               bool cc6_disable, bool pstate_disable,
521                               bool pstate_switch_disable);
522         int (*get_clock_by_type)(struct smu_context *smu,
523                                  enum amd_pp_clock_type type,
524                                  struct amd_pp_clocks *clocks);
525         int (*get_max_high_clocks)(struct smu_context *smu,
526                                    struct amd_pp_simple_clock_info *clocks);
527         int (*display_clock_voltage_request)(struct smu_context *smu, struct
528                                              pp_display_clock_request
529                                              *clock_req);
530         int (*get_dal_power_level)(struct smu_context *smu,
531                                    struct amd_pp_simple_clock_info *clocks);
532         int (*get_perf_level)(struct smu_context *smu,
533                               enum smu_perf_level_designation designation,
534                               struct smu_performance_level *level);
535         int (*get_current_shallow_sleep_clocks)(struct smu_context *smu,
536                                                 struct smu_clock_info *clocks);
537         int (*notify_smu_enable_pwe)(struct smu_context *smu);
538         int (*conv_power_profile_to_pplib_workload)(int power_profile);
539         uint32_t (*get_fan_control_mode)(struct smu_context *smu);
540         int (*set_fan_control_mode)(struct smu_context *smu, uint32_t mode);
541         int (*set_fan_speed_percent)(struct smu_context *smu, uint32_t speed);
542         int (*set_fan_speed_rpm)(struct smu_context *smu, uint32_t speed);
543         int (*set_xgmi_pstate)(struct smu_context *smu, uint32_t pstate);
544         int (*gfx_off_control)(struct smu_context *smu, bool enable);
545         int (*register_irq_handler)(struct smu_context *smu);
546         int (*set_azalia_d3_pme)(struct smu_context *smu);
547         int (*get_max_sustainable_clocks_by_dc)(struct smu_context *smu, struct pp_smu_nv_clock_table *max_clocks);
548         bool (*baco_is_support)(struct smu_context *smu);
549         enum smu_baco_state (*baco_get_state)(struct smu_context *smu);
550         int (*baco_set_state)(struct smu_context *smu, enum smu_baco_state state);
551         int (*baco_enter)(struct smu_context *smu);
552         int (*baco_exit)(struct smu_context *smu);
553         int (*mode2_reset)(struct smu_context *smu);
554         int (*get_dpm_ultimate_freq)(struct smu_context *smu, enum smu_clk_type clk_type, uint32_t *min, uint32_t *max);
555         int (*set_soft_freq_limited_range)(struct smu_context *smu, enum smu_clk_type clk_type, uint32_t min, uint32_t max);
556         int (*override_pcie_parameters)(struct smu_context *smu);
557         uint32_t (*get_pptable_power_limit)(struct smu_context *smu);
558 };
559
560 int smu_load_microcode(struct smu_context *smu);
561
562 int smu_check_fw_status(struct smu_context *smu);
563
564 int smu_set_gfx_cgpg(struct smu_context *smu, bool enabled);
565
566 #define smu_i2c_eeprom_init(smu, control) \
567                 ((smu)->ppt_funcs->i2c_eeprom_init ? (smu)->ppt_funcs->i2c_eeprom_init((control)) : -EINVAL)
568 #define smu_i2c_eeprom_fini(smu, control) \
569                 ((smu)->ppt_funcs->i2c_eeprom_fini ? (smu)->ppt_funcs->i2c_eeprom_fini((control)) : -EINVAL)
570
571 int smu_set_fan_speed_rpm(struct smu_context *smu, uint32_t speed);
572
573 int smu_get_power_limit(struct smu_context *smu,
574                         uint32_t *limit,
575                         bool def,
576                         bool lock_needed);
577
578 int smu_set_power_limit(struct smu_context *smu, uint32_t limit);
579 int smu_print_clk_levels(struct smu_context *smu, enum smu_clk_type clk_type, char *buf);
580 int smu_get_od_percentage(struct smu_context *smu, enum smu_clk_type type);
581 int smu_set_od_percentage(struct smu_context *smu, enum smu_clk_type type, uint32_t value);
582
583 int smu_od_edit_dpm_table(struct smu_context *smu,
584                           enum PP_OD_DPM_TABLE_COMMAND type,
585                           long *input, uint32_t size);
586
587 int smu_read_sensor(struct smu_context *smu,
588                     enum amd_pp_sensors sensor,
589                     void *data, uint32_t *size);
590 int smu_get_power_profile_mode(struct smu_context *smu, char *buf);
591
592 int smu_set_power_profile_mode(struct smu_context *smu,
593                                long *param,
594                                uint32_t param_size,
595                                bool lock_needed);
596 int smu_get_fan_control_mode(struct smu_context *smu);
597 int smu_set_fan_control_mode(struct smu_context *smu, int value);
598 int smu_get_fan_speed_percent(struct smu_context *smu, uint32_t *speed);
599 int smu_set_fan_speed_percent(struct smu_context *smu, uint32_t speed);
600 int smu_get_fan_speed_rpm(struct smu_context *smu, uint32_t *speed);
601
602 int smu_set_deep_sleep_dcefclk(struct smu_context *smu, int clk);
603 int smu_set_active_display_count(struct smu_context *smu, uint32_t count);
604
605 int smu_get_clock_by_type(struct smu_context *smu,
606                           enum amd_pp_clock_type type,
607                           struct amd_pp_clocks *clocks);
608
609 int smu_get_max_high_clocks(struct smu_context *smu,
610                             struct amd_pp_simple_clock_info *clocks);
611
612 int smu_get_clock_by_type_with_latency(struct smu_context *smu,
613                                        enum smu_clk_type clk_type,
614                                        struct pp_clock_levels_with_latency *clocks);
615
616 int smu_get_clock_by_type_with_voltage(struct smu_context *smu,
617                                        enum amd_pp_clock_type type,
618                                        struct pp_clock_levels_with_voltage *clocks);
619
620 int smu_display_clock_voltage_request(struct smu_context *smu,
621                                       struct pp_display_clock_request *clock_req);
622 int smu_display_disable_memory_clock_switch(struct smu_context *smu, bool disable_memory_clock_switch);
623 int smu_notify_smu_enable_pwe(struct smu_context *smu);
624
625 int smu_set_xgmi_pstate(struct smu_context *smu,
626                         uint32_t pstate);
627
628 int smu_set_azalia_d3_pme(struct smu_context *smu);
629
630 bool smu_baco_is_support(struct smu_context *smu);
631
632 int smu_baco_get_state(struct smu_context *smu, enum smu_baco_state *state);
633
634 int smu_baco_enter(struct smu_context *smu);
635 int smu_baco_exit(struct smu_context *smu);
636
637 int smu_mode2_reset(struct smu_context *smu);
638
639 extern int smu_get_atom_data_table(struct smu_context *smu, uint32_t table,
640                                    uint16_t *size, uint8_t *frev, uint8_t *crev,
641                                    uint8_t **addr);
642
643 extern const struct amd_ip_funcs smu_ip_funcs;
644
645 extern const struct amdgpu_ip_block_version smu_v11_0_ip_block;
646 extern const struct amdgpu_ip_block_version smu_v12_0_ip_block;
647
648 extern int smu_feature_init_dpm(struct smu_context *smu);
649
650 extern int smu_feature_is_enabled(struct smu_context *smu,
651                                   enum smu_feature_mask mask);
652 extern int smu_feature_set_enabled(struct smu_context *smu,
653                                    enum smu_feature_mask mask, bool enable);
654 extern int smu_feature_is_supported(struct smu_context *smu,
655                                     enum smu_feature_mask mask);
656 extern int smu_feature_set_supported(struct smu_context *smu,
657                                      enum smu_feature_mask mask, bool enable);
658
659 int smu_update_table(struct smu_context *smu, enum smu_table_id table_index, int argument,
660                      void *table_data, bool drv2smu);
661
662 bool is_support_sw_smu(struct amdgpu_device *adev);
663 bool is_support_sw_smu_xgmi(struct amdgpu_device *adev);
664 int smu_reset(struct smu_context *smu);
665 int smu_common_read_sensor(struct smu_context *smu, enum amd_pp_sensors sensor,
666                            void *data, uint32_t *size);
667 int smu_sys_get_pp_table(struct smu_context *smu, void **table);
668 int smu_sys_set_pp_table(struct smu_context *smu,  void *buf, size_t size);
669 int smu_get_power_num_states(struct smu_context *smu, struct pp_states_info *state_info);
670 enum amd_pm_state_type smu_get_current_power_state(struct smu_context *smu);
671 int smu_write_watermarks_table(struct smu_context *smu);
672 int smu_set_watermarks_for_clock_ranges(
673                 struct smu_context *smu,
674                 struct dm_pp_wm_sets_with_clock_ranges_soc15 *clock_ranges);
675
676 /* smu to display interface */
677 extern int smu_display_configuration_change(struct smu_context *smu, const
678                                             struct amd_pp_display_configuration
679                                             *display_config);
680 extern int smu_get_current_clocks(struct smu_context *smu,
681                                   struct amd_pp_clock_info *clocks);
682 extern int smu_dpm_set_power_gate(struct smu_context *smu,uint32_t block_type, bool gate);
683 extern int smu_handle_task(struct smu_context *smu,
684                            enum amd_dpm_forced_level level,
685                            enum amd_pp_task task_id,
686                            bool lock_needed);
687 int smu_switch_power_profile(struct smu_context *smu,
688                              enum PP_SMC_POWER_PROFILE type,
689                              bool en);
690 int smu_get_smc_version(struct smu_context *smu, uint32_t *if_version, uint32_t *smu_version);
691 int smu_get_dpm_freq_by_index(struct smu_context *smu, enum smu_clk_type clk_type,
692                               uint16_t level, uint32_t *value);
693 int smu_get_dpm_level_count(struct smu_context *smu, enum smu_clk_type clk_type,
694                             uint32_t *value);
695 int smu_get_dpm_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
696                            uint32_t *min, uint32_t *max, bool lock_needed);
697 int smu_set_soft_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
698                             uint32_t min, uint32_t max);
699 int smu_set_hard_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
700                             uint32_t min, uint32_t max);
701 int smu_get_dpm_level_range(struct smu_context *smu, enum smu_clk_type clk_type,
702                             uint32_t *min_value, uint32_t *max_value);
703 enum amd_dpm_forced_level smu_get_performance_level(struct smu_context *smu);
704 int smu_force_performance_level(struct smu_context *smu, enum amd_dpm_forced_level level);
705 int smu_set_display_count(struct smu_context *smu, uint32_t count);
706 bool smu_clk_dpm_is_enabled(struct smu_context *smu, enum smu_clk_type clk_type);
707 const char *smu_get_message_name(struct smu_context *smu, enum smu_message_type type);
708 const char *smu_get_feature_name(struct smu_context *smu, enum smu_feature_mask feature);
709 size_t smu_sys_get_pp_feature_mask(struct smu_context *smu, char *buf);
710 int smu_sys_set_pp_feature_mask(struct smu_context *smu, uint64_t new_mask);
711 int smu_force_clk_levels(struct smu_context *smu,
712                          enum smu_clk_type clk_type,
713                          uint32_t mask,
714                          bool lock_needed);
715 int smu_set_mp1_state(struct smu_context *smu,
716                       enum pp_mp1_state mp1_state);
717 int smu_set_df_cstate(struct smu_context *smu,
718                       enum pp_df_cstate state);
719
720 int smu_get_max_sustainable_clocks_by_dc(struct smu_context *smu,
721                                          struct pp_smu_nv_clock_table *max_clocks);
722
723 int smu_get_uclk_dpm_states(struct smu_context *smu,
724                             unsigned int *clock_values_in_khz,
725                             unsigned int *num_states);
726
727 int smu_get_dpm_clock_table(struct smu_context *smu,
728                             struct dpm_clocks *clock_table);
729
730 uint32_t smu_get_pptable_power_limit(struct smu_context *smu);
731
732 #endif