Solved CURRENT halts on kldload amdgpu.ko

hi,
I'm using a Lenovo t495 laptop which according to should work out of the box.
However when I freshly install the OS, and try to
Code:
pkg install drm-kmod
kldload /boot/modules/amdgpu.ko
the system freezes.
the drm is a 20220501 version

setting
  • hw.syscons.disable=1
stops the system on boot even before loading kernel modules (I am using uefi boot)

probe:

I was so happy finally seeing support for my HW and got kinda confused why it crashes
 
System doesn't stop. hw.syscons.disable=1 disables the video framebuffer, so you don't see anything. Setting shouldn't be needed anymore though. Just remove it.
 
i've just installed RELEASE
Which supported RELEASE have you installed: 12.3, 13.0, 13.1 ?

pkg install drm-kmod
Try on 13.1-RELEASE graphics/drm-510-kmod. It needs to be build from ports, no package available on 13.1. Make sure to have the FreeBSD source installed when building the port.

From https://bsd-hardware.info/?probe=078888676a:
Code:
Device
Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile Series]
From drm-kmod 5.10-lts: https://github.com/freebsd/drm-kmod/blob/5.10-lts/drivers/gpu/drm/amd/amdgpu/psp_v10_0.c#L39
Code:
MODULE_FIRMWARE("amdgpu/raven_asd.bin");
MODULE_FIRMWARE("amdgpu/picasso_asd.bin");
MODULE_FIRMWARE("amdgpu/raven2_asd.bin");
MODULE_FIRMWARE("amdgpu/picasso_ta.bin");
MODULE_FIRMWARE("amdgpu/raven2_ta.bin");
MODULE_FIRMWARE("amdgpu/raven_ta.bin");
 
installing from port on RELEASE helped!
also /laptops could get an update, because t495 wifi worked out of the box on RELEASE too :D
very, very happy :3

ty all!
 
Back
Top