2 * Copyright 2016 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.
24 #include "vega10_thermal.h"
25 #include "vega10_hwmgr.h"
26 #include "vega10_smumgr.h"
27 #include "vega10_ppsmc.h"
28 #include "vega10_inc.h"
29 #include "soc15_common.h"
32 static int vega10_get_current_rpm(struct pp_hwmgr
*hwmgr
, uint32_t *current_rpm
)
34 smum_send_msg_to_smc(hwmgr
, PPSMC_MSG_GetCurrentRpm
);
35 *current_rpm
= smum_get_argument(hwmgr
);
39 int vega10_fan_ctrl_get_fan_speed_info(struct pp_hwmgr
*hwmgr
,
40 struct phm_fan_speed_info
*fan_speed_info
)
43 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
46 fan_speed_info
->supports_percent_read
= true;
47 fan_speed_info
->supports_percent_write
= true;
48 fan_speed_info
->min_percent
= 0;
49 fan_speed_info
->max_percent
= 100;
51 if (PP_CAP(PHM_PlatformCaps_FanSpeedInTableIsRPM
) &&
52 hwmgr
->thermal_controller
.fanInfo
.
53 ucTachometerPulsesPerRevolution
) {
54 fan_speed_info
->supports_rpm_read
= true;
55 fan_speed_info
->supports_rpm_write
= true;
56 fan_speed_info
->min_rpm
=
57 hwmgr
->thermal_controller
.fanInfo
.ulMinRPM
;
58 fan_speed_info
->max_rpm
=
59 hwmgr
->thermal_controller
.fanInfo
.ulMaxRPM
;
61 fan_speed_info
->min_rpm
= 0;
62 fan_speed_info
->max_rpm
= 0;
68 int vega10_fan_ctrl_get_fan_speed_percent(struct pp_hwmgr
*hwmgr
,
74 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
77 if (vega10_get_current_rpm(hwmgr
, ¤t_rpm
))
80 if (hwmgr
->thermal_controller
.
81 advanceFanControlParameters
.usMaxFanRPM
!= 0)
82 percent
= current_rpm
* 100 /
83 hwmgr
->thermal_controller
.
84 advanceFanControlParameters
.usMaxFanRPM
;
86 *speed
= percent
> 100 ? 100 : percent
;
91 int vega10_fan_ctrl_get_fan_speed_rpm(struct pp_hwmgr
*hwmgr
, uint32_t *speed
)
93 struct amdgpu_device
*adev
= hwmgr
->adev
;
94 struct vega10_hwmgr
*data
= hwmgr
->backend
;
96 uint32_t crystal_clock_freq
;
99 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
102 if (data
->smu_features
[GNLD_FAN_CONTROL
].supported
) {
103 result
= vega10_get_current_rpm(hwmgr
, speed
);
106 REG_GET_FIELD(RREG32_SOC15(THM
, 0, mmCG_TACH_STATUS
),
110 if (tach_period
== 0)
113 crystal_clock_freq
= amdgpu_asic_get_xclk((struct amdgpu_device
*)hwmgr
->adev
);
115 *speed
= 60 * crystal_clock_freq
* 10000 / tach_period
;
122 * Set Fan Speed Control to static mode,
123 * so that the user can decide what speed to use.
124 * @param hwmgr the address of the powerplay hardware manager.
125 * mode the fan control mode, 0 default, 1 by percent, 5, by RPM
126 * @exception Should always succeed.
128 int vega10_fan_ctrl_set_static_mode(struct pp_hwmgr
*hwmgr
, uint32_t mode
)
130 struct amdgpu_device
*adev
= hwmgr
->adev
;
132 if (hwmgr
->fan_ctrl_is_in_default_mode
) {
133 hwmgr
->fan_ctrl_default_mode
=
134 REG_GET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
135 CG_FDO_CTRL2
, FDO_PWM_MODE
);
137 REG_GET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
139 hwmgr
->fan_ctrl_is_in_default_mode
= false;
142 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
,
143 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
144 CG_FDO_CTRL2
, TMIN
, 0));
145 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
,
146 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
147 CG_FDO_CTRL2
, FDO_PWM_MODE
, mode
));
153 * Reset Fan Speed Control to default mode.
154 * @param hwmgr the address of the powerplay hardware manager.
155 * @exception Should always succeed.
157 int vega10_fan_ctrl_set_default_mode(struct pp_hwmgr
*hwmgr
)
159 struct amdgpu_device
*adev
= hwmgr
->adev
;
161 if (!hwmgr
->fan_ctrl_is_in_default_mode
) {
162 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
,
163 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
164 CG_FDO_CTRL2
, FDO_PWM_MODE
,
165 hwmgr
->fan_ctrl_default_mode
));
166 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
,
167 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
169 hwmgr
->tmin
<< CG_FDO_CTRL2__TMIN__SHIFT
));
170 hwmgr
->fan_ctrl_is_in_default_mode
= true;
177 * @fn vega10_enable_fan_control_feature
178 * @brief Enables the SMC Fan Control Feature.
180 * @param hwmgr - the address of the powerplay hardware manager.
181 * @return 0 on success. -1 otherwise.
183 static int vega10_enable_fan_control_feature(struct pp_hwmgr
*hwmgr
)
185 struct vega10_hwmgr
*data
= hwmgr
->backend
;
187 if (data
->smu_features
[GNLD_FAN_CONTROL
].supported
) {
188 PP_ASSERT_WITH_CODE(!vega10_enable_smc_features(
190 data
->smu_features
[GNLD_FAN_CONTROL
].
192 "Attempt to Enable FAN CONTROL feature Failed!",
194 data
->smu_features
[GNLD_FAN_CONTROL
].enabled
= true;
200 static int vega10_disable_fan_control_feature(struct pp_hwmgr
*hwmgr
)
202 struct vega10_hwmgr
*data
= hwmgr
->backend
;
204 if (data
->smu_features
[GNLD_FAN_CONTROL
].supported
) {
205 PP_ASSERT_WITH_CODE(!vega10_enable_smc_features(
207 data
->smu_features
[GNLD_FAN_CONTROL
].
209 "Attempt to Enable FAN CONTROL feature Failed!",
211 data
->smu_features
[GNLD_FAN_CONTROL
].enabled
= false;
217 int vega10_fan_ctrl_start_smc_fan_control(struct pp_hwmgr
*hwmgr
)
219 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
222 PP_ASSERT_WITH_CODE(!vega10_enable_fan_control_feature(hwmgr
),
223 "Attempt to Enable SMC FAN CONTROL Feature Failed!",
230 int vega10_fan_ctrl_stop_smc_fan_control(struct pp_hwmgr
*hwmgr
)
232 struct vega10_hwmgr
*data
= hwmgr
->backend
;
234 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
237 if (data
->smu_features
[GNLD_FAN_CONTROL
].supported
) {
238 PP_ASSERT_WITH_CODE(!vega10_disable_fan_control_feature(hwmgr
),
239 "Attempt to Disable SMC FAN CONTROL Feature Failed!",
246 * Set Fan Speed in percent.
247 * @param hwmgr the address of the powerplay hardware manager.
248 * @param speed is the percentage value (0% - 100%) to be set.
249 * @exception Fails is the 100% setting appears to be 0.
251 int vega10_fan_ctrl_set_fan_speed_percent(struct pp_hwmgr
*hwmgr
,
254 struct amdgpu_device
*adev
= hwmgr
->adev
;
259 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
265 if (PP_CAP(PHM_PlatformCaps_MicrocodeFanControl
))
266 vega10_fan_ctrl_stop_smc_fan_control(hwmgr
);
268 duty100
= REG_GET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL1
),
269 CG_FDO_CTRL1
, FMAX_DUTY100
);
274 tmp64
= (uint64_t)speed
* duty100
;
276 duty
= (uint32_t)tmp64
;
278 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL0
,
279 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL0
),
280 CG_FDO_CTRL0
, FDO_STATIC_DUTY
, duty
));
282 return vega10_fan_ctrl_set_static_mode(hwmgr
, FDO_PWM_MODE_STATIC
);
286 * Reset Fan Speed to default.
287 * @param hwmgr the address of the powerplay hardware manager.
288 * @exception Always succeeds.
290 int vega10_fan_ctrl_reset_fan_speed_to_default(struct pp_hwmgr
*hwmgr
)
292 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
295 if (PP_CAP(PHM_PlatformCaps_MicrocodeFanControl
))
296 return vega10_fan_ctrl_start_smc_fan_control(hwmgr
);
298 return vega10_fan_ctrl_set_default_mode(hwmgr
);
302 * Set Fan Speed in RPM.
303 * @param hwmgr the address of the powerplay hardware manager.
304 * @param speed is the percentage value (min - max) to be set.
305 * @exception Fails is the speed not lie between min and max.
307 int vega10_fan_ctrl_set_fan_speed_rpm(struct pp_hwmgr
*hwmgr
, uint32_t speed
)
309 struct amdgpu_device
*adev
= hwmgr
->adev
;
310 uint32_t tach_period
;
311 uint32_t crystal_clock_freq
;
314 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
||
316 (speed
< hwmgr
->thermal_controller
.fanInfo
.ulMinRPM
) ||
317 (speed
> hwmgr
->thermal_controller
.fanInfo
.ulMaxRPM
))
320 if (PP_CAP(PHM_PlatformCaps_MicrocodeFanControl
))
321 result
= vega10_fan_ctrl_stop_smc_fan_control(hwmgr
);
324 crystal_clock_freq
= amdgpu_asic_get_xclk((struct amdgpu_device
*)hwmgr
->adev
);
325 tach_period
= 60 * crystal_clock_freq
* 10000 / (8 * speed
);
326 WREG32_SOC15(THM
, 0, mmCG_TACH_CTRL
,
327 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_TACH_CTRL
),
328 CG_TACH_CTRL
, TARGET_PERIOD
,
331 return vega10_fan_ctrl_set_static_mode(hwmgr
, FDO_PWM_MODE_STATIC_RPM
);
335 * Reads the remote temperature from the SIslands thermal controller.
337 * @param hwmgr The address of the hardware manager.
339 int vega10_thermal_get_temperature(struct pp_hwmgr
*hwmgr
)
341 struct amdgpu_device
*adev
= hwmgr
->adev
;
344 temp
= RREG32_SOC15(THM
, 0, mmCG_MULT_THERMAL_STATUS
);
346 temp
= (temp
& CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK
) >>
347 CG_MULT_THERMAL_STATUS__CTF_TEMP__SHIFT
;
351 temp
*= PP_TEMPERATURE_UNITS_PER_CENTIGRADES
;
357 * Set the requested temperature range for high and low alert signals
359 * @param hwmgr The address of the hardware manager.
360 * @param range Temperature range to be programmed for
361 * high and low alert signals
362 * @exception PP_Result_BadInput if the input data is not valid.
364 static int vega10_thermal_set_temperature_range(struct pp_hwmgr
*hwmgr
,
365 struct PP_TemperatureRange
*range
)
367 struct amdgpu_device
*adev
= hwmgr
->adev
;
368 int low
= VEGA10_THERMAL_MINIMUM_ALERT_TEMP
*
369 PP_TEMPERATURE_UNITS_PER_CENTIGRADES
;
370 int high
= VEGA10_THERMAL_MAXIMUM_ALERT_TEMP
*
371 PP_TEMPERATURE_UNITS_PER_CENTIGRADES
;
374 if (low
< range
->min
)
376 if (high
> range
->max
)
382 val
= RREG32_SOC15(THM
, 0, mmTHM_THERMAL_INT_CTRL
);
384 val
= REG_SET_FIELD(val
, THM_THERMAL_INT_CTRL
, MAX_IH_CREDIT
, 5);
385 val
= REG_SET_FIELD(val
, THM_THERMAL_INT_CTRL
, THERM_IH_HW_ENA
, 1);
386 val
= REG_SET_FIELD(val
, THM_THERMAL_INT_CTRL
, DIG_THERM_INTH
, (high
/ PP_TEMPERATURE_UNITS_PER_CENTIGRADES
));
387 val
= REG_SET_FIELD(val
, THM_THERMAL_INT_CTRL
, DIG_THERM_INTL
, (low
/ PP_TEMPERATURE_UNITS_PER_CENTIGRADES
));
388 val
&= (~THM_THERMAL_INT_CTRL__THERM_TRIGGER_MASK_MASK
) &
389 (~THM_THERMAL_INT_CTRL__THERM_INTH_MASK_MASK
) &
390 (~THM_THERMAL_INT_CTRL__THERM_INTL_MASK_MASK
);
392 WREG32_SOC15(THM
, 0, mmTHM_THERMAL_INT_CTRL
, val
);
398 * Programs thermal controller one-time setting registers
400 * @param hwmgr The address of the hardware manager.
402 static int vega10_thermal_initialize(struct pp_hwmgr
*hwmgr
)
404 struct amdgpu_device
*adev
= hwmgr
->adev
;
406 if (hwmgr
->thermal_controller
.fanInfo
.ucTachometerPulsesPerRevolution
) {
407 WREG32_SOC15(THM
, 0, mmCG_TACH_CTRL
,
408 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_TACH_CTRL
),
409 CG_TACH_CTRL
, EDGE_PER_REV
,
410 hwmgr
->thermal_controller
.fanInfo
.ucTachometerPulsesPerRevolution
- 1));
413 WREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
,
414 REG_SET_FIELD(RREG32_SOC15(THM
, 0, mmCG_FDO_CTRL2
),
415 CG_FDO_CTRL2
, TACH_PWM_RESP_RATE
, 0x28));
421 * Enable thermal alerts on the RV770 thermal controller.
423 * @param hwmgr The address of the hardware manager.
425 static int vega10_thermal_enable_alert(struct pp_hwmgr
*hwmgr
)
427 struct amdgpu_device
*adev
= hwmgr
->adev
;
428 struct vega10_hwmgr
*data
= hwmgr
->backend
;
431 if (data
->smu_features
[GNLD_FW_CTF
].supported
) {
432 if (data
->smu_features
[GNLD_FW_CTF
].enabled
)
433 printk("[Thermal_EnableAlert] FW CTF Already Enabled!\n");
435 PP_ASSERT_WITH_CODE(!vega10_enable_smc_features(hwmgr
,
437 data
->smu_features
[GNLD_FW_CTF
].smu_feature_bitmap
),
438 "Attempt to Enable FW CTF feature Failed!",
440 data
->smu_features
[GNLD_FW_CTF
].enabled
= true;
443 val
|= (1 << THM_THERMAL_INT_ENA__THERM_INTH_CLR__SHIFT
);
444 val
|= (1 << THM_THERMAL_INT_ENA__THERM_INTL_CLR__SHIFT
);
445 val
|= (1 << THM_THERMAL_INT_ENA__THERM_TRIGGER_CLR__SHIFT
);
447 WREG32_SOC15(THM
, 0, mmTHM_THERMAL_INT_ENA
, val
);
453 * Disable thermal alerts on the RV770 thermal controller.
454 * @param hwmgr The address of the hardware manager.
456 int vega10_thermal_disable_alert(struct pp_hwmgr
*hwmgr
)
458 struct amdgpu_device
*adev
= hwmgr
->adev
;
459 struct vega10_hwmgr
*data
= hwmgr
->backend
;
461 if (data
->smu_features
[GNLD_FW_CTF
].supported
) {
462 if (!data
->smu_features
[GNLD_FW_CTF
].enabled
)
463 printk("[Thermal_EnableAlert] FW CTF Already disabled!\n");
466 PP_ASSERT_WITH_CODE(!vega10_enable_smc_features(hwmgr
,
468 data
->smu_features
[GNLD_FW_CTF
].smu_feature_bitmap
),
469 "Attempt to disable FW CTF feature Failed!",
471 data
->smu_features
[GNLD_FW_CTF
].enabled
= false;
474 WREG32_SOC15(THM
, 0, mmTHM_THERMAL_INT_ENA
, 0);
480 * Uninitialize the thermal controller.
481 * Currently just disables alerts.
482 * @param hwmgr The address of the hardware manager.
484 int vega10_thermal_stop_thermal_controller(struct pp_hwmgr
*hwmgr
)
486 int result
= vega10_thermal_disable_alert(hwmgr
);
488 if (!hwmgr
->thermal_controller
.fanInfo
.bNoFan
)
489 vega10_fan_ctrl_set_default_mode(hwmgr
);
495 * Set up the fan table to control the fan using the SMC.
496 * @param hwmgr the address of the powerplay hardware manager.
497 * @param pInput the pointer to input data
498 * @param pOutput the pointer to output data
499 * @param pStorage the pointer to temporary storage
500 * @param Result the last failure code
501 * @return result from set temperature range routine
503 int vega10_thermal_setup_fan_table(struct pp_hwmgr
*hwmgr
)
506 struct vega10_hwmgr
*data
= hwmgr
->backend
;
507 PPTable_t
*table
= &(data
->smc_state_table
.pp_table
);
509 if (!data
->smu_features
[GNLD_FAN_CONTROL
].supported
)
512 table
->FanMaximumRpm
= (uint16_t)hwmgr
->thermal_controller
.
513 advanceFanControlParameters
.usMaxFanRPM
;
514 table
->FanThrottlingRpm
= hwmgr
->thermal_controller
.
515 advanceFanControlParameters
.usFanRPMMaxLimit
;
516 table
->FanAcousticLimitRpm
= (uint16_t)(hwmgr
->thermal_controller
.
517 advanceFanControlParameters
.ulMinFanSCLKAcousticLimit
);
518 table
->FanTargetTemperature
= hwmgr
->thermal_controller
.
519 advanceFanControlParameters
.usTMax
;
521 smum_send_msg_to_smc_with_parameter(hwmgr
,
522 PPSMC_MSG_SetFanTemperatureTarget
,
523 (uint32_t)table
->FanTargetTemperature
);
525 table
->FanPwmMin
= hwmgr
->thermal_controller
.
526 advanceFanControlParameters
.usPWMMin
* 255 / 100;
527 table
->FanTargetGfxclk
= (uint16_t)(hwmgr
->thermal_controller
.
528 advanceFanControlParameters
.ulTargetGfxClk
);
529 table
->FanGainEdge
= hwmgr
->thermal_controller
.
530 advanceFanControlParameters
.usFanGainEdge
;
531 table
->FanGainHotspot
= hwmgr
->thermal_controller
.
532 advanceFanControlParameters
.usFanGainHotspot
;
533 table
->FanGainLiquid
= hwmgr
->thermal_controller
.
534 advanceFanControlParameters
.usFanGainLiquid
;
535 table
->FanGainVrVddc
= hwmgr
->thermal_controller
.
536 advanceFanControlParameters
.usFanGainVrVddc
;
537 table
->FanGainVrMvdd
= hwmgr
->thermal_controller
.
538 advanceFanControlParameters
.usFanGainVrMvdd
;
539 table
->FanGainPlx
= hwmgr
->thermal_controller
.
540 advanceFanControlParameters
.usFanGainPlx
;
541 table
->FanGainHbm
= hwmgr
->thermal_controller
.
542 advanceFanControlParameters
.usFanGainHbm
;
543 table
->FanZeroRpmEnable
= hwmgr
->thermal_controller
.
544 advanceFanControlParameters
.ucEnableZeroRPM
;
545 table
->FanStopTemp
= hwmgr
->thermal_controller
.
546 advanceFanControlParameters
.usZeroRPMStopTemperature
;
547 table
->FanStartTemp
= hwmgr
->thermal_controller
.
548 advanceFanControlParameters
.usZeroRPMStartTemperature
;
550 ret
= smum_smc_table_manager(hwmgr
,
551 (uint8_t *)(&(data
->smc_state_table
.pp_table
)),
554 pr_info("Failed to update Fan Control Table in PPTable!");
559 int vega10_enable_mgpu_fan_boost(struct pp_hwmgr
*hwmgr
)
561 struct vega10_hwmgr
*data
= hwmgr
->backend
;
562 PPTable_t
*table
= &(data
->smc_state_table
.pp_table
);
565 if (!data
->smu_features
[GNLD_FAN_CONTROL
].supported
)
568 if (!hwmgr
->thermal_controller
.advanceFanControlParameters
.
569 usMGpuThrottlingRPMLimit
)
572 table
->FanThrottlingRpm
= hwmgr
->thermal_controller
.
573 advanceFanControlParameters
.usMGpuThrottlingRPMLimit
;
575 ret
= smum_smc_table_manager(hwmgr
,
576 (uint8_t *)(&(data
->smc_state_table
.pp_table
)),
579 pr_info("Failed to update fan control table in pptable!");
583 ret
= vega10_disable_fan_control_feature(hwmgr
);
585 pr_info("Attempt to disable SMC fan control feature failed!");
589 ret
= vega10_enable_fan_control_feature(hwmgr
);
591 pr_info("Attempt to enable SMC fan control feature failed!");
597 * Start the fan control on the SMC.
598 * @param hwmgr the address of the powerplay hardware manager.
599 * @param pInput the pointer to input data
600 * @param pOutput the pointer to output data
601 * @param pStorage the pointer to temporary storage
602 * @param Result the last failure code
603 * @return result from set temperature range routine
605 int vega10_thermal_start_smc_fan_control(struct pp_hwmgr
*hwmgr
)
607 /* If the fantable setup has failed we could have disabled
608 * PHM_PlatformCaps_MicrocodeFanControl even after
609 * this function was included in the table.
610 * Make sure that we still think controlling the fan is OK.
612 if (PP_CAP(PHM_PlatformCaps_MicrocodeFanControl
))
613 vega10_fan_ctrl_start_smc_fan_control(hwmgr
);
619 int vega10_start_thermal_controller(struct pp_hwmgr
*hwmgr
,
620 struct PP_TemperatureRange
*range
)
627 vega10_thermal_initialize(hwmgr
);
628 ret
= vega10_thermal_set_temperature_range(hwmgr
, range
);
632 vega10_thermal_enable_alert(hwmgr
);
633 /* We should restrict performance levels to low before we halt the SMC.
634 * On the other hand we are still in boot state when we do this
635 * so it would be pointless.
636 * If this assumption changes we have to revisit this table.
638 ret
= vega10_thermal_setup_fan_table(hwmgr
);
642 vega10_thermal_start_smc_fan_control(hwmgr
);
650 int vega10_thermal_ctrl_uninitialize_thermal_controller(struct pp_hwmgr
*hwmgr
)
652 if (!hwmgr
->thermal_controller
.fanInfo
.bNoFan
) {
653 vega10_fan_ctrl_set_default_mode(hwmgr
);
654 vega10_fan_ctrl_stop_smc_fan_control(hwmgr
);