Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright 2016 Advanced Micro Devices, Inc.
0003  *
0004  * Permission is hereby granted, free of charge, to any person obtaining a
0005  * copy of this software and associated documentation files (the "Software"),
0006  * to deal in the Software without restriction, including without limitation
0007  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
0008  * and/or sell copies of the Software, and to permit persons to whom the
0009  * Software is furnished to do so, subject to the following conditions:
0010  *
0011  * The above copyright notice and this permission notice shall be included in
0012  * all copies or substantial portions of the Software.
0013  *
0014  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
0018  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
0019  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
0020  * OTHER DEALINGS IN THE SOFTWARE.
0021  *
0022  */
0023 
0024 #ifndef PP_SMC_H
0025 #define PP_SMC_H
0026 
0027 #pragma pack(push, 1)
0028 
0029 #define SMU_UCODE_VERSION                  0x001c0800
0030 
0031 /* SMU Response Codes: */
0032 #define PPSMC_Result_OK                    0x1
0033 #define PPSMC_Result_Failed                0xFF
0034 #define PPSMC_Result_UnknownCmd            0xFE
0035 #define PPSMC_Result_CmdRejectedPrereq     0xFD
0036 #define PPSMC_Result_CmdRejectedBusy       0xFC
0037 
0038 typedef uint16_t PPSMC_Result;
0039 
0040 /* Message Definitions */
0041 #define PPSMC_MSG_TestMessage                    0x1
0042 #define PPSMC_MSG_GetSmuVersion                  0x2
0043 #define PPSMC_MSG_GetDriverIfVersion             0x3
0044 #define PPSMC_MSG_EnableSmuFeatures              0x4
0045 #define PPSMC_MSG_DisableSmuFeatures             0x5
0046 #define PPSMC_MSG_GetEnabledSmuFeatures          0x6
0047 #define PPSMC_MSG_SetWorkloadMask                0x7
0048 #define PPSMC_MSG_SetPptLimit                    0x8
0049 #define PPSMC_MSG_SetDriverDramAddrHigh          0x9
0050 #define PPSMC_MSG_SetDriverDramAddrLow           0xA
0051 #define PPSMC_MSG_SetToolsDramAddrHigh           0xB
0052 #define PPSMC_MSG_SetToolsDramAddrLow            0xC
0053 #define PPSMC_MSG_TransferTableSmu2Dram          0xD
0054 #define PPSMC_MSG_TransferTableDram2Smu          0xE
0055 #define PPSMC_MSG_UseDefaultPPTable              0xF
0056 #define PPSMC_MSG_UseBackupPPTable               0x10
0057 #define PPSMC_MSG_RunBtc                         0x11
0058 #define PPSMC_MSG_RequestI2CBus                  0x12
0059 #define PPSMC_MSG_ReleaseI2CBus                  0x13
0060 #define PPSMC_MSG_ConfigureTelemetry             0x14
0061 #define PPSMC_MSG_SetUlvIpMask                   0x15
0062 #define PPSMC_MSG_SetSocVidOffset                0x16
0063 #define PPSMC_MSG_SetMemVidOffset                0x17
0064 #define PPSMC_MSG_GetSocVidOffset                0x18
0065 #define PPSMC_MSG_GetMemVidOffset                0x19
0066 #define PPSMC_MSG_SetFloorSocVoltage             0x1A
0067 #define PPSMC_MSG_SoftReset                      0x1B
0068 #define PPSMC_MSG_StartBacoMonitor               0x1C
0069 #define PPSMC_MSG_CancelBacoMonitor              0x1D
0070 #define PPSMC_MSG_EnterBaco                      0x1E
0071 #define PPSMC_MSG_AllowLowGfxclkInterrupt        0x1F
0072 #define PPSMC_MSG_SetLowGfxclkInterruptThreshold 0x20
0073 #define PPSMC_MSG_SetSoftMinGfxclkByIndex        0x21
0074 #define PPSMC_MSG_SetSoftMaxGfxclkByIndex        0x22
0075 #define PPSMC_MSG_GetCurrentGfxclkIndex          0x23
0076 #define PPSMC_MSG_SetSoftMinUclkByIndex          0x24
0077 #define PPSMC_MSG_SetSoftMaxUclkByIndex          0x25
0078 #define PPSMC_MSG_GetCurrentUclkIndex            0x26
0079 #define PPSMC_MSG_SetSoftMinUvdByIndex           0x27
0080 #define PPSMC_MSG_SetSoftMaxUvdByIndex           0x28
0081 #define PPSMC_MSG_GetCurrentUvdIndex             0x29
0082 #define PPSMC_MSG_SetSoftMinVceByIndex           0x2A
0083 #define PPSMC_MSG_SetSoftMaxVceByIndex           0x2B
0084 #define PPSMC_MSG_SetHardMinVceByIndex           0x2C
0085 #define PPSMC_MSG_GetCurrentVceIndex             0x2D
0086 #define PPSMC_MSG_SetSoftMinSocclkByIndex        0x2E
0087 #define PPSMC_MSG_SetHardMinSocclkByIndex        0x2F
0088 #define PPSMC_MSG_SetSoftMaxSocclkByIndex        0x30
0089 #define PPSMC_MSG_GetCurrentSocclkIndex          0x31
0090 #define PPSMC_MSG_SetMinLinkDpmByIndex           0x32
0091 #define PPSMC_MSG_GetCurrentLinkIndex            0x33
0092 #define PPSMC_MSG_GetAverageGfxclkFrequency      0x34
0093 #define PPSMC_MSG_GetAverageSocclkFrequency      0x35
0094 #define PPSMC_MSG_GetAverageUclkFrequency        0x36
0095 #define PPSMC_MSG_GetAverageGfxActivity          0x37
0096 #define PPSMC_MSG_GetTemperatureEdge             0x38
0097 #define PPSMC_MSG_GetTemperatureHotspot          0x39
0098 #define PPSMC_MSG_GetTemperatureHBM              0x3A
0099 #define PPSMC_MSG_GetTemperatureVrSoc            0x3B
0100 #define PPSMC_MSG_GetTemperatureVrMem            0x3C
0101 #define PPSMC_MSG_GetTemperatureLiquid           0x3D
0102 #define PPSMC_MSG_GetTemperaturePlx              0x3E
0103 #define PPSMC_MSG_OverDriveSetPercentage         0x3F
0104 #define PPSMC_MSG_SetMinDeepSleepDcefclk         0x40
0105 #define PPSMC_MSG_SwitchToAC                     0x41
0106 #define PPSMC_MSG_SetUclkFastSwitch              0x42
0107 #define PPSMC_MSG_SetUclkDownHyst                0x43
0108 #define PPSMC_MSG_RemoveDCClamp                  0x44
0109 #define PPSMC_MSG_GfxDeviceDriverReset           0x45
0110 #define PPSMC_MSG_GetCurrentRpm                  0x46
0111 #define PPSMC_MSG_SetVideoFps                    0x47
0112 #define PPSMC_MSG_SetCustomGfxDpmParameters      0x48
0113 #define PPSMC_MSG_SetTjMax                       0x49
0114 #define PPSMC_MSG_SetFanTemperatureTarget        0x4A
0115 #define PPSMC_MSG_PrepareMp1ForUnload            0x4B
0116 #define PPSMC_MSG_RequestDisplayClockByFreq      0x4C
0117 #define PPSMC_MSG_GetClockFreqMHz                0x4D
0118 #define PPSMC_MSG_DramLogSetDramAddrHigh         0x4E
0119 #define PPSMC_MSG_DramLogSetDramAddrLow          0x4F
0120 #define PPSMC_MSG_DramLogSetDramSize             0x50
0121 #define PPSMC_MSG_SetFanMaxRpm                   0x51
0122 #define PPSMC_MSG_SetFanMinPwm                   0x52
0123 #define PPSMC_MSG_ConfigureGfxDidt               0x55
0124 #define PPSMC_MSG_NumOfDisplays                  0x56
0125 #define PPSMC_MSG_ReadSerialNumTop32             0x58
0126 #define PPSMC_MSG_ReadSerialNumBottom32          0x59
0127 #define PPSMC_MSG_SetSystemVirtualDramAddrHigh   0x5A
0128 #define PPSMC_MSG_SetSystemVirtualDramAddrLow    0x5B
0129 #define PPSMC_MSG_RunAcgBtc                      0x5C
0130 #define PPSMC_MSG_RunAcgInClosedLoop             0x5D
0131 #define PPSMC_MSG_RunAcgInOpenLoop               0x5E
0132 #define PPSMC_MSG_InitializeAcg                  0x5F
0133 #define PPSMC_MSG_GetCurrPkgPwr                  0x61
0134 #define PPSMC_MSG_GetAverageGfxclkActualFrequency 0x63
0135 #define PPSMC_MSG_SetPccThrottleLevel            0x67
0136 #define PPSMC_MSG_UpdatePkgPwrPidAlpha           0x68
0137 #define PPSMC_Message_Count                      0x69
0138 
0139 
0140 typedef int PPSMC_Msg;
0141 
0142 #pragma pack(pop)
0143 
0144 #endif