For the dummy ACG fuses,need to disable ACG, otherwise
corruption will be caused.
Signed-off-by: Kenneth Feng <kenneth.feng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
        ppsmc_pptable->AcgGfxclkSpreadPercent = smc_dpm_table.acggfxclkspreadpercent;
        ppsmc_pptable->AcgGfxclkSpreadFreq = smc_dpm_table.acggfxclkspreadfreq;
 
+       /* 0xFFFF will disable the ACG feature */
+       if (!(hwmgr->feature_mask & PP_ACG_MASK)) {
+               ppsmc_pptable->AcgThresholdFreqHigh = 0xFFFF;
+               ppsmc_pptable->AcgThresholdFreqLow = 0xFFFF;
+       }
 
        return 0;
 }
 
        PP_SOCCLK_DPM_MASK = 0x1000,
        PP_DCEFCLK_DPM_MASK = 0x2000,
        PP_OVERDRIVE_MASK = 0x4000,
+       PP_ACG_MASK = 0x10000,
 };
 
 enum PHM_BackEnd_Magic {