xref: /dflybsd-src/sys/dev/drm/amd/powerplay/inc/tonga_ppsmc.h (revision b843c749addef9340ee7d4e250b09fdd492602a1)
1*b843c749SSergey Zigachev /*
2*b843c749SSergey Zigachev  * Copyright 2015 Advanced Micro Devices, Inc.
3*b843c749SSergey Zigachev  *
4*b843c749SSergey Zigachev  * Permission is hereby granted, free of charge, to any person obtaining a
5*b843c749SSergey Zigachev  * copy of this software and associated documentation files (the "Software"),
6*b843c749SSergey Zigachev  * to deal in the Software without restriction, including without limitation
7*b843c749SSergey Zigachev  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8*b843c749SSergey Zigachev  * and/or sell copies of the Software, and to permit persons to whom the
9*b843c749SSergey Zigachev  * Software is furnished to do so, subject to the following conditions:
10*b843c749SSergey Zigachev  *
11*b843c749SSergey Zigachev  * The above copyright notice and this permission notice shall be included in
12*b843c749SSergey Zigachev  * all copies or substantial portions of the Software.
13*b843c749SSergey Zigachev  *
14*b843c749SSergey Zigachev  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*b843c749SSergey Zigachev  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*b843c749SSergey Zigachev  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17*b843c749SSergey Zigachev  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18*b843c749SSergey Zigachev  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19*b843c749SSergey Zigachev  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20*b843c749SSergey Zigachev  * OTHER DEALINGS IN THE SOFTWARE.
21*b843c749SSergey Zigachev  *
22*b843c749SSergey Zigachev  */
23*b843c749SSergey Zigachev 
24*b843c749SSergey Zigachev #ifndef TONGA_PP_SMC_H
25*b843c749SSergey Zigachev #define TONGA_PP_SMC_H
26*b843c749SSergey Zigachev 
27*b843c749SSergey Zigachev #pragma pack(push, 1)
28*b843c749SSergey Zigachev 
29*b843c749SSergey Zigachev #define PPSMC_SWSTATE_FLAG_DC				0x01
30*b843c749SSergey Zigachev #define PPSMC_SWSTATE_FLAG_UVD				0x02
31*b843c749SSergey Zigachev #define PPSMC_SWSTATE_FLAG_VCE				0x04
32*b843c749SSergey Zigachev #define PPSMC_SWSTATE_FLAG_PCIE_X1			0x08
33*b843c749SSergey Zigachev 
34*b843c749SSergey Zigachev #define PPSMC_THERMAL_PROTECT_TYPE_INTERNAL             0x00
35*b843c749SSergey Zigachev #define PPSMC_THERMAL_PROTECT_TYPE_EXTERNAL             0x01
36*b843c749SSergey Zigachev #define PPSMC_THERMAL_PROTECT_TYPE_NONE                 0xff
37*b843c749SSergey Zigachev 
38*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_GPIO_DC                        0x01
39*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_STEPVDDC                       0x02
40*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_GDDR5                          0x04
41*b843c749SSergey Zigachev 
42*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_DISABLE_BABYSTEP               0x08
43*b843c749SSergey Zigachev 
44*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_REGULATOR_HOT                  0x10
45*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_REGULATOR_HOT_ANALOG           0x20
46*b843c749SSergey Zigachev #define PPSMC_SYSTEMFLAG_12CHANNEL                      0x40
47*b843c749SSergey Zigachev 
48*b843c749SSergey Zigachev 
49*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_MASK              0x07
50*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_AC2DC_DONT_WAIT_FOR_VBLANK     0x08
51*b843c749SSergey Zigachev 
52*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTODPMLOWSTATE   0x00
53*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTOINITIALSTATE  0x01
54*b843c749SSergey Zigachev 
55*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_AC2DC_GPIO5_POLARITY_HIGH      0x10
56*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_DRIVER_TO_GPIO17               0x20
57*b843c749SSergey Zigachev #define PPSMC_EXTRAFLAGS_PCC_TO_GPIO17                  0x40
58*b843c749SSergey Zigachev 
59*b843c749SSergey Zigachev /* Defines for DPM 2.0 */
60*b843c749SSergey Zigachev #define PPSMC_DPM2FLAGS_TDPCLMP                         0x01
61*b843c749SSergey Zigachev #define PPSMC_DPM2FLAGS_PWRSHFT                         0x02
62*b843c749SSergey Zigachev #define PPSMC_DPM2FLAGS_OCP                             0x04
63*b843c749SSergey Zigachev 
64*b843c749SSergey Zigachev /* Defines for display watermark level */
65*b843c749SSergey Zigachev 
66*b843c749SSergey Zigachev #define PPSMC_DISPLAY_WATERMARK_LOW                     0
67*b843c749SSergey Zigachev #define PPSMC_DISPLAY_WATERMARK_HIGH                    1
68*b843c749SSergey Zigachev 
69*b843c749SSergey Zigachev /* In the HW performance level's state flags:*/
70*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_AUTO_PULSE_SKIP    0x01
71*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_POWERBOOST         0x02
72*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_PSKIP_ON_TDP_FAULT 0x04
73*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_POWERSHIFT         0x08
74*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_SLOW_READ_MARGIN   0x10
75*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_DEEPSLEEP_THROTTLE 0x20
76*b843c749SSergey Zigachev #define PPSMC_STATEFLAG_DEEPSLEEP_BYPASS   0x40
77*b843c749SSergey Zigachev 
78*b843c749SSergey Zigachev /* Fan control algorithm:*/
79*b843c749SSergey Zigachev #define FDO_MODE_HARDWARE 0
80*b843c749SSergey Zigachev #define FDO_MODE_PIECE_WISE_LINEAR 1
81*b843c749SSergey Zigachev 
82*b843c749SSergey Zigachev enum FAN_CONTROL {
83*b843c749SSergey Zigachev 	FAN_CONTROL_FUZZY,
84*b843c749SSergey Zigachev 	FAN_CONTROL_TABLE
85*b843c749SSergey Zigachev };
86*b843c749SSergey Zigachev 
87*b843c749SSergey Zigachev /* Return codes for driver to SMC communication.*/
88*b843c749SSergey Zigachev 
89*b843c749SSergey Zigachev #define PPSMC_Result_OK             ((uint16_t)0x01)
90*b843c749SSergey Zigachev #define PPSMC_Result_NoMore         ((uint16_t)0x02)
91*b843c749SSergey Zigachev #define PPSMC_Result_NotNow         ((uint16_t)0x03)
92*b843c749SSergey Zigachev 
93*b843c749SSergey Zigachev #define PPSMC_Result_Failed         ((uint16_t)0xFF)
94*b843c749SSergey Zigachev #define PPSMC_Result_UnknownCmd     ((uint16_t)0xFE)
95*b843c749SSergey Zigachev #define PPSMC_Result_UnknownVT      ((uint16_t)0xFD)
96*b843c749SSergey Zigachev 
97*b843c749SSergey Zigachev typedef uint16_t PPSMC_Result;
98*b843c749SSergey Zigachev 
99*b843c749SSergey Zigachev #define PPSMC_isERROR(x) ((uint16_t)0x80 & (x))
100*b843c749SSergey Zigachev 
101*b843c749SSergey Zigachev 
102*b843c749SSergey Zigachev #define PPSMC_MSG_Halt                      ((uint16_t)0x10)
103*b843c749SSergey Zigachev #define PPSMC_MSG_Resume                    ((uint16_t)0x11)
104*b843c749SSergey Zigachev #define PPSMC_MSG_EnableDPMLevel            ((uint16_t)0x12)
105*b843c749SSergey Zigachev #define PPSMC_MSG_ZeroLevelsDisabled        ((uint16_t)0x13)
106*b843c749SSergey Zigachev #define PPSMC_MSG_OneLevelsDisabled         ((uint16_t)0x14)
107*b843c749SSergey Zigachev #define PPSMC_MSG_TwoLevelsDisabled         ((uint16_t)0x15)
108*b843c749SSergey Zigachev #define PPSMC_MSG_EnableThermalInterrupt    ((uint16_t)0x16)
109*b843c749SSergey Zigachev #define PPSMC_MSG_RunningOnAC               ((uint16_t)0x17)
110*b843c749SSergey Zigachev #define PPSMC_MSG_LevelUp                   ((uint16_t)0x18)
111*b843c749SSergey Zigachev #define PPSMC_MSG_LevelDown                 ((uint16_t)0x19)
112*b843c749SSergey Zigachev #define PPSMC_MSG_ResetDPMCounters          ((uint16_t)0x1a)
113*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToSwState           ((uint16_t)0x20)
114*b843c749SSergey Zigachev 
115*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToSwStateLast       ((uint16_t)0x3f)
116*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToInitialState      ((uint16_t)0x40)
117*b843c749SSergey Zigachev #define PPSMC_MSG_NoForcedLevel             ((uint16_t)0x41)
118*b843c749SSergey Zigachev #define PPSMC_MSG_ForceHigh                 ((uint16_t)0x42)
119*b843c749SSergey Zigachev #define PPSMC_MSG_ForceMediumOrHigh         ((uint16_t)0x43)
120*b843c749SSergey Zigachev 
121*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToMinimumPower      ((uint16_t)0x51)
122*b843c749SSergey Zigachev #define PPSMC_MSG_ResumeFromMinimumPower    ((uint16_t)0x52)
123*b843c749SSergey Zigachev #define PPSMC_MSG_EnableCac                 ((uint16_t)0x53)
124*b843c749SSergey Zigachev #define PPSMC_MSG_DisableCac                ((uint16_t)0x54)
125*b843c749SSergey Zigachev #define PPSMC_DPMStateHistoryStart          ((uint16_t)0x55)
126*b843c749SSergey Zigachev #define PPSMC_DPMStateHistoryStop           ((uint16_t)0x56)
127*b843c749SSergey Zigachev #define PPSMC_CACHistoryStart               ((uint16_t)0x57)
128*b843c749SSergey Zigachev #define PPSMC_CACHistoryStop                ((uint16_t)0x58)
129*b843c749SSergey Zigachev #define PPSMC_TDPClampingActive             ((uint16_t)0x59)
130*b843c749SSergey Zigachev #define PPSMC_TDPClampingInactive           ((uint16_t)0x5A)
131*b843c749SSergey Zigachev #define PPSMC_StartFanControl               ((uint16_t)0x5B)
132*b843c749SSergey Zigachev #define PPSMC_StopFanControl                ((uint16_t)0x5C)
133*b843c749SSergey Zigachev #define PPSMC_NoDisplay                     ((uint16_t)0x5D)
134*b843c749SSergey Zigachev #define PPSMC_HasDisplay                    ((uint16_t)0x5E)
135*b843c749SSergey Zigachev #define PPSMC_MSG_UVDPowerOFF               ((uint16_t)0x60)
136*b843c749SSergey Zigachev #define PPSMC_MSG_UVDPowerON                ((uint16_t)0x61)
137*b843c749SSergey Zigachev #define PPSMC_MSG_EnableULV                 ((uint16_t)0x62)
138*b843c749SSergey Zigachev #define PPSMC_MSG_DisableULV                ((uint16_t)0x63)
139*b843c749SSergey Zigachev #define PPSMC_MSG_EnterULV                  ((uint16_t)0x64)
140*b843c749SSergey Zigachev #define PPSMC_MSG_ExitULV                   ((uint16_t)0x65)
141*b843c749SSergey Zigachev #define PPSMC_PowerShiftActive              ((uint16_t)0x6A)
142*b843c749SSergey Zigachev #define PPSMC_PowerShiftInactive            ((uint16_t)0x6B)
143*b843c749SSergey Zigachev #define PPSMC_OCPActive                     ((uint16_t)0x6C)
144*b843c749SSergey Zigachev #define PPSMC_OCPInactive                   ((uint16_t)0x6D)
145*b843c749SSergey Zigachev #define PPSMC_CACLongTermAvgEnable          ((uint16_t)0x6E)
146*b843c749SSergey Zigachev #define PPSMC_CACLongTermAvgDisable         ((uint16_t)0x6F)
147*b843c749SSergey Zigachev #define PPSMC_MSG_InferredStateSweep_Start  ((uint16_t)0x70)
148*b843c749SSergey Zigachev #define PPSMC_MSG_InferredStateSweep_Stop   ((uint16_t)0x71)
149*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToLowestInfState    ((uint16_t)0x72)
150*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToNonInfState       ((uint16_t)0x73)
151*b843c749SSergey Zigachev #define PPSMC_MSG_AllStateSweep_Start       ((uint16_t)0x74)
152*b843c749SSergey Zigachev #define PPSMC_MSG_AllStateSweep_Stop        ((uint16_t)0x75)
153*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchNextLowerInfState   ((uint16_t)0x76)
154*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchNextHigherInfState  ((uint16_t)0x77)
155*b843c749SSergey Zigachev #define PPSMC_MSG_MclkRetrainingTest        ((uint16_t)0x78)
156*b843c749SSergey Zigachev #define PPSMC_MSG_ForceTDPClamping          ((uint16_t)0x79)
157*b843c749SSergey Zigachev #define PPSMC_MSG_CollectCAC_PowerCorreln   ((uint16_t)0x7A)
158*b843c749SSergey Zigachev #define PPSMC_MSG_CollectCAC_WeightCalib    ((uint16_t)0x7B)
159*b843c749SSergey Zigachev #define PPSMC_MSG_CollectCAC_SQonly         ((uint16_t)0x7C)
160*b843c749SSergey Zigachev #define PPSMC_MSG_CollectCAC_TemperaturePwr ((uint16_t)0x7D)
161*b843c749SSergey Zigachev 
162*b843c749SSergey Zigachev #define PPSMC_MSG_ExtremitiesTest_Start     ((uint16_t)0x7E)
163*b843c749SSergey Zigachev #define PPSMC_MSG_ExtremitiesTest_Stop      ((uint16_t)0x7F)
164*b843c749SSergey Zigachev #define PPSMC_FlushDataCache                ((uint16_t)0x80)
165*b843c749SSergey Zigachev #define PPSMC_FlushInstrCache               ((uint16_t)0x81)
166*b843c749SSergey Zigachev 
167*b843c749SSergey Zigachev #define PPSMC_MSG_SetEnabledLevels          ((uint16_t)0x82)
168*b843c749SSergey Zigachev #define PPSMC_MSG_SetForcedLevels           ((uint16_t)0x83)
169*b843c749SSergey Zigachev 
170*b843c749SSergey Zigachev #define PPSMC_MSG_ResetToDefaults           ((uint16_t)0x84)
171*b843c749SSergey Zigachev 
172*b843c749SSergey Zigachev #define PPSMC_MSG_SetForcedLevelsAndJump    ((uint16_t)0x85)
173*b843c749SSergey Zigachev #define PPSMC_MSG_SetCACHistoryMode         ((uint16_t)0x86)
174*b843c749SSergey Zigachev #define PPSMC_MSG_EnableDTE                 ((uint16_t)0x87)
175*b843c749SSergey Zigachev #define PPSMC_MSG_DisableDTE                ((uint16_t)0x88)
176*b843c749SSergey Zigachev 
177*b843c749SSergey Zigachev #define PPSMC_MSG_SmcSpaceSetAddress        ((uint16_t)0x89)
178*b843c749SSergey Zigachev #define PPSMC_MSG_ChangeNearTDPLimit        ((uint16_t)0x90)
179*b843c749SSergey Zigachev #define PPSMC_MSG_ChangeSafePowerLimit      ((uint16_t)0x91)
180*b843c749SSergey Zigachev 
181*b843c749SSergey Zigachev #define PPSMC_MSG_DPMStateSweepStart        ((uint16_t)0x92)
182*b843c749SSergey Zigachev #define PPSMC_MSG_DPMStateSweepStop         ((uint16_t)0x93)
183*b843c749SSergey Zigachev 
184*b843c749SSergey Zigachev #define PPSMC_MSG_OVRDDisableSCLKDS         ((uint16_t)0x94)
185*b843c749SSergey Zigachev #define PPSMC_MSG_CancelDisableOVRDSCLKDS   ((uint16_t)0x95)
186*b843c749SSergey Zigachev #define PPSMC_MSG_ThrottleOVRDSCLKDS        ((uint16_t)0x96)
187*b843c749SSergey Zigachev #define PPSMC_MSG_CancelThrottleOVRDSCLKDS  ((uint16_t)0x97)
188*b843c749SSergey Zigachev #define PPSMC_MSG_GPIO17					((uint16_t)0x98)
189*b843c749SSergey Zigachev 
190*b843c749SSergey Zigachev #define PPSMC_MSG_API_SetSvi2Volt_Vddc      ((uint16_t)0x99)
191*b843c749SSergey Zigachev #define PPSMC_MSG_API_SetSvi2Volt_Vddci     ((uint16_t)0x9A)
192*b843c749SSergey Zigachev #define PPSMC_MSG_API_SetSvi2Volt_Mvdd      ((uint16_t)0x9B)
193*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetSvi2Volt_Vddc      ((uint16_t)0x9C)
194*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetSvi2Volt_Vddci     ((uint16_t)0x9D)
195*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetSvi2Volt_Mvdd      ((uint16_t)0x9E)
196*b843c749SSergey Zigachev 
197*b843c749SSergey Zigachev #define PPSMC_MSG_BREAK                     ((uint16_t)0xF8)
198*b843c749SSergey Zigachev 
199*b843c749SSergey Zigachev /* Trinity Specific Messages*/
200*b843c749SSergey Zigachev #define PPSMC_MSG_Test                      ((uint16_t) 0x100)
201*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Voltage_Pwrmgt        ((uint16_t) 0x101)
202*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Config                ((uint16_t) 0x102)
203*b843c749SSergey Zigachev #define PPSMC_MSG_PM_Controller_Start       ((uint16_t) 0x103)
204*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_ForceState            ((uint16_t) 0x104)
205*b843c749SSergey Zigachev #define PPSMC_MSG_PG_PowerDownSIMD          ((uint16_t) 0x105)
206*b843c749SSergey Zigachev #define PPSMC_MSG_PG_PowerUpSIMD            ((uint16_t) 0x106)
207*b843c749SSergey Zigachev #define PPSMC_MSG_PM_Controller_Stop        ((uint16_t) 0x107)
208*b843c749SSergey Zigachev #define PPSMC_MSG_PG_SIMD_Config            ((uint16_t) 0x108)
209*b843c749SSergey Zigachev #define PPSMC_MSG_Voltage_Cntl_Enable       ((uint16_t) 0x109)
210*b843c749SSergey Zigachev #define PPSMC_MSG_Thermal_Cntl_Enable       ((uint16_t) 0x10a)
211*b843c749SSergey Zigachev #define PPSMC_MSG_Reset_Service             ((uint16_t) 0x10b)
212*b843c749SSergey Zigachev #define PPSMC_MSG_VCEPowerOFF               ((uint16_t) 0x10e)
213*b843c749SSergey Zigachev #define PPSMC_MSG_VCEPowerON                ((uint16_t) 0x10f)
214*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Disable_VCE_HS        ((uint16_t) 0x110)
215*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Enable_VCE_HS         ((uint16_t) 0x111)
216*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_N_LevelsDisabled      ((uint16_t) 0x112)
217*b843c749SSergey Zigachev #define PPSMC_MSG_DCEPowerOFF               ((uint16_t) 0x113)
218*b843c749SSergey Zigachev #define PPSMC_MSG_DCEPowerON                ((uint16_t) 0x114)
219*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_DDIPowerDown         ((uint16_t) 0x117)
220*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_DDIPowerUp           ((uint16_t) 0x118)
221*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_CascadePLLPowerDown  ((uint16_t) 0x119)
222*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_CascadePLLPowerUp    ((uint16_t) 0x11a)
223*b843c749SSergey Zigachev #define PPSMC_MSG_SYSPLLPowerOff            ((uint16_t) 0x11b)
224*b843c749SSergey Zigachev #define PPSMC_MSG_SYSPLLPowerOn             ((uint16_t) 0x11c)
225*b843c749SSergey Zigachev #define PPSMC_MSG_DCE_RemoveVoltageAdjustment   ((uint16_t) 0x11d)
226*b843c749SSergey Zigachev #define PPSMC_MSG_DCE_AllowVoltageAdjustment    ((uint16_t) 0x11e)
227*b843c749SSergey Zigachev #define PPSMC_MSG_DISPLAYPHYStatusNotify    ((uint16_t) 0x11f)
228*b843c749SSergey Zigachev #define PPSMC_MSG_EnableBAPM                ((uint16_t) 0x120)
229*b843c749SSergey Zigachev #define PPSMC_MSG_DisableBAPM               ((uint16_t) 0x121)
230*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_PHYPowerDown         ((uint16_t) 0x122)
231*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_PHYPowerUp           ((uint16_t) 0x123)
232*b843c749SSergey Zigachev #define PPSMC_MSG_UVD_DPM_Config            ((uint16_t) 0x124)
233*b843c749SSergey Zigachev #define PPSMC_MSG_Spmi_Enable               ((uint16_t) 0x122)
234*b843c749SSergey Zigachev #define PPSMC_MSG_Spmi_Timer                ((uint16_t) 0x123)
235*b843c749SSergey Zigachev #define PPSMC_MSG_LCLK_DPM_Config           ((uint16_t) 0x124)
236*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_Config             ((uint16_t) 0x125)
237*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_DDIPhyPowerDown           ((uint16_t) 0x126)
238*b843c749SSergey Zigachev #define PPSMC_MSG_PCIE_DDIPhyPowerUp             ((uint16_t) 0x127)
239*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_Config                ((uint16_t) 0x128)
240*b843c749SSergey Zigachev 
241*b843c749SSergey Zigachev #define PPSMC_MSG_UVDDPM_Config               ((uint16_t) 0x129)
242*b843c749SSergey Zigachev #define PPSMC_MSG_VCEDPM_Config               ((uint16_t) 0x12A)
243*b843c749SSergey Zigachev #define PPSMC_MSG_ACPDPM_Config               ((uint16_t) 0x12B)
244*b843c749SSergey Zigachev #define PPSMC_MSG_SAMUDPM_Config              ((uint16_t) 0x12C)
245*b843c749SSergey Zigachev #define PPSMC_MSG_UVDDPM_SetEnabledMask       ((uint16_t) 0x12D)
246*b843c749SSergey Zigachev #define PPSMC_MSG_VCEDPM_SetEnabledMask       ((uint16_t) 0x12E)
247*b843c749SSergey Zigachev #define PPSMC_MSG_ACPDPM_SetEnabledMask       ((uint16_t) 0x12F)
248*b843c749SSergey Zigachev #define PPSMC_MSG_SAMUDPM_SetEnabledMask      ((uint16_t) 0x130)
249*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_ForceState          ((uint16_t) 0x131)
250*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_NoForcedLevel       ((uint16_t) 0x132)
251*b843c749SSergey Zigachev #define PPSMC_MSG_Thermal_Cntl_Disable        ((uint16_t) 0x133)
252*b843c749SSergey Zigachev #define PPSMC_MSG_SetTDPLimit                 ((uint16_t) 0x134)
253*b843c749SSergey Zigachev #define PPSMC_MSG_Voltage_Cntl_Disable        ((uint16_t) 0x135)
254*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_Enable              ((uint16_t) 0x136)
255*b843c749SSergey Zigachev #define PPSMC_MSG_ACPPowerOFF                 ((uint16_t) 0x137)
256*b843c749SSergey Zigachev #define PPSMC_MSG_ACPPowerON                  ((uint16_t) 0x138)
257*b843c749SSergey Zigachev #define PPSMC_MSG_SAMPowerOFF                 ((uint16_t) 0x139)
258*b843c749SSergey Zigachev #define PPSMC_MSG_SAMPowerON                  ((uint16_t) 0x13a)
259*b843c749SSergey Zigachev #define PPSMC_MSG_SDMAPowerOFF                ((uint16_t) 0x13b)
260*b843c749SSergey Zigachev #define PPSMC_MSG_SDMAPowerON                 ((uint16_t) 0x13c)
261*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_Disable             ((uint16_t) 0x13d)
262*b843c749SSergey Zigachev #define PPSMC_MSG_IOMMUPowerOFF               ((uint16_t) 0x13e)
263*b843c749SSergey Zigachev #define PPSMC_MSG_IOMMUPowerON                ((uint16_t) 0x13f)
264*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_Enable                ((uint16_t) 0x140)
265*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_Disable               ((uint16_t) 0x141)
266*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_ForceNominal          ((uint16_t) 0x142)
267*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_ForcePerformance      ((uint16_t) 0x143)
268*b843c749SSergey Zigachev #define PPSMC_MSG_NBDPM_UnForce               ((uint16_t) 0x144)
269*b843c749SSergey Zigachev #define PPSMC_MSG_SCLKDPM_SetEnabledMask      ((uint16_t) 0x145)
270*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_SetEnabledMask      ((uint16_t) 0x146)
271*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_ForceLevel          ((uint16_t) 0x147)
272*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_UnForceLevel        ((uint16_t) 0x148)
273*b843c749SSergey Zigachev #define PPSMC_MSG_EnableACDCGPIOInterrupt     ((uint16_t) 0x149)
274*b843c749SSergey Zigachev #define PPSMC_MSG_EnableVRHotGPIOInterrupt    ((uint16_t) 0x14a)
275*b843c749SSergey Zigachev #define PPSMC_MSG_SwitchToAC                  ((uint16_t) 0x14b)
276*b843c749SSergey Zigachev 
277*b843c749SSergey Zigachev #define PPSMC_MSG_XDMAPowerOFF                ((uint16_t) 0x14c)
278*b843c749SSergey Zigachev #define PPSMC_MSG_XDMAPowerON                 ((uint16_t) 0x14d)
279*b843c749SSergey Zigachev 
280*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Enable                  ((uint16_t)0x14e)
281*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Disable                 ((uint16_t)0x14f)
282*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_Enable              ((uint16_t)0x150)
283*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_Disable             ((uint16_t)0x151)
284*b843c749SSergey Zigachev #define PPSMC_MSG_LCLKDPM_Enable              ((uint16_t)0x152)
285*b843c749SSergey Zigachev #define PPSMC_MSG_LCLKDPM_Disable             ((uint16_t)0x153)
286*b843c749SSergey Zigachev #define PPSMC_MSG_UVDDPM_Enable               ((uint16_t)0x154)
287*b843c749SSergey Zigachev #define PPSMC_MSG_UVDDPM_Disable              ((uint16_t)0x155)
288*b843c749SSergey Zigachev #define PPSMC_MSG_SAMUDPM_Enable              ((uint16_t)0x156)
289*b843c749SSergey Zigachev #define PPSMC_MSG_SAMUDPM_Disable             ((uint16_t)0x157)
290*b843c749SSergey Zigachev #define PPSMC_MSG_ACPDPM_Enable               ((uint16_t)0x158)
291*b843c749SSergey Zigachev #define PPSMC_MSG_ACPDPM_Disable              ((uint16_t)0x159)
292*b843c749SSergey Zigachev #define PPSMC_MSG_VCEDPM_Enable               ((uint16_t)0x15a)
293*b843c749SSergey Zigachev #define PPSMC_MSG_VCEDPM_Disable              ((uint16_t)0x15b)
294*b843c749SSergey Zigachev #define PPSMC_MSG_LCLKDPM_SetEnabledMask      ((uint16_t)0x15c)
295*b843c749SSergey Zigachev 
296*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_FPS_Mode                ((uint16_t) 0x15d)
297*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_Activity_Mode           ((uint16_t) 0x15e)
298*b843c749SSergey Zigachev #define PPSMC_MSG_VddC_Request                ((uint16_t) 0x15f)
299*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_GetEnabledMask      ((uint16_t) 0x160)
300*b843c749SSergey Zigachev #define PPSMC_MSG_LCLKDPM_GetEnabledMask      ((uint16_t) 0x161)
301*b843c749SSergey Zigachev #define PPSMC_MSG_SCLKDPM_GetEnabledMask      ((uint16_t) 0x162)
302*b843c749SSergey Zigachev #define PPSMC_MSG_UVDDPM_GetEnabledMask       ((uint16_t) 0x163)
303*b843c749SSergey Zigachev #define PPSMC_MSG_SAMUDPM_GetEnabledMask      ((uint16_t) 0x164)
304*b843c749SSergey Zigachev #define PPSMC_MSG_ACPDPM_GetEnabledMask       ((uint16_t) 0x165)
305*b843c749SSergey Zigachev #define PPSMC_MSG_VCEDPM_GetEnabledMask       ((uint16_t) 0x166)
306*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_SetEnabledMask      ((uint16_t) 0x167)
307*b843c749SSergey Zigachev #define PPSMC_MSG_PCIeDPM_GetEnabledMask      ((uint16_t) 0x168)
308*b843c749SSergey Zigachev #define PPSMC_MSG_TDCLimitEnable              ((uint16_t) 0x169)
309*b843c749SSergey Zigachev #define PPSMC_MSG_TDCLimitDisable             ((uint16_t) 0x16a)
310*b843c749SSergey Zigachev #define PPSMC_MSG_DPM_AutoRotate_Mode         ((uint16_t) 0x16b)
311*b843c749SSergey Zigachev #define PPSMC_MSG_DISPCLK_FROM_FCH            ((uint16_t)0x16c)
312*b843c749SSergey Zigachev #define PPSMC_MSG_DISPCLK_FROM_DFS            ((uint16_t)0x16d)
313*b843c749SSergey Zigachev #define PPSMC_MSG_DPREFCLK_FROM_FCH           ((uint16_t)0x16e)
314*b843c749SSergey Zigachev #define PPSMC_MSG_DPREFCLK_FROM_DFS           ((uint16_t)0x16f)
315*b843c749SSergey Zigachev #define PPSMC_MSG_PmStatusLogStart            ((uint16_t)0x170)
316*b843c749SSergey Zigachev #define PPSMC_MSG_PmStatusLogSample           ((uint16_t)0x171)
317*b843c749SSergey Zigachev #define PPSMC_MSG_SCLK_AutoDPM_ON             ((uint16_t) 0x172)
318*b843c749SSergey Zigachev #define PPSMC_MSG_MCLK_AutoDPM_ON             ((uint16_t) 0x173)
319*b843c749SSergey Zigachev #define PPSMC_MSG_LCLK_AutoDPM_ON             ((uint16_t) 0x174)
320*b843c749SSergey Zigachev #define PPSMC_MSG_UVD_AutoDPM_ON              ((uint16_t) 0x175)
321*b843c749SSergey Zigachev #define PPSMC_MSG_SAMU_AutoDPM_ON             ((uint16_t) 0x176)
322*b843c749SSergey Zigachev #define PPSMC_MSG_ACP_AutoDPM_ON              ((uint16_t) 0x177)
323*b843c749SSergey Zigachev #define PPSMC_MSG_VCE_AutoDPM_ON              ((uint16_t) 0x178)
324*b843c749SSergey Zigachev #define PPSMC_MSG_PCIe_AutoDPM_ON             ((uint16_t) 0x179)
325*b843c749SSergey Zigachev #define PPSMC_MSG_MASTER_AutoDPM_ON           ((uint16_t) 0x17a)
326*b843c749SSergey Zigachev #define PPSMC_MSG_MASTER_AutoDPM_OFF          ((uint16_t) 0x17b)
327*b843c749SSergey Zigachev #define PPSMC_MSG_DYNAMICDISPPHYPOWER         ((uint16_t) 0x17c)
328*b843c749SSergey Zigachev #define PPSMC_MSG_CAC_COLLECTION_ON           ((uint16_t) 0x17d)
329*b843c749SSergey Zigachev #define PPSMC_MSG_CAC_COLLECTION_OFF          ((uint16_t) 0x17e)
330*b843c749SSergey Zigachev #define PPSMC_MSG_CAC_CORRELATION_ON          ((uint16_t) 0x17f)
331*b843c749SSergey Zigachev #define PPSMC_MSG_CAC_CORRELATION_OFF         ((uint16_t) 0x180)
332*b843c749SSergey Zigachev #define PPSMC_MSG_PM_STATUS_TO_DRAM_ON        ((uint16_t) 0x181)
333*b843c749SSergey Zigachev #define PPSMC_MSG_PM_STATUS_TO_DRAM_OFF       ((uint16_t) 0x182)
334*b843c749SSergey Zigachev #define PPSMC_MSG_UVD_HANDSHAKE_OFF           ((uint16_t) 0x183)
335*b843c749SSergey Zigachev #define PPSMC_MSG_ALLOW_LOWSCLK_INTERRUPT     ((uint16_t) 0x184)
336*b843c749SSergey Zigachev #define PPSMC_MSG_PkgPwrLimitEnable           ((uint16_t) 0x185)
337*b843c749SSergey Zigachev #define PPSMC_MSG_PkgPwrLimitDisable          ((uint16_t) 0x186)
338*b843c749SSergey Zigachev #define PPSMC_MSG_PkgPwrSetLimit              ((uint16_t) 0x187)
339*b843c749SSergey Zigachev #define PPSMC_MSG_OverDriveSetTargetTdp       ((uint16_t) 0x188)
340*b843c749SSergey Zigachev #define PPSMC_MSG_SCLKDPM_FreezeLevel         ((uint16_t) 0x189)
341*b843c749SSergey Zigachev #define PPSMC_MSG_SCLKDPM_UnfreezeLevel       ((uint16_t) 0x18A)
342*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_FreezeLevel         ((uint16_t) 0x18B)
343*b843c749SSergey Zigachev #define PPSMC_MSG_MCLKDPM_UnfreezeLevel       ((uint16_t) 0x18C)
344*b843c749SSergey Zigachev #define PPSMC_MSG_START_DRAM_LOGGING          ((uint16_t) 0x18D)
345*b843c749SSergey Zigachev #define PPSMC_MSG_STOP_DRAM_LOGGING           ((uint16_t) 0x18E)
346*b843c749SSergey Zigachev #define PPSMC_MSG_MASTER_DeepSleep_ON         ((uint16_t) 0x18F)
347*b843c749SSergey Zigachev #define PPSMC_MSG_MASTER_DeepSleep_OFF        ((uint16_t) 0x190)
348*b843c749SSergey Zigachev #define PPSMC_MSG_Remove_DC_Clamp             ((uint16_t) 0x191)
349*b843c749SSergey Zigachev #define PPSMC_MSG_DisableACDCGPIOInterrupt    ((uint16_t) 0x192)
350*b843c749SSergey Zigachev #define PPSMC_MSG_OverrideVoltageControl_SetVddc       ((uint16_t) 0x193)
351*b843c749SSergey Zigachev #define PPSMC_MSG_OverrideVoltageControl_SetVddci      ((uint16_t) 0x194)
352*b843c749SSergey Zigachev #define PPSMC_MSG_SetVidOffset_1              ((uint16_t) 0x195)
353*b843c749SSergey Zigachev #define PPSMC_MSG_SetVidOffset_2              ((uint16_t) 0x207)
354*b843c749SSergey Zigachev #define PPSMC_MSG_GetVidOffset_1              ((uint16_t) 0x196)
355*b843c749SSergey Zigachev #define PPSMC_MSG_GetVidOffset_2              ((uint16_t) 0x208)
356*b843c749SSergey Zigachev #define PPSMC_MSG_THERMAL_OVERDRIVE_Enable    ((uint16_t) 0x197)
357*b843c749SSergey Zigachev #define PPSMC_MSG_THERMAL_OVERDRIVE_Disable	  ((uint16_t) 0x198)
358*b843c749SSergey Zigachev #define PPSMC_MSG_SetTjMax                    ((uint16_t) 0x199)
359*b843c749SSergey Zigachev #define PPSMC_MSG_SetFanPwmMax                ((uint16_t) 0x19A)
360*b843c749SSergey Zigachev 
361*b843c749SSergey Zigachev #define PPSMC_MSG_WaitForMclkSwitchFinish	  ((uint16_t) 0x19B)
362*b843c749SSergey Zigachev #define PPSMC_MSG_ENABLE_THERMAL_DPM          ((uint16_t) 0x19C)
363*b843c749SSergey Zigachev #define PPSMC_MSG_DISABLE_THERMAL_DPM         ((uint16_t) 0x19D)
364*b843c749SSergey Zigachev #define PPSMC_MSG_Enable_PCC                  ((uint16_t) 0x19E)
365*b843c749SSergey Zigachev #define PPSMC_MSG_Disable_PCC                 ((uint16_t) 0x19F)
366*b843c749SSergey Zigachev 
367*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetSclkFrequency        ((uint16_t) 0x200)
368*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetMclkFrequency        ((uint16_t) 0x201)
369*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetSclkBusy             ((uint16_t) 0x202)
370*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetMclkBusy             ((uint16_t) 0x203)
371*b843c749SSergey Zigachev #define PPSMC_MSG_API_GetAsicPower            ((uint16_t) 0x204)
372*b843c749SSergey Zigachev #define PPSMC_MSG_SetFanRpmMax                ((uint16_t) 0x205)
373*b843c749SSergey Zigachev #define PPSMC_MSG_SetFanSclkTarget            ((uint16_t) 0x206)
374*b843c749SSergey Zigachev #define PPSMC_MSG_SetFanMinPwm                ((uint16_t) 0x209)
375*b843c749SSergey Zigachev #define PPSMC_MSG_SetFanTemperatureTarget     ((uint16_t) 0x20A)
376*b843c749SSergey Zigachev 
377*b843c749SSergey Zigachev #define PPSMC_MSG_BACO_StartMonitor           ((uint16_t) 0x240)
378*b843c749SSergey Zigachev #define PPSMC_MSG_BACO_Cancel                 ((uint16_t) 0x241)
379*b843c749SSergey Zigachev #define PPSMC_MSG_EnableVddGfx                ((uint16_t) 0x242)
380*b843c749SSergey Zigachev #define PPSMC_MSG_DisableVddGfx               ((uint16_t) 0x243)
381*b843c749SSergey Zigachev #define PPSMC_MSG_UcodeAddressLow             ((uint16_t) 0x244)
382*b843c749SSergey Zigachev #define PPSMC_MSG_UcodeAddressHigh            ((uint16_t) 0x245)
383*b843c749SSergey Zigachev #define PPSMC_MSG_UcodeLoadStatus             ((uint16_t) 0x246)
384*b843c749SSergey Zigachev 
385*b843c749SSergey Zigachev #define PPSMC_MSG_DRV_DRAM_ADDR_HI			  ((uint16_t) 0x250)
386*b843c749SSergey Zigachev #define PPSMC_MSG_DRV_DRAM_ADDR_LO            ((uint16_t) 0x251)
387*b843c749SSergey Zigachev #define PPSMC_MSG_SMU_DRAM_ADDR_HI            ((uint16_t) 0x252)
388*b843c749SSergey Zigachev #define PPSMC_MSG_SMU_DRAM_ADDR_LO            ((uint16_t) 0x253)
389*b843c749SSergey Zigachev #define PPSMC_MSG_LoadUcodes                  ((uint16_t) 0x254)
390*b843c749SSergey Zigachev #define PPSMC_MSG_PowerStateNotify            ((uint16_t) 0x255)
391*b843c749SSergey Zigachev #define PPSMC_MSG_COND_EXEC_DRAM_ADDR_HI      ((uint16_t) 0x256)
392*b843c749SSergey Zigachev #define PPSMC_MSG_COND_EXEC_DRAM_ADDR_LO      ((uint16_t) 0x257)
393*b843c749SSergey Zigachev #define PPSMC_MSG_VBIOS_DRAM_ADDR_HI          ((uint16_t) 0x258)
394*b843c749SSergey Zigachev #define PPSMC_MSG_VBIOS_DRAM_ADDR_LO          ((uint16_t) 0x259)
395*b843c749SSergey Zigachev #define PPSMC_MSG_LoadVBios                   ((uint16_t) 0x25A)
396*b843c749SSergey Zigachev #define PPSMC_MSG_GetUcodeVersion             ((uint16_t) 0x25B)
397*b843c749SSergey Zigachev #define DMCUSMC_MSG_PSREntry                  ((uint16_t) 0x25C)
398*b843c749SSergey Zigachev #define DMCUSMC_MSG_PSRExit                   ((uint16_t) 0x25D)
399*b843c749SSergey Zigachev #define PPSMC_MSG_EnableClockGatingFeature    ((uint16_t) 0x260)
400*b843c749SSergey Zigachev #define PPSMC_MSG_DisableClockGatingFeature   ((uint16_t) 0x261)
401*b843c749SSergey Zigachev #define PPSMC_MSG_IsDeviceRunning             ((uint16_t) 0x262)
402*b843c749SSergey Zigachev #define PPSMC_MSG_LoadMetaData                ((uint16_t) 0x263)
403*b843c749SSergey Zigachev #define PPSMC_MSG_TMON_AutoCaliberate_Enable  ((uint16_t) 0x264)
404*b843c749SSergey Zigachev #define PPSMC_MSG_TMON_AutoCaliberate_Disable ((uint16_t) 0x265)
405*b843c749SSergey Zigachev #define PPSMC_MSG_GetTelemetry1Slope          ((uint16_t) 0x266)
406*b843c749SSergey Zigachev #define PPSMC_MSG_GetTelemetry1Offset         ((uint16_t) 0x267)
407*b843c749SSergey Zigachev #define PPSMC_MSG_GetTelemetry2Slope          ((uint16_t) 0x268)
408*b843c749SSergey Zigachev #define PPSMC_MSG_GetTelemetry2Offset         ((uint16_t) 0x269)
409*b843c749SSergey Zigachev 
410*b843c749SSergey Zigachev typedef uint16_t PPSMC_Msg;
411*b843c749SSergey Zigachev 
412*b843c749SSergey Zigachev /* If the SMC firmware has an event status soft register this is what the individual bits mean.*/
413*b843c749SSergey Zigachev #define PPSMC_EVENT_STATUS_THERMAL          0x00000001
414*b843c749SSergey Zigachev #define PPSMC_EVENT_STATUS_REGULATORHOT     0x00000002
415*b843c749SSergey Zigachev #define PPSMC_EVENT_STATUS_DC               0x00000004
416*b843c749SSergey Zigachev #define PPSMC_EVENT_STATUS_GPIO17           0x00000008
417*b843c749SSergey Zigachev 
418*b843c749SSergey Zigachev 
419*b843c749SSergey Zigachev #pragma pack(pop)
420*b843c749SSergey Zigachev #endif
421