Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright 2017 Advanced Micro Devices, Inc.
0003  *
0004  * Permission is hereby granted, free of charge, to any person obtaining a
0005  * copy of this software and associated documentation files (the "Software"),
0006  * to deal in the Software without restriction, including without limitation
0007  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
0008  * and/or sell copies of the Software, and to permit persons to whom the
0009  * Software is furnished to do so, subject to the following conditions:
0010  *
0011  * The above copyright notice and this permission notice shall be included in
0012  * all copies or substantial portions of the Software.
0013  *
0014  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
0018  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
0019  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
0020  * OTHER DEALINGS IN THE SOFTWARE.
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