diff --git a/dependencies/display-library/include/adl_defines.h b/dependencies/display-library/include/adl_defines.h
index e3a3b27e..0c5031f5 100644
--- a/dependencies/display-library/include/adl_defines.h
+++ b/dependencies/display-library/include/adl_defines.h
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved.
+// Copyright (c) 2016 - 2022 Advanced Micro Devices, Inc. All rights reserved.
//
// MIT LICENSE:
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,171 +20,85 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
-/// \file adl_defines.h
-/// \brief Contains all definitions exposed by ADL for \ALL platforms.\n Included in ADL SDK
-///
-/// This file contains all definitions used by ADL.
-/// The ADL definitions include the following:
-/// \li ADL error codes
-/// \li Enumerations for the ADLDisplayInfo structure
-/// \li Maximum limits
-///
#ifndef ADL_DEFINES_H_
#define ADL_DEFINES_H_
-/// \defgroup DEFINES Constants and Definitions
-// @{
-/// \defgroup define_misc Miscellaneous Constant Definitions
-// @{
-/// \name General Definitions
-// @{
-/// Defines ADL_TRUE
#define ADL_TRUE 1
-/// Defines ADL_FALSE
#define ADL_FALSE 0
-/// 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
-/// Defines APIs with iOption none
#define ADL_MAIN_API_OPTION_NONE 0
-// @}
-/// \name Definitions for iOption parameter used by
-/// ADL_Display_DDCBlockAccess_Get()
-// @{
-/// Switch to DDC line 2 before sending the command to the display.
#define ADL_DDC_OPTION_SWITCHDDC2 0x00000001
-/// Save command in the registry under a unique key, corresponding to parameter \b iCommandIndex
#define ADL_DDC_OPTION_RESTORECOMMAND 0x00000002
-/// Combine write-read DDC block access command.
#define ADL_DDC_OPTION_COMBOWRITEREAD 0x00000010
-/// Direct DDC access to the immediate device connected to graphics card.
-/// MST with this option set: DDC command is sent to first branch.
-/// MST with this option not set: DDC command is sent to the end node sink device.
#define ADL_DDC_OPTION_SENDTOIMMEDIATEDEVICE 0x00000020
-// @}
-
-/// \name Values for
-/// ADLI2C.iAction used with ADL_Display_WriteAndReadI2C()
-// @{
-
-#define ADL_DL_I2C_ACTIONREAD 0x00000001
-#define ADL_DL_I2C_ACTIONWRITE 0x00000002
-#define ADL_DL_I2C_ACTIONREAD_REPEATEDSTART 0x00000003
-// @}
-// @} //Misc
+#define ADL_DL_I2C_ACTIONREAD 0x00000001
+#define ADL_DL_I2C_ACTIONWRITE 0x00000002
+#define ADL_DL_I2C_ACTIONREAD_REPEATEDSTART 0x00000003
+#define ADL_DL_I2C_ACTIONIS_PRESENT 0x00000004
+
+
-/// \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
-/// 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
-/// 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
-/// Function not supported by the driver
#define ADL_ERR_NOT_SUPPORTED -8
-/// 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
+#define ADL_ERR_CALL_TO_INCOMPATIABLE_DRIVER -22
+#define ADL_ERR_NO_ADMINISTRATOR_PRIVILEGES -23
+#define ADL_ERR_FEATURESYNC_NOT_STARTED -24
-// @}
-///
-/// \defgroup define_display_type Display Type
-/// Define Monitor/CRT display type
-// @{
-/// Define Monitor display type
#define ADL_DT_MONITOR 0
-/// Define TV display type
#define ADL_DT_TELEVISION 1
-/// Define LCD display type
#define ADL_DT_LCD_PANEL 2
-/// Define DFP display type
#define ADL_DT_DIGITAL_FLAT_PANEL 3
-/// Define Componment Video display type
#define ADL_DT_COMPONENT_VIDEO 4
-/// Define Projector display type
#define ADL_DT_PROJECTOR 5
-// @}
-/// \defgroup define_display_connection_type Display Connection Type
-// @{
-/// Define unknown display output type
#define ADL_DOT_UNKNOWN 0
-/// Define composite display output type
#define ADL_DOT_COMPOSITE 1
-/// Define SVideo display output type
#define ADL_DOT_SVIDEO 2
-/// Define analog display output type
#define ADL_DOT_ANALOG 3
-/// Define digital display output type
#define ADL_DOT_DIGITAL 4
-// @}
-/// \defgroup define_color_type Display Color Type and Source
-/// Define Display Color Type and Source
-// @{
#define ADL_DISPLAY_COLOR_BRIGHTNESS (1 << 0)
#define ADL_DISPLAY_COLOR_CONTRAST (1 << 1)
#define ADL_DISPLAY_COLOR_SATURATION (1 << 2)
#define ADL_DISPLAY_COLOR_HUE (1 << 3)
#define ADL_DISPLAY_COLOR_TEMPERATURE (1 << 4)
-/// Color Temperature Source is EDID
#define ADL_DISPLAY_COLOR_TEMPERATURE_SOURCE_EDID (1 << 5)
-/// Color Temperature Source is User
#define ADL_DISPLAY_COLOR_TEMPERATURE_SOURCE_USER (1 << 6)
-// @}
-/// \defgroup define_adjustment_capabilities Display Adjustment Capabilities
-/// Display adjustment capabilities values. Returned by ADL_Display_AdjustCaps_Get
-// @{
#define ADL_DISPLAY_ADJUST_OVERSCAN (1 << 0)
#define ADL_DISPLAY_ADJUST_VERT_POS (1 << 1)
#define ADL_DISPLAY_ADJUST_HOR_POS (1 << 2)
@@ -193,18 +107,11 @@
#define ADL_DISPLAY_ADJUST_SIZEPOS (ADL_DISPLAY_ADJUST_VERT_POS | ADL_DISPLAY_ADJUST_HOR_POS | ADL_DISPLAY_ADJUST_VERT_SIZE | ADL_DISPLAY_ADJUST_HOR_SIZE)
#define ADL_DISPLAY_CUSTOMMODES (1<<5)
#define ADL_DISPLAY_ADJUST_UNDERSCAN (1<<6)
-// @}
-///Down-scale support
#define ADL_DISPLAY_CAPS_DOWNSCALE (1 << 0)
-/// Sharpness support
#define ADL_DISPLAY_CAPS_SHARPNESS (1 << 0)
-/// \defgroup define_desktop_config Desktop Configuration Flags
-/// These flags are used by ADL_DesktopConfig_xxx
-/// \deprecated This API has been deprecated because it was only used for RandR 1.1 (Red Hat 5.x) distributions which is now not supported.
-// @{
#define ADL_DESKTOPCONFIG_UNKNOWN 0 /* UNKNOWN desktop config */
#define ADL_DESKTOPCONFIG_SINGLE (1 << 0) /* Single */
#define ADL_DESKTOPCONFIG_CLONE (1 << 2) /* Clone */
@@ -213,14 +120,9 @@
#define ADL_DESKTOPCONFIG_BIGDESK_HR (1 << 6) /* Big Desktop Reverse Horz */
#define ADL_DESKTOPCONFIG_BIGDESK_VR (1 << 7) /* Big Desktop Reverse Vert */
#define ADL_DESKTOPCONFIG_RANDR12 (1 << 8) /* RandR 1.2 Multi-display */
-// @}
-/// needed for ADLDDCInfo structure
#define ADL_MAX_DISPLAY_NAME 256
-/// \defgroup define_edid_flags Values for ulDDCInfoFlag
-/// defines for ulDDCInfoFlag EDID flag
-// @{
#define ADL_DISPLAYDDCINFOEX_FLAG_PROJECTORDEVICE (1 << 0)
#define ADL_DISPLAYDDCINFOEX_FLAG_EDIDEXTENSION (1 << 1)
#define ADL_DISPLAYDDCINFOEX_FLAG_DIGITALDEVICE (1 << 2)
@@ -228,11 +130,7 @@
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORTS_AI (1 << 4)
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORT_xvYCC601 (1 << 5)
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORT_xvYCC709 (1 << 6)
-// @}
-/// \defgroup define_displayinfo_connector Display Connector Type
-/// defines for ADLDisplayInfo.iDisplayConnector
-// @{
#define ADL_DISPLAY_CONTYPE_UNKNOWN 0
#define ADL_DISPLAY_CONTYPE_VGA 1
#define ADL_DISPLAY_CONTYPE_DVI_D 2
@@ -250,16 +148,11 @@
#define ADL_DISPLAY_CONTYPE_DISPLAYPORT 15
#define ADL_DISPLAY_CONTYPE_EDP 16
#define ADL_DISPLAY_CONTYPE_WIRELESSDISPLAY 17
-// @}
+#define ADL_DISPLAY_CONTYPE_USB_TYPE_C 18
-/// TV Capabilities and Standards
-/// \defgroup define_tv_caps TV Capabilities and Standards
-/// \deprecated Dropping support for TV displays
-// @{
#define ADL_TV_STANDARDS (1 << 0)
#define ADL_TV_SCART (1 << 1)
-/// TV Standards Definitions
#define ADL_STANDARD_NTSC_M (1 << 0)
#define ADL_STANDARD_NTSC_JPN (1 << 1)
#define ADL_STANDARD_NTSC_N (1 << 2)
@@ -278,22 +171,14 @@
#define ADL_STANDARD_PAL_SECAM_K (1 << 15)
#define ADL_STANDARD_PAL_SECAM_K1 (1 << 16)
#define ADL_STANDARD_PAL_SECAM_L (1 << 17)
-// @}
-/// \defgroup define_video_custom_mode Video Custom Mode flags
-/// Component Video Custom Mode flags. This is used by the iFlags parameter in ADLCustomMode
-// @{
#define ADL_CUSTOMIZEDMODEFLAG_MODESUPPORTED (1 << 0)
#define ADL_CUSTOMIZEDMODEFLAG_NOTDELETETABLE (1 << 1)
#define ADL_CUSTOMIZEDMODEFLAG_INSERTBYDRIVER (1 << 2)
#define ADL_CUSTOMIZEDMODEFLAG_INTERLACED (1 << 3)
#define ADL_CUSTOMIZEDMODEFLAG_BASEMODE (1 << 4)
-// @}
-/// \defgroup define_ddcinfoflag Values used for DDCInfoFlag
-/// ulDDCInfoFlag field values used by the ADLDDCInfo structure
-// @{
#define ADL_DISPLAYDDCINFOEX_FLAG_PROJECTORDEVICE (1 << 0)
#define ADL_DISPLAYDDCINFOEX_FLAG_EDIDEXTENSION (1 << 1)
#define ADL_DISPLAYDDCINFOEX_FLAG_DIGITALDEVICE (1 << 2)
@@ -301,19 +186,13 @@
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORTS_AI (1 << 4)
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORT_xvYCC601 (1 << 5)
#define ADL_DISPLAYDDCINFOEX_FLAG_SUPPORT_xvYCC709 (1 << 6)
-// @}
-/// \defgroup define_cv_dongle Values used by ADL_CV_DongleSettings_xxx
-/// The following is applicable to ADL_DISPLAY_CONTYPE_ATICVDONGLE_JP and ADL_DISPLAY_CONTYPE_ATICVDONGLE_NONI2C_D only
-/// \deprecated Dropping support for Component Video displays
-// @{
#define ADL_DISPLAY_CV_DONGLE_D1 (1 << 0)
#define ADL_DISPLAY_CV_DONGLE_D2 (1 << 1)
#define ADL_DISPLAY_CV_DONGLE_D3 (1 << 2)
#define ADL_DISPLAY_CV_DONGLE_D4 (1 << 3)
#define ADL_DISPLAY_CV_DONGLE_D5 (1 << 4)
-/// The following is applicable to ADL_DISPLAY_CONTYPE_ATICVDONGLE_NA and ADL_DISPLAY_CONTYPE_ATICVDONGLE_NONI2C only
#define ADL_DISPLAY_CV_DONGLE_480I (1 << 0)
#define ADL_DISPLAY_CV_DONGLE_480P (1 << 1)
@@ -330,12 +209,7 @@
#define ADL_DISPLAY_CV_DONGLE_1080P25 (1 << 12)
#define ADL_DISPLAY_CV_DONGLE_1080P30 (1 << 13)
#define ADL_DISPLAY_CV_DONGLE_1080P50 (1 << 14)
-// @}
-/// \defgroup define_formats_ovr Formats Override Settings
-/// Display force modes flags
-// @{
-///
#define ADL_DISPLAY_FORMAT_FORCE_720P 0x00000001
#define ADL_DISPLAY_FORMAT_FORCE_1080I 0x00000002
#define ADL_DISPLAY_FORMAT_FORCE_1080P 0x00000004
@@ -348,7 +222,6 @@
#define ADL_DISPLAY_FORMAT_FORCE_1080P30 0x00000200
#define ADL_DISPLAY_FORMAT_FORCE_1080P50 0x00000400
-///< Below are \b EXTENDED display mode flags
#define ADL_DISPLAY_FORMAT_CVDONGLEOVERIDE 0x00000001
#define ADL_DISPLAY_FORMAT_CVMODEUNDERSCAN 0x00000002
@@ -357,115 +230,68 @@
#define ADL_DISPLAY_FORMAT_SETASPECRATIO 0x00000010
#define ADL_DISPLAY_FORMAT_FORCEMODES 0x00000020
#define ADL_DISPLAY_FORMAT_LCDRTCCOEFF 0x00000040
-// @}
-/// Defines used by OD5
#define ADL_PM_PARAM_DONT_CHANGE 0
-/// The following defines Bus types
-// @{
#define ADL_BUSTYPE_PCI 0 /* PCI bus */
#define ADL_BUSTYPE_AGP 1 /* AGP bus */
#define ADL_BUSTYPE_PCIE 2 /* PCI Express bus */
#define ADL_BUSTYPE_PCIE_GEN2 3 /* PCI Express 2nd generation bus */
#define ADL_BUSTYPE_PCIE_GEN3 4 /* PCI Express 3rd generation bus */
#define ADL_BUSTYPE_PCIE_GEN4 5 /* PCI Express 4th generation bus */
-// @}
-/// \defgroup define_ws_caps Workstation Capabilities
-/// Workstation values
-// @{
-/// This value indicates that the workstation card supports active stereo though stereo output connector
#define ADL_STEREO_SUPPORTED (1 << 2)
-/// This value indicates that the workstation card supports active stereo via "blue-line"
#define ADL_STEREO_BLUE_LINE (1 << 3)
-/// This value is used to turn off stereo mode.
#define ADL_STEREO_OFF 0
-/// This value indicates that the workstation card supports active stereo. This is also used to set the stereo mode to active though the stereo output connector
#define ADL_STEREO_ACTIVE (1 << 1)
-/// This value indicates that the workstation card supports auto-stereo monitors with horizontal interleave. This is also used to set the stereo mode to use the auto-stereo monitor with horizontal interleave
#define ADL_STEREO_AUTO_HORIZONTAL (1 << 30)
-/// This value indicates that the workstation card supports auto-stereo monitors with vertical interleave. This is also used to set the stereo mode to use the auto-stereo monitor with vertical interleave
#define ADL_STEREO_AUTO_VERTICAL (1 << 31)
-/// This value indicates that the workstation card supports passive stereo, ie. non stereo sync
#define ADL_STEREO_PASSIVE (1 << 6)
-/// This value indicates that the workstation card supports auto-stereo monitors with vertical interleave. This is also used to set the stereo mode to use the auto-stereo monitor with vertical interleave
#define ADL_STEREO_PASSIVE_HORIZ (1 << 7)
-/// This value indicates that the workstation card supports auto-stereo monitors with vertical interleave. This is also used to set the stereo mode to use the auto-stereo monitor with vertical interleave
#define ADL_STEREO_PASSIVE_VERT (1 << 8)
-/// This value indicates that the workstation card supports auto-stereo monitors with Samsung.
#define ADL_STEREO_AUTO_SAMSUNG (1 << 11)
-/// This value indicates that the workstation card supports auto-stereo monitors with Tridility.
#define ADL_STEREO_AUTO_TSL (1 << 12)
-/// This value indicates that the workstation card supports DeepBitDepth (10 bpp)
#define ADL_DEEPBITDEPTH_10BPP_SUPPORTED (1 << 5)
-/// This value indicates that the workstation supports 8-Bit Grayscale
#define ADL_8BIT_GREYSCALE_SUPPORTED (1 << 9)
-/// This value indicates that the workstation supports CUSTOM TIMING
#define ADL_CUSTOM_TIMING_SUPPORTED (1 << 10)
-/// Load balancing is supported.
#define ADL_WORKSTATION_LOADBALANCING_SUPPORTED 0x00000001
-/// Load balancing is available.
#define ADL_WORKSTATION_LOADBALANCING_AVAILABLE 0x00000002
-/// Load balancing is disabled.
#define ADL_WORKSTATION_LOADBALANCING_DISABLED 0x00000000
-/// Load balancing is Enabled.
#define ADL_WORKSTATION_LOADBALANCING_ENABLED 0x00000001
-// @}
-/// \defgroup define_adapterspeed speed setting from the adapter
-// @{
#define ADL_CONTEXT_SPEED_UNFORCED 0 /* default asic running speed */
#define ADL_CONTEXT_SPEED_FORCEHIGH 1 /* asic running speed is forced to high */
#define ADL_CONTEXT_SPEED_FORCELOW 2 /* asic running speed is forced to low */
#define ADL_ADAPTER_SPEEDCAPS_SUPPORTED (1 << 0) /* change asic running speed setting is supported */
-// @}
-/// \defgroup define_glsync Genlock related values
-/// GL-Sync port types (unique values)
-// @{
-/// Unknown port of GL-Sync module
#define ADL_GLSYNC_PORT_UNKNOWN 0
-/// BNC port of of GL-Sync module
#define ADL_GLSYNC_PORT_BNC 1
-/// RJ45(1) port of of GL-Sync module
#define ADL_GLSYNC_PORT_RJ45PORT1 2
-/// RJ45(2) port of of GL-Sync module
#define ADL_GLSYNC_PORT_RJ45PORT2 3
// GL-Sync Genlock settings mask (bit-vector)
-/// None of the ADLGLSyncGenlockConfig members are valid
#define ADL_GLSYNC_CONFIGMASK_NONE 0
-/// The ADLGLSyncGenlockConfig.lSignalSource member is valid
#define ADL_GLSYNC_CONFIGMASK_SIGNALSOURCE (1 << 0)
-/// The ADLGLSyncGenlockConfig.iSyncField member is valid
#define ADL_GLSYNC_CONFIGMASK_SYNCFIELD (1 << 1)
-/// The ADLGLSyncGenlockConfig.iSampleRate member is valid
#define ADL_GLSYNC_CONFIGMASK_SAMPLERATE (1 << 2)
-/// The ADLGLSyncGenlockConfig.lSyncDelay member is valid
#define ADL_GLSYNC_CONFIGMASK_SYNCDELAY (1 << 3)
-/// The ADLGLSyncGenlockConfig.iTriggerEdge member is valid
#define ADL_GLSYNC_CONFIGMASK_TRIGGEREDGE (1 << 4)
-/// The ADLGLSyncGenlockConfig.iScanRateCoeff member is valid
#define ADL_GLSYNC_CONFIGMASK_SCANRATECOEFF (1 << 5)
-/// The ADLGLSyncGenlockConfig.lFramelockCntlVector member is valid
#define ADL_GLSYNC_CONFIGMASK_FRAMELOCKCNTL (1 << 6)
// GL-Sync Framelock control mask (bit-vector)
-/// Framelock is disabled
#define ADL_GLSYNC_FRAMELOCKCNTL_NONE 0
-/// Framelock is enabled
#define ADL_GLSYNC_FRAMELOCKCNTL_ENABLE ( 1 << 0)
#define ADL_GLSYNC_FRAMELOCKCNTL_DISABLE ( 1 << 1)
@@ -481,175 +307,110 @@
// GL-Sync Signal Sources (unique values)
-/// GL-Sync signal source is undefined
#define ADL_GLSYNC_SIGNALSOURCE_UNDEFINED 0x00000100
-/// GL-Sync signal source is Free Run
#define ADL_GLSYNC_SIGNALSOURCE_FREERUN 0x00000101
-/// GL-Sync signal source is the BNC GL-Sync port
#define ADL_GLSYNC_SIGNALSOURCE_BNCPORT 0x00000102
-/// GL-Sync signal source is the RJ45(1) GL-Sync port
#define ADL_GLSYNC_SIGNALSOURCE_RJ45PORT1 0x00000103
-/// GL-Sync signal source is the RJ45(2) GL-Sync port
#define ADL_GLSYNC_SIGNALSOURCE_RJ45PORT2 0x00000104
// GL-Sync Signal Types (unique values)
-/// GL-Sync signal type is unknown
#define ADL_GLSYNC_SIGNALTYPE_UNDEFINED 0
-/// GL-Sync signal type is 480I
#define ADL_GLSYNC_SIGNALTYPE_480I 1
-/// GL-Sync signal type is 576I
#define ADL_GLSYNC_SIGNALTYPE_576I 2
-/// GL-Sync signal type is 480P
#define ADL_GLSYNC_SIGNALTYPE_480P 3
-/// GL-Sync signal type is 576P
#define ADL_GLSYNC_SIGNALTYPE_576P 4
-/// GL-Sync signal type is 720P
#define ADL_GLSYNC_SIGNALTYPE_720P 5
-/// GL-Sync signal type is 1080P
#define ADL_GLSYNC_SIGNALTYPE_1080P 6
-/// GL-Sync signal type is 1080I
#define ADL_GLSYNC_SIGNALTYPE_1080I 7
-/// GL-Sync signal type is SDI
#define ADL_GLSYNC_SIGNALTYPE_SDI 8
-/// GL-Sync signal type is TTL
#define ADL_GLSYNC_SIGNALTYPE_TTL 9
-/// GL_Sync signal type is Analog
#define ADL_GLSYNC_SIGNALTYPE_ANALOG 10
// GL-Sync Sync Field options (unique values)
-///GL-Sync sync field option is undefined
#define ADL_GLSYNC_SYNCFIELD_UNDEFINED 0
-///GL-Sync sync field option is Sync to Field 1 (used for Interlaced signal types)
#define ADL_GLSYNC_SYNCFIELD_BOTH 1
-///GL-Sync sync field option is Sync to Both fields (used for Interlaced signal types)
#define ADL_GLSYNC_SYNCFIELD_1 2
// GL-Sync trigger edge options (unique values)
-/// GL-Sync trigger edge is undefined
#define ADL_GLSYNC_TRIGGEREDGE_UNDEFINED 0
-/// GL-Sync trigger edge is the rising edge
#define ADL_GLSYNC_TRIGGEREDGE_RISING 1
-/// GL-Sync trigger edge is the falling edge
#define ADL_GLSYNC_TRIGGEREDGE_FALLING 2
-/// GL-Sync trigger edge is both the rising and the falling edge
#define ADL_GLSYNC_TRIGGEREDGE_BOTH 3
// GL-Sync scan rate coefficient/multiplier options (unique values)
-/// GL-Sync scan rate coefficient/multiplier is undefined
#define ADL_GLSYNC_SCANRATECOEFF_UNDEFINED 0
-/// GL-Sync scan rate coefficient/multiplier is 5
#define ADL_GLSYNC_SCANRATECOEFF_x5 1
-/// GL-Sync scan rate coefficient/multiplier is 4
#define ADL_GLSYNC_SCANRATECOEFF_x4 2
-/// GL-Sync scan rate coefficient/multiplier is 3
#define ADL_GLSYNC_SCANRATECOEFF_x3 3
-/// GL-Sync scan rate coefficient/multiplier is 5:2 (SMPTE)
#define ADL_GLSYNC_SCANRATECOEFF_x5_DIV_2 4
-/// GL-Sync scan rate coefficient/multiplier is 2
#define ADL_GLSYNC_SCANRATECOEFF_x2 5
-/// GL-Sync scan rate coefficient/multiplier is 3 : 2
#define ADL_GLSYNC_SCANRATECOEFF_x3_DIV_2 6
-/// GL-Sync scan rate coefficient/multiplier is 5 : 4
#define ADL_GLSYNC_SCANRATECOEFF_x5_DIV_4 7
-/// GL-Sync scan rate coefficient/multiplier is 1 (default)
#define ADL_GLSYNC_SCANRATECOEFF_x1 8
-/// GL-Sync scan rate coefficient/multiplier is 4 : 5
#define ADL_GLSYNC_SCANRATECOEFF_x4_DIV_5 9
-/// GL-Sync scan rate coefficient/multiplier is 2 : 3
#define ADL_GLSYNC_SCANRATECOEFF_x2_DIV_3 10
-/// GL-Sync scan rate coefficient/multiplier is 1 : 2
#define ADL_GLSYNC_SCANRATECOEFF_x1_DIV_2 11
-/// GL-Sync scan rate coefficient/multiplier is 2 : 5 (SMPTE)
#define ADL_GLSYNC_SCANRATECOEFF_x2_DIV_5 12
-/// GL-Sync scan rate coefficient/multiplier is 1 : 3
#define ADL_GLSYNC_SCANRATECOEFF_x1_DIV_3 13
-/// GL-Sync scan rate coefficient/multiplier is 1 : 4
#define ADL_GLSYNC_SCANRATECOEFF_x1_DIV_4 14
-/// GL-Sync scan rate coefficient/multiplier is 1 : 5
#define ADL_GLSYNC_SCANRATECOEFF_x1_DIV_5 15
// GL-Sync port (signal presence) states (unique values)
-/// GL-Sync port state is undefined
#define ADL_GLSYNC_PORTSTATE_UNDEFINED 0
-/// GL-Sync port is not connected
#define ADL_GLSYNC_PORTSTATE_NOCABLE 1
-/// GL-Sync port is Idle
#define ADL_GLSYNC_PORTSTATE_IDLE 2
-/// GL-Sync port has an Input signal
#define ADL_GLSYNC_PORTSTATE_INPUT 3
-/// GL-Sync port is Output
#define ADL_GLSYNC_PORTSTATE_OUTPUT 4
// GL-Sync LED types (used index within ADL_Workstation_GLSyncPortState_Get returned ppGlSyncLEDs array) (unique values)
-/// Index into the ADL_Workstation_GLSyncPortState_Get returned ppGlSyncLEDs array for the one LED of the BNC port
#define ADL_GLSYNC_LEDTYPE_BNC 0
-/// Index into the ADL_Workstation_GLSyncPortState_Get returned ppGlSyncLEDs array for the Left LED of the RJ45(1) or RJ45(2) port
#define ADL_GLSYNC_LEDTYPE_RJ45_LEFT 0
-/// Index into the ADL_Workstation_GLSyncPortState_Get returned ppGlSyncLEDs array for the Right LED of the RJ45(1) or RJ45(2) port
#define ADL_GLSYNC_LEDTYPE_RJ45_RIGHT 1
// GL-Sync LED colors (unique values)
-/// GL-Sync LED undefined color
#define ADL_GLSYNC_LEDCOLOR_UNDEFINED 0
-/// GL-Sync LED is unlit
#define ADL_GLSYNC_LEDCOLOR_NOLIGHT 1
-/// GL-Sync LED is yellow
#define ADL_GLSYNC_LEDCOLOR_YELLOW 2
-/// GL-Sync LED is red
#define ADL_GLSYNC_LEDCOLOR_RED 3
-/// GL-Sync LED is green
#define ADL_GLSYNC_LEDCOLOR_GREEN 4
-/// GL-Sync LED is flashing green
#define ADL_GLSYNC_LEDCOLOR_FLASH_GREEN 5
// GL-Sync Port Control (refers one GL-Sync Port) (unique values)
-/// Used to configure the RJ54(1) or RJ42(2) port of GL-Sync is as Idle
#define ADL_GLSYNC_PORTCNTL_NONE 0x00000000
-/// Used to configure the RJ54(1) or RJ42(2) port of GL-Sync is as Output
#define ADL_GLSYNC_PORTCNTL_OUTPUT 0x00000001
// GL-Sync Mode Control (refers one Display/Controller) (bitfields)
-/// Used to configure the display to use internal timing (not genlocked)
#define ADL_GLSYNC_MODECNTL_NONE 0x00000000
-/// Bitfield used to configure the display as genlocked (either as Timing Client or as Timing Server)
#define ADL_GLSYNC_MODECNTL_GENLOCK 0x00000001
-/// Bitfield used to configure the display as Timing Server
#define ADL_GLSYNC_MODECNTL_TIMINGSERVER 0x00000002
// GL-Sync Mode Status
-/// Display is currently not genlocked
#define ADL_GLSYNC_MODECNTL_STATUS_NONE 0x00000000
-/// Display is currently genlocked
#define ADL_GLSYNC_MODECNTL_STATUS_GENLOCK 0x00000001
-/// Display requires a mode switch
#define ADL_GLSYNC_MODECNTL_STATUS_SETMODE_REQUIRED 0x00000002
-/// Display is capable of being genlocked
#define ADL_GLSYNC_MODECNTL_STATUS_GENLOCK_ALLOWED 0x00000004
#define ADL_MAX_GLSYNC_PORTS 8
#define ADL_MAX_GLSYNC_PORT_LEDS 8
-// @}
-/// \defgroup define_crossfirestate CrossfireX state of a particular adapter CrossfireX combination
-// @{
#define ADL_XFIREX_STATE_NOINTERCONNECT ( 1 << 0 ) /* Dongle / cable is missing */
#define ADL_XFIREX_STATE_DOWNGRADEPIPES ( 1 << 1 ) /* CrossfireX can be enabled if pipes are downgraded */
#define ADL_XFIREX_STATE_DOWNGRADEMEM ( 1 << 2 ) /* CrossfireX cannot be enabled unless mem downgraded */
@@ -679,16 +440,9 @@
#define ADL_XFIREX_STATE_DRV_HANDLE_DOWNGRADE_KEY ( 1 << 29 ) /* Indicate base driver handles the downgrade key updating */
#define ADL_XFIREX_STATE_CF_RECONFIG_REQUIRED ( 1 << 30 ) /* CrossfireX need to be reconfigured by CCC because of a LDA chain broken */
#define ADL_XFIREX_STATE_ERRORGETTINGSTATUS ( 1 << 31 ) /* Could not obtain current status */
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_ADJUSTMENT_PIXELFORMAT adjustment values
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup define_pixel_formats Pixel Formats values
-/// This group defines the various Pixel Formats that a particular digital display can support. \n
-/// Since a display can support multiple formats, these values can be bit-or'ed to indicate the various formats \n
-// @{
#define ADL_DISPLAY_PIXELFORMAT_UNKNOWN 0
#define ADL_DISPLAY_PIXELFORMAT_RGB (1 << 0)
#define ADL_DISPLAY_PIXELFORMAT_YCRCB444 (1 << 1) //Limited range
@@ -696,11 +450,7 @@
#define ADL_DISPLAY_PIXELFORMAT_RGB_LIMITED_RANGE (1 << 3)
#define ADL_DISPLAY_PIXELFORMAT_RGB_FULL_RANGE ADL_DISPLAY_PIXELFORMAT_RGB //Full range
#define ADL_DISPLAY_PIXELFORMAT_YCRCB420 (1 << 4)
-// @}
-/// \defgroup define_contype Connector Type Values
-/// ADLDisplayConfig.ulConnectorType defines
-// @{
#define ADL_DL_DISPLAYCONFIG_CONTYPE_UNKNOWN 0
#define ADL_DL_DISPLAYCONFIG_CONTYPE_CV_NONI2C_JP 1
#define ADL_DL_DISPLAYCONFIG_CONTYPE_CV_JPN 2
@@ -712,15 +462,10 @@
#define ADL_DL_DISPLAYCONFIG_CONTYPE_HDMI_TYPE_A 8
#define ADL_DL_DISPLAYCONFIG_CONTYPE_HDMI_TYPE_B 9
#define ADL_DL_DISPLAYCONFIG_CONTYPE_DISPLAYPORT 10
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_DISPLAYINFO_ Definitions
// for ADLDisplayInfo.iDisplayInfoMask and ADLDisplayInfo.iDisplayInfoValue
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup define_displayinfomask Display Info Mask Values
-// @{
#define ADL_DISPLAY_DISPLAYINFO_DISPLAYCONNECTED 0x00000001
#define ADL_DISPLAY_DISPLAYINFO_DISPLAYMAPPED 0x00000002
#define ADL_DISPLAY_DISPLAYINFO_NONLOCAL 0x00000004
@@ -733,37 +478,28 @@
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_SINGLE 0x00000100
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_CLONE 0x00000200
-/// Legacy support for XP
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_2VSTRETCH 0x00000400
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_2HSTRETCH 0x00000800
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_EXTENDED 0x00001000
-/// More support manners
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_NSTRETCH1GPU 0x00010000
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_NSTRETCHNGPU 0x00020000
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_RESERVED2 0x00040000
#define ADL_DISPLAY_DISPLAYINFO_MANNER_SUPPORTED_RESERVED3 0x00080000
-/// Projector display type
#define ADL_DISPLAY_DISPLAYINFO_SHOWTYPE_PROJECTOR 0x00100000
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADL_ADAPTER_DISPLAY_MANNER_SUPPORTED_ Definitions
// for ADLAdapterDisplayCap of ADL_Adapter_Display_Cap()
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup define_adaptermanner Adapter Manner Support Values
-// @{
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_NOTACTIVE 0x00000001
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_SINGLE 0x00000002
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_CLONE 0x00000004
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_NSTRETCH1GPU 0x00000008
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_NSTRETCHNGPU 0x00000010
-/// Legacy support for XP
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_2VSTRETCH 0x00000020
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_2HSTRETCH 0x00000040
#define ADL_ADAPTER_DISPLAYCAP_MANNER_SUPPORTED_EXTENDED 0x00000080
@@ -772,11 +508,9 @@
#define ADL_ADAPTER_DISPLAYCAP_BEZEL_SUPPORTED 0x00000200
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_DISPLAYMAP_MANNER_ Definitions
// for ADLDisplayMap.iDisplayMapMask and ADLDisplayMap.iDisplayMapValue
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
#define ADL_DISPLAY_DISPLAYMAP_MANNER_RESERVED 0x00000001
#define ADL_DISPLAY_DISPLAYMAP_MANNER_NOTACTIVE 0x00000002
#define ADL_DISPLAY_DISPLAYMAP_MANNER_SINGLE 0x00000004
@@ -786,38 +520,27 @@
#define ADL_DISPLAY_DISPLAYMAP_MANNER_VSTRETCH 0x00000040
#define ADL_DISPLAY_DISPLAYMAP_MANNER_VLD 0x00000080
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_DISPLAYMAP_OPTION_ Definitions
// for iOption in function ADL_Display_DisplayMapConfig_Get
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
#define ADL_DISPLAY_DISPLAYMAP_OPTION_GPUINFO 0x00000001
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_DISPLAYTARGET_ Definitions
// for ADLDisplayTarget.iDisplayTargetMask and ADLDisplayTarget.iDisplayTargetValue
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
#define ADL_DISPLAY_DISPLAYTARGET_PREFERRED 0x00000001
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_POSSIBLEMAPRESULT_VALID Definitions
// for ADLPossibleMapResult.iPossibleMapResultMask and ADLPossibleMapResult.iPossibleMapResultValue
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
#define ADL_DISPLAY_POSSIBLEMAPRESULT_VALID 0x00000001
#define ADL_DISPLAY_POSSIBLEMAPRESULT_BEZELSUPPORTED 0x00000002
#define ADL_DISPLAY_POSSIBLEMAPRESULT_OVERLAPSUPPORTED 0x00000004
-///////////////////////////////////////////////////////////////////////////
// ADL_DISPLAY_MODE_ Definitions
// for ADLMode.iModeMask, ADLMode.iModeValue, and ADLMode.iModeFlag
// (bit-vector)
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup define_displaymode Display Mode Values
-// @{
#define ADL_DISPLAY_MODE_COLOURFORMAT_565 0x00000001
#define ADL_DISPLAY_MODE_COLOURFORMAT_8888 0x00000002
#define ADL_DISPLAY_MODE_ORIENTATION_SUPPORTED_000 0x00000004
@@ -829,13 +552,8 @@
#define ADL_DISPLAY_MODE_PROGRESSIVE_FLAG 0
#define ADL_DISPLAY_MODE_INTERLACED_FLAG 2
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADL_OSMODEINFO Definitions
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup define_osmode OS Mode Values
-// @{
#define ADL_OSMODEINFOXPOS_DEFAULT -640
#define ADL_OSMODEINFOYPOS_DEFAULT 0
#define ADL_OSMODEINFOXRES_DEFAULT 640
@@ -850,26 +568,15 @@
#define ADL_OSMODEINFOORIENTATION_DEFAULT 0
#define ADL_OSMODEINFOORIENTATION_DEFAULT_WIN7 DISPLAYCONFIG_ROTATION_FORCE_UINT32
#define ADL_OSMODEFLAG_DEFAULT 0
-// @}
-
-///////////////////////////////////////////////////////////////////////////
// ADLThreadingModel Enumeration
-///////////////////////////////////////////////////////////////////////////
-/// \defgroup thread_model
-/// Used with \ref ADL_Main_ControlX2_Create and \ref ADL2_Main_ControlX2_Create to specify how ADL handles API calls when executed by multiple threads concurrently.
-/// \brief Declares ADL threading behavior.
-// @{
typedef enum ADLThreadingModel
{
- ADL_THREADING_UNLOCKED = 0, /*!< Default behavior. ADL will not enforce serialization of ADL API executions by multiple threads. Multiple threads will be allowed to enter to ADL at the same time. Note that ADL library is not guaranteed to be thread-safe. Client that calls ADL_Main_Control_Create have to provide its own mechanism for ADL calls serialization. */
- ADL_THREADING_LOCKED /*!< ADL will enforce serialization of ADL API when called by multiple threads. Only single thread will be allowed to enter ADL API at the time. This option makes ADL calls thread-safe. You shouldn't use this option if ADL calls will be executed on Linux on x-server rendering thread. It can cause the application to hung. */
+ ADL_THREADING_UNLOCKED = 0,
+ ADL_THREADING_LOCKED
}ADLThreadingModel;
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADLPurposeCode Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLPurposeCode
{
ADL_PURPOSECODE_NORMAL = 0,
@@ -881,9 +588,7 @@ enum ADLPurposeCode
ADL_PURPOSECODE_GDI_ROTATION,
ADL_PURPOSECODE_ATI_ROTATION
};
-///////////////////////////////////////////////////////////////////////////
// ADLAngle Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLAngle
{
ADL_ANGLE_LANDSCAPE = 0,
@@ -892,18 +597,14 @@ enum ADLAngle
ADL_ANGLE_ROTATELEFT = 270,
};
-///////////////////////////////////////////////////////////////////////////
// ADLOrientationDataType Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLOrientationDataType
{
ADL_ORIENTATIONTYPE_OSDATATYPE,
ADL_ORIENTATIONTYPE_NONOSDATATYPE
};
-///////////////////////////////////////////////////////////////////////////
// ADLPanningMode Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLPanningMode
{
ADL_PANNINGMODE_NO_PANNING = 0,
@@ -911,9 +612,7 @@ enum ADLPanningMode
ADL_PANNINGMODE_ALLOW_PANNING = 2,
};
-///////////////////////////////////////////////////////////////////////////
// ADLLARGEDESKTOPTYPE Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLLARGEDESKTOPTYPE
{
ADL_LARGEDESKTOPTYPE_NORMALDESKTOP = 0,
@@ -921,18 +620,14 @@ enum ADLLARGEDESKTOPTYPE
ADL_LARGEDESKTOPTYPE_VERYLARGEDESKTOP = 2
};
-///////////////////////////////////////////////////////////////////////////
// ADLPlatform Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLPlatForm
{
GRAPHICS_PLATFORM_DESKTOP = 0,
GRAPHICS_PLATFORM_MOBILE = 1
};
-///////////////////////////////////////////////////////////////////////////
// ADLGraphicCoreGeneration Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLGraphicCoreGeneration
{
ADL_GRAPHIC_CORE_GENERATION_UNDEFINED = 0,
@@ -965,19 +660,14 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_I2C_MAXOFFSETLENGTH 0x00000004
-/// Values for ADLDisplayProperty.iPropertyType
#define ADL_DL_DISPLAYPROPERTY_TYPE_UNKNOWN 0
#define ADL_DL_DISPLAYPROPERTY_TYPE_EXPANSIONMODE 1
#define ADL_DL_DISPLAYPROPERTY_TYPE_USEUNDERSCANSCALING 2
-/// Enables ITC processing for HDMI panels that are capable of the feature
#define ADL_DL_DISPLAYPROPERTY_TYPE_ITCFLAGENABLE 9
#define ADL_DL_DISPLAYPROPERTY_TYPE_DOWNSCALE 11
#define ADL_DL_DISPLAYPROPERTY_TYPE_INTEGER_SCALING 12
-/// Values for ADLDisplayContent.iContentType
-/// Certain HDMI panels that support ITC have support for a feature such that, the display on the panel
-/// can be adjusted to optimize the view of the content being displayed, depending on the type of content.
#define ADL_DL_DISPLAYCONTENT_TYPE_GRAPHICS 1
#define ADL_DL_DISPLAYCONTENT_TYPE_PHOTO 2
#define ADL_DL_DISPLAYCONTENT_TYPE_CINEMA 4
@@ -991,61 +681,33 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_DISPLAYPROPERTY_EXPANSIONMODE_ASPECTRATIO 2
-///\defgroup define_dither_states Dithering options
-// @{
-/// Dithering disabled.
#define ADL_DL_DISPLAY_DITHER_DISABLED 0
-/// Use default driver settings for dithering. Note that the default setting could be dithering disabled.
#define ADL_DL_DISPLAY_DITHER_DRIVER_DEFAULT 1
-/// Temporal dithering to 6 bpc. Note that if the input is 12 bits, the two least significant bits will be truncated.
#define ADL_DL_DISPLAY_DITHER_FM6 2
-/// Temporal dithering to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_FM8 3
-/// Temporal dithering to 10 bpc.
#define ADL_DL_DISPLAY_DITHER_FM10 4
-/// Spatial dithering to 6 bpc. Note that if the input is 12 bits, the two least significant bits will be truncated.
#define ADL_DL_DISPLAY_DITHER_DITH6 5
-/// Spatial dithering to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_DITH8 6
-/// Spatial dithering to 10 bpc.
#define ADL_DL_DISPLAY_DITHER_DITH10 7
-/// Spatial dithering to 6 bpc. Random number generators are reset every frame, so the same input value of a certain pixel will always be dithered to the same output value. Note that if the input is 12 bits, the two least significant bits will be truncated.
#define ADL_DL_DISPLAY_DITHER_DITH6_NO_FRAME_RAND 8
-/// Spatial dithering to 8 bpc. Random number generators are reset every frame, so the same input value of a certain pixel will always be dithered to the same output value.
#define ADL_DL_DISPLAY_DITHER_DITH8_NO_FRAME_RAND 9
-/// Spatial dithering to 10 bpc. Random number generators are reset every frame, so the same input value of a certain pixel will always be dithered to the same output value.
#define ADL_DL_DISPLAY_DITHER_DITH10_NO_FRAME_RAND 10
-/// Truncation to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN6 11
-/// Truncation to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN8 12
-/// Truncation to 10 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10 13
-/// Truncation to 10 bpc followed by spatial dithering to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10_DITH8 14
-/// Truncation to 10 bpc followed by spatial dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10_DITH6 15
-/// Truncation to 10 bpc followed by temporal dithering to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10_FM8 16
-/// Truncation to 10 bpc followed by temporal dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10_FM6 17
-/// Truncation to 10 bpc followed by spatial dithering to 8 bpc and temporal dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN10_DITH8_FM6 18
-/// Spatial dithering to 10 bpc followed by temporal dithering to 8 bpc.
#define ADL_DL_DISPLAY_DITHER_DITH10_FM8 19
-/// Spatial dithering to 10 bpc followed by temporal dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_DITH10_FM6 20
-/// Truncation to 8 bpc followed by spatial dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN8_DITH6 21
-/// Truncation to 8 bpc followed by temporal dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_TRUN8_FM6 22
-/// Spatial dithering to 8 bpc followed by temporal dithering to 6 bpc.
#define ADL_DL_DISPLAY_DITHER_DITH8_FM6 23
#define ADL_DL_DISPLAY_DITHER_LAST ADL_DL_DISPLAY_DITHER_DITH8_FM6
-// @}
-/// Display Get Cached EDID flag
#define ADL_MAX_EDIDDATA_SIZE 256 // number of UCHAR
#define ADL_MAX_OVERRIDEEDID_SIZE 512 // number of UCHAR
#define ADL_MAX_EDID_EXTENSION_BLOCKS 3
@@ -1057,27 +719,20 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_DISPLAY_DATA_PACKET__INFO_PACKET_SET 0x00000001
#define ADL_DL_DISPLAY_DATA_PACKET__INFO_PACKET_SCAN 0x00000002
-///\defgroup define_display_packet Display Data Packet Types
-// @{
#define ADL_DL_DISPLAY_DATA_PACKET__TYPE__AVI 0x00000001
#define ADL_DL_DISPLAY_DATA_PACKET__TYPE__GAMMUT 0x00000002
#define ADL_DL_DISPLAY_DATA_PACKET__TYPE__VENDORINFO 0x00000004
#define ADL_DL_DISPLAY_DATA_PACKET__TYPE__HDR 0x00000008
#define ADL_DL_DISPLAY_DATA_PACKET__TYPE__SPD 0x00000010
-// @}
// matrix types
#define ADL_GAMUT_MATRIX_SD 1 // SD matrix i.e. BT601
#define ADL_GAMUT_MATRIX_HD 2 // HD matrix i.e. BT709
-///\defgroup define_clockinfo_flags Clock flags
-/// Used by ADLAdapterODClockInfo.iFlag
-// @{
#define ADL_DL_CLOCKINFO_FLAG_FULLSCREEN3DONLY 0x00000001
#define ADL_DL_CLOCKINFO_FLAG_ALWAYSFULLSCREEN3D 0x00000002
#define ADL_DL_CLOCKINFO_FLAG_VPURECOVERYREDUCED 0x00000004
#define ADL_DL_CLOCKINFO_FLAG_THERMALPROTECTION 0x00000008
-// @}
// Supported GPUs
// ADL_Display_PowerXpressActiveGPU_Get()
@@ -1106,14 +761,10 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_THERMAL_FLAG_INTERRUPT 1
#define ADL_DL_THERMAL_FLAG_FANCONTROL 2
-///\defgroup define_fanctrl Fan speed cotrol
-/// Values for ADLFanSpeedInfo.iFlags
-// @{
#define ADL_DL_FANCTRL_SUPPORTS_PERCENT_READ 1
#define ADL_DL_FANCTRL_SUPPORTS_PERCENT_WRITE 2
#define ADL_DL_FANCTRL_SUPPORTS_RPM_READ 4
#define ADL_DL_FANCTRL_SUPPORTS_RPM_WRITE 8
-// @}
//values for ADLFanSpeedValue.iSpeedType
#define ADL_DL_FANCTRL_SPEED_TYPE_PERCENT 1
@@ -1135,23 +786,18 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_MVPU_STATUS_ON 1
// values for ASIC family
-///\defgroup define_Asic_type Detailed asic types
-/// Defines for Adapter ASIC family type
-// @{
-#define ADL_ASIC_UNDEFINED 0
-#define ADL_ASIC_DISCRETE (1 << 0)
-#define ADL_ASIC_INTEGRATED (1 << 1)
-#define ADL_ASIC_FIREGL (1 << 2)
-#define ADL_ASIC_FIREMV (1 << 3)
-#define ADL_ASIC_XGP (1 << 4)
-#define ADL_ASIC_FUSION (1 << 5)
-#define ADL_ASIC_FIRESTREAM (1 << 6)
-#define ADL_ASIC_EMBEDDED (1 << 7)
-// @}
+#define ADL_ASIC_UNDEFINED 0
+#define ADL_ASIC_DISCRETE (1 << 0)
+#define ADL_ASIC_INTEGRATED (1 << 1)
+#define ADL_ASIC_WORKSTATION (1 << 2)
+#define ADL_ASIC_FIREMV (1 << 3)
+#define ADL_ASIC_XGP (1 << 4)
+#define ADL_ASIC_FUSION (1 << 5)
+#define ADL_ASIC_FIRESTREAM (1 << 6)
+#define ADL_ASIC_EMBEDDED (1 << 7)
+// Backward compatibility
+#define ADL_ASIC_FIREGL ADL_ASIC_WORKSTATION
-///\defgroup define_detailed_timing_flags Detailed Timimg Flags
-/// Defines for ADLDetailedTiming.sTimingFlags field
-// @{
#define ADL_DL_TIMINGFLAG_DOUBLE_SCAN 0x0001
//sTimingFlags is set when the mode is INTERLACED, if not PROGRESSIVE
#define ADL_DL_TIMINGFLAG_INTERLACED 0x0002
@@ -1159,35 +805,23 @@ enum ADLGraphicCoreGeneration
#define ADL_DL_TIMINGFLAG_H_SYNC_POLARITY 0x0004
//sTimingFlags is set when the Vertical Sync is POSITIVE, if not NEGATIVE
#define ADL_DL_TIMINGFLAG_V_SYNC_POLARITY 0x0008
-// @}
-///\defgroup define_modetiming_standard Timing Standards
-/// Defines for ADLDisplayModeInfo.iTimingStandard field
-// @{
#define ADL_DL_MODETIMING_STANDARD_CVT 0x00000001 // CVT Standard
#define ADL_DL_MODETIMING_STANDARD_GTF 0x00000002 // GFT Standard
#define ADL_DL_MODETIMING_STANDARD_DMT 0x00000004 // DMT Standard
#define ADL_DL_MODETIMING_STANDARD_CUSTOM 0x00000008 // User-defined standard
#define ADL_DL_MODETIMING_STANDARD_DRIVER_DEFAULT 0x00000010 // Remove Mode from overriden list
#define ADL_DL_MODETIMING_STANDARD_CVT_RB 0x00000020 // CVT-RB Standard
-// @}
// \defgroup define_xserverinfo driver x-server info
-/// These flags are used by ADL_XServerInfo_Get()
// @
-/// Xinerama is active in the x-server, Xinerama extension may report it to be active but it
-/// may not be active in x-server
#define ADL_XSERVERINFO_XINERAMAACTIVE (1<<0)
-/// RandR 1.2 is supported by driver, RandR extension may report version 1.2
-/// but driver may not support it
#define ADL_XSERVERINFO_RANDR12SUPPORTED (1<<1)
// @
-///\defgroup define_eyefinity_constants Eyefinity Definitions
-// @{
#define ADL_CONTROLLERVECTOR_0 1 // ADL_CONTROLLERINDEX_0 = 0, (1 << ADL_CONTROLLERINDEX_0)
#define ADL_CONTROLLERVECTOR_1 2 // ADL_CONTROLLERINDEX_1 = 1, (1 << ADL_CONTROLLERINDEX_1)
@@ -1241,47 +875,46 @@ enum ADLGraphicCoreGeneration
#define ADL_DISPLAY_SLSGRID_RELATIVETO_CURRENTANGLE 0x00000020
-/// The bit mask identifies displays is currently in bezel mode.
#define ADL_DISPLAY_SLSMAP_BEZELMODE 0x00000010
-/// The bit mask identifies displays from this map is arranged.
#define ADL_DISPLAY_SLSMAP_DISPLAYARRANGED 0x00000002
-/// The bit mask identifies this map is currently in used for the current adapter.
#define ADL_DISPLAY_SLSMAP_CURRENTCONFIG 0x00000004
-///For onlay active SLS map info
#define ADL_DISPLAY_SLSMAPINDEXLIST_OPTION_ACTIVE 0x00000001
-///For Bezel
#define ADL_DISPLAY_BEZELOFFSET_STEPBYSTEPSET 0x00000004
#define ADL_DISPLAY_BEZELOFFSET_COMMIT 0x00000008
-typedef enum _SLS_ImageCropType {
+typedef enum SLS_ImageCropType {
Fit = 1,
Fill = 2,
Expand = 3
}SLS_ImageCropType;
-typedef enum _DceSettingsType {
+typedef enum DceSettingsType {
DceSetting_HdmiLq,
DceSetting_DpSettings,
DceSetting_Protection
+
} DceSettingsType;
-typedef enum _DpLinkRate {
+typedef enum DpLinkRate {
DPLinkRate_Unknown,
DPLinkRate_RBR,
+ DPLinkRate_2_16Gbps,
+ DPLinkRate_2_43Gbps,
DPLinkRate_HBR,
+ DPLinkRate_4_32Gbps,
DPLinkRate_HBR2,
- DPLinkRate_HBR3
+ DPLinkRate_HBR3,
+ DPLinkRate_UHBR10,
+ DPLinkRate_UHBR13D5,
+ DPLinkRate_UHBR20
+
} DpLinkRate;
-// @}
-///\defgroup define_powerxpress_constants PowerXpress Definitions
-/// @{
-/// The bit mask identifies PX caps for ADLPXConfigCaps.iPXConfigCapMask and ADLPXConfigCaps.iPXConfigCapValue
#define ADL_PX_CONFIGCAPS_SPLASHSCREEN_SUPPORT 0x0001
#define ADL_PX_CONFIGCAPS_CF_SUPPORT 0x0002
#define ADL_PX_CONFIGCAPS_MUXLESS 0x0004
@@ -1291,19 +924,16 @@ typedef enum _DpLinkRate {
#define ADL_PX_CONFIGCAPS_DYNAMIC_SUPPORT 0x0040
#define ADL_PX_CONFIGCAPS_HIDE_AUTO_SWITCH 0x0080
-/// The bit mask identifies PX schemes for ADLPXSchemeRange
#define ADL_PX_SCHEMEMASK_FIXED 0x0001
#define ADL_PX_SCHEMEMASK_DYNAMIC 0x0002
-/// PX Schemes
-typedef enum _ADLPXScheme
+typedef enum ADLPXScheme
{
ADL_PX_SCHEME_INVALID = 0,
ADL_PX_SCHEME_FIXED = ADL_PX_SCHEMEMASK_FIXED,
ADL_PX_SCHEME_DYNAMIC = ADL_PX_SCHEMEMASK_DYNAMIC
}ADLPXScheme;
-/// Just keep the old definitions for compatibility, need to be removed later
typedef enum PXScheme
{
PX_SCHEME_INVALID = 0,
@@ -1312,10 +942,7 @@ typedef enum PXScheme
} PXScheme;
-/// @}
-///\defgroup define_appprofiles For Application Profiles
-/// @{
#define ADL_APP_PROFILE_FILENAME_LENGTH 256
#define ADL_APP_PROFILE_TIMESTAMP_LENGTH 32
@@ -1332,7 +959,7 @@ enum ApplicationListType
ADL_PX40_TOTAL
};
-typedef enum _ADLProfilePropertyType
+typedef enum ADLProfilePropertyType
{
ADL_PROFILEPROPERTY_TYPE_BINARY = 0,
ADL_PROFILEPROPERTY_TYPE_BOOLEAN,
@@ -1343,30 +970,28 @@ typedef enum _ADLProfilePropertyType
}ADLProfilePropertyType;
-/// @}
+//Virtual display type returning virtual display type and for request for creating a dummy target ID (xInput or remote play)
+typedef enum ADL_VIRTUALDISPLAY_TYPE
+{
+ ADL_VIRTUALDISPLAY_NONE = 0,
+ ADL_VIRTUALDISPLAY_XINPUT = 1, //Requested for xInput
+ ADL_VIRTUALDISPLAY_REMOTEPLAY = 2, //Requested for emulated display during remote play
+ ADL_VIRTUALDISPLAY_GENERIC = 10 //Generic virtual display, af a type different than any of the above special ones
+}ADL_VIRTUALDISPLAY_TYPE;
+
-///\defgroup define_dp12 For Display Port 1.2
-/// @{
-/// Maximum Relative Address Link
#define ADL_MAX_RAD_LINK_COUNT 15
-/// @}
-///\defgroup defines_gamutspace Driver Supported Gamut Space
-/// @{
-/// The flags desribes that gamut is related to source or to destination and to overlay or to graphics
#define ADL_GAMUT_REFERENCE_SOURCE (1 << 0)
#define ADL_GAMUT_GAMUT_VIDEO_CONTENT (1 << 1)
-/// The flags are used to describe the source of gamut and how read information from struct ADLGamutData
#define ADL_CUSTOM_WHITE_POINT (1 << 0)
#define ADL_CUSTOM_GAMUT (1 << 1)
#define ADL_GAMUT_REMAP_ONLY (1 << 2)
-/// The define means the predefined gamut values .
-///Driver uses to find entry in the table and apply appropriate gamut space.
#define ADL_GAMUT_SPACE_CCIR_709 (1 << 0)
#define ADL_GAMUT_SPACE_CCIR_601 (1 << 1)
#define ADL_GAMUT_SPACE_ADOBE_RGB (1 << 2)
@@ -1375,46 +1000,28 @@ typedef enum _ADLProfilePropertyType
#define ADL_GAMUT_SPACE_CCIR_2020 (1 << 5)
#define ADL_GAMUT_SPACE_APPCTRL (1 << 6)
-/// Predefine white point values are structed similar to gamut .
#define ADL_WHITE_POINT_5000K (1 << 0)
#define ADL_WHITE_POINT_6500K (1 << 1)
#define ADL_WHITE_POINT_7500K (1 << 2)
#define ADL_WHITE_POINT_9300K (1 << 3)
#define ADL_WHITE_POINT_CUSTOM (1 << 4)
-///gamut and white point coordinates are from 0.0 -1.0 and divider is used to find the real value .
-/// X float = X int /divider
#define ADL_GAMUT_WHITEPOINT_DIVIDER 10000
-///gamma a0 coefficient uses the following divider:
#define ADL_REGAMMA_COEFFICIENT_A0_DIVIDER 10000000
-///gamma a1 ,a2,a3 coefficients use the following divider:
#define ADL_REGAMMA_COEFFICIENT_A1A2A3_DIVIDER 1000
-///describes whether the coefficients are from EDID or custom user values.
#define ADL_EDID_REGAMMA_COEFFICIENTS (1 << 0)
-///Used for struct ADLRegamma. Feature if set use gamma ramp, if missing use regamma coefficents
#define ADL_USE_GAMMA_RAMP (1 << 4)
-///Used for struct ADLRegamma. If the gamma ramp flag is used then the driver could apply de gamma corretion to the supplied curve and this depends on this flag
#define ADL_APPLY_DEGAMMA (1 << 5)
-///specifies that standard SRGB gamma should be applied
#define ADL_EDID_REGAMMA_PREDEFINED_SRGB (1 << 1)
-///specifies that PQ gamma curve should be applied
#define ADL_EDID_REGAMMA_PREDEFINED_PQ (1 << 2)
-///specifies that PQ gamma curve should be applied, lower max nits
#define ADL_EDID_REGAMMA_PREDEFINED_PQ_2084_INTERIM (1 << 3)
-///specifies that 3.6 gamma should be applied
#define ADL_EDID_REGAMMA_PREDEFINED_36 (1 << 6)
-///specifies that BT709 gama should be applied
#define ADL_EDID_REGAMMA_PREDEFINED_BT709 (1 << 7)
-///specifies that regamma should be disabled, and application controls regamma content (of the whole screen)
#define ADL_EDID_REGAMMA_PREDEFINED_APPCTRL (1 << 8)
-/// @}
-/// \defgroup define_ddcinfo_pixelformats DDCInfo Pixel Formats
-/// @{
-/// defines for iPanelPixelFormat in struct ADLDDCInfo2
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_RGB656 0x00000001L
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_RGB666 0x00000002L
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_RGB888 0x00000004L
@@ -1433,170 +1040,79 @@ typedef enum _ADLProfilePropertyType
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_YCBCR420_8BPCC 0x00008000L
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_YCBCR420_10BPCC 0x00010000L
#define ADL_DISPLAY_DDCINFO_PIXEL_FORMAT_YCBCR420_12BPCC 0x00020000L
-/// @}
-/// \defgroup define_source_content_TF ADLSourceContentAttributes transfer functions (gamma)
-/// @{
-/// defines for iTransferFunction in ADLSourceContentAttributes
-#define ADL_TF_sRGB 0x0001 ///< sRGB
-#define ADL_TF_BT709 0x0002 ///< BT.709
-#define ADL_TF_PQ2084 0x0004 ///< PQ2084
-#define ADL_TF_PQ2084_INTERIM 0x0008 ///< PQ2084-Interim
-#define ADL_TF_LINEAR_0_1 0x0010 ///< Linear 0 - 1
-#define ADL_TF_LINEAR_0_125 0x0020 ///< Linear 0 - 125
-#define ADL_TF_DOLBYVISION 0x0040 ///< DolbyVision
-#define ADL_TF_GAMMA_22 0x0080 ///< Plain 2.2 gamma curve
-/// @}
+#define ADL_TF_sRGB 0x0001
+#define ADL_TF_BT709 0x0002
+#define ADL_TF_PQ2084 0x0004
+#define ADL_TF_PQ2084_INTERIM 0x0008
+#define ADL_TF_LINEAR_0_1 0x0010
+#define ADL_TF_LINEAR_0_125 0x0020
+#define ADL_TF_DOLBYVISION 0x0040
+#define ADL_TF_GAMMA_22 0x0080
-/// \defgroup define_source_content_CS ADLSourceContentAttributes color spaces
-/// @{
-/// defines for iColorSpace in ADLSourceContentAttributes
-#define ADL_CS_sRGB 0x0001 ///< sRGB
-#define ADL_CS_BT601 0x0002 ///< BT.601
-#define ADL_CS_BT709 0x0004 ///< BT.709
-#define ADL_CS_BT2020 0x0008 ///< BT.2020
-#define ADL_CS_ADOBE 0x0010 ///< Adobe RGB
-#define ADL_CS_P3 0x0020 ///< DCI-P3
-#define ADL_CS_scRGB_MS_REF 0x0040 ///< scRGB (MS Reference)
-#define ADL_CS_DISPLAY_NATIVE 0x0080 ///< Display Native
-#define ADL_CS_APP_CONTROL 0x0100 ///< Application Controlled
-#define ADL_CS_DOLBYVISION 0x0200 ///< DolbyVision
-/// @}
+#define ADL_CS_sRGB 0x0001
+#define ADL_CS_BT601 0x0002
+#define ADL_CS_BT709 0x0004
+#define ADL_CS_BT2020 0x0008
+#define ADL_CS_ADOBE 0x0010
+#define ADL_CS_P3 0x0020
+#define ADL_CS_scRGB_MS_REF 0x0040
+#define ADL_CS_DISPLAY_NATIVE 0x0080
+#define ADL_CS_APP_CONTROL 0x0100
+#define ADL_CS_DOLBYVISION 0x0200
-/// \defgroup define_HDR_support ADLDDCInfo2 HDR support options
-/// @{
-/// defines for iSupportedHDR in ADLDDCInfo2
-#define ADL_HDR_CEA861_3 0x0001 ///< HDR10/CEA861.3 HDR supported
-#define ADL_HDR_DOLBYVISION 0x0002 ///< DolbyVision HDR supported
-#define ADL_HDR_FREESYNC_HDR 0x0004 ///< FreeSync HDR supported
-/// @}
+#define ADL_HDR_CEA861_3 0x0001
+#define ADL_HDR_DOLBYVISION 0x0002
+#define ADL_HDR_FREESYNC_HDR 0x0004
-/// \defgroup define_FreesyncFlags ADLDDCInfo2 Freesync HDR flags
-/// @{
-/// defines for iFreesyncFlags in ADLDDCInfo2
-#define ADL_HDR_FREESYNC_BACKLIGHT_SUPPORT 0x0001 ///< Global backlight control supported
-#define ADL_HDR_FREESYNC_LOCAL_DIMMING 0x0002 ///< Local dimming supported
-/// @}
+#define ADL_HDR_FREESYNC_BACKLIGHT_SUPPORT 0x0001
+#define ADL_HDR_FREESYNC_LOCAL_DIMMING 0x0002
-/// \defgroup define_source_content_flags ADLSourceContentAttributes flags
-/// @{
-/// defines for iFlags in ADLSourceContentAttributes
-#define ADL_SCA_LOCAL_DIMMING_DISABLE 0x0001 ///< Disable local dimming
-/// @}
+#define ADL_SCA_LOCAL_DIMMING_DISABLE 0x0001
-/// \defgroup define_dbd_state Deep Bit Depth
-/// @{
-/// defines for ADL_Workstation_DeepBitDepth_Get and ADL_Workstation_DeepBitDepth_Set functions
// This value indicates that the deep bit depth state is forced off
#define ADL_DEEPBITDEPTH_FORCEOFF 0
-/// This value indicates that the deep bit depth state is set to auto, the driver will automatically enable the
-/// appropriate deep bit depth state depending on what connected display supports.
#define ADL_DEEPBITDEPTH_10BPP_AUTO 1
-/// This value indicates that the deep bit depth state is forced on to 10 bits per pixel, this is regardless if the display
-/// supports 10 bpp.
#define ADL_DEEPBITDEPTH_10BPP_FORCEON 2
-/// defines for ADLAdapterConfigMemory of ADL_Adapter_ConfigMemory_Get
-/// If this bit is set, it indicates that the Deep Bit Depth pixel is set on the display
#define ADL_ADAPTER_CONFIGMEMORY_DBD (1 << 0)
-/// If this bit is set, it indicates that the display is rotated (90, 180 or 270)
#define ADL_ADAPTER_CONFIGMEMORY_ROTATE (1 << 1)
-/// If this bit is set, it indicates that passive stereo is set on the display
#define ADL_ADAPTER_CONFIGMEMORY_STEREO_PASSIVE (1 << 2)
-/// If this bit is set, it indicates that the active stereo is set on the display
#define ADL_ADAPTER_CONFIGMEMORY_STEREO_ACTIVE (1 << 3)
-/// If this bit is set, it indicates that the tear free vsync is set on the display
#define ADL_ADAPTER_CONFIGMEMORY_ENHANCEDVSYNC (1 << 4)
#define ADL_ADAPTER_CONFIGMEMORY_TEARFREEVSYNC (1 << 4)
-/// @}
-/// \defgroup define_adl_validmemoryrequiredfields Memory Type
-/// @{
-/// This group defines memory types in ADLMemoryRequired struct \n
-/// Indicates that this is the visible memory
#define ADL_MEMORYREQTYPE_VISIBLE (1 << 0)
-/// Indicates that this is the invisible memory.
#define ADL_MEMORYREQTYPE_INVISIBLE (1 << 1)
-/// Indicates that this is amount of visible memory per GPU that should be reserved for all other allocations.
#define ADL_MEMORYREQTYPE_GPURESERVEDVISIBLE (1 << 2)
-/// @}
-/// \defgroup define_adapter_tear_free_status
-/// Used in ADL_Adapter_TEAR_FREE_Set and ADL_Adapter_TFD_Get functions to indicate the tear free
-/// desktop status.
-/// @{
-/// Tear free desktop is enabled.
#define ADL_ADAPTER_TEAR_FREE_ON 1
-/// Tear free desktop can't be enabled due to a lack of graphic adapter memory.
#define ADL_ADAPTER_TEAR_FREE_NOTENOUGHMEM -1
-/// Tear free desktop can't be enabled due to quad buffer stereo being enabled.
#define ADL_ADAPTER_TEAR_FREE_OFF_ERR_QUADBUFFERSTEREO -2
-/// Tear free desktop can't be enabled due to MGPU-SLS being enabled.
#define ADL_ADAPTER_TEAR_FREE_OFF_ERR_MGPUSLD -3
-/// Tear free desktop is disabled.
#define ADL_ADAPTER_TEAR_FREE_OFF 0
-/// @}
-/// \defgroup define_adapter_crossdisplay_platforminfo
-/// Used in ADL_Adapter_CrossDisplayPlatformInfo_Get function to indicate the Crossdisplay platform info.
-/// @{
-/// CROSSDISPLAY platform.
#define ADL_CROSSDISPLAY_PLATFORM (1 << 0)
-/// CROSSDISPLAY platform for Lasso station.
#define ADL_CROSSDISPLAY_PLATFORM_LASSO (1 << 1)
-/// CROSSDISPLAY platform for docking station.
#define ADL_CROSSDISPLAY_PLATFORM_DOCKSTATION (1 << 2)
-/// @}
-/// \defgroup define_adapter_crossdisplay_option
-/// Used in ADL_Adapter_CrossdisplayInfoX2_Set function to indicate cross display options.
-/// @{
-/// Checking if 3D application is runnning. If yes, not to do switch, return ADL_OK_WAIT; otherwise do switch.
#define ADL_CROSSDISPLAY_OPTION_NONE 0
-/// Force switching without checking for running 3D applications
#define ADL_CROSSDISPLAY_OPTION_FORCESWITCH (1 << 0)
-/// @}
-/// \defgroup define_adapter_states Adapter Capabilities
-/// These defines the capabilities supported by an adapter. It is used by \ref ADL_Adapter_ConfigureState_Get
-/// @{
-/// Indicates that the adapter is headless (i.e. no displays can be connected to it)
#define ADL_ADAPTERCONFIGSTATE_HEADLESS ( 1 << 2 )
-/// Indicates that the adapter is configured to define the main rendering capabilities. For example, adapters
-/// in Crossfire(TM) configuration, this bit would only be set on the adapter driving the display(s).
#define ADL_ADAPTERCONFIGSTATE_REQUISITE_RENDER ( 1 << 0 )
-/// Indicates that the adapter is configured to be used to unload some of the rendering work for a particular
-/// requisite rendering adapter. For eample, for adapters in a Crossfire configuration, this bit would be set
-/// on all adapters that are currently not driving the display(s)
#define ADL_ADAPTERCONFIGSTATE_ANCILLARY_RENDER ( 1 << 1 )
-/// Indicates that scatter gather feature enabled on the adapter
#define ADL_ADAPTERCONFIGSTATE_SCATTERGATHER ( 1 << 4 )
-/// @}
-/// \defgroup define_controllermode_ulModifiers
-/// These defines the detailed actions supported by set viewport. It is used by \ref ADL_Display_ViewPort_Set
-/// @{
-/// Indicate that the viewport set will change the view position
#define ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_POSITION 0x00000001
-/// Indicate that the viewport set will change the view PanLock
#define ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_PANLOCK 0x00000002
-/// Indicate that the viewport set will change the view size
#define ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_SIZE 0x00000008
-/// @}
-/// \defgroup defines for Mirabilis
-/// These defines are used for the Mirabilis feature
-/// @{
-///
-/// Indicates the maximum number of audio sample rates
#define ADL_MAX_AUDIO_SAMPLE_RATE_COUNT 16
-/// @}
-///////////////////////////////////////////////////////////////////////////
// ADLMultiChannelSplitStateFlag Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLMultiChannelSplitStateFlag
{
ADLMultiChannelSplit_Unitialized = 0,
@@ -1605,9 +1121,7 @@ enum ADLMultiChannelSplitStateFlag
ADLMultiChannelSplit_SaveProfile = 3
};
-///////////////////////////////////////////////////////////////////////////
// ADLSampleRate Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLSampleRate
{
ADLSampleRate_32KHz =0,
@@ -1622,107 +1136,44 @@ enum ADLSampleRate
ADLSampleRate_Undefined
};
-/// \defgroup define_overdrive6_capabilities
-/// These defines the capabilities supported by Overdrive 6. It is used by \ref ADL_Overdrive6_Capabilities_Get
-// @{
-/// Indicate that core (engine) clock can be changed.
#define ADL_OD6_CAPABILITY_SCLK_CUSTOMIZATION 0x00000001
-/// Indicate that memory clock can be changed.
#define ADL_OD6_CAPABILITY_MCLK_CUSTOMIZATION 0x00000002
-/// Indicate that graphics activity reporting is supported.
#define ADL_OD6_CAPABILITY_GPU_ACTIVITY_MONITOR 0x00000004
-/// Indicate that power limit can be customized.
#define ADL_OD6_CAPABILITY_POWER_CONTROL 0x00000008
-/// Indicate that SVI2 Voltage Control is supported.
#define ADL_OD6_CAPABILITY_VOLTAGE_CONTROL 0x00000010
-/// Indicate that OD6+ percentage adjustment is supported.
#define ADL_OD6_CAPABILITY_PERCENT_ADJUSTMENT 0x00000020
-/// Indicate that Thermal Limit Unlock is supported.
#define ADL_OD6_CAPABILITY_THERMAL_LIMIT_UNLOCK 0x00000040
-///Indicate that Fan speed needs to be displayed in RPM
#define ADL_OD6_CAPABILITY_FANSPEED_IN_RPM 0x00000080
-// @}
-/// \defgroup define_overdrive6_supported_states
-/// These defines the power states supported by Overdrive 6. It is used by \ref ADL_Overdrive6_Capabilities_Get
-// @{
-/// Indicate that overdrive is supported in the performance state. This is currently the only state supported.
#define ADL_OD6_SUPPORTEDSTATE_PERFORMANCE 0x00000001
-/// Do not use. Reserved for future use.
#define ADL_OD6_SUPPORTEDSTATE_POWER_SAVING 0x00000002
-// @}
-/// \defgroup define_overdrive6_getstateinfo
-/// These defines the power states to get information about. It is used by \ref ADL_Overdrive6_StateInfo_Get
-// @{
-/// Get default clocks for the performance state.
#define ADL_OD6_GETSTATEINFO_DEFAULT_PERFORMANCE 0x00000001
-/// Do not use. Reserved for future use.
#define ADL_OD6_GETSTATEINFO_DEFAULT_POWER_SAVING 0x00000002
-/// Get clocks for current state. Currently this is the same as \ref ADL_OD6_GETSTATEINFO_CUSTOM_PERFORMANCE
-/// since only performance state is supported.
#define ADL_OD6_GETSTATEINFO_CURRENT 0x00000003
-/// Get the modified clocks (if any) for the performance state. If clocks were not modified
-/// through Overdrive 6, then this will return the same clocks as \ref ADL_OD6_GETSTATEINFO_DEFAULT_PERFORMANCE.
#define ADL_OD6_GETSTATEINFO_CUSTOM_PERFORMANCE 0x00000004
-/// Do not use. Reserved for future use.
#define ADL_OD6_GETSTATEINFO_CUSTOM_POWER_SAVING 0x00000005
-// @}
-/// \defgroup define_overdrive6_getstate and define_overdrive6_getmaxclockadjust
-/// These defines the power states to get information about. It is used by \ref ADL_Overdrive6_StateEx_Get and \ref ADL_Overdrive6_MaxClockAdjust_Get
-// @{
-/// Get default clocks for the performance state. Only performance state is currently supported.
#define ADL_OD6_STATE_PERFORMANCE 0x00000001
-// @}
-/// \defgroup define_overdrive6_setstate
-/// These define which power state to set customized clocks on. It is used by \ref ADL_Overdrive6_State_Set
-// @{
-/// Set customized clocks for the performance state.
#define ADL_OD6_SETSTATE_PERFORMANCE 0x00000001
-/// Do not use. Reserved for future use.
#define ADL_OD6_SETSTATE_POWER_SAVING 0x00000002
-// @}
-/// \defgroup define_overdrive6_thermalcontroller_caps
-/// These defines the capabilities of the GPU thermal controller. It is used by \ref ADL_Overdrive6_ThermalController_Caps
-// @{
-/// GPU thermal controller is supported.
#define ADL_OD6_TCCAPS_THERMAL_CONTROLLER 0x00000001
-/// GPU fan speed control is supported.
#define ADL_OD6_TCCAPS_FANSPEED_CONTROL 0x00000002
-/// Fan speed percentage can be read.
#define ADL_OD6_TCCAPS_FANSPEED_PERCENT_READ 0x00000100
-/// Fan speed can be set by specifying a percentage value.
#define ADL_OD6_TCCAPS_FANSPEED_PERCENT_WRITE 0x00000200
-/// Fan speed RPM (revolutions-per-minute) can be read.
#define ADL_OD6_TCCAPS_FANSPEED_RPM_READ 0x00000400
-/// Fan speed can be set by specifying an RPM value.
#define ADL_OD6_TCCAPS_FANSPEED_RPM_WRITE 0x00000800
-// @}
-/// \defgroup define_overdrive6_fanspeed_type
-/// These defines the fan speed type being reported. It is used by \ref ADL_Overdrive6_FanSpeed_Get
-// @{
-/// Fan speed reported in percentage.
#define ADL_OD6_FANSPEED_TYPE_PERCENT 0x00000001
-/// Fan speed reported in RPM.
#define ADL_OD6_FANSPEED_TYPE_RPM 0x00000002
-/// Fan speed has been customized by the user, and fan is not running in automatic mode.
#define ADL_OD6_FANSPEED_USER_DEFINED 0x00000100
-// @}
-/// \defgroup define_overdrive_EventCounter_type
-/// These defines the EventCounter type being reported. It is used by \ref ADL2_OverdriveN_CountOfEvents_Get ,can be used on older OD version supported ASICs also.
-// @{
#define ADL_ODN_EVENTCOUNTER_THERMAL 0
#define ADL_ODN_EVENTCOUNTER_VPURECOVERY 1
-// @}
-///////////////////////////////////////////////////////////////////////////
// ADLODNControlType Enumeration
-///////////////////////////////////////////////////////////////////////////
enum ADLODNControlType
{
ODNControlType_Current = 0,
@@ -1733,68 +1184,68 @@ enum ADLODNControlType
enum ADLODNDPMMaskType
{
- ADL_ODN_DPM_CLOCK = 1 << 0,
- ADL_ODN_DPM_VDDC = 1 << 1,
- ADL_ODN_DPM_MASK = 1 << 2,
+ ADL_ODN_DPM_CLOCK = 1 << 0,
+ ADL_ODN_DPM_VDDC = 1 << 1,
+ ADL_ODN_DPM_MASK = 1 << 2,
};
-//ODN features Bits for ADLODNCapabilitiesX2
+//ODN features Bits for ADLODNCapabilitiesX2
enum ADLODNFeatureControl
{
- ADL_ODN_SCLK_DPM = 1 << 0,
- ADL_ODN_MCLK_DPM = 1 << 1,
- ADL_ODN_SCLK_VDD = 1 << 2,
- ADL_ODN_MCLK_VDD = 1 << 3,
- ADL_ODN_FAN_SPEED_MIN = 1 << 4,
- ADL_ODN_FAN_SPEED_TARGET = 1 << 5,
- ADL_ODN_ACOUSTIC_LIMIT_SCLK = 1 << 6,
- ADL_ODN_TEMPERATURE_FAN_MAX = 1 << 7,
- ADL_ODN_TEMPERATURE_SYSTEM = 1 << 8,
- ADL_ODN_POWER_LIMIT = 1 << 9,
- ADL_ODN_SCLK_AUTO_LIMIT = 1 << 10,
- ADL_ODN_MCLK_AUTO_LIMIT = 1 << 11,
- ADL_ODN_SCLK_DPM_MASK_ENABLE = 1 << 12,
- ADL_ODN_MCLK_DPM_MASK_ENABLE = 1 << 13,
- ADL_ODN_MCLK_UNDERCLOCK_ENABLE = 1 << 14,
- ADL_ODN_SCLK_DPM_THROTTLE_NOTIFY = 1 << 15,
- ADL_ODN_POWER_UTILIZATION = 1 << 16,
- ADL_ODN_PERF_TUNING_SLIDER = 1 << 17,
- ADL_ODN_REMOVE_WATTMAN_PAGE = 1 << 31 // Internal Only
+ ADL_ODN_SCLK_DPM = 1 << 0,
+ ADL_ODN_MCLK_DPM = 1 << 1,
+ ADL_ODN_SCLK_VDD = 1 << 2,
+ ADL_ODN_MCLK_VDD = 1 << 3,
+ ADL_ODN_FAN_SPEED_MIN = 1 << 4,
+ ADL_ODN_FAN_SPEED_TARGET = 1 << 5,
+ ADL_ODN_ACOUSTIC_LIMIT_SCLK = 1 << 6,
+ ADL_ODN_TEMPERATURE_FAN_MAX = 1 << 7,
+ ADL_ODN_TEMPERATURE_SYSTEM = 1 << 8,
+ ADL_ODN_POWER_LIMIT = 1 << 9,
+ ADL_ODN_SCLK_AUTO_LIMIT = 1 << 10,
+ ADL_ODN_MCLK_AUTO_LIMIT = 1 << 11,
+ ADL_ODN_SCLK_DPM_MASK_ENABLE = 1 << 12,
+ ADL_ODN_MCLK_DPM_MASK_ENABLE = 1 << 13,
+ ADL_ODN_MCLK_UNDERCLOCK_ENABLE = 1 << 14,
+ ADL_ODN_SCLK_DPM_THROTTLE_NOTIFY = 1 << 15,
+ ADL_ODN_POWER_UTILIZATION = 1 << 16,
+ ADL_ODN_PERF_TUNING_SLIDER = 1 << 17,
+ ADL_ODN_REMOVE_WATTMAN_PAGE = 1 << 31 // Internal Only
};
//If any new feature is added, PPLIB only needs to add ext feature ID and Item ID(Seeting ID). These IDs should match the drive defined in CWDDEPM.h
enum ADLODNExtFeatureControl
-{
- ADL_ODN_EXT_FEATURE_MEMORY_TIMING_TUNE = 1 << 0,
- ADL_ODN_EXT_FEATURE_FAN_ZERO_RPM_CONTROL = 1 << 1,
- ADL_ODN_EXT_FEATURE_AUTO_UV_ENGINE = 1 << 2, //Auto under voltage
- ADL_ODN_EXT_FEATURE_AUTO_OC_ENGINE = 1 << 3, //Auto OC Enine
- ADL_ODN_EXT_FEATURE_AUTO_OC_MEMORY = 1 << 4, //Auto OC memory
- ADL_ODN_EXT_FEATURE_FAN_CURVE = 1 << 5 //Fan curve
+{
+ ADL_ODN_EXT_FEATURE_MEMORY_TIMING_TUNE = 1 << 0,
+ ADL_ODN_EXT_FEATURE_FAN_ZERO_RPM_CONTROL = 1 << 1,
+ ADL_ODN_EXT_FEATURE_AUTO_UV_ENGINE = 1 << 2, //Auto under voltage
+ ADL_ODN_EXT_FEATURE_AUTO_OC_ENGINE = 1 << 3, //Auto OC Enine
+ ADL_ODN_EXT_FEATURE_AUTO_OC_MEMORY = 1 << 4, //Auto OC memory
+ ADL_ODN_EXT_FEATURE_FAN_CURVE = 1 << 5 //Fan curve
};
//If any new feature is added, PPLIB only needs to add ext feature ID and Item ID(Seeting ID).These IDs should match the drive defined in CWDDEPM.h
enum ADLODNExtSettingId
{
- ADL_ODN_PARAMETER_AC_TIMING = 0,
- ADL_ODN_PARAMETER_FAN_ZERO_RPM_CONTROL,
- ADL_ODN_PARAMETER_AUTO_UV_ENGINE,
- ADL_ODN_PARAMETER_AUTO_OC_ENGINE,
- ADL_ODN_PARAMETER_AUTO_OC_MEMORY,
- ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_1,
- ADL_ODN_PARAMETER_FAN_CURVE_SPEED_1,
- ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_2,
- ADL_ODN_PARAMETER_FAN_CURVE_SPEED_2,
- ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_3,
- ADL_ODN_PARAMETER_FAN_CURVE_SPEED_3,
- ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_4,
- ADL_ODN_PARAMETER_FAN_CURVE_SPEED_4,
- ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_5,
- ADL_ODN_PARAMETER_FAN_CURVE_SPEED_5,
+ ADL_ODN_PARAMETER_AC_TIMING = 0,
+ ADL_ODN_PARAMETER_FAN_ZERO_RPM_CONTROL,
+ ADL_ODN_PARAMETER_AUTO_UV_ENGINE,
+ ADL_ODN_PARAMETER_AUTO_OC_ENGINE,
+ ADL_ODN_PARAMETER_AUTO_OC_MEMORY,
+ ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_1,
+ ADL_ODN_PARAMETER_FAN_CURVE_SPEED_1,
+ ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_2,
+ ADL_ODN_PARAMETER_FAN_CURVE_SPEED_2,
+ ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_3,
+ ADL_ODN_PARAMETER_FAN_CURVE_SPEED_3,
+ ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_4,
+ ADL_ODN_PARAMETER_FAN_CURVE_SPEED_4,
+ ADL_ODN_PARAMETER_FAN_CURVE_TEMPERATURE_5,
+ ADL_ODN_PARAMETER_FAN_CURVE_SPEED_5,
ADL_ODN_POWERGAUGE,
- ODN_COUNT
-
+ ODN_COUNT
+
} ;
//OD8 Capability features bits
@@ -1810,407 +1261,280 @@ enum ADLOD8FeatureControl
ADL_OD8_TEMPERATURE_SYSTEM = 1 << 7, //MaxOpTemp
ADL_OD8_MEMORY_TIMING_TUNE = 1 << 8,
ADL_OD8_FAN_ZERO_RPM_CONTROL = 1 << 9 ,
- ADL_OD8_AUTO_UV_ENGINE = 1 << 10, //Auto under voltage
- ADL_OD8_AUTO_OC_ENGINE = 1 << 11, //Auto overclock engine
- ADL_OD8_AUTO_OC_MEMORY = 1 << 12, //Auto overclock memory
- ADL_OD8_FAN_CURVE = 1 << 13, //Fan curve
- ADL_OD8_WS_AUTO_FAN_ACOUSTIC_LIMIT = 1 << 14, //Workstation Manual Fan controller
- ADL_OD8_POWER_GAUGE = 1 << 15 //Power Gauge
+ ADL_OD8_AUTO_UV_ENGINE = 1 << 10, //Auto under voltage
+ ADL_OD8_AUTO_OC_ENGINE = 1 << 11, //Auto overclock engine
+ ADL_OD8_AUTO_OC_MEMORY = 1 << 12, //Auto overclock memory
+ ADL_OD8_FAN_CURVE = 1 << 13, //Fan curve
+ ADL_OD8_WS_AUTO_FAN_ACOUSTIC_LIMIT = 1 << 14, //Workstation Manual Fan controller
+ ADL_OD8_GFXCLK_QUADRATIC_CURVE = 1 << 15,
+ ADL_OD8_OPTIMIZED_GPU_POWER_MODE = 1 << 16,
+ ADL_OD8_ODVOLTAGE_LIMIT = 1 << 17,
+ ADL_OD8_POWER_GAUGE = 1 << 18 //Power Gauge
};
-typedef enum _ADLOD8SettingId
+typedef enum ADLOD8SettingId
{
- OD8_GFXCLK_FMAX = 0,
- OD8_GFXCLK_FMIN,
- OD8_GFXCLK_FREQ1,
- OD8_GFXCLK_VOLTAGE1,
- OD8_GFXCLK_FREQ2,
- OD8_GFXCLK_VOLTAGE2,
- OD8_GFXCLK_FREQ3,
- OD8_GFXCLK_VOLTAGE3,
- OD8_UCLK_FMAX,
- OD8_POWER_PERCENTAGE,
- OD8_FAN_MIN_SPEED,
- OD8_FAN_ACOUSTIC_LIMIT,
- OD8_FAN_TARGET_TEMP,
- OD8_OPERATING_TEMP_MAX,
- OD8_AC_TIMING,
- OD8_FAN_ZERORPM_CONTROL,
- OD8_AUTO_UV_ENGINE_CONTROL,
- OD8_AUTO_OC_ENGINE_CONTROL,
- OD8_AUTO_OC_MEMORY_CONTROL,
- OD8_FAN_CURVE_TEMPERATURE_1,
- OD8_FAN_CURVE_SPEED_1,
- OD8_FAN_CURVE_TEMPERATURE_2,
- OD8_FAN_CURVE_SPEED_2,
- OD8_FAN_CURVE_TEMPERATURE_3,
- OD8_FAN_CURVE_SPEED_3,
- OD8_FAN_CURVE_TEMPERATURE_4,
- OD8_FAN_CURVE_SPEED_4,
- OD8_FAN_CURVE_TEMPERATURE_5,
- OD8_FAN_CURVE_SPEED_5,
- OD8_WS_FAN_AUTO_FAN_ACOUSTIC_LIMIT,
+ OD8_GFXCLK_FMAX = 0,
+ OD8_GFXCLK_FMIN,
+ OD8_GFXCLK_FREQ1,
+ OD8_GFXCLK_VOLTAGE1,
+ OD8_GFXCLK_FREQ2,
+ OD8_GFXCLK_VOLTAGE2,
+ OD8_GFXCLK_FREQ3,
+ OD8_GFXCLK_VOLTAGE3,
+ OD8_UCLK_FMAX,
+ OD8_POWER_PERCENTAGE,
+ OD8_FAN_MIN_SPEED,
+ OD8_FAN_ACOUSTIC_LIMIT,
+ OD8_FAN_TARGET_TEMP,
+ OD8_OPERATING_TEMP_MAX,
+ OD8_AC_TIMING,
+ OD8_FAN_ZERORPM_CONTROL,
+ OD8_AUTO_UV_ENGINE_CONTROL,
+ OD8_AUTO_OC_ENGINE_CONTROL,
+ OD8_AUTO_OC_MEMORY_CONTROL,
+ OD8_FAN_CURVE_TEMPERATURE_1,
+ OD8_FAN_CURVE_SPEED_1,
+ OD8_FAN_CURVE_TEMPERATURE_2,
+ OD8_FAN_CURVE_SPEED_2,
+ OD8_FAN_CURVE_TEMPERATURE_3,
+ OD8_FAN_CURVE_SPEED_3,
+ OD8_FAN_CURVE_TEMPERATURE_4,
+ OD8_FAN_CURVE_SPEED_4,
+ OD8_FAN_CURVE_TEMPERATURE_5,
+ OD8_FAN_CURVE_SPEED_5,
+ OD8_WS_FAN_AUTO_FAN_ACOUSTIC_LIMIT,
+ RESERVED_1,
+ RESERVED_2,
+ RESERVED_3,
+ RESERVED_4,
+ OD8_UCLK_FMIN,
+ OD8_FAN_ZERO_RPM_STOP_TEMPERATURE,
+ OD8_OPTIMZED_POWER_MODE,
+ OD8_OD_VOLTAGE,
OD8_POWER_GAUGE, //Starting from this is new features with new capabilities and new interface for limits.
- OD8_COUNT
+ OD8_COUNT
} ADLOD8SettingId;
//Define Performance Metrics Log max sensors number
#define ADL_PMLOG_MAX_SENSORS 256
-typedef enum _ADLSensorType
+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_MAX_SENSORS_REAL
+ SENSOR_MAXTYPES = 0,
+ PMLOG_CLK_GFXCLK = 1, // Current graphic clock value in MHz
+ PMLOG_CLK_MEMCLK = 2, // Current memory clock value in MHz
+ PMLOG_CLK_SOCCLK = 3,
+ PMLOG_CLK_UVDCLK1 = 4,
+ PMLOG_CLK_UVDCLK2 = 5,
+ PMLOG_CLK_VCECLK = 6,
+ PMLOG_CLK_VCNCLK = 7,
+ PMLOG_TEMPERATURE_EDGE = 8, // Current edge of the die temperature value in C
+ PMLOG_TEMPERATURE_MEM = 9,
+ PMLOG_TEMPERATURE_VRVDDC = 10,
+ PMLOG_TEMPERATURE_VRMVDD = 11,
+ PMLOG_TEMPERATURE_LIQUID = 12,
+ PMLOG_TEMPERATURE_PLX = 13,
+ PMLOG_FAN_RPM = 14, // Current fan RPM value
+ PMLOG_FAN_PERCENTAGE = 15, // Current ratio of fan RPM and max RPM
+ PMLOG_SOC_VOLTAGE = 16,
+ PMLOG_SOC_POWER = 17,
+ PMLOG_SOC_CURRENT = 18,
+ PMLOG_INFO_ACTIVITY_GFX = 19, // Current graphic activity level in percentage
+ PMLOG_INFO_ACTIVITY_MEM = 20, // Current memory activity level in percentage
+ PMLOG_GFX_VOLTAGE = 21, // Current graphic voltage in mV
+ PMLOG_MEM_VOLTAGE = 22,
+ PMLOG_ASIC_POWER = 23, // Current ASIC power draw in Watt
+ PMLOG_TEMPERATURE_VRSOC = 24,
+ PMLOG_TEMPERATURE_VRMVDD0 = 25,
+ PMLOG_TEMPERATURE_VRMVDD1 = 26,
+ PMLOG_TEMPERATURE_HOTSPOT = 27, // Current center of the die temperature value in C
+ 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, // A bit map of GPU throttle information. If a bit is set, the bit represented type of thorttling occurred in the last metrics sampling period
+ PMLOG_CLK_VCN1CLK1 = 36,
+ PMLOG_CLK_VCN1CLK2 = 37,
+ PMLOG_SMART_POWERSHIFT_CPU = 38,
+ PMLOG_SMART_POWERSHIFT_DGPU = 39,
+ PMLOG_BUS_SPEED = 40, // Current PCIE bus speed running
+ PMLOG_BUS_LANES = 41, // Current PCIE bus lanes using
+ PMLOG_TEMPERATURE_LIQUID0 = 42,
+ PMLOG_TEMPERATURE_LIQUID1 = 43,
+ PMLOG_CLK_FCLK = 44,
+ PMLOG_THROTTLER_STATUS_CPU = 45,
+ PMLOG_MAX_SENSORS_REAL
} ADLSensorType;
//Throttle Status
-typedef enum _ADL_THROTTLE_NOTIFICATION
+typedef enum ADL_THROTTLE_NOTIFICATION
{
- ADL_PMLOG_THROTTLE_POWER = 1 << 0,
- ADL_PMLOG_THROTTLE_THERMAL = 1 << 1,
- ADL_PMLOG_THROTTLE_CURRENT = 1 << 2,
+ ADL_PMLOG_THROTTLE_POWER = 1 << 0,
+ ADL_PMLOG_THROTTLE_THERMAL = 1 << 1,
+ ADL_PMLOG_THROTTLE_CURRENT = 1 << 2,
} ADL_THROTTLE_NOTIFICATION;
-typedef enum _ADL_PMLOG_SENSORS
+typedef enum ADL_PMLOG_SENSORS
{
- ADL_SENSOR_MAXTYPES = 0,
- ADL_PMLOG_CLK_GFXCLK = 1,
- ADL_PMLOG_CLK_MEMCLK = 2,
- ADL_PMLOG_CLK_SOCCLK = 3,
- ADL_PMLOG_CLK_UVDCLK1 = 4,
- ADL_PMLOG_CLK_UVDCLK2 = 5,
- ADL_PMLOG_CLK_VCECLK = 6,
- ADL_PMLOG_CLK_VCNCLK = 7,
- ADL_PMLOG_TEMPERATURE_EDGE = 8,
- ADL_PMLOG_TEMPERATURE_MEM = 9,
- ADL_PMLOG_TEMPERATURE_VRVDDC = 10,
- ADL_PMLOG_TEMPERATURE_VRMVDD = 11,
- ADL_PMLOG_TEMPERATURE_LIQUID = 12,
- ADL_PMLOG_TEMPERATURE_PLX = 13,
- ADL_PMLOG_FAN_RPM = 14,
- ADL_PMLOG_FAN_PERCENTAGE = 15,
- ADL_PMLOG_SOC_VOLTAGE = 16,
- ADL_PMLOG_SOC_POWER = 17,
- ADL_PMLOG_SOC_CURRENT = 18,
- ADL_PMLOG_INFO_ACTIVITY_GFX = 19,
- ADL_PMLOG_INFO_ACTIVITY_MEM = 20,
- ADL_PMLOG_GFX_VOLTAGE = 21,
- ADL_PMLOG_MEM_VOLTAGE = 22,
- ADL_PMLOG_ASIC_POWER = 23,
- ADL_PMLOG_TEMPERATURE_VRSOC = 24,
- ADL_PMLOG_TEMPERATURE_VRMVDD0 = 25,
- ADL_PMLOG_TEMPERATURE_VRMVDD1 = 26,
- ADL_PMLOG_TEMPERATURE_HOTSPOT = 27,
- ADL_PMLOG_TEMPERATURE_GFX = 28,
- ADL_PMLOG_TEMPERATURE_SOC = 29,
- ADL_PMLOG_GFX_POWER = 30,
- ADL_PMLOG_GFX_CURRENT = 31,
- ADL_PMLOG_TEMPERATURE_CPU = 32,
- ADL_PMLOG_CPU_POWER = 33,
- ADL_PMLOG_CLK_CPUCLK = 34,
- ADL_PMLOG_THROTTLER_STATUS = 35,
- ADL_PMLOG_CLK_VCN1CLK1 = 36,
- ADL_PMLOG_CLK_VCN1CLK2 = 37,
- ADL_PMLOG_SMART_POWERSHIFT_CPU = 38,
- ADL_PMLOG_SMART_POWERSHIFT_DGPU = 39
+ ADL_SENSOR_MAXTYPES = 0,
+ ADL_PMLOG_CLK_GFXCLK = 1,
+ ADL_PMLOG_CLK_MEMCLK = 2,
+ ADL_PMLOG_CLK_SOCCLK = 3,
+ ADL_PMLOG_CLK_UVDCLK1 = 4,
+ ADL_PMLOG_CLK_UVDCLK2 = 5,
+ ADL_PMLOG_CLK_VCECLK = 6,
+ ADL_PMLOG_CLK_VCNCLK = 7,
+ ADL_PMLOG_TEMPERATURE_EDGE = 8,
+ ADL_PMLOG_TEMPERATURE_MEM = 9,
+ ADL_PMLOG_TEMPERATURE_VRVDDC = 10,
+ ADL_PMLOG_TEMPERATURE_VRMVDD = 11,
+ ADL_PMLOG_TEMPERATURE_LIQUID = 12,
+ ADL_PMLOG_TEMPERATURE_PLX = 13,
+ ADL_PMLOG_FAN_RPM = 14,
+ ADL_PMLOG_FAN_PERCENTAGE = 15,
+ ADL_PMLOG_SOC_VOLTAGE = 16,
+ ADL_PMLOG_SOC_POWER = 17,
+ ADL_PMLOG_SOC_CURRENT = 18,
+ ADL_PMLOG_INFO_ACTIVITY_GFX = 19,
+ ADL_PMLOG_INFO_ACTIVITY_MEM = 20,
+ ADL_PMLOG_GFX_VOLTAGE = 21,
+ ADL_PMLOG_MEM_VOLTAGE = 22,
+ ADL_PMLOG_ASIC_POWER = 23,
+ ADL_PMLOG_TEMPERATURE_VRSOC = 24,
+ ADL_PMLOG_TEMPERATURE_VRMVDD0 = 25,
+ ADL_PMLOG_TEMPERATURE_VRMVDD1 = 26,
+ ADL_PMLOG_TEMPERATURE_HOTSPOT = 27,
+ ADL_PMLOG_TEMPERATURE_GFX = 28,
+ ADL_PMLOG_TEMPERATURE_SOC = 29,
+ ADL_PMLOG_GFX_POWER = 30,
+ ADL_PMLOG_GFX_CURRENT = 31,
+ ADL_PMLOG_TEMPERATURE_CPU = 32,
+ ADL_PMLOG_CPU_POWER = 33,
+ ADL_PMLOG_CLK_CPUCLK = 34,
+ ADL_PMLOG_THROTTLER_STATUS = 35, // GFX
+ ADL_PMLOG_CLK_VCN1CLK1 = 36,
+ ADL_PMLOG_CLK_VCN1CLK2 = 37,
+ ADL_PMLOG_SMART_POWERSHIFT_CPU = 38,
+ ADL_PMLOG_SMART_POWERSHIFT_DGPU = 39,
+ ADL_PMLOG_BUS_SPEED = 40,
+ ADL_PMLOG_BUS_LANES = 41,
+ ADL_PMLOG_TEMPERATURE_LIQUID0 = 42,
+ ADL_PMLOG_TEMPERATURE_LIQUID1 = 43,
+ ADL_PMLOG_CLK_FCLK = 44,
+ ADL_PMLOG_THROTTLER_STATUS_CPU = 45,
} ADL_PMLOG_SENSORS;
-/// \defgroup define_ecc_mode_states
-/// These defines the ECC(Error Correction Code) state. It is used by \ref ADL_Workstation_ECC_Get,ADL_Workstation_ECC_Set
-// @{
-/// Error Correction is OFF.
#define ECC_MODE_OFF 0
-/// Error Correction is ECCV2.
#define ECC_MODE_ON 2
-/// Error Correction is HBM.
#define ECC_MODE_HBM 3
-// @}
-/// \defgroup define_board_layout_flags
-/// These defines are the board layout flags state which indicates what are the valid properties of \ref ADLBoardLayoutInfo . It is used by \ref ADL_Adapter_BoardLayout_Get
-// @{
-/// Indicates the number of slots is valid.
#define ADL_BLAYOUT_VALID_NUMBER_OF_SLOTS 0x1
-/// Indicates the slot sizes are valid. Size of the slot consists of the length and width.
#define ADL_BLAYOUT_VALID_SLOT_SIZES 0x2
-/// Indicates the connector offsets are valid.
#define ADL_BLAYOUT_VALID_CONNECTOR_OFFSETS 0x4
-/// Indicates the connector lengths is valid.
#define ADL_BLAYOUT_VALID_CONNECTOR_LENGTHS 0x8
-// @}
-/// \defgroup define_max_constants
-/// These defines are the maximum value constants.
-// @{
-/// Indicates the Maximum supported slots on board.
#define ADL_ADAPTER_MAX_SLOTS 4
-/// Indicates the Maximum supported connectors on slot.
#define ADL_ADAPTER_MAX_CONNECTORS 10
-/// Indicates the Maximum supported properties of connection
#define ADL_MAX_CONNECTION_TYPES 32
-/// Indicates the Maximum relative address link count.
#define ADL_MAX_RELATIVE_ADDRESS_LINK_COUNT 15
-/// Indicates the Maximum size of EDID data block size
#define ADL_MAX_DISPLAY_EDID_DATA_SIZE 1024
-/// Indicates the Maximum count of Error Records.
#define ADL_MAX_ERROR_RECORDS_COUNT 256
-/// Indicates the maximum number of power states supported
#define ADL_MAX_POWER_POLICY 6
-// @}
-/// \defgroup define_connection_types
-/// These defines are the connection types constants which indicates what are the valid connection type of given connector. It is used by \ref ADL_Adapter_SupportedConnections_Get
-// @{
-/// Indicates the VGA connection type is valid.
#define ADL_CONNECTION_TYPE_VGA 0
-/// Indicates the DVI_I connection type is valid.
#define ADL_CONNECTION_TYPE_DVI 1
-/// Indicates the DVI_SL connection type is valid.
#define ADL_CONNECTION_TYPE_DVI_SL 2
-/// Indicates the HDMI connection type is valid.
#define ADL_CONNECTION_TYPE_HDMI 3
-/// Indicates the DISPLAY PORT connection type is valid.
#define ADL_CONNECTION_TYPE_DISPLAY_PORT 4
-/// Indicates the Active dongle DP->DVI(single link) connection type is valid.
#define ADL_CONNECTION_TYPE_ACTIVE_DONGLE_DP_DVI_SL 5
-/// Indicates the Active dongle DP->DVI(double link) connection type is valid.
#define ADL_CONNECTION_TYPE_ACTIVE_DONGLE_DP_DVI_DL 6
-/// Indicates the Active dongle DP->HDMI connection type is valid.
#define ADL_CONNECTION_TYPE_ACTIVE_DONGLE_DP_HDMI 7
-/// Indicates the Active dongle DP->VGA connection type is valid.
#define ADL_CONNECTION_TYPE_ACTIVE_DONGLE_DP_VGA 8
-/// Indicates the Passive dongle DP->HDMI connection type is valid.
#define ADL_CONNECTION_TYPE_PASSIVE_DONGLE_DP_HDMI 9
-/// Indicates the Active dongle DP->VGA connection type is valid.
#define ADL_CONNECTION_TYPE_PASSIVE_DONGLE_DP_DVI 10
-/// Indicates the MST type is valid.
#define ADL_CONNECTION_TYPE_MST 11
-/// Indicates the active dongle, all types.
#define ADL_CONNECTION_TYPE_ACTIVE_DONGLE 12
-/// Indicates the Virtual Connection Type.
#define ADL_CONNECTION_TYPE_VIRTUAL 13
-/// Macros for generating bitmask from index.
#define ADL_CONNECTION_BITMAST_FROM_INDEX(index) (1 << index)
-// @}
-/// \defgroup define_connection_properties
-/// These defines are the connection properties which indicates what are the valid properties of given connection type. It is used by \ref ADL_Adapter_SupportedConnections_Get
-// @{
-/// Indicates the property Bitrate is valid.
#define ADL_CONNECTION_PROPERTY_BITRATE 0x1
-/// Indicates the property number of lanes is valid.
#define ADL_CONNECTION_PROPERTY_NUMBER_OF_LANES 0x2
-/// Indicates the property 3D caps is valid.
#define ADL_CONNECTION_PROPERTY_3DCAPS 0x4
-/// Indicates the property output bandwidth is valid.
#define ADL_CONNECTION_PROPERTY_OUTPUT_BANDWIDTH 0x8
-/// Indicates the property colordepth is valid.
#define ADL_CONNECTION_PROPERTY_COLORDEPTH 0x10
-// @}
-/// \defgroup define_lanecount_constants
-/// These defines are the Lane count constants which will be used in DP & etc.
-// @{
-/// Indicates if lane count is unknown
#define ADL_LANECOUNT_UNKNOWN 0
-/// Indicates if lane count is 1
#define ADL_LANECOUNT_ONE 1
-/// Indicates if lane count is 2
#define ADL_LANECOUNT_TWO 2
-/// Indicates if lane count is 4
#define ADL_LANECOUNT_FOUR 4
-/// Indicates if lane count is 8
#define ADL_LANECOUNT_EIGHT 8
-/// Indicates default value of lane count
#define ADL_LANECOUNT_DEF ADL_LANECOUNT_FOUR
-// @}
-/// \defgroup define_linkrate_constants
-/// These defines are the link rate constants which will be used in DP & etc.
-// @{
-/// Indicates if link rate is unknown
#define ADL_LINK_BITRATE_UNKNOWN 0
-/// Indicates if link rate is 1.62Ghz
#define ADL_LINK_BITRATE_1_62_GHZ 0x06
-/// Indicates if link rate is 2.7Ghz
#define ADL_LINK_BITRATE_2_7_GHZ 0x0A
-/// Indicates if link rate is 5.4Ghz
#define ADL_LINK_BITRATE_5_4_GHZ 0x14
-/// Indicates if link rate is 8.1Ghz
#define ADL_LINK_BITRATE_8_1_GHZ 0x1E
-/// Indicates default value of link rate
#define ADL_LINK_BITRATE_DEF ADL_LINK_BITRATE_2_7_GHZ
-// @}
-/// \defgroup define_colordepth_constants
-/// These defines are the color depth constants which will be used in DP & etc.
-// @{
#define ADL_CONNPROP_S3D_ALTERNATE_TO_FRAME_PACK 0x00000001
-// @}
-/// \defgroup define_colordepth_constants
-/// These defines are the color depth constants which will be used in DP & etc.
-// @{
-/// Indicates if color depth is unknown
#define ADL_COLORDEPTH_UNKNOWN 0
-/// Indicates if color depth is 666
#define ADL_COLORDEPTH_666 1
-/// Indicates if color depth is 888
#define ADL_COLORDEPTH_888 2
-/// Indicates if color depth is 101010
#define ADL_COLORDEPTH_101010 3
-/// Indicates if color depth is 121212
#define ADL_COLORDEPTH_121212 4
-/// Indicates if color depth is 141414
#define ADL_COLORDEPTH_141414 5
-/// Indicates if color depth is 161616
#define ADL_COLORDEPTH_161616 6
-/// Indicates default value of color depth
#define ADL_COLOR_DEPTH_DEF ADL_COLORDEPTH_888
-// @}
-/// \defgroup define_emulation_status
-/// These defines are the status of emulation
-// @{
-/// Indicates if real device is connected.
#define ADL_EMUL_STATUS_REAL_DEVICE_CONNECTED 0x1
-/// Indicates if emulated device is presented.
#define ADL_EMUL_STATUS_EMULATED_DEVICE_PRESENT 0x2
-/// Indicates if emulated device is used.
#define ADL_EMUL_STATUS_EMULATED_DEVICE_USED 0x4
-/// In case when last active real/emulated device used (when persistence is enabled but no emulation enforced then persistence will use last connected/emulated device).
#define ADL_EMUL_STATUS_LAST_ACTIVE_DEVICE_USED 0x8
-// @}
-/// \defgroup define_emulation_mode
-/// These defines are the modes of emulation
-// @{
-/// Indicates if no emulation is used
#define ADL_EMUL_MODE_OFF 0
-/// Indicates if emulation is used when display connected
#define ADL_EMUL_MODE_ON_CONNECTED 1
-/// Indicates if emulation is used when display dis connected
#define ADL_EMUL_MODE_ON_DISCONNECTED 2
-/// Indicates if emulation is used always
#define ADL_EMUL_MODE_ALWAYS 3
-// @}
-/// \defgroup define_emulation_query
-/// These defines are the modes of emulation
-// @{
-/// Indicates Data from real device
#define ADL_QUERY_REAL_DATA 0
-/// Indicates Emulated data
#define ADL_QUERY_EMULATED_DATA 1
-/// Indicates Data currently in use
#define ADL_QUERY_CURRENT_DATA 2
-// @}
-/// \defgroup define_persistence_state
-/// These defines are the states of persistence
-// @{
-/// Indicates persistence is disabled
#define ADL_EDID_PERSISTANCE_DISABLED 0
-/// Indicates persistence is enabled
#define ADL_EDID_PERSISTANCE_ENABLED 1
-// @}
-/// \defgroup define_connector_types Connector Type
-/// defines for ADLConnectorInfo.iType
-// @{
-/// Indicates unknown Connector type
#define ADL_CONNECTOR_TYPE_UNKNOWN 0
-/// Indicates VGA Connector type
#define ADL_CONNECTOR_TYPE_VGA 1
-/// Indicates DVI-D Connector type
#define ADL_CONNECTOR_TYPE_DVI_D 2
-/// Indicates DVI-I Connector type
#define ADL_CONNECTOR_TYPE_DVI_I 3
-/// Indicates Active Dongle-NA Connector type
#define ADL_CONNECTOR_TYPE_ATICVDONGLE_NA 4
-/// Indicates Active Dongle-JP Connector type
#define ADL_CONNECTOR_TYPE_ATICVDONGLE_JP 5
-/// Indicates Active Dongle-NONI2C Connector type
#define ADL_CONNECTOR_TYPE_ATICVDONGLE_NONI2C 6
-/// Indicates Active Dongle-NONI2C-D Connector type
#define ADL_CONNECTOR_TYPE_ATICVDONGLE_NONI2C_D 7
-/// Indicates HDMI-Type A Connector type
#define ADL_CONNECTOR_TYPE_HDMI_TYPE_A 8
-/// Indicates HDMI-Type B Connector type
#define ADL_CONNECTOR_TYPE_HDMI_TYPE_B 9
-/// Indicates Display port Connector type
#define ADL_CONNECTOR_TYPE_DISPLAYPORT 10
-/// Indicates EDP Connector type
#define ADL_CONNECTOR_TYPE_EDP 11
-/// Indicates MiniDP Connector type
#define ADL_CONNECTOR_TYPE_MINI_DISPLAYPORT 12
-/// Indicates Virtual Connector type
#define ADL_CONNECTOR_TYPE_VIRTUAL 13
-// @}
+#define ADL_CONNECTOR_TYPE_USB_TYPE_C 14
-/// \defgroup define_freesync_usecase
-/// These defines are to specify use cases in which FreeSync should be enabled
-/// They are a bit mask. To specify FreeSync for more than one use case, the input value
-/// should be set to include multiple bits set
-// @{
-/// Indicates FreeSync is enabled for Static Screen case
#define ADL_FREESYNC_USECASE_STATIC 0x1
-/// Indicates FreeSync is enabled for Video use case
#define ADL_FREESYNC_USECASE_VIDEO 0x2
-/// Indicates FreeSync is enabled for Gaming use case
#define ADL_FREESYNC_USECASE_GAMING 0x4
-// @}
-/// \defgroup define_freesync_caps
-/// These defines are used to retrieve FreeSync display capabilities.
-/// GPU support flag also indicates whether the display is
-/// connected to a GPU that actually supports FreeSync
-// @{
#define ADL_FREESYNC_CAP_SUPPORTED (1 << 0)
#define ADL_FREESYNC_CAP_GPUSUPPORTED (1 << 1)
#define ADL_FREESYNC_CAP_DISPLAYSUPPORTED (1 << 2)
@@ -2218,125 +1542,180 @@ typedef enum _ADL_PMLOG_SENSORS
#define ADL_FREESYNC_CAP_NOCFXORCFXSUPPORTED (1 << 4)
#define ADL_FREESYNC_CAP_NOGENLOCKORGENLOCKSUPPORTED (1 << 5)
#define ADL_FREESYNC_CAP_BORDERLESSWINDOWSUPPORTED (1 << 6)
-// @}
+#define ADL_FREESYNC_LABEL_UNSUPPORTED 0
+#define ADL_FREESYNC_LABEL_FREESYNC 1
+#define ADL_FREESYNC_LABEL_ADAPTIVE_SYNC 2
+#define ADL_FREESYNC_LABEL_VRR 3
+#define ADL_FREESYNC_LABEL_FREESYNC_PREMIUM 4
+#define ADL_FREESYNC_LABEL_FREESYNC_PREMIUM_PRO 5
+
+#define ADL_FREESYNC_POWEROPTIMIZATION_SUPPORTED_MASK (1 << 0)
+#define ADL_FREESYNC_POWEROPTIMIZATION_ENABLED_MASK (1 << 1)
+#define ADL_FREESYNC_POWEROPTIMIZATION_DEFAULT_VALUE_MASK (1 << 2)
-/// \defgroup define_MST_CommandLine_execute
-// @{
-/// Indicates the MST command line for branch message if the bit is set. Otherwise, it is display message
#define ADL_MST_COMMANDLINE_PATH_MSG 0x1
-/// Indicates the MST command line to send message in broadcast way it the bit is set
#define ADL_MST_COMMANDLINE_BROADCAST 0x2
-// @}
-/// \defgroup define_Adapter_CloneTypes_Get
-// @{
-/// Indicates there is crossGPU clone with non-AMD dispalys
#define ADL_CROSSGPUDISPLAYCLONE_AMD_WITH_NONAMD 0x1
-/// Indicates there is crossGPU clone
#define ADL_CROSSGPUDISPLAYCLONE 0x2
-// @}
-/// \defgroup define_D3DKMT_HANDLE
-// @{
-/// Handle can be used to create Device Handle when using CreateDevice()
typedef unsigned int ADL_D3DKMT_HANDLE;
-// @}
// End Bracket for Constants and Definitions. Add new groups ABOVE this line!
-// @}
-typedef enum _ADL_RAS_ERROR_INJECTION_MODE
+typedef enum ADL_RAS_ERROR_INJECTION_MODE
{
- ADL_RAS_ERROR_INJECTION_MODE_SINGLE = 1,
- ADL_RAS_ERROR_INJECTION_MODE_MULTIPLE = 2
+ ADL_RAS_ERROR_INJECTION_MODE_SINGLE = 1,
+ ADL_RAS_ERROR_INJECTION_MODE_MULTIPLE = 2
}ADL_RAS_ERROR_INJECTION_MODE;
-typedef enum _ADL_RAS_BLOCK_ID
+typedef enum ADL_RAS_BLOCK_ID
{
- ADL_RAS_BLOCK_ID_UMC = 0,
- ADL_RAS_BLOCK_ID_SDMA,
- ADL_RAS_BLOCK_ID_GFX_HUB,
- ADL_RAS_BLOCK_ID_MMHUB,
- ADL_RAS_BLOCK_ID_ATHUB,
- ADL_RAS_BLOCK_ID_PCIE_BIF,
- ADL_RAS_BLOCK_ID_HDP,
- ADL_RAS_BLOCK_ID_XGMI_WAFL,
- ADL_RAS_BLOCK_ID_DF,
- ADL_RAS_BLOCK_ID_SMN,
- ADL_RAS_BLOCK_ID_SEM,
- ADL_RAS_BLOCK_ID_MP0,
- ADL_RAS_BLOCK_ID_MP1,
- ADL_RAS_BLOCK_ID_FUSE
+ ADL_RAS_BLOCK_ID_UMC = 0,
+ ADL_RAS_BLOCK_ID_SDMA,
+ ADL_RAS_BLOCK_ID_GFX_HUB,
+ ADL_RAS_BLOCK_ID_MMHUB,
+ ADL_RAS_BLOCK_ID_ATHUB,
+ ADL_RAS_BLOCK_ID_PCIE_BIF,
+ ADL_RAS_BLOCK_ID_HDP,
+ ADL_RAS_BLOCK_ID_XGMI_WAFL,
+ ADL_RAS_BLOCK_ID_DF,
+ ADL_RAS_BLOCK_ID_SMN,
+ ADL_RAS_BLOCK_ID_SEM,
+ ADL_RAS_BLOCK_ID_MP0,
+ ADL_RAS_BLOCK_ID_MP1,
+ ADL_RAS_BLOCK_ID_FUSE
}ADL_RAS_BLOCK_ID;
-typedef enum _ADL_MEM_SUB_BLOCK_ID
+typedef enum ADL_MEM_SUB_BLOCK_ID
{
- ADL_RAS__UMC_HBM = 0,
- ADL_RAS__UMC_SRAM = 1
+ ADL_RAS__UMC_HBM = 0,
+ ADL_RAS__UMC_SRAM = 1
}ADL_MEM_SUB_BLOCK_ID;
typedef enum _ADL_RAS_ERROR_TYPE
{
- ADL_RAS_ERROR__NONE = 0,
- ADL_RAS_ERROR__PARITY = 1,
- ADL_RAS_ERROR__SINGLE_CORRECTABLE = 2,
- ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE = 3,
- ADL_RAS_ERROR__MULTI_UNCORRECTABLE = 4,
- ADL_RAS_ERROR__PARITY_MULTI_UNCORRECTABLE = 5,
- ADL_RAS_ERROR__SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE = 6,
- ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE = 7,
- ADL_RAS_ERROR__POISON = 8,
- ADL_RAS_ERROR__PARITY_POISON = 9,
- ADL_RAS_ERROR__SINGLE_CORRECTABLE_POISON = 10,
- ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_POISON = 11,
- ADL_RAS_ERROR__MULTI_UNCORRECTABLE_POISON = 12,
- ADL_RAS_ERROR__PARITY_MULTI_UNCORRECTABLE_POISON = 13,
- ADL_RAS_ERROR__SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE_POISON = 14,
- ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE_POISON = 15
+ ADL_RAS_ERROR__NONE = 0,
+ ADL_RAS_ERROR__PARITY = 1,
+ ADL_RAS_ERROR__SINGLE_CORRECTABLE = 2,
+ ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE = 3,
+ ADL_RAS_ERROR__MULTI_UNCORRECTABLE = 4,
+ ADL_RAS_ERROR__PARITY_MULTI_UNCORRECTABLE = 5,
+ ADL_RAS_ERROR__SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE = 6,
+ ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE = 7,
+ ADL_RAS_ERROR__POISON = 8,
+ ADL_RAS_ERROR__PARITY_POISON = 9,
+ ADL_RAS_ERROR__SINGLE_CORRECTABLE_POISON = 10,
+ ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_POISON = 11,
+ ADL_RAS_ERROR__MULTI_UNCORRECTABLE_POISON = 12,
+ ADL_RAS_ERROR__PARITY_MULTI_UNCORRECTABLE_POISON = 13,
+ ADL_RAS_ERROR__SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE_POISON = 14,
+ ADL_RAS_ERROR__PARITY_SINGLE_CORRECTABLE_MULTI_UNCORRECTABLE_POISON = 15
}ADL_RAS_ERROR_TYPE;
-typedef enum _ADL_RAS_INJECTION_METHOD
+typedef enum ADL_RAS_INJECTION_METHOD
{
- ADL_RAS_ERROR__UMC_METH_COHERENT = 0,
- ADL_RAS_ERROR__UMC_METH_SINGLE_SHOT = 1,
- ADL_RAS_ERROR__UMC_METH_PERSISTENT = 2,
- ADL_RAS_ERROR__UMC_METH_PERSISTENT_DISABLE = 3
+ ADL_RAS_ERROR__UMC_METH_COHERENT = 0,
+ ADL_RAS_ERROR__UMC_METH_SINGLE_SHOT = 1,
+ ADL_RAS_ERROR__UMC_METH_PERSISTENT = 2,
+ ADL_RAS_ERROR__UMC_METH_PERSISTENT_DISABLE = 3
}ADL_RAS_INJECTION_METHOD;
// Driver event types
-typedef enum _ADL_DRIVER_EVENT_TYPE
+typedef enum ADL_DRIVER_EVENT_TYPE
{
- ADL_EVENT_ID_AUTO_FEATURE_COMPLETED = 30,
- ADL_EVENT_ID_FEATURE_AVAILABILITY = 31,
+ ADL_EVENT_ID_AUTO_FEATURE_COMPLETED = 30,
+ ADL_EVENT_ID_FEATURE_AVAILABILITY = 31,
} ADL_DRIVER_EVENT_TYPE;
//UIFeature Ids
-typedef enum _ADL_UIFEATURES_GROUP
+typedef enum ADL_UIFEATURES_GROUP
{
- ADL_UIFEATURES_GROUP_DVR = 0,
- ADL_UIFEATURES_GROUP_TURBOSYNC = 1,
- ADL_UIFEATURES_GROUP_FRAMEMETRICSMONITOR = 2,
- ADL_UIFEATURES_GROUP_FRTC = 3,
- ADL_UIFEATURES_GROUP_XVISION = 4,
- ADL_UIFEATURES_GROUP_BLOCKCHAIN = 5,
- ADL_UIFEATURES_GROUP_GAMEINTELLIGENCE = 6,
- ADL_UIFEATURES_GROUP_CHILL = 7,
- ADL_UIFEATURES_GROUP_DELAG = 8,
- ADL_UIFEATURES_GROUP_BOOST = 9,
- ADL_UIFEATURES_GROUP_USU = 10,
- ADL_UIFEATURES_GROUP_XGMI = 11
-}ADL_UIFEATURES_GROUP;
+ ADL_UIFEATURES_GROUP_DVR = 0,
+ ADL_UIFEATURES_GROUP_TURBOSYNC = 1,
+ ADL_UIFEATURES_GROUP_FRAMEMETRICSMONITOR = 2,
+ ADL_UIFEATURES_GROUP_FRTC = 3,
+ ADL_UIFEATURES_GROUP_XVISION = 4,
+ ADL_UIFEATURES_GROUP_BLOCKCHAIN = 5,
+ ADL_UIFEATURES_GROUP_GAMEINTELLIGENCE = 6,
+ ADL_UIFEATURES_GROUP_CHILL = 7,
+ ADL_UIFEATURES_GROUP_DELAG = 8,
+ ADL_UIFEATURES_GROUP_BOOST = 9,
+ ADL_UIFEATURES_GROUP_USU = 10,
+ ADL_UIFEATURES_GROUP_XGMI = 11,
+ ADL_UIFEATURES_GROUP_PROVSR = 12,
+ ADL_UIFEATURES_GROUP_SMA = 13,
+ ADL_UIFEATURES_GROUP_CAMERA = 14,
+ ADL_UIFEATURES_GROUP_FRTCPRO = 15
+} ADL_UIFEATURES_GROUP;
+
+
+#define ADL_RADEON_LED_MAX_BRIGHTNESS 2
+
+#define ADL_RADEON_LED_MAX_SPEED 4
+
+#define ADL_RADEON_LED_MAX_RGB 255
+
+#define ADL_RADEON_LED_MAX_MORSE_CODE 260
+
+#define ADL_RADEON_LED_MAX_LED_ROW_ON_GRID 7
+
+#define ADL_RADEON_LED_MAX_LED_COLUMN_ON_GRID 24
+
+typedef enum ADL_RADEON_USB_LED_BAR_CONTROLS
+{
+ RadeonLEDBarControl_OFF = 0,
+ RadeonLEDBarControl_Static,
+ RadeonLEDBarControl_Rainbow,
+ RadeonLEDBarControl_Swirl,
+ RadeonLEDBarControl_Chase,
+ RadeonLEDBarControl_Bounce,
+ RadeonLEDBarControl_MorseCode,
+ RadeonLEDBarControl_ColorCycle,
+ RadeonLEDBarControl_Breathing,
+ RadeonLEDBarControl_CustomPattern,
+ RadeonLEDBarControl_MAX
+}ADL_RADEON_USB_LED_BAR_CONTROLS;
+
+typedef unsigned int RadeonLEDBARSupportedControl;
+
+
+typedef enum ADL_RADEON_USB_LED_CONTROL_CONFIGS
+{
+ RadeonLEDPattern_Speed = 0,
+ RadeonLEDPattern_Brightness,
+ RadeonLEDPattern_Direction,
+ RadeonLEDPattern_Color,
+ RadeonLEDPattern_MAX
+}ADL_RADEON_USB_LED_CONTROL_CONFIGS;
+
+typedef unsigned int RadeonLEDBARSupportedConfig;
+
+//User blob feature settings
+typedef enum ADL_USER_SETTINGS
+{
+ ADL_USER_SETTINGS_ENHANCEDSYNC = 1 << 0, //notify Enhanced Sync settings change
+ ADL_USER_SETTINGS_CHILL_PROFILE = 1 << 1, //notify Chill settings change
+ ADL_USER_SETTINGS_DELAG_PROFILE = 1 << 2, //notify Delag settings change
+ ADL_USER_SETTINGS_BOOST_PROFILE = 1 << 3, //notify Boost settings change
+ ADL_USER_SETTINGS_USU_PROFILE = 1 << 4, //notify USU settings change
+ ADL_USER_SETTINGS_CVDC_PROFILE = 1 << 5, //notify Color Vision Deficiency Corretion settings change
+ ADL_USER_SETTINGS_SCE_PROFILE = 1 << 6,
+ ADL_USER_SETTINGS_PROVSR = 1 << 7
+} ADL_USER_SETTINGS;
+
+#define ADL_REG_DEVICE_FUNCTION_1 0x00000001
#endif /* ADL_DEFINES_H_ */
diff --git a/dependencies/display-library/include/adl_sdk.h b/dependencies/display-library/include/adl_sdk.h
index d31dd370..220f452b 100644
--- a/dependencies/display-library/include/adl_sdk.h
+++ b/dependencies/display-library/include/adl_sdk.h
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved.
+// Copyright (c) 2016 - 2022 Advanced Micro Devices, Inc. All rights reserved.
//
// MIT LICENSE:
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,13 +20,6 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
-/// \file adl_sdk.h
-/// \brief Contains the definition of the Memory Allocation Callback.\n Included in ADL SDK
-///
-/// \n\n
-/// This file contains the definition of the Memory Allocation Callback.\n
-/// It also includes definitions of the respective structures and constants.\n
-/// This is the only header file to be included in a C/C++ project using ADL
#ifndef ADL_SDK_H_
#define ADL_SDK_H_
@@ -37,8 +30,9 @@
#define __stdcall
#endif /* (LINUX) */
-/// Memory Allocation Call back
typedef void* ( __stdcall *ADL_MAIN_MALLOC_CALLBACK )( int );
+#define ADL_SDK_MAJOR_VERSION 17
+#define ADL_SDK_MINOR_VERSION 0
#endif /* ADL_SDK_H_ */
diff --git a/dependencies/display-library/include/adl_structures.h b/dependencies/display-library/include/adl_structures.h
index b9367803..9fa0d703 100644
--- a/dependencies/display-library/include/adl_structures.h
+++ b/dependencies/display-library/include/adl_structures.h
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved.
+// Copyright (c) 2016 - 2022 Advanced Micro Devices, Inc. All rights reserved.
//
// MIT LICENSE:
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,256 +20,226 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
-/// \file adl_structures.h
-///\brief This file contains the structure declarations that are used by the public ADL interfaces for \ALL platforms.\n Included in ADL SDK
-///
-/// All data structures used in AMD Display Library (ADL) public interfaces should be defined in this header file.
-///
#ifndef ADL_STRUCTURES_H_
#define ADL_STRUCTURES_H_
#include "adl_defines.h"
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
+#include
typedef struct AdapterInfo
{
-/// \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;
+
#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) */
} AdapterInfo, *LPAdapterInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the Linux X screen information.
-///
-/// This structure is used to store the current screen number and xorg.conf ID name assoicated with an adapter index.
-/// This structure is updated during ADL_Main_Control_Refresh or ADL_ScreenInfo_Update.
-/// Note: This structure should be used in place of iXScreenNum and strXScreenConfigName in AdapterInfo as they will be
-/// deprecated.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
#if defined (LINUX)
typedef struct XScreenInfo
{
-/// Internal X screen number from GPUMapInfo.
int iXScreenNum;
-/// Internal x config file screen identifier name.
char strXScreenConfigName[ADL_MAX_PATH];
} XScreenInfo, *LPXScreenInfo;
#endif /* (LINUX) */
+typedef struct ADLAdapterCaps
+{
+ int iAdapterID;
+ int iNumControllers;
+ int iNumDisplays;
+ int iNumOverlays;
+ int iNumOfGLSyncConnectors;
+ int iCapsMask;
+ int iCapsValue;
+}ADLAdapterCaps;
+
+typedef struct ADLMemoryInfo2
+{
+ long long iMemorySize;
+ char strMemoryType[ADL_MAX_PATH];
+ long long iMemoryBandwidth;
+ long long iHyperMemorySize;
+
+ long long iInvisibleMemorySize;
+ long long iVisibleMemorySize;
+} ADLMemoryInfo2, *LPADLMemoryInfo2;
+
+typedef struct ADLMemoryInfo3
+{
+ long long iMemorySize;
+ char strMemoryType[ADL_MAX_PATH];
+ long long iMemoryBandwidth;
+ long long iHyperMemorySize;
+
+ long long iInvisibleMemorySize;
+ long long iVisibleMemorySize;
+ long long iVramVendorRevId;
+} ADLMemoryInfo3, *LPADLMemoryInfo3;
+
+typedef struct ADLMemoryInfoX4
+{
+ long long iMemorySize;
+ char strMemoryType[ADL_MAX_PATH];
+ long long iMemoryBandwidth;
+ long long iHyperMemorySize;
+
+ long long iInvisibleMemorySize;
+ long long iVisibleMemorySize;
+ long long iVramVendorRevId;
+ long long iMemoryBandwidthX2;
+ long long iMemoryBitRateX2;
+
+} ADLMemoryInfoX4, *LPADLMemoryInfoX4;
+
+// ADLvRamVendor Enumeration
+enum ADLvRamVendors
+{
+ ADLvRamVendor_Unsupported = 0x0,
+ ADLvRamVendor_SAMSUNG,
+ ADLvRamVendor_INFINEON,
+ ADLvRamVendor_ELPIDA,
+ ADLvRamVendor_ETRON,
+ ADLvRamVendor_NANYA,
+ ADLvRamVendor_HYNIX,
+ ADLvRamVendor_MOSEL,
+ ADLvRamVendor_WINBOND,
+ ADLvRamVendor_ESMT,
+ ADLvRamVendor_MICRON = 0xF,
+ ADLvRamVendor_Undefined
+};
+
+
+typedef struct ADLGcnInfo
+{
+ int CuCount; //Number of compute units on the ASIC.
+ int TexCount; //Number of texture mapping units.
+ int RopCount; //Number of Render backend Units.
+ int ASICFamilyId; //Such SI, VI. See /inc/asic_reg/atiid.h for family ids
+ int ASICRevisionId; //Such as Ellesmere, Fiji. For example - VI family revision ids are stored in /inc/asic_reg/vi_id.h
+}ADLGcnInfo;
+
+typedef struct ADLVirtualSegmentSettingsOutput
+{
+ int virtualSegmentSupported; // 1 - subsequent values are valid
+ int virtualSegmentDefault; //virtual segment default, 1: enable, 0: disable
+ int virtualSegmentCurrent; //virtual segment current, 1: enable, 0: disable
+ int iMinSizeInMB; //minimum value
+ int iMaxSizeInMB; //maximum value
+ int icurrentSizeInMB; //last configured otherwise same as factory default
+ int idefaultSizeInMB; //factory default
+ int iMask; //fileds for extension in the future
+ int iValue; //fileds for extension in the future
+} ADLVirtualSegmentSettingsOutput;
+
+typedef struct ADLChipSetInfo
+{
+ int iBusType;
+ int iBusSpeedType;
+ int iMaxPCIELaneWidth;
+ int iCurrentPCIELaneWidth;
+ int iSupportedAGPSpeeds;
+ int iCurrentAGPSpeed;
+} ADLChipSetInfo, *LPADLChipSetInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the ASIC memory.
-///
-/// This structure is used to store various information about the ASIC memory. This
-/// information can be returned to the user.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMemoryInfo
{
-/// Memory size in bytes.
long long iMemorySize;
-/// Memory type in string.
char strMemoryType[ADL_MAX_PATH];
-/// Memory bandwidth in Mbytes/s.
long long iMemoryBandwidth;
} ADLMemoryInfo, *LPADLMemoryInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about memory required by type
-///
-/// This structure is returned by ADL_Adapter_ConfigMemory_Get, which given a desktop and display configuration
-/// will return the Memory used.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMemoryRequired
{
- long long iMemoryReq; /// Memory in bytes required
- int iType; /// Type of Memory \ref define_adl_validmemoryrequiredfields
- int iDisplayFeatureValue; /// Display features \ref define_adl_visiblememoryfeatures that are using this type of memory
+ long long iMemoryReq;
+ int iType;
+ int iDisplayFeatureValue;
} ADLMemoryRequired, *LPADLMemoryRequired;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the features associated with a display
-///
-/// This structure is a parameter to ADL_Adapter_ConfigMemory_Get, which given a desktop and display configuration
-/// will return the Memory used.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMemoryDisplayFeatures
{
- int iDisplayIndex; /// ADL Display index
- int iDisplayFeatureValue; /// features that the display is using \ref define_adl_visiblememoryfeatures
+ int iDisplayIndex;
+ int iDisplayFeatureValue;
} ADLMemoryDisplayFeatures, *LPADLMemoryDisplayFeatures;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing DDC information.
-///
-/// This structure is used to store various DDC information that can be returned to the user.
-/// Note that all fields of type int are actually defined as unsigned int types within the driver.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDDCInfo
{
-/// Size of the structure
int ulSize;
-/// Indicates whether the attached display supports DDC. If this field is zero on return, no other DDC information fields will be used.
int ulSupportsDDC;
-/// Returns the manufacturer ID of the display device. Should be zeroed if this information is not available.
int ulManufacturerID;
-/// Returns the product ID of the display device. Should be zeroed if this information is not available.
int ulProductID;
-/// Returns the name of the display device. Should be zeroed if this information is not available.
char cDisplayName[ADL_MAX_DISPLAY_NAME];
-/// Returns the maximum Horizontal supported resolution. Should be zeroed if this information is not available.
int ulMaxHResolution;
-/// Returns the maximum Vertical supported resolution. Should be zeroed if this information is not available.
int ulMaxVResolution;
-/// Returns the maximum supported refresh rate. Should be zeroed if this information is not available.
int ulMaxRefresh;
-/// Returns the display device preferred timing mode's horizontal resolution.
int ulPTMCx;
-/// Returns the display device preferred timing mode's vertical resolution.
int ulPTMCy;
-/// Returns the display device preferred timing mode's refresh rate.
int ulPTMRefreshRate;
-/// Return EDID flags.
int ulDDCInfoFlag;
} ADLDDCInfo, *LPADLDDCInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing DDC information.
-///
-/// This structure is used to store various DDC information that can be returned to the user.
-/// Note that all fields of type int are actually defined as unsigned int types within the driver.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDDCInfo2
{
-/// Size of the structure
int ulSize;
-/// Indicates whether the attached display supports DDC. If this field is zero on return, no other DDC
-/// information fields will be used.
int ulSupportsDDC;
-/// Returns the manufacturer ID of the display device. Should be zeroed if this information is not available.
int ulManufacturerID;
-/// Returns the product ID of the display device. Should be zeroed if this information is not available.
int ulProductID;
-/// Returns the name of the display device. Should be zeroed if this information is not available.
char cDisplayName[ADL_MAX_DISPLAY_NAME];
-/// Returns the maximum Horizontal supported resolution. Should be zeroed if this information is not available.
int ulMaxHResolution;
-/// Returns the maximum Vertical supported resolution. Should be zeroed if this information is not available.
int ulMaxVResolution;
-/// Returns the maximum supported refresh rate. Should be zeroed if this information is not available.
int ulMaxRefresh;
-/// Returns the display device preferred timing mode's horizontal resolution.
int ulPTMCx;
-/// Returns the display device preferred timing mode's vertical resolution.
int ulPTMCy;
-/// Returns the display device preferred timing mode's refresh rate.
int ulPTMRefreshRate;
-/// Return EDID flags.
int ulDDCInfoFlag;
-/// Returns 1 if the display supported packed pixel, 0 otherwise
int bPackedPixelSupported;
-/// Returns the Pixel formats the display supports \ref define_ddcinfo_pixelformats
int iPanelPixelFormat;
-/// Return EDID serial ID.
int ulSerialID;
-/// Return minimum monitor luminance data
int ulMinLuminanceData;
-/// Return average monitor luminance data
int ulAvgLuminanceData;
-/// Return maximum monitor luminance data
int ulMaxLuminanceData;
-/// Bit vector of supported transfer functions \ref define_source_content_TF
int iSupportedTransferFunction;
-/// Bit vector of supported color spaces \ref define_source_content_CS
int iSupportedColorSpace;
-/// Display Red Chromaticity X coordinate multiplied by 10000
int iNativeDisplayChromaticityRedX;
-/// Display Red Chromaticity Y coordinate multiplied by 10000
int iNativeDisplayChromaticityRedY;
-/// Display Green Chromaticity X coordinate multiplied by 10000
int iNativeDisplayChromaticityGreenX;
-/// Display Green Chromaticity Y coordinate multiplied by 10000
int iNativeDisplayChromaticityGreenY;
-/// Display Blue Chromaticity X coordinate multiplied by 10000
int iNativeDisplayChromaticityBlueX;
-/// Display Blue Chromaticity Y coordinate multiplied by 10000
int iNativeDisplayChromaticityBlueY;
-/// Display White Point X coordinate multiplied by 10000
int iNativeDisplayChromaticityWhitePointX;
-/// Display White Point Y coordinate multiplied by 10000
int iNativeDisplayChromaticityWhitePointY;
-/// Display diffuse screen reflectance 0-1 (100%) in units of 0.01
int iDiffuseScreenReflectance;
-/// Display specular screen reflectance 0-1 (100%) in units of 0.01
int iSpecularScreenReflectance;
-/// Bit vector of supported color spaces \ref define_HDR_support
int iSupportedHDR;
-/// Bit vector for freesync flags
int iFreesyncFlags;
-/// Return minimum monitor luminance without dimming data
int ulMinLuminanceNoDimmingData;
int ulMaxBacklightMaxLuminanceData;
@@ -281,53 +251,23 @@ typedef struct ADLDDCInfo2
int iReserved[4];
} ADLDDCInfo2, *LPADLDDCInfo2;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information controller Gamma settings.
-///
-/// This structure is used to store the red, green and blue color channel information for the.
-/// controller gamma setting. This information is returned by ADL, and it can also be used to
-/// set the controller gamma setting.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGamma
{
-/// Red color channel gamma value.
float fRed;
-/// Green color channel gamma value.
float fGreen;
-/// Blue color channel gamma value.
float fBlue;
} ADLGamma, *LPADLGamma;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about component video custom modes.
-///
-/// This structure is used to store the component video custom mode.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLCustomMode
{
-/// Custom mode flags. They are returned by the ADL driver.
int iFlags;
-/// Custom mode width.
int iModeWidth;
-/// Custom mode height.
int iModeHeight;
-/// Custom mode base width.
int iBaseModeWidth;
-/// Custom mode base height.
int iBaseModeHeight;
-/// Custom mode refresh rate.
int iRefreshRate;
} ADLCustomMode, *LPADLCustomMode;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing Clock information for OD5 calls.
-///
-/// This structure is used to retrieve clock information for OD5 calls.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGetClocksOUT
{
long ulHighCoreClock;
@@ -343,2058 +283,1013 @@ typedef struct ADLGetClocksOUT
long ulReserved;
} ADLGetClocksOUT;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing HDTV information for display calls.
-///
-/// This structure is used to retrieve HDTV information information for display calls.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayConfig
{
-/// Size of the structure
- long ulSize;
-/// HDTV connector type.
- long ulConnectorType;
-/// HDTV capabilities.
- long ulDeviceData;
-/// Overridden HDTV capabilities.
- long ulOverridedDeviceData;
-/// Reserved field
- long ulReserved;
+ long ulSize;
+ long ulConnectorType;
+ long ulDeviceData;
+ long ulOverridedDeviceData;
+ long ulReserved;
} ADLDisplayConfig;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display device.
-///
-/// This structure is used to store display device information
-/// such as display index, type, name, connection status, mapped adapter and controller indexes,
-/// whether or not multiple VPUs are supported, local display connections or not (through Lasso), etc.
-/// This information can be returned to the user. Alternatively, it can be used to access various driver calls to set
-/// or fetch various display device related settings upon the user's request.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayID
{
-/// The logical display index belonging to this adapter.
int iDisplayLogicalIndex;
-///\brief The physical display index.
-/// For example, display index 2 from adapter 2 can be used by current adapter 1.\n
-/// So current adapter may enumerate this adapter as logical display 7 but the physical display
-/// index is still 2.
int iDisplayPhysicalIndex;
-/// The persistent logical adapter index for the display.
int iDisplayLogicalAdapterIndex;
-///\brief The persistent physical adapter index for the display.
-/// It can be the current adapter or a non-local adapter. \n
-/// If this adapter index is different than the current adapter,
-/// the Display Non Local flag is set inside DisplayInfoValue.
int iDisplayPhysicalAdapterIndex;
} ADLDisplayID, *LPADLDisplayID;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display device.
-///
-/// This structure is used to store various information about the display device. This
-/// information can be returned to the user, or used to access various driver calls to set
-/// or fetch various display-device-related settings upon the user's request
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayInfo
{
-/// The DisplayID structure
ADLDisplayID displayID;
-///\deprecated The controller index to which the display is mapped.\n Will not be used in the future\n
int iDisplayControllerIndex;
-/// The display's EDID name.
char strDisplayName[ADL_MAX_PATH];
-/// The display's manufacturer name.
char strDisplayManufacturerName[ADL_MAX_PATH];
-/// The Display type. For example: CRT, TV, CV, DFP.
int iDisplayType;
-/// The display output type. For example: HDMI, SVIDEO, COMPONMNET VIDEO.
int iDisplayOutputType;
-/// The connector type for the device.
int iDisplayConnector;
-///\brief The bit mask identifies the number of bits ADLDisplayInfo is currently using. \n
-/// It will be the sum all the bit definitions in ADL_DISPLAY_DISPLAYINFO_xxx.
int iDisplayInfoMask;
-/// The bit mask identifies the display status. \ref define_displayinfomask
int iDisplayInfoValue;
} ADLDisplayInfo, *LPADLDisplayInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display port MST device.
-///
-/// This structure is used to store various MST information about the display port device. This
-/// information can be returned to the user, or used to access various driver calls to
-/// fetch various display-device-related settings upon the user's request
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayDPMSTInfo
{
- /// The ADLDisplayID structure
ADLDisplayID displayID;
- /// total bandwidth available on the DP connector
int iTotalAvailableBandwidthInMpbs;
- /// bandwidth allocated to this display
int iAllocatedBandwidthInMbps;
// info from DAL DpMstSinkInfo
- /// string identifier for the display
char strGlobalUniqueIdentifier[ADL_MAX_PATH];
- /// The link count of relative address, rad[0] upto rad[linkCount] are valid
int radLinkCount;
- /// The physical connector ID, used to identify the physical DP port
int iPhysicalConnectorID;
- /// Relative address, address scheme starts from source side
char rad[ADL_MAX_RAD_LINK_COUNT];
} ADLDisplayDPMSTInfo, *LPADLDisplayDPMSTInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the display mode definition used per controller.
-///
-/// This structure is used to store the display mode definition used per controller.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayMode
{
-/// Vertical resolution (in pixels).
- int iPelsHeight;
-/// Horizontal resolution (in pixels).
- int iPelsWidth;
-/// Color depth.
- int iBitsPerPel;
-/// Refresh rate.
- int iDisplayFrequency;
+ int iPelsHeight;
+ int iPelsWidth;
+ int iBitsPerPel;
+ int iDisplayFrequency;
} ADLDisplayMode;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing detailed timing parameters.
-///
-/// This structure is used to store the detailed timing parameters.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDetailedTiming
{
-/// Size of the structure.
- int iSize;
-/// Timing flags. \ref define_detailed_timing_flags
- short sTimingFlags;
-/// Total width (columns).
- short sHTotal;
-/// Displayed width.
- short sHDisplay;
-/// Horizontal sync signal offset.
- short sHSyncStart;
-/// Horizontal sync signal width.
- short sHSyncWidth;
-/// Total height (rows).
- short sVTotal;
-/// Displayed height.
- short sVDisplay;
-/// Vertical sync signal offset.
- short sVSyncStart;
-/// Vertical sync signal width.
- short sVSyncWidth;
-/// Pixel clock value.
- short sPixelClock;
-/// Overscan right.
- short sHOverscanRight;
-/// Overscan left.
- short sHOverscanLeft;
-/// Overscan bottom.
- short sVOverscanBottom;
-/// Overscan top.
- short sVOverscanTop;
- short sOverscan8B;
- short sOverscanGR;
+ int iSize;
+ short sTimingFlags;
+ short sHTotal;
+ short sHDisplay;
+ short sHSyncStart;
+ short sHSyncWidth;
+ short sVTotal;
+ short sVDisplay;
+ short sVSyncStart;
+ short sVSyncWidth;
+ short sPixelClock;
+ short sHOverscanRight;
+ short sHOverscanLeft;
+ short sVOverscanBottom;
+ short sVOverscanTop;
+ short sOverscan8B;
+ short sOverscanGR;
} ADLDetailedTiming;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing display mode information.
-///
-/// This structure is used to store the display mode information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayModeInfo
{
-/// Timing standard of the current mode. \ref define_modetiming_standard
- int iTimingStandard;
-/// Applicable timing standards for the current mode.
- int iPossibleStandard;
-/// Refresh rate factor.
- int iRefreshRate;
-/// Num of pixels in a row.
- int iPelsWidth;
-/// Num of pixels in a column.
- int iPelsHeight;
-/// Detailed timing parameters.
- ADLDetailedTiming sDetailedTiming;
+ int iTimingStandard;
+ int iPossibleStandard;
+ int iRefreshRate;
+ int iPelsWidth;
+ int iPelsHeight;
+ ADLDetailedTiming sDetailedTiming;
} ADLDisplayModeInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about display property.
-///
-/// This structure is used to store the display property for the current adapter.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayProperty
{
-/// Must be set to sizeof the structure
- int iSize;
-/// Must be set to \ref ADL_DL_DISPLAYPROPERTY_TYPE_EXPANSIONMODE or \ref ADL_DL_DISPLAYPROPERTY_TYPE_USEUNDERSCANSCALING
- int iPropertyType;
-/// Get or Set \ref ADL_DL_DISPLAYPROPERTY_EXPANSIONMODE_CENTER or \ref ADL_DL_DISPLAYPROPERTY_EXPANSIONMODE_FULLSCREEN or \ref ADL_DL_DISPLAYPROPERTY_EXPANSIONMODE_ASPECTRATIO or \ref ADL_DL_DISPLAYPROPERTY_TYPE_ITCFLAGENABLE
- int iExpansionMode;
-/// Display Property supported? 1: Supported, 0: Not supported
- int iSupport;
-/// Display Property current value
- int iCurrent;
-/// Display Property Default value
- int iDefault;
+ int iSize;
+ int iPropertyType;
+ int iExpansionMode;
+ int iSupport;
+ int iCurrent;
+ int iDefault;
} ADLDisplayProperty;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Clock.
-///
-/// This structure is used to store the clock information for the current adapter
-/// such as core clock and memory clock info.
-///\nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLClockInfo
{
-/// Core clock in 10 KHz.
int iCoreClock;
-/// Memory clock in 10 KHz.
int iMemoryClock;
} ADLClockInfo, *LPADLClockInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about I2C.
-///
-/// This structure is used to store the I2C information for the current adapter.
-/// This structure is used by the ADL_Display_WriteAndReadI2C() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLI2C
{
-/// Size of the structure
int iSize;
-/// Numerical value representing hardware I2C.
int iLine;
-/// The 7-bit I2C slave device address, shifted one bit to the left.
int iAddress;
-/// The offset of the data from the address.
int iOffset;
-/// Read from or write to slave device. \ref ADL_DL_I2C_ACTIONREAD or \ref ADL_DL_I2C_ACTIONWRITE or \ref ADL_DL_I2C_ACTIONREAD_REPEATEDSTART
int iAction;
-/// I2C clock speed in KHz.
int iSpeed;
-/// A numerical value representing the number of bytes to be sent or received on the I2C bus.
int iDataSize;
-/// Address of the characters which are to be sent or received on the I2C bus.
char *pcData;
} ADLI2C;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about EDID data.
-///
-/// This structure is used to store the information about EDID data for the adapter.
-/// This structure is used by the ADL_Display_EdidData_Get() and ADL_Display_EdidData_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayEDIDData
{
-/// Size of the structure
- int iSize;
-/// Set to 0
- int iFlag;
- /// Size of cEDIDData. Set by ADL_Display_EdidData_Get() upon return
- int iEDIDSize;
-/// 0, 1 or 2. If set to 3 or above an error ADL_ERR_INVALID_PARAM is generated
- int iBlockIndex;
-/// EDID data
- char cEDIDData[ADL_MAX_EDIDDATA_SIZE];
-/// Reserved
- int iReserved[4];
+ int iSize;
+ int iFlag;
+ int iEDIDSize;
+ int iBlockIndex;
+ char cEDIDData[ADL_MAX_EDIDDATA_SIZE];
+ int iReserved[4];
}ADLDisplayEDIDData;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about input of controller overlay adjustment.
-///
-/// This structure is used to store the information about input of controller overlay adjustment for the adapter.
-/// This structure is used by the ADL_Display_ControllerOverlayAdjustmentCaps_Get, ADL_Display_ControllerOverlayAdjustmentData_Get, and
-/// ADL_Display_ControllerOverlayAdjustmentData_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLControllerOverlayInput
{
-/// Should be set to the sizeof the structure
- int iSize;
-///\ref ADL_DL_CONTROLLER_OVERLAY_ALPHA or \ref ADL_DL_CONTROLLER_OVERLAY_ALPHAPERPIX
- int iOverlayAdjust;
-/// Data.
- int iValue;
-/// Should be 0.
- int iReserved;
+ int iSize;
+ int iOverlayAdjust;
+ int iValue;
+ int iReserved;
} ADLControllerOverlayInput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about overlay adjustment.
-///
-/// This structure is used to store the information about overlay adjustment for the adapter.
-/// This structure is used by the ADLControllerOverlayInfo() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdjustmentinfo
{
-/// Default value
- int iDefault;
-/// Minimum value
- int iMin;
-/// Maximum Value
- int iMax;
-/// Step value
- int iStep;
+ int iDefault;
+ int iMin;
+ int iMax;
+ int iStep;
} ADLAdjustmentinfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about controller overlay information.
-///
-/// This structure is used to store information about controller overlay info for the adapter.
-/// This structure is used by the ADL_Display_ControllerOverlayAdjustmentCaps_Get() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLControllerOverlayInfo
{
-/// Should be set to the sizeof the structure
- int iSize;
-/// Data.
- ADLAdjustmentinfo sOverlayInfo;
-/// Should be 0.
- int iReserved[3];
+ int iSize;
+ ADLAdjustmentinfo sOverlayInfo;
+ int iReserved[3];
} ADLControllerOverlayInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync module information.
-///
-/// This structure is used to retrieve GL-Sync module information for
-/// Workstation Framelock/Genlock.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGLSyncModuleID
{
-/// Unique GL-Sync module ID.
int iModuleID;
-/// GL-Sync GPU port index (to be passed into ADLGLSyncGenlockConfig.lSignalSource and ADLGlSyncPortControl.lSignalSource).
int iGlSyncGPUPort;
-/// GL-Sync module firmware version of Boot Sector.
int iFWBootSectorVersion;
-/// GL-Sync module firmware version of User Sector.
int iFWUserSectorVersion;
} ADLGLSyncModuleID , *LPADLGLSyncModuleID;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync ports capabilities.
-///
-/// This structure is used to retrieve hardware capabilities for the ports of the GL-Sync module
-/// for Workstation Framelock/Genlock (such as port type and number of associated LEDs).
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGLSyncPortCaps
{
-/// Port type. Bitfield of ADL_GLSYNC_PORTTYPE_* \ref define_glsync
int iPortType;
-/// Number of LEDs associated for this port.
int iNumOfLEDs;
}ADLGLSyncPortCaps, *LPADLGLSyncPortCaps;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync Genlock settings.
-///
-/// This structure is used to get and set genlock settings for the GPU ports of the GL-Sync module
-/// for Workstation Framelock/Genlock.\n
-/// \see define_glsync
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGLSyncGenlockConfig
{
-/// Specifies what fields in this structure are valid \ref define_glsync
int iValidMask;
-/// Delay (ms) generating a sync signal.
int iSyncDelay;
-/// Vector of framelock control bits. Bitfield of ADL_GLSYNC_FRAMELOCKCNTL_* \ref define_glsync
int iFramelockCntlVector;
-/// Source of the sync signal. Either GL_Sync GPU Port index or ADL_GLSYNC_SIGNALSOURCE_* \ref define_glsync
int iSignalSource;
-/// Use sampled sync signal. A value of 0 specifies no sampling.
int iSampleRate;
-/// For interlaced sync signals, the value can be ADL_GLSYNC_SYNCFIELD_1 or *_BOTH \ref define_glsync
int iSyncField;
-/// The signal edge that should trigger synchronization. ADL_GLSYNC_TRIGGEREDGE_* \ref define_glsync
int iTriggerEdge;
-/// Scan rate multiplier applied to the sync signal. ADL_GLSYNC_SCANRATECOEFF_* \ref define_glsync
int iScanRateCoeff;
}ADLGLSyncGenlockConfig, *LPADLGLSyncGenlockConfig;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync port information.
-///
-/// This structure is used to get status of the GL-Sync ports (BNC or RJ45s)
-/// for Workstation Framelock/Genlock.
-/// \see define_glsync
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGlSyncPortInfo
{
-/// Type of GL-Sync port (ADL_GLSYNC_PORT_*).
int iPortType;
-/// The number of LEDs for this port. It's also filled within ADLGLSyncPortCaps.
int iNumOfLEDs;
-/// Port state ADL_GLSYNC_PORTSTATE_* \ref define_glsync
int iPortState;
-/// Scanned frequency for this port (vertical refresh rate in milliHz; 60000 means 60 Hz).
int iFrequency;
-/// Used for ADL_GLSYNC_PORT_BNC. It is ADL_GLSYNC_SIGNALTYPE_* \ref define_glsync
int iSignalType;
-/// Used for ADL_GLSYNC_PORT_RJ45PORT*. It is GL_Sync GPU Port index or ADL_GLSYNC_SIGNALSOURCE_*. \ref define_glsync
int iSignalSource;
-
} ADLGlSyncPortInfo, *LPADLGlSyncPortInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync port control settings.
-///
-/// This structure is used to configure the GL-Sync ports (RJ45s only)
-/// for Workstation Framelock/Genlock.
-/// \see define_glsync
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGlSyncPortControl
{
-/// Port to control ADL_GLSYNC_PORT_RJ45PORT1 or ADL_GLSYNC_PORT_RJ45PORT2 \ref define_glsync
int iPortType;
-/// Port control data ADL_GLSYNC_PORTCNTL_* \ref define_glsync
int iControlVector;
-/// Source of the sync signal. Either GL_Sync GPU Port index or ADL_GLSYNC_SIGNALSOURCE_* \ref define_glsync
int iSignalSource;
} ADLGlSyncPortControl;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync mode of a display.
-///
-/// This structure is used to get and set GL-Sync mode settings for a display connected to
-/// an adapter attached to a GL-Sync module for Workstation Framelock/Genlock.
-/// \see define_glsync
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGlSyncMode
{
-/// Mode control vector. Bitfield of ADL_GLSYNC_MODECNTL_* \ref define_glsync
int iControlVector;
-/// Mode status vector. Bitfield of ADL_GLSYNC_MODECNTL_STATUS_* \ref define_glsync
int iStatusVector;
-/// Index of GL-Sync connector used to genlock the display/controller.
int iGLSyncConnectorIndex;
} ADLGlSyncMode, *LPADLGlSyncMode;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing GL-Sync mode of a display.
-///
-/// This structure is used to get and set GL-Sync mode settings for a display connected to
-/// an adapter attached to a GL-Sync module for Workstation Framelock/Genlock.
-/// \see define_glsync
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGlSyncMode2
{
-/// Mode control vector. Bitfield of ADL_GLSYNC_MODECNTL_* \ref define_glsync
int iControlVector;
-/// Mode status vector. Bitfield of ADL_GLSYNC_MODECNTL_STATUS_* \ref define_glsync
int iStatusVector;
-/// Index of GL-Sync connector used to genlock the display/controller.
int iGLSyncConnectorIndex;
-/// Index of the display to which this GLSync applies to.
int iDisplayIndex;
} ADLGlSyncMode2, *LPADLGlSyncMode2;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the packet info of a display.
-///
-/// This structure is used to get and set the packet information of a display.
-/// This structure is used by ADLDisplayDataPacket.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLInfoPacket
{
char hb0;
char hb1;
char hb2;
-/// sb0~sb27
char sb[28];
}ADLInfoPacket;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the AVI packet info of a display.
-///
-/// This structure is used to get and set AVI the packet info of a display.
-/// This structure is used by ADLDisplayDataPacket.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAVIInfoPacket //Valid user defined data/
{
-/// byte 3, bit 7
- char bPB3_ITC;
-/// byte 5, bit [7:4].
- char bPB5;
+ char bPB3_ITC;
+ char bPB5;
}ADLAVIInfoPacket;
// Overdrive clock setting structure definition.
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the Overdrive clock setting.
-///
-/// This structure is used to get the Overdrive clock setting.
-/// This structure is used by ADLAdapterODClockInfo.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODClockSetting
{
-/// Deafult clock
int iDefaultClock;
-/// Current clock
int iCurrentClock;
-/// Maximum clcok
int iMaxClock;
-/// Minimum clock
int iMinClock;
-/// Requested clcock
int iRequestedClock;
-/// Step
int iStepClock;
} ADLODClockSetting;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the Overdrive clock information.
-///
-/// This structure is used to get the Overdrive clock information.
-/// This structure is used by the ADL_Display_ODClockInfo_Get() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdapterODClockInfo
{
-/// Size of the structure
int iSize;
-/// Flag \ref define_clockinfo_flags
int iFlags;
-/// Memory Clock
ADLODClockSetting sMemoryClock;
-/// Engine Clock
ADLODClockSetting sEngineClock;
} ADLAdapterODClockInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the Overdrive clock configuration.
-///
-/// This structure is used to set the Overdrive clock configuration.
-/// This structure is used by the ADL_Display_ODClockConfig_Set() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdapterODClockConfig
{
-/// Size of the structure
- int iSize;
-/// Flag \ref define_clockinfo_flags
- int iFlags;
-/// Memory Clock
- int iMemoryClock;
-/// Engine Clock
- int iEngineClock;
+ int iSize;
+ int iFlags;
+ int iMemoryClock;
+ int iEngineClock;
} ADLAdapterODClockConfig;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPMActivity
{
-/// 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;
} ADLPMActivity;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLThermalControllerInfo
{
-/// Must be set to the size of the structure
- int iSize;
-/// Possible valies: \ref ADL_DL_THERMAL_DOMAIN_OTHER or \ref ADL_DL_THERMAL_DOMAIN_GPU.
- int iThermalDomain;
-/// GPU 0, 1, etc.
- int iDomainIndex;
-/// Possible valies: \ref ADL_DL_THERMAL_FLAG_INTERRUPT or \ref ADL_DL_THERMAL_FLAG_FANCONTROL
- int iFlags;
+ int iSize;
+ int iThermalDomain;
+ int iDomainIndex;
+ int iFlags;
} ADLThermalControllerInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLTemperature
{
-/// Must be set to the size of the structure
- int iSize;
-/// Temperature in millidegrees Celsius.
- int iTemperature;
+ int iSize;
+ int iTemperature;
} ADLTemperature;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLFanSpeedInfo
{
-/// Must be set to the size of the structure
- int iSize;
-/// \ref define_fanctrl
- int iFlags;
-/// Minimum possible fan speed value in percents.
- int iMinPercent;
-/// Maximum possible fan speed value in percents.
- int iMaxPercent;
-/// Minimum possible fan speed value in RPM.
- int iMinRPM;
-/// Maximum possible fan speed value in RPM.
- int iMaxRPM;
+ int iSize;
+ int iFlags;
+ int iMinPercent;
+ int iMaxPercent;
+ int iMinRPM;
+ int iMaxRPM;
} ADLFanSpeedInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLFanSpeedValue
{
-/// Must be set to the size of the structure
- int iSize;
-/// Possible valies: \ref ADL_DL_FANCTRL_SPEED_TYPE_PERCENT or \ref ADL_DL_FANCTRL_SPEED_TYPE_RPM
- int iSpeedType;
-/// Fan speed value
- int iFanSpeed;
-/// The only flag for now is: \ref ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED
- int iFlags;
+ int iSize;
+ int iSpeedType;
+ int iFanSpeed;
+ int iFlags;
} ADLFanSpeedValue;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODParameterRange
{
-/// Minimum parameter value.
- int iMin;
-/// Maximum parameter value.
- int iMax;
-/// Parameter step value.
- int iStep;
+ int iMin;
+ int iMax;
+ int iStep;
} ADLODParameterRange;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODParameters
{
-/// Must be set to the size of the structure
- int iSize;
-/// Number of standard performance states.
- int iNumberOfPerformanceLevels;
-/// Indicates whether the GPU is capable to measure its activity.
- int iActivityReportingSupported;
-/// Indicates whether the GPU supports discrete performance levels or performance range.
- int iDiscretePerformanceLevels;
-/// Reserved for future use.
- int iReserved;
-/// Engine clock range.
- ADLODParameterRange sEngineClock;
-/// Memory clock range.
- ADLODParameterRange sMemoryClock;
-/// Core voltage range.
- ADLODParameterRange sVddc;
+ int iSize;
+ int iNumberOfPerformanceLevels;
+ int iActivityReportingSupported;
+ int iDiscretePerformanceLevels;
+ int iReserved;
+ ADLODParameterRange sEngineClock;
+ ADLODParameterRange sMemoryClock;
+ ADLODParameterRange sVddc;
} ADLODParameters;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
{
-/// Engine clock.
- int iEngineClock;
-/// Memory clock.
- int iMemoryClock;
-/// Core voltage.
- int iVddc;
+ int iEngineClock;
+ int iMemoryClock;
+ int iVddc;
} ADLODPerformanceLevel;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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];
+ int iSize;
+ int iReserved;
+ ADLODPerformanceLevel aLevels [1];
} ADLODPerformanceLevels;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the proper CrossfireX chains combinations.
-///
-/// This structure is used to store information about the CrossfireX chains combination for a particular adapter.
-/// This structure is used by the ADL_Adapter_Crossfire_Caps(), ADL_Adapter_Crossfire_Get(), and ADL_Adapter_Crossfire_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLCrossfireComb
{
-/// Number of adapters in this combination.
- int iNumLinkAdapter;
-/// A list of ADL indexes of the linked adapters in this combination.
- int iAdaptLink[3];
+ int iNumLinkAdapter;
+ int iAdaptLink[3];
} ADLCrossfireComb;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing CrossfireX state and error information.
-///
-/// This structure is used to store state and error information about a particular adapter CrossfireX combination.
-/// This structure is used by the ADL_Adapter_Crossfire_Get() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLCrossfireInfo
{
-/// Current error code of this CrossfireX combination.
- int iErrorCode;
-/// Current \ref define_crossfirestate
- int iState;
-/// If CrossfireX is supported by this combination. The value is either \ref ADL_TRUE or \ref ADL_FALSE.
- int iSupported;
+ int iErrorCode;
+ int iState;
+ int iSupported;
} ADLCrossfireInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about the BIOS.
-///
-/// This structure is used to store various information about the Chipset. This
-/// information can be returned to the user.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLBiosInfo
{
- char strPartNumber[ADL_MAX_PATH]; ///< Part number.
- char strVersion[ADL_MAX_PATH]; ///< Version number.
- char strDate[ADL_MAX_PATH]; ///< BIOS date in yyyy/mm/dd hh:mm format.
+ char strPartNumber[ADL_MAX_PATH];
+ char strVersion[ADL_MAX_PATH];
+ char strDate[ADL_MAX_PATH];
} ADLBiosInfo, *LPADLBiosInfo;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about adapter location.
-///
-/// This structure is used to store information about adapter location.
-/// This structure is used by ADLMVPUStatus.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdapterLocation
{
-/// PCI Bus number : 8 bits
int iBus;
-/// Device number : 5 bits
int iDevice;
-/// Function number : 3 bits
int iFunction;
} ADLAdapterLocation,ADLBdf;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing version information
-///
-/// This structure is used to store software version information, description of the display device and a web link to the latest installed Catalyst drivers.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLVersionsInfo
{
- /// Driver Release (Packaging) Version (e.g. 8.71-100128n-094835E-ATI)
char strDriverVer[ADL_MAX_PATH];
- /// Catalyst Version(e.g. "10.1").
char strCatalystVersion[ADL_MAX_PATH];
- /// Web link to an XML file with information about the latest AMD drivers and locations (e.g. "http://www.amd.com/us/driverxml" )
char strCatalystWebLink[ADL_MAX_PATH];
-
} ADLVersionsInfo, *LPADLVersionsInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing version information
-///
-/// This structure is used to store software version information, description of the display device and a web link to the latest installed Catalyst drivers.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLVersionsInfoX2
{
- /// Driver Release (Packaging) Version (e.g. "16.20.1035-160621a-303814C")
char strDriverVer[ADL_MAX_PATH];
- /// Catalyst Version(e.g. "15.8").
char strCatalystVersion[ADL_MAX_PATH];
- /// Crimson Version(e.g. "16.6.2").
char strCrimsonVersion[ADL_MAX_PATH];
- /// Web link to an XML file with information about the latest AMD drivers and locations (e.g. "http://support.amd.com/drivers/xml/driver_09_us.xml" )
char strCatalystWebLink[ADL_MAX_PATH];
-
} ADLVersionsInfoX2, *LPADLVersionsInfoX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about MultiVPU capabilities.
-///
-/// This structure is used to store information about MultiVPU capabilities.
-/// This structure is used by the ADL_Display_MVPUCaps_Get() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMVPUCaps
{
-/// Must be set to sizeof( ADLMVPUCaps ).
- int iSize;
-/// Number of adapters.
- int iAdapterCount;
-/// Bits set for all possible MVPU masters. \ref MVPU_ADAPTER_0 .. \ref MVPU_ADAPTER_3
- int iPossibleMVPUMasters;
-/// Bits set for all possible MVPU slaves. \ref MVPU_ADAPTER_0 .. \ref MVPU_ADAPTER_3
- int iPossibleMVPUSlaves;
-/// Registry path for each adapter.
- char cAdapterPath[ADL_DL_MAX_MVPU_ADAPTERS][ADL_DL_MAX_REGISTRY_PATH];
+ int iSize;
+ int iAdapterCount;
+ int iPossibleMVPUMasters;
+ int iPossibleMVPUSlaves;
+ char cAdapterPath[ADL_DL_MAX_MVPU_ADAPTERS][ADL_DL_MAX_REGISTRY_PATH];
} ADLMVPUCaps;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about MultiVPU status.
-///
-/// This structure is used to store information about MultiVPU status.
-/// Ths structure is used by the ADL_Display_MVPUStatus_Get() function.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMVPUStatus
{
-/// Must be set to sizeof( ADLMVPUStatus ).
- int iSize;
-/// Number of active adapters.
- int iActiveAdapterCount;
-/// MVPU status.
- int iStatus;
-/// PCI Bus/Device/Function for each active adapter participating in MVPU.
- ADLAdapterLocation aAdapterLocation[ADL_DL_MAX_MVPU_ADAPTERS];
+ int iSize;
+ int iActiveAdapterCount;
+ int iStatus;
+ ADLAdapterLocation aAdapterLocation[ADL_DL_MAX_MVPU_ADAPTERS];
} ADLMVPUStatus;
// Displays Manager structures
-///////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about the activatable source.
-///
-/// This structure is used to store activatable source information
-/// This information can be returned to the user.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLActivatableSource
{
- /// The Persistent logical Adapter Index.
int iAdapterIndex;
- /// The number of Activatable Sources.
int iNumActivatableSources;
- /// The bit mask identifies the number of bits ActivatableSourceValue is using. (Not currnetly used)
int iActivatableSourceMask;
- /// The bit mask identifies the status. (Not currnetly used)
int iActivatableSourceValue;
} ADLActivatableSource, *LPADLActivatableSource;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about display mode.
-///
-/// This structure is used to store the display mode for the current adapter
-/// such as X, Y positions, screen resolutions, orientation,
-/// color depth, refresh rate, progressive or interlace mode, etc.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMode
{
-/// Adapter index.
int iAdapterIndex;
-/// Display IDs.
ADLDisplayID displayID;
-/// Screen position X coordinate.
int iXPos;
-/// Screen position Y coordinate.
int iYPos;
-/// Screen resolution Width.
int iXRes;
-/// Screen resolution Height.
int iYRes;
-/// Screen Color Depth. E.g., 16, 32.
int iColourDepth;
-/// Screen refresh rate. Could be fractional E.g. 59.97
float fRefreshRate;
-/// Screen orientation. E.g., 0, 90, 180, 270.
int iOrientation;
-/// Vista mode flag indicating Progressive or Interlaced mode.
int iModeFlag;
-/// The bit mask identifying the number of bits this Mode is currently using. It is the sum of all the bit definitions defined in \ref define_displaymode
int iModeMask;
-/// The bit mask identifying the display status. The detailed definition is in \ref define_displaymode
int iModeValue;
} ADLMode, *LPADLMode;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about display target information.
-///
-/// This structure is used to store the display target information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayTarget
{
- /// The Display ID.
ADLDisplayID displayID;
- /// The display map index identify this manner and the desktop surface.
int iDisplayMapIndex;
- /// The bit mask identifies the number of bits DisplayTarget is currently using. It is the sum of all the bit definitions defined in \ref ADL_DISPLAY_DISPLAYTARGET_PREFERRED.
int iDisplayTargetMask;
- /// The bit mask identifies the display status. The detailed definition is in \ref ADL_DISPLAY_DISPLAYTARGET_PREFERRED.
int iDisplayTargetValue;
-
} ADLDisplayTarget, *LPADLDisplayTarget;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display SLS bezel Mode information.
-///
-/// This structure is used to store the display SLS bezel Mode information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct tagADLBezelTransientMode
{
- /// Adapter Index
int iAdapterIndex;
- /// SLS Map Index
int iSLSMapIndex;
- /// The mode index
int iSLSModeIndex;
- /// The mode
ADLMode displayMode;
- /// The number of bezel offsets belongs to this map
int iNumBezelOffset;
- /// The first bezel offset array index in the native mode array
int iFirstBezelOffsetArrayIndex;
- /// The bit mask identifies the bits this structure is currently using. It will be the total OR of all the bit definitions.
int iSLSBezelTransientModeMask;
- /// The bit mask identifies the display status. The detail definition is defined below.
int iSLSBezelTransientModeValue;
-
} ADLBezelTransientMode, *LPADLBezelTransientMode;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about the adapter display manner.
-///
-/// This structure is used to store adapter display manner information
-/// This information can be returned to the user. Alternatively, it can be used to access various driver calls to
-/// fetch various display device related display manner settings upon the user's request.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdapterDisplayCap
{
- /// The Persistent logical Adapter Index.
int iAdapterIndex;
- /// The bit mask identifies the number of bits AdapterDisplayCap is currently using. Sum all the bits defined in ADL_ADAPTER_DISPLAYCAP_XXX
int iAdapterDisplayCapMask;
- /// The bit mask identifies the status. Refer to ADL_ADAPTER_DISPLAYCAP_XXX
int iAdapterDisplayCapValue;
} ADLAdapterDisplayCap, *LPADLAdapterDisplayCap;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about display mapping.
-///
-/// This structure is used to store the display mapping data such as display manner.
-/// For displays with horizontal or vertical stretch manner,
-/// this structure also stores the display order, display row, and column data.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayMap
{
-/// The current display map index. It is the OS desktop index. For example, if the OS index 1 is showing clone mode, the display map will be 1.
int iDisplayMapIndex;
-/// The Display Mode for the current map
ADLMode displayMode;
-/// The number of display targets belongs to this map\n
int iNumDisplayTarget;
-/// The first target array index in the Target array\n
int iFirstDisplayTargetArrayIndex;
-/// The bit mask identifies the number of bits DisplayMap is currently using. It is the sum of all the bit definitions defined in ADL_DISPLAY_DISPLAYMAP_MANNER_xxx.
- int iDisplayMapMask;
+ int iDisplayMapMask;
-///The bit mask identifies the display status. The detailed definition is in ADL_DISPLAY_DISPLAYMAP_MANNER_xxx.
int iDisplayMapValue;
-
} ADLDisplayMap, *LPADLDisplayMap;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about the display device possible map for one GPU
-///
-/// This structure is used to store the display device possible map
-/// This information can be returned to the user.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPossibleMap
{
- /// The current PossibleMap index. Each PossibleMap is assigned an index
int iIndex;
- /// The adapter index identifying the GPU for which to validate these Maps & Targets
int iAdapterIndex;
- /// Number of display Maps for this GPU to be validated
int iNumDisplayMap;
- /// The display Maps list to validate
ADLDisplayMap* displayMap;
- /// the number of display Targets for these display Maps
int iNumDisplayTarget;
- /// The display Targets list for these display Maps to be validated.
ADLDisplayTarget* displayTarget;
} ADLPossibleMap, *LPADLPossibleMap;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about display possible mapping.
-///
-/// This structure is used to store the display possible mapping's controller index for the current display.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPossibleMapping
{
- int iDisplayIndex; ///< The display index. Each display is assigned an index.
- int iDisplayControllerIndex; ///< The controller index to which display is mapped.
- int iDisplayMannerSupported; ///< The supported display manner.
+ int iDisplayIndex;
+ int iDisplayControllerIndex;
+ int iDisplayMannerSupported;
} ADLPossibleMapping, *LPADLPossibleMapping;
-/////////////////////////////////////////////////////////////////////////////////////////////
-/// \brief Structure containing information about the validated display device possible map result.
-///
-/// This structure is used to store the validated display device possible map result
-/// This information can be returned to the user.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPossibleMapResult
{
- /// The current display map index. It is the OS Desktop index. For example, OS Index 1 showing clone mode. The Display Map will be 1.
int iIndex;
// The bit mask identifies the number of bits PossibleMapResult is currently using. It will be the sum all the bit definitions defined in ADL_DISPLAY_POSSIBLEMAPRESULT_VALID.
int iPossibleMapResultMask;
- /// The bit mask identifies the possible map result. The detail definition is defined in ADL_DISPLAY_POSSIBLEMAPRESULT_XXX.
int iPossibleMapResultValue;
} ADLPossibleMapResult, *LPADLPossibleMapResult;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display SLS Grid information.
-///
-/// This structure is used to store the display SLS Grid information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSGrid
{
-/// The Adapter index.
int iAdapterIndex;
-/// The grid index.
int iSLSGridIndex;
-/// The grid row.
int iSLSGridRow;
-/// The grid column.
int iSLSGridColumn;
-/// The grid bit mask identifies the number of bits DisplayMap is currently using. Sum of all bits defined in ADL_DISPLAY_SLSGRID_ORIENTATION_XXX
int iSLSGridMask;
-/// The grid bit value identifies the display status. Refer to ADL_DISPLAY_SLSGRID_ORIENTATION_XXX
int iSLSGridValue;
-
} ADLSLSGrid, *LPADLSLSGrid;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display SLS Map information.
-///
-/// This structure is used to store the display SLS Map information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSMap
{
- /// The Adapter Index
int iAdapterIndex;
- /// The current display map index. It is the OS Desktop index. For example, OS Index 1 showing clone mode. The Display Map will be 1.
int iSLSMapIndex;
- /// Indicate the current grid
ADLSLSGrid grid;
- /// OS surface index
int iSurfaceMapIndex;
- /// Screen orientation. E.g., 0, 90, 180, 270
- int iOrientation;
+ int iOrientation;
- /// The number of display targets belongs to this map
int iNumSLSTarget;
- /// The first target array index in the Target array
int iFirstSLSTargetArrayIndex;
- /// The number of native modes belongs to this map
int iNumNativeMode;
- /// The first native mode array index in the native mode array
int iFirstNativeModeArrayIndex;
- /// The number of bezel modes belongs to this map
int iNumBezelMode;
- /// The first bezel mode array index in the native mode array
int iFirstBezelModeArrayIndex;
- /// The number of bezel offsets belongs to this map
int iNumBezelOffset;
- /// The first bezel offset array index in the
int iFirstBezelOffsetArrayIndex;
- /// The bit mask identifies the number of bits DisplayMap is currently using. Sum all the bit definitions defined in ADL_DISPLAY_SLSMAP_XXX.
int iSLSMapMask;
- /// The bit mask identifies the display map status. Refer to ADL_DISPLAY_SLSMAP_XXX
int iSLSMapValue;
-
-
} ADLSLSMap, *LPADLSLSMap;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display SLS Offset information.
-///
-/// This structure is used to store the display SLS Offset information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSOffset
{
- /// The Adapter Index
int iAdapterIndex;
- /// The current display map index. It is the OS Desktop index. For example, OS Index 1 showing clone mode. The Display Map will be 1.
int iSLSMapIndex;
- /// The Display ID.
ADLDisplayID displayID;
- /// SLS Bezel Mode Index
int iBezelModeIndex;
- /// SLS Bezel Offset X
int iBezelOffsetX;
- /// SLS Bezel Offset Y
int iBezelOffsetY;
- /// SLS Display Width
int iDisplayWidth;
- /// SLS Display Height
int iDisplayHeight;
- /// The bit mask identifies the number of bits Offset is currently using.
int iBezelOffsetMask;
- /// The bit mask identifies the display status.
int iBezelffsetValue;
} ADLSLSOffset, *LPADLSLSOffset;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display SLS Mode information.
-///
-/// This structure is used to store the display SLS Mode information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSMode
{
- /// The Adapter Index
int iAdapterIndex;
- /// The current display map index. It is the OS Desktop index. For example, OS Index 1 showing clone mode. The Display Map will be 1.
int iSLSMapIndex;
- /// The mode index
int iSLSModeIndex;
- /// The mode for this map.
ADLMode displayMode;
- /// The bit mask identifies the number of bits Mode is currently using.
int iSLSNativeModeMask;
- /// The bit mask identifies the display status.
int iSLSNativeModeValue;
} ADLSLSMode, *LPADLSLSMode;
-
-
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the display Possible SLS Map information.
-///
-/// This structure is used to store the display Possible SLS Map information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPossibleSLSMap
{
- /// The current display map index. It is the OS Desktop index.
- /// For example, OS Index 1 showing clone mode. The Display Map will be 1.
int iSLSMapIndex;
- /// Number of display map to be validated.
int iNumSLSMap;
- /// The display map list for validation
ADLSLSMap* lpSLSMap;
- /// the number of display map config to be validated.
int iNumSLSTarget;
- /// The display target list for validation.
ADLDisplayTarget* lpDisplayTarget;
} ADLPossibleSLSMap, *LPADLPossibleSLSMap;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the SLS targets.
-///
-/// This structure is used to store the SLS targets information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSTarget
{
- /// the logic adapter index
int iAdapterIndex;
- /// The SLS map index
int iSLSMapIndex;
- /// The target ID
ADLDisplayTarget displayTarget;
- /// Target postion X in SLS grid
int iSLSGridPositionX;
- /// Target postion Y in SLS grid
int iSLSGridPositionY;
- /// The view size width, height and rotation angle per SLS Target
ADLMode viewSize;
- /// The bit mask identifies the bits in iSLSTargetValue are currently used
int iSLSTargetMask;
- /// The bit mask identifies status info. It is for function extension purpose
int iSLSTargetValue;
-
} ADLSLSTarget, *LPADLSLSTarget;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the Adapter offset stepping size.
-///
-/// This structure is used to store the Adapter offset stepping size information.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLBezelOffsetSteppingSize
{
- /// the logic adapter index
int iAdapterIndex;
- /// The SLS map index
int iSLSMapIndex;
- /// Bezel X stepping size offset
int iBezelOffsetSteppingSizeX;
- /// Bezel Y stepping size offset
int iBezelOffsetSteppingSizeY;
- /// Identifies the bits this structure is currently using. It will be the total OR of all the bit definitions.
int iBezelOffsetSteppingSizeMask;
- /// Bit mask identifies the display status.
int iBezelOffsetSteppingSizeValue;
-
} ADLBezelOffsetSteppingSize, *LPADLBezelOffsetSteppingSize;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about the overlap offset info for all the displays for each SLS mode.
-///
-/// This structure is used to store the no. of overlapped modes for each SLS Mode once user finishes the configuration from Overlap Widget
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSLSOverlappedMode
{
- /// the SLS mode for which the overlap is configured
ADLMode SLSMode;
- /// the number of target displays in SLS.
int iNumSLSTarget;
- /// the first target array index in the target array
int iFirstTargetArrayIndex;
}ADLSLSTargetOverlap, *LPADLSLSTargetOverlap;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about driver supported PowerExpress Config Caps
-///
-/// This structure is used to store the driver supported PowerExpress Config Caps
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPXConfigCaps
{
- /// The Persistent logical Adapter Index.
int iAdapterIndex;
- /// The bit mask identifies the number of bits PowerExpress Config Caps is currently using. It is the sum of all the bit definitions defined in ADL_PX_CONFIGCAPS_XXXX /ref define_powerxpress_constants.
int iPXConfigCapMask;
- /// The bit mask identifies the PowerExpress Config Caps value. The detailed definition is in ADL_PX_CONFIGCAPS_XXXX /ref define_powerxpress_constants.
int iPXConfigCapValue;
-
} ADLPXConfigCaps, *LPADLPXConfigCaps;
-/////////////////////////////////////////////////////////////////////////////////////////
-///\brief Enum containing PX or HG type
-///
-/// This enum is used to get PX or hG type
-///
-/// \nosubgrouping
-//////////////////////////////////////////////////////////////////////////////////////////
-enum ADLPxType
+typedef enum ADLPxType
{
- //Not AMD related PX/HG or not PX or HG at all
- ADL_PX_NONE = 0,
- //A+A PX
- ADL_SWITCHABLE_AMDAMD = 1,
- // A+A HG
- ADL_HG_AMDAMD = 2,
- //A+I PX
- ADL_SWITCHABLE_AMDOTHER = 3,
- //A+I HG
- ADL_HG_AMDOTHER = 4,
-};
+ //Not AMD related PX/HG or not PX or HG at all
+ ADL_PX_NONE = 0,
+ //A+A PX
+ ADL_SWITCHABLE_AMDAMD = 1,
+ // A+A HG
+ ADL_HG_AMDAMD = 2,
+ //A+I PX
+ ADL_SWITCHABLE_AMDOTHER = 3,
+ //A+I HG
+ ADL_HG_AMDOTHER = 4,
+}ADLPxType;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an application
-///
-/// This structure is used to store basic information of an application
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLApplicationData
+typedef struct ADLApplicationData
{
- /// Path Name
char strPathName[ADL_MAX_PATH];
- /// File Name
char strFileName[ADL_APP_PROFILE_FILENAME_LENGTH];
- /// Creation timestamp
char strTimeStamp[ADL_APP_PROFILE_TIMESTAMP_LENGTH];
- /// Version
char strVersion[ADL_APP_PROFILE_VERSION_LENGTH];
}ADLApplicationData;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an application
-///
-/// This structure is used to store basic information of an application
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLApplicationDataX2
+typedef struct ADLApplicationDataX2
{
- /// Path Name
wchar_t strPathName[ADL_MAX_PATH];
- /// File Name
wchar_t strFileName[ADL_APP_PROFILE_FILENAME_LENGTH];
- /// Creation timestamp
wchar_t strTimeStamp[ADL_APP_PROFILE_TIMESTAMP_LENGTH];
- /// Version
wchar_t strVersion[ADL_APP_PROFILE_VERSION_LENGTH];
}ADLApplicationDataX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an application
-///
-/// This structure is used to store basic information of an application including process id
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLApplicationDataX3
+typedef struct ADLApplicationDataX3
{
- /// Path Name
wchar_t strPathName[ADL_MAX_PATH];
- /// File Name
wchar_t strFileName[ADL_APP_PROFILE_FILENAME_LENGTH];
- /// Creation timestamp
wchar_t strTimeStamp[ADL_APP_PROFILE_TIMESTAMP_LENGTH];
- /// Version
wchar_t strVersion[ADL_APP_PROFILE_VERSION_LENGTH];
//Application Process id
unsigned int iProcessId;
}ADLApplicationDataX3;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information of a property of an application profile
-///
-/// This structure is used to store property information of an application profile
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _PropertyRecord
+typedef struct PropertyRecord
{
- /// Property Name
char strName [ADL_APP_PROFILE_PROPERTY_LENGTH];
- /// Property Type
ADLProfilePropertyType eType;
- /// Data Size in bytes
int iDataSize;
- /// Property Value, can be any data type
unsigned char uData[1];
}PropertyRecord;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an application profile
-///
-/// This structure is used to store information of an application profile
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLApplicationProfile
+typedef struct ADLApplicationProfile
{
- /// Number of properties
int iCount;
- /// Buffer to store all property records
PropertyRecord record[1];
}ADLApplicationProfile;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an OD5 Power Control feature
-///
-/// This structure is used to store information of an Power Control feature
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPowerControlInfo
{
-/// Minimum value.
-int iMinValue;
-/// Maximum value.
-int iMaxValue;
-/// The minimum change in between minValue and maxValue.
-int iStepValue;
- } ADLPowerControlInfo;
+ int iMinValue;
+ int iMaxValue;
+ int iStepValue;
+} ADLPowerControlInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an controller mode
-///
-/// This structure is used to store information of an controller mode
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLControllerMode
+typedef struct ADLControllerMode
{
- /// This falg indicates actions that will be applied by set viewport
- /// The value can be a combination of ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_POSITION,
- /// ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_PANLOCK and ADL_CONTROLLERMODE_CM_MODIFIER_VIEW_SIZE
int iModifiers;
- /// Horizontal view starting position
int iViewPositionCx;
- /// Vertical view starting position
int iViewPositionCy;
- /// Horizontal left panlock position
int iViewPanLockLeft;
- /// Horizontal right panlock position
int iViewPanLockRight;
- /// Vertical top panlock position
int iViewPanLockTop;
- /// Vertical bottom panlock position
int iViewPanLockBottom;
- /// View resolution in pixels (width)
int iViewResolutionCx;
- /// View resolution in pixels (hight)
int iViewResolutionCy;
}ADLControllerMode;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about a display
-///
-/// This structure is used to store information about a display
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDisplayIdentifier
{
- /// ADL display index
long ulDisplayIndex;
- /// manufacturer ID of the display
long ulManufacturerId;
- /// product ID of the display
long ulProductId;
- /// serial number of the display
long ulSerialNo;
-
} ADLDisplayIdentifier;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 clock range
-///
-/// This structure is used to store information about Overdrive 6 clock range
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6ParameterRange
+typedef struct ADLOD6ParameterRange
{
- /// 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;
-
} ADLOD6ParameterRange;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 capabilities
-///
-/// This structure is used to store information about Overdrive 6 capabilities
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6Capabilities
+typedef struct ADLOD6Capabilities
{
- /// 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;
-
} ADLOD6Capabilities;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 clock values.
-///
-/// This structure is used to store information about Overdrive 6 clock values.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6PerformanceLevel
+typedef struct ADLOD6PerformanceLevel
{
- /// Engine (core) clock.
int iEngineClock;
- /// Memory clock.
int iMemoryClock;
-
} ADLOD6PerformanceLevel;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6StateInfo
+typedef struct ADLOD6StateInfo
{
- /// 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];
-
} ADLOD6StateInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about current Overdrive 6 performance status.
-///
-/// This structure is used to store information about current Overdrive 6 performance status.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6CurrentStatus
+typedef struct ADLOD6CurrentStatus
{
- /// 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;
-
} ADLOD6CurrentStatus;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 thermal contoller capabilities
-///
-/// This structure is used to store information about Overdrive 6 thermal controller capabilities
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6ThermalControllerCaps
+typedef struct ADLOD6ThermalControllerCaps
{
- /// Contains a bitmap of thermal controller capability flags. Possible values: \ref ADL_OD6_TCCAPS_THERMAL_CONTROLLER, \ref ADL_OD6_TCCAPS_FANSPEED_CONTROL,
- /// \ref ADL_OD6_TCCAPS_FANSPEED_PERCENT_READ, \ref ADL_OD6_TCCAPS_FANSPEED_PERCENT_WRITE, \ref ADL_OD6_TCCAPS_FANSPEED_RPM_READ, \ref ADL_OD6_TCCAPS_FANSPEED_RPM_WRITE
int iCapabilities;
- /// Minimum fan speed expressed as a percentage
int iFanMinPercent;
- /// Maximum fan speed expressed as a percentage
int iFanMaxPercent;
- /// Minimum fan speed expressed in revolutions-per-minute
int iFanMinRPM;
- /// Maximum fan speed expressed in revolutions-per-minute
int iFanMaxRPM;
- /// Value for future extension
int iExtValue;
- /// Mask for future extension
int iExtMask;
-
} ADLOD6ThermalControllerCaps;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 fan speed information
-///
-/// This structure is used to store information about Overdrive 6 fan speed information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6FanSpeedInfo
+typedef struct ADLOD6FanSpeedInfo
{
- /// 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;
-
} ADLOD6FanSpeedInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 fan speed value
-///
-/// This structure is used to store information about Overdrive 6 fan speed value
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6FanSpeedValue
+typedef struct ADLOD6FanSpeedValue
{
- /// 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;
- /// Value for future extension
int iExtValue;
- /// Mask for future extension
int iExtMask;
-
} ADLOD6FanSpeedValue;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 PowerControl settings.
-///
-/// This structure is used to store information about Overdrive 6 PowerControl settings.
-/// PowerControl is the feature which allows the performance characteristics of the GPU
-/// to be adjusted by changing the PowerTune power limits.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6PowerControlInfo
+typedef struct ADLOD6PowerControlInfo
{
- /// The minimum PowerControl adjustment value
int iMinValue;
- /// The maximum PowerControl adjustment value
int iMaxValue;
- /// The minimum difference between PowerControl adjustment values
int iStepValue;
- /// Value for future extension
int iExtValue;
- /// Mask for future extension
int iExtMask;
-
} ADLOD6PowerControlInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 PowerControl settings.
-///
-/// This structure is used to store information about Overdrive 6 PowerControl settings.
-/// PowerControl is the feature which allows the performance characteristics of the GPU
-/// to be adjusted by changing the PowerTune power limits.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6VoltageControlInfo
+typedef struct ADLOD6VoltageControlInfo
{
- /// The minimum VoltageControl adjustment value
int iMinValue;
- /// The maximum VoltageControl adjustment value
int iMaxValue;
- /// The minimum difference between VoltageControl adjustment values
int iStepValue;
- /// Value for future extension
int iExtValue;
- /// Mask for future extension
int iExtMask;
-
} ADLOD6VoltageControlInfo;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing ECC statistics namely SEC counts and DED counts
-/// Single error count - count of errors that can be corrected
-/// Doubt Error Detect - count of errors that cannot be corrected
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLECCData
+typedef struct ADLECCData
{
// Single error count - count of errors that can be corrected
int iSec;
// Double error detect - count of errors that cannot be corrected
int iDed;
-
} ADLECCData;
-
-
-
-/// \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;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the display mode definition used per controller.
-///
-/// This structure is used to store the display mode definition used per controller.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
+typedef void *ADL_FRAME_DURATION_HANDLE;
+
typedef struct ADLDisplayModeX2
{
-/// Horizontal resolution (in pixels).
- int iWidth;
-/// Vertical resolution (in lines).
- int iHeight;
-/// Interlaced/Progressive. The value will be set for Interlaced as ADL_DL_TIMINGFLAG_INTERLACED. If not set it is progressive. Refer define_detailed_timing_flags.
- int iScanType;
-/// Refresh rate.
- int iRefreshRate;
-/// Timing Standard. Refer define_modetiming_standard.
- int iTimingStandard;
+ int iWidth;
+ int iHeight;
+ int iScanType;
+ int iRefreshRate;
+ int iTimingStandard;
} ADLDisplayModeX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 extension capabilities
-///
-/// This structure is used to store information about Overdrive 6 extension capabilities
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6CapabilitiesEx
+typedef enum ADLAppProcessState
+{
+ APP_PROC_INVALID = 0, // Invalid Application
+ APP_PROC_PREMPTION = 1, // The Application is being set up for Process Creation
+ APP_PROC_CREATION = 2, // The Application's Main Process is created by the OS
+ APP_PROC_READ = 3, // The Application's Data is ready to be read
+ APP_PROC_WAIT = 4, // The Application is waiting for Timeout or Notification to Resume
+ APP_PROC_RUNNING = 5, // The Application is running
+ APP_PROC_TERMINATE = 6 // The Application is about to terminate
+}ADLAppProcessState;
+
+typedef enum ADLAppInterceptionListType
+{
+ ADL_INVALID_FORMAT = 0,
+ ADL_IMAGEFILEFORMAT = 1,
+ ADL_ENVVAR = 2
+}ADLAppInterceptionListType;
+
+typedef struct ADLAppInterceptionInfo
+{
+ wchar_t AppName[ADL_MAX_PATH]; // the file name of the application or env var
+ unsigned int ProcessId;
+ ADLAppInterceptionListType AppFormat;
+ ADLAppProcessState AppState;
+} ADLAppInterceptionInfo;
+
+typedef enum ADL_AP_DATABASE // same as _SHARED_AP_DATABASE in "inc/shared/shared_escape.h"
+{
+ ADL_AP_DATABASE__SYSTEM,
+ ADL_AP_DATABASE__USER,
+ ADL_AP_DATABASE__OEM
+} ADL_AP_DATABASE;
+
+typedef struct ADLAppInterceptionInfoX2
+{
+ wchar_t AppName[ADL_MAX_PATH]; // the file name of the application or env var
+ unsigned int ProcessId;
+ unsigned int WaitForResumeNeeded;
+ wchar_t CommandLine[ADL_MAX_PATH]; // The command line on app start/stop event
+ ADLAppInterceptionListType AppFormat;
+ ADLAppProcessState AppState;
+} ADLAppInterceptionInfoX2;
+
+typedef struct ADLAppInterceptionInfoX3
+{
+ wchar_t AppName[ADL_MAX_PATH]; // the file name of the application or env var
+ unsigned int ProcessId;
+ unsigned int WaitForResumeNeeded;
+ unsigned int RayTracingStatus; // returns the Ray Tracing status if it is enabled atleast once in session.
+ wchar_t CommandLine[ADL_MAX_PATH]; // The command line on app start/stop event
+ ADLAppInterceptionListType AppFormat;
+ ADLAppProcessState AppState;
+} ADLAppInterceptionInfoX3;
+
+typedef struct ADLPropertyRecordCreate
+{
+ wchar_t * strPropertyName;
+ ADLProfilePropertyType eType;
+ // Value of the property
+ wchar_t * strPropertyValue;
+} ADLPropertyRecordCreate;
+
+typedef struct ADLApplicationRecord
+{
+ wchar_t * strTitle;
+ wchar_t * strPathName;
+ wchar_t * strFileName;
+ wchar_t * strVersion;
+ wchar_t * strNotes;
+ wchar_t * strArea;
+ wchar_t * strProfileName;
+ // Source where this application record come from
+ ADL_AP_DATABASE recordSource;
+} ADLApplicationRecord;
+
+typedef struct ADLOD6CapabilitiesEx
{
- /// Contains a bitmap of the OD6 extension capability flags. Possible values: \ref ADL_OD6_CAPABILITY_SCLK_CUSTOMIZATION,
- /// \ref ADL_OD6_CAPABILITY_MCLK_CUSTOMIZATION, \ref ADL_OD6_CAPABILITY_GPU_ACTIVITY_MONITOR,
- /// \ref ADL_OD6_CAPABILITY_POWER_CONTROL, \ref ADL_OD6_CAPABILITY_VOLTAGE_CONTROL, \ref ADL_OD6_CAPABILITY_PERCENT_ADJUSTMENT,
- //// \ref ADL_OD6_CAPABILITY_THERMAL_LIMIT_UNLOCK
int iCapabilities;
- /// The Power states that support clock and power customization. Only performance state is currently supported.
- /// Possible Values: \ref ADL_OD6_SUPPORTEDSTATE_PERFORMANCE
int iSupportedStates;
- /// Returns the hard limits of the SCLK overdrive adjustment range. Overdrive clocks should not be adjusted outside of this range. The values are specified as +/- percentages.
ADLOD6ParameterRange sEngineClockPercent;
- /// Returns the hard limits of the MCLK overdrive adjustment range. Overdrive clocks should not be adjusted outside of this range. The values are specified as +/- percentages.
ADLOD6ParameterRange sMemoryClockPercent;
- /// Returns the hard limits of the Power Limit adjustment range. Power limit should not be adjusted outside this range. The values are specified as +/- percentages.
ADLOD6ParameterRange sPowerControlPercent;
- /// Reserved for future expansion of the structure.
int iExtValue;
- /// Reserved for future expansion of the structure.
int iExtMask;
} ADLOD6CapabilitiesEx;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 extension state information
-///
-/// This structure is used to store information about Overdrive 6 extension state information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6StateEx
+typedef struct ADLOD6StateEx
{
- /// The current engine clock adjustment value, specified as a +/- percent.
int iEngineClockPercent;
- /// The current memory clock adjustment value, specified as a +/- percent.
int iMemoryClockPercent;
- /// The current power control adjustment value, specified as a +/- percent.
int iPowerControlPercent;
- /// Reserved for future expansion of the structure.
int iExtValue;
- /// Reserved for future expansion of the structure.
int iExtMask;
} ADLOD6StateEx;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive 6 extension recommended maximum clock adjustment values
-///
-/// This structure is used to store information about Overdrive 6 extension recommended maximum clock adjustment values
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD6MaxClockAdjust
+typedef struct ADLOD6MaxClockAdjust
{
- /// The recommended maximum engine clock adjustment in percent, for the specified power limit value.
int iEngineClockMax;
- /// The recommended maximum memory clock adjustment in percent, for the specified power limit value.
- /// Currently the memory is independent of the Power Limit setting, so iMemoryClockMax will always return the maximum
- /// possible adjustment value. This field is here for future enhancement in case we add a dependency between Memory Clock
- /// adjustment and Power Limit setting.
int iMemoryClockMax;
- /// Reserved for future expansion of the structure.
int iExtValue;
- /// Reserved for future expansion of the structure.
int iExtMask;
} ADLOD6MaxClockAdjust;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the Connector information
-///
-/// this structure is used to get the connector information like length, positions & etc.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLConnectorInfo
{
- ///index of the connector(0-based)
int iConnectorIndex;
- ///used for disply identification/ordering
int iConnectorId;
- ///index of the slot, 0-based index.
int iSlotIndex;
- ///Type of the connector. \ref define_connector_types
int iType;
- ///Position of the connector(in millimeters), from the right side of the slot.
int iOffset;
- ///Length of the connector(in millimeters).
int iLength;
-
} ADLConnectorInfo;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing the slot information
-///
-/// this structure is used to get the slot information like length of the slot, no of connectors on the slot & etc.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLBracketSlotInfo
{
- ///index of the slot, 0-based index.
int iSlotIndex;
- ///length of the slot(in millimeters).
int iLength;
- ///width of the slot(in millimeters).
int iWidth;
} ADLBracketSlotInfo;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing MST branch information
-///
-/// this structure is used to store the MST branch information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLMSTRad
{
- ///depth of the link.
int iLinkNumber;
- /// Relative address, address scheme starts from source side
char rad[ADL_MAX_RAD_LINK_COUNT];
} ADLMSTRad;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing port information
-///
-/// this structure is used to get the display or MST branch information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLDevicePort
{
- ///index of the connector.
int iConnectorIndex;
- ///Relative MST address. If MST RAD contains 0 it means DP or Root of the MST topology. For non DP connectors MST RAD is ignored.
ADLMSTRad aMSTRad;
} ADLDevicePort;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing supported connection types and properties
-///
-/// this structure is used to get the supported connection types and supported properties of given connector
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLSupportedConnections
{
- ///Bit vector of supported connections. Bitmask is defined in constants section. \ref define_connection_types
int iSupportedConnections;
- ///Array of bitvectors. Each bit vector represents supported properties for one connection type. Index of this array is connection type (bit number in mask).
int iSupportedProperties[ADL_MAX_CONNECTION_TYPES];
} ADLSupportedConnections;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing connection state of the connector
-///
-/// this structure is used to get the current Emulation status and mode of the given connector
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLConnectionState
{
- ///The value is bit vector. Each bit represents status. See masks constants for details. \ref define_emulation_status
int iEmulationStatus;
- ///It contains information about current emulation mode. See constants for details. \ref define_emulation_mode
int iEmulationMode;
- ///If connection is active it will contain display id, otherwise CWDDEDI_INVALID_DISPLAY_INDEX
int iDisplayIndex;
} ADLConnectionState;
-
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing connection properties information
-///
-/// this structure is used to retrieve the properties of connection type
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLConnectionProperties
{
//Bit vector. Represents actual properties. Supported properties for specific connection type. \ref define_connection_properties
@@ -2407,59 +1302,32 @@ typedef struct ADLConnectionProperties
int iColorDepth;
//3D capabilities. It could be used for some dongles. For instance: alternate framepack. Value of this property is bit vector.
int iStereo3DCaps;
- ///Output Bandwidth. Could be used for MST branch, DP or DP Active dongle. \ref define_linkrate_constants
int iOutputBandwidth;
} ADLConnectionProperties;
-////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing connection information
-///
-/// this structure is used to retrieve the data from driver which includes
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLConnectionData
{
- ///Connection type. based on the connection type either iNumberofPorts or IDataSize,EDIDdata is valid, \ref define_connection_types
int iConnectionType;
- ///Specifies the connection properties.
ADLConnectionProperties aConnectionProperties;
- ///Number of ports
int iNumberofPorts;
- ///Number of Active Connections
int iActiveConnections;
- ///actual size of EDID data block size.
int iDataSize;
- ///EDID Data
char EdidData[ADL_MAX_DISPLAY_EDID_DATA_SIZE];
} ADLConnectionData;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an controller mode including Number of Connectors
-///
-/// This structure is used to store information of an controller mode
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLAdapterCapsX2
{
- /// AdapterID for this adapter
int iAdapterID;
- /// Number of controllers for this adapter
int iNumControllers;
- /// Number of displays for this adapter
int iNumDisplays;
- /// Number of overlays for this adapter
int iNumOverlays;
- /// Number of GLSyncConnectors
int iNumOfGLSyncConnectors;
- /// The bit mask identifies the adapter caps
int iCapsMask;
- /// The bit identifies the adapter caps \ref define_adapter_caps
int iCapsValue;
- /// Number of Connectors for this adapter
int iNumConnectors;
}ADLAdapterCapsX2;
-typedef enum _ADL_ERROR_RECORD_SEVERITY
+typedef enum ADL_ERROR_RECORD_SEVERITY
{
ADL_GLOBALLY_UNCORRECTED = 1,
ADL_LOCALLY_UNCORRECTED = 2,
@@ -2477,12 +1345,6 @@ typedef union _ADL_ECC_EDC_FLAG
unsigned int u32All;
}ADL_ECC_EDC_FLAG;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about EDC Error Record
-///
-/// This structure is used to store EDC Error Record
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLErrorRecord
{
// Severity of error
@@ -2507,7 +1369,7 @@ typedef struct ADLErrorRecord
unsigned int padding[3];
}ADLErrorRecord;
-typedef enum _ADL_EDC_BLOCK_ID
+typedef enum ADL_EDC_BLOCK_ID
{
ADL_EDC_BLOCK_ID_SQCIS = 1,
ADL_EDC_BLOCK_ID_SQCDS = 2,
@@ -2519,7 +1381,7 @@ typedef enum _ADL_EDC_BLOCK_ID
ADL_EDC_BLOCK_ID_TCL2 = 8
}ADL_EDC_BLOCK_ID;
-typedef enum _ADL_ERROR_INJECTION_MODE
+typedef enum ADL_ERROR_INJECTION_MODE
{
ADL_ERROR_INJECTION_MODE_SINGLE = 1,
ADL_ERROR_INJECTION_MODE_MULTIPLE = 2,
@@ -2539,18 +1401,12 @@ typedef union _ADL_ERROR_PATTERN
unsigned long long u64Value;
} ADL_ERROR_PATTERN;
-typedef struct _ADL_ERROR_INJECTION_DATA
+typedef struct ADL_ERROR_INJECTION_DATA
{
unsigned long long errorAddress;
ADL_ERROR_PATTERN errorPattern;
}ADL_ERROR_INJECTION_DATA;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about EDC Error Injection
-///
-/// This structure is used to store EDC Error Injection
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLErrorInjection
{
ADL_EDC_BLOCK_ID blockId;
@@ -2564,33 +1420,17 @@ typedef struct ADLErrorInjectionX2
ADL_ERROR_INJECTION_DATA errorInjectionData;
}ADLErrorInjectionX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing per display FreeSync capability information.
-///
-/// This structure is used to store the FreeSync capability of both the display and
-/// the GPU the display is connected to.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLFreeSyncCap
{
- /// FreeSync capability flags. \ref define_freesync_caps
int iCaps;
- /// Reports minimum FreeSync refresh rate supported by the display in micro hertz
int iMinRefreshRateInMicroHz;
- /// Reports maximum FreeSync refresh rate supported by the display in micro hertz
int iMaxRefreshRateInMicroHz;
- /// Reserved
- int iReserved[5];
+ unsigned char ucLabelIndex;
+ char cReserved[3];
+ int iReserved[4];
} ADLFreeSyncCap;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing per display Display Connectivty Experience Settings
-///
-/// This structure is used to store the Display Connectivity Experience settings of a
-/// display
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLDceSettings
+typedef struct ADLDceSettings
{
DceSettingsType type; // Defines which structure is in the union below
union
@@ -2616,190 +1456,83 @@ typedef struct _ADLDceSettings
int iReserved[15];
} ADLDceSettings;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Graphic Core
-///
-/// This structure is used to get Graphic Core Info
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLGraphicCoreInfo
{
- /// indicate the graphic core generation
int iGCGen;
union
{
- /// Total number of CUs. Valid for GCN (iGCGen == GCN)
int iNumCUs;
- /// Total number of WGPs. Valid for RDNA (iGCGen == RDNA)
int iNumWGPs;
};
union
{
- /// Number of processing elements per CU. Valid for GCN (iGCGen == GCN)
int iNumPEsPerCU;
- /// Number of processing elements per WGP. Valid for RDNA (iGCGen == RDNA)
int iNumPEsPerWGP;
};
- /// Total number of SIMDs. Valid for Pre GCN (iGCGen == Pre-GCN)
int iNumSIMDs;
- /// Total number of ROPs. Valid for both GCN and Pre GCN
int iNumROPs;
- /// reserved for future use
int iReserved[11];
}ADLGraphicCoreInfo;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N clock range
-///
-/// This structure is used to store information about Overdrive N clock range
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLODNParameterRange
+typedef struct ADLODNParameterRange
{
- /// The starting value of the clock range
int iMode;
- /// 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;
- /// The default clock values
int iDefault;
-
} ADLODNParameterRange;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N capabilities
-///
-/// This structure is used to store information about Overdrive N capabilities
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLODNCapabilities
+typedef struct ADLODNCapabilities
{
- /// Number of 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 iMaximumNumberOfPerformanceLevels;
- /// Contains the hard limits of the sclk range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange sEngineClockRange;
- /// Contains the hard limits of the mclk range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange sMemoryClockRange;
- /// Contains the hard limits of the vddc range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange svddcRange;
- /// Contains the hard limits of the power range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange power;
- /// Contains the hard limits of the power range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange powerTuneTemperature;
- /// Contains the hard limits of the Temperature range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange fanTemperature;
- /// Contains the hard limits of the Fan range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange fanSpeed;
- /// Contains the hard limits of the Fan range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange minimumPerformanceClock;
} ADLODNCapabilities;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N capabilities
-///
-/// This structure is used to store information about Overdrive N capabilities
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLODNCapabilitiesX2
+typedef struct ADLODNCapabilitiesX2
{
- /// Number of 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 iMaximumNumberOfPerformanceLevels;
- /// bit vector, which tells what are the features are supported.
- /// \ref: ADLODNFEATURECONTROL
int iFlags;
- /// Contains the hard limits of the sclk range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange sEngineClockRange;
- /// Contains the hard limits of the mclk range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange sMemoryClockRange;
- /// Contains the hard limits of the vddc range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange svddcRange;
- /// Contains the hard limits of the power range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange power;
- /// Contains the hard limits of the power range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange powerTuneTemperature;
- /// Contains the hard limits of the Temperature range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange fanTemperature;
- /// Contains the hard limits of the Fan range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange fanSpeed;
- /// Contains the hard limits of the Fan range. Overdrive
- /// clocks cannot be set outside this range.
ADLODNParameterRange minimumPerformanceClock;
- /// Contains the hard limits of the throttleNotification
ADLODNParameterRange throttleNotificaion;
- /// Contains the hard limits of the Auto Systemclock
ADLODNParameterRange autoSystemClock;
} ADLODNCapabilitiesX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\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 ADLODNPerformanceLevel
{
- /// clock.
int iClock;
- /// VDCC.
int iVddc;
- /// enabled
int iEnabled;
} ADLODNPerformanceLevel;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N performance levels.
-///
-/// This structure is used to store information about Overdrive performance levels.
-/// This structure is used by the ADL_OverdriveN_ODPerformanceLevels_Get() and ADL_OverdriveN_ODPerformanceLevels_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODNPerformanceLevels
{
int iSize;
//Automatic/manual
int iMode;
- /// Must be set to sizeof( \ref ADLODPerformanceLevels ) + sizeof( \ref ADLODPerformanceLevel ) * (ADLODParameters.iNumberOfPerformanceLevels - 1)
int iNumberOfPerformanceLevels;
- /// Array of performance state descriptors. Must have ADLODParameters.iNumberOfPerformanceLevels elements.
ADLODNPerformanceLevel aLevels[1];
} ADLODNPerformanceLevels;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N Fan Speed.
-///
-/// This structure is used to store information about Overdrive Fan control .
-/// This structure is used by the ADL_OverdriveN_ODPerformanceLevels_Get() and ADL_OverdriveN_ODPerformanceLevels_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODNFanControl
{
int iMode;
@@ -2812,13 +1545,6 @@ typedef struct ADLODNFanControl
int iMinFanLimit;
} ADLODNFanControl;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N power limit.
-///
-/// This structure is used to store information about Overdrive power limit.
-/// This structure is used by the ADL_OverdriveN_ODPerformanceLevels_Get() and ADL_OverdriveN_ODPerformanceLevels_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODNPowerLimitSetting
{
int iMode;
@@ -2848,43 +1574,24 @@ typedef struct ADLODNPerformanceStatus
int iVDDCI;
} ADLODNPerformanceStatus;
-///\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 ADLODNPerformanceLevelX2
{
- /// clock.
int iClock;
- /// VDCC.
int iVddc;
- /// enabled
int iEnabled;
- /// MASK
int iControl;
} ADLODNPerformanceLevelX2;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive N performance levels.
-///
-/// This structure is used to store information about Overdrive performance levels.
-/// This structure is used by the ADL_OverdriveN_ODPerformanceLevels_Get() and ADL_OverdriveN_ODPerformanceLevels_Set() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLODNPerformanceLevelsX2
{
int iSize;
//Automatic/manual
int iMode;
- /// Must be set to sizeof( \ref ADLODPerformanceLevels ) + sizeof( \ref ADLODPerformanceLevel ) * (ADLODParameters.iNumberOfPerformanceLevels - 1)
int iNumberOfPerformanceLevels;
- /// Array of performance state descriptors. Must have ADLODParameters.iNumberOfPerformanceLevels elements.
ADLODNPerformanceLevelX2 aLevels[1];
} ADLODNPerformanceLevelsX2;
-typedef enum _ADLODNCurrentPowerType
+typedef enum ADLODNCurrentPowerType
{
ODN_GPU_TOTAL_POWER = 0,
ODN_GPU_PPT_POWER,
@@ -2893,7 +1600,7 @@ typedef enum _ADLODNCurrentPowerType
} ADLODNCurrentPowerType;
// in/out: CWDDEPM_CURRENTPOWERPARAMETERS
-typedef struct _ADLODNCurrentPowerParameters
+typedef struct ADLODNCurrentPowerParameters
{
int size;
ADLODNCurrentPowerType powerType;
@@ -2901,17 +1608,17 @@ typedef struct _ADLODNCurrentPowerParameters
} ADLODNCurrentPowerParameters;
//ODN Ext range data structure
-typedef struct _ADLODNExtSingleInitSetting
+typedef struct ADLODNExtSingleInitSetting
{
- int mode;
- int minValue;
- int maxValue;
- int step;
- int defaultValue;
+ int mode;
+ int minValue;
+ int maxValue;
+ int step;
+ int defaultValue;
} ADLODNExtSingleInitSetting;
//OD8 Ext range data structure
-typedef struct _ADLOD8SingleInitSetting
+typedef struct ADLOD8SingleInitSetting
{
int featureID;
int minValue;
@@ -2919,80 +1626,45 @@ typedef struct _ADLOD8SingleInitSetting
int defaultValue;
} ADLOD8SingleInitSetting;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive8 initial setting
-///
-/// This structure is used to store information about Overdrive8 initial setting
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD8InitSetting
+typedef struct ADLOD8InitSetting
{
int count;
int overdrive8Capabilities;
ADLOD8SingleInitSetting od8SettingTable[OD8_COUNT];
} ADLOD8InitSetting;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive8 current setting
-///
-/// This structure is used to store information about Overdrive8 current setting
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLOD8CurrentSetting
+typedef struct ADLOD8CurrentSetting
{
int count;
int Od8SettingTable[OD8_COUNT];
} ADLOD8CurrentSetting;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Overdrive8 set setting
-///
-/// This structure is used to store information about Overdrive8 set setting
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLOD8SingleSetSetting
+typedef struct ADLOD8SingleSetSetting
{
int value;
int requested; // 0 - default , 1 - requested
int reset; // 0 - do not reset , 1 - reset setting back to default
} ADLOD8SingleSetSetting;
-
-typedef struct _ADLOD8SetSetting
+typedef struct ADLOD8SetSetting
{
int count;
ADLOD8SingleSetSetting od8SettingTable[OD8_COUNT];
} ADLOD8SetSetting;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about Performance Metrics data
-///
-/// This structure is used to store information about Performance Metrics data output
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLSingleSensorData
+typedef struct ADLSingleSensorData
{
int supported;
int value;
} ADLSingleSensorData;
-typedef struct _ADLPMLogDataOutput
+typedef struct ADLPMLogDataOutput
{
int size;
ADLSingleSensorData sensors[ADL_PMLOG_MAX_SENSORS];
}ADLPMLogDataOutput;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about PPLog settings.
-///
-/// This structure is used to store information about PPLog settings.
-/// This structure is used by the ADL2_PPLogSettings_Set() and ADL2_PPLogSettings_Get() functions.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
typedef struct ADLPPLogSettings
{
int BreakOnAssert;
@@ -3006,161 +1678,83 @@ typedef struct ADLPPLogSettings
int PowerProfilingTimeInterval;
}ADLPPLogSettings;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related Frames Per Second for AC and DC.
-///
-/// This structure is used to store information related AC and DC Frames Per Second settings
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLFPSSettingsOutput
+typedef struct ADLFPSSettingsOutput
{
- /// size
int ulSize;
- /// FPS Monitor is enabled in the AC state if 1
int bACFPSEnabled;
- /// FPS Monitor is enabled in the DC state if 1
int bDCFPSEnabled;
- /// Current Value of FPS Monitor in AC state
int ulACFPSCurrent;
- /// Current Value of FPS Monitor in DC state
int ulDCFPSCurrent;
- /// Maximum FPS Threshold allowed in PPLib for AC
int ulACFPSMaximum;
- /// Minimum FPS Threshold allowed in PPLib for AC
int ulACFPSMinimum;
- /// Maximum FPS Threshold allowed in PPLib for DC
int ulDCFPSMaximum;
- /// Minimum FPS Threshold allowed in PPLib for DC
int ulDCFPSMinimum;
-
} ADLFPSSettingsOutput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related Frames Per Second for AC and DC.
-///
-/// This structure is used to store information related AC and DC Frames Per Second settings
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLFPSSettingsInput
+typedef struct ADLFPSSettingsInput
{
- /// size
int ulSize;
- /// Settings are for Global FPS (used by CCC)
int bGlobalSettings;
- /// Current Value of FPS Monitor in AC state
int ulACFPSCurrent;
- /// Current Value of FPS Monitor in DC state
int ulDCFPSCurrent;
- /// Reserved
int ulReserved[6];
-
} ADLFPSSettingsInput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related power management logging.
-///
-/// This structure is used to store support information for power management logging.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
enum { ADL_PMLOG_MAX_SUPPORTED_SENSORS = 256 };
-typedef struct _ADLPMLogSupportInfo
+typedef struct ADLPMLogSupportInfo
{
- /// list of sensors defined by ADL_PMLOG_SENSORS
unsigned short usSensors[ADL_PMLOG_MAX_SUPPORTED_SENSORS];
- /// Reserved
int ulReserved[16];
-
} ADLPMLogSupportInfo;
-
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information to start power management logging.
-///
-/// This structure is used as input to ADL2_Adapter_PMLog_Start
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLPMLogStartInput
+typedef struct ADLPMLogStartInput
{
- /// list of sensors defined by ADL_PMLOG_SENSORS
unsigned short usSensors[ADL_PMLOG_MAX_SUPPORTED_SENSORS];
- /// Sample rate in milliseconds
unsigned long ulSampleRate;
- /// Reserved
int ulReserved[15];
-
} ADLPMLogStartInput;
-typedef struct _ADLPMLogData
+typedef struct ADLPMLogData
{
- /// Structure version
unsigned int ulVersion;
- /// Current driver sample rate
unsigned int ulActiveSampleRate;
- /// Timestamp of last update
unsigned long long ulLastUpdated;
- /// 2D array of senesor and values
unsigned int ulValues[ADL_PMLOG_MAX_SUPPORTED_SENSORS][2];
- /// Reserved
unsigned int ulReserved[256];
-
} ADLPMLogData;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information to start power management logging.
-///
-/// This structure is returned as output from ADL2_Adapter_PMLog_Start
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLPMLogStartOutput
+typedef struct ADLPMLogStartOutput
{
- /// Pointer to memory address containing logging data
union
{
void* pLoggingAddress;
unsigned long long ptr_LoggingAddress;
};
- /// Reserved
int ulReserved[14];
-
} ADLPMLogStartOutput;
+typedef struct ADLPMLogSensorLimits
+{
+ int SensorLimits[ADL_PMLOG_MAX_SENSORS][2]; //index 0: min, 1: max
+} ADLPMLogSensorLimits;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Get Error Counts Information
-///
-/// This structure is used to store RAS Error Counts Get Input Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLRASGetErrorCountsInput
+typedef struct ADLRASGetErrorCountsInput
{
unsigned int Reserved[16];
} ADLRASGetErrorCountsInput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Get Error Counts Information
-///
-/// This structure is used to store RAS Error Counts Get Output Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASGetErrorCountsOutput
+typedef struct ADLRASGetErrorCountsOutput
{
unsigned int CorrectedErrors; // includes both DRAM and SRAM ECC
unsigned int UnCorrectedErrors; // includes both DRAM and SRAM ECC
unsigned int Reserved[14];
} ADLRASGetErrorCountsOutput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Get Error Counts Information
-///
-/// This structure is used to store RAS Error Counts Get Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLRASGetErrorCounts
+typedef struct ADLRASGetErrorCounts
{
unsigned int InputSize;
ADLRASGetErrorCountsInput Input;
@@ -3169,41 +1763,19 @@ typedef struct _ADLRASGetErrorCounts
} ADLRASGetErrorCounts;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Counts Reset Information
-///
-/// This structure is used to store RAS Error Counts Reset Input Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-
-typedef struct _ADLRASResetErrorCountsInput
+typedef struct ADLRASResetErrorCountsInput
{
unsigned int Reserved[8];
} ADLRASResetErrorCountsInput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Counts Reset Information
-///
-/// This structure is used to store RAS Error Counts Reset Output Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASResetErrorCountsOutput
+typedef struct ADLRASResetErrorCountsOutput
{
unsigned int Reserved[8];
} ADLRASResetErrorCountsOutput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Counts Reset Information
-///
-/// This structure is used to store RAS Error Counts Reset Information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASResetErrorCounts
+typedef struct ADLRASResetErrorCounts
{
unsigned int InputSize;
ADLRASResetErrorCountsInput Input;
@@ -3212,14 +1784,7 @@ typedef struct _ADLRASResetErrorCounts
} ADLRASResetErrorCounts;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Injection information
-///
-/// This structure is used to store RAS Error Injection input information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASErrorInjectonInput
+typedef struct ADLRASErrorInjectonInput
{
unsigned long long Address;
ADL_RAS_INJECTION_METHOD Value;
@@ -3229,29 +1794,15 @@ typedef struct _ADLRASErrorInjectonInput
unsigned int padding[9];
} ADLRASErrorInjectonInput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Injection information
-///
-/// This structure is used to store RAS Error Injection output information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASErrorInjectionOutput
+typedef struct ADLRASErrorInjectionOutput
{
unsigned int ErrorInjectionStatus;
unsigned int padding[15];
} ADLRASErrorInjectionOutput;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related RAS Error Injection information
-///
-/// This structure is used to store RAS Error Injection information
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-
-typedef struct _ADLRASErrorInjection
+typedef struct ADLRASErrorInjection
{
unsigned int InputSize;
ADLRASErrorInjectonInput Input;
@@ -3259,36 +1810,17 @@ typedef struct _ADLRASErrorInjection
ADLRASErrorInjectionOutput Output;
} ADLRASErrorInjection;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about an application
-///
-/// This structure is used to store basic information of a recently ran or currently running application
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADLSGApplicationInfo
+typedef struct ADLSGApplicationInfo
{
- /// Application file name
wchar_t strFileName[ADL_MAX_PATH];
- /// Application file path
wchar_t strFilePath[ADL_MAX_PATH];
- /// Application version
wchar_t strVersion[ADL_MAX_PATH];
- /// Timestamp at which application has run
long long int timeStamp;
- /// Holds whether the applicaition profile exists or not
unsigned int iProfileExists;
- /// The GPU on which application runs
unsigned int iGPUAffinity;
- /// The BDF of the GPU on which application runs
ADLBdf GPUBdf;
} ADLSGApplicationInfo;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information related Frames Per Second for AC and DC.
-///
-/// This structure is used to store information related AC and DC Frames Per Second settings
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
enum { ADLPreFlipPostProcessingInfoInvalidLUTIndex = 0xFFFFFFFF };
enum ADLPreFlipPostProcessingLUTAlgorithm
@@ -3298,143 +1830,415 @@ enum ADLPreFlipPostProcessingLUTAlgorithm
ADLPreFlipPostProcessingLUTAlgorithm_Approximation
};
-typedef struct _ADLPreFlipPostProcessingInfo
+typedef struct ADLPreFlipPostProcessingInfo
{
- /// size
int ulSize;
- /// Current active state
int bEnabled;
- /// Current selected LUT index. 0xFFFFFFF returned if nothing selected.
int ulSelectedLUTIndex;
- /// Current selected LUT Algorithm
int ulSelectedLUTAlgorithm;
- /// Reserved
int ulReserved[12];
-
} ADLPreFlipPostProcessingInfo;
-
-
-typedef struct _ADL_ERROR_REASON
+typedef struct ADL_ERROR_REASON
{
- int boost; //ON, when boost is Enabled
- int delag; //ON, when delag is Enabled
- int chill; //ON, when chill is Enabled
+ int boost; //ON, when boost is Enabled
+ int delag; //ON, when delag is Enabled
+ int chill; //ON, when chill is Enabled
+ int proVsr; //ON, when proVsr is Enabled
}ADL_ERROR_REASON;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about DELAG Settings change reason
-///
-/// Elements of DELAG settings changed reason.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_DELAG_NOTFICATION_REASON
+typedef struct ADL_DELAG_NOTFICATION_REASON
{
- int HotkeyChanged; //Set when Hotkey value is changed
- int GlobalEnableChanged; //Set when Global enable value is changed
- int GlobalLimitFPSChanged; //Set when Global enable value is changed
+ int HotkeyChanged; //Set when Hotkey value is changed
+ int GlobalEnableChanged; //Set when Global enable value is changed
+ int GlobalLimitFPSChanged; //Set when Global enable value is changed
}ADL_DELAG_NOTFICATION_REASON;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about DELAG Settings
-///
-/// Elements of DELAG settings.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_DELAG_SETTINGS
+typedef struct ADL_DELAG_SETTINGS
{
- int Hotkey; // Hotkey value
- int GlobalEnable; //Global enable value
- int GlobalLimitFPS; //Global Limit FPS
- int GlobalLimitFPS_MinLimit; //Gloabl Limit FPS slider min limit value
- int GlobalLimitFPS_MaxLimit; //Gloabl Limit FPS slider max limit value
- int GlobalLimitFPS_Step; //Gloabl Limit FPS step value
+ int Hotkey; // Hotkey value
+ int GlobalEnable; //Global enable value
+ int GlobalLimitFPS; //Global Limit FPS
+ int GlobalLimitFPS_MinLimit; //Gloabl Limit FPS slider min limit value
+ int GlobalLimitFPS_MaxLimit; //Gloabl Limit FPS slider max limit value
+ int GlobalLimitFPS_Step; //Gloabl Limit FPS step value
}ADL_DELAG_SETTINGS;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about BOOST Settings change reason
-///
-/// Elements of BOOST settings changed reason.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_BOOST_NOTFICATION_REASON
+typedef struct ADL_BOOST_NOTFICATION_REASON
{
- int HotkeyChanged; //Set when Hotkey value is changed
- int GlobalEnableChanged; //Set when Global enable value is changed
- int GlobalMinResChanged; //Set when Global min resolution value is changed
+ int HotkeyChanged; //Set when Hotkey value is changed
+ int GlobalEnableChanged; //Set when Global enable value is changed
+ int GlobalMinResChanged; //Set when Global min resolution value is changed
}ADL_BOOST_NOTFICATION_REASON;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about BOOST Settings
-///
-/// Elements of BOOST settings.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_BOOST_SETTINGS
+typedef struct ADL_BOOST_SETTINGS
{
- int Hotkey; // Hotkey value
- int GlobalEnable; //Global enable value
- int GlobalMinRes; //Gloabl Min Resolution value
- int GlobalMinRes_MinLimit; //Gloabl Min Resolution slider min limit value
- int GlobalMinRes_MaxLimit; //Gloabl Min Resolution slider max limit value
- int GlobalMinRes_Step; //Gloabl Min Resolution step value
+ int Hotkey; // Hotkey value
+ int GlobalEnable; //Global enable value
+ int GlobalMinRes; //Gloabl Min Resolution value
+ int GlobalMinRes_MinLimit; //Gloabl Min Resolution slider min limit value
+ int GlobalMinRes_MaxLimit; //Gloabl Min Resolution slider max limit value
+ int GlobalMinRes_Step; //Gloabl Min Resolution step value
}ADL_BOOST_SETTINGS;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about RIS Settings change reason
-///
-/// Elements of RIS settings changed reason.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_RIS_NOTFICATION_REASON
+
+typedef struct ADL_PROVSR_NOTFICATION_REASON
{
- unsigned int GlobalEnableChanged; //Set when Global enable value is changed
- unsigned int GlobalSharpeningDegreeChanged; //Set when Global sharpening Degree value is changed
+ int HotkeyChanged; //Set when Hotkey value is changed
+ int GlobalEnableChanged; //Set when Global enable value is changed
+}ADL_PROVSR_NOTFICATION_REASON;
+
+typedef struct ADL_PROVSR_SETTINGS
+{
+ int Hotkey; // Hotkey value
+ int GlobalEnable; //Global enable value
+}ADL_PROVSR_SETTINGS;
+
+typedef struct ADL_IMAGE_BOOST_NOTFICATION_REASON
+{
+ int HotkeyChanged; //Set when Hotkey value is changed
+ int GlobalEnableChanged; //Set when Global enable value is changed
+}ADL_IMAGE_BOOST_NOTFICATION_REASON;
+
+typedef struct ADL_IMAGE_BOOST_SETTINGS
+{
+ int Hotkey; // Hotkey value
+ int GlobalEnable; //Global enable value
+}ADL_IMAGE_BOOST_SETTINGS;
+
+
+typedef struct ADL_RIS_NOTFICATION_REASON
+{
+ unsigned int GlobalEnableChanged; //Set when Global enable value is changed
+ unsigned int GlobalSharpeningDegreeChanged; //Set when Global sharpening Degree value is changed
}ADL_RIS_NOTFICATION_REASON;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about RIS Settings
-///
-/// Elements of RIS settings.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_RIS_SETTINGS
+typedef struct ADL_RIS_SETTINGS
{
- int GlobalEnable; //Global enable value
- int GlobalSharpeningDegree; //Global sharpening value
- int GlobalSharpeningDegree_MinLimit; //Gloabl sharpening slider min limit value
- int GlobalSharpeningDegree_MaxLimit; //Gloabl sharpening slider max limit value
- int GlobalSharpeningDegree_Step; //Gloabl sharpening step value
+ int GlobalEnable; //Global enable value
+ int GlobalSharpeningDegree; //Global sharpening value
+ int GlobalSharpeningDegree_MinLimit; //Gloabl sharpening slider min limit value
+ int GlobalSharpeningDegree_MaxLimit; //Gloabl sharpening slider max limit value
+ int GlobalSharpeningDegree_Step; //Gloabl sharpening step value
}ADL_RIS_SETTINGS;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about CHILL Settings change reason
-///
-/// Elements of Chiil settings changed reason.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_CHILL_NOTFICATION_REASON
+typedef struct ADL_CHILL_NOTFICATION_REASON
{
- int HotkeyChanged; //Set when Hotkey value is changed
- int GlobalEnableChanged; //Set when Global enable value is changed
- int GlobalMinFPSChanged; //Set when Global min FPS value is changed
- int GlobalMaxFPSChanged; //Set when Global max FPS value is changed
+ int HotkeyChanged; //Set when Hotkey value is changed
+ int GlobalEnableChanged; //Set when Global enable value is changed
+ int GlobalMinFPSChanged; //Set when Global min FPS value is changed
+ int GlobalMaxFPSChanged; //Set when Global max FPS value is changed
}ADL_CHILL_NOTFICATION_REASON;
-/////////////////////////////////////////////////////////////////////////////////////////////
-///\brief Structure containing information about CHILL Settings
-///
-/// Elements of Chiil settings.
-/// \nosubgrouping
-////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct _ADL_CHILL_SETTINGS
+typedef struct ADL_CHILL_SETTINGS
{
- int Hotkey; // Hotkey value
- int GlobalEnable; //Global enable value
- int GlobalMinFPS; //Global Min FPS value
- int GlobalMaxFPS; //Global Max FPS value
- int GlobalFPS_MinLimit; //Gloabl FPS slider min limit value
- int GlobalFPS_MaxLimit; //Gloabl FPS slider max limit value
- int GlobalFPS_Step; //Gloabl FPS Slider step value
+ int Hotkey; // Hotkey value
+ int GlobalEnable; //Global enable value
+ int GlobalMinFPS; //Global Min FPS value
+ int GlobalMaxFPS; //Global Max FPS value
+ int GlobalFPS_MinLimit; //Gloabl FPS slider min limit value
+ int GlobalFPS_MaxLimit; //Gloabl FPS slider max limit value
+ int GlobalFPS_Step; //Gloabl FPS Slider step value
}ADL_CHILL_SETTINGS;
+
+typedef struct ADL_DRIVERUPSCALE_NOTFICATION_REASON
+{
+ int ModeOverrideEnabledChanged; //Set when Global min resolution value is changed
+ int GlobalEnabledChanged; //Set when Global enable value is changed
+}ADL_DRIVERUPSCALE_NOTFICATION_REASON;
+
+typedef struct ADL_DRIVERUPSCALE_SETTINGS
+{
+ int ModeOverrideEnabled;
+ int GlobalEnabled;
+}ADL_DRIVERUPSCALE_SETTINGS;
+
+typedef struct ADL_RADEON_LED_COLOR_CONFIG
+{
+ unsigned short R : 8; // Red Value
+ unsigned short G : 8; // Green Value
+ unsigned short B : 8; // Blue Value
+}ADL_RADEON_LED_COLOR_CONFIG;
+
+typedef struct ADL_RADEON_LED_PATTERN_CONFIG_GENERIC
+{
+ short brightness : 8; // Brightness of LED
+ short speed : 8; // Speed of LED pattern
+ bool directionCounterClockWise; //Direction of LED Pattern
+ ADL_RADEON_LED_COLOR_CONFIG colorConfig; // RGB value of LED pattern
+ char morseCodeText[ADL_RADEON_LED_MAX_MORSE_CODE]; // Morse Code user input for Morse Code LED pattern
+ char morseCodeTextOutPut[ADL_RADEON_LED_MAX_MORSE_CODE]; // Driver set output representation of Morse Code
+ int morseCodeTextOutPutLen; // Length of Morse Code output
+}ADL_RADEON_LED_PATTERN_CONFIG_GENERIC;
+
+typedef struct ADL_RADEON_LED_CUSTOM_LED_CONFIG
+{
+ short brightness : 8; // Brightness of LED
+ ADL_RADEON_LED_COLOR_CONFIG colorConfig[ADL_RADEON_LED_MAX_LED_ROW_ON_GRID][ADL_RADEON_LED_MAX_LED_COLUMN_ON_GRID]; // Full grid array representation of Radeon LED to be populated by user
+}ADL_RADEON_LED_CUSTOM_GRID_LED_CONFIG;
+
+typedef struct ADL_RADEON_LED_PATTERN_CONFIG
+{
+ ADL_RADEON_USB_LED_BAR_CONTROLS control; //Requested LED pattern
+
+ union
+ {
+ ADL_RADEON_LED_PATTERN_CONFIG_GENERIC genericPararmeters; //Requested pattern configuration settings
+ ADL_RADEON_LED_CUSTOM_GRID_LED_CONFIG customGridConfig; //Requested custom grid configuration settings
+ };
+}ADL_RADEON_LED_PATTERN_CONFIG;
+
+typedef struct AdapterInfoX2
+{
+
+ int iSize;
+ int iAdapterIndex;
+ char strUDID[ADL_MAX_PATH];
+ int iBusNumber;
+ int iDeviceNumber;
+ int iFunctionNumber;
+ int iVendorID;
+ char strAdapterName[ADL_MAX_PATH];
+ char strDisplayName[ADL_MAX_PATH];
+ int iPresent;
+ int iExist;
+ char strDriverPath[ADL_MAX_PATH];
+ char strDriverPathExt[ADL_MAX_PATH];
+ char strPNPString[ADL_MAX_PATH];
+ int iOSDisplayIndex;
+ int iInfoMask;
+ int iInfoValue;
+} AdapterInfoX2, *LPAdapterInfoX2;
+
+
+typedef struct ADLGamutReference
+{
+ int iGamutRef;
+}ADLGamutReference;
+
+
+typedef struct ADLGamutInfo
+{
+ int SupportedGamutSpace;
+
+ int SupportedWhitePoint;
+} ADLGamutInfo;
+
+
+typedef struct ADLPoint
+{
+ int iX;
+ int iY;
+} ADLPoint;
+
+typedef struct ADLGamutCoordinates
+{
+ ADLPoint Red;
+ ADLPoint Green;
+ ADLPoint Blue;
+} ADLGamutCoordinates;
+
+
+typedef struct ADLGamutData
+{
+ int iFeature;
+
+ int iPredefinedGamut;
+
+ int iPredefinedWhitePoint;
+
+ ADLPoint CustomWhitePoint;
+
+ ADLGamutCoordinates CustomGamut;
+} ADLGamutData;
+
+typedef struct ADLDetailedTimingX2
+{
+ int iSize;
+ int sTimingFlags;
+ int sHTotal;
+ int sHDisplay;
+ int sHSyncStart;
+ int sHSyncWidth;
+ int sVTotal;
+ int sVDisplay;
+ int sVSyncStart;
+ int sVSyncWidth;
+ int sPixelClock;
+ short sHOverscanRight;
+ short sHOverscanLeft;
+ short sVOverscanBottom;
+ short sVOverscanTop;
+ short sOverscan8B;
+ short sOverscanGR;
+} ADLDetailedTimingX2;
+
+typedef struct ADLDisplayModeInfoX2
+{
+ int iTimingStandard;
+ int iPossibleStandard;
+ int iRefreshRate;
+ int iPelsWidth;
+ int iPelsHeight;
+ ADLDetailedTimingX2 sDetailedTiming;
+} ADLDisplayModeInfoX2;
+
+typedef struct ADLI2CLargePayload
+{
+ int iSize;
+ int iLine;
+ int iAddress;
+ int iOffset;
+ int iAction;
+ int iSpeed;
+ int iFlags;
+ int iDataSize;
+ char *pcData;
+} ADLI2CLargePayload;
+
+#define ADL_FEATURE_NAME_LENGTH 16
+
+typedef struct ADLFeatureName
+{
+ char FeatureName[ADL_FEATURE_NAME_LENGTH];
+} ADLFeatureName, *LPADLFeatureName;
+
+typedef struct ADLFeatureCaps
+{
+ ADLFeatureName Name;
+ // char strFeatureName[ADL_FEATURE_NAME_LENGTH];
+
+ int iGroupID;
+
+ int iVisualID;
+
+ int iPageID;
+
+ int iFeatureMask;
+
+ int iFeatureProperties;
+
+ int iControlType;
+
+ int iControlStyle;
+
+ int iAdjustmentType;
+
+ int iAdjustmentStyle;
+
+ int bDefault;
+
+ int iMin;
+
+ int iMax;
+
+ int iStep;
+
+ int iDefault;
+
+ float fMin;
+
+ float fMax;
+
+ float fStep;
+
+ float fDefault;
+
+ int EnumMask;
+} ADLFeatureCaps, *LPADLFeatureCaps;
+
+typedef struct ADLFeatureValues
+{
+ ADLFeatureName Name;
+ // char strFeatureName[ADL_FEATURE_NAME_LENGTH];
+
+ int bCurrent;
+
+ int iCurrent;
+
+ float fCurrent;
+
+ int EnumStates;
+} ADLFeatureValues, *LPADLFeatureValues;
+
+
+typedef struct ADLHDCPSettings
+{
+ int iHDCPProtectionVersion; // Version, starting from 1
+ int iHDCPCaps; //Caps used to ensure at least one protection scheme is supported, 1 is HDCP1X and 2 is HDCP22
+ int iAllowAll; //Allow all is true, disable all is false
+ int iHDCPVale;
+ int iHDCPMask;
+} ADLHDCPSettings;
+
+
+typedef struct ADLMantleAppInfo
+{
+ int apiVersion;
+ long driverVersion;
+ long vendorId;
+ long deviceId;
+ int gpuType;
+ char gpuName[256];
+ int maxMemRefsPerSubmission;
+ long long virtualMemPageSize;
+ long long maxInlineMemoryUpdateSize;
+ long maxBoundDescriptorSets;
+ long maxThreadGroupSize;
+ long long timestampFrequency;
+ long multiColorTargetClears;
+}ADLMantleAppInfo, *LPADLMantleAppInfo;
+
+typedef struct ADLSDIData
+{
+ int iSDIState;
+ int iSizeofSDISegment;
+} ADLSDIData, *LPADLSDIData;
+
+
+typedef struct ADL_FRTCPRO_Settings
+{
+ int DefaultState; //The default status for FRTC pro
+ int CurrentState; //The current enable/disable status for FRTC pro
+ unsigned int DefaultValue; //The default FPS value for FRTC pro.
+ unsigned int CurrentValue; //The current FPS value for FRTC pro.
+ unsigned int maxSupportedFps; //The max value for FRTC pro.
+ unsigned int minSupportedFps; //The min value for FRTC pro.
+}ADL_FRTCPRO_Settings, *LPADLFRTCProSettings;
+
+typedef struct ADL_FRTCPRO_CHANGED_REASON
+{
+ int StateChanged; // FRTCPro state changed
+ int ValueChanged; // FRTCPro value changed
+}ADL_FRTCPRO_CHANGED_REASON;
+
+typedef struct ADL_DL_DISPLAY_MODE
+{
+ int iPelsHeight; // Vertical resolution (in pixels).
+ int iPelsWidth; // Horizontal resolution (in pixels).
+ int iBitsPerPel; // Color depth.
+ int iDisplayFrequency; // Refresh rate.
+} ADL_DL_DISPLAY_MODE;
+
+typedef union _ADLDCESupport
+{
+ struct
+ {
+ unsigned int PrePhasis : 1;
+ unsigned int voltageSwing : 1;
+ unsigned int reserved : 30;
+ }bits;
+ unsigned int u32All;
+}ADLDCESupport;
+
+typedef struct ADLSmartShiftSettings
+{
+ int iMinRange;
+ int iMaxRange;
+ int iDefaultMode; //Refer to CWDDEPM_ODN_CONTROL_TYPE
+ int iDefaultValue;
+ int iCurrentMode;
+ int iCurrentValue;
+ int iFlags; //refer to define_smartshift_bits
+}ADLSmartShiftSettings, *LPADLSmartShiftSettings;
#endif /* ADL_STRUCTURES_H_ */
diff --git a/i2c_smbus/i2c_smbus_amdadl.cpp b/i2c_smbus/i2c_smbus_amdadl.cpp
index 9ff245c1..823e3c6d 100644
--- a/i2c_smbus/i2c_smbus_amdadl.cpp
+++ b/i2c_smbus/i2c_smbus_amdadl.cpp
@@ -16,6 +16,7 @@ typedef int ( *ADL2_MAIN_CONTROL_DESTROY )(ADL_CONTEXT_HANDLE);
typedef int ( *ADL2_ADAPTER_NUMBEROFADAPTERS_GET ) ( ADL_CONTEXT_HANDLE , int* );
typedef int ( *ADL2_ADAPTER_PRIMARY_GET) (ADL_CONTEXT_HANDLE, int* lpPrimaryAdapterIndex);
typedef int ( *ADL2_ADAPTER_ADAPTERINFOX2_GET) (ADL_CONTEXT_HANDLE, AdapterInfo**);
+typedef int ( *ADL2_ADAPTER_ADAPTERINFOX4_GET) (ADL_CONTEXT_HANDLE, int iAdapterIndex, int* numAdapters, AdapterInfoX2** lppAdapterInfoX2);
typedef int ( *ADL2_DISPLAY_WRITEANDREADI2C) (ADL_CONTEXT_HANDLE, int iAdapterIndex, ADLI2C* plI2C);
ADL2_MAIN_CONTROL_CREATE ADL2_Main_Control_Create;
@@ -23,6 +24,7 @@ ADL2_MAIN_CONTROL_DESTROY ADL2_Main_Control_Destroy;
ADL2_ADAPTER_NUMBEROFADAPTERS_GET ADL2_Adapter_NumberOfAdapters_Get;
ADL2_ADAPTER_PRIMARY_GET ADL2_Adapter_Primary_Get;
ADL2_ADAPTER_ADAPTERINFOX2_GET ADL2_Adapter_AdapterInfoX2_Get;
+ADL2_ADAPTER_ADAPTERINFOX4_GET ADL2_Adapter_AdapterInfoX4_Get;
ADL2_DISPLAY_WRITEANDREADI2C ADL2_Display_WriteAndReadI2C;
int LoadLibraries()
@@ -47,16 +49,18 @@ int LoadLibraries()
ADL2_Adapter_NumberOfAdapters_Get = (ADL2_ADAPTER_NUMBEROFADAPTERS_GET)GetProcAddress(hDLL, "ADL2_Adapter_NumberOfAdapters_Get");
ADL2_Adapter_Primary_Get = (ADL2_ADAPTER_PRIMARY_GET)GetProcAddress(hDLL, "ADL2_Adapter_Primary_Get");
ADL2_Adapter_AdapterInfoX2_Get = (ADL2_ADAPTER_ADAPTERINFOX2_GET)GetProcAddress(hDLL, "ADL2_Adapter_AdapterInfoX2_Get");
+ ADL2_Adapter_AdapterInfoX4_Get = (ADL2_ADAPTER_ADAPTERINFOX4_GET)GetProcAddress(hDLL, "ADL2_Adapter_AdapterInfoX4_Get");
ADL2_Display_WriteAndReadI2C = (ADL2_DISPLAY_WRITEANDREADI2C)GetProcAddress(hDLL, "ADL2_Display_WriteAndReadI2C");
/*---------------------------------------------------------------------*\
| Only return OK if all function pointers are valid |
\*---------------------------------------------------------------------*/
- if( ADL2_Main_Control_Create
+ if( ADL2_Main_Control_Create
&& ADL2_Main_Control_Destroy
&& ADL2_Adapter_NumberOfAdapters_Get
&& ADL2_Adapter_Primary_Get
&& ADL2_Adapter_AdapterInfoX2_Get
+ && ADL2_Adapter_AdapterInfoX4_Get
&& ADL2_Display_WriteAndReadI2C)
{
return ADL_OK;
@@ -85,13 +89,14 @@ void __stdcall ADL_Main_Memory_Free ( void* lpBuffer )
}
}
-i2c_smbus_amdadl::i2c_smbus_amdadl(ADL_CONTEXT_HANDLE context)
+i2c_smbus_amdadl::i2c_smbus_amdadl(ADL_CONTEXT_HANDLE context, int adapter_index)
{
- AdapterInfo * info;
+ int num_of_devices;
+ AdapterInfoX2* info;
this->context = context;
- if (ADL_OK != ADL2_Adapter_AdapterInfoX2_Get(context, &info))
+ if (ADL_OK != ADL2_Adapter_AdapterInfoX4_Get(context, adapter_index, &num_of_devices, &info))
{
printf("Cannot get Adapter Info!\n");
}
@@ -228,9 +233,24 @@ bool i2c_smbus_amdadl_detect()
}
else
{
- i2c_smbus_amdadl * adl_bus = new i2c_smbus_amdadl(context);
- LOG_INFO("ADL GPU Device %04X:%04X Subsystem: %04X:%04X", adl_bus->pci_vendor, adl_bus->pci_device,adl_bus->pci_subsystem_vendor,adl_bus->pci_subsystem_device);
- ResourceManager::get()->RegisterI2CBus(adl_bus);
+ int num_of_devices;
+ AdapterInfoX2* info;
+ if (ADL_OK == ADL2_Adapter_AdapterInfoX4_Get(context, -1, &num_of_devices, &info))
+ {
+ int last_bus_number = -1;
+ for(int i = 0; i < num_of_devices; i++)
+ {
+ AdapterInfoX2 current = *(info + i);
+ if(last_bus_number == current.iBusNumber)
+ {
+ continue;
+ }
+ last_bus_number = current.iBusNumber;
+ i2c_smbus_amdadl * adl_bus = new i2c_smbus_amdadl(context, current.iAdapterIndex);
+ LOG_INFO("ADL GPU Device %04X:%04X Subsystem: %04X:%04X", adl_bus->pci_vendor, adl_bus->pci_device,adl_bus->pci_subsystem_vendor,adl_bus->pci_subsystem_device);
+ ResourceManager::get()->RegisterI2CBus(adl_bus);
+ }
+ }
}
}
diff --git a/i2c_smbus/i2c_smbus_amdadl.h b/i2c_smbus/i2c_smbus_amdadl.h
index c91d0273..9ac9f161 100644
--- a/i2c_smbus/i2c_smbus_amdadl.h
+++ b/i2c_smbus/i2c_smbus_amdadl.h
@@ -21,7 +21,7 @@
class i2c_smbus_amdadl : public i2c_smbus_interface
{
public:
- i2c_smbus_amdadl(ADL_CONTEXT_HANDLE context);
+ i2c_smbus_amdadl(ADL_CONTEXT_HANDLE context, int adapter_index);
int LoadLibraries();
//void* __stdcall ADL_Main_Memory_Alloc ( int iSize );