2 * Copyright 2015 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
10 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
11 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
12 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
13 * OTHER DEALINGS IN THE SOFTWARE.
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
24 #include "iceland_smc.h"
25 #include "smu7_dyn_defaults.h"
27 #include "smu7_hwmgr.h"
28 #include "hardwaremanager.h"
29 #include "ppatomctrl.h"
31 #include "cgs_common.h"
33 #include "pppcielanes.h"
34 #include "pp_endian.h"
35 #include "smu7_ppsmc.h"
37 #include "smu71_discrete.h"
39 #include "smu/smu_7_1_1_d.h"
40 #include "smu/smu_7_1_1_sh_mask.h"
42 #include "gmc/gmc_8_1_d.h"
43 #include "gmc/gmc_8_1_sh_mask.h"
45 #include "bif/bif_5_0_d.h"
46 #include "bif/bif_5_0_sh_mask.h"
48 #include "dce/dce_10_0_d.h"
49 #include "dce/dce_10_0_sh_mask.h"
50 #include "processpptables.h"
52 #include "iceland_smumgr.h"
54 #define VOLTAGE_SCALE 4
55 #define POWERTUNE_DEFAULT_SET_MAX 1
56 #define VOLTAGE_VID_OFFSET_SCALE1 625
57 #define VOLTAGE_VID_OFFSET_SCALE2 100
58 #define MC_CG_ARB_FREQ_F1 0x0b
59 #define VDDC_VDDCI_DELTA 200
61 #define DEVICE_ID_VI_ICELAND_M_6900 0x6900
62 #define DEVICE_ID_VI_ICELAND_M_6901 0x6901
63 #define DEVICE_ID_VI_ICELAND_M_6902 0x6902
64 #define DEVICE_ID_VI_ICELAND_M_6903 0x6903
66 static const struct iceland_pt_defaults defaults_iceland
= {
68 * sviLoadLIneEn, SviLoadLineVddC, TDC_VDDC_ThrottleReleaseLimitPerc,
69 * TDC_MAWt, TdcWaterfallCtl, DTEAmbientTempBase, DisplayCac, BAPM_TEMP_GRADIENT
71 1, 0xF, 0xFD, 0x19, 5, 45, 0, 0xB0000,
72 { 0x79, 0x253, 0x25D, 0xAE, 0x72, 0x80, 0x83, 0x86, 0x6F, 0xC8, 0xC9, 0xC9, 0x2F, 0x4D, 0x61 },
73 { 0x17C, 0x172, 0x180, 0x1BC, 0x1B3, 0x1BD, 0x206, 0x200, 0x203, 0x25D, 0x25A, 0x255, 0x2C3, 0x2C5, 0x2B4 }
77 static const struct iceland_pt_defaults defaults_icelandxt
= {
79 * sviLoadLIneEn, SviLoadLineVddC,
80 * TDC_VDDC_ThrottleReleaseLimitPerc, TDC_MAWt,
81 * TdcWaterfallCtl, DTEAmbientTempBase, DisplayCac,
84 1, 0xF, 0xFD, 0x19, 5, 45, 0, 0x0,
85 { 0xA7, 0x0, 0x0, 0xB5, 0x0, 0x0, 0x9F, 0x0, 0x0, 0xD6, 0x0, 0x0, 0xD7, 0x0, 0x0},
86 { 0x1EA, 0x0, 0x0, 0x224, 0x0, 0x0, 0x25E, 0x0, 0x0, 0x28E, 0x0, 0x0, 0x2AB, 0x0, 0x0}
90 static const struct iceland_pt_defaults defaults_icelandpro
= {
92 * sviLoadLIneEn, SviLoadLineVddC,
93 * TDC_VDDC_ThrottleReleaseLimitPerc, TDC_MAWt,
94 * TdcWaterfallCtl, DTEAmbientTempBase, DisplayCac,
97 1, 0xF, 0xFD, 0x19, 5, 45, 0, 0x0,
98 { 0xB7, 0x0, 0x0, 0xC3, 0x0, 0x0, 0xB5, 0x0, 0x0, 0xEA, 0x0, 0x0, 0xE6, 0x0, 0x0},
99 { 0x1EA, 0x0, 0x0, 0x224, 0x0, 0x0, 0x25E, 0x0, 0x0, 0x28E, 0x0, 0x0, 0x2AB, 0x0, 0x0}
102 static void iceland_initialize_power_tune_defaults(struct pp_hwmgr
*hwmgr
)
104 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
105 struct cgs_system_info sys_info
= {0};
108 sys_info
.size
= sizeof(struct cgs_system_info
);
109 sys_info
.info_id
= CGS_SYSTEM_INFO_PCIE_DEV
;
110 cgs_query_system_info(hwmgr
->device
, &sys_info
);
111 dev_id
= (uint32_t)sys_info
.value
;
114 case DEVICE_ID_VI_ICELAND_M_6900
:
115 case DEVICE_ID_VI_ICELAND_M_6903
:
116 smu_data
->power_tune_defaults
= &defaults_icelandxt
;
119 case DEVICE_ID_VI_ICELAND_M_6901
:
120 case DEVICE_ID_VI_ICELAND_M_6902
:
121 smu_data
->power_tune_defaults
= &defaults_icelandpro
;
124 smu_data
->power_tune_defaults
= &defaults_iceland
;
125 pr_warning("Unknown V.I. Device ID.\n");
131 static int iceland_populate_svi_load_line(struct pp_hwmgr
*hwmgr
)
133 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
134 const struct iceland_pt_defaults
*defaults
= smu_data
->power_tune_defaults
;
136 smu_data
->power_tune_table
.SviLoadLineEn
= defaults
->svi_load_line_en
;
137 smu_data
->power_tune_table
.SviLoadLineVddC
= defaults
->svi_load_line_vddc
;
138 smu_data
->power_tune_table
.SviLoadLineTrimVddC
= 3;
139 smu_data
->power_tune_table
.SviLoadLineOffsetVddC
= 0;
144 static int iceland_populate_tdc_limit(struct pp_hwmgr
*hwmgr
)
147 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
148 const struct iceland_pt_defaults
*defaults
= smu_data
->power_tune_defaults
;
150 tdc_limit
= (uint16_t)(hwmgr
->dyn_state
.cac_dtp_table
->usTDC
* 256);
151 smu_data
->power_tune_table
.TDC_VDDC_PkgLimit
=
152 CONVERT_FROM_HOST_TO_SMC_US(tdc_limit
);
153 smu_data
->power_tune_table
.TDC_VDDC_ThrottleReleaseLimitPerc
=
154 defaults
->tdc_vddc_throttle_release_limit_perc
;
155 smu_data
->power_tune_table
.TDC_MAWt
= defaults
->tdc_mawt
;
160 static int iceland_populate_dw8(struct pp_hwmgr
*hwmgr
, uint32_t fuse_table_offset
)
162 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
163 const struct iceland_pt_defaults
*defaults
= smu_data
->power_tune_defaults
;
166 if (smu7_read_smc_sram_dword(hwmgr
->smumgr
,
168 offsetof(SMU71_Discrete_PmFuses
, TdcWaterfallCtl
),
169 (uint32_t *)&temp
, SMC_RAM_END
))
170 PP_ASSERT_WITH_CODE(false,
171 "Attempt to read PmFuses.DW6 (SviLoadLineEn) from SMC Failed!",
174 smu_data
->power_tune_table
.TdcWaterfallCtl
= defaults
->tdc_waterfall_ctl
;
179 static int iceland_populate_temperature_scaler(struct pp_hwmgr
*hwmgr
)
184 static int iceland_populate_gnb_lpml(struct pp_hwmgr
*hwmgr
)
187 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
189 /* Currently not used. Set all to zero. */
190 for (i
= 0; i
< 8; i
++)
191 smu_data
->power_tune_table
.GnbLPML
[i
] = 0;
196 static int iceland_min_max_vgnb_lpml_id_from_bapm_vddc(struct pp_hwmgr
*hwmgr
)
201 static int iceland_populate_bapm_vddc_base_leakage_sidd(struct pp_hwmgr
*hwmgr
)
203 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
204 uint16_t HiSidd
= smu_data
->power_tune_table
.BapmVddCBaseLeakageHiSidd
;
205 uint16_t LoSidd
= smu_data
->power_tune_table
.BapmVddCBaseLeakageLoSidd
;
206 struct phm_cac_tdp_table
*cac_table
= hwmgr
->dyn_state
.cac_dtp_table
;
208 HiSidd
= (uint16_t)(cac_table
->usHighCACLeakage
/ 100 * 256);
209 LoSidd
= (uint16_t)(cac_table
->usLowCACLeakage
/ 100 * 256);
211 smu_data
->power_tune_table
.BapmVddCBaseLeakageHiSidd
=
212 CONVERT_FROM_HOST_TO_SMC_US(HiSidd
);
213 smu_data
->power_tune_table
.BapmVddCBaseLeakageLoSidd
=
214 CONVERT_FROM_HOST_TO_SMC_US(LoSidd
);
219 static int iceland_populate_bapm_vddc_vid_sidd(struct pp_hwmgr
*hwmgr
)
222 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
223 uint8_t *hi_vid
= smu_data
->power_tune_table
.BapmVddCVidHiSidd
;
224 uint8_t *lo_vid
= smu_data
->power_tune_table
.BapmVddCVidLoSidd
;
226 PP_ASSERT_WITH_CODE(NULL
!= hwmgr
->dyn_state
.cac_leakage_table
,
227 "The CAC Leakage table does not exist!", return -EINVAL
);
228 PP_ASSERT_WITH_CODE(hwmgr
->dyn_state
.cac_leakage_table
->count
<= 8,
229 "There should never be more than 8 entries for BapmVddcVid!!!", return -EINVAL
);
230 PP_ASSERT_WITH_CODE(hwmgr
->dyn_state
.cac_leakage_table
->count
== hwmgr
->dyn_state
.vddc_dependency_on_sclk
->count
,
231 "CACLeakageTable->count and VddcDependencyOnSCLk->count not equal", return -EINVAL
);
233 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
, PHM_PlatformCaps_EVV
)) {
234 for (i
= 0; (uint32_t) i
< hwmgr
->dyn_state
.cac_leakage_table
->count
; i
++) {
235 lo_vid
[i
] = convert_to_vid(hwmgr
->dyn_state
.cac_leakage_table
->entries
[i
].Vddc1
);
236 hi_vid
[i
] = convert_to_vid(hwmgr
->dyn_state
.cac_leakage_table
->entries
[i
].Vddc2
);
239 PP_ASSERT_WITH_CODE(false, "Iceland should always support EVV", return -EINVAL
);
245 static int iceland_populate_vddc_vid(struct pp_hwmgr
*hwmgr
)
248 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
249 uint8_t *vid
= smu_data
->power_tune_table
.VddCVid
;
250 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
252 PP_ASSERT_WITH_CODE(data
->vddc_voltage_table
.count
<= 8,
253 "There should never be more than 8 entries for VddcVid!!!",
256 for (i
= 0; i
< (int)data
->vddc_voltage_table
.count
; i
++) {
257 vid
[i
] = convert_to_vid(data
->vddc_voltage_table
.entries
[i
].value
);
265 static int iceland_populate_pm_fuses(struct pp_hwmgr
*hwmgr
)
267 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
268 uint32_t pm_fuse_table_offset
;
270 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
271 PHM_PlatformCaps_PowerContainment
)) {
272 if (smu7_read_smc_sram_dword(hwmgr
->smumgr
,
273 SMU71_FIRMWARE_HEADER_LOCATION
+
274 offsetof(SMU71_Firmware_Header
, PmFuseTable
),
275 &pm_fuse_table_offset
, SMC_RAM_END
))
276 PP_ASSERT_WITH_CODE(false,
277 "Attempt to get pm_fuse_table_offset Failed!",
281 if (iceland_populate_bapm_vddc_vid_sidd(hwmgr
))
282 PP_ASSERT_WITH_CODE(false,
283 "Attempt to populate bapm vddc vid Failed!",
287 if (iceland_populate_vddc_vid(hwmgr
))
288 PP_ASSERT_WITH_CODE(false,
289 "Attempt to populate vddc vid Failed!",
293 if (iceland_populate_svi_load_line(hwmgr
))
294 PP_ASSERT_WITH_CODE(false,
295 "Attempt to populate SviLoadLine Failed!",
298 if (iceland_populate_tdc_limit(hwmgr
))
299 PP_ASSERT_WITH_CODE(false,
300 "Attempt to populate TDCLimit Failed!", return -EINVAL
);
302 if (iceland_populate_dw8(hwmgr
, pm_fuse_table_offset
))
303 PP_ASSERT_WITH_CODE(false,
304 "Attempt to populate TdcWaterfallCtl, "
305 "LPMLTemperature Min and Max Failed!",
309 if (0 != iceland_populate_temperature_scaler(hwmgr
))
310 PP_ASSERT_WITH_CODE(false,
311 "Attempt to populate LPMLTemperatureScaler Failed!",
315 if (iceland_populate_gnb_lpml(hwmgr
))
316 PP_ASSERT_WITH_CODE(false,
317 "Attempt to populate GnbLPML Failed!",
321 if (iceland_min_max_vgnb_lpml_id_from_bapm_vddc(hwmgr
))
322 PP_ASSERT_WITH_CODE(false,
323 "Attempt to populate GnbLPML Min and Max Vid Failed!",
327 if (iceland_populate_bapm_vddc_base_leakage_sidd(hwmgr
))
328 PP_ASSERT_WITH_CODE(false,
329 "Attempt to populate BapmVddCBaseLeakage Hi and Lo Sidd Failed!",
332 if (smu7_copy_bytes_to_smc(hwmgr
->smumgr
, pm_fuse_table_offset
,
333 (uint8_t *)&smu_data
->power_tune_table
,
334 sizeof(struct SMU71_Discrete_PmFuses
), SMC_RAM_END
))
335 PP_ASSERT_WITH_CODE(false,
336 "Attempt to download PmFuseTable Failed!",
342 static int iceland_get_dependecy_volt_by_clk(struct pp_hwmgr
*hwmgr
,
343 struct phm_clock_voltage_dependency_table
*allowed_clock_voltage_table
,
344 uint32_t clock
, uint32_t *vol
)
348 /* clock - voltage dependency table is empty table */
349 if (allowed_clock_voltage_table
->count
== 0)
352 for (i
= 0; i
< allowed_clock_voltage_table
->count
; i
++) {
353 /* find first sclk bigger than request */
354 if (allowed_clock_voltage_table
->entries
[i
].clk
>= clock
) {
355 *vol
= allowed_clock_voltage_table
->entries
[i
].v
;
360 /* sclk is bigger than max sclk in the dependence table */
361 *vol
= allowed_clock_voltage_table
->entries
[i
- 1].v
;
366 static int iceland_get_std_voltage_value_sidd(struct pp_hwmgr
*hwmgr
,
367 pp_atomctrl_voltage_table_entry
*tab
, uint16_t *hi
,
371 bool vol_found
= false;
372 *hi
= tab
->value
* VOLTAGE_SCALE
;
373 *lo
= tab
->value
* VOLTAGE_SCALE
;
375 /* SCLK/VDDC Dependency Table has to exist. */
376 PP_ASSERT_WITH_CODE(NULL
!= hwmgr
->dyn_state
.vddc_dependency_on_sclk
,
377 "The SCLK/VDDC Dependency Table does not exist.\n",
380 if (NULL
== hwmgr
->dyn_state
.cac_leakage_table
) {
381 pr_warning("CAC Leakage Table does not exist, using vddc.\n");
386 * Since voltage in the sclk/vddc dependency table is not
387 * necessarily in ascending order because of ELB voltage
388 * patching, loop through entire list to find exact voltage.
390 for (v_index
= 0; (uint32_t)v_index
< hwmgr
->dyn_state
.vddc_dependency_on_sclk
->count
; v_index
++) {
391 if (tab
->value
== hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[v_index
].v
) {
393 if ((uint32_t)v_index
< hwmgr
->dyn_state
.cac_leakage_table
->count
) {
394 *lo
= hwmgr
->dyn_state
.cac_leakage_table
->entries
[v_index
].Vddc
* VOLTAGE_SCALE
;
395 *hi
= (uint16_t)(hwmgr
->dyn_state
.cac_leakage_table
->entries
[v_index
].Leakage
* VOLTAGE_SCALE
);
397 pr_warning("Index from SCLK/VDDC Dependency Table exceeds the CAC Leakage Table index, using maximum index from CAC table.\n");
398 *lo
= hwmgr
->dyn_state
.cac_leakage_table
->entries
[hwmgr
->dyn_state
.cac_leakage_table
->count
- 1].Vddc
* VOLTAGE_SCALE
;
399 *hi
= (uint16_t)(hwmgr
->dyn_state
.cac_leakage_table
->entries
[hwmgr
->dyn_state
.cac_leakage_table
->count
- 1].Leakage
* VOLTAGE_SCALE
);
406 * If voltage is not found in the first pass, loop again to
407 * find the best match, equal or higher value.
410 for (v_index
= 0; (uint32_t)v_index
< hwmgr
->dyn_state
.vddc_dependency_on_sclk
->count
; v_index
++) {
411 if (tab
->value
<= hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[v_index
].v
) {
413 if ((uint32_t)v_index
< hwmgr
->dyn_state
.cac_leakage_table
->count
) {
414 *lo
= hwmgr
->dyn_state
.cac_leakage_table
->entries
[v_index
].Vddc
* VOLTAGE_SCALE
;
415 *hi
= (uint16_t)(hwmgr
->dyn_state
.cac_leakage_table
->entries
[v_index
].Leakage
) * VOLTAGE_SCALE
;
417 pr_warning("Index from SCLK/VDDC Dependency Table exceeds the CAC Leakage Table index in second look up, using maximum index from CAC table.");
418 *lo
= hwmgr
->dyn_state
.cac_leakage_table
->entries
[hwmgr
->dyn_state
.cac_leakage_table
->count
- 1].Vddc
* VOLTAGE_SCALE
;
419 *hi
= (uint16_t)(hwmgr
->dyn_state
.cac_leakage_table
->entries
[hwmgr
->dyn_state
.cac_leakage_table
->count
- 1].Leakage
* VOLTAGE_SCALE
);
426 pr_warning("Unable to get std_vddc from SCLK/VDDC Dependency Table, using vddc.\n");
432 static int iceland_populate_smc_voltage_table(struct pp_hwmgr
*hwmgr
,
433 pp_atomctrl_voltage_table_entry
*tab
,
434 SMU71_Discrete_VoltageLevel
*smc_voltage_tab
)
438 result
= iceland_get_std_voltage_value_sidd(hwmgr
, tab
,
439 &smc_voltage_tab
->StdVoltageHiSidd
,
440 &smc_voltage_tab
->StdVoltageLoSidd
);
442 smc_voltage_tab
->StdVoltageHiSidd
= tab
->value
* VOLTAGE_SCALE
;
443 smc_voltage_tab
->StdVoltageLoSidd
= tab
->value
* VOLTAGE_SCALE
;
446 smc_voltage_tab
->Voltage
= PP_HOST_TO_SMC_US(tab
->value
* VOLTAGE_SCALE
);
447 CONVERT_FROM_HOST_TO_SMC_US(smc_voltage_tab
->StdVoltageHiSidd
);
448 CONVERT_FROM_HOST_TO_SMC_US(smc_voltage_tab
->StdVoltageHiSidd
);
453 static int iceland_populate_smc_vddc_table(struct pp_hwmgr
*hwmgr
,
454 SMU71_Discrete_DpmTable
*table
)
458 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
460 table
->VddcLevelCount
= data
->vddc_voltage_table
.count
;
461 for (count
= 0; count
< table
->VddcLevelCount
; count
++) {
462 result
= iceland_populate_smc_voltage_table(hwmgr
,
463 &(data
->vddc_voltage_table
.entries
[count
]),
464 &(table
->VddcLevel
[count
]));
465 PP_ASSERT_WITH_CODE(0 == result
, "do not populate SMC VDDC voltage table", return -EINVAL
);
467 /* GPIO voltage control */
468 if (SMU7_VOLTAGE_CONTROL_BY_GPIO
== data
->voltage_control
)
469 table
->VddcLevel
[count
].Smio
|= data
->vddc_voltage_table
.entries
[count
].smio_low
;
470 else if (SMU7_VOLTAGE_CONTROL_BY_SVID2
== data
->voltage_control
)
471 table
->VddcLevel
[count
].Smio
= 0;
474 CONVERT_FROM_HOST_TO_SMC_UL(table
->VddcLevelCount
);
479 static int iceland_populate_smc_vdd_ci_table(struct pp_hwmgr
*hwmgr
,
480 SMU71_Discrete_DpmTable
*table
)
482 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
486 table
->VddciLevelCount
= data
->vddci_voltage_table
.count
;
488 for (count
= 0; count
< table
->VddciLevelCount
; count
++) {
489 result
= iceland_populate_smc_voltage_table(hwmgr
,
490 &(data
->vddci_voltage_table
.entries
[count
]),
491 &(table
->VddciLevel
[count
]));
492 PP_ASSERT_WITH_CODE(result
== 0, "do not populate SMC VDDCI voltage table", return -EINVAL
);
493 if (SMU7_VOLTAGE_CONTROL_BY_GPIO
== data
->vddci_control
)
494 table
->VddciLevel
[count
].Smio
|= data
->vddci_voltage_table
.entries
[count
].smio_low
;
496 table
->VddciLevel
[count
].Smio
|= 0;
499 CONVERT_FROM_HOST_TO_SMC_UL(table
->VddciLevelCount
);
504 static int iceland_populate_smc_mvdd_table(struct pp_hwmgr
*hwmgr
,
505 SMU71_Discrete_DpmTable
*table
)
507 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
511 table
->MvddLevelCount
= data
->mvdd_voltage_table
.count
;
513 for (count
= 0; count
< table
->VddciLevelCount
; count
++) {
514 result
= iceland_populate_smc_voltage_table(hwmgr
,
515 &(data
->mvdd_voltage_table
.entries
[count
]),
516 &table
->MvddLevel
[count
]);
517 PP_ASSERT_WITH_CODE(result
== 0, "do not populate SMC mvdd voltage table", return -EINVAL
);
518 if (SMU7_VOLTAGE_CONTROL_BY_GPIO
== data
->mvdd_control
)
519 table
->MvddLevel
[count
].Smio
|= data
->mvdd_voltage_table
.entries
[count
].smio_low
;
521 table
->MvddLevel
[count
].Smio
|= 0;
524 CONVERT_FROM_HOST_TO_SMC_UL(table
->MvddLevelCount
);
530 static int iceland_populate_smc_voltage_tables(struct pp_hwmgr
*hwmgr
,
531 SMU71_Discrete_DpmTable
*table
)
535 result
= iceland_populate_smc_vddc_table(hwmgr
, table
);
536 PP_ASSERT_WITH_CODE(0 == result
,
537 "can not populate VDDC voltage table to SMC", return -EINVAL
);
539 result
= iceland_populate_smc_vdd_ci_table(hwmgr
, table
);
540 PP_ASSERT_WITH_CODE(0 == result
,
541 "can not populate VDDCI voltage table to SMC", return -EINVAL
);
543 result
= iceland_populate_smc_mvdd_table(hwmgr
, table
);
544 PP_ASSERT_WITH_CODE(0 == result
,
545 "can not populate MVDD voltage table to SMC", return -EINVAL
);
550 static int iceland_populate_ulv_level(struct pp_hwmgr
*hwmgr
,
551 struct SMU71_Discrete_Ulv
*state
)
553 uint32_t voltage_response_time
, ulv_voltage
;
555 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
557 state
->CcPwrDynRm
= 0;
558 state
->CcPwrDynRm1
= 0;
560 result
= pp_tables_get_response_times(hwmgr
, &voltage_response_time
, &ulv_voltage
);
561 PP_ASSERT_WITH_CODE((0 == result
), "can not get ULV voltage value", return result
;);
563 if (ulv_voltage
== 0) {
564 data
->ulv_supported
= false;
568 if (data
->voltage_control
!= SMU7_VOLTAGE_CONTROL_BY_SVID2
) {
569 /* use minimum voltage if ulv voltage in pptable is bigger than minimum voltage */
570 if (ulv_voltage
> hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[0].v
)
571 state
->VddcOffset
= 0;
573 /* used in SMIO Mode. not implemented for now. this is backup only for CI. */
574 state
->VddcOffset
= (uint16_t)(hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[0].v
- ulv_voltage
);
576 /* use minimum voltage if ulv voltage in pptable is bigger than minimum voltage */
577 if (ulv_voltage
> hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[0].v
)
578 state
->VddcOffsetVid
= 0;
579 else /* used in SVI2 Mode */
580 state
->VddcOffsetVid
= (uint8_t)(
581 (hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[0].v
- ulv_voltage
)
582 * VOLTAGE_VID_OFFSET_SCALE2
583 / VOLTAGE_VID_OFFSET_SCALE1
);
585 state
->VddcPhase
= 1;
587 CONVERT_FROM_HOST_TO_SMC_UL(state
->CcPwrDynRm
);
588 CONVERT_FROM_HOST_TO_SMC_UL(state
->CcPwrDynRm1
);
589 CONVERT_FROM_HOST_TO_SMC_US(state
->VddcOffset
);
594 static int iceland_populate_ulv_state(struct pp_hwmgr
*hwmgr
,
595 SMU71_Discrete_Ulv
*ulv_level
)
597 return iceland_populate_ulv_level(hwmgr
, ulv_level
);
600 static int iceland_populate_smc_link_level(struct pp_hwmgr
*hwmgr
, SMU71_Discrete_DpmTable
*table
)
602 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
603 struct smu7_dpm_table
*dpm_table
= &data
->dpm_table
;
604 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
607 /* Index (dpm_table->pcie_speed_table.count) is reserved for PCIE boot level. */
608 for (i
= 0; i
<= dpm_table
->pcie_speed_table
.count
; i
++) {
609 table
->LinkLevel
[i
].PcieGenSpeed
=
610 (uint8_t)dpm_table
->pcie_speed_table
.dpm_levels
[i
].value
;
611 table
->LinkLevel
[i
].PcieLaneCount
=
612 (uint8_t)encode_pcie_lane_width(dpm_table
->pcie_speed_table
.dpm_levels
[i
].param1
);
613 table
->LinkLevel
[i
].EnabledForActivity
=
615 table
->LinkLevel
[i
].SPC
=
616 (uint8_t)(data
->pcie_spc_cap
& 0xff);
617 table
->LinkLevel
[i
].DownThreshold
=
618 PP_HOST_TO_SMC_UL(5);
619 table
->LinkLevel
[i
].UpThreshold
=
620 PP_HOST_TO_SMC_UL(30);
623 smu_data
->smc_state_table
.LinkLevelCount
=
624 (uint8_t)dpm_table
->pcie_speed_table
.count
;
625 data
->dpm_level_enable_mask
.pcie_dpm_enable_mask
=
626 phm_get_dpm_level_enable_mask_value(&dpm_table
->pcie_speed_table
);
632 * Calculates the SCLK dividers using the provided engine clock
634 * @param hwmgr the address of the hardware manager
635 * @param engine_clock the engine clock to use to populate the structure
636 * @param sclk the SMC SCLK structure to be populated
638 static int iceland_calculate_sclk_params(struct pp_hwmgr
*hwmgr
,
639 uint32_t engine_clock
, SMU71_Discrete_GraphicsLevel
*sclk
)
641 const struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
642 pp_atomctrl_clock_dividers_vi dividers
;
643 uint32_t spll_func_cntl
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL
;
644 uint32_t spll_func_cntl_3
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL_3
;
645 uint32_t spll_func_cntl_4
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL_4
;
646 uint32_t cg_spll_spread_spectrum
= data
->clock_registers
.vCG_SPLL_SPREAD_SPECTRUM
;
647 uint32_t cg_spll_spread_spectrum_2
= data
->clock_registers
.vCG_SPLL_SPREAD_SPECTRUM_2
;
648 uint32_t reference_clock
;
649 uint32_t reference_divider
;
653 /* get the engine clock dividers for this clock value*/
654 result
= atomctrl_get_engine_pll_dividers_vi(hwmgr
, engine_clock
, ÷rs
);
656 PP_ASSERT_WITH_CODE(result
== 0,
657 "Error retrieving Engine Clock dividers from VBIOS.", return result
);
659 /* To get FBDIV we need to multiply this by 16384 and divide it by Fref.*/
660 reference_clock
= atomctrl_get_reference_clock(hwmgr
);
662 reference_divider
= 1 + dividers
.uc_pll_ref_div
;
664 /* low 14 bits is fraction and high 12 bits is divider*/
665 fbdiv
= dividers
.ul_fb_div
.ul_fb_divider
& 0x3FFFFFF;
667 /* SPLL_FUNC_CNTL setup*/
668 spll_func_cntl
= PHM_SET_FIELD(spll_func_cntl
,
669 CG_SPLL_FUNC_CNTL
, SPLL_REF_DIV
, dividers
.uc_pll_ref_div
);
670 spll_func_cntl
= PHM_SET_FIELD(spll_func_cntl
,
671 CG_SPLL_FUNC_CNTL
, SPLL_PDIV_A
, dividers
.uc_pll_post_div
);
673 /* SPLL_FUNC_CNTL_3 setup*/
674 spll_func_cntl_3
= PHM_SET_FIELD(spll_func_cntl_3
,
675 CG_SPLL_FUNC_CNTL_3
, SPLL_FB_DIV
, fbdiv
);
677 /* set to use fractional accumulation*/
678 spll_func_cntl_3
= PHM_SET_FIELD(spll_func_cntl_3
,
679 CG_SPLL_FUNC_CNTL_3
, SPLL_DITHEN
, 1);
681 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
682 PHM_PlatformCaps_EngineSpreadSpectrumSupport
)) {
683 pp_atomctrl_internal_ss_info ss_info
;
685 uint32_t vcoFreq
= engine_clock
* dividers
.uc_pll_post_div
;
686 if (0 == atomctrl_get_engine_clock_spread_spectrum(hwmgr
, vcoFreq
, &ss_info
)) {
688 * ss_info.speed_spectrum_percentage -- in unit of 0.01%
689 * ss_info.speed_spectrum_rate -- in unit of khz
691 /* clks = reference_clock * 10 / (REFDIV + 1) / speed_spectrum_rate / 2 */
692 uint32_t clkS
= reference_clock
* 5 / (reference_divider
* ss_info
.speed_spectrum_rate
);
694 /* clkv = 2 * D * fbdiv / NS */
695 uint32_t clkV
= 4 * ss_info
.speed_spectrum_percentage
* fbdiv
/ (clkS
* 10000);
697 cg_spll_spread_spectrum
=
698 PHM_SET_FIELD(cg_spll_spread_spectrum
, CG_SPLL_SPREAD_SPECTRUM
, CLKS
, clkS
);
699 cg_spll_spread_spectrum
=
700 PHM_SET_FIELD(cg_spll_spread_spectrum
, CG_SPLL_SPREAD_SPECTRUM
, SSEN
, 1);
701 cg_spll_spread_spectrum_2
=
702 PHM_SET_FIELD(cg_spll_spread_spectrum_2
, CG_SPLL_SPREAD_SPECTRUM_2
, CLKV
, clkV
);
706 sclk
->SclkFrequency
= engine_clock
;
707 sclk
->CgSpllFuncCntl3
= spll_func_cntl_3
;
708 sclk
->CgSpllFuncCntl4
= spll_func_cntl_4
;
709 sclk
->SpllSpreadSpectrum
= cg_spll_spread_spectrum
;
710 sclk
->SpllSpreadSpectrum2
= cg_spll_spread_spectrum_2
;
711 sclk
->SclkDid
= (uint8_t)dividers
.pll_post_divider
;
716 static int iceland_populate_phase_value_based_on_sclk(struct pp_hwmgr
*hwmgr
,
717 const struct phm_phase_shedding_limits_table
*pl
,
718 uint32_t sclk
, uint32_t *p_shed
)
722 /* use the minimum phase shedding */
725 for (i
= 0; i
< pl
->count
; i
++) {
726 if (sclk
< pl
->entries
[i
].Sclk
) {
735 * Populates single SMC SCLK structure using the provided engine clock
737 * @param hwmgr the address of the hardware manager
738 * @param engine_clock the engine clock to use to populate the structure
739 * @param sclk the SMC SCLK structure to be populated
741 static int iceland_populate_single_graphic_level(struct pp_hwmgr
*hwmgr
,
742 uint32_t engine_clock
,
743 uint16_t sclk_activity_level_threshold
,
744 SMU71_Discrete_GraphicsLevel
*graphic_level
)
747 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
749 result
= iceland_calculate_sclk_params(hwmgr
, engine_clock
, graphic_level
);
751 /* populate graphics levels*/
752 result
= iceland_get_dependecy_volt_by_clk(hwmgr
,
753 hwmgr
->dyn_state
.vddc_dependency_on_sclk
, engine_clock
,
754 &graphic_level
->MinVddc
);
755 PP_ASSERT_WITH_CODE((0 == result
),
756 "can not find VDDC voltage value for VDDC \
757 engine clock dependency table", return result
);
759 /* SCLK frequency in units of 10KHz*/
760 graphic_level
->SclkFrequency
= engine_clock
;
761 graphic_level
->MinVddcPhases
= 1;
763 if (data
->vddc_phase_shed_control
)
764 iceland_populate_phase_value_based_on_sclk(hwmgr
,
765 hwmgr
->dyn_state
.vddc_phase_shed_limits_table
,
767 &graphic_level
->MinVddcPhases
);
769 /* Indicates maximum activity level for this performance level. 50% for now*/
770 graphic_level
->ActivityLevel
= sclk_activity_level_threshold
;
772 graphic_level
->CcPwrDynRm
= 0;
773 graphic_level
->CcPwrDynRm1
= 0;
774 /* this level can be used if activity is high enough.*/
775 graphic_level
->EnabledForActivity
= 0;
776 /* this level can be used for throttling.*/
777 graphic_level
->EnabledForThrottle
= 1;
778 graphic_level
->UpHyst
= 0;
779 graphic_level
->DownHyst
= 100;
780 graphic_level
->VoltageDownHyst
= 0;
781 graphic_level
->PowerThrottle
= 0;
783 data
->display_timing
.min_clock_in_sr
=
784 hwmgr
->display_config
.min_core_set_clock_in_sr
;
786 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
787 PHM_PlatformCaps_SclkDeepSleep
))
788 graphic_level
->DeepSleepDivId
=
789 smu7_get_sleep_divider_id_from_clock(engine_clock
,
790 data
->display_timing
.min_clock_in_sr
);
792 /* Default to slow, highest DPM level will be set to PPSMC_DISPLAY_WATERMARK_LOW later.*/
793 graphic_level
->DisplayWatermark
= PPSMC_DISPLAY_WATERMARK_LOW
;
796 graphic_level
->MinVddc
= PP_HOST_TO_SMC_UL(graphic_level
->MinVddc
* VOLTAGE_SCALE
);
797 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->MinVddcPhases
);
798 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->SclkFrequency
);
799 CONVERT_FROM_HOST_TO_SMC_US(graphic_level
->ActivityLevel
);
800 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->CgSpllFuncCntl3
);
801 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->CgSpllFuncCntl4
);
802 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->SpllSpreadSpectrum
);
803 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->SpllSpreadSpectrum2
);
804 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->CcPwrDynRm
);
805 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level
->CcPwrDynRm1
);
812 * Populates all SMC SCLK levels' structure based on the trimmed allowed dpm engine clock states
814 * @param hwmgr the address of the hardware manager
816 int iceland_populate_all_graphic_levels(struct pp_hwmgr
*hwmgr
)
818 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
819 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
820 struct smu7_dpm_table
*dpm_table
= &data
->dpm_table
;
821 uint32_t level_array_adress
= smu_data
->smu7_data
.dpm_table_start
+
822 offsetof(SMU71_Discrete_DpmTable
, GraphicsLevel
);
824 uint32_t level_array_size
= sizeof(SMU71_Discrete_GraphicsLevel
) *
825 SMU71_MAX_LEVELS_GRAPHICS
;
827 SMU71_Discrete_GraphicsLevel
*levels
= smu_data
->smc_state_table
.GraphicsLevel
;
830 uint8_t highest_pcie_level_enabled
= 0;
831 uint8_t lowest_pcie_level_enabled
= 0, mid_pcie_level_enabled
= 0;
835 memset(levels
, 0x00, level_array_size
);
837 for (i
= 0; i
< dpm_table
->sclk_table
.count
; i
++) {
838 result
= iceland_populate_single_graphic_level(hwmgr
,
839 dpm_table
->sclk_table
.dpm_levels
[i
].value
,
840 (uint16_t)smu_data
->activity_target
[i
],
841 &(smu_data
->smc_state_table
.GraphicsLevel
[i
]));
845 /* Making sure only DPM level 0-1 have Deep Sleep Div ID populated. */
847 smu_data
->smc_state_table
.GraphicsLevel
[i
].DeepSleepDivId
= 0;
850 /* Only enable level 0 for now. */
851 smu_data
->smc_state_table
.GraphicsLevel
[0].EnabledForActivity
= 1;
853 /* set highest level watermark to high */
854 if (dpm_table
->sclk_table
.count
> 1)
855 smu_data
->smc_state_table
.GraphicsLevel
[dpm_table
->sclk_table
.count
-1].DisplayWatermark
=
856 PPSMC_DISPLAY_WATERMARK_HIGH
;
858 smu_data
->smc_state_table
.GraphicsDpmLevelCount
=
859 (uint8_t)dpm_table
->sclk_table
.count
;
860 data
->dpm_level_enable_mask
.sclk_dpm_enable_mask
=
861 phm_get_dpm_level_enable_mask_value(&dpm_table
->sclk_table
);
863 while ((data
->dpm_level_enable_mask
.pcie_dpm_enable_mask
&
864 (1 << (highest_pcie_level_enabled
+ 1))) != 0) {
865 highest_pcie_level_enabled
++;
868 while ((data
->dpm_level_enable_mask
.pcie_dpm_enable_mask
&
869 (1 << lowest_pcie_level_enabled
)) == 0) {
870 lowest_pcie_level_enabled
++;
873 while ((count
< highest_pcie_level_enabled
) &&
874 ((data
->dpm_level_enable_mask
.pcie_dpm_enable_mask
&
875 (1 << (lowest_pcie_level_enabled
+ 1 + count
))) == 0)) {
879 mid_pcie_level_enabled
= (lowest_pcie_level_enabled
+1+count
) < highest_pcie_level_enabled
?
880 (lowest_pcie_level_enabled
+1+count
) : highest_pcie_level_enabled
;
883 /* set pcieDpmLevel to highest_pcie_level_enabled*/
884 for (i
= 2; i
< dpm_table
->sclk_table
.count
; i
++) {
885 smu_data
->smc_state_table
.GraphicsLevel
[i
].pcieDpmLevel
= highest_pcie_level_enabled
;
888 /* set pcieDpmLevel to lowest_pcie_level_enabled*/
889 smu_data
->smc_state_table
.GraphicsLevel
[0].pcieDpmLevel
= lowest_pcie_level_enabled
;
891 /* set pcieDpmLevel to mid_pcie_level_enabled*/
892 smu_data
->smc_state_table
.GraphicsLevel
[1].pcieDpmLevel
= mid_pcie_level_enabled
;
894 /* level count will send to smc once at init smc table and never change*/
895 result
= smu7_copy_bytes_to_smc(hwmgr
->smumgr
, level_array_adress
,
896 (uint8_t *)levels
, (uint32_t)level_array_size
,
903 * Populates the SMC MCLK structure using the provided memory clock
905 * @param hwmgr the address of the hardware manager
906 * @param memory_clock the memory clock to use to populate the structure
907 * @param sclk the SMC SCLK structure to be populated
909 static int iceland_calculate_mclk_params(
910 struct pp_hwmgr
*hwmgr
,
911 uint32_t memory_clock
,
912 SMU71_Discrete_MemoryLevel
*mclk
,
917 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
919 uint32_t dll_cntl
= data
->clock_registers
.vDLL_CNTL
;
920 uint32_t mclk_pwrmgt_cntl
= data
->clock_registers
.vMCLK_PWRMGT_CNTL
;
921 uint32_t mpll_ad_func_cntl
= data
->clock_registers
.vMPLL_AD_FUNC_CNTL
;
922 uint32_t mpll_dq_func_cntl
= data
->clock_registers
.vMPLL_DQ_FUNC_CNTL
;
923 uint32_t mpll_func_cntl
= data
->clock_registers
.vMPLL_FUNC_CNTL
;
924 uint32_t mpll_func_cntl_1
= data
->clock_registers
.vMPLL_FUNC_CNTL_1
;
925 uint32_t mpll_func_cntl_2
= data
->clock_registers
.vMPLL_FUNC_CNTL_2
;
926 uint32_t mpll_ss1
= data
->clock_registers
.vMPLL_SS1
;
927 uint32_t mpll_ss2
= data
->clock_registers
.vMPLL_SS2
;
929 pp_atomctrl_memory_clock_param mpll_param
;
932 result
= atomctrl_get_memory_pll_dividers_si(hwmgr
,
933 memory_clock
, &mpll_param
, strobe_mode
);
934 PP_ASSERT_WITH_CODE(0 == result
,
935 "Error retrieving Memory Clock Parameters from VBIOS.", return result
);
937 /* MPLL_FUNC_CNTL setup*/
938 mpll_func_cntl
= PHM_SET_FIELD(mpll_func_cntl
, MPLL_FUNC_CNTL
, BWCTRL
, mpll_param
.bw_ctrl
);
940 /* MPLL_FUNC_CNTL_1 setup*/
941 mpll_func_cntl_1
= PHM_SET_FIELD(mpll_func_cntl_1
,
942 MPLL_FUNC_CNTL_1
, CLKF
, mpll_param
.mpll_fb_divider
.cl_kf
);
943 mpll_func_cntl_1
= PHM_SET_FIELD(mpll_func_cntl_1
,
944 MPLL_FUNC_CNTL_1
, CLKFRAC
, mpll_param
.mpll_fb_divider
.clk_frac
);
945 mpll_func_cntl_1
= PHM_SET_FIELD(mpll_func_cntl_1
,
946 MPLL_FUNC_CNTL_1
, VCO_MODE
, mpll_param
.vco_mode
);
948 /* MPLL_AD_FUNC_CNTL setup*/
949 mpll_ad_func_cntl
= PHM_SET_FIELD(mpll_ad_func_cntl
,
950 MPLL_AD_FUNC_CNTL
, YCLK_POST_DIV
, mpll_param
.mpll_post_divider
);
952 if (data
->is_memory_gddr5
) {
953 /* MPLL_DQ_FUNC_CNTL setup*/
954 mpll_dq_func_cntl
= PHM_SET_FIELD(mpll_dq_func_cntl
,
955 MPLL_DQ_FUNC_CNTL
, YCLK_SEL
, mpll_param
.yclk_sel
);
956 mpll_dq_func_cntl
= PHM_SET_FIELD(mpll_dq_func_cntl
,
957 MPLL_DQ_FUNC_CNTL
, YCLK_POST_DIV
, mpll_param
.mpll_post_divider
);
960 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
961 PHM_PlatformCaps_MemorySpreadSpectrumSupport
)) {
963 ************************************
964 Fref = Reference Frequency
965 NF = Feedback divider ratio
966 NR = Reference divider ratio
967 Fnom = Nominal VCO output frequency = Fref * NF / NR
969 D = Percentage down-spread / 2
970 Fint = Reference input frequency to PFD = Fref / NR
971 NS = Spreading rate divider ratio = int(Fint / (2 * Fs))
972 CLKS = NS - 1 = ISS_STEP_NUM[11:0]
973 NV = D * Fs / Fnom * 4 * ((Fnom/Fref * NR) ^ 2)
974 CLKV = 65536 * NV = ISS_STEP_SIZE[25:0]
975 *************************************
977 pp_atomctrl_internal_ss_info ss_info
;
980 uint32_t reference_clock
= atomctrl_get_mpll_reference_clock(hwmgr
);
982 /* for GDDR5 for all modes and DDR3 */
983 if (1 == mpll_param
.qdr
)
984 freq_nom
= memory_clock
* 4 * (1 << mpll_param
.mpll_post_divider
);
986 freq_nom
= memory_clock
* 2 * (1 << mpll_param
.mpll_post_divider
);
988 /* tmp = (freq_nom / reference_clock * reference_divider) ^ 2 Note: S.I. reference_divider = 1*/
989 tmp
= (freq_nom
/ reference_clock
);
992 if (0 == atomctrl_get_memory_clock_spread_spectrum(hwmgr
, freq_nom
, &ss_info
)) {
993 /* ss_info.speed_spectrum_percentage -- in unit of 0.01% */
994 /* ss.Info.speed_spectrum_rate -- in unit of khz */
995 /* CLKS = reference_clock / (2 * speed_spectrum_rate * reference_divider) * 10 */
996 /* = reference_clock * 5 / speed_spectrum_rate */
997 uint32_t clks
= reference_clock
* 5 / ss_info
.speed_spectrum_rate
;
999 /* CLKV = 65536 * speed_spectrum_percentage / 2 * spreadSpecrumRate / freq_nom * 4 / 100000 * ((freq_nom / reference_clock) ^ 2) */
1000 /* = 131 * speed_spectrum_percentage * speed_spectrum_rate / 100 * ((freq_nom / reference_clock) ^ 2) / freq_nom */
1002 (uint32_t)((((131 * ss_info
.speed_spectrum_percentage
*
1003 ss_info
.speed_spectrum_rate
) / 100) * tmp
) / freq_nom
);
1005 mpll_ss1
= PHM_SET_FIELD(mpll_ss1
, MPLL_SS1
, CLKV
, clkv
);
1006 mpll_ss2
= PHM_SET_FIELD(mpll_ss2
, MPLL_SS2
, CLKS
, clks
);
1010 /* MCLK_PWRMGT_CNTL setup */
1011 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1012 MCLK_PWRMGT_CNTL
, DLL_SPEED
, mpll_param
.dll_speed
);
1013 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1014 MCLK_PWRMGT_CNTL
, MRDCK0_PDNB
, dllStateOn
);
1015 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1016 MCLK_PWRMGT_CNTL
, MRDCK1_PDNB
, dllStateOn
);
1019 /* Save the result data to outpupt memory level structure */
1020 mclk
->MclkFrequency
= memory_clock
;
1021 mclk
->MpllFuncCntl
= mpll_func_cntl
;
1022 mclk
->MpllFuncCntl_1
= mpll_func_cntl_1
;
1023 mclk
->MpllFuncCntl_2
= mpll_func_cntl_2
;
1024 mclk
->MpllAdFuncCntl
= mpll_ad_func_cntl
;
1025 mclk
->MpllDqFuncCntl
= mpll_dq_func_cntl
;
1026 mclk
->MclkPwrmgtCntl
= mclk_pwrmgt_cntl
;
1027 mclk
->DllCntl
= dll_cntl
;
1028 mclk
->MpllSs1
= mpll_ss1
;
1029 mclk
->MpllSs2
= mpll_ss2
;
1034 static uint8_t iceland_get_mclk_frequency_ratio(uint32_t memory_clock
,
1037 uint8_t mc_para_index
;
1040 if (memory_clock
< 12500) {
1041 mc_para_index
= 0x00;
1042 } else if (memory_clock
> 47500) {
1043 mc_para_index
= 0x0f;
1045 mc_para_index
= (uint8_t)((memory_clock
- 10000) / 2500);
1048 if (memory_clock
< 65000) {
1049 mc_para_index
= 0x00;
1050 } else if (memory_clock
> 135000) {
1051 mc_para_index
= 0x0f;
1053 mc_para_index
= (uint8_t)((memory_clock
- 60000) / 5000);
1057 return mc_para_index
;
1060 static uint8_t iceland_get_ddr3_mclk_frequency_ratio(uint32_t memory_clock
)
1062 uint8_t mc_para_index
;
1064 if (memory_clock
< 10000) {
1066 } else if (memory_clock
>= 80000) {
1067 mc_para_index
= 0x0f;
1069 mc_para_index
= (uint8_t)((memory_clock
- 10000) / 5000 + 1);
1072 return mc_para_index
;
1075 static int iceland_populate_phase_value_based_on_mclk(struct pp_hwmgr
*hwmgr
, const struct phm_phase_shedding_limits_table
*pl
,
1076 uint32_t memory_clock
, uint32_t *p_shed
)
1082 for (i
= 0; i
< pl
->count
; i
++) {
1083 if (memory_clock
< pl
->entries
[i
].Mclk
) {
1092 static int iceland_populate_single_memory_level(
1093 struct pp_hwmgr
*hwmgr
,
1094 uint32_t memory_clock
,
1095 SMU71_Discrete_MemoryLevel
*memory_level
1098 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1101 struct cgs_display_info info
= {0};
1102 uint32_t mclk_edc_wr_enable_threshold
= 40000;
1103 uint32_t mclk_edc_enable_threshold
= 40000;
1104 uint32_t mclk_strobe_mode_threshold
= 40000;
1106 if (hwmgr
->dyn_state
.vddc_dependency_on_mclk
!= NULL
) {
1107 result
= iceland_get_dependecy_volt_by_clk(hwmgr
,
1108 hwmgr
->dyn_state
.vddc_dependency_on_mclk
, memory_clock
, &memory_level
->MinVddc
);
1109 PP_ASSERT_WITH_CODE((0 == result
),
1110 "can not find MinVddc voltage value from memory VDDC voltage dependency table", return result
);
1113 if (data
->vddci_control
== SMU7_VOLTAGE_CONTROL_NONE
) {
1114 memory_level
->MinVddci
= memory_level
->MinVddc
;
1115 } else if (NULL
!= hwmgr
->dyn_state
.vddci_dependency_on_mclk
) {
1116 result
= iceland_get_dependecy_volt_by_clk(hwmgr
,
1117 hwmgr
->dyn_state
.vddci_dependency_on_mclk
,
1119 &memory_level
->MinVddci
);
1120 PP_ASSERT_WITH_CODE((0 == result
),
1121 "can not find MinVddci voltage value from memory VDDCI voltage dependency table", return result
);
1124 memory_level
->MinVddcPhases
= 1;
1126 if (data
->vddc_phase_shed_control
) {
1127 iceland_populate_phase_value_based_on_mclk(hwmgr
, hwmgr
->dyn_state
.vddc_phase_shed_limits_table
,
1128 memory_clock
, &memory_level
->MinVddcPhases
);
1131 memory_level
->EnabledForThrottle
= 1;
1132 memory_level
->EnabledForActivity
= 0;
1133 memory_level
->UpHyst
= 0;
1134 memory_level
->DownHyst
= 100;
1135 memory_level
->VoltageDownHyst
= 0;
1137 /* Indicates maximum activity level for this performance level.*/
1138 memory_level
->ActivityLevel
= (uint16_t)data
->mclk_activity_target
;
1139 memory_level
->StutterEnable
= 0;
1140 memory_level
->StrobeEnable
= 0;
1141 memory_level
->EdcReadEnable
= 0;
1142 memory_level
->EdcWriteEnable
= 0;
1143 memory_level
->RttEnable
= 0;
1145 /* default set to low watermark. Highest level will be set to high later.*/
1146 memory_level
->DisplayWatermark
= PPSMC_DISPLAY_WATERMARK_LOW
;
1148 cgs_get_active_displays_info(hwmgr
->device
, &info
);
1149 data
->display_timing
.num_existing_displays
= info
.display_count
;
1151 /* stutter mode not support on iceland */
1153 /* decide strobe mode*/
1154 memory_level
->StrobeEnable
= (mclk_strobe_mode_threshold
!= 0) &&
1155 (memory_clock
<= mclk_strobe_mode_threshold
);
1157 /* decide EDC mode and memory clock ratio*/
1158 if (data
->is_memory_gddr5
) {
1159 memory_level
->StrobeRatio
= iceland_get_mclk_frequency_ratio(memory_clock
,
1160 memory_level
->StrobeEnable
);
1162 if ((mclk_edc_enable_threshold
!= 0) &&
1163 (memory_clock
> mclk_edc_enable_threshold
)) {
1164 memory_level
->EdcReadEnable
= 1;
1167 if ((mclk_edc_wr_enable_threshold
!= 0) &&
1168 (memory_clock
> mclk_edc_wr_enable_threshold
)) {
1169 memory_level
->EdcWriteEnable
= 1;
1172 if (memory_level
->StrobeEnable
) {
1173 if (iceland_get_mclk_frequency_ratio(memory_clock
, 1) >=
1174 ((cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC7
) >> 16) & 0xf))
1175 dll_state_on
= ((cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC5
) >> 1) & 0x1) ? 1 : 0;
1177 dll_state_on
= ((cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC6
) >> 1) & 0x1) ? 1 : 0;
1179 dll_state_on
= data
->dll_default_on
;
1181 memory_level
->StrobeRatio
=
1182 iceland_get_ddr3_mclk_frequency_ratio(memory_clock
);
1183 dll_state_on
= ((cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC5
) >> 1) & 0x1) ? 1 : 0;
1186 result
= iceland_calculate_mclk_params(hwmgr
,
1187 memory_clock
, memory_level
, memory_level
->StrobeEnable
, dll_state_on
);
1190 memory_level
->MinVddc
= PP_HOST_TO_SMC_UL(memory_level
->MinVddc
* VOLTAGE_SCALE
);
1191 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MinVddcPhases
);
1192 memory_level
->MinVddci
= PP_HOST_TO_SMC_UL(memory_level
->MinVddci
* VOLTAGE_SCALE
);
1193 memory_level
->MinMvdd
= PP_HOST_TO_SMC_UL(memory_level
->MinMvdd
* VOLTAGE_SCALE
);
1194 /* MCLK frequency in units of 10KHz*/
1195 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MclkFrequency
);
1196 /* Indicates maximum activity level for this performance level.*/
1197 CONVERT_FROM_HOST_TO_SMC_US(memory_level
->ActivityLevel
);
1198 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllFuncCntl
);
1199 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllFuncCntl_1
);
1200 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllFuncCntl_2
);
1201 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllAdFuncCntl
);
1202 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllDqFuncCntl
);
1203 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MclkPwrmgtCntl
);
1204 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->DllCntl
);
1205 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllSs1
);
1206 CONVERT_FROM_HOST_TO_SMC_UL(memory_level
->MpllSs2
);
1213 * Populates all SMC MCLK levels' structure based on the trimmed allowed dpm memory clock states
1215 * @param hwmgr the address of the hardware manager
1218 int iceland_populate_all_memory_levels(struct pp_hwmgr
*hwmgr
)
1220 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1221 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1222 struct smu7_dpm_table
*dpm_table
= &data
->dpm_table
;
1225 /* populate MCLK dpm table to SMU7 */
1226 uint32_t level_array_adress
= smu_data
->smu7_data
.dpm_table_start
+ offsetof(SMU71_Discrete_DpmTable
, MemoryLevel
);
1227 uint32_t level_array_size
= sizeof(SMU71_Discrete_MemoryLevel
) * SMU71_MAX_LEVELS_MEMORY
;
1228 SMU71_Discrete_MemoryLevel
*levels
= smu_data
->smc_state_table
.MemoryLevel
;
1231 memset(levels
, 0x00, level_array_size
);
1233 for (i
= 0; i
< dpm_table
->mclk_table
.count
; i
++) {
1234 PP_ASSERT_WITH_CODE((0 != dpm_table
->mclk_table
.dpm_levels
[i
].value
),
1235 "can not populate memory level as memory clock is zero", return -EINVAL
);
1236 result
= iceland_populate_single_memory_level(hwmgr
, dpm_table
->mclk_table
.dpm_levels
[i
].value
,
1237 &(smu_data
->smc_state_table
.MemoryLevel
[i
]));
1243 /* Only enable level 0 for now.*/
1244 smu_data
->smc_state_table
.MemoryLevel
[0].EnabledForActivity
= 1;
1247 * in order to prevent MC activity from stutter mode to push DPM up.
1248 * the UVD change complements this by putting the MCLK in a higher state
1249 * by default such that we are not effected by up threshold or and MCLK DPM latency.
1251 smu_data
->smc_state_table
.MemoryLevel
[0].ActivityLevel
= 0x1F;
1252 CONVERT_FROM_HOST_TO_SMC_US(smu_data
->smc_state_table
.MemoryLevel
[0].ActivityLevel
);
1254 smu_data
->smc_state_table
.MemoryDpmLevelCount
= (uint8_t)dpm_table
->mclk_table
.count
;
1255 data
->dpm_level_enable_mask
.mclk_dpm_enable_mask
= phm_get_dpm_level_enable_mask_value(&dpm_table
->mclk_table
);
1256 /* set highest level watermark to high*/
1257 smu_data
->smc_state_table
.MemoryLevel
[dpm_table
->mclk_table
.count
-1].DisplayWatermark
= PPSMC_DISPLAY_WATERMARK_HIGH
;
1259 /* level count will send to smc once at init smc table and never change*/
1260 result
= smu7_copy_bytes_to_smc(hwmgr
->smumgr
,
1261 level_array_adress
, (uint8_t *)levels
, (uint32_t)level_array_size
,
1267 static int iceland_populate_mvdd_value(struct pp_hwmgr
*hwmgr
, uint32_t mclk
,
1268 SMU71_Discrete_VoltageLevel
*voltage
)
1270 const struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1274 if (SMU7_VOLTAGE_CONTROL_NONE
!= data
->mvdd_control
) {
1275 /* find mvdd value which clock is more than request */
1276 for (i
= 0; i
< hwmgr
->dyn_state
.mvdd_dependency_on_mclk
->count
; i
++) {
1277 if (mclk
<= hwmgr
->dyn_state
.mvdd_dependency_on_mclk
->entries
[i
].clk
) {
1278 /* Always round to higher voltage. */
1279 voltage
->Voltage
= data
->mvdd_voltage_table
.entries
[i
].value
;
1284 PP_ASSERT_WITH_CODE(i
< hwmgr
->dyn_state
.mvdd_dependency_on_mclk
->count
,
1285 "MVDD Voltage is outside the supported range.", return -EINVAL
);
1294 static int iceland_populate_smc_acpi_level(struct pp_hwmgr
*hwmgr
,
1295 SMU71_Discrete_DpmTable
*table
)
1298 const struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1299 struct pp_atomctrl_clock_dividers_vi dividers
;
1300 uint32_t vddc_phase_shed_control
= 0;
1302 SMU71_Discrete_VoltageLevel voltage_level
;
1303 uint32_t spll_func_cntl
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL
;
1304 uint32_t spll_func_cntl_2
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL_2
;
1305 uint32_t dll_cntl
= data
->clock_registers
.vDLL_CNTL
;
1306 uint32_t mclk_pwrmgt_cntl
= data
->clock_registers
.vMCLK_PWRMGT_CNTL
;
1309 /* The ACPI state should not do DPM on DC (or ever).*/
1310 table
->ACPILevel
.Flags
&= ~PPSMC_SWSTATE_FLAG_DC
;
1312 if (data
->acpi_vddc
)
1313 table
->ACPILevel
.MinVddc
= PP_HOST_TO_SMC_UL(data
->acpi_vddc
* VOLTAGE_SCALE
);
1315 table
->ACPILevel
.MinVddc
= PP_HOST_TO_SMC_UL(data
->min_vddc_in_pptable
* VOLTAGE_SCALE
);
1317 table
->ACPILevel
.MinVddcPhases
= vddc_phase_shed_control
? 0 : 1;
1318 /* assign zero for now*/
1319 table
->ACPILevel
.SclkFrequency
= atomctrl_get_reference_clock(hwmgr
);
1321 /* get the engine clock dividers for this clock value*/
1322 result
= atomctrl_get_engine_pll_dividers_vi(hwmgr
,
1323 table
->ACPILevel
.SclkFrequency
, ÷rs
);
1325 PP_ASSERT_WITH_CODE(result
== 0,
1326 "Error retrieving Engine Clock dividers from VBIOS.", return result
);
1328 /* divider ID for required SCLK*/
1329 table
->ACPILevel
.SclkDid
= (uint8_t)dividers
.pll_post_divider
;
1330 table
->ACPILevel
.DisplayWatermark
= PPSMC_DISPLAY_WATERMARK_LOW
;
1331 table
->ACPILevel
.DeepSleepDivId
= 0;
1333 spll_func_cntl
= PHM_SET_FIELD(spll_func_cntl
,
1334 CG_SPLL_FUNC_CNTL
, SPLL_PWRON
, 0);
1335 spll_func_cntl
= PHM_SET_FIELD(spll_func_cntl
,
1336 CG_SPLL_FUNC_CNTL
, SPLL_RESET
, 1);
1337 spll_func_cntl_2
= PHM_SET_FIELD(spll_func_cntl_2
,
1338 CG_SPLL_FUNC_CNTL_2
, SCLK_MUX_SEL
, 4);
1340 table
->ACPILevel
.CgSpllFuncCntl
= spll_func_cntl
;
1341 table
->ACPILevel
.CgSpllFuncCntl2
= spll_func_cntl_2
;
1342 table
->ACPILevel
.CgSpllFuncCntl3
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL_3
;
1343 table
->ACPILevel
.CgSpllFuncCntl4
= data
->clock_registers
.vCG_SPLL_FUNC_CNTL_4
;
1344 table
->ACPILevel
.SpllSpreadSpectrum
= data
->clock_registers
.vCG_SPLL_SPREAD_SPECTRUM
;
1345 table
->ACPILevel
.SpllSpreadSpectrum2
= data
->clock_registers
.vCG_SPLL_SPREAD_SPECTRUM_2
;
1346 table
->ACPILevel
.CcPwrDynRm
= 0;
1347 table
->ACPILevel
.CcPwrDynRm1
= 0;
1350 /* For various features to be enabled/disabled while this level is active.*/
1351 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.Flags
);
1352 /* SCLK frequency in units of 10KHz*/
1353 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.SclkFrequency
);
1354 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CgSpllFuncCntl
);
1355 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CgSpllFuncCntl2
);
1356 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CgSpllFuncCntl3
);
1357 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CgSpllFuncCntl4
);
1358 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.SpllSpreadSpectrum
);
1359 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.SpllSpreadSpectrum2
);
1360 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CcPwrDynRm
);
1361 CONVERT_FROM_HOST_TO_SMC_UL(table
->ACPILevel
.CcPwrDynRm1
);
1363 /* table->MemoryACPILevel.MinVddcPhases = table->ACPILevel.MinVddcPhases;*/
1364 table
->MemoryACPILevel
.MinVddc
= table
->ACPILevel
.MinVddc
;
1365 table
->MemoryACPILevel
.MinVddcPhases
= table
->ACPILevel
.MinVddcPhases
;
1367 if (SMU7_VOLTAGE_CONTROL_NONE
== data
->vddci_control
)
1368 table
->MemoryACPILevel
.MinVddci
= table
->MemoryACPILevel
.MinVddc
;
1370 if (data
->acpi_vddci
!= 0)
1371 table
->MemoryACPILevel
.MinVddci
= PP_HOST_TO_SMC_UL(data
->acpi_vddci
* VOLTAGE_SCALE
);
1373 table
->MemoryACPILevel
.MinVddci
= PP_HOST_TO_SMC_UL(data
->min_vddci_in_pptable
* VOLTAGE_SCALE
);
1376 if (0 == iceland_populate_mvdd_value(hwmgr
, 0, &voltage_level
))
1377 table
->MemoryACPILevel
.MinMvdd
=
1378 PP_HOST_TO_SMC_UL(voltage_level
.Voltage
* VOLTAGE_SCALE
);
1380 table
->MemoryACPILevel
.MinMvdd
= 0;
1382 /* Force reset on DLL*/
1383 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1384 MCLK_PWRMGT_CNTL
, MRDCK0_RESET
, 0x1);
1385 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1386 MCLK_PWRMGT_CNTL
, MRDCK1_RESET
, 0x1);
1388 /* Disable DLL in ACPIState*/
1389 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1390 MCLK_PWRMGT_CNTL
, MRDCK0_PDNB
, 0);
1391 mclk_pwrmgt_cntl
= PHM_SET_FIELD(mclk_pwrmgt_cntl
,
1392 MCLK_PWRMGT_CNTL
, MRDCK1_PDNB
, 0);
1394 /* Enable DLL bypass signal*/
1395 dll_cntl
= PHM_SET_FIELD(dll_cntl
,
1396 DLL_CNTL
, MRDCK0_BYPASS
, 0);
1397 dll_cntl
= PHM_SET_FIELD(dll_cntl
,
1398 DLL_CNTL
, MRDCK1_BYPASS
, 0);
1400 table
->MemoryACPILevel
.DllCntl
=
1401 PP_HOST_TO_SMC_UL(dll_cntl
);
1402 table
->MemoryACPILevel
.MclkPwrmgtCntl
=
1403 PP_HOST_TO_SMC_UL(mclk_pwrmgt_cntl
);
1404 table
->MemoryACPILevel
.MpllAdFuncCntl
=
1405 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_AD_FUNC_CNTL
);
1406 table
->MemoryACPILevel
.MpllDqFuncCntl
=
1407 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_DQ_FUNC_CNTL
);
1408 table
->MemoryACPILevel
.MpllFuncCntl
=
1409 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_FUNC_CNTL
);
1410 table
->MemoryACPILevel
.MpllFuncCntl_1
=
1411 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_FUNC_CNTL_1
);
1412 table
->MemoryACPILevel
.MpllFuncCntl_2
=
1413 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_FUNC_CNTL_2
);
1414 table
->MemoryACPILevel
.MpllSs1
=
1415 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_SS1
);
1416 table
->MemoryACPILevel
.MpllSs2
=
1417 PP_HOST_TO_SMC_UL(data
->clock_registers
.vMPLL_SS2
);
1419 table
->MemoryACPILevel
.EnabledForThrottle
= 0;
1420 table
->MemoryACPILevel
.EnabledForActivity
= 0;
1421 table
->MemoryACPILevel
.UpHyst
= 0;
1422 table
->MemoryACPILevel
.DownHyst
= 100;
1423 table
->MemoryACPILevel
.VoltageDownHyst
= 0;
1424 /* Indicates maximum activity level for this performance level.*/
1425 table
->MemoryACPILevel
.ActivityLevel
= PP_HOST_TO_SMC_US((uint16_t)data
->mclk_activity_target
);
1427 table
->MemoryACPILevel
.StutterEnable
= 0;
1428 table
->MemoryACPILevel
.StrobeEnable
= 0;
1429 table
->MemoryACPILevel
.EdcReadEnable
= 0;
1430 table
->MemoryACPILevel
.EdcWriteEnable
= 0;
1431 table
->MemoryACPILevel
.RttEnable
= 0;
1436 static int iceland_populate_smc_uvd_level(struct pp_hwmgr
*hwmgr
,
1437 SMU71_Discrete_DpmTable
*table
)
1442 static int iceland_populate_smc_vce_level(struct pp_hwmgr
*hwmgr
,
1443 SMU71_Discrete_DpmTable
*table
)
1448 static int iceland_populate_smc_acp_level(struct pp_hwmgr
*hwmgr
,
1449 SMU71_Discrete_DpmTable
*table
)
1454 static int iceland_populate_smc_samu_level(struct pp_hwmgr
*hwmgr
,
1455 SMU71_Discrete_DpmTable
*table
)
1460 static int iceland_populate_memory_timing_parameters(
1461 struct pp_hwmgr
*hwmgr
,
1462 uint32_t engine_clock
,
1463 uint32_t memory_clock
,
1464 struct SMU71_Discrete_MCArbDramTimingTableEntry
*arb_regs
1467 uint32_t dramTiming
;
1468 uint32_t dramTiming2
;
1472 result
= atomctrl_set_engine_dram_timings_rv770(hwmgr
,
1473 engine_clock
, memory_clock
);
1475 PP_ASSERT_WITH_CODE(result
== 0,
1476 "Error calling VBIOS to set DRAM_TIMING.", return result
);
1478 dramTiming
= cgs_read_register(hwmgr
->device
, mmMC_ARB_DRAM_TIMING
);
1479 dramTiming2
= cgs_read_register(hwmgr
->device
, mmMC_ARB_DRAM_TIMING2
);
1480 burstTime
= PHM_READ_FIELD(hwmgr
->device
, MC_ARB_BURST_TIME
, STATE0
);
1482 arb_regs
->McArbDramTiming
= PP_HOST_TO_SMC_UL(dramTiming
);
1483 arb_regs
->McArbDramTiming2
= PP_HOST_TO_SMC_UL(dramTiming2
);
1484 arb_regs
->McArbBurstTime
= (uint8_t)burstTime
;
1490 * Setup parameters for the MC ARB.
1492 * @param hwmgr the address of the powerplay hardware manager.
1494 * This function is to be called from the SetPowerState table.
1496 static int iceland_program_memory_timing_parameters(struct pp_hwmgr
*hwmgr
)
1498 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1499 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1501 SMU71_Discrete_MCArbDramTimingTable arb_regs
;
1504 memset(&arb_regs
, 0x00, sizeof(SMU71_Discrete_MCArbDramTimingTable
));
1506 for (i
= 0; i
< data
->dpm_table
.sclk_table
.count
; i
++) {
1507 for (j
= 0; j
< data
->dpm_table
.mclk_table
.count
; j
++) {
1508 result
= iceland_populate_memory_timing_parameters
1509 (hwmgr
, data
->dpm_table
.sclk_table
.dpm_levels
[i
].value
,
1510 data
->dpm_table
.mclk_table
.dpm_levels
[j
].value
,
1511 &arb_regs
.entries
[i
][j
]);
1520 result
= smu7_copy_bytes_to_smc(
1522 smu_data
->smu7_data
.arb_table_start
,
1523 (uint8_t *)&arb_regs
,
1524 sizeof(SMU71_Discrete_MCArbDramTimingTable
),
1532 static int iceland_populate_smc_boot_level(struct pp_hwmgr
*hwmgr
,
1533 SMU71_Discrete_DpmTable
*table
)
1536 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1537 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1538 table
->GraphicsBootLevel
= 0;
1539 table
->MemoryBootLevel
= 0;
1541 /* find boot level from dpm table*/
1542 result
= phm_find_boot_level(&(data
->dpm_table
.sclk_table
),
1543 data
->vbios_boot_state
.sclk_bootup_value
,
1544 (uint32_t *)&(smu_data
->smc_state_table
.GraphicsBootLevel
));
1547 smu_data
->smc_state_table
.GraphicsBootLevel
= 0;
1548 printk(KERN_ERR
"[ powerplay ] VBIOS did not find boot engine clock value \
1549 in dependency table. Using Graphics DPM level 0!");
1553 result
= phm_find_boot_level(&(data
->dpm_table
.mclk_table
),
1554 data
->vbios_boot_state
.mclk_bootup_value
,
1555 (uint32_t *)&(smu_data
->smc_state_table
.MemoryBootLevel
));
1558 smu_data
->smc_state_table
.MemoryBootLevel
= 0;
1559 printk(KERN_ERR
"[ powerplay ] VBIOS did not find boot engine clock value \
1560 in dependency table. Using Memory DPM level 0!");
1564 table
->BootVddc
= data
->vbios_boot_state
.vddc_bootup_value
;
1565 if (SMU7_VOLTAGE_CONTROL_NONE
== data
->vddci_control
)
1566 table
->BootVddci
= table
->BootVddc
;
1568 table
->BootVddci
= data
->vbios_boot_state
.vddci_bootup_value
;
1570 table
->BootMVdd
= data
->vbios_boot_state
.mvdd_bootup_value
;
1575 static int iceland_populate_mc_reg_address(struct pp_smumgr
*smumgr
,
1576 SMU71_Discrete_MCRegisters
*mc_reg_table
)
1578 const struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)smumgr
->backend
;
1582 for (i
= 0, j
= 0; j
< smu_data
->mc_reg_table
.last
; j
++) {
1583 if (smu_data
->mc_reg_table
.validflag
& 1<<j
) {
1584 PP_ASSERT_WITH_CODE(i
< SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
,
1585 "Index of mc_reg_table->address[] array out of boundary", return -EINVAL
);
1586 mc_reg_table
->address
[i
].s0
=
1587 PP_HOST_TO_SMC_US(smu_data
->mc_reg_table
.mc_reg_address
[j
].s0
);
1588 mc_reg_table
->address
[i
].s1
=
1589 PP_HOST_TO_SMC_US(smu_data
->mc_reg_table
.mc_reg_address
[j
].s1
);
1594 mc_reg_table
->last
= (uint8_t)i
;
1599 /*convert register values from driver to SMC format */
1600 static void iceland_convert_mc_registers(
1601 const struct iceland_mc_reg_entry
*entry
,
1602 SMU71_Discrete_MCRegisterSet
*data
,
1603 uint32_t num_entries
, uint32_t valid_flag
)
1607 for (i
= 0, j
= 0; j
< num_entries
; j
++) {
1608 if (valid_flag
& 1<<j
) {
1609 data
->value
[i
] = PP_HOST_TO_SMC_UL(entry
->mc_data
[j
]);
1615 static int iceland_convert_mc_reg_table_entry_to_smc(
1616 struct pp_smumgr
*smumgr
,
1617 const uint32_t memory_clock
,
1618 SMU71_Discrete_MCRegisterSet
*mc_reg_table_data
1621 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(smumgr
->backend
);
1624 for (i
= 0; i
< smu_data
->mc_reg_table
.num_entries
; i
++) {
1626 smu_data
->mc_reg_table
.mc_reg_table_entry
[i
].mclk_max
) {
1631 if ((i
== smu_data
->mc_reg_table
.num_entries
) && (i
> 0))
1634 iceland_convert_mc_registers(&smu_data
->mc_reg_table
.mc_reg_table_entry
[i
],
1635 mc_reg_table_data
, smu_data
->mc_reg_table
.last
,
1636 smu_data
->mc_reg_table
.validflag
);
1641 static int iceland_convert_mc_reg_table_to_smc(struct pp_hwmgr
*hwmgr
,
1642 SMU71_Discrete_MCRegisters
*mc_regs
)
1645 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1649 for (i
= 0; i
< data
->dpm_table
.mclk_table
.count
; i
++) {
1650 res
= iceland_convert_mc_reg_table_entry_to_smc(
1652 data
->dpm_table
.mclk_table
.dpm_levels
[i
].value
,
1663 static int iceland_update_and_upload_mc_reg_table(struct pp_hwmgr
*hwmgr
)
1665 struct pp_smumgr
*smumgr
= hwmgr
->smumgr
;
1666 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(smumgr
->backend
);
1667 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1671 if (0 == (data
->need_update_smu7_dpm_table
& DPMTABLE_OD_UPDATE_MCLK
))
1675 memset(&smu_data
->mc_regs
, 0, sizeof(SMU71_Discrete_MCRegisters
));
1677 result
= iceland_convert_mc_reg_table_to_smc(hwmgr
, &(smu_data
->mc_regs
));
1683 address
= smu_data
->smu7_data
.mc_reg_table_start
+ (uint32_t)offsetof(SMU71_Discrete_MCRegisters
, data
[0]);
1685 return smu7_copy_bytes_to_smc(hwmgr
->smumgr
, address
,
1686 (uint8_t *)&smu_data
->mc_regs
.data
[0],
1687 sizeof(SMU71_Discrete_MCRegisterSet
) * data
->dpm_table
.mclk_table
.count
,
1691 static int iceland_populate_initial_mc_reg_table(struct pp_hwmgr
*hwmgr
)
1694 struct pp_smumgr
*smumgr
= hwmgr
->smumgr
;
1695 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(smumgr
->backend
);
1697 memset(&smu_data
->mc_regs
, 0x00, sizeof(SMU71_Discrete_MCRegisters
));
1698 result
= iceland_populate_mc_reg_address(smumgr
, &(smu_data
->mc_regs
));
1699 PP_ASSERT_WITH_CODE(0 == result
,
1700 "Failed to initialize MCRegTable for the MC register addresses!", return result
;);
1702 result
= iceland_convert_mc_reg_table_to_smc(hwmgr
, &smu_data
->mc_regs
);
1703 PP_ASSERT_WITH_CODE(0 == result
,
1704 "Failed to initialize MCRegTable for driver state!", return result
;);
1706 return smu7_copy_bytes_to_smc(smumgr
, smu_data
->smu7_data
.mc_reg_table_start
,
1707 (uint8_t *)&smu_data
->mc_regs
, sizeof(SMU71_Discrete_MCRegisters
), SMC_RAM_END
);
1710 static int iceland_populate_smc_initial_state(struct pp_hwmgr
*hwmgr
)
1712 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1713 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1714 uint8_t count
, level
;
1716 count
= (uint8_t)(hwmgr
->dyn_state
.vddc_dependency_on_sclk
->count
);
1718 for (level
= 0; level
< count
; level
++) {
1719 if (hwmgr
->dyn_state
.vddc_dependency_on_sclk
->entries
[level
].clk
1720 >= data
->vbios_boot_state
.sclk_bootup_value
) {
1721 smu_data
->smc_state_table
.GraphicsBootLevel
= level
;
1726 count
= (uint8_t)(hwmgr
->dyn_state
.vddc_dependency_on_mclk
->count
);
1728 for (level
= 0; level
< count
; level
++) {
1729 if (hwmgr
->dyn_state
.vddc_dependency_on_mclk
->entries
[level
].clk
1730 >= data
->vbios_boot_state
.mclk_bootup_value
) {
1731 smu_data
->smc_state_table
.MemoryBootLevel
= level
;
1739 static int iceland_populate_bapm_parameters_in_dpm_table(struct pp_hwmgr
*hwmgr
)
1741 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1742 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1743 const struct iceland_pt_defaults
*defaults
= smu_data
->power_tune_defaults
;
1744 SMU71_Discrete_DpmTable
*dpm_table
= &(smu_data
->smc_state_table
);
1745 struct phm_cac_tdp_table
*cac_dtp_table
= hwmgr
->dyn_state
.cac_dtp_table
;
1746 struct phm_ppm_table
*ppm
= hwmgr
->dyn_state
.ppm_parameter_table
;
1747 const uint16_t *def1
, *def2
;
1752 * TDP number of fraction bits are changed from 8 to 7 for Iceland
1753 * as requested by SMC team
1756 dpm_table
->DefaultTdp
= PP_HOST_TO_SMC_US((uint16_t)(cac_dtp_table
->usTDP
* 256));
1757 dpm_table
->TargetTdp
= PP_HOST_TO_SMC_US((uint16_t)(cac_dtp_table
->usConfigurableTDP
* 256));
1760 dpm_table
->DTETjOffset
= 0;
1762 dpm_table
->GpuTjMax
= (uint8_t)(data
->thermal_temp_setting
.temperature_high
/ PP_TEMPERATURE_UNITS_PER_CENTIGRADES
);
1763 dpm_table
->GpuTjHyst
= 8;
1765 dpm_table
->DTEAmbientTempBase
= defaults
->dte_ambient_temp_base
;
1767 /* The following are for new Iceland Multi-input fan/thermal control */
1769 dpm_table
->PPM_PkgPwrLimit
= (uint16_t)ppm
->dgpu_tdp
* 256 / 1000;
1770 dpm_table
->PPM_TemperatureLimit
= (uint16_t)ppm
->tj_max
* 256;
1772 dpm_table
->PPM_PkgPwrLimit
= 0;
1773 dpm_table
->PPM_TemperatureLimit
= 0;
1776 CONVERT_FROM_HOST_TO_SMC_US(dpm_table
->PPM_PkgPwrLimit
);
1777 CONVERT_FROM_HOST_TO_SMC_US(dpm_table
->PPM_TemperatureLimit
);
1779 dpm_table
->BAPM_TEMP_GRADIENT
= PP_HOST_TO_SMC_UL(defaults
->bamp_temp_gradient
);
1780 def1
= defaults
->bapmti_r
;
1781 def2
= defaults
->bapmti_rc
;
1783 for (i
= 0; i
< SMU71_DTE_ITERATIONS
; i
++) {
1784 for (j
= 0; j
< SMU71_DTE_SOURCES
; j
++) {
1785 for (k
= 0; k
< SMU71_DTE_SINKS
; k
++) {
1786 dpm_table
->BAPMTI_R
[i
][j
][k
] = PP_HOST_TO_SMC_US(*def1
);
1787 dpm_table
->BAPMTI_RC
[i
][j
][k
] = PP_HOST_TO_SMC_US(*def2
);
1797 static int iceland_populate_smc_svi2_config(struct pp_hwmgr
*hwmgr
,
1798 SMU71_Discrete_DpmTable
*tab
)
1800 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1802 if (SMU7_VOLTAGE_CONTROL_BY_SVID2
== data
->voltage_control
)
1803 tab
->SVI2Enable
|= VDDC_ON_SVI2
;
1805 if (SMU7_VOLTAGE_CONTROL_BY_SVID2
== data
->vddci_control
)
1806 tab
->SVI2Enable
|= VDDCI_ON_SVI2
;
1808 tab
->MergedVddci
= 1;
1810 if (SMU7_VOLTAGE_CONTROL_BY_SVID2
== data
->mvdd_control
)
1811 tab
->SVI2Enable
|= MVDD_ON_SVI2
;
1813 PP_ASSERT_WITH_CODE(tab
->SVI2Enable
!= (VDDC_ON_SVI2
| VDDCI_ON_SVI2
| MVDD_ON_SVI2
) &&
1814 (tab
->SVI2Enable
& VDDC_ON_SVI2
), "SVI2 domain configuration is incorrect!", return -EINVAL
);
1820 * Initializes the SMC table and uploads it
1822 * @param hwmgr the address of the powerplay hardware manager.
1823 * @param pInput the pointer to input data (PowerState)
1826 int iceland_init_smc_table(struct pp_hwmgr
*hwmgr
)
1829 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
1830 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
1831 SMU71_Discrete_DpmTable
*table
= &(smu_data
->smc_state_table
);
1834 iceland_initialize_power_tune_defaults(hwmgr
);
1835 memset(&(smu_data
->smc_state_table
), 0x00, sizeof(smu_data
->smc_state_table
));
1837 if (SMU7_VOLTAGE_CONTROL_NONE
!= data
->voltage_control
) {
1838 iceland_populate_smc_voltage_tables(hwmgr
, table
);
1841 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
1842 PHM_PlatformCaps_AutomaticDCTransition
))
1843 table
->SystemFlags
|= PPSMC_SYSTEMFLAG_GPIO_DC
;
1846 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
1847 PHM_PlatformCaps_StepVddc
))
1848 table
->SystemFlags
|= PPSMC_SYSTEMFLAG_STEPVDDC
;
1850 if (data
->is_memory_gddr5
)
1851 table
->SystemFlags
|= PPSMC_SYSTEMFLAG_GDDR5
;
1854 if (data
->ulv_supported
) {
1855 result
= iceland_populate_ulv_state(hwmgr
, &(smu_data
->ulv_setting
));
1856 PP_ASSERT_WITH_CODE(0 == result
,
1857 "Failed to initialize ULV state!", return result
;);
1859 cgs_write_ind_register(hwmgr
->device
, CGS_IND_REG__SMC
,
1860 ixCG_ULV_PARAMETER
, 0x40035);
1863 result
= iceland_populate_smc_link_level(hwmgr
, table
);
1864 PP_ASSERT_WITH_CODE(0 == result
,
1865 "Failed to initialize Link Level!", return result
;);
1867 result
= iceland_populate_all_graphic_levels(hwmgr
);
1868 PP_ASSERT_WITH_CODE(0 == result
,
1869 "Failed to initialize Graphics Level!", return result
;);
1871 result
= iceland_populate_all_memory_levels(hwmgr
);
1872 PP_ASSERT_WITH_CODE(0 == result
,
1873 "Failed to initialize Memory Level!", return result
;);
1875 result
= iceland_populate_smc_acpi_level(hwmgr
, table
);
1876 PP_ASSERT_WITH_CODE(0 == result
,
1877 "Failed to initialize ACPI Level!", return result
;);
1879 result
= iceland_populate_smc_vce_level(hwmgr
, table
);
1880 PP_ASSERT_WITH_CODE(0 == result
,
1881 "Failed to initialize VCE Level!", return result
;);
1883 result
= iceland_populate_smc_acp_level(hwmgr
, table
);
1884 PP_ASSERT_WITH_CODE(0 == result
,
1885 "Failed to initialize ACP Level!", return result
;);
1887 result
= iceland_populate_smc_samu_level(hwmgr
, table
);
1888 PP_ASSERT_WITH_CODE(0 == result
,
1889 "Failed to initialize SAMU Level!", return result
;);
1891 /* Since only the initial state is completely set up at this point (the other states are just copies of the boot state) we only */
1892 /* need to populate the ARB settings for the initial state. */
1893 result
= iceland_program_memory_timing_parameters(hwmgr
);
1894 PP_ASSERT_WITH_CODE(0 == result
,
1895 "Failed to Write ARB settings for the initial state.", return result
;);
1897 result
= iceland_populate_smc_uvd_level(hwmgr
, table
);
1898 PP_ASSERT_WITH_CODE(0 == result
,
1899 "Failed to initialize UVD Level!", return result
;);
1901 table
->GraphicsBootLevel
= 0;
1902 table
->MemoryBootLevel
= 0;
1904 result
= iceland_populate_smc_boot_level(hwmgr
, table
);
1905 PP_ASSERT_WITH_CODE(0 == result
,
1906 "Failed to initialize Boot Level!", return result
;);
1908 result
= iceland_populate_smc_initial_state(hwmgr
);
1909 PP_ASSERT_WITH_CODE(0 == result
, "Failed to initialize Boot State!", return result
);
1911 result
= iceland_populate_bapm_parameters_in_dpm_table(hwmgr
);
1912 PP_ASSERT_WITH_CODE(0 == result
, "Failed to populate BAPM Parameters!", return result
);
1914 table
->GraphicsVoltageChangeEnable
= 1;
1915 table
->GraphicsThermThrottleEnable
= 1;
1916 table
->GraphicsInterval
= 1;
1917 table
->VoltageInterval
= 1;
1918 table
->ThermalInterval
= 1;
1920 table
->TemperatureLimitHigh
=
1921 (data
->thermal_temp_setting
.temperature_high
*
1922 SMU7_Q88_FORMAT_CONVERSION_UNIT
) / PP_TEMPERATURE_UNITS_PER_CENTIGRADES
;
1923 table
->TemperatureLimitLow
=
1924 (data
->thermal_temp_setting
.temperature_low
*
1925 SMU7_Q88_FORMAT_CONVERSION_UNIT
) / PP_TEMPERATURE_UNITS_PER_CENTIGRADES
;
1927 table
->MemoryVoltageChangeEnable
= 1;
1928 table
->MemoryInterval
= 1;
1929 table
->VoltageResponseTime
= 0;
1930 table
->PhaseResponseTime
= 0;
1931 table
->MemoryThermThrottleEnable
= 1;
1932 table
->PCIeBootLinkLevel
= 0;
1933 table
->PCIeGenInterval
= 1;
1935 result
= iceland_populate_smc_svi2_config(hwmgr
, table
);
1936 PP_ASSERT_WITH_CODE(0 == result
,
1937 "Failed to populate SVI2 setting!", return result
);
1939 table
->ThermGpio
= 17;
1940 table
->SclkStepSize
= 0x4000;
1942 CONVERT_FROM_HOST_TO_SMC_UL(table
->SystemFlags
);
1943 CONVERT_FROM_HOST_TO_SMC_UL(table
->SmioMaskVddcVid
);
1944 CONVERT_FROM_HOST_TO_SMC_UL(table
->SmioMaskVddcPhase
);
1945 CONVERT_FROM_HOST_TO_SMC_UL(table
->SmioMaskVddciVid
);
1946 CONVERT_FROM_HOST_TO_SMC_UL(table
->SmioMaskMvddVid
);
1947 CONVERT_FROM_HOST_TO_SMC_UL(table
->SclkStepSize
);
1948 CONVERT_FROM_HOST_TO_SMC_US(table
->TemperatureLimitHigh
);
1949 CONVERT_FROM_HOST_TO_SMC_US(table
->TemperatureLimitLow
);
1950 CONVERT_FROM_HOST_TO_SMC_US(table
->VoltageResponseTime
);
1951 CONVERT_FROM_HOST_TO_SMC_US(table
->PhaseResponseTime
);
1953 table
->BootVddc
= PP_HOST_TO_SMC_US(table
->BootVddc
* VOLTAGE_SCALE
);
1954 table
->BootVddci
= PP_HOST_TO_SMC_US(table
->BootVddci
* VOLTAGE_SCALE
);
1955 table
->BootMVdd
= PP_HOST_TO_SMC_US(table
->BootMVdd
* VOLTAGE_SCALE
);
1957 /* Upload all dpm data to SMC memory.(dpm level, dpm level count etc) */
1958 result
= smu7_copy_bytes_to_smc(hwmgr
->smumgr
, smu_data
->smu7_data
.dpm_table_start
+
1959 offsetof(SMU71_Discrete_DpmTable
, SystemFlags
),
1960 (uint8_t *)&(table
->SystemFlags
),
1961 sizeof(SMU71_Discrete_DpmTable
)-3 * sizeof(SMU71_PIDController
),
1964 PP_ASSERT_WITH_CODE(0 == result
,
1965 "Failed to upload dpm data to SMC memory!", return result
;);
1967 /* Upload all ulv setting to SMC memory.(dpm level, dpm level count etc) */
1968 result
= smu7_copy_bytes_to_smc(hwmgr
->smumgr
,
1969 smu_data
->smu7_data
.ulv_setting_starts
,
1970 (uint8_t *)&(smu_data
->ulv_setting
),
1971 sizeof(SMU71_Discrete_Ulv
),
1975 result
= iceland_populate_initial_mc_reg_table(hwmgr
);
1976 PP_ASSERT_WITH_CODE((0 == result
),
1977 "Failed to populate initialize MC Reg table!", return result
);
1979 result
= iceland_populate_pm_fuses(hwmgr
);
1980 PP_ASSERT_WITH_CODE(0 == result
,
1981 "Failed to populate PM fuses to SMC memory!", return result
);
1987 * Set up the fan table to control the fan using the SMC.
1988 * @param hwmgr the address of the powerplay hardware manager.
1989 * @param pInput the pointer to input data
1990 * @param pOutput the pointer to output data
1991 * @param pStorage the pointer to temporary storage
1992 * @param Result the last failure code
1993 * @return result from set temperature range routine
1995 int iceland_thermal_setup_fan_table(struct pp_hwmgr
*hwmgr
)
1997 struct smu7_smumgr
*smu7_data
= (struct smu7_smumgr
*)(hwmgr
->smumgr
->backend
);
1998 SMU71_Discrete_FanTable fan_table
= { FDO_MODE_HARDWARE
};
2000 uint32_t t_diff1
, t_diff2
, pwm_diff1
, pwm_diff2
;
2001 uint16_t fdo_min
, slope1
, slope2
;
2002 uint32_t reference_clock
;
2006 if (!phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
, PHM_PlatformCaps_MicrocodeFanControl
))
2009 if (hwmgr
->thermal_controller
.fanInfo
.bNoFan
) {
2010 phm_cap_unset(hwmgr
->platform_descriptor
.platformCaps
,
2011 PHM_PlatformCaps_MicrocodeFanControl
);
2015 if (0 == smu7_data
->fan_table_start
) {
2016 phm_cap_unset(hwmgr
->platform_descriptor
.platformCaps
, PHM_PlatformCaps_MicrocodeFanControl
);
2020 duty100
= PHM_READ_VFPF_INDIRECT_FIELD(hwmgr
->device
, CGS_IND_REG__SMC
, CG_FDO_CTRL1
, FMAX_DUTY100
);
2023 phm_cap_unset(hwmgr
->platform_descriptor
.platformCaps
, PHM_PlatformCaps_MicrocodeFanControl
);
2027 tmp64
= hwmgr
->thermal_controller
.advanceFanControlParameters
.usPWMMin
* duty100
;
2028 do_div(tmp64
, 10000);
2029 fdo_min
= (uint16_t)tmp64
;
2031 t_diff1
= hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMed
- hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMin
;
2032 t_diff2
= hwmgr
->thermal_controller
.advanceFanControlParameters
.usTHigh
- hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMed
;
2034 pwm_diff1
= hwmgr
->thermal_controller
.advanceFanControlParameters
.usPWMMed
- hwmgr
->thermal_controller
.advanceFanControlParameters
.usPWMMin
;
2035 pwm_diff2
= hwmgr
->thermal_controller
.advanceFanControlParameters
.usPWMHigh
- hwmgr
->thermal_controller
.advanceFanControlParameters
.usPWMMed
;
2037 slope1
= (uint16_t)((50 + ((16 * duty100
* pwm_diff1
) / t_diff1
)) / 100);
2038 slope2
= (uint16_t)((50 + ((16 * duty100
* pwm_diff2
) / t_diff2
)) / 100);
2040 fan_table
.TempMin
= cpu_to_be16((50 + hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMin
) / 100);
2041 fan_table
.TempMed
= cpu_to_be16((50 + hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMed
) / 100);
2042 fan_table
.TempMax
= cpu_to_be16((50 + hwmgr
->thermal_controller
.advanceFanControlParameters
.usTMax
) / 100);
2044 fan_table
.Slope1
= cpu_to_be16(slope1
);
2045 fan_table
.Slope2
= cpu_to_be16(slope2
);
2047 fan_table
.FdoMin
= cpu_to_be16(fdo_min
);
2049 fan_table
.HystDown
= cpu_to_be16(hwmgr
->thermal_controller
.advanceFanControlParameters
.ucTHyst
);
2051 fan_table
.HystUp
= cpu_to_be16(1);
2053 fan_table
.HystSlope
= cpu_to_be16(1);
2055 fan_table
.TempRespLim
= cpu_to_be16(5);
2057 reference_clock
= smu7_get_xclk(hwmgr
);
2059 fan_table
.RefreshPeriod
= cpu_to_be32((hwmgr
->thermal_controller
.advanceFanControlParameters
.ulCycleDelay
* reference_clock
) / 1600);
2061 fan_table
.FdoMax
= cpu_to_be16((uint16_t)duty100
);
2063 fan_table
.TempSrc
= (uint8_t)PHM_READ_VFPF_INDIRECT_FIELD(hwmgr
->device
, CGS_IND_REG__SMC
, CG_MULT_THERMAL_CTRL
, TEMP_SEL
);
2065 /* fan_table.FanControl_GL_Flag = 1; */
2067 res
= smu7_copy_bytes_to_smc(hwmgr
->smumgr
, smu7_data
->fan_table_start
, (uint8_t *)&fan_table
, (uint32_t)sizeof(fan_table
), SMC_RAM_END
);
2073 static int iceland_program_mem_timing_parameters(struct pp_hwmgr
*hwmgr
)
2075 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
2077 if (data
->need_update_smu7_dpm_table
&
2078 (DPMTABLE_OD_UPDATE_SCLK
+ DPMTABLE_OD_UPDATE_MCLK
))
2079 return iceland_program_memory_timing_parameters(hwmgr
);
2084 int iceland_update_sclk_threshold(struct pp_hwmgr
*hwmgr
)
2086 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
2087 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
2090 uint32_t low_sclk_interrupt_threshold
= 0;
2092 if (phm_cap_enabled(hwmgr
->platform_descriptor
.platformCaps
,
2093 PHM_PlatformCaps_SclkThrottleLowNotification
)
2094 && (hwmgr
->gfx_arbiter
.sclk_threshold
!=
2095 data
->low_sclk_interrupt_threshold
)) {
2096 data
->low_sclk_interrupt_threshold
=
2097 hwmgr
->gfx_arbiter
.sclk_threshold
;
2098 low_sclk_interrupt_threshold
=
2099 data
->low_sclk_interrupt_threshold
;
2101 CONVERT_FROM_HOST_TO_SMC_UL(low_sclk_interrupt_threshold
);
2103 result
= smu7_copy_bytes_to_smc(
2105 smu_data
->smu7_data
.dpm_table_start
+
2106 offsetof(SMU71_Discrete_DpmTable
,
2107 LowSclkInterruptThreshold
),
2108 (uint8_t *)&low_sclk_interrupt_threshold
,
2113 result
= iceland_update_and_upload_mc_reg_table(hwmgr
);
2115 PP_ASSERT_WITH_CODE((0 == result
), "Failed to upload MC reg table!", return result
);
2117 result
= iceland_program_mem_timing_parameters(hwmgr
);
2118 PP_ASSERT_WITH_CODE((result
== 0),
2119 "Failed to program memory timing parameters!",
2125 uint32_t iceland_get_offsetof(uint32_t type
, uint32_t member
)
2128 case SMU_SoftRegisters
:
2130 case HandshakeDisables
:
2131 return offsetof(SMU71_SoftRegisters
, HandshakeDisables
);
2132 case VoltageChangeTimeout
:
2133 return offsetof(SMU71_SoftRegisters
, VoltageChangeTimeout
);
2134 case AverageGraphicsActivity
:
2135 return offsetof(SMU71_SoftRegisters
, AverageGraphicsActivity
);
2137 return offsetof(SMU71_SoftRegisters
, PreVBlankGap
);
2139 return offsetof(SMU71_SoftRegisters
, VBlankTimeout
);
2140 case UcodeLoadStatus
:
2141 return offsetof(SMU71_SoftRegisters
, UcodeLoadStatus
);
2143 case SMU_Discrete_DpmTable
:
2145 case LowSclkInterruptThreshold
:
2146 return offsetof(SMU71_Discrete_DpmTable
, LowSclkInterruptThreshold
);
2149 printk(KERN_WARNING
"can't get the offset of type %x member %x\n", type
, member
);
2153 uint32_t iceland_get_mac_definition(uint32_t value
)
2156 case SMU_MAX_LEVELS_GRAPHICS
:
2157 return SMU71_MAX_LEVELS_GRAPHICS
;
2158 case SMU_MAX_LEVELS_MEMORY
:
2159 return SMU71_MAX_LEVELS_MEMORY
;
2160 case SMU_MAX_LEVELS_LINK
:
2161 return SMU71_MAX_LEVELS_LINK
;
2162 case SMU_MAX_ENTRIES_SMIO
:
2163 return SMU71_MAX_ENTRIES_SMIO
;
2164 case SMU_MAX_LEVELS_VDDC
:
2165 return SMU71_MAX_LEVELS_VDDC
;
2166 case SMU_MAX_LEVELS_VDDCI
:
2167 return SMU71_MAX_LEVELS_VDDCI
;
2168 case SMU_MAX_LEVELS_MVDD
:
2169 return SMU71_MAX_LEVELS_MVDD
;
2172 printk(KERN_WARNING
"can't get the mac of %x\n", value
);
2177 * Get the location of various tables inside the FW image.
2179 * @param hwmgr the address of the powerplay hardware manager.
2182 int iceland_process_firmware_header(struct pp_hwmgr
*hwmgr
)
2184 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
2185 struct smu7_smumgr
*smu7_data
= (struct smu7_smumgr
*)(hwmgr
->smumgr
->backend
);
2191 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2192 SMU71_FIRMWARE_HEADER_LOCATION
+
2193 offsetof(SMU71_Firmware_Header
, DpmTable
),
2197 smu7_data
->dpm_table_start
= tmp
;
2200 error
|= (0 != result
);
2202 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2203 SMU71_FIRMWARE_HEADER_LOCATION
+
2204 offsetof(SMU71_Firmware_Header
, SoftRegisters
),
2208 data
->soft_regs_start
= tmp
;
2209 smu7_data
->soft_regs_start
= tmp
;
2212 error
|= (0 != result
);
2215 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2216 SMU71_FIRMWARE_HEADER_LOCATION
+
2217 offsetof(SMU71_Firmware_Header
, mcRegisterTable
),
2221 smu7_data
->mc_reg_table_start
= tmp
;
2224 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2225 SMU71_FIRMWARE_HEADER_LOCATION
+
2226 offsetof(SMU71_Firmware_Header
, FanTable
),
2230 smu7_data
->fan_table_start
= tmp
;
2233 error
|= (0 != result
);
2235 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2236 SMU71_FIRMWARE_HEADER_LOCATION
+
2237 offsetof(SMU71_Firmware_Header
, mcArbDramTimingTable
),
2241 smu7_data
->arb_table_start
= tmp
;
2244 error
|= (0 != result
);
2247 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2248 SMU71_FIRMWARE_HEADER_LOCATION
+
2249 offsetof(SMU71_Firmware_Header
, Version
),
2253 hwmgr
->microcode_version_info
.SMC
= tmp
;
2256 error
|= (0 != result
);
2258 result
= smu7_read_smc_sram_dword(hwmgr
->smumgr
,
2259 SMU71_FIRMWARE_HEADER_LOCATION
+
2260 offsetof(SMU71_Firmware_Header
, UlvSettings
),
2264 smu7_data
->ulv_setting_starts
= tmp
;
2267 error
|= (0 != result
);
2269 return error
? 1 : 0;
2272 /*---------------------------MC----------------------------*/
2274 static uint8_t iceland_get_memory_modile_index(struct pp_hwmgr
*hwmgr
)
2276 return (uint8_t) (0xFF & (cgs_read_register(hwmgr
->device
, mmBIOS_SCRATCH_4
) >> 16));
2279 static bool iceland_check_s0_mc_reg_index(uint16_t in_reg
, uint16_t *out_reg
)
2284 case mmMC_SEQ_RAS_TIMING
:
2285 *out_reg
= mmMC_SEQ_RAS_TIMING_LP
;
2288 case mmMC_SEQ_DLL_STBY
:
2289 *out_reg
= mmMC_SEQ_DLL_STBY_LP
;
2292 case mmMC_SEQ_G5PDX_CMD0
:
2293 *out_reg
= mmMC_SEQ_G5PDX_CMD0_LP
;
2296 case mmMC_SEQ_G5PDX_CMD1
:
2297 *out_reg
= mmMC_SEQ_G5PDX_CMD1_LP
;
2300 case mmMC_SEQ_G5PDX_CTRL
:
2301 *out_reg
= mmMC_SEQ_G5PDX_CTRL_LP
;
2304 case mmMC_SEQ_CAS_TIMING
:
2305 *out_reg
= mmMC_SEQ_CAS_TIMING_LP
;
2308 case mmMC_SEQ_MISC_TIMING
:
2309 *out_reg
= mmMC_SEQ_MISC_TIMING_LP
;
2312 case mmMC_SEQ_MISC_TIMING2
:
2313 *out_reg
= mmMC_SEQ_MISC_TIMING2_LP
;
2316 case mmMC_SEQ_PMG_DVS_CMD
:
2317 *out_reg
= mmMC_SEQ_PMG_DVS_CMD_LP
;
2320 case mmMC_SEQ_PMG_DVS_CTL
:
2321 *out_reg
= mmMC_SEQ_PMG_DVS_CTL_LP
;
2324 case mmMC_SEQ_RD_CTL_D0
:
2325 *out_reg
= mmMC_SEQ_RD_CTL_D0_LP
;
2328 case mmMC_SEQ_RD_CTL_D1
:
2329 *out_reg
= mmMC_SEQ_RD_CTL_D1_LP
;
2332 case mmMC_SEQ_WR_CTL_D0
:
2333 *out_reg
= mmMC_SEQ_WR_CTL_D0_LP
;
2336 case mmMC_SEQ_WR_CTL_D1
:
2337 *out_reg
= mmMC_SEQ_WR_CTL_D1_LP
;
2340 case mmMC_PMG_CMD_EMRS
:
2341 *out_reg
= mmMC_SEQ_PMG_CMD_EMRS_LP
;
2344 case mmMC_PMG_CMD_MRS
:
2345 *out_reg
= mmMC_SEQ_PMG_CMD_MRS_LP
;
2348 case mmMC_PMG_CMD_MRS1
:
2349 *out_reg
= mmMC_SEQ_PMG_CMD_MRS1_LP
;
2352 case mmMC_SEQ_PMG_TIMING
:
2353 *out_reg
= mmMC_SEQ_PMG_TIMING_LP
;
2356 case mmMC_PMG_CMD_MRS2
:
2357 *out_reg
= mmMC_SEQ_PMG_CMD_MRS2_LP
;
2360 case mmMC_SEQ_WR_CTL_2
:
2361 *out_reg
= mmMC_SEQ_WR_CTL_2_LP
;
2372 static int iceland_set_s0_mc_reg_index(struct iceland_mc_reg_table
*table
)
2377 for (i
= 0; i
< table
->last
; i
++) {
2378 table
->mc_reg_address
[i
].s0
=
2379 iceland_check_s0_mc_reg_index(table
->mc_reg_address
[i
].s1
, &address
)
2380 ? address
: table
->mc_reg_address
[i
].s1
;
2385 static int iceland_copy_vbios_smc_reg_table(const pp_atomctrl_mc_reg_table
*table
,
2386 struct iceland_mc_reg_table
*ni_table
)
2390 PP_ASSERT_WITH_CODE((table
->last
<= SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2391 "Invalid VramInfo table.", return -EINVAL
);
2392 PP_ASSERT_WITH_CODE((table
->num_entries
<= MAX_AC_TIMING_ENTRIES
),
2393 "Invalid VramInfo table.", return -EINVAL
);
2395 for (i
= 0; i
< table
->last
; i
++) {
2396 ni_table
->mc_reg_address
[i
].s1
= table
->mc_reg_address
[i
].s1
;
2398 ni_table
->last
= table
->last
;
2400 for (i
= 0; i
< table
->num_entries
; i
++) {
2401 ni_table
->mc_reg_table_entry
[i
].mclk_max
=
2402 table
->mc_reg_table_entry
[i
].mclk_max
;
2403 for (j
= 0; j
< table
->last
; j
++) {
2404 ni_table
->mc_reg_table_entry
[i
].mc_data
[j
] =
2405 table
->mc_reg_table_entry
[i
].mc_data
[j
];
2409 ni_table
->num_entries
= table
->num_entries
;
2415 * VBIOS omits some information to reduce size, we need to recover them here.
2416 * 1. when we see mmMC_SEQ_MISC1, bit[31:16] EMRS1, need to be write to mmMC_PMG_CMD_EMRS /_LP[15:0].
2417 * Bit[15:0] MRS, need to be update mmMC_PMG_CMD_MRS/_LP[15:0]
2418 * 2. when we see mmMC_SEQ_RESERVE_M, bit[15:0] EMRS2, need to be write to mmMC_PMG_CMD_MRS1/_LP[15:0].
2419 * 3. need to set these data for each clock range
2421 * @param hwmgr the address of the powerplay hardware manager.
2422 * @param table the address of MCRegTable
2425 static int iceland_set_mc_special_registers(struct pp_hwmgr
*hwmgr
,
2426 struct iceland_mc_reg_table
*table
)
2430 struct smu7_hwmgr
*data
= (struct smu7_hwmgr
*)(hwmgr
->backend
);
2432 for (i
= 0, j
= table
->last
; i
< table
->last
; i
++) {
2433 PP_ASSERT_WITH_CODE((j
< SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2434 "Invalid VramInfo table.", return -EINVAL
);
2436 switch (table
->mc_reg_address
[i
].s1
) {
2438 case mmMC_SEQ_MISC1
:
2439 temp_reg
= cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_EMRS
);
2440 table
->mc_reg_address
[j
].s1
= mmMC_PMG_CMD_EMRS
;
2441 table
->mc_reg_address
[j
].s0
= mmMC_SEQ_PMG_CMD_EMRS_LP
;
2442 for (k
= 0; k
< table
->num_entries
; k
++) {
2443 table
->mc_reg_table_entry
[k
].mc_data
[j
] =
2444 ((temp_reg
& 0xffff0000)) |
2445 ((table
->mc_reg_table_entry
[k
].mc_data
[i
] & 0xffff0000) >> 16);
2448 PP_ASSERT_WITH_CODE((j
< SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2449 "Invalid VramInfo table.", return -EINVAL
);
2451 temp_reg
= cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_MRS
);
2452 table
->mc_reg_address
[j
].s1
= mmMC_PMG_CMD_MRS
;
2453 table
->mc_reg_address
[j
].s0
= mmMC_SEQ_PMG_CMD_MRS_LP
;
2454 for (k
= 0; k
< table
->num_entries
; k
++) {
2455 table
->mc_reg_table_entry
[k
].mc_data
[j
] =
2456 (temp_reg
& 0xffff0000) |
2457 (table
->mc_reg_table_entry
[k
].mc_data
[i
] & 0x0000ffff);
2459 if (!data
->is_memory_gddr5
) {
2460 table
->mc_reg_table_entry
[k
].mc_data
[j
] |= 0x100;
2464 PP_ASSERT_WITH_CODE((j
<= SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2465 "Invalid VramInfo table.", return -EINVAL
);
2467 if (!data
->is_memory_gddr5
&& j
< SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
) {
2468 table
->mc_reg_address
[j
].s1
= mmMC_PMG_AUTO_CMD
;
2469 table
->mc_reg_address
[j
].s0
= mmMC_PMG_AUTO_CMD
;
2470 for (k
= 0; k
< table
->num_entries
; k
++) {
2471 table
->mc_reg_table_entry
[k
].mc_data
[j
] =
2472 (table
->mc_reg_table_entry
[k
].mc_data
[i
] & 0xffff0000) >> 16;
2475 PP_ASSERT_WITH_CODE((j
<= SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2476 "Invalid VramInfo table.", return -EINVAL
);
2481 case mmMC_SEQ_RESERVE_M
:
2482 temp_reg
= cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_MRS1
);
2483 table
->mc_reg_address
[j
].s1
= mmMC_PMG_CMD_MRS1
;
2484 table
->mc_reg_address
[j
].s0
= mmMC_SEQ_PMG_CMD_MRS1_LP
;
2485 for (k
= 0; k
< table
->num_entries
; k
++) {
2486 table
->mc_reg_table_entry
[k
].mc_data
[j
] =
2487 (temp_reg
& 0xffff0000) |
2488 (table
->mc_reg_table_entry
[k
].mc_data
[i
] & 0x0000ffff);
2491 PP_ASSERT_WITH_CODE((j
<= SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE
),
2492 "Invalid VramInfo table.", return -EINVAL
);
2506 static int iceland_set_valid_flag(struct iceland_mc_reg_table
*table
)
2509 for (i
= 0; i
< table
->last
; i
++) {
2510 for (j
= 1; j
< table
->num_entries
; j
++) {
2511 if (table
->mc_reg_table_entry
[j
-1].mc_data
[i
] !=
2512 table
->mc_reg_table_entry
[j
].mc_data
[i
]) {
2513 table
->validflag
|= (1<<i
);
2522 int iceland_initialize_mc_reg_table(struct pp_hwmgr
*hwmgr
)
2525 struct iceland_smumgr
*smu_data
= (struct iceland_smumgr
*)(hwmgr
->smumgr
->backend
);
2526 pp_atomctrl_mc_reg_table
*table
;
2527 struct iceland_mc_reg_table
*ni_table
= &smu_data
->mc_reg_table
;
2528 uint8_t module_index
= iceland_get_memory_modile_index(hwmgr
);
2530 table
= kzalloc(sizeof(pp_atomctrl_mc_reg_table
), GFP_KERNEL
);
2535 /* Program additional LP registers that are no longer programmed by VBIOS */
2536 cgs_write_register(hwmgr
->device
, mmMC_SEQ_RAS_TIMING_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_RAS_TIMING
));
2537 cgs_write_register(hwmgr
->device
, mmMC_SEQ_CAS_TIMING_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_CAS_TIMING
));
2538 cgs_write_register(hwmgr
->device
, mmMC_SEQ_DLL_STBY_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_DLL_STBY
));
2539 cgs_write_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CMD0_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CMD0
));
2540 cgs_write_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CMD1_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CMD1
));
2541 cgs_write_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CTRL_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_G5PDX_CTRL
));
2542 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_DVS_CMD_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_PMG_DVS_CMD
));
2543 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_DVS_CTL_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_PMG_DVS_CTL
));
2544 cgs_write_register(hwmgr
->device
, mmMC_SEQ_MISC_TIMING_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC_TIMING
));
2545 cgs_write_register(hwmgr
->device
, mmMC_SEQ_MISC_TIMING2_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_MISC_TIMING2
));
2546 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_CMD_EMRS_LP
, cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_EMRS
));
2547 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_CMD_MRS_LP
, cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_MRS
));
2548 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_CMD_MRS1_LP
, cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_MRS1
));
2549 cgs_write_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_D0_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_D0
));
2550 cgs_write_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_D1_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_D1
));
2551 cgs_write_register(hwmgr
->device
, mmMC_SEQ_RD_CTL_D0_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_RD_CTL_D0
));
2552 cgs_write_register(hwmgr
->device
, mmMC_SEQ_RD_CTL_D1_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_RD_CTL_D1
));
2553 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_TIMING_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_PMG_TIMING
));
2554 cgs_write_register(hwmgr
->device
, mmMC_SEQ_PMG_CMD_MRS2_LP
, cgs_read_register(hwmgr
->device
, mmMC_PMG_CMD_MRS2
));
2555 cgs_write_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_2_LP
, cgs_read_register(hwmgr
->device
, mmMC_SEQ_WR_CTL_2
));
2557 memset(table
, 0x00, sizeof(pp_atomctrl_mc_reg_table
));
2559 result
= atomctrl_initialize_mc_reg_table(hwmgr
, module_index
, table
);
2562 result
= iceland_copy_vbios_smc_reg_table(table
, ni_table
);
2565 iceland_set_s0_mc_reg_index(ni_table
);
2566 result
= iceland_set_mc_special_registers(hwmgr
, ni_table
);
2570 iceland_set_valid_flag(ni_table
);
2577 bool iceland_is_dpm_running(struct pp_hwmgr
*hwmgr
)
2579 return (1 == PHM_READ_INDIRECT_FIELD(hwmgr
->device
,
2580 CGS_IND_REG__SMC
, FEATURE_STATUS
, VOLTAGE_CONTROLLER_ON
))