drm User-defined mode not supported

Hi folks,

I have freebsd 14.2 installed on intel alderlake i5-12400 (integrated graphics). Recently I am keeping getting the below messages in dmesg

drmn0: [drm] User-defined mode not supported: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x60 0x5

I have the below line in my /boot/loader.conf
kern.vt.fb.default_mode="1024x768"

I have the below line in my /etc/rc.conf
kld_list="i915kms cuse"

I have the below package installed from pkg
# pkg info | grep drm
drm-61-kmod-6.1.92.1402000_3 DRM drivers modules

# dmesg | grep drmn0
drmn0: <drmn> on vgapci0
vgapci0: child drmn0 requested pci_enable_io
vgapci0: child drmn0 requested pci_enable_io
lkpi_iic0: <LinuxKPI I2C> on drmn0
lkpi_iic1: <LinuxKPI I2C> on drmn0
lkpi_iic2: <LinuxKPI I2C> on drmn0
lkpi_iic3: <LinuxKPI I2C> on drmn0
lkpi_iic4: <LinuxKPI I2C> on drmn0
lkpi_iic5: <LinuxKPI I2C> on drmn0
lkpi_iic6: <LinuxKPI I2C> on drmn0
lkpi_iic7: <LinuxKPI I2C> on drmn0
lkpi_iic8: <LinuxKPI I2C> on drmn0
drmn0: successfully loaded firmware image 'i915/adls_dmc_ver2_01.bin'
drmn0: [drm] Finished loading DMC firmware i915/adls_dmc_ver2_01.bin (v2.1)
[drm] Initialized i915 1.6.0 20201103 for drmn0 on minor 0
name=drmn0 id=i915drmfb flags=0x0 stride=4096
drmn0: [drm] User-defined mode not supported: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x60 0x5

Is there an easy fix to get rid of the kernel complain? Thanks very much!
 
The problem has been fixed by modifying "1024x768" to a supported mode (in my case "1920x1080"):

# cat /boot/loader.conf
kern.vt.fb.default_mode="1920x1080"
 
The problem has been fixed by modifying "1024x768" to a supported mode (in my case "1920x1080"):

# cat /boot/loader.conf
kern.vt.fb.default_mode="1920x1080"
This is too good to be true, unfortunately.

After opening the machine for 16 hours, I got the same complaints:
drmn0: [drm] User-defined mode not supported: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x60 0xa
drmn0: [drm] User-defined mode not supported: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x60 0x5
 
Back
Top