Linux-libre 4.14.132-gnu
[librecmc/linux-libre.git] / drivers / gpu / drm / amd / powerplay / hwmgr / vega10_thermal.h
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
24 #ifndef VEGA10_THERMAL_H
25 #define VEGA10_THERMAL_H
26
27 #include "hwmgr.h"
28
29 struct vega10_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 VEGA10_THERMAL_HIGH_ALERT_MASK         0x1
41 #define VEGA10_THERMAL_LOW_ALERT_MASK          0x2
42
43 #define VEGA10_THERMAL_MINIMUM_TEMP_READING    -256
44 #define VEGA10_THERMAL_MAXIMUM_TEMP_READING    255
45
46 #define VEGA10_THERMAL_MINIMUM_ALERT_TEMP      0
47 #define VEGA10_THERMAL_MAXIMUM_ALERT_TEMP      255
48
49 #define FDO_PWM_MODE_STATIC  1
50 #define FDO_PWM_MODE_STATIC_RPM 5
51
52
53 extern int tf_vega10_thermal_initialize(struct pp_hwmgr *hwmgr,
54                 void *input, void *output, void *storage, int result);
55 extern int tf_vega10_thermal_set_temperature_range(struct pp_hwmgr *hwmgr,
56                 void *input, void *output, void *storage, int result);
57 extern int tf_vega10_thermal_enable_alert(struct pp_hwmgr *hwmgr,
58                 void *input, void *output, void *storage, int result);
59
60 extern int vega10_thermal_get_temperature(struct pp_hwmgr *hwmgr);
61 extern int vega10_thermal_stop_thermal_controller(struct pp_hwmgr *hwmgr);
62 extern int vega10_fan_ctrl_get_fan_speed_info(struct pp_hwmgr *hwmgr,
63                 struct phm_fan_speed_info *fan_speed_info);
64 extern int vega10_fan_ctrl_get_fan_speed_percent(struct pp_hwmgr *hwmgr,
65                 uint32_t *speed);
66 extern int vega10_fan_ctrl_set_default_mode(struct pp_hwmgr *hwmgr);
67 extern int vega10_fan_ctrl_set_static_mode(struct pp_hwmgr *hwmgr,
68                 uint32_t mode);
69 extern int vega10_fan_ctrl_set_fan_speed_percent(struct pp_hwmgr *hwmgr,
70                 uint32_t speed);
71 extern int vega10_fan_ctrl_reset_fan_speed_to_default(struct pp_hwmgr *hwmgr);
72 extern int pp_vega10_thermal_initialize(struct pp_hwmgr *hwmgr);
73 extern int vega10_thermal_ctrl_uninitialize_thermal_controller(
74                 struct pp_hwmgr *hwmgr);
75 extern int vega10_fan_ctrl_set_fan_speed_rpm(struct pp_hwmgr *hwmgr,
76                 uint32_t speed);
77 extern int vega10_fan_ctrl_get_fan_speed_rpm(struct pp_hwmgr *hwmgr,
78                 uint32_t *speed);
79 extern int vega10_fan_ctrl_stop_smc_fan_control(struct pp_hwmgr *hwmgr);
80 extern uint32_t smu7_get_xclk(struct pp_hwmgr *hwmgr);
81 extern int vega10_thermal_disable_alert(struct pp_hwmgr *hwmgr);
82 int vega10_fan_ctrl_start_smc_fan_control(struct pp_hwmgr *hwmgr);
83
84 #endif
85