2015-12-04 14:47:52 +00:00
/**
2016-09-11 20:20:15 +00:00
* Author . . . . . . : See docs / credits . txt
2015-12-04 14:47:52 +00:00
* License . . . . . : MIT
*/
2016-09-06 16:44:05 +00:00
# ifndef _EXT_ADL_H
# define _EXT_ADL_H
2015-12-04 14:47:52 +00:00
2016-09-05 19:47:26 +00:00
# include <string.h>
2016-10-10 09:03:11 +00:00
# include <stdlib.h>
# if defined (_WIN)
# include <windows.h>
# endif // _WIN
2015-12-04 14:47:52 +00:00
2021-07-27 10:02:27 +00:00
// Declarations from:
// https://github.com/GPUOpen-LibrariesAndSDKs/display-library/blob/209538e1dc7273f7459411a3a5044ffe2437ed95/include/adl_defines.h
// https://github.com/GPUOpen-LibrariesAndSDKs/display-library/blob/209538e1dc7273f7459411a3a5044ffe2437ed95/include/adl_structures.h
2021-07-26 05:48:56 +00:00
2016-01-27 12:47:19 +00:00
2021-07-27 10:02:27 +00:00
/// Defines ADL_TRUE
# define ADL_TRUE 1
/// Defines ADL_FALSE
# define ADL_FALSE 0
//Define Performance Metrics Log max sensors number
# define ADL_PMLOG_MAX_SENSORS 256
typedef enum ADLSensorType
{
SENSOR_MAXTYPES = 0 ,
PMLOG_CLK_GFXCLK = 1 ,
PMLOG_CLK_MEMCLK = 2 ,
PMLOG_CLK_SOCCLK = 3 ,
PMLOG_CLK_UVDCLK1 = 4 ,
PMLOG_CLK_UVDCLK2 = 5 ,
PMLOG_CLK_VCECLK = 6 ,
PMLOG_CLK_VCNCLK = 7 ,
PMLOG_TEMPERATURE_EDGE = 8 ,
PMLOG_TEMPERATURE_MEM = 9 ,
PMLOG_TEMPERATURE_VRVDDC = 10 ,
PMLOG_TEMPERATURE_VRMVDD = 11 ,
PMLOG_TEMPERATURE_LIQUID = 12 ,
PMLOG_TEMPERATURE_PLX = 13 ,
PMLOG_FAN_RPM = 14 ,
PMLOG_FAN_PERCENTAGE = 15 ,
PMLOG_SOC_VOLTAGE = 16 ,
PMLOG_SOC_POWER = 17 ,
PMLOG_SOC_CURRENT = 18 ,
PMLOG_INFO_ACTIVITY_GFX = 19 ,
PMLOG_INFO_ACTIVITY_MEM = 20 ,
PMLOG_GFX_VOLTAGE = 21 ,
PMLOG_MEM_VOLTAGE = 22 ,
PMLOG_ASIC_POWER = 23 ,
PMLOG_TEMPERATURE_VRSOC = 24 ,
PMLOG_TEMPERATURE_VRMVDD0 = 25 ,
PMLOG_TEMPERATURE_VRMVDD1 = 26 ,
PMLOG_TEMPERATURE_HOTSPOT = 27 ,
PMLOG_TEMPERATURE_GFX = 28 ,
PMLOG_TEMPERATURE_SOC = 29 ,
PMLOG_GFX_POWER = 30 ,
PMLOG_GFX_CURRENT = 31 ,
PMLOG_TEMPERATURE_CPU = 32 ,
PMLOG_CPU_POWER = 33 ,
PMLOG_CLK_CPUCLK = 34 ,
PMLOG_THROTTLER_STATUS = 35 ,
PMLOG_CLK_VCN1CLK1 = 36 ,
PMLOG_CLK_VCN1CLK2 = 37 ,
PMLOG_SMART_POWERSHIFT_CPU = 38 ,
PMLOG_SMART_POWERSHIFT_DGPU = 39 ,
PMLOG_BUS_SPEED = 40 ,
PMLOG_BUS_LANES = 41 ,
PMLOG_MAX_SENSORS_REAL
} ADLSensorType ;
/// Defines the maximum string length
# define ADL_MAX_CHAR 4096
/// Defines the maximum string length
# define ADL_MAX_PATH 256
/// Defines the maximum number of supported adapters
# define ADL_MAX_ADAPTERS 250
/// Defines the maxumum number of supported displays
# define ADL_MAX_DISPLAYS 150
/// Defines the maxumum string length for device name
# define ADL_MAX_DEVICENAME 32
/// Defines for all adapters
# define ADL_ADAPTER_INDEX_ALL -1
/// \defgroup define_adl_results Result Codes
/// This group of definitions are the various results returned by all ADL functions \n
/// @{
/// All OK, but need to wait
# define ADL_OK_WAIT 4
/// All OK, but need restart
# define ADL_OK_RESTART 3
/// All OK but need mode change
# define ADL_OK_MODE_CHANGE 2
/// All OK, but with warning
# define ADL_OK_WARNING 1
2021-07-26 05:48:56 +00:00
/// ADL function completed successfully
# define ADL_OK 0
/// Generic Error. Most likely one or more of the Escape calls to the driver failed!
# define ADL_ERR -1
2021-07-27 10:02:27 +00:00
/// ADL not initialized
# define ADL_ERR_NOT_INIT -2
/// One of the parameter passed is invalid
# define ADL_ERR_INVALID_PARAM -3
/// One of the parameter size is invalid
# define ADL_ERR_INVALID_PARAM_SIZE -4
/// Invalid ADL index passed
# define ADL_ERR_INVALID_ADL_IDX -5
/// Invalid controller index passed
# define ADL_ERR_INVALID_CONTROLLER_IDX -6
/// Invalid display index passed
# define ADL_ERR_INVALID_DIPLAY_IDX -7
2021-07-26 05:48:56 +00:00
/// Function not supported by the driver
# define ADL_ERR_NOT_SUPPORTED -8
2021-07-27 10:02:27 +00:00
/// Null Pointer error
# define ADL_ERR_NULL_POINTER -9
/// Call can't be made due to disabled adapter
# define ADL_ERR_DISABLED_ADAPTER -10
/// Invalid Callback
# define ADL_ERR_INVALID_CALLBACK -11
/// Display Resource conflict
# define ADL_ERR_RESOURCE_CONFLICT -12
//Failed to update some of the values. Can be returned by set request that include multiple values if not all values were successfully committed.
# define ADL_ERR_SET_INCOMPLETE -20
/// There's no Linux XDisplay in Linux Console environment
# define ADL_ERR_NO_XDISPLAY -21
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
//values for ADLFanSpeedValue.iSpeedType
# define ADL_DL_FANCTRL_SPEED_TYPE_PERCENT 1
# define ADL_DL_FANCTRL_SPEED_TYPE_RPM 2
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
//values for ADLFanSpeedValue.iFlags
# define ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED 1
/**
* Declarations from adl_structures . h
*/
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about the graphics adapter.
///
/// This structure is used to store various information about the graphics adapter. This
/// information can be returned to the user. Alternatively, it can be used to access various driver calls to set
/// or fetch various settings upon the user's request.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct AdapterInfo
{
2021-07-26 05:48:56 +00:00
/// \ALL_STRUCT_MEM
/// Size of the structure.
int iSize ;
/// The ADL index handle. One GPU may be associated with one or two index handles
int iAdapterIndex ;
/// The unique device ID associated with this adapter.
char strUDID [ ADL_MAX_PATH ] ;
/// The BUS number associated with this adapter.
int iBusNumber ;
/// The driver number associated with this adapter.
int iDeviceNumber ;
/// The function number.
int iFunctionNumber ;
/// The vendor ID associated with this adapter.
int iVendorID ;
/// Adapter name.
char strAdapterName [ ADL_MAX_PATH ] ;
/// Display name. For example, "\\\\Display0" for Windows or ":0:0" for Linux.
char strDisplayName [ ADL_MAX_PATH ] ;
/// Present or not; 1 if present and 0 if not present.It the logical adapter is present, the display name such as \\\\.\\Display1 can be found from OS
int iPresent ;
# if defined (_WIN32) || defined (_WIN64)
/// \WIN_STRUCT_MEM
/// Exist or not; 1 is exist and 0 is not present.
int iExist ;
/// Driver registry path.
char strDriverPath [ ADL_MAX_PATH ] ;
/// Driver registry path Ext for.
char strDriverPathExt [ ADL_MAX_PATH ] ;
/// PNP string from Windows.
char strPNPString [ ADL_MAX_PATH ] ;
/// It is generated from EnumDisplayDevices.
int iOSDisplayIndex ;
2021-07-27 10:02:27 +00:00
2021-07-26 05:48:56 +00:00
# endif /* (_WIN32) || (_WIN64) */
# if defined (LINUX)
/// \LNX_STRUCT_MEM
/// Internal X screen number from GPUMapInfo (DEPRICATED use XScreenInfo)
int iXScreenNum ;
/// Internal driver index from GPUMapInfo
int iDrvIndex ;
/// \deprecated Internal x config file screen identifier name. Use XScreenInfo instead.
char strXScreenConfigName [ ADL_MAX_PATH ] ;
# endif /* (LINUX) */
2016-01-27 12:47:19 +00:00
} AdapterInfo , * LPAdapterInfo ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about thermal controller.
///
/// This structure is used to store information about thermal controller.
/// This structure is used by ADL_PM_ThermalDevices_Enum.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLThermalControllerInfo
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
2016-01-27 12:47:19 +00:00
int iSize ;
2021-07-26 05:48:56 +00:00
/// Possible valies: \ref ADL_DL_THERMAL_DOMAIN_OTHER or \ref ADL_DL_THERMAL_DOMAIN_GPU.
2016-01-27 12:47:19 +00:00
int iThermalDomain ;
2021-07-26 05:48:56 +00:00
/// GPU 0, 1, etc.
2016-01-27 12:47:19 +00:00
int iDomainIndex ;
2021-07-26 05:48:56 +00:00
/// Possible valies: \ref ADL_DL_THERMAL_FLAG_INTERRUPT or \ref ADL_DL_THERMAL_FLAG_FANCONTROL
2016-01-27 12:47:19 +00:00
int iFlags ;
} ADLThermalControllerInfo ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about thermal controller temperature.
///
/// This structure is used to store information about thermal controller temperature.
/// This structure is used by the ADL_PM_Temperature_Get() function.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLTemperature
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
2016-01-27 12:47:19 +00:00
int iSize ;
2021-07-26 05:48:56 +00:00
/// Temperature in millidegrees Celsius.
2016-01-27 12:47:19 +00:00
int iTemperature ;
} ADLTemperature ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about thermal controller fan speed.
///
/// This structure is used to store information about thermal controller fan speed.
/// This structure is used by the ADL_PM_FanSpeedInfo_Get() function.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLFanSpeedInfo
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
2016-01-27 12:47:19 +00:00
int iSize ;
2021-07-26 05:48:56 +00:00
/// \ref define_fanctrl
2016-01-27 12:47:19 +00:00
int iFlags ;
2021-07-26 05:48:56 +00:00
/// Minimum possible fan speed value in percents.
2016-01-27 12:47:19 +00:00
int iMinPercent ;
2021-07-26 05:48:56 +00:00
/// Maximum possible fan speed value in percents.
2016-01-27 12:47:19 +00:00
int iMaxPercent ;
2021-07-26 05:48:56 +00:00
/// Minimum possible fan speed value in RPM.
2016-01-27 12:47:19 +00:00
int iMinRPM ;
2021-07-26 05:48:56 +00:00
/// Maximum possible fan speed value in RPM.
2016-01-27 12:47:19 +00:00
int iMaxRPM ;
} ADLFanSpeedInfo ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about fan speed reported by thermal controller.
///
/// This structure is used to store information about fan speed reported by thermal controller.
/// This structure is used by the ADL_Overdrive5_FanSpeed_Get() and ADL_Overdrive5_FanSpeed_Set() functions.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLFanSpeedValue
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
2016-01-27 12:47:19 +00:00
int iSize ;
2021-07-26 05:48:56 +00:00
/// Possible valies: \ref ADL_DL_FANCTRL_SPEED_TYPE_PERCENT or \ref ADL_DL_FANCTRL_SPEED_TYPE_RPM
2016-01-27 12:47:19 +00:00
int iSpeedType ;
2021-07-26 05:48:56 +00:00
/// Fan speed value
2016-01-27 12:47:19 +00:00
int iFanSpeed ;
2021-07-26 05:48:56 +00:00
/// The only flag for now is: \ref ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED
2016-01-27 12:47:19 +00:00
int iFlags ;
} ADLFanSpeedValue ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about current power management related activity.
///
/// This structure is used to store information about current power management related activity.
/// This structure (Overdrive 5 interfaces) is used by the ADL_PM_CurrentActivity_Get() function.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLPMActivity
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
int iSize ;
/// Current engine clock.
int iEngineClock ;
/// Current memory clock.
int iMemoryClock ;
/// Current core voltage.
int iVddc ;
/// GPU utilization.
int iActivityPercent ;
/// Performance level index.
int iCurrentPerformanceLevel ;
/// Current PCIE bus speed.
int iCurrentBusSpeed ;
/// Number of PCIE bus lanes.
int iCurrentBusLanes ;
/// Maximum number of PCIE bus lanes.
int iMaximumBusLanes ;
/// Reserved for future purposes.
int iReserved ;
2016-01-27 12:47:19 +00:00
} ADLPMActivity ;
2021-07-26 05:48:56 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing the range of Overdrive parameter.
///
/// This structure is used to store information about the range of Overdrive parameter.
/// This structure is used by ADLODParameters.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLODParameterRange
{
2021-07-26 05:48:56 +00:00
/// Minimum parameter value.
2016-01-27 12:47:19 +00:00
int iMin ;
2021-07-26 05:48:56 +00:00
/// Maximum parameter value.
2016-01-27 12:47:19 +00:00
int iMax ;
2021-07-26 05:48:56 +00:00
/// Parameter step value.
2016-01-27 12:47:19 +00:00
int iStep ;
} ADLODParameterRange ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive parameters.
///
/// This structure is used to store information about Overdrive parameters.
/// This structure is used by the ADL_Overdrive5_ODParameters_Get() function.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-27 12:47:19 +00:00
typedef struct ADLODParameters
{
2021-07-26 05:48:56 +00:00
/// Must be set to the size of the structure
2016-01-27 12:47:19 +00:00
int iSize ;
2021-07-26 05:48:56 +00:00
/// Number of standard performance states.
2016-01-27 12:47:19 +00:00
int iNumberOfPerformanceLevels ;
2021-07-26 05:48:56 +00:00
/// Indicates whether the GPU is capable to measure its activity.
2016-01-27 12:47:19 +00:00
int iActivityReportingSupported ;
2021-07-26 05:48:56 +00:00
/// Indicates whether the GPU supports discrete performance levels or performance range.
2016-01-27 12:47:19 +00:00
int iDiscretePerformanceLevels ;
2021-07-26 05:48:56 +00:00
/// Reserved for future use.
2016-01-27 12:47:19 +00:00
int iReserved ;
2021-07-26 05:48:56 +00:00
/// Engine clock range.
2016-01-27 12:47:19 +00:00
ADLODParameterRange sEngineClock ;
2021-07-26 05:48:56 +00:00
/// Memory clock range.
2016-01-27 12:47:19 +00:00
ADLODParameterRange sMemoryClock ;
2021-07-26 05:48:56 +00:00
/// Core voltage range.
2016-01-27 12:47:19 +00:00
ADLODParameterRange sVddc ;
} ADLODParameters ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 fan speed information
///
/// This structure is used to store information about Overdrive 6 fan speed information
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6FanSpeedInfo
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Contains a bitmap of the valid fan speed type flags. Possible values: \ref ADL_OD6_FANSPEED_TYPE_PERCENT, \ref ADL_OD6_FANSPEED_TYPE_RPM, \ref ADL_OD6_FANSPEED_USER_DEFINED
int iSpeedType ;
/// Contains current fan speed in percent (if valid flag exists in iSpeedType)
int iFanSpeedPercent ;
/// Contains current fan speed in RPM (if valid flag exists in iSpeedType)
int iFanSpeedRPM ;
/// Value for future extension
int iExtValue ;
/// Mask for future extension
int iExtMask ;
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
} ADLOD6FanSpeedInfo ;
2016-03-06 12:31:12 +00:00
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 fan speed value
///
/// This structure is used to store information about Overdrive 6 fan speed value
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6FanSpeedValue
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Indicates the units of the fan speed. Possible values: \ref ADL_OD6_FANSPEED_TYPE_PERCENT, \ref ADL_OD6_FANSPEED_TYPE_RPM
int iSpeedType ;
/// Fan speed value (units as indicated above)
int iFanSpeed ;
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
/// Value for future extension
int iExtValue ;
/// Mask for future extension
int iExtMask ;
2016-01-27 12:47:19 +00:00
} ADLOD6FanSpeedValue ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about current Overdrive 6 performance status.
///
/// This structure is used to store information about current Overdrive 6 performance status.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6CurrentStatus
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Current engine clock in 10 KHz.
int iEngineClock ;
/// Current memory clock in 10 KHz.
int iMemoryClock ;
/// Current GPU activity in percent. This
/// indicates how "busy" the GPU is.
int iActivityPercent ;
/// Not used. Reserved for future use.
int iCurrentPerformanceLevel ;
/// Current PCI-E bus speed
int iCurrentBusSpeed ;
/// Current PCI-E bus # of lanes
int iCurrentBusLanes ;
/// Maximum possible PCI-E bus # of lanes
int iMaximumBusLanes ;
/// Value for future extension
int iExtValue ;
/// Mask for future extension
int iExtMask ;
2016-01-27 12:47:19 +00:00
} ADLOD6CurrentStatus ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 clock range
///
/// This structure is used to store information about Overdrive 6 clock range
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6ParameterRange
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// The starting value of the clock range
int iMin ;
/// The ending value of the clock range
int iMax ;
/// The minimum increment between clock values
int iStep ;
2016-01-27 12:47:19 +00:00
} ADLOD6ParameterRange ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 capabilities
///
/// This structure is used to store information about Overdrive 6 capabilities
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6Capabilities
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Contains a bitmap of the OD6 capability flags. Possible values: \ref ADL_OD6_CAPABILITY_SCLK_CUSTOMIZATION,
/// \ref ADL_OD6_CAPABILITY_MCLK_CUSTOMIZATION, \ref ADL_OD6_CAPABILITY_GPU_ACTIVITY_MONITOR
int iCapabilities ;
/// Contains a bitmap indicating the power states
/// supported by OD6. Currently only the performance state
/// is supported. Possible Values: \ref ADL_OD6_SUPPORTEDSTATE_PERFORMANCE
int iSupportedStates ;
/// Number of levels. OD6 will always use 2 levels, which describe
/// the minimum to maximum clock ranges.
/// The 1st level indicates the minimum clocks, and the 2nd level
/// indicates the maximum clocks.
int iNumberOfPerformanceLevels ;
/// Contains the hard limits of the sclk range. Overdrive
/// clocks cannot be set outside this range.
ADLOD6ParameterRange sEngineClockRange ;
/// Contains the hard limits of the mclk range. Overdrive
/// clocks cannot be set outside this range.
ADLOD6ParameterRange sMemoryClockRange ;
/// Value for future extension
int iExtValue ;
/// Mask for future extension
int iExtMask ;
2016-01-27 12:47:19 +00:00
} ADLOD6Capabilities ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive level.
///
/// This structure is used to store information about Overdrive level.
/// This structure is used by ADLODPerformanceLevels.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODPerformanceLevel
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Engine clock.
2016-01-27 12:47:19 +00:00
int iEngineClock ;
2021-07-26 05:48:56 +00:00
/// Memory clock.
2016-01-27 12:47:19 +00:00
int iMemoryClock ;
2021-07-26 05:48:56 +00:00
/// Core voltage.
int iVddc ;
} ADLODPerformanceLevel ;
2016-01-27 12:47:19 +00:00
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 clock values.
///
/// This structure is used to store information about Overdrive 6 clock values.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6PerformanceLevel
2021-07-26 05:48:56 +00:00
{
/// Engine (core) clock.
int iEngineClock ;
/// Memory clock.
int iMemoryClock ;
} ADLOD6PerformanceLevel ;
2016-03-06 12:31:12 +00:00
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive 6 clocks.
///
/// This structure is used to store information about Overdrive 6 clocks. This is a
/// variable-sized structure. iNumberOfPerformanceLevels indicate how many elements
/// are contained in the aLevels array.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLOD6StateInfo
2016-01-27 12:47:19 +00:00
{
2021-07-26 05:48:56 +00:00
/// Number of levels. OD6 uses clock ranges instead of discrete performance levels.
/// iNumberOfPerformanceLevels is always 2. The 1st level indicates the minimum clocks
/// in the range. The 2nd level indicates the maximum clocks in the range.
int iNumberOfPerformanceLevels ;
/// Value for future extension
int iExtValue ;
/// Mask for future extension
int iExtMask ;
/// Variable-sized array of levels.
/// The number of elements in the array is specified by iNumberofPerformanceLevels.
ADLOD6PerformanceLevel aLevels [ 1 ] ;
2016-01-27 12:47:19 +00:00
} ADLOD6StateInfo ;
2021-07-26 05:48:56 +00:00
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Overdrive performance levels.
///
/// This structure is used to store information about Overdrive performance levels.
/// This structure is used by the ADL_Overdrive5_ODPerformanceLevels_Get() and ADL_Overdrive5_ODPerformanceLevels_Set() functions.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODPerformanceLevels
{
/// Must be set to sizeof( \ref ADLODPerformanceLevels ) + sizeof( \ref ADLODPerformanceLevel ) * (ADLODParameters.iNumberOfPerformanceLevels - 1)
int iSize ;
int iReserved ;
/// Array of performance state descriptors. Must have ADLODParameters.iNumberOfPerformanceLevels elements.
ADLODPerformanceLevel aLevels [ 1 ] ;
} ADLODPerformanceLevels ;
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about Performance Metrics data
///
/// This structure is used to store information about Performance Metrics data output
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
2021-07-27 10:02:27 +00:00
typedef struct ADLSingleSensorData
2021-07-26 05:48:56 +00:00
{
int supported ;
int value ;
} ADLSingleSensorData ;
2021-07-27 10:02:27 +00:00
typedef struct ADLPMLogDataOutput
2021-07-26 05:48:56 +00:00
{
int size ;
ADLSingleSensorData sensors [ ADL_PMLOG_MAX_SENSORS ] ;
} ADLPMLogDataOutput ;
/// \brief Handle to ADL client context.
///
/// ADL clients obtain context handle from initial call to \ref ADL2_Main_Control_Create.
/// Clients have to pass the handle to each subsequent ADL call and finally destroy
/// the context with call to \ref ADL2_Main_Control_Destroy
/// \nosubgrouping
typedef void * ADL_CONTEXT_HANDLE ;
2016-10-01 11:25:51 +00:00
# if defined (__MSC_VER)
# define ADL_API_CALL __cdecl
2016-11-29 21:39:22 +00:00
# elif defined (_WIN32) || defined (__WIN32__)
2016-06-03 22:54:28 +00:00
# define ADL_API_CALL __stdcall
2016-03-25 18:19:12 +00:00
# else
2016-06-03 22:54:28 +00:00
# define ADL_API_CALL
# endif
2016-01-27 12:47:19 +00:00
2016-06-03 22:54:28 +00:00
typedef void * ( ADL_API_CALL * ADL_MAIN_MALLOC_CALLBACK ) ( int ) ;
2016-01-27 12:47:19 +00:00
/*
* End of declarations from adl_sdk . h and subheaders
* */
2015-12-04 14:47:52 +00:00
2016-06-02 12:20:15 +00:00
typedef int HM_ADAPTER_ADL ;
2015-12-04 14:47:52 +00:00
2021-07-26 05:48:56 +00:00
typedef int ( ADL_API_CALL * ADL_ADAPTER_ACTIVE_GET ) ( int , int * ) ;
typedef int ( ADL_API_CALL * ADL_ADAPTER_ADAPTERINFO_GET ) ( LPAdapterInfo , int ) ;
typedef int ( ADL_API_CALL * ADL_ADAPTER_NUMBEROFADAPTERS_GET ) ( int * ) ;
typedef int ( ADL_API_CALL * ADL_MAIN_CONTROL_CREATE ) ( ADL_MAIN_MALLOC_CALLBACK , int ) ;
typedef int ( ADL_API_CALL * ADL_MAIN_CONTROL_DESTROY ) ( ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_CURRENTACTIVITY_GET ) ( int iAdapterIndex , ADLPMActivity * lpActivity ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_FANSPEEDINFO_GET ) ( int iAdapterIndex , int iThermalControllerIndex , ADLFanSpeedInfo * lpFanSpeedInfo ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_FANSPEED_GET ) ( int iAdapterIndex , int iThermalControllerIndex , ADLFanSpeedValue * lpFanSpeedValue ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_ODPARAMETERS_GET ) ( int iAdapterIndex , ADLODParameters * lpOdParameters ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_ODPERFORMANCELEVELS_GET ) ( int iAdapterIndex , int iDefault , ADLODPerformanceLevels * lpOdPerformanceLevels ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_TEMPERATURE_GET ) ( int iAdapterIndex , int iThermalControllerIndex , ADLTemperature * lpTemperature ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE5_THERMALDEVICES_ENUM ) ( int iAdapterIndex , int iThermalControllerIndex , ADLThermalControllerInfo * lpThermalControllerInfo ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE6_CAPABILITIES_GET ) ( int iAdapterIndex , ADLOD6Capabilities * lpODCapabilities ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE6_CURRENTSTATUS_GET ) ( int iAdapterIndex , ADLOD6CurrentStatus * lpCurrentStatus ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE6_FANSPEED_GET ) ( int iAdapterIndex , ADLOD6FanSpeedInfo * lpFanSpeedInfo ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE6_STATEINFO_GET ) ( int iAdapterIndex , int iStateType , ADLOD6StateInfo * lpStateInfo ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE6_TEMPERATURE_GET ) ( int iAdapterIndex , int * lpTemperature ) ;
typedef int ( ADL_API_CALL * ADL_OVERDRIVE_CAPS ) ( int iAdapterIndex , int * iSupported , int * iEnabled , int * iVersion ) ;
typedef int ( ADL_API_CALL * ADL2_OVERDRIVE_CAPS ) ( ADL_CONTEXT_HANDLE context , int iAdapterIndex , int * iSupported , int * iEnabled , int * iVersion ) ;
typedef int ( ADL_API_CALL * ADL2_NEW_QUERYPMLOGDATA_GET ) ( ADL_CONTEXT_HANDLE , int , ADLPMLogDataOutput * ) ;
2015-12-04 14:47:52 +00:00
2016-10-01 09:54:00 +00:00
typedef struct hm_adl_lib
2016-01-31 22:48:38 +00:00
{
2019-01-14 09:11:23 +00:00
hc_dynlib_t lib ;
2016-01-31 22:48:38 +00:00
2021-07-26 05:48:56 +00:00
ADL_ADAPTER_ACTIVE_GET ADL_Adapter_Active_Get ;
2016-01-31 22:48:38 +00:00
ADL_ADAPTER_ADAPTERINFO_GET ADL_Adapter_AdapterInfo_Get ;
2021-07-26 05:48:56 +00:00
ADL_ADAPTER_NUMBEROFADAPTERS_GET ADL_Adapter_NumberOfAdapters_Get ;
ADL_MAIN_CONTROL_CREATE ADL_Main_Control_Create ;
ADL_MAIN_CONTROL_DESTROY ADL_Main_Control_Destroy ;
2016-01-31 22:48:38 +00:00
ADL_OVERDRIVE5_CURRENTACTIVITY_GET ADL_Overdrive5_CurrentActivity_Get ;
ADL_OVERDRIVE5_FANSPEEDINFO_GET ADL_Overdrive5_FanSpeedInfo_Get ;
ADL_OVERDRIVE5_FANSPEED_GET ADL_Overdrive5_FanSpeed_Get ;
2021-07-26 05:48:56 +00:00
ADL_OVERDRIVE5_ODPARAMETERS_GET ADL_Overdrive5_ODParameters_Get ;
ADL_OVERDRIVE5_ODPERFORMANCELEVELS_GET ADL_Overdrive5_ODPerformanceLevels_Get ;
ADL_OVERDRIVE5_TEMPERATURE_GET ADL_Overdrive5_Temperature_Get ;
ADL_OVERDRIVE5_THERMALDEVICES_ENUM ADL_Overdrive5_ThermalDevices_Enum ;
2016-01-31 22:48:38 +00:00
ADL_OVERDRIVE6_CAPABILITIES_GET ADL_Overdrive6_Capabilities_Get ;
ADL_OVERDRIVE6_CURRENTSTATUS_GET ADL_Overdrive6_CurrentStatus_Get ;
2021-07-26 05:48:56 +00:00
ADL_OVERDRIVE6_FANSPEED_GET ADL_Overdrive6_FanSpeed_Get ;
ADL_OVERDRIVE6_STATEINFO_GET ADL_Overdrive6_StateInfo_Get ;
ADL_OVERDRIVE6_TEMPERATURE_GET ADL_Overdrive6_Temperature_Get ;
ADL_OVERDRIVE_CAPS ADL_Overdrive_Caps ;
ADL2_OVERDRIVE_CAPS ADL2_Overdrive_Caps ;
ADL2_NEW_QUERYPMLOGDATA_GET ADL2_New_QueryPMLogData_Get ;
2016-01-31 22:48:38 +00:00
2016-02-02 00:14:33 +00:00
} hm_adl_lib_t ;
2016-01-31 22:48:38 +00:00
2016-09-05 19:47:26 +00:00
typedef hm_adl_lib_t ADL_PTR ;
2016-01-31 22:48:38 +00:00
2016-09-08 07:21:25 +00:00
void * HC_API_CALL ADL_Main_Memory_Alloc ( const int iSize ) ;
2021-06-10 18:13:12 +00:00
int adl_init ( void * hashcat_ctx ) ;
void adl_close ( void * hashcat_ctx ) ;
int hm_ADL_Main_Control_Destroy ( void * hashcat_ctx ) ;
int hm_ADL_Main_Control_Create ( void * hashcat_ctx , ADL_MAIN_MALLOC_CALLBACK callback , int iEnumConnectedAdapters ) ;
int hm_ADL_Adapter_NumberOfAdapters_Get ( void * hashcat_ctx , int * lpNumAdapters ) ;
int hm_ADL_Adapter_AdapterInfo_Get ( void * hashcat_ctx , LPAdapterInfo lpInfo , int iInputSize ) ;
int hm_ADL_Overdrive5_Temperature_Get ( void * hashcat_ctx , int iAdapterIndex , int iThermalControllerIndex , ADLTemperature * lpTemperature ) ;
int hm_ADL_Overdrive6_Temperature_Get ( void * hashcat_ctx , int iAdapterIndex , int * iTemperature ) ;
int hm_ADL_Overdrive_CurrentActivity_Get ( void * hashcat_ctx , int iAdapterIndex , ADLPMActivity * lpActivity ) ;
int hm_ADL_Overdrive5_FanSpeed_Get ( void * hashcat_ctx , int iAdapterIndex , int iThermalControllerIndex , ADLFanSpeedValue * lpFanSpeedValue ) ;
int hm_ADL_Overdrive6_FanSpeed_Get ( void * hashcat_ctx , int iAdapterIndex , ADLOD6FanSpeedInfo * lpFanSpeedInfo ) ;
int hm_ADL_Overdrive_Caps ( void * hashcat_ctx , int iAdapterIndex , int * od_supported , int * od_enabled , int * od_version ) ;
2021-07-26 05:48:56 +00:00
int hm_ADL2_Overdrive_Caps ( void * hashcat_ctx , int iAdapterIndex , int * od_supported , int * od_enabled , int * od_version ) ;
int hm_ADL2_New_QueryPMLogData_Get ( void * hashcat_ctx , int iAdapterIndex , ADLPMLogDataOutput * lpDataOutput ) ;
2016-09-06 16:44:05 +00:00
# endif // _EXT_ADL_H