git: f59662030254 - main - fwget: Update for Radeon RX 7900 XT (RDNA3) PCI-ID
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 17 Jan 2024 09:38:26 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=f59662030254e1bc4f7f135e7617e94b46385893 commit f59662030254e1bc4f7f135e7617e94b46385893 Author: Goran Mekić <meka@tilda.center> AuthorDate: 2024-01-17 09:36:37 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2024-01-17 09:38:07 +0000 fwget: Update for Radeon RX 7900 XT (RDNA3) PCI-ID Latest DRM/firmware added support for RDNA3 based GPUs, update fwget with the proper PCI ID. Differential Revision: https://reviews.freebsd.org/D43468 --- usr.sbin/fwget/pci/pci_video_amd | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/usr.sbin/fwget/pci/pci_video_amd b/usr.sbin/fwget/pci/pci_video_amd index b44eac1adf7b..2a1de7ccf574 100644 --- a/usr.sbin/fwget/pci/pci_video_amd +++ b/usr.sbin/fwget/pci/pci_video_amd @@ -135,5 +135,13 @@ pci_video_amd() 0x742*|0x743*) addpkg "gpu-firmware-amd-kmod-beige-goby" ;; + 0x744c) + addpkg "gpu-firmware-amd-kmod-dcn" + addpkg "gpu-firmware-amd-kmod-gc" + addpkg "gpu-firmware-amd-kmod-psp" + addpkg "gpu-firmware-amd-kmod-smu" + addpkg "gpu-firmware-amd-kmod-sdma" + addpkg "gpu-firmware-amd-kmod-vcn" + ;; esac }