2 * Copyright 2013 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
28 #define SMU__NUM_SCLK_DPM_STATE 8
29 #define SMU__NUM_MCLK_DPM_LEVELS 6
30 #define SMU__NUM_LCLK_DPM_LEVELS 8
31 #define SMU__NUM_PCIE_DPM_LEVELS 8
32 #include "smu7_discrete.h"
34 #define CISLANDS_MAX_HARDWARE_POWERLEVELS 2
39 enum radeon_pcie_gen pcie_gen
;
44 u16 performance_level_count
;
47 struct ci_pl performance_levels
[CISLANDS_MAX_HARDWARE_POWERLEVELS
];
56 #define CISLAND_MAX_DEEPSLEEP_DIVIDER_ID 5
57 #define MAX_REGULAR_DPM_NUMBER 8
58 #define CISLAND_MINIMUM_ENGINE_CLOCK 800
60 struct ci_single_dpm_table
{
62 struct ci_dpm_level dpm_levels
[MAX_REGULAR_DPM_NUMBER
];
66 struct ci_single_dpm_table sclk_table
;
67 struct ci_single_dpm_table mclk_table
;
68 struct ci_single_dpm_table pcie_speed_table
;
69 struct ci_single_dpm_table vddc_table
;
70 struct ci_single_dpm_table vddci_table
;
71 struct ci_single_dpm_table mvdd_table
;
74 struct ci_mc_reg_entry
{
76 u32 mc_data
[SMU7_DISCRETE_MC_REGISTER_ARRAY_SIZE
];
79 struct ci_mc_reg_table
{
83 struct ci_mc_reg_entry mc_reg_table_entry
[MAX_AC_TIMING_ENTRIES
];
84 SMU7_Discrete_MCRegisterAddress mc_reg_address
[SMU7_DISCRETE_MC_REGISTER_ARRAY_SIZE
];
91 u32 volt_change_delay
;
95 #define CISLANDS_MAX_LEAKAGE_COUNT 8
97 struct ci_leakage_voltage
{
99 u16 leakage_id
[CISLANDS_MAX_LEAKAGE_COUNT
];
100 u16 actual_voltage
[CISLANDS_MAX_LEAKAGE_COUNT
];
103 struct ci_dpm_level_enable_mask
{
104 u32 uvd_dpm_enable_mask
;
105 u32 vce_dpm_enable_mask
;
106 u32 acp_dpm_enable_mask
;
107 u32 samu_dpm_enable_mask
;
108 u32 sclk_dpm_enable_mask
;
109 u32 mclk_dpm_enable_mask
;
110 u32 pcie_dpm_enable_mask
;
113 struct ci_vbios_boot_state
115 u16 mvdd_bootup_value
;
116 u16 vddc_bootup_value
;
117 u16 vddci_bootup_value
;
118 u32 sclk_bootup_value
;
119 u32 mclk_bootup_value
;
120 u16 pcie_gen_bootup_value
;
121 u16 pcie_lane_bootup_value
;
124 struct ci_clock_registers
{
125 u32 cg_spll_func_cntl
;
126 u32 cg_spll_func_cntl_2
;
127 u32 cg_spll_func_cntl_3
;
128 u32 cg_spll_func_cntl_4
;
129 u32 cg_spll_spread_spectrum
;
130 u32 cg_spll_spread_spectrum_2
;
132 u32 mclk_pwrmgt_cntl
;
133 u32 mpll_ad_func_cntl
;
134 u32 mpll_dq_func_cntl
;
136 u32 mpll_func_cntl_1
;
137 u32 mpll_func_cntl_2
;
142 struct ci_thermal_temperature_setting
{
144 s32 temperature_high
;
145 s32 temperature_shutdown
;
148 struct ci_pcie_perf_range
{
153 enum ci_pt_config_reg_type
{
154 CISLANDS_CONFIGREG_MMR
= 0,
155 CISLANDS_CONFIGREG_SMC_IND
,
156 CISLANDS_CONFIGREG_DIDT_IND
,
157 CISLANDS_CONFIGREG_CACHE
,
158 CISLANDS_CONFIGREG_MAX
161 #define POWERCONTAINMENT_FEATURE_BAPM 0x00000001
162 #define POWERCONTAINMENT_FEATURE_TDCLimit 0x00000002
163 #define POWERCONTAINMENT_FEATURE_PkgPwrLimit 0x00000004
165 struct ci_pt_config_reg
{
170 enum ci_pt_config_reg_type type
;
173 struct ci_pt_defaults
{
175 u8 svi_load_line_vddc
;
176 u8 tdc_vddc_throttle_release_limit_perc
;
178 u8 tdc_waterfall_ctl
;
179 u8 dte_ambient_temp_base
;
181 u32 bapm_temp_gradient
;
182 u16 bapmti_r
[SMU7_DTE_ITERATIONS
* SMU7_DTE_SOURCES
* SMU7_DTE_SINKS
];
183 u16 bapmti_rc
[SMU7_DTE_ITERATIONS
* SMU7_DTE_SOURCES
* SMU7_DTE_SINKS
];
186 #define DPMTABLE_OD_UPDATE_SCLK 0x00000001
187 #define DPMTABLE_OD_UPDATE_MCLK 0x00000002
188 #define DPMTABLE_UPDATE_SCLK 0x00000004
189 #define DPMTABLE_UPDATE_MCLK 0x00000008
191 struct ci_power_info
{
192 struct ci_dpm_table dpm_table
;
196 u32 active_auto_throttle_sources
;
197 struct ci_clock_registers clock_registers
;
200 enum radeon_pcie_gen force_pcie_gen
;
201 enum radeon_pcie_gen acpi_pcie_gen
;
202 struct ci_leakage_voltage vddc_leakage
;
203 struct ci_leakage_voltage vddci_leakage
;
204 u16 max_vddc_in_pp_table
;
205 u16 min_vddc_in_pp_table
;
206 u16 max_vddci_in_pp_table
;
207 u16 min_vddci_in_pp_table
;
208 u32 mclk_strobe_mode_threshold
;
209 u32 mclk_stutter_mode_threshold
;
210 u32 mclk_edc_enable_threshold
;
211 u32 mclk_edc_wr_enable_threshold
;
212 struct ci_vbios_boot_state vbios_boot_state
;
217 u32 mc_reg_table_start
;
221 SMU7_Discrete_DpmTable smc_state_table
;
222 SMU7_Discrete_MCRegisters smc_mc_reg_table
;
223 SMU7_Discrete_PmFuses smc_powertune_table
;
225 struct ci_mc_reg_table mc_reg_table
;
226 struct atom_voltage_table vddc_voltage_table
;
227 struct atom_voltage_table vddci_voltage_table
;
228 struct atom_voltage_table mvdd_voltage_table
;
229 struct ci_ulv_parm ulv
;
230 u32 power_containment_features
;
231 const struct ci_pt_defaults
*powertune_defaults
;
233 bool vddc_phase_shed_control
;
234 struct ci_thermal_temperature_setting thermal_temp_setting
;
235 struct ci_dpm_level_enable_mask dpm_level_enable_mask
;
236 u32 need_update_smu7_dpm_table
;
237 u32 sclk_dpm_key_disabled
;
238 u32 mclk_dpm_key_disabled
;
239 u32 pcie_dpm_key_disabled
;
240 struct ci_pcie_perf_range pcie_gen_performance
;
241 struct ci_pcie_perf_range pcie_lane_performance
;
242 struct ci_pcie_perf_range pcie_gen_powersaving
;
243 struct ci_pcie_perf_range pcie_lane_powersaving
;
244 u32 activity_target
[SMU7_MAX_LEVELS_GRAPHICS
];
245 u32 mclk_activity_target
;
246 u32 low_sclk_interrupt_t
;
247 u32 last_mclk_dpm_enable_mask
;
250 bool caps_power_containment
;
252 bool caps_sq_ramping
;
253 bool caps_db_ramping
;
254 bool caps_td_ramping
;
255 bool caps_tcp_ramping
;
258 bool caps_sclk_ss_support
;
259 bool caps_mclk_ss_support
;
264 bool caps_automatic_dc_transition
;
265 bool caps_sclk_throttle_low_notification
;
266 bool caps_dynamic_ac_timing
;
268 bool thermal_protection
;
269 bool pcie_performance_request
;
275 bool pspp_notify_required
;
277 bool enable_bapm_feature
;
278 bool enable_tdc_limit_feature
;
279 bool enable_pkg_pwr_tracking_feature
;
280 bool use_pcie_performance_levels
;
281 bool use_pcie_powersaving_levels
;
282 bool uvd_power_gated
;
284 struct radeon_ps current_rps
;
285 struct ci_ps current_ps
;
286 struct radeon_ps requested_rps
;
287 struct ci_ps requested_ps
;
290 #define CISLANDS_VOLTAGE_CONTROL_NONE 0x0
291 #define CISLANDS_VOLTAGE_CONTROL_BY_GPIO 0x1
292 #define CISLANDS_VOLTAGE_CONTROL_BY_SVID2 0x2
294 #define CISLANDS_Q88_FORMAT_CONVERSION_UNIT 256
296 #define CISLANDS_VRC_DFLT0 0x3FFFC000
297 #define CISLANDS_VRC_DFLT1 0x000400
298 #define CISLANDS_VRC_DFLT2 0xC00080
299 #define CISLANDS_VRC_DFLT3 0xC00200
300 #define CISLANDS_VRC_DFLT4 0xC01680
301 #define CISLANDS_VRC_DFLT5 0xC00033
302 #define CISLANDS_VRC_DFLT6 0xC00033
303 #define CISLANDS_VRC_DFLT7 0x3FFFC000
305 #define CISLANDS_CGULVPARAMETER_DFLT 0x00040035
306 #define CISLAND_TARGETACTIVITY_DFLT 30
307 #define CISLAND_MCLK_TARGETACTIVITY_DFLT 10
309 #define PCIE_PERF_REQ_REMOVE_REGISTRY 0
310 #define PCIE_PERF_REQ_FORCE_LOWPOWER 1
311 #define PCIE_PERF_REQ_PECI_GEN1 2
312 #define PCIE_PERF_REQ_PECI_GEN2 3
313 #define PCIE_PERF_REQ_PECI_GEN3 4
315 int ci_copy_bytes_to_smc(struct radeon_device
*rdev
,
316 u32 smc_start_address
,
317 const u8
*src
, u32 byte_count
, u32 limit
);
318 void ci_start_smc(struct radeon_device
*rdev
);
319 void ci_reset_smc(struct radeon_device
*rdev
);
320 int ci_program_jump_on_start(struct radeon_device
*rdev
);
321 void ci_stop_smc_clock(struct radeon_device
*rdev
);
322 void ci_start_smc_clock(struct radeon_device
*rdev
);
323 bool ci_is_smc_running(struct radeon_device
*rdev
);
324 PPSMC_Result
ci_send_msg_to_smc(struct radeon_device
*rdev
, PPSMC_Msg msg
);
325 PPSMC_Result
ci_wait_for_smc_inactive(struct radeon_device
*rdev
);
326 int ci_load_smc_ucode(struct radeon_device
*rdev
, u32 limit
);
327 int ci_read_smc_sram_dword(struct radeon_device
*rdev
,
328 u32 smc_address
, u32
*value
, u32 limit
);
329 int ci_write_smc_sram_dword(struct radeon_device
*rdev
,
330 u32 smc_address
, u32 value
, u32 limit
);