Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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 _HWMGR_H_ |
| 24 | #define _HWMGR_H_ |
| 25 | |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 26 | #include <linux/seq_file.h> |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 27 | #include "amd_powerplay.h" |
| 28 | #include "pp_instance.h" |
| 29 | #include "hardwaremanager.h" |
| 30 | #include "pp_power_source.h" |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 31 | #include "hwmgr_ppt.h" |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 32 | |
| 33 | struct pp_instance; |
| 34 | struct pp_hwmgr; |
| 35 | struct pp_hw_power_state; |
| 36 | struct pp_power_state; |
| 37 | struct PP_VCEState; |
Rex Zhu | c28eae2 | 2015-10-16 11:46:51 +0800 | [diff] [blame^] | 38 | struct phm_fan_speed_info; |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 39 | |
| 40 | enum PP_Result { |
| 41 | PP_Result_TableImmediateExit = 0x13, |
| 42 | }; |
| 43 | |
| 44 | #define PCIE_PERF_REQ_REMOVE_REGISTRY 0 |
| 45 | #define PCIE_PERF_REQ_FORCE_LOWPOWER 1 |
| 46 | #define PCIE_PERF_REQ_GEN1 2 |
| 47 | #define PCIE_PERF_REQ_GEN2 3 |
| 48 | #define PCIE_PERF_REQ_GEN3 4 |
| 49 | |
| 50 | enum PHM_BackEnd_Magic { |
| 51 | PHM_Dummy_Magic = 0xAA5555AA, |
| 52 | PHM_RV770_Magic = 0xDCBAABCD, |
| 53 | PHM_Kong_Magic = 0x239478DF, |
| 54 | PHM_NIslands_Magic = 0x736C494E, |
| 55 | PHM_Sumo_Magic = 0x8339FA11, |
| 56 | PHM_SIslands_Magic = 0x369431AC, |
| 57 | PHM_Trinity_Magic = 0x96751873, |
| 58 | PHM_CIslands_Magic = 0x38AC78B0, |
| 59 | PHM_Kv_Magic = 0xDCBBABC0, |
| 60 | PHM_VIslands_Magic = 0x20130307, |
| 61 | PHM_Cz_Magic = 0x67DCBA25 |
| 62 | }; |
| 63 | |
| 64 | enum PP_DAL_POWERLEVEL { |
| 65 | PP_DAL_POWERLEVEL_INVALID = 0, |
| 66 | PP_DAL_POWERLEVEL_ULTRALOW, |
| 67 | PP_DAL_POWERLEVEL_LOW, |
| 68 | PP_DAL_POWERLEVEL_NOMINAL, |
| 69 | PP_DAL_POWERLEVEL_PERFORMANCE, |
| 70 | |
| 71 | PP_DAL_POWERLEVEL_0 = PP_DAL_POWERLEVEL_ULTRALOW, |
| 72 | PP_DAL_POWERLEVEL_1 = PP_DAL_POWERLEVEL_LOW, |
| 73 | PP_DAL_POWERLEVEL_2 = PP_DAL_POWERLEVEL_NOMINAL, |
| 74 | PP_DAL_POWERLEVEL_3 = PP_DAL_POWERLEVEL_PERFORMANCE, |
| 75 | PP_DAL_POWERLEVEL_4 = PP_DAL_POWERLEVEL_3+1, |
| 76 | PP_DAL_POWERLEVEL_5 = PP_DAL_POWERLEVEL_4+1, |
| 77 | PP_DAL_POWERLEVEL_6 = PP_DAL_POWERLEVEL_5+1, |
| 78 | PP_DAL_POWERLEVEL_7 = PP_DAL_POWERLEVEL_6+1, |
| 79 | }; |
| 80 | |
| 81 | #define PHM_PCIE_POWERGATING_TARGET_GFX 0 |
| 82 | #define PHM_PCIE_POWERGATING_TARGET_DDI 1 |
| 83 | #define PHM_PCIE_POWERGATING_TARGET_PLLCASCADE 2 |
| 84 | #define PHM_PCIE_POWERGATING_TARGET_PHY 3 |
| 85 | |
| 86 | typedef int (*phm_table_function)(struct pp_hwmgr *hwmgr, void *input, |
| 87 | void *output, void *storage, int result); |
| 88 | |
| 89 | typedef bool (*phm_check_function)(struct pp_hwmgr *hwmgr); |
| 90 | |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 91 | struct phm_set_power_state_input { |
| 92 | const struct pp_hw_power_state *pcurrent_state; |
| 93 | const struct pp_hw_power_state *pnew_state; |
| 94 | }; |
| 95 | |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 96 | struct phm_acp_arbiter { |
| 97 | uint32_t acpclk; |
| 98 | }; |
| 99 | |
| 100 | struct phm_uvd_arbiter { |
| 101 | uint32_t vclk; |
| 102 | uint32_t dclk; |
| 103 | uint32_t vclk_ceiling; |
| 104 | uint32_t dclk_ceiling; |
| 105 | }; |
| 106 | |
| 107 | struct phm_vce_arbiter { |
| 108 | uint32_t evclk; |
| 109 | uint32_t ecclk; |
| 110 | }; |
| 111 | |
| 112 | struct phm_gfx_arbiter { |
| 113 | uint32_t sclk; |
| 114 | uint32_t mclk; |
| 115 | uint32_t sclk_over_drive; |
| 116 | uint32_t mclk_over_drive; |
| 117 | uint32_t sclk_threshold; |
| 118 | uint32_t num_cus; |
| 119 | }; |
| 120 | |
| 121 | /* Entries in the master tables */ |
| 122 | struct phm_master_table_item { |
| 123 | phm_check_function isFunctionNeededInRuntimeTable; |
| 124 | phm_table_function tableFunction; |
| 125 | }; |
| 126 | |
| 127 | enum phm_master_table_flag { |
| 128 | PHM_MasterTableFlag_None = 0, |
| 129 | PHM_MasterTableFlag_ExitOnError = 1, |
| 130 | }; |
| 131 | |
| 132 | /* The header of the master tables */ |
| 133 | struct phm_master_table_header { |
| 134 | uint32_t storage_size; |
| 135 | uint32_t flags; |
| 136 | struct phm_master_table_item *master_list; |
| 137 | }; |
| 138 | |
| 139 | struct phm_runtime_table_header { |
| 140 | uint32_t storage_size; |
| 141 | bool exit_error; |
| 142 | phm_table_function *function_list; |
| 143 | }; |
| 144 | |
| 145 | struct phm_clock_array { |
| 146 | uint32_t count; |
| 147 | uint32_t values[1]; |
| 148 | }; |
| 149 | |
| 150 | struct phm_clock_voltage_dependency_record { |
| 151 | uint32_t clk; |
| 152 | uint32_t v; |
| 153 | }; |
| 154 | |
| 155 | struct phm_vceclock_voltage_dependency_record { |
| 156 | uint32_t ecclk; |
| 157 | uint32_t evclk; |
| 158 | uint32_t v; |
| 159 | }; |
| 160 | |
| 161 | struct phm_uvdclock_voltage_dependency_record { |
| 162 | uint32_t vclk; |
| 163 | uint32_t dclk; |
| 164 | uint32_t v; |
| 165 | }; |
| 166 | |
| 167 | struct phm_samuclock_voltage_dependency_record { |
| 168 | uint32_t samclk; |
| 169 | uint32_t v; |
| 170 | }; |
| 171 | |
| 172 | struct phm_acpclock_voltage_dependency_record { |
| 173 | uint32_t acpclk; |
| 174 | uint32_t v; |
| 175 | }; |
| 176 | |
| 177 | struct phm_clock_voltage_dependency_table { |
| 178 | uint32_t count; /* Number of entries. */ |
| 179 | struct phm_clock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ |
| 180 | }; |
| 181 | |
| 182 | struct phm_phase_shedding_limits_record { |
| 183 | uint32_t Voltage; |
| 184 | uint32_t Sclk; |
| 185 | uint32_t Mclk; |
| 186 | }; |
| 187 | |
| 188 | |
| 189 | extern int phm_dispatch_table(struct pp_hwmgr *hwmgr, |
| 190 | struct phm_runtime_table_header *rt_table, |
| 191 | void *input, void *output); |
| 192 | |
| 193 | extern int phm_construct_table(struct pp_hwmgr *hwmgr, |
| 194 | struct phm_master_table_header *master_table, |
| 195 | struct phm_runtime_table_header *rt_table); |
| 196 | |
| 197 | extern int phm_destroy_table(struct pp_hwmgr *hwmgr, |
| 198 | struct phm_runtime_table_header *rt_table); |
| 199 | |
| 200 | |
| 201 | struct phm_uvd_clock_voltage_dependency_record { |
| 202 | uint32_t vclk; |
| 203 | uint32_t dclk; |
| 204 | uint32_t v; |
| 205 | }; |
| 206 | |
| 207 | struct phm_uvd_clock_voltage_dependency_table { |
| 208 | uint8_t count; |
| 209 | struct phm_uvd_clock_voltage_dependency_record entries[1]; |
| 210 | }; |
| 211 | |
| 212 | struct phm_acp_clock_voltage_dependency_record { |
| 213 | uint32_t acpclk; |
| 214 | uint32_t v; |
| 215 | }; |
| 216 | |
| 217 | struct phm_acp_clock_voltage_dependency_table { |
| 218 | uint32_t count; |
| 219 | struct phm_acp_clock_voltage_dependency_record entries[1]; |
| 220 | }; |
| 221 | |
| 222 | struct phm_vce_clock_voltage_dependency_record { |
| 223 | uint32_t ecclk; |
| 224 | uint32_t evclk; |
| 225 | uint32_t v; |
| 226 | }; |
| 227 | |
| 228 | struct phm_phase_shedding_limits_table { |
| 229 | uint32_t count; |
| 230 | struct phm_phase_shedding_limits_record entries[1]; |
| 231 | }; |
| 232 | |
| 233 | struct phm_vceclock_voltage_dependency_table { |
| 234 | uint8_t count; /* Number of entries. */ |
| 235 | struct phm_vceclock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ |
| 236 | }; |
| 237 | |
| 238 | struct phm_uvdclock_voltage_dependency_table { |
| 239 | uint8_t count; /* Number of entries. */ |
| 240 | struct phm_uvdclock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ |
| 241 | }; |
| 242 | |
| 243 | struct phm_samuclock_voltage_dependency_table { |
| 244 | uint8_t count; /* Number of entries. */ |
| 245 | struct phm_samuclock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ |
| 246 | }; |
| 247 | |
| 248 | struct phm_acpclock_voltage_dependency_table { |
| 249 | uint32_t count; /* Number of entries. */ |
| 250 | struct phm_acpclock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ |
| 251 | }; |
| 252 | |
| 253 | struct phm_vce_clock_voltage_dependency_table { |
| 254 | uint8_t count; |
| 255 | struct phm_vce_clock_voltage_dependency_record entries[1]; |
| 256 | }; |
| 257 | |
| 258 | struct pp_hwmgr_func { |
| 259 | int (*backend_init)(struct pp_hwmgr *hw_mgr); |
| 260 | int (*backend_fini)(struct pp_hwmgr *hw_mgr); |
| 261 | int (*asic_setup)(struct pp_hwmgr *hw_mgr); |
| 262 | int (*get_power_state_size)(struct pp_hwmgr *hw_mgr); |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 263 | |
| 264 | int (*apply_state_adjust_rules)(struct pp_hwmgr *hwmgr, |
| 265 | struct pp_power_state *prequest_ps, |
| 266 | const struct pp_power_state *pcurrent_ps); |
| 267 | |
| 268 | int (*force_dpm_level)(struct pp_hwmgr *hw_mgr, |
| 269 | enum amd_dpm_forced_level level); |
| 270 | |
| 271 | int (*dynamic_state_management_enable)( |
| 272 | struct pp_hwmgr *hw_mgr); |
| 273 | |
| 274 | int (*patch_boot_state)(struct pp_hwmgr *hwmgr, |
| 275 | struct pp_hw_power_state *hw_ps); |
| 276 | |
| 277 | int (*get_pp_table_entry)(struct pp_hwmgr *hwmgr, |
| 278 | unsigned long, struct pp_power_state *); |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 279 | int (*get_num_of_pp_table_entries)(struct pp_hwmgr *hwmgr); |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 280 | int (*powerdown_uvd)(struct pp_hwmgr *hwmgr); |
| 281 | int (*powergate_vce)(struct pp_hwmgr *hwmgr, bool bgate); |
| 282 | int (*powergate_uvd)(struct pp_hwmgr *hwmgr, bool bgate); |
| 283 | int (*get_mclk)(struct pp_hwmgr *hwmgr, bool low); |
| 284 | int (*get_sclk)(struct pp_hwmgr *hwmgr, bool low); |
| 285 | int (*power_state_set)(struct pp_hwmgr *hwmgr, |
| 286 | const void *state); |
| 287 | void (*print_current_perforce_level)(struct pp_hwmgr *hwmgr, |
| 288 | struct seq_file *m); |
| 289 | int (*enable_clock_power_gating)(struct pp_hwmgr *hwmgr); |
Rex Zhu | e8c7de5 | 2015-10-16 14:51:09 +0800 | [diff] [blame] | 290 | int (*notify_smc_display_config_after_ps_adjustment)(struct pp_hwmgr *hwmgr); |
| 291 | int (*display_config_changed)(struct pp_hwmgr *hwmgr); |
Rex Zhu | b113201 | 2015-09-30 13:28:49 +0800 | [diff] [blame] | 292 | int (*disable_clock_power_gating)(struct pp_hwmgr *hwmgr); |
| 293 | int (*update_clock_gatings)(struct pp_hwmgr *hwmgr, |
| 294 | const uint32_t *msg_id); |
Rex Zhu | c28eae2 | 2015-10-16 11:46:51 +0800 | [diff] [blame^] | 295 | int (*set_max_fan_rpm_output)(struct pp_hwmgr *hwmgr, uint16_t us_max_fan_pwm); |
| 296 | int (*set_max_fan_pwm_output)(struct pp_hwmgr *hwmgr, uint16_t us_max_fan_pwm); |
| 297 | int (*get_temperature)(struct pp_hwmgr *hwmgr); |
| 298 | int (*stop_thermal_controller)(struct pp_hwmgr *hwmgr); |
| 299 | int (*get_fan_speed_info)(struct pp_hwmgr *hwmgr, struct phm_fan_speed_info *fan_speed_info); |
| 300 | int (*set_fan_control_mode)(struct pp_hwmgr *hwmgr, uint32_t mode); |
| 301 | int (*get_fan_control_mode)(struct pp_hwmgr *hwmgr); |
| 302 | int (*set_fan_speed_percent)(struct pp_hwmgr *hwmgr, uint32_t percent); |
| 303 | int (*get_fan_speed_percent)(struct pp_hwmgr *hwmgr, uint32_t *speed); |
| 304 | int (*set_fan_speed_rpm)(struct pp_hwmgr *hwmgr, uint32_t percent); |
| 305 | int (*get_fan_speed_rpm)(struct pp_hwmgr *hwmgr, uint32_t *speed); |
| 306 | int (*reset_fan_speed_to_default)(struct pp_hwmgr *hwmgr); |
| 307 | int (*uninitialize_thermal_controller)(struct pp_hwmgr *hwmgr); |
| 308 | int (*register_internal_thermal_interrupt)(struct pp_hwmgr *hwmgr, |
| 309 | const void *thermal_interrupt_info); |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 310 | }; |
| 311 | |
| 312 | struct pp_table_func { |
| 313 | int (*pptable_init)(struct pp_hwmgr *hw_mgr); |
| 314 | int (*pptable_fini)(struct pp_hwmgr *hw_mgr); |
| 315 | int (*pptable_get_number_of_vce_state_table_entries)(struct pp_hwmgr *hw_mgr); |
| 316 | int (*pptable_get_vce_state_table_entry)( |
| 317 | struct pp_hwmgr *hwmgr, |
| 318 | unsigned long i, |
| 319 | struct PP_VCEState *vce_state, |
| 320 | void **clock_info, |
| 321 | unsigned long *flag); |
| 322 | }; |
| 323 | |
| 324 | union phm_cac_leakage_record { |
| 325 | struct { |
| 326 | uint16_t Vddc; /* in CI, we use it for StdVoltageHiSidd */ |
| 327 | uint32_t Leakage; /* in CI, we use it for StdVoltageLoSidd */ |
| 328 | }; |
| 329 | struct { |
| 330 | uint16_t Vddc1; |
| 331 | uint16_t Vddc2; |
| 332 | uint16_t Vddc3; |
| 333 | }; |
| 334 | }; |
| 335 | |
| 336 | struct phm_cac_leakage_table { |
| 337 | uint32_t count; |
| 338 | union phm_cac_leakage_record entries[1]; |
| 339 | }; |
| 340 | |
| 341 | struct phm_samu_clock_voltage_dependency_record { |
| 342 | uint32_t samclk; |
| 343 | uint32_t v; |
| 344 | }; |
| 345 | |
| 346 | |
| 347 | struct phm_samu_clock_voltage_dependency_table { |
| 348 | uint8_t count; |
| 349 | struct phm_samu_clock_voltage_dependency_record entries[1]; |
| 350 | }; |
| 351 | |
| 352 | struct phm_cac_tdp_table { |
| 353 | uint16_t usTDP; |
| 354 | uint16_t usConfigurableTDP; |
| 355 | uint16_t usTDC; |
| 356 | uint16_t usBatteryPowerLimit; |
| 357 | uint16_t usSmallPowerLimit; |
| 358 | uint16_t usLowCACLeakage; |
| 359 | uint16_t usHighCACLeakage; |
| 360 | uint16_t usMaximumPowerDeliveryLimit; |
| 361 | uint16_t usOperatingTempMinLimit; |
| 362 | uint16_t usOperatingTempMaxLimit; |
| 363 | uint16_t usOperatingTempStep; |
| 364 | uint16_t usOperatingTempHyst; |
| 365 | uint16_t usDefaultTargetOperatingTemp; |
| 366 | uint16_t usTargetOperatingTemp; |
| 367 | uint16_t usPowerTuneDataSetID; |
| 368 | uint16_t usSoftwareShutdownTemp; |
| 369 | uint16_t usClockStretchAmount; |
| 370 | uint16_t usTemperatureLimitHotspot; |
| 371 | uint16_t usTemperatureLimitLiquid1; |
| 372 | uint16_t usTemperatureLimitLiquid2; |
| 373 | uint16_t usTemperatureLimitVrVddc; |
| 374 | uint16_t usTemperatureLimitVrMvdd; |
| 375 | uint16_t usTemperatureLimitPlx; |
| 376 | uint8_t ucLiquid1_I2C_address; |
| 377 | uint8_t ucLiquid2_I2C_address; |
| 378 | uint8_t ucLiquid_I2C_Line; |
| 379 | uint8_t ucVr_I2C_address; |
| 380 | uint8_t ucVr_I2C_Line; |
| 381 | uint8_t ucPlx_I2C_address; |
| 382 | uint8_t ucPlx_I2C_Line; |
| 383 | }; |
| 384 | |
| 385 | struct phm_ppm_table { |
| 386 | uint8_t ppm_design; |
| 387 | uint16_t cpu_core_number; |
| 388 | uint32_t platform_tdp; |
| 389 | uint32_t small_ac_platform_tdp; |
| 390 | uint32_t platform_tdc; |
| 391 | uint32_t small_ac_platform_tdc; |
| 392 | uint32_t apu_tdp; |
| 393 | uint32_t dgpu_tdp; |
| 394 | uint32_t dgpu_ulv_power; |
| 395 | uint32_t tj_max; |
| 396 | }; |
| 397 | |
| 398 | struct phm_vq_budgeting_record { |
| 399 | uint32_t ulCUs; |
| 400 | uint32_t ulSustainableSOCPowerLimitLow; |
| 401 | uint32_t ulSustainableSOCPowerLimitHigh; |
| 402 | uint32_t ulMinSclkLow; |
| 403 | uint32_t ulMinSclkHigh; |
| 404 | uint8_t ucDispConfig; |
| 405 | uint32_t ulDClk; |
| 406 | uint32_t ulEClk; |
| 407 | uint32_t ulSustainableSclk; |
| 408 | uint32_t ulSustainableCUs; |
| 409 | }; |
| 410 | |
| 411 | struct phm_vq_budgeting_table { |
| 412 | uint8_t numEntries; |
| 413 | struct phm_vq_budgeting_record entries[1]; |
| 414 | }; |
| 415 | |
| 416 | struct phm_clock_and_voltage_limits { |
| 417 | uint32_t sclk; |
| 418 | uint32_t mclk; |
| 419 | uint16_t vddc; |
| 420 | uint16_t vddci; |
| 421 | uint16_t vddgfx; |
| 422 | }; |
| 423 | |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 424 | /* Structure to hold PPTable information */ |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 425 | |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 426 | struct phm_ppt_v1_information { |
| 427 | struct phm_ppt_v1_clock_voltage_dependency_table *vdd_dep_on_sclk; |
| 428 | struct phm_ppt_v1_clock_voltage_dependency_table *vdd_dep_on_mclk; |
| 429 | struct phm_clock_array *valid_sclk_values; |
| 430 | struct phm_clock_array *valid_mclk_values; |
| 431 | struct phm_clock_and_voltage_limits max_clock_voltage_on_dc; |
| 432 | struct phm_clock_and_voltage_limits max_clock_voltage_on_ac; |
| 433 | struct phm_clock_voltage_dependency_table *vddc_dep_on_dal_pwrl; |
| 434 | struct phm_ppm_table *ppm_parameter_table; |
| 435 | struct phm_cac_tdp_table *cac_dtp_table; |
| 436 | struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_dep_table; |
| 437 | struct phm_ppt_v1_voltage_lookup_table *vddc_lookup_table; |
| 438 | struct phm_ppt_v1_voltage_lookup_table *vddgfx_lookup_table; |
| 439 | struct phm_ppt_v1_pcie_table *pcie_table; |
| 440 | uint16_t us_ulv_voltage_offset; |
| 441 | }; |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 442 | |
| 443 | struct phm_dynamic_state_info { |
| 444 | struct phm_clock_voltage_dependency_table *vddc_dependency_on_sclk; |
| 445 | struct phm_clock_voltage_dependency_table *vddci_dependency_on_mclk; |
| 446 | struct phm_clock_voltage_dependency_table *vddc_dependency_on_mclk; |
| 447 | struct phm_clock_voltage_dependency_table *mvdd_dependency_on_mclk; |
| 448 | struct phm_clock_voltage_dependency_table *vddc_dep_on_dal_pwrl; |
| 449 | struct phm_clock_array *valid_sclk_values; |
| 450 | struct phm_clock_array *valid_mclk_values; |
| 451 | struct phm_clock_and_voltage_limits max_clock_voltage_on_dc; |
| 452 | struct phm_clock_and_voltage_limits max_clock_voltage_on_ac; |
| 453 | uint32_t mclk_sclk_ratio; |
| 454 | uint32_t sclk_mclk_delta; |
| 455 | uint32_t vddc_vddci_delta; |
| 456 | uint32_t min_vddc_for_pcie_gen2; |
| 457 | struct phm_cac_leakage_table *cac_leakage_table; |
| 458 | struct phm_phase_shedding_limits_table *vddc_phase_shed_limits_table; |
| 459 | |
| 460 | struct phm_vce_clock_voltage_dependency_table |
| 461 | *vce_clocl_voltage_dependency_table; |
| 462 | struct phm_uvd_clock_voltage_dependency_table |
| 463 | *uvd_clocl_voltage_dependency_table; |
| 464 | struct phm_acp_clock_voltage_dependency_table |
| 465 | *acp_clock_voltage_dependency_table; |
| 466 | struct phm_samu_clock_voltage_dependency_table |
| 467 | *samu_clock_voltage_dependency_table; |
| 468 | |
| 469 | struct phm_ppm_table *ppm_parameter_table; |
| 470 | struct phm_cac_tdp_table *cac_dtp_table; |
| 471 | struct phm_clock_voltage_dependency_table *vdd_gfx_dependency_on_sclk; |
| 472 | struct phm_vq_budgeting_table *vq_budgeting_table; |
| 473 | }; |
| 474 | |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 475 | struct pp_fan_info { |
| 476 | bool bNoFan; |
| 477 | uint8_t ucTachometerPulsesPerRevolution; |
| 478 | uint32_t ulMinRPM; |
| 479 | uint32_t ulMaxRPM; |
| 480 | }; |
| 481 | |
| 482 | struct pp_advance_fan_control_parameters { |
| 483 | uint16_t usTMin; /* The temperature, in 0.01 centigrades, below which we just run at a minimal PWM. */ |
| 484 | uint16_t usTMed; /* The middle temperature where we change slopes. */ |
| 485 | uint16_t usTHigh; /* The high temperature for setting the second slope. */ |
| 486 | uint16_t usPWMMin; /* The minimum PWM value in percent (0.01% increments). */ |
| 487 | uint16_t usPWMMed; /* The PWM value (in percent) at TMed. */ |
| 488 | uint16_t usPWMHigh; /* The PWM value at THigh. */ |
| 489 | uint8_t ucTHyst; /* Temperature hysteresis. Integer. */ |
| 490 | uint32_t ulCycleDelay; /* The time between two invocations of the fan control routine in microseconds. */ |
| 491 | uint16_t usTMax; /* The max temperature */ |
| 492 | uint8_t ucFanControlMode; |
| 493 | uint16_t usFanPWMMinLimit; |
| 494 | uint16_t usFanPWMMaxLimit; |
| 495 | uint16_t usFanPWMStep; |
| 496 | uint16_t usDefaultMaxFanPWM; |
| 497 | uint16_t usFanOutputSensitivity; |
| 498 | uint16_t usDefaultFanOutputSensitivity; |
| 499 | uint16_t usMaxFanPWM; /* The max Fan PWM value for Fuzzy Fan Control feature */ |
| 500 | uint16_t usFanRPMMinLimit; /* Minimum limit range in percentage, need to calculate based on minRPM/MaxRpm */ |
| 501 | uint16_t usFanRPMMaxLimit; /* Maximum limit range in percentage, usually set to 100% by default */ |
| 502 | uint16_t usFanRPMStep; /* Step increments/decerements, in percent */ |
| 503 | uint16_t usDefaultMaxFanRPM; /* The max Fan RPM value for Fuzzy Fan Control feature, default from PPTable */ |
| 504 | uint16_t usMaxFanRPM; /* The max Fan RPM value for Fuzzy Fan Control feature, user defined */ |
| 505 | uint16_t usFanCurrentLow; /* Low current */ |
| 506 | uint16_t usFanCurrentHigh; /* High current */ |
| 507 | uint16_t usFanRPMLow; /* Low RPM */ |
| 508 | uint16_t usFanRPMHigh; /* High RPM */ |
| 509 | uint32_t ulMinFanSCLKAcousticLimit; /* Minimum Fan Controller SCLK Frequency Acoustic Limit. */ |
| 510 | uint8_t ucTargetTemperature; /* Advanced fan controller target temperature. */ |
| 511 | uint8_t ucMinimumPWMLimit; /* The minimum PWM that the advanced fan controller can set. This should be set to the highest PWM that will run the fan at its lowest RPM. */ |
| 512 | uint16_t usFanGainEdge; /* The following is added for Fiji */ |
| 513 | uint16_t usFanGainHotspot; |
| 514 | uint16_t usFanGainLiquid; |
| 515 | uint16_t usFanGainVrVddc; |
| 516 | uint16_t usFanGainVrMvdd; |
| 517 | uint16_t usFanGainPlx; |
| 518 | uint16_t usFanGainHbm; |
| 519 | }; |
| 520 | |
| 521 | struct pp_thermal_controller_info { |
| 522 | uint8_t ucType; |
| 523 | uint8_t ucI2cLine; |
| 524 | uint8_t ucI2cAddress; |
| 525 | struct pp_fan_info fanInfo; |
| 526 | struct pp_advance_fan_control_parameters advanceFanControlParameters; |
| 527 | }; |
| 528 | |
| 529 | struct phm_microcode_version_info { |
| 530 | uint32_t SMC; |
| 531 | uint32_t DMCU; |
| 532 | uint32_t MC; |
| 533 | uint32_t NB; |
| 534 | }; |
| 535 | |
| 536 | /** |
| 537 | * The main hardware manager structure. |
| 538 | */ |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 539 | struct pp_hwmgr { |
| 540 | uint32_t chip_family; |
| 541 | uint32_t chip_id; |
| 542 | uint32_t hw_revision; |
| 543 | uint32_t sub_sys_id; |
| 544 | uint32_t sub_vendor_id; |
| 545 | |
| 546 | void *device; |
| 547 | struct pp_smumgr *smumgr; |
| 548 | const void *soft_pp_table; |
| 549 | enum amd_dpm_forced_level dpm_level; |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 550 | bool block_hw_access; |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 551 | struct phm_gfx_arbiter gfx_arbiter; |
| 552 | struct phm_acp_arbiter acp_arbiter; |
| 553 | struct phm_uvd_arbiter uvd_arbiter; |
| 554 | struct phm_vce_arbiter vce_arbiter; |
| 555 | uint32_t usec_timeout; |
| 556 | void *pptable; |
| 557 | struct phm_platform_descriptor platform_descriptor; |
| 558 | void *backend; |
| 559 | enum PP_DAL_POWERLEVEL dal_power_level; |
| 560 | struct phm_dynamic_state_info dyn_state; |
| 561 | struct phm_runtime_table_header setup_asic; |
| 562 | struct phm_runtime_table_header disable_dynamic_state_management; |
| 563 | struct phm_runtime_table_header enable_dynamic_state_management; |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 564 | struct phm_runtime_table_header set_power_state; |
| 565 | struct phm_runtime_table_header enable_clock_power_gatings; |
Rex Zhu | e8c7de5 | 2015-10-16 14:51:09 +0800 | [diff] [blame] | 566 | struct phm_runtime_table_header display_configuration_changed; |
Rex Zhu | c28eae2 | 2015-10-16 11:46:51 +0800 | [diff] [blame^] | 567 | struct phm_runtime_table_header start_thermal_controller; |
| 568 | struct phm_runtime_table_header set_temperature_range; |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 569 | const struct pp_hwmgr_func *hwmgr_func; |
| 570 | const struct pp_table_func *pptable_func; |
| 571 | struct pp_power_state *ps; |
| 572 | enum pp_power_source power_source; |
| 573 | uint32_t num_ps; |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 574 | struct pp_thermal_controller_info thermal_controller; |
Rex Zhu | c28eae2 | 2015-10-16 11:46:51 +0800 | [diff] [blame^] | 575 | bool fan_ctrl_is_in_default_mode; |
| 576 | uint32_t fan_ctrl_default_mode; |
| 577 | uint32_t tmin; |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 578 | struct phm_microcode_version_info microcode_version_info; |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 579 | uint32_t ps_size; |
| 580 | struct pp_power_state *current_ps; |
| 581 | struct pp_power_state *request_ps; |
| 582 | struct pp_power_state *boot_ps; |
| 583 | struct pp_power_state *uvd_ps; |
| 584 | }; |
| 585 | |
| 586 | |
| 587 | extern int hwmgr_init(struct amd_pp_init *pp_init, |
| 588 | struct pp_instance *handle); |
| 589 | |
| 590 | extern int hwmgr_fini(struct pp_hwmgr *hwmgr); |
| 591 | |
| 592 | extern int hw_init_power_state_table(struct pp_hwmgr *hwmgr); |
| 593 | |
| 594 | extern int phm_wait_on_register(struct pp_hwmgr *hwmgr, uint32_t index, |
| 595 | uint32_t value, uint32_t mask); |
| 596 | |
| 597 | extern int phm_wait_for_register_unequal(struct pp_hwmgr *hwmgr, |
| 598 | uint32_t index, uint32_t value, uint32_t mask); |
| 599 | |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 600 | extern uint32_t phm_read_indirect_register(struct pp_hwmgr *hwmgr, |
| 601 | uint32_t indirect_port, uint32_t index); |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 602 | |
yanyang1 | c82baa2 | 2015-08-18 15:28:32 +0800 | [diff] [blame] | 603 | extern void phm_write_indirect_register(struct pp_hwmgr *hwmgr, |
| 604 | uint32_t indirect_port, |
| 605 | uint32_t index, |
| 606 | uint32_t value); |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 607 | |
| 608 | extern void phm_wait_on_indirect_register(struct pp_hwmgr *hwmgr, |
| 609 | uint32_t indirect_port, |
| 610 | uint32_t index, |
| 611 | uint32_t value, |
| 612 | uint32_t mask); |
| 613 | |
| 614 | extern void phm_wait_for_indirect_register_unequal( |
| 615 | struct pp_hwmgr *hwmgr, |
| 616 | uint32_t indirect_port, |
| 617 | uint32_t index, |
| 618 | uint32_t value, |
| 619 | uint32_t mask); |
| 620 | |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 621 | bool phm_cf_want_uvd_power_gating(struct pp_hwmgr *hwmgr); |
| 622 | bool phm_cf_want_vce_power_gating(struct pp_hwmgr *hwmgr); |
Rex Zhu | c28eae2 | 2015-10-16 11:46:51 +0800 | [diff] [blame^] | 623 | bool phm_cf_want_microcode_fan_ctrl(struct pp_hwmgr *hwmgr); |
Rex Zhu | 28a18ba | 2015-09-23 15:14:38 +0800 | [diff] [blame] | 624 | |
| 625 | #define PHM_ENTIRE_REGISTER_MASK 0xFFFFFFFFU |
| 626 | |
Jammy Zhou | 3bace35 | 2015-07-21 21:18:15 +0800 | [diff] [blame] | 627 | #define PHM_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT |
| 628 | #define PHM_FIELD_MASK(reg, field) reg##__##field##_MASK |
| 629 | |
| 630 | #define PHM_SET_FIELD(origval, reg, field, fieldval) \ |
| 631 | (((origval) & ~PHM_FIELD_MASK(reg, field)) | \ |
| 632 | (PHM_FIELD_MASK(reg, field) & ((fieldval) << PHM_FIELD_SHIFT(reg, field)))) |
| 633 | |
| 634 | #define PHM_GET_FIELD(value, reg, field) \ |
| 635 | (((value) & PHM_FIELD_MASK(reg, field)) >> \ |
| 636 | PHM_FIELD_SHIFT(reg, field)) |
| 637 | |
| 638 | |
| 639 | #define PHM_WAIT_REGISTER_GIVEN_INDEX(hwmgr, index, value, mask) \ |
| 640 | phm_wait_on_register(hwmgr, index, value, mask) |
| 641 | |
| 642 | #define PHM_WAIT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, index, value, mask) \ |
| 643 | phm_wait_for_register_unequal(hwmgr, index, value, mask) |
| 644 | |
| 645 | #define PHM_WAIT_INDIRECT_REGISTER_GIVEN_INDEX(hwmgr, port, index, value, mask) \ |
| 646 | phm_wait_on_indirect_register(hwmgr, mm##port##_INDEX, index, value, mask) |
| 647 | |
| 648 | #define PHM_WAIT_INDIRECT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, port, index, value, mask) \ |
| 649 | phm_wait_for_indirect_register_unequal(hwmgr, mm##port##_INDEX, index, value, mask) |
| 650 | |
| 651 | #define PHM_WAIT_VFPF_INDIRECT_REGISTER_GIVEN_INDEX(hwmgr, port, index, value, mask) \ |
| 652 | phm_wait_on_indirect_register(hwmgr, mm##port##_INDEX_0, index, value, mask) |
| 653 | |
| 654 | #define PHM_WAIT_VFPF_INDIRECT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, port, index, value, mask) \ |
| 655 | phm_wait_for_indirect_register_unequal(hwmgr, mm##port##_INDEX_0, index, value, mask) |
| 656 | |
| 657 | /* Operations on named registers. */ |
| 658 | |
| 659 | #define PHM_WAIT_REGISTER(hwmgr, reg, value, mask) \ |
| 660 | PHM_WAIT_REGISTER_GIVEN_INDEX(hwmgr, mm##reg, value, mask) |
| 661 | |
| 662 | #define PHM_WAIT_REGISTER_UNEQUAL(hwmgr, reg, value, mask) \ |
| 663 | PHM_WAIT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, mm##reg, value, mask) |
| 664 | |
| 665 | #define PHM_WAIT_INDIRECT_REGISTER(hwmgr, port, reg, value, mask) \ |
| 666 | PHM_WAIT_INDIRECT_REGISTER_GIVEN_INDEX(hwmgr, port, ix##reg, value, mask) |
| 667 | |
| 668 | #define PHM_WAIT_INDIRECT_REGISTER_UNEQUAL(hwmgr, port, reg, value, mask) \ |
| 669 | PHM_WAIT_INDIRECT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, port, ix##reg, value, mask) |
| 670 | |
| 671 | #define PHM_WAIT_VFPF_INDIRECT_REGISTER(hwmgr, port, reg, value, mask) \ |
| 672 | PHM_WAIT_VFPF_INDIRECT_REGISTER_GIVEN_INDEX(hwmgr, port, ix##reg, value, mask) |
| 673 | |
| 674 | #define PHM_WAIT_VFPF_INDIRECT_REGISTER_UNEQUAL(hwmgr, port, reg, value, mask) \ |
| 675 | PHM_WAIT_VFPF_INDIRECT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, port, ix##reg, value, mask) |
| 676 | |
| 677 | /* Operations on named fields. */ |
| 678 | |
| 679 | #define PHM_READ_FIELD(device, reg, field) \ |
| 680 | PHM_GET_FIELD(cgs_read_register(device, mm##reg), reg, field) |
| 681 | |
| 682 | #define PHM_READ_INDIRECT_FIELD(device, port, reg, field) \ |
| 683 | PHM_GET_FIELD(cgs_read_ind_register(device, port, ix##reg), \ |
| 684 | reg, field) |
| 685 | |
| 686 | #define PHM_READ_VFPF_INDIRECT_FIELD(device, port, reg, field) \ |
| 687 | PHM_GET_FIELD(cgs_read_ind_register(device, port, ix##reg), \ |
| 688 | reg, field) |
| 689 | |
| 690 | #define PHM_WRITE_FIELD(device, reg, field, fieldval) \ |
| 691 | cgs_write_register(device, mm##reg, PHM_SET_FIELD( \ |
| 692 | cgs_read_register(device, mm##reg), reg, field, fieldval)) |
| 693 | |
| 694 | #define PHM_WRITE_INDIRECT_FIELD(device, port, reg, field, fieldval) \ |
| 695 | cgs_write_ind_register(device, port, ix##reg, \ |
| 696 | PHM_SET_FIELD(cgs_read_ind_register(device, port, ix##reg), \ |
| 697 | reg, field, fieldval)) |
| 698 | |
| 699 | #define PHM_WRITE_VFPF_INDIRECT_FIELD(device, port, reg, field, fieldval) \ |
| 700 | cgs_write_ind_register(device, port, ix##reg, \ |
| 701 | PHM_SET_FIELD(cgs_read_ind_register(device, port, ix##reg), \ |
| 702 | reg, field, fieldval)) |
| 703 | |
| 704 | #define PHM_WAIT_FIELD(hwmgr, reg, field, fieldval) \ |
| 705 | PHM_WAIT_REGISTER(hwmgr, reg, (fieldval) \ |
| 706 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 707 | |
| 708 | #define PHM_WAIT_INDIRECT_FIELD(hwmgr, port, reg, field, fieldval) \ |
| 709 | PHM_WAIT_INDIRECT_REGISTER(hwmgr, port, reg, (fieldval) \ |
| 710 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 711 | |
| 712 | #define PHM_WAIT_VFPF_INDIRECT_FIELD(hwmgr, port, reg, field, fieldval) \ |
| 713 | PHM_WAIT_VFPF_INDIRECT_REGISTER(hwmgr, port, reg, (fieldval) \ |
| 714 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 715 | |
| 716 | #define PHM_WAIT_FIELD_UNEQUAL(hwmgr, reg, field, fieldval) \ |
| 717 | PHM_WAIT_REGISTER_UNEQUAL(hwmgr, reg, (fieldval) \ |
| 718 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 719 | |
| 720 | #define PHM_WAIT_INDIRECT_FIELD_UNEQUAL(hwmgr, port, reg, field, fieldval) \ |
| 721 | PHM_WAIT_INDIRECT_REGISTER_UNEQUAL(hwmgr, port, reg, (fieldval) \ |
| 722 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 723 | |
| 724 | #define PHM_WAIT_VFPF_INDIRECT_FIELD_UNEQUAL(hwmgr, port, reg, field, fieldval) \ |
| 725 | PHM_WAIT_VFPF_INDIRECT_REGISTER_UNEQUAL(hwmgr, port, reg, (fieldval) \ |
| 726 | << PHM_FIELD_SHIFT(reg, field), PHM_FIELD_MASK(reg, field)) |
| 727 | |
| 728 | /* Operations on arrays of registers & fields. */ |
| 729 | |
| 730 | #define PHM_READ_ARRAY_REGISTER(device, reg, offset) \ |
| 731 | cgs_read_register(device, mm##reg + (offset)) |
| 732 | |
| 733 | #define PHM_WRITE_ARRAY_REGISTER(device, reg, offset, value) \ |
| 734 | cgs_write_register(device, mm##reg + (offset), value) |
| 735 | |
| 736 | #define PHM_WAIT_ARRAY_REGISTER(hwmgr, reg, offset, value, mask) \ |
| 737 | PHM_WAIT_REGISTER_GIVEN_INDEX(hwmgr, mm##reg + (offset), value, mask) |
| 738 | |
| 739 | #define PHM_WAIT_ARRAY_REGISTER_UNEQUAL(hwmgr, reg, offset, value, mask) \ |
| 740 | PHM_WAIT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, mm##reg + (offset), value, mask) |
| 741 | |
| 742 | #define PHM_READ_ARRAY_FIELD(hwmgr, reg, offset, field) \ |
| 743 | PHM_GET_FIELD(PHM_READ_ARRAY_REGISTER(hwmgr->device, reg, offset), reg, field) |
| 744 | |
| 745 | #define PHM_WRITE_ARRAY_FIELD(hwmgr, reg, offset, field, fieldvalue) \ |
| 746 | PHM_WRITE_ARRAY_REGISTER(hwmgr->device, reg, offset, \ |
| 747 | PHM_SET_FIELD(PHM_READ_ARRAY_REGISTER(hwmgr->device, reg, offset), \ |
| 748 | reg, field, fieldvalue)) |
| 749 | |
| 750 | #define PHM_WAIT_ARRAY_FIELD(hwmgr, reg, offset, field, fieldvalue) \ |
| 751 | PHM_WAIT_REGISTER_GIVEN_INDEX(hwmgr, mm##reg + (offset), \ |
| 752 | (fieldvalue) << PHM_FIELD_SHIFT(reg, field), \ |
| 753 | PHM_FIELD_MASK(reg, field)) |
| 754 | |
| 755 | #define PHM_WAIT_ARRAY_FIELD_UNEQUAL(hwmgr, reg, offset, field, fieldvalue) \ |
| 756 | PHM_WAIT_REGISTER_UNEQUAL_GIVEN_INDEX(hwmgr, mm##reg + (offset), \ |
| 757 | (fieldvalue) << PHM_FIELD_SHIFT(reg, field), \ |
| 758 | PHM_FIELD_MASK(reg, field)) |
| 759 | |
| 760 | #endif /* _HWMGR_H_ */ |