New Latutude 5520 - display and HDMI issue

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
kobusventer
Level 1
Level 1
Posts: 10
Joined: Tue Aug 03, 2021 10:55 am

New Latutude 5520 - display and HDMI issue

Post by kobusventer »

Hi Guys
I have received a new laptop from the Company i work for, and installed Mint 20.3 on it, with kernel 5.4.0-94.
However, I had problems from scratch, using the HDMI port, as it does not seem to initialize. I then upgraded the kernel to 5.4.0-96, which is currently active, however, the second display still does not initialize.

Code: Select all

xrandr --verbose
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 1366 x 768, current 1366 x 768, maximum 1366 x 768
default connected primary 1366x768+0+0 (0x535) normal (normal) 0mm x 0mm
	Identifier: 0x534
	Timestamp:  13132
	Subpixel:   unknown
	Clones:    
	CRTC:       0
	CRTCs:      0
	Transform:  1.000000 0.000000 0.000000
	            0.000000 1.000000 0.000000
	            0.000000 0.000000 1.000000
	           filter: 
	non-desktop: 0 
		supported: 0, 1
  1366x768 (0x535) 79.731MHz *current
        h: width  1366 start    0 end    0 total 1366 skew    0 clock  58.37KHz
        v: height  768 start    0 end    0 total  768           clock  76.00Hz
I might be wrong, but it seems to me that the issue is not with the HDMI port, but rater with the display driver?
I also ran the following

Code: Select all

inxi -F 
System:    Host: kobus-Lat-5520 Kernel: 5.4.0-96-generic x86_64 bits: 64 
           Desktop: Cinnamon 5.2.7 Distro: Linux Mint 20.3 Una 
Machine:   Type: Laptop System: Dell product: Latitude 5520 v: N/A 
           serial: <superuser/root required> 
           Mobo: Dell model: 0DPC2R v: A00 serial: <superuser/root required> UEFI: Dell 
           v: 1.13.0 date: 09/30/2021 
Battery:   ID-1: BAT0 charge: 62.4 Wh condition: 62.4/62.4 Wh (100%) 
CPU:       Topology: Quad Core model: 11th Gen Intel Core i5-1145G7 bits: 64 type: MT MCP 
           L2 cache: 8192 KiB 
           Speed: 536 MHz min/max: 400/4400 MHz Core speeds (MHz): 1: 671 2: 1049 3: 1187 
           4: 1075 5: 472 6: 1288 7: 933 8: 1200 
Graphics:  Device-1: Intel driver: N/A 
           Display: x11 server: X.Org 1.20.13 driver: fbdev 
           unloaded: modesetting,radeon,vesa resolution: 1366x768~76Hz 
           OpenGL: renderer: llvmpipe (LLVM 12.0.0 256 bits) v: 4.5 Mesa 21.0.3 
Audio:     Device-1: Intel driver: snd_hda_intel 
           Device-2: Plantronics USB2.0 Hub type: USB 
           driver: plantronics,snd-usb-audio,usbhid 
           Sound Server: ALSA v: k5.4.0-96-generic 
Network:   Device-1: Intel driver: iwlwifi 
           IF: wlp0s20f3 state: up mac: f4:46:37:42:ef:af 
           Device-2: Intel Ethernet I219-LM driver: e1000e 
           IF: enp0s31f6 state: up speed: 1000 Mbps duplex: full mac: f4:ee:08:d3:be:15 
Drives:    Local Storage: total: 704.24 GiB used: 118.34 GiB (16.8%) 
           ID-1: /dev/nvme0n1 vendor: SK Hynix model: BC711 NVMe 256GB size: 238.47 GiB 
           ID-2: /dev/sda type: USB vendor: Seagate model: Expansion Desk size: 465.76 GiB 
Partition: ID-1: / size: 233.24 GiB used: 51.23 GiB (22.0%) fs: ext4 dev: /dev/nvme0n1p2 
Sensors:   System Temperatures: cpu: 43.0 C mobo: N/A 
           Fan Speeds (RPM): N/A 
Info:      Processes: 305 Uptime: 4m Memory: 7.51 GiB used: 1.31 GiB (17.5%) Shell: bash 
           inxi: 3.0.38
I also updated the code:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash drm_kms_helper.edid_firmware=HDMI-A-1:edid/1920x1080.bin"
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
SMG
Level 25
Level 25
Posts: 31988
Joined: Sun Jul 26, 2020 6:15 pm
Location: USA

Re: New Latutude 5520 - display and HDMI issue

Post by SMG »

kobusventer wrote: Wed Jan 19, 2022 5:16 amI have received a new laptop from the Company i work for, and installed Mint 20.3 on it, with kernel 5.4.0-94.
The inxi data you posted indicates there is no graphics driver installed. The 5.4 kernel is too old to have the drivers for your 11th-gen Intel CPU.

Graphics: Device-1: Intel driver: N/A
Display: x11 server: X.Org 1.20.13 driver: fbdev
unloaded: modesetting,radeon,vesa resolution: 1366x768~76Hz
OpenGL: renderer: llvmpipe (LLVM 12.0.0 256 bits) v: 4.5 Mesa 21.0.3
kobusventer wrote: Wed Jan 19, 2022 5:16 amHowever, I had problems from scratch, using the HDMI port, as it does not seem to initialize. I then upgraded the kernel to 5.4.0-96, which is currently active, however, the second display still does not initialize.
You need to upgrade to the 5.13 kernel which is available in Update Manager.

Instructions for upgrading to the 5.13 kernel:
  • Open Update Manager.
  • Select View > Linux Kernels and click Continue.
  • Make sure 5.13 is selected on the left panel and then click the top-most option on the right panel. An "Install" button will appear.
  • Install the kernel and then reboot for it to become active.
kobusventer wrote: Wed Jan 19, 2022 5:16 amI also updated the code:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash drm_kms_helper.edid_firmware=HDMI-A-1:edid/1920x1080.bin"
Please remove the kernel parameter you added as that will mess up the ability of the graphics to work properly once you get the correct graphics driver installed.
Image
A woman typing on a laptop with LM20.3 Cinnamon.
Locked

Return to “Graphics Cards & Monitors”