Skip to content

Commit

Permalink
Add SteamDeck LCD F7A0131 BIOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
ayufan committed May 30, 2024
1 parent 874cf6f commit adffc31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 4 additions & 3 deletions PowerControl/Helpers/AMD/VangoghGPU.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ internal class VangoghGPU : IDisposable
public static readonly Device[] SupportedDevices =
{
// SteamDeck LCD
new Device("AMD Custom GPU 0405", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00 }),
// F7A0131 = 0x063F0F00
new Device("AMD Custom GPU 0405", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00, 0x063F0F00 }),

// SteamDeck OLED
// BIOS 105
Expand All @@ -20,8 +21,8 @@ internal class VangoghGPU : IDisposable

// SteamDeck unofficial APU drivers
// https://sourceforge.net/projects/amernimezone/files/Release%20Polaris-Vega-Navi/AMD%20SOC%20Driver%20Variant/
new Device("AMD Radeon 670M", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00 }),
new Device("AMD Radeon RX 670 Graphics", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00 }),
new Device("AMD Radeon 670M", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00, 0x063F0F00 }),
new Device("AMD Radeon RX 670 Graphics", 0x80300000, 0x8037ffff, new uint[] { 0x43F3900, 0x43F3C05, 0x43F3E00, 0x063F0F00 }),
};

private static Device? DetectedDevice;
Expand Down
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

## #{GIT_TAG_NAME}

- SteamDeck LCD: Support BIOS F7A0131

## 0.7.2

- PowerControl: Add Charge Limit (70%, 80%, 90%, 100%)

## 0.7.1
Expand Down

0 comments on commit adffc31

Please sign in to comment.