1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 #ifndef VEGA20_THERMAL_H
25 #define VEGA20_THERMAL_H
26
27 #include "hwmgr.h"
28
29 struct vega20_temperature {
30 uint16_t edge_temp;
31 uint16_t hot_spot_temp;
32 uint16_t hbm_temp;
33 uint16_t vr_soc_temp;
34 uint16_t vr_mem_temp;
35 uint16_t liquid1_temp;
36 uint16_t liquid2_temp;
37 uint16_t plx_temp;
38 };
39
40 #define VEGA20_THERMAL_HIGH_ALERT_MASK 0x1
41 #define VEGA20_THERMAL_LOW_ALERT_MASK 0x2
42
43 #define VEGA20_THERMAL_MINIMUM_TEMP_READING -256
44 #define VEGA20_THERMAL_MAXIMUM_TEMP_READING 255
45
46 #define VEGA20_THERMAL_MINIMUM_ALERT_TEMP 0
47 #define VEGA20_THERMAL_MAXIMUM_ALERT_TEMP 255
48
49 #define FDO_PWM_MODE_STATIC 1
50 #define FDO_PWM_MODE_STATIC_RPM 5
51
52 extern int vega20_thermal_get_temperature(struct pp_hwmgr *hwmgr);
53 extern int vega20_fan_ctrl_get_fan_speed_info(struct pp_hwmgr *hwmgr,
54 struct phm_fan_speed_info *fan_speed_info);
55 extern int vega20_fan_ctrl_get_fan_speed_rpm(struct pp_hwmgr *hwmgr,
56 uint32_t *speed);
57 extern int vega20_fan_ctrl_set_fan_speed_rpm(struct pp_hwmgr *hwmgr,
58 uint32_t speed);
59 extern int vega20_fan_ctrl_get_fan_speed_percent(struct pp_hwmgr *hwmgr,
60 uint32_t *speed);
61 extern int vega20_fan_ctrl_set_fan_speed_percent(struct pp_hwmgr *hwmgr,
62 uint32_t speed);
63 extern int vega20_fan_ctrl_stop_smc_fan_control(struct pp_hwmgr *hwmgr);
64 extern int vega20_fan_ctrl_start_smc_fan_control(struct pp_hwmgr *hwmgr);
65 extern int vega20_thermal_disable_alert(struct pp_hwmgr *hwmgr);
66 extern int vega20_start_thermal_controller(struct pp_hwmgr *hwmgr,
67 struct PP_TemperatureRange *range);
68 extern int vega20_thermal_stop_thermal_controller(struct pp_hwmgr *hwmgr);
69
70 #endif
71