ayufan / steam-deck-tools

(Windows) Steam Deck Tools - Fan, Overlay, Power Control and Steam Controller for Windows
https://steam-deck-tools.ayufan.dev
Other
867 stars 63 forks source link

Cannot overclock beyond 1900 MHz on the GPU and over 23w on the CPU #158

Closed nightfire37 closed 10 months ago

nightfire37 commented 10 months ago

I mentioned this to you on the PC Gaming Handhelds Discord about a potential fix for this. I couldnt find out how to modify things with the PR so im posting it here. Sorry about my ability as I am not a programmer. I just know how to troubleshoot things really well.

The issue I am experiencing is that when Power Control is running with both the kernel driver loaded and unloaded, Power Control will limit its clocks to 1900 and the TDP to 23W. I have verified that when closed and restarted Windows with Power Control disabled on startup, my overclock works. I have verified this with HWINFO64 with the OSD running with RTSS.

I believe the settings that needs to be changed is in PowerControl/Helpers/AMD/VanGoghGPU.cs

Line 185 const uint MAX_TDP = 21000 - change this to something higher then 21000. To test we can try 35000.

Line 209 const uint MIN_CPU_CLOCK = 1400; - This can probably be lower to conserve on battery if anyone uses it for desktop applications.

Line 210 const uint MAX_CPU_CLOCK = 4000; - This can probably be set higher then 4000 in case for anything that happens to have the golden ticket with the silicon lottery

Line 223 const uint MAX_GFX_CLOCK = 1900; - This can probably be higher to maybe 2500 for anyone with the golden ticket of the silicon lottery.

nightfire37 commented 10 months ago

Closing issue. Was able to make a pull request