rv_ppsmc.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright 2017 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. #ifndef RAVEN_PP_SMC_H
  24. #define RAVEN_PP_SMC_H
  25. #pragma pack(push, 1)
  26. #define PPSMC_Result_OK 0x1
  27. #define PPSMC_Result_Failed 0xFF
  28. #define PPSMC_Result_UnknownCmd 0xFE
  29. #define PPSMC_Result_CmdRejectedPrereq 0xFD
  30. #define PPSMC_Result_CmdRejectedBusy 0xFC
  31. #define PPSMC_MSG_TestMessage 0x1
  32. #define PPSMC_MSG_GetSmuVersion 0x2
  33. #define PPSMC_MSG_GetDriverIfVersion 0x3
  34. #define PPSMC_MSG_PowerUpGfx 0x6
  35. #define PPSMC_MSG_EnableGfxOff 0x7
  36. #define PPSMC_MSG_DisableGfxOff 0x8
  37. #define PPSMC_MSG_PowerDownIspByTile 0x9
  38. #define PPSMC_MSG_PowerUpIspByTile 0xA
  39. #define PPSMC_MSG_PowerDownVcn 0xB
  40. #define PPSMC_MSG_PowerUpVcn 0xC
  41. #define PPSMC_MSG_PowerDownSdma 0xD
  42. #define PPSMC_MSG_PowerUpSdma 0xE
  43. #define PPSMC_MSG_SetHardMinIspclkByFreq 0xF
  44. #define PPSMC_MSG_SetHardMinVcn 0x10
  45. #define PPSMC_MSG_SetMinDisplayClock 0x11
  46. #define PPSMC_MSG_SetHardMinFclkByFreq 0x12
  47. #define PPSMC_MSG_SetAllowFclkSwitch 0x13
  48. #define PPSMC_MSG_SetMinVideoGfxclkFreq 0x14
  49. #define PPSMC_MSG_ActiveProcessNotify 0x15
  50. #define PPSMC_MSG_SetCustomPolicy 0x16
  51. #define PPSMC_MSG_SetVideoFps 0x17
  52. #define PPSMC_MSG_SetDisplayCount 0x18
  53. #define PPSMC_MSG_QueryPowerLimit 0x19
  54. #define PPSMC_MSG_SetDriverDramAddrHigh 0x1A
  55. #define PPSMC_MSG_SetDriverDramAddrLow 0x1B
  56. #define PPSMC_MSG_TransferTableSmu2Dram 0x1C
  57. #define PPSMC_MSG_TransferTableDram2Smu 0x1D
  58. #define PPSMC_MSG_ControlGfxRM 0x1E
  59. #define PPSMC_MSG_SetGfxclkOverdriveByFreqVid 0x1F
  60. #define PPSMC_MSG_SetHardMinDcefclkByFreq 0x20
  61. #define PPSMC_MSG_SetHardMinSocclkByFreq 0x21
  62. #define PPSMC_MSG_SetMinVddcrSocVoltage 0x22
  63. #define PPSMC_MSG_SetMinVideoFclkFreq 0x23
  64. #define PPSMC_MSG_SetMinDeepSleepDcefclk 0x24
  65. #define PPSMC_MSG_ForcePowerDownGfx 0x25
  66. #define PPSMC_MSG_SetPhyclkVoltageByFreq 0x26
  67. #define PPSMC_MSG_SetDppclkVoltageByFreq 0x27
  68. #define PPSMC_MSG_SetSoftMinVcn 0x28
  69. #define PPSMC_MSG_GetGfxclkFrequency 0x2A
  70. #define PPSMC_MSG_GetFclkFrequency 0x2B
  71. #define PPSMC_MSG_GetMinGfxclkFrequency 0x2C
  72. #define PPSMC_MSG_GetMaxGfxclkFrequency 0x2D
  73. #define PPSMC_MSG_SoftReset 0x2E
  74. #define PPSMC_MSG_SetSoftMaxGfxClk 0x30
  75. #define PPSMC_MSG_SetHardMinGfxClk 0x31
  76. #define PPSMC_MSG_SetSoftMaxSocclkByFreq 0x32
  77. #define PPSMC_MSG_SetSoftMaxFclkByFreq 0x33
  78. #define PPSMC_MSG_SetSoftMaxVcn 0x34
  79. #define PPSMC_MSG_PowerGateMmHub 0x35
  80. #define PPSMC_Message_Count 0x36
  81. typedef uint16_t PPSMC_Result;
  82. typedef int PPSMC_Msg;
  83. #pragma pack(pop)
  84. #endif