Just received an OEM AMD Radeon RX 6700 XT in the mail. I was able to get it at MSRP+Shipping, which is something of a miracle these days:


I will be interested in seeing what, if anything, the card does when powered up and plugged into the Compute Module 4 IO Board!
The following issues are closely related:
Current steps to get this card working with Pi OS Bookworm
Last updated: 2025-10-03
- Clone the Raspberry Pi Linux kernel patching the Raspberry Pi
rpi-6.15.y kernel tree with this patch
- Before compiling the kernel, run
make menuconfig and select the options:
1. Kernel Features > Page Size > 4 KB (for Box86 compatibility)
2. Device Drivers > Graphics support > AMD GPU (optionally SI/CIK support too)
- Recompile the kernel following Raspberry Pi's instructions
- Install the AMD firmware:
sudo apt install -y firmware-amd-graphics
- Reboot the Pi with the card attached using an appropriate PCIe riser and external ATX power supply.
Confirm everything is working by plugging a monitor into the graphics card; then confirm the card's GPU is in use by running glxinfo -B (part of the mesa-utils package), for example:
$ sudo apt install -y mesa-utils
$ DISPLAY=:0 glxinfo -B
name of display: :0
display: :0 screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
Vendor: AMD (0x1002)
Device: AMD Radeon RX 6700 XT (navi22, LLVM 15.0.6, DRM 3.54, 6.6.51-v8-16k+) (0x73df)
Version: 23.2.1
Accelerated: yes
Video memory: 12288MB
...
(Prepend DISPLAY=:0 if running commands over SSH.)
Just received an OEM AMD Radeon RX 6700 XT in the mail. I was able to get it at MSRP+Shipping, which is something of a miracle these days:
I will be interested in seeing what, if anything, the card does when powered up and plugged into the Compute Module 4 IO Board!
The following issues are closely related:
Current steps to get this card working with Pi OS Bookworm
Last updated: 2025-10-03
rpi-6.15.ykernel tree with this patchmake menuconfigand select the options:1. Kernel Features > Page Size > 4 KB (for Box86 compatibility)
2. Device Drivers > Graphics support > AMD GPU (optionally SI/CIK support too)
sudo apt install -y firmware-amd-graphicsConfirm everything is working by plugging a monitor into the graphics card; then confirm the card's GPU is in use by running
glxinfo -B(part of themesa-utilspackage), for example:(Prepend
DISPLAY=:0if running commands over SSH.)