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

Reviewed by: imp, Christos Longros
Pull Request: #1308
  • Loading branch information
daniloegea authored and bsdimp committed Jul 7, 2024
1 parent 4c6cf05 commit 12545b8
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 12545b8

Please sign in to comment.