| 1 | /* |
| 2 | * Copyright 2020 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 | #ifndef SMU_13_0_PPTABLE_H |
| 23 | #define SMU_13_0_PPTABLE_H |
| 24 | |
| 25 | #pragma pack(push, 1) |
| 26 | |
| 27 | #define SMU_13_0_TABLE_FORMAT_REVISION 1 |
| 28 | |
| 29 | //// POWERPLAYTABLE::ulPlatformCaps |
| 30 | #define SMU_13_0_PP_PLATFORM_CAP_POWERPLAY 0x1 |
| 31 | #define SMU_13_0_PP_PLATFORM_CAP_SBIOSPOWERSOURCE 0x2 |
| 32 | #define SMU_13_0_PP_PLATFORM_CAP_HARDWAREDC 0x4 |
| 33 | #define SMU_13_0_PP_PLATFORM_CAP_BACO 0x8 |
| 34 | #define SMU_13_0_PP_PLATFORM_CAP_MACO 0x10 |
| 35 | #define SMU_13_0_PP_PLATFORM_CAP_SHADOWPSTATE 0x20 |
| 36 | |
| 37 | // SMU_13_0_PP_THERMALCONTROLLER - Thermal Controller Type |
| 38 | #define SMU_13_0_PP_THERMALCONTROLLER_NONE 0 |
| 39 | |
| 40 | #define SMU_13_0_PP_OVERDRIVE_VERSION 0x0800 |
| 41 | #define SMU_13_0_PP_POWERSAVINGCLOCK_VERSION 0x0100 |
| 42 | |
| 43 | enum SMU_13_0_ODFEATURE_CAP { |
| 44 | SMU_13_0_ODCAP_GFXCLK_LIMITS = 0, |
| 45 | SMU_13_0_ODCAP_GFXCLK_CURVE, |
| 46 | SMU_13_0_ODCAP_UCLK_MAX, |
| 47 | SMU_13_0_ODCAP_POWER_LIMIT, |
| 48 | SMU_13_0_ODCAP_FAN_ACOUSTIC_LIMIT, |
| 49 | SMU_13_0_ODCAP_FAN_SPEED_MIN, |
| 50 | SMU_13_0_ODCAP_TEMPERATURE_FAN, |
| 51 | SMU_13_0_ODCAP_TEMPERATURE_SYSTEM, |
| 52 | SMU_13_0_ODCAP_MEMORY_TIMING_TUNE, |
| 53 | SMU_13_0_ODCAP_FAN_ZERO_RPM_CONTROL, |
| 54 | SMU_13_0_ODCAP_AUTO_UV_ENGINE, |
| 55 | SMU_13_0_ODCAP_AUTO_OC_ENGINE, |
| 56 | SMU_13_0_ODCAP_AUTO_OC_MEMORY, |
| 57 | SMU_13_0_ODCAP_FAN_CURVE, |
| 58 | SMU_13_0_ODCAP_COUNT, |
| 59 | }; |
| 60 | |
| 61 | enum SMU_13_0_ODFEATURE_ID { |
| 62 | SMU_13_0_ODFEATURE_GFXCLK_LIMITS = 1 << SMU_13_0_ODCAP_GFXCLK_LIMITS, //GFXCLK Limit feature |
| 63 | SMU_13_0_ODFEATURE_GFXCLK_CURVE = 1 << SMU_13_0_ODCAP_GFXCLK_CURVE, //GFXCLK Curve feature |
| 64 | SMU_13_0_ODFEATURE_UCLK_MAX = 1 << SMU_13_0_ODCAP_UCLK_MAX, //UCLK Limit feature |
| 65 | SMU_13_0_ODFEATURE_POWER_LIMIT = 1 << SMU_13_0_ODCAP_POWER_LIMIT, //Power Limit feature |
| 66 | SMU_13_0_ODFEATURE_FAN_ACOUSTIC_LIMIT = 1 << SMU_13_0_ODCAP_FAN_ACOUSTIC_LIMIT, //Fan Acoustic RPM feature |
| 67 | SMU_13_0_ODFEATURE_FAN_SPEED_MIN = 1 << SMU_13_0_ODCAP_FAN_SPEED_MIN, //Minimum Fan Speed feature |
| 68 | SMU_13_0_ODFEATURE_TEMPERATURE_FAN = 1 << SMU_13_0_ODCAP_TEMPERATURE_FAN, //Fan Target Temperature Limit feature |
| 69 | SMU_13_0_ODFEATURE_TEMPERATURE_SYSTEM = 1 << SMU_13_0_ODCAP_TEMPERATURE_SYSTEM, //Operating Temperature Limit feature |
| 70 | SMU_13_0_ODFEATURE_MEMORY_TIMING_TUNE = 1 << SMU_13_0_ODCAP_MEMORY_TIMING_TUNE, //AC Timing Tuning feature |
| 71 | SMU_13_0_ODFEATURE_FAN_ZERO_RPM_CONTROL = 1 << SMU_13_0_ODCAP_FAN_ZERO_RPM_CONTROL, //Zero RPM feature |
| 72 | SMU_13_0_ODFEATURE_AUTO_UV_ENGINE = 1 << SMU_13_0_ODCAP_AUTO_UV_ENGINE, //Auto Under Volt GFXCLK feature |
| 73 | SMU_13_0_ODFEATURE_AUTO_OC_ENGINE = 1 << SMU_13_0_ODCAP_AUTO_OC_ENGINE, //Auto Over Clock GFXCLK feature |
| 74 | SMU_13_0_ODFEATURE_AUTO_OC_MEMORY = 1 << SMU_13_0_ODCAP_AUTO_OC_MEMORY, //Auto Over Clock MCLK feature |
| 75 | SMU_13_0_ODFEATURE_FAN_CURVE = 1 << SMU_13_0_ODCAP_FAN_CURVE, //Fan Curve feature |
| 76 | SMU_13_0_ODFEATURE_COUNT = 14, |
| 77 | }; |
| 78 | |
| 79 | #define SMU_13_0_MAX_ODFEATURE 32 //Maximum Number of OD Features |
| 80 | |
| 81 | enum SMU_13_0_ODSETTING_ID { |
| 82 | SMU_13_0_ODSETTING_GFXCLKFMAX = 0, |
| 83 | SMU_13_0_ODSETTING_GFXCLKFMIN, |
| 84 | SMU_13_0_ODSETTING_VDDGFXCURVEFREQ_P1, |
| 85 | SMU_13_0_ODSETTING_VDDGFXCURVEVOLTAGE_P1, |
| 86 | SMU_13_0_ODSETTING_VDDGFXCURVEFREQ_P2, |
| 87 | SMU_13_0_ODSETTING_VDDGFXCURVEVOLTAGE_P2, |
| 88 | SMU_13_0_ODSETTING_VDDGFXCURVEFREQ_P3, |
| 89 | SMU_13_0_ODSETTING_VDDGFXCURVEVOLTAGE_P3, |
| 90 | SMU_13_0_ODSETTING_UCLKFMAX, |
| 91 | SMU_13_0_ODSETTING_POWERPERCENTAGE, |
| 92 | SMU_13_0_ODSETTING_FANRPMMIN, |
| 93 | SMU_13_0_ODSETTING_FANRPMACOUSTICLIMIT, |
| 94 | SMU_13_0_ODSETTING_FANTARGETTEMPERATURE, |
| 95 | SMU_13_0_ODSETTING_OPERATINGTEMPMAX, |
| 96 | SMU_13_0_ODSETTING_ACTIMING, |
| 97 | SMU_13_0_ODSETTING_FAN_ZERO_RPM_CONTROL, |
| 98 | SMU_13_0_ODSETTING_AUTOUVENGINE, |
| 99 | SMU_13_0_ODSETTING_AUTOOCENGINE, |
| 100 | SMU_13_0_ODSETTING_AUTOOCMEMORY, |
| 101 | SMU_13_0_ODSETTING_COUNT, |
| 102 | }; |
| 103 | |
| 104 | #define SMU_13_0_MAX_ODSETTING 32 //Maximum Number of ODSettings |
| 105 | |
| 106 | struct smu_13_0_overdrive_table { |
| 107 | uint8_t revision; //Revision = SMU_11_0_PP_OVERDRIVE_VERSION |
| 108 | uint8_t reserve[3]; //Zero filled field reserved for future use |
| 109 | uint32_t feature_count; //Total number of supported features |
| 110 | uint32_t setting_count; //Total number of supported settings |
| 111 | uint8_t cap[SMU_13_0_MAX_ODFEATURE]; //OD feature support flags |
| 112 | uint32_t max[SMU_13_0_MAX_ODSETTING]; //default maximum settings |
| 113 | uint32_t min[SMU_13_0_MAX_ODSETTING]; //default minimum settings |
| 114 | }; |
| 115 | |
| 116 | enum SMU_13_0_PPCLOCK_ID { |
| 117 | SMU_13_0_PPCLOCK_GFXCLK = 0, |
| 118 | SMU_13_0_PPCLOCK_VCLK, |
| 119 | SMU_13_0_PPCLOCK_DCLK, |
| 120 | SMU_13_0_PPCLOCK_ECLK, |
| 121 | SMU_13_0_PPCLOCK_SOCCLK, |
| 122 | SMU_13_0_PPCLOCK_UCLK, |
| 123 | SMU_13_0_PPCLOCK_DCEFCLK, |
| 124 | SMU_13_0_PPCLOCK_DISPCLK, |
| 125 | SMU_13_0_PPCLOCK_PIXCLK, |
| 126 | SMU_13_0_PPCLOCK_PHYCLK, |
| 127 | SMU_13_0_PPCLOCK_COUNT, |
| 128 | }; |
| 129 | #define SMU_13_0_MAX_PPCLOCK 16 //Maximum Number of PP Clocks |
| 130 | |
| 131 | struct smu_13_0_power_saving_clock_table { |
| 132 | uint8_t revision; //Revision = SMU_11_0_PP_POWERSAVINGCLOCK_VERSION |
| 133 | uint8_t reserve[3]; //Zero filled field reserved for future use |
| 134 | uint32_t count; //power_saving_clock_count = SMU_11_0_PPCLOCK_COUNT |
| 135 | uint32_t max[SMU_13_0_MAX_PPCLOCK]; //PowerSavingClock Mode Clock Maximum array In MHz |
| 136 | uint32_t min[SMU_13_0_MAX_PPCLOCK]; //PowerSavingClock Mode Clock Minimum array In MHz |
| 137 | }; |
| 138 | |
| 139 | struct smu_13_0_powerplay_table { |
| 140 | struct atom_common_table_header ; |
| 141 | uint8_t table_revision; |
| 142 | uint16_t table_size; //Driver portion table size. The offset to smc_pptable including header size |
| 143 | uint32_t golden_pp_id; |
| 144 | uint32_t golden_revision; |
| 145 | uint16_t format_id; |
| 146 | uint32_t platform_caps; //POWERPLAYABLE::ulPlatformCaps |
| 147 | |
| 148 | uint8_t thermal_controller_type; //one of SMU_13_0_PP_THERMALCONTROLLER |
| 149 | |
| 150 | uint16_t small_power_limit1; |
| 151 | uint16_t small_power_limit2; |
| 152 | uint16_t boost_power_limit; |
| 153 | uint16_t od_turbo_power_limit; //Power limit setting for Turbo mode in Performance UI Tuning. |
| 154 | uint16_t od_power_save_power_limit; //Power limit setting for PowerSave/Optimal mode in Performance UI Tuning. |
| 155 | uint16_t software_shutdown_temp; |
| 156 | |
| 157 | uint16_t reserve[6]; //Zero filled field reserved for future use |
| 158 | |
| 159 | struct smu_13_0_power_saving_clock_table power_saving_clock; |
| 160 | struct smu_13_0_overdrive_table overdrive_table; |
| 161 | |
| 162 | #ifndef SMU_13_0_PARTIAL_PPTABLE |
| 163 | PPTable_t smc_pptable; //PPTable_t in driver_if.h |
| 164 | #endif |
| 165 | }; |
| 166 | |
| 167 | #pragma pack(pop) |
| 168 | |
| 169 | #endif |
| 170 | |