472263ab274af1dcde379ebeb055c3c9a64aa260
[sfrench/cifs-2.6.git] / drivers / gpu / drm / amd / powerplay / hwmgr / hwmgr.c
1 /*
2  * Copyright 2015 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23
24 #include "pp_debug.h"
25 #include <linux/delay.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/types.h>
29 #include <linux/pci.h>
30 #include <drm/amdgpu_drm.h>
31 #include "power_state.h"
32 #include "hwmgr.h"
33 #include "ppsmc.h"
34 #include "amd_acpi.h"
35 #include "pp_psm.h"
36
37 extern const struct pp_smumgr_func ci_smu_funcs;
38 extern const struct pp_smumgr_func smu8_smu_funcs;
39 extern const struct pp_smumgr_func iceland_smu_funcs;
40 extern const struct pp_smumgr_func tonga_smu_funcs;
41 extern const struct pp_smumgr_func fiji_smu_funcs;
42 extern const struct pp_smumgr_func polaris10_smu_funcs;
43 extern const struct pp_smumgr_func vegam_smu_funcs;
44 extern const struct pp_smumgr_func vega10_smu_funcs;
45 extern const struct pp_smumgr_func vega12_smu_funcs;
46 extern const struct pp_smumgr_func smu10_smu_funcs;
47 extern const struct pp_smumgr_func vega20_smu_funcs;
48
49 extern int smu7_init_function_pointers(struct pp_hwmgr *hwmgr);
50 extern int smu8_init_function_pointers(struct pp_hwmgr *hwmgr);
51 extern int vega10_hwmgr_init(struct pp_hwmgr *hwmgr);
52 extern int vega12_hwmgr_init(struct pp_hwmgr *hwmgr);
53 extern int vega20_hwmgr_init(struct pp_hwmgr *hwmgr);
54 extern int smu10_init_function_pointers(struct pp_hwmgr *hwmgr);
55
56 static int polaris_set_asic_special_caps(struct pp_hwmgr *hwmgr);
57 static void hwmgr_init_default_caps(struct pp_hwmgr *hwmgr);
58 static int hwmgr_set_user_specify_caps(struct pp_hwmgr *hwmgr);
59 static int fiji_set_asic_special_caps(struct pp_hwmgr *hwmgr);
60 static int tonga_set_asic_special_caps(struct pp_hwmgr *hwmgr);
61 static int topaz_set_asic_special_caps(struct pp_hwmgr *hwmgr);
62 static int ci_set_asic_special_caps(struct pp_hwmgr *hwmgr);
63
64
65 static void hwmgr_init_workload_prority(struct pp_hwmgr *hwmgr)
66 {
67         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT] = 0;
68         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_FULLSCREEN3D] = 1;
69         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_POWERSAVING] = 2;
70         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_VIDEO] = 3;
71         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_VR] = 4;
72         hwmgr->workload_prority[PP_SMC_POWER_PROFILE_COMPUTE] = 5;
73
74         hwmgr->workload_setting[0] = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
75         hwmgr->workload_setting[1] = PP_SMC_POWER_PROFILE_FULLSCREEN3D;
76         hwmgr->workload_setting[2] = PP_SMC_POWER_PROFILE_POWERSAVING;
77         hwmgr->workload_setting[3] = PP_SMC_POWER_PROFILE_VIDEO;
78         hwmgr->workload_setting[4] = PP_SMC_POWER_PROFILE_VR;
79         hwmgr->workload_setting[5] = PP_SMC_POWER_PROFILE_COMPUTE;
80 }
81
82 int hwmgr_early_init(struct pp_hwmgr *hwmgr)
83 {
84         if (!hwmgr)
85                 return -EINVAL;
86
87         hwmgr->usec_timeout = AMD_MAX_USEC_TIMEOUT;
88         hwmgr->pp_table_version = PP_TABLE_V1;
89         hwmgr->dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
90         hwmgr->request_dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
91         hwmgr_init_default_caps(hwmgr);
92         hwmgr_set_user_specify_caps(hwmgr);
93         hwmgr->fan_ctrl_is_in_default_mode = true;
94         hwmgr_init_workload_prority(hwmgr);
95
96         switch (hwmgr->chip_family) {
97         case AMDGPU_FAMILY_CI:
98                 hwmgr->smumgr_funcs = &ci_smu_funcs;
99                 ci_set_asic_special_caps(hwmgr);
100                 hwmgr->feature_mask &= ~(PP_VBI_TIME_SUPPORT_MASK |
101                                          PP_ENABLE_GFX_CG_THRU_SMU |
102                                          PP_GFXOFF_MASK);
103                 hwmgr->pp_table_version = PP_TABLE_V0;
104                 hwmgr->od_enabled = false;
105                 smu7_init_function_pointers(hwmgr);
106                 break;
107         case AMDGPU_FAMILY_CZ:
108                 hwmgr->od_enabled = false;
109                 hwmgr->smumgr_funcs = &smu8_smu_funcs;
110                 hwmgr->feature_mask &= ~PP_GFXOFF_MASK;
111                 smu8_init_function_pointers(hwmgr);
112                 break;
113         case AMDGPU_FAMILY_VI:
114                 hwmgr->feature_mask &= ~PP_GFXOFF_MASK;
115                 switch (hwmgr->chip_id) {
116                 case CHIP_TOPAZ:
117                         hwmgr->smumgr_funcs = &iceland_smu_funcs;
118                         topaz_set_asic_special_caps(hwmgr);
119                         hwmgr->feature_mask &= ~ (PP_VBI_TIME_SUPPORT_MASK |
120                                                 PP_ENABLE_GFX_CG_THRU_SMU);
121                         hwmgr->pp_table_version = PP_TABLE_V0;
122                         hwmgr->od_enabled = false;
123                         break;
124                 case CHIP_TONGA:
125                         hwmgr->smumgr_funcs = &tonga_smu_funcs;
126                         tonga_set_asic_special_caps(hwmgr);
127                         hwmgr->feature_mask &= ~PP_VBI_TIME_SUPPORT_MASK;
128                         break;
129                 case CHIP_FIJI:
130                         hwmgr->smumgr_funcs = &fiji_smu_funcs;
131                         fiji_set_asic_special_caps(hwmgr);
132                         hwmgr->feature_mask &= ~ (PP_VBI_TIME_SUPPORT_MASK |
133                                                 PP_ENABLE_GFX_CG_THRU_SMU);
134                         break;
135                 case CHIP_POLARIS11:
136                 case CHIP_POLARIS10:
137                 case CHIP_POLARIS12:
138                         hwmgr->smumgr_funcs = &polaris10_smu_funcs;
139                         polaris_set_asic_special_caps(hwmgr);
140                         hwmgr->feature_mask &= ~(PP_UVD_HANDSHAKE_MASK);
141                         break;
142                 case CHIP_VEGAM:
143                         hwmgr->smumgr_funcs = &vegam_smu_funcs;
144                         polaris_set_asic_special_caps(hwmgr);
145                         hwmgr->feature_mask &= ~(PP_UVD_HANDSHAKE_MASK);
146                         break;
147                 default:
148                         return -EINVAL;
149                 }
150                 smu7_init_function_pointers(hwmgr);
151                 break;
152         case AMDGPU_FAMILY_AI:
153                 switch (hwmgr->chip_id) {
154                 case CHIP_VEGA10:
155                         hwmgr->feature_mask &= ~PP_GFXOFF_MASK;
156                         hwmgr->smumgr_funcs = &vega10_smu_funcs;
157                         vega10_hwmgr_init(hwmgr);
158                         break;
159                 case CHIP_VEGA12:
160                         hwmgr->smumgr_funcs = &vega12_smu_funcs;
161                         vega12_hwmgr_init(hwmgr);
162                         break;
163                 case CHIP_VEGA20:
164                         hwmgr->feature_mask &= ~PP_GFXOFF_MASK;
165                         hwmgr->smumgr_funcs = &vega20_smu_funcs;
166                         vega20_hwmgr_init(hwmgr);
167                         break;
168                 default:
169                         return -EINVAL;
170                 }
171                 break;
172         case AMDGPU_FAMILY_RV:
173                 switch (hwmgr->chip_id) {
174                 case CHIP_RAVEN:
175                         hwmgr->od_enabled = false;
176                         hwmgr->smumgr_funcs = &smu10_smu_funcs;
177                         smu10_init_function_pointers(hwmgr);
178                         break;
179                 default:
180                         return -EINVAL;
181                 }
182                 break;
183         default:
184                 return -EINVAL;
185         }
186
187         return 0;
188 }
189
190 int hwmgr_sw_init(struct pp_hwmgr *hwmgr)
191 {
192         if (!hwmgr|| !hwmgr->smumgr_funcs || !hwmgr->smumgr_funcs->smu_init)
193                 return -EINVAL;
194
195         phm_register_irq_handlers(hwmgr);
196
197         return hwmgr->smumgr_funcs->smu_init(hwmgr);
198 }
199
200
201 int hwmgr_sw_fini(struct pp_hwmgr *hwmgr)
202 {
203         if (hwmgr && hwmgr->smumgr_funcs && hwmgr->smumgr_funcs->smu_fini)
204                 hwmgr->smumgr_funcs->smu_fini(hwmgr);
205
206         return 0;
207 }
208
209 int hwmgr_hw_init(struct pp_hwmgr *hwmgr)
210 {
211         int ret = 0;
212
213         if (!hwmgr->pm_en)
214                 return 0;
215
216         if (!hwmgr->pptable_func ||
217             !hwmgr->pptable_func->pptable_init ||
218             !hwmgr->hwmgr_func->backend_init) {
219                 hwmgr->pm_en = false;
220                 pr_info("dpm not supported \n");
221                 return 0;
222         }
223
224         ret = hwmgr->pptable_func->pptable_init(hwmgr);
225         if (ret)
226                 goto err;
227
228         ((struct amdgpu_device *)hwmgr->adev)->pm.no_fan =
229                                 hwmgr->thermal_controller.fanInfo.bNoFan;
230
231         ret = hwmgr->hwmgr_func->backend_init(hwmgr);
232         if (ret)
233                 goto err1;
234  /* make sure dc limits are valid */
235         if ((hwmgr->dyn_state.max_clock_voltage_on_dc.sclk == 0) ||
236                         (hwmgr->dyn_state.max_clock_voltage_on_dc.mclk == 0))
237                         hwmgr->dyn_state.max_clock_voltage_on_dc =
238                                         hwmgr->dyn_state.max_clock_voltage_on_ac;
239
240         ret = psm_init_power_state_table(hwmgr);
241         if (ret)
242                 goto err2;
243
244         ret = phm_setup_asic(hwmgr);
245         if (ret)
246                 goto err2;
247
248         ret = phm_enable_dynamic_state_management(hwmgr);
249         if (ret)
250                 goto err2;
251         ret = phm_start_thermal_controller(hwmgr);
252         ret |= psm_set_performance_states(hwmgr);
253         if (ret)
254                 goto err2;
255
256         ((struct amdgpu_device *)hwmgr->adev)->pm.dpm_enabled = true;
257
258         return 0;
259 err2:
260         if (hwmgr->hwmgr_func->backend_fini)
261                 hwmgr->hwmgr_func->backend_fini(hwmgr);
262 err1:
263         if (hwmgr->pptable_func->pptable_fini)
264                 hwmgr->pptable_func->pptable_fini(hwmgr);
265 err:
266         return ret;
267 }
268
269 int hwmgr_hw_fini(struct pp_hwmgr *hwmgr)
270 {
271         if (!hwmgr || !hwmgr->pm_en)
272                 return 0;
273
274         phm_stop_thermal_controller(hwmgr);
275         psm_set_boot_states(hwmgr);
276         psm_adjust_power_state_dynamic(hwmgr, false, NULL);
277         phm_disable_dynamic_state_management(hwmgr);
278         phm_disable_clock_power_gatings(hwmgr);
279
280         if (hwmgr->hwmgr_func->backend_fini)
281                 hwmgr->hwmgr_func->backend_fini(hwmgr);
282         if (hwmgr->pptable_func->pptable_fini)
283                 hwmgr->pptable_func->pptable_fini(hwmgr);
284         return psm_fini_power_state_table(hwmgr);
285 }
286
287 int hwmgr_suspend(struct pp_hwmgr *hwmgr)
288 {
289         int ret = 0;
290
291         if (!hwmgr || !hwmgr->pm_en)
292                 return 0;
293
294         phm_disable_smc_firmware_ctf(hwmgr);
295         ret = psm_set_boot_states(hwmgr);
296         if (ret)
297                 return ret;
298         ret = psm_adjust_power_state_dynamic(hwmgr, false, NULL);
299         if (ret)
300                 return ret;
301         ret = phm_power_down_asic(hwmgr);
302
303         return ret;
304 }
305
306 int hwmgr_resume(struct pp_hwmgr *hwmgr)
307 {
308         int ret = 0;
309
310         if (!hwmgr)
311                 return -EINVAL;
312
313         if (!hwmgr->pm_en)
314                 return 0;
315
316         ret = phm_setup_asic(hwmgr);
317         if (ret)
318                 return ret;
319
320         ret = phm_enable_dynamic_state_management(hwmgr);
321         if (ret)
322                 return ret;
323         ret = phm_start_thermal_controller(hwmgr);
324         ret |= psm_set_performance_states(hwmgr);
325         if (ret)
326                 return ret;
327
328         ret = psm_adjust_power_state_dynamic(hwmgr, false, NULL);
329
330         return ret;
331 }
332
333 static enum PP_StateUILabel power_state_convert(enum amd_pm_state_type  state)
334 {
335         switch (state) {
336         case POWER_STATE_TYPE_BATTERY:
337                 return PP_StateUILabel_Battery;
338         case POWER_STATE_TYPE_BALANCED:
339                 return PP_StateUILabel_Balanced;
340         case POWER_STATE_TYPE_PERFORMANCE:
341                 return PP_StateUILabel_Performance;
342         default:
343                 return PP_StateUILabel_None;
344         }
345 }
346
347 int hwmgr_handle_task(struct pp_hwmgr *hwmgr, enum amd_pp_task task_id,
348                 enum amd_pm_state_type *user_state)
349 {
350         int ret = 0;
351
352         if (hwmgr == NULL)
353                 return -EINVAL;
354
355         switch (task_id) {
356         case AMD_PP_TASK_DISPLAY_CONFIG_CHANGE:
357                 ret = phm_set_cpu_power_state(hwmgr);
358                 if (ret)
359                         return ret;
360                 ret = psm_set_performance_states(hwmgr);
361                 if (ret)
362                         return ret;
363                 ret = psm_adjust_power_state_dynamic(hwmgr, false, NULL);
364                 break;
365         case AMD_PP_TASK_ENABLE_USER_STATE:
366         {
367                 enum PP_StateUILabel requested_ui_label;
368                 struct pp_power_state *requested_ps = NULL;
369
370                 if (user_state == NULL) {
371                         ret = -EINVAL;
372                         break;
373                 }
374
375                 requested_ui_label = power_state_convert(*user_state);
376                 ret = psm_set_user_performance_state(hwmgr, requested_ui_label, &requested_ps);
377                 if (ret)
378                         return ret;
379                 ret = psm_adjust_power_state_dynamic(hwmgr, false, requested_ps);
380                 break;
381         }
382         case AMD_PP_TASK_COMPLETE_INIT:
383         case AMD_PP_TASK_READJUST_POWER_STATE:
384                 ret = psm_adjust_power_state_dynamic(hwmgr, false, NULL);
385                 break;
386         default:
387                 break;
388         }
389         return ret;
390 }
391
392 void hwmgr_init_default_caps(struct pp_hwmgr *hwmgr)
393 {
394         phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest);
395
396         phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_UVDDPM);
397         phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_VCEDPM);
398
399 #if defined(CONFIG_ACPI)
400         if (amdgpu_acpi_is_pcie_performance_request_supported(hwmgr->adev))
401                 phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest);
402 #endif
403
404         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
405                 PHM_PlatformCaps_DynamicPatchPowerState);
406
407         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
408                 PHM_PlatformCaps_EnableSMU7ThermalManagement);
409
410         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
411                         PHM_PlatformCaps_DynamicPowerManagement);
412
413         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
414                                         PHM_PlatformCaps_SMC);
415
416         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
417                                         PHM_PlatformCaps_DynamicUVDState);
418
419         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
420                                                 PHM_PlatformCaps_FanSpeedInTableIsRPM);
421         return;
422 }
423
424 int hwmgr_set_user_specify_caps(struct pp_hwmgr *hwmgr)
425 {
426         if (hwmgr->feature_mask & PP_SCLK_DEEP_SLEEP_MASK)
427                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
428                         PHM_PlatformCaps_SclkDeepSleep);
429         else
430                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
431                         PHM_PlatformCaps_SclkDeepSleep);
432
433         if (hwmgr->feature_mask & PP_POWER_CONTAINMENT_MASK) {
434                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
435                             PHM_PlatformCaps_PowerContainment);
436                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
437                         PHM_PlatformCaps_CAC);
438         } else {
439                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
440                             PHM_PlatformCaps_PowerContainment);
441                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
442                         PHM_PlatformCaps_CAC);
443         }
444
445         if (hwmgr->feature_mask & PP_OVERDRIVE_MASK)
446                 hwmgr->od_enabled = true;
447
448         return 0;
449 }
450
451 int polaris_set_asic_special_caps(struct pp_hwmgr *hwmgr)
452 {
453         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
454                                                 PHM_PlatformCaps_EVV);
455         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
456                                                 PHM_PlatformCaps_SQRamping);
457         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
458                                                 PHM_PlatformCaps_RegulatorHot);
459
460         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
461                                         PHM_PlatformCaps_AutomaticDCTransition);
462
463         if (hwmgr->chip_id != CHIP_POLARIS10)
464                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
465                                         PHM_PlatformCaps_SPLLShutdownSupport);
466
467         if (hwmgr->chip_id != CHIP_POLARIS11) {
468                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
469                                                         PHM_PlatformCaps_DBRamping);
470                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
471                                                         PHM_PlatformCaps_TDRamping);
472                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
473                                                         PHM_PlatformCaps_TCPRamping);
474         }
475         return 0;
476 }
477
478 int fiji_set_asic_special_caps(struct pp_hwmgr *hwmgr)
479 {
480         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
481                                                 PHM_PlatformCaps_EVV);
482         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
483                         PHM_PlatformCaps_SQRamping);
484         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
485                         PHM_PlatformCaps_DBRamping);
486         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
487                         PHM_PlatformCaps_TDRamping);
488         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
489                         PHM_PlatformCaps_TCPRamping);
490         return 0;
491 }
492
493 int tonga_set_asic_special_caps(struct pp_hwmgr *hwmgr)
494 {
495         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
496                                                 PHM_PlatformCaps_EVV);
497         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
498                         PHM_PlatformCaps_SQRamping);
499         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
500                         PHM_PlatformCaps_DBRamping);
501         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
502                         PHM_PlatformCaps_TDRamping);
503         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
504                         PHM_PlatformCaps_TCPRamping);
505
506         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
507                       PHM_PlatformCaps_UVDPowerGating);
508         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
509                       PHM_PlatformCaps_VCEPowerGating);
510         return 0;
511 }
512
513 int topaz_set_asic_special_caps(struct pp_hwmgr *hwmgr)
514 {
515         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
516                                                 PHM_PlatformCaps_EVV);
517         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
518                         PHM_PlatformCaps_SQRamping);
519         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
520                         PHM_PlatformCaps_DBRamping);
521         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
522                         PHM_PlatformCaps_TDRamping);
523         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
524                         PHM_PlatformCaps_TCPRamping);
525         return 0;
526 }
527
528 int ci_set_asic_special_caps(struct pp_hwmgr *hwmgr)
529 {
530         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
531                         PHM_PlatformCaps_SQRamping);
532         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
533                         PHM_PlatformCaps_DBRamping);
534         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
535                         PHM_PlatformCaps_TDRamping);
536         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
537                         PHM_PlatformCaps_TCPRamping);
538         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
539                         PHM_PlatformCaps_MemorySpreadSpectrumSupport);
540         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
541                         PHM_PlatformCaps_EngineSpreadSpectrumSupport);
542         return 0;
543 }