Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fwget: add needed firmware for AMD Raphael GPUs #1308

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
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
Loading