2 * Copyright 2015 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
25 #include <linux/types.h>
26 #include "amd_powerplay.h"
36 SMU_SoftRegisters
= 0,
37 SMU_Discrete_DpmTable
,
41 HandshakeDisables
= 0,
43 AverageGraphicsActivity
,
49 LowSclkInterruptThreshold
,
58 enum SMU_MAC_DEFINITION
{
59 SMU_MAX_LEVELS_GRAPHICS
= 0,
60 SMU_MAX_LEVELS_MEMORY
,
64 SMU_MAX_LEVELS_VDDGFX
,
67 SMU_UVD_MCLK_HANDSHAKE_DISABLE
,
83 extern uint32_t smum_get_argument(struct pp_hwmgr
*hwmgr
);
85 extern int smum_download_powerplay_table(struct pp_hwmgr
*hwmgr
, void **table
);
87 extern int smum_upload_powerplay_table(struct pp_hwmgr
*hwmgr
);
89 extern int smum_send_msg_to_smc(struct pp_hwmgr
*hwmgr
, uint16_t msg
);
91 extern int smum_send_msg_to_smc_with_parameter(struct pp_hwmgr
*hwmgr
,
92 uint16_t msg
, uint32_t parameter
);
94 extern int smum_update_sclk_threshold(struct pp_hwmgr
*hwmgr
);
96 extern int smum_update_smc_table(struct pp_hwmgr
*hwmgr
, uint32_t type
);
97 extern int smum_process_firmware_header(struct pp_hwmgr
*hwmgr
);
98 extern int smum_thermal_avfs_enable(struct pp_hwmgr
*hwmgr
);
99 extern int smum_thermal_setup_fan_table(struct pp_hwmgr
*hwmgr
);
100 extern int smum_init_smc_table(struct pp_hwmgr
*hwmgr
);
101 extern int smum_populate_all_graphic_levels(struct pp_hwmgr
*hwmgr
);
102 extern int smum_populate_all_memory_levels(struct pp_hwmgr
*hwmgr
);
103 extern int smum_initialize_mc_reg_table(struct pp_hwmgr
*hwmgr
);
104 extern uint32_t smum_get_offsetof(struct pp_hwmgr
*hwmgr
,
105 uint32_t type
, uint32_t member
);
106 extern uint32_t smum_get_mac_definition(struct pp_hwmgr
*hwmgr
, uint32_t value
);
108 extern bool smum_is_dpm_running(struct pp_hwmgr
*hwmgr
);
110 extern bool smum_is_hw_avfs_present(struct pp_hwmgr
*hwmgr
);
112 extern int smum_update_dpm_settings(struct pp_hwmgr
*hwmgr
, void *profile_setting
);
114 extern int smum_smc_table_manager(struct pp_hwmgr
*hwmgr
, uint8_t *table
, uint16_t table_id
, bool rw
);