Skip to content

Commit 1783284

Browse files
committed
Support SMU of Vangogh GPU shipped with BIOS 113
1 parent 9d4828f commit 1783284

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

PowerControl/Helpers/AMD/VangoghGPU.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using CommonHelpers;
22
using System.Diagnostics;
33
using static CommonHelpers.Log;
4-
using Device = System.Tuple<string, ulong, ulong, uint>;
4+
using Device = System.Tuple<string, ulong, ulong, uint[]>;
55

66
namespace PowerControl.Helpers.AMD
77
{
@@ -10,7 +10,7 @@ internal class VangoghGPU : IDisposable
1010
public static readonly Device[] SupportedDevices =
1111
{
1212
// SteamDeck
13-
new Device("AMD Custom GPU 0405", 0x80300000, 0x8037ffff, 0x43F3900)
13+
new Device("AMD Custom GPU 0405", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05 })
1414
};
1515

1616
private static Device? DetectedDevice;
@@ -92,7 +92,7 @@ public static DetectionStatus Detect()
9292
}
9393

9494
var smuVersion = gpu.SMUVersion;
95-
if (smuVersion != device.Item4)
95+
if (!device.Item4.Contains(smuVersion))
9696
{
9797
TraceError("GPU: {0}: {1}: SMU not supported: {2:X8} (IO: {3})", deviceName, devicePNP, smuVersion, expectedRange);
9898
return DetectionStatus.Retryable;

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121
- Bug fixing to handle all known exceptions
2222
- Require to acknowledge when using function that might trigger `Anti-Cheat` protection via top-most window
2323
- GPU detection will log errors to `Sentry.io`
24+
- Support SMU of Vangogh GPU shipped with BIOS 113

0 commit comments

Comments
 (0)