How to change the load order of kernel modules?

I need to load amdgpu module before radeon module.
I tried to do /etc/modprobe.d/amd.conf:
blacklist radeon

sudo clr-boot-manager update

But it breaks of system

I have good experience to reorder this modules on ArchLinux this way:
https://wiki.archlinux.org/title/AMDGPU#Specify_the_correct_module_order

This works (both settings required together):

/etc/kernel/cmdline.d/amd.conf:
radeon.si_support=0
amdgpu.si_support=1
/etc/modprobe.d/amd.conf:
blacklist radeon
# or so
#softdep radeon pre: amdgpu
sudo clr-boot-manager update
reboot

But Gnome on Wayland laggy for me