0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #ifndef VEGA12_THERMAL_H
0025 #define VEGA12_THERMAL_H
0026
0027 #include "hwmgr.h"
0028
0029 struct vega12_temperature {
0030 uint16_t edge_temp;
0031 uint16_t hot_spot_temp;
0032 uint16_t hbm_temp;
0033 uint16_t vr_soc_temp;
0034 uint16_t vr_mem_temp;
0035 uint16_t liquid1_temp;
0036 uint16_t liquid2_temp;
0037 uint16_t plx_temp;
0038 };
0039
0040 #define VEGA12_THERMAL_HIGH_ALERT_MASK 0x1
0041 #define VEGA12_THERMAL_LOW_ALERT_MASK 0x2
0042
0043 #define VEGA12_THERMAL_MINIMUM_TEMP_READING -256
0044 #define VEGA12_THERMAL_MAXIMUM_TEMP_READING 255
0045
0046 #define VEGA12_THERMAL_MINIMUM_ALERT_TEMP 0
0047 #define VEGA12_THERMAL_MAXIMUM_ALERT_TEMP 255
0048
0049 #define FDO_PWM_MODE_STATIC 1
0050 #define FDO_PWM_MODE_STATIC_RPM 5
0051
0052 extern int vega12_thermal_get_temperature(struct pp_hwmgr *hwmgr);
0053 extern int vega12_thermal_stop_thermal_controller(struct pp_hwmgr *hwmgr);
0054 extern int vega12_fan_ctrl_get_fan_speed_info(struct pp_hwmgr *hwmgr,
0055 struct phm_fan_speed_info *fan_speed_info);
0056 extern int vega12_fan_ctrl_reset_fan_speed_to_default(struct pp_hwmgr *hwmgr);
0057 extern int vega12_fan_ctrl_get_fan_speed_rpm(struct pp_hwmgr *hwmgr,
0058 uint32_t *speed);
0059 extern int vega12_fan_ctrl_stop_smc_fan_control(struct pp_hwmgr *hwmgr);
0060 extern int vega12_thermal_disable_alert(struct pp_hwmgr *hwmgr);
0061 extern int vega12_fan_ctrl_start_smc_fan_control(struct pp_hwmgr *hwmgr);
0062 extern int vega12_start_thermal_controller(struct pp_hwmgr *hwmgr,
0063 struct PP_TemperatureRange *range);
0064
0065 #endif
0066