Skip to content

Commit

Permalink
fwget: add needed firmware for AMD Raphael GPUs
Browse files Browse the repository at this point in the history
This GPU is found in Ryzen 7000 series CPUs.

For future reference, the list of firmware versions for amdgpu drivers
can be found in [1].

[1] - https://docs.kernel.org/gpu/amdgpu/driver-misc.html
  • Loading branch information
daniloegea committed Jun 30, 2024
1 parent 4ce4a0f commit 255e987
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions usr.sbin/fwget/pci/pci_video_amd
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

pci_video_amd()
{
# A table listing the required firmware versions for each GPU series
# is available at https://docs.kernel.org/gpu/amdgpu/driver-misc.html

case "$1" in
0x678*|0x679*)
addpkg "gpu-firmware-amd-kmod-tahiti"
Expand Down Expand Up @@ -150,5 +153,12 @@ pci_video_amd()
addpkg "gpu-firmware-amd-kmod-sdma-6-0-1"
addpkg "gpu-firmware-amd-kmod-vcn-4-0-2"
;;
0x164e)
addpkg "gpu-firmware-amd-kmod-gc-10-3-6"
addpkg "gpu-firmware-amd-kmod-psp-13-0-5"
addpkg "gpu-firmware-amd-kmod-dcn-3-1-5"
addpkg "gpu-firmware-amd-kmod-sdma-5-2-6"
addpkg "gpu-firmware-amd-kmod-vcn-3-1-2"
;;
esac
}

Check warning on line 164 in usr.sbin/fwget/pci/pci_video_amd

View workflow job for this annotation

GitHub Actions / Style Checker

Missing Signed-off-by: line

0 comments on commit 255e987

Please sign in to comment.