linux/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c
<<
>>
Prefs
   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#include "pp_debug.h"
  24#include <linux/errno.h>
  25#include "hwmgr.h"
  26#include "hardwaremanager.h"
  27#include "power_state.h"
  28
  29
  30#define TEMP_RANGE_MIN (0)
  31#define TEMP_RANGE_MAX (80 * 1000)
  32
  33#define PHM_FUNC_CHECK(hw) \
  34        do {                                                    \
  35                if ((hw) == NULL || (hw)->hwmgr_func == NULL)   \
  36                        return -EINVAL;                         \
  37        } while (0)
  38
  39int phm_setup_asic(struct pp_hwmgr *hwmgr)
  40{
  41        PHM_FUNC_CHECK(hwmgr);
  42
  43        if (NULL != hwmgr->hwmgr_func->asic_setup)
  44                return hwmgr->hwmgr_func->asic_setup(hwmgr);
  45
  46        return 0;
  47}
  48
  49int phm_power_down_asic(struct pp_hwmgr *hwmgr)
  50{
  51        PHM_FUNC_CHECK(hwmgr);
  52
  53        if (NULL != hwmgr->hwmgr_func->power_off_asic)
  54                return hwmgr->hwmgr_func->power_off_asic(hwmgr);
  55
  56        return 0;
  57}
  58
  59int phm_set_power_state(struct pp_hwmgr *hwmgr,
  60                    const struct pp_hw_power_state *pcurrent_state,
  61                    const struct pp_hw_power_state *pnew_power_state)
  62{
  63        struct phm_set_power_state_input states;
  64
  65        PHM_FUNC_CHECK(hwmgr);
  66
  67        states.pcurrent_state = pcurrent_state;
  68        states.pnew_state = pnew_power_state;
  69
  70        if (NULL != hwmgr->hwmgr_func->power_state_set)
  71                return hwmgr->hwmgr_func->power_state_set(hwmgr, &states);
  72
  73        return 0;
  74}
  75
  76int phm_enable_dynamic_state_management(struct pp_hwmgr *hwmgr)
  77{
  78        struct amdgpu_device *adev = NULL;
  79        int ret = -EINVAL;
  80        PHM_FUNC_CHECK(hwmgr);
  81        adev = hwmgr->adev;
  82
  83        /* Skip for suspend/resume case */
  84        if (!hwmgr->pp_one_vf && smum_is_dpm_running(hwmgr)
  85            && !amdgpu_passthrough(adev) && adev->in_suspend) {
  86                pr_info("dpm has been enabled\n");
  87                return 0;
  88        }
  89
  90        if (NULL != hwmgr->hwmgr_func->dynamic_state_management_enable)
  91                ret = hwmgr->hwmgr_func->dynamic_state_management_enable(hwmgr);
  92
  93        return ret;
  94}
  95
  96int phm_disable_dynamic_state_management(struct pp_hwmgr *hwmgr)
  97{
  98        int ret = -EINVAL;
  99
 100        PHM_FUNC_CHECK(hwmgr);
 101
 102        if (!hwmgr->not_vf)
 103                return 0;
 104
 105        if (!smum_is_dpm_running(hwmgr)) {
 106                pr_info("dpm has been disabled\n");
 107                return 0;
 108        }
 109
 110        if (hwmgr->hwmgr_func->dynamic_state_management_disable)
 111                ret = hwmgr->hwmgr_func->dynamic_state_management_disable(hwmgr);
 112
 113        return ret;
 114}
 115
 116int phm_force_dpm_levels(struct pp_hwmgr *hwmgr, enum amd_dpm_forced_level level)
 117{
 118        int ret = 0;
 119
 120        PHM_FUNC_CHECK(hwmgr);
 121
 122        if (hwmgr->hwmgr_func->force_dpm_level != NULL)
 123                ret = hwmgr->hwmgr_func->force_dpm_level(hwmgr, level);
 124
 125        return ret;
 126}
 127
 128int phm_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
 129                                   struct pp_power_state *adjusted_ps,
 130                             const struct pp_power_state *current_ps)
 131{
 132        PHM_FUNC_CHECK(hwmgr);
 133
 134        if (hwmgr->hwmgr_func->apply_state_adjust_rules != NULL)
 135                return hwmgr->hwmgr_func->apply_state_adjust_rules(
 136                                                                        hwmgr,
 137                                                                 adjusted_ps,
 138                                                                 current_ps);
 139        return 0;
 140}
 141
 142int phm_apply_clock_adjust_rules(struct pp_hwmgr *hwmgr)
 143{
 144        PHM_FUNC_CHECK(hwmgr);
 145
 146        if (hwmgr->hwmgr_func->apply_clocks_adjust_rules != NULL)
 147                return hwmgr->hwmgr_func->apply_clocks_adjust_rules(hwmgr);
 148        return 0;
 149}
 150
 151int phm_powerdown_uvd(struct pp_hwmgr *hwmgr)
 152{
 153        PHM_FUNC_CHECK(hwmgr);
 154
 155        if (hwmgr->hwmgr_func->powerdown_uvd != NULL)
 156                return hwmgr->hwmgr_func->powerdown_uvd(hwmgr);
 157        return 0;
 158}
 159
 160
 161int phm_disable_clock_power_gatings(struct pp_hwmgr *hwmgr)
 162{
 163        PHM_FUNC_CHECK(hwmgr);
 164
 165        if (NULL != hwmgr->hwmgr_func->disable_clock_power_gating)
 166                return hwmgr->hwmgr_func->disable_clock_power_gating(hwmgr);
 167
 168        return 0;
 169}
 170
 171int phm_pre_display_configuration_changed(struct pp_hwmgr *hwmgr)
 172{
 173        PHM_FUNC_CHECK(hwmgr);
 174
 175        if (NULL != hwmgr->hwmgr_func->pre_display_config_changed)
 176                hwmgr->hwmgr_func->pre_display_config_changed(hwmgr);
 177
 178        return 0;
 179
 180}
 181
 182int phm_display_configuration_changed(struct pp_hwmgr *hwmgr)
 183{
 184        PHM_FUNC_CHECK(hwmgr);
 185
 186        if (NULL != hwmgr->hwmgr_func->display_config_changed)
 187                hwmgr->hwmgr_func->display_config_changed(hwmgr);
 188
 189        return 0;
 190}
 191
 192int phm_notify_smc_display_config_after_ps_adjustment(struct pp_hwmgr *hwmgr)
 193{
 194        PHM_FUNC_CHECK(hwmgr);
 195
 196        if (NULL != hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment)
 197                        hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment(hwmgr);
 198
 199        return 0;
 200}
 201
 202int phm_stop_thermal_controller(struct pp_hwmgr *hwmgr)
 203{
 204        PHM_FUNC_CHECK(hwmgr);
 205
 206        if (!hwmgr->not_vf)
 207                return 0;
 208
 209        if (hwmgr->hwmgr_func->stop_thermal_controller == NULL)
 210                return -EINVAL;
 211
 212        return hwmgr->hwmgr_func->stop_thermal_controller(hwmgr);
 213}
 214
 215int phm_register_irq_handlers(struct pp_hwmgr *hwmgr)
 216{
 217        PHM_FUNC_CHECK(hwmgr);
 218
 219        if (hwmgr->hwmgr_func->register_irq_handlers != NULL)
 220                return hwmgr->hwmgr_func->register_irq_handlers(hwmgr);
 221
 222        return 0;
 223}
 224
 225/**
 226* Initializes the thermal controller subsystem.
 227*
 228* @param    pHwMgr  the address of the powerplay hardware manager.
 229* @exception PP_Result_Failed if any of the paramters is NULL, otherwise the return value from the dispatcher.
 230*/
 231int phm_start_thermal_controller(struct pp_hwmgr *hwmgr)
 232{
 233        int ret = 0;
 234        struct PP_TemperatureRange range = {
 235                TEMP_RANGE_MIN,
 236                TEMP_RANGE_MAX,
 237                TEMP_RANGE_MAX,
 238                TEMP_RANGE_MIN,
 239                TEMP_RANGE_MAX,
 240                TEMP_RANGE_MAX,
 241                TEMP_RANGE_MIN,
 242                TEMP_RANGE_MAX,
 243                TEMP_RANGE_MAX};
 244        struct amdgpu_device *adev = hwmgr->adev;
 245
 246        if (!hwmgr->not_vf)
 247                return 0;
 248
 249        if (hwmgr->hwmgr_func->get_thermal_temperature_range)
 250                hwmgr->hwmgr_func->get_thermal_temperature_range(
 251                                hwmgr, &range);
 252
 253        if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
 254                        PHM_PlatformCaps_ThermalController)
 255                        && hwmgr->hwmgr_func->start_thermal_controller != NULL)
 256                ret = hwmgr->hwmgr_func->start_thermal_controller(hwmgr, &range);
 257
 258        adev->pm.dpm.thermal.min_temp = range.min;
 259        adev->pm.dpm.thermal.max_temp = range.max;
 260        adev->pm.dpm.thermal.max_edge_emergency_temp = range.edge_emergency_max;
 261        adev->pm.dpm.thermal.min_hotspot_temp = range.hotspot_min;
 262        adev->pm.dpm.thermal.max_hotspot_crit_temp = range.hotspot_crit_max;
 263        adev->pm.dpm.thermal.max_hotspot_emergency_temp = range.hotspot_emergency_max;
 264        adev->pm.dpm.thermal.min_mem_temp = range.mem_min;
 265        adev->pm.dpm.thermal.max_mem_crit_temp = range.mem_crit_max;
 266        adev->pm.dpm.thermal.max_mem_emergency_temp = range.mem_emergency_max;
 267
 268        return ret;
 269}
 270
 271
 272bool phm_check_smc_update_required_for_display_configuration(struct pp_hwmgr *hwmgr)
 273{
 274        PHM_FUNC_CHECK(hwmgr);
 275        if (hwmgr->pp_one_vf)
 276                return false;
 277
 278        if (hwmgr->hwmgr_func->check_smc_update_required_for_display_configuration == NULL)
 279                return false;
 280
 281        return hwmgr->hwmgr_func->check_smc_update_required_for_display_configuration(hwmgr);
 282}
 283
 284
 285int phm_check_states_equal(struct pp_hwmgr *hwmgr,
 286                                 const struct pp_hw_power_state *pstate1,
 287                                 const struct pp_hw_power_state *pstate2,
 288                                 bool *equal)
 289{
 290        PHM_FUNC_CHECK(hwmgr);
 291
 292        if (hwmgr->hwmgr_func->check_states_equal == NULL)
 293                return -EINVAL;
 294
 295        return hwmgr->hwmgr_func->check_states_equal(hwmgr, pstate1, pstate2, equal);
 296}
 297
 298int phm_store_dal_configuration_data(struct pp_hwmgr *hwmgr,
 299                    const struct amd_pp_display_configuration *display_config)
 300{
 301        int index = 0;
 302        int number_of_active_display = 0;
 303
 304        PHM_FUNC_CHECK(hwmgr);
 305
 306        if (display_config == NULL)
 307                return -EINVAL;
 308
 309        if (NULL != hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk)
 310                hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk(hwmgr, display_config->min_dcef_deep_sleep_set_clk);
 311
 312        for (index = 0; index < display_config->num_path_including_non_display; index++) {
 313                if (display_config->displays[index].controller_id != 0)
 314                        number_of_active_display++;
 315        }
 316
 317        if (NULL != hwmgr->hwmgr_func->set_active_display_count)
 318                hwmgr->hwmgr_func->set_active_display_count(hwmgr, number_of_active_display);
 319
 320        if (hwmgr->hwmgr_func->store_cc6_data == NULL)
 321                return -EINVAL;
 322
 323        /* TODO: pass other display configuration in the future */
 324
 325        if (hwmgr->hwmgr_func->store_cc6_data)
 326                hwmgr->hwmgr_func->store_cc6_data(hwmgr,
 327                                display_config->cpu_pstate_separation_time,
 328                                display_config->cpu_cc6_disable,
 329                                display_config->cpu_pstate_disable,
 330                                display_config->nb_pstate_switch_disable);
 331
 332        return 0;
 333}
 334
 335int phm_get_dal_power_level(struct pp_hwmgr *hwmgr,
 336                struct amd_pp_simple_clock_info *info)
 337{
 338        PHM_FUNC_CHECK(hwmgr);
 339
 340        if (info == NULL || hwmgr->hwmgr_func->get_dal_power_level == NULL)
 341                return -EINVAL;
 342        return hwmgr->hwmgr_func->get_dal_power_level(hwmgr, info);
 343}
 344
 345int phm_set_cpu_power_state(struct pp_hwmgr *hwmgr)
 346{
 347        PHM_FUNC_CHECK(hwmgr);
 348
 349        if (hwmgr->hwmgr_func->set_cpu_power_state != NULL)
 350                return hwmgr->hwmgr_func->set_cpu_power_state(hwmgr);
 351
 352        return 0;
 353}
 354
 355
 356int phm_get_performance_level(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state,
 357                                PHM_PerformanceLevelDesignation designation, uint32_t index,
 358                                PHM_PerformanceLevel *level)
 359{
 360        PHM_FUNC_CHECK(hwmgr);
 361        if (hwmgr->hwmgr_func->get_performance_level == NULL)
 362                return -EINVAL;
 363
 364        return hwmgr->hwmgr_func->get_performance_level(hwmgr, state, designation, index, level);
 365
 366
 367}
 368
 369
 370/**
 371* Gets Clock Info.
 372*
 373* @param    pHwMgr  the address of the powerplay hardware manager.
 374* @param    pPowerState the address of the Power State structure.
 375* @param    pClockInfo the address of PP_ClockInfo structure where the result will be returned.
 376* @exception PP_Result_Failed if any of the paramters is NULL, otherwise the return value from the back-end.
 377*/
 378int phm_get_clock_info(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *pclock_info,
 379                        PHM_PerformanceLevelDesignation designation)
 380{
 381        int result;
 382        PHM_PerformanceLevel performance_level = {0};
 383
 384        PHM_FUNC_CHECK(hwmgr);
 385
 386        PP_ASSERT_WITH_CODE((NULL != state), "Invalid Input!", return -EINVAL);
 387        PP_ASSERT_WITH_CODE((NULL != pclock_info), "Invalid Input!", return -EINVAL);
 388
 389        result = phm_get_performance_level(hwmgr, state, PHM_PerformanceLevelDesignation_Activity, 0, &performance_level);
 390
 391        PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve minimum clocks.", return result);
 392
 393
 394        pclock_info->min_mem_clk = performance_level.memory_clock;
 395        pclock_info->min_eng_clk = performance_level.coreClock;
 396        pclock_info->min_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
 397
 398
 399        result = phm_get_performance_level(hwmgr, state, designation,
 400                                        (hwmgr->platform_descriptor.hardwareActivityPerformanceLevels - 1), &performance_level);
 401
 402        PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve maximum clocks.", return result);
 403
 404        pclock_info->max_mem_clk = performance_level.memory_clock;
 405        pclock_info->max_eng_clk = performance_level.coreClock;
 406        pclock_info->max_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
 407
 408        return 0;
 409}
 410
 411int phm_get_current_shallow_sleep_clocks(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *clock_info)
 412{
 413        PHM_FUNC_CHECK(hwmgr);
 414
 415        if (hwmgr->hwmgr_func->get_current_shallow_sleep_clocks == NULL)
 416                return -EINVAL;
 417
 418        return hwmgr->hwmgr_func->get_current_shallow_sleep_clocks(hwmgr, state, clock_info);
 419
 420}
 421
 422int phm_get_clock_by_type(struct pp_hwmgr *hwmgr, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
 423{
 424        PHM_FUNC_CHECK(hwmgr);
 425
 426        if (hwmgr->hwmgr_func->get_clock_by_type == NULL)
 427                return -EINVAL;
 428
 429        return hwmgr->hwmgr_func->get_clock_by_type(hwmgr, type, clocks);
 430
 431}
 432
 433int phm_get_clock_by_type_with_latency(struct pp_hwmgr *hwmgr,
 434                enum amd_pp_clock_type type,
 435                struct pp_clock_levels_with_latency *clocks)
 436{
 437        PHM_FUNC_CHECK(hwmgr);
 438
 439        if (hwmgr->hwmgr_func->get_clock_by_type_with_latency == NULL)
 440                return -EINVAL;
 441
 442        return hwmgr->hwmgr_func->get_clock_by_type_with_latency(hwmgr, type, clocks);
 443
 444}
 445
 446int phm_get_clock_by_type_with_voltage(struct pp_hwmgr *hwmgr,
 447                enum amd_pp_clock_type type,
 448                struct pp_clock_levels_with_voltage *clocks)
 449{
 450        PHM_FUNC_CHECK(hwmgr);
 451
 452        if (hwmgr->hwmgr_func->get_clock_by_type_with_voltage == NULL)
 453                return -EINVAL;
 454
 455        return hwmgr->hwmgr_func->get_clock_by_type_with_voltage(hwmgr, type, clocks);
 456
 457}
 458
 459int phm_set_watermarks_for_clocks_ranges(struct pp_hwmgr *hwmgr,
 460                                        void *clock_ranges)
 461{
 462        PHM_FUNC_CHECK(hwmgr);
 463
 464        if (!hwmgr->hwmgr_func->set_watermarks_for_clocks_ranges)
 465                return -EINVAL;
 466
 467        return hwmgr->hwmgr_func->set_watermarks_for_clocks_ranges(hwmgr,
 468                                                                clock_ranges);
 469}
 470
 471int phm_display_clock_voltage_request(struct pp_hwmgr *hwmgr,
 472                struct pp_display_clock_request *clock)
 473{
 474        PHM_FUNC_CHECK(hwmgr);
 475
 476        if (!hwmgr->hwmgr_func->display_clock_voltage_request)
 477                return -EINVAL;
 478
 479        return hwmgr->hwmgr_func->display_clock_voltage_request(hwmgr, clock);
 480}
 481
 482int phm_get_max_high_clocks(struct pp_hwmgr *hwmgr, struct amd_pp_simple_clock_info *clocks)
 483{
 484        PHM_FUNC_CHECK(hwmgr);
 485
 486        if (hwmgr->hwmgr_func->get_max_high_clocks == NULL)
 487                return -EINVAL;
 488
 489        return hwmgr->hwmgr_func->get_max_high_clocks(hwmgr, clocks);
 490}
 491
 492int phm_disable_smc_firmware_ctf(struct pp_hwmgr *hwmgr)
 493{
 494        PHM_FUNC_CHECK(hwmgr);
 495
 496        if (!hwmgr->not_vf)
 497                return 0;
 498
 499        if (hwmgr->hwmgr_func->disable_smc_firmware_ctf == NULL)
 500                return -EINVAL;
 501
 502        return hwmgr->hwmgr_func->disable_smc_firmware_ctf(hwmgr);
 503}
 504
 505int phm_set_active_display_count(struct pp_hwmgr *hwmgr, uint32_t count)
 506{
 507        PHM_FUNC_CHECK(hwmgr);
 508
 509        if (!hwmgr->hwmgr_func->set_active_display_count)
 510                return -EINVAL;
 511
 512        return hwmgr->hwmgr_func->set_active_display_count(hwmgr, count);
 513}
 514
 515int phm_set_min_deep_sleep_dcefclk(struct pp_hwmgr *hwmgr, uint32_t clock)
 516{
 517        PHM_FUNC_CHECK(hwmgr);
 518
 519        if (!hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk)
 520                return -EINVAL;
 521
 522        return hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk(hwmgr, clock);
 523}
 524
 525int phm_set_hard_min_dcefclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
 526{
 527        PHM_FUNC_CHECK(hwmgr);
 528
 529        if (!hwmgr->hwmgr_func->set_hard_min_dcefclk_by_freq)
 530                return -EINVAL;
 531
 532        return hwmgr->hwmgr_func->set_hard_min_dcefclk_by_freq(hwmgr, clock);
 533}
 534
 535int phm_set_hard_min_fclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
 536{
 537        PHM_FUNC_CHECK(hwmgr);
 538
 539        if (!hwmgr->hwmgr_func->set_hard_min_fclk_by_freq)
 540                return -EINVAL;
 541
 542        return hwmgr->hwmgr_func->set_hard_min_fclk_by_freq(hwmgr, clock);
 543}
 544
 545