adreno_cmp_rev(ADRENO_REV(6, 3, 5, ANY_ID), info->rev)))
                adreno_gpu->base.hw_apriv = true;
 
+       /*
+        * For now only clamp to idle freq for devices where this is known not
+        * to cause power supply issues:
+        */
+       if (info && (info->revn == 618))
+               gpu->clamp_to_idle = true;
+
        a6xx_llc_slices_init(pdev, a6xx_gpu);
 
        ret = a6xx_set_supported_hw(&pdev->dev, config->rev);
 
        uint32_t suspend_count;
 
        struct msm_gpu_state *crashstate;
+
+       /* Enable clamping to idle freq when inactive: */
+       bool clamp_to_idle;
+
        /* True if the hardware supports expanded apriv (a650 and newer) */
        bool hw_apriv;
 
 
 
        idle_freq = get_freq(gpu);
 
-       msm_devfreq_target(&gpu->pdev->dev, &target_freq, 0);
+       if (gpu->clamp_to_idle)
+               msm_devfreq_target(&gpu->pdev->dev, &target_freq, 0);
 
        df->idle_time = ktime_get();
        df->idle_freq = idle_freq;