You are not logged in.

#1 2023-04-02 21:33:42

BitLegend31
Member
Registered: 2023-02-15
Posts: 21

Xrandr doesn't show any other resolution

Greetings. To be honest I can't exactly tell what caused the problem, as I don't remember, but I can tell two problems due to it.
Firstly, as mentioned in the subject, the xrandr shows only one ( the other is a mode i did about 10 minutes ago using a guide ) resolution for my 2K monitor. Here's the xrandr output:

 Screen 0: minimum 8 x 8, current 2560 x 1600, maximum 32767 x 32767
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-4 connected primary 2560x1600+0+0 (normal left inverted right x axis y axis) 16mm x 10mm
   2560x1600     60.00 + 165.00* 
  2560x1600_165.00 (0x219) 1046.030MHz -HSync +VSync
        h: width  2560 start 2792 end 3080 total 3600 skew    0 clock 290.56KHz
        v: height 1600 start 1601 end 1604 total 1761           clock 165.00Hz

The other problem ( probably connected with the previous one ) is that everytime when loading grub boot loader it loads significantly slowly, from down side of the monitor to the up. The arrow buttons for choosing the boot manager to boot work after some delay.
If it's not connected please just ignore the second problem.
Thanks in advance !!!

Edited: my laptop has Geforce RTX 3070 Ti and AMD Radeon 680M. For some cases here's the output of lspci -k | grep -A 2 -E "(VGA|3D)"

01:00.0 VGA compatible controller: NVIDIA Corporation GA104M [Geforce RTX 3070 Ti Laptop GPU] (rev a1)
	Subsystem: Lenovo Device 3b09
	Kernel driver in use: nvidia
--
34:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Rembrandt [Radeon 680M] (rev c8)
	Subsystem: Lenovo Device 3b09
	Kernel driver in use: amdgpu

Last edited by BitLegend31 (2023-04-02 21:40:21)

Offline

#2 2023-04-03 07:02:12

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,349

Re: Xrandr doesn't show any other resolution

Check the edid for the output, /sys/class/drm/card*/edid, https://aur.archlinux.org/packages/edid-decode-git
If the output is wired to the nvidia GPU, you'll need to have enabled https://wiki.archlinux.org/title/NVIDIA … de_setting for the edid to be available this way.

How did you configure the hybrid graphics?
In doubt check your Xorg log, https://wiki.archlinux.org/title/Xorg#General

Offline

#3 2023-04-03 11:09:01

BitLegend31
Member
Registered: 2023-02-15
Posts: 21

Re: Xrandr doesn't show any other resolution

seth wrote:

Check the edid for the output, /sys/class/drm/card*/edid, https://aur.archlinux.org/packages/edid-decode-git
If the output is wired to the nvidia GPU, you'll need to have enabled https://wiki.archlinux.org/title/NVIDIA … de_setting for the edid to be available this way.

How did you configure the hybrid graphics?
In doubt check your Xorg log, https://wiki.archlinux.org/title/Xorg#General

Hello! Let me provide with all the required outputs you mentioned.
There are several "card" folders in /sys/class/drm directory, some of which also have DP-[1-4] ending. However by typing the same command as u did (w/ card*) i see that some of these folders don't have any edid files in it, and some have empty ones. Long thing short, the EDID files are empty.
I don't clearly know if I configured the hybrid graphics but this is the output of xorg.conf generated by nvidia-xconfig if it might be needed:

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 530.41.03

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 530.41.03

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "BOE Technology Group Co., Ltd"
    HorizSync       286.0 - 286.0
    VertRefresh     60.0 - 165.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce RTX 3070 Ti Laptop GPU"
    BusID          "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-5"
    Option         "metamodes" "2560x1600_165 +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Offline

#4 2023-04-03 11:41:44

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,349

Re: Xrandr doesn't show any other resolution

I don't clearly know if I configured the hybrid graphics but this is the output of xorg.conf generated by nvidia-xconfig if it might be needed:

Remove that file, read up https://wiki.archlinux.org/title/NVIDIA_Optimus and the sublinks, post your Xorg log, https://wiki.archlinux.org/title/Xorg#General

I didn't post any command, you need to use edid-decode to inspect the edids and the missing ones are most likely because you don't have drm enabled for nvidia (as mentioned before)

Offline

#5 2023-04-03 11:44:49

BitLegend31
Member
Registered: 2023-02-15
Posts: 21

Re: Xrandr doesn't show any other resolution

seth wrote:

I don't clearly know if I configured the hybrid graphics but this is the output of xorg.conf generated by nvidia-xconfig if it might be needed:

Remove that file, read up https://wiki.archlinux.org/title/NVIDIA_Optimus and the sublinks, post your Xorg log, https://wiki.archlinux.org/title/Xorg#General

I didn't post any command, you need to use edid-decode to inspect the edids and the missing ones are most likely because you don't have drm enabled for nvidia (as mentioned before)

Xorg.0.log:

[    11.138] 
X.Org X Server 1.21.1.7
X Protocol Version 11, Revision 0
[    11.138] Current Operating System: Linux archlinux 6.2.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 22 Mar 2023 22:52:35 +0000 x86_64
[    11.138] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=8bb8ee12-e1e8-448a-9acd-092c11f80da2 rw loglevel=3 quiet
[    11.138]  
[    11.138] Current version of pixman: 0.42.2
[    11.138] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    11.138] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    11.138] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr  3 14:52:11 2023
[    11.138] (==) Using config file: "/etc/X11/xorg.conf"
[    11.138] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    11.138] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    11.138] (==) ServerLayout "Layout0"
[    11.138] (**) |-->Screen "Screen0" (0)
[    11.138] (**) |   |-->Monitor "Monitor0"
[    11.138] (**) |   |-->Device "Device0"
[    11.138] (**) |-->Input Device "Keyboard0"
[    11.138] (**) |-->Input Device "Mouse0"
[    11.138] (**) Option "Xinerama" "0"
[    11.138] (==) Automatically adding devices
[    11.138] (==) Automatically enabling devices
[    11.138] (==) Automatically adding GPU devices
[    11.138] (==) Automatically binding GPU devices
[    11.138] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    11.138] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    11.138] 	Entry deleted from font path.
[    11.138] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    11.138] 	Entry deleted from font path.
[    11.138] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    11.138] 	Entry deleted from font path.
[    11.138] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    11.138] (==) ModulePath set to "/usr/lib/xorg/modules"
[    11.138] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    11.138] (WW) Disabling Keyboard0
[    11.138] (WW) Disabling Mouse0
[    11.138] (II) Module ABI versions:
[    11.138] 	X.Org ANSI C Emulation: 0.4
[    11.138] 	X.Org Video Driver: 25.2
[    11.138] 	X.Org XInput driver : 24.4
[    11.138] 	X.Org Server Extension : 10.0
[    11.139] (++) using VT number 7

[    11.139] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    11.139] (II) xfree86: Adding drm device (/dev/dri/card1)
[    11.139] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/drm/card1
[    11.139] (II) xfree86: Adding drm device (/dev/dri/card0)
[    11.139] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:34:00.0/drm/card0
[    11.140] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    11.141] (--) PCI:*(1@0:0:0) 10de:24e0:17aa:3b09 rev 161, Mem @ 0xb8000000/16777216, 0x7a00000000/8589934592, 0x7c00000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
[    11.141] (--) PCI: (52@0:0:0) 1002:1681:17aa:3b09 rev 200, Mem @ 0x7c40000000/268435456, 0x7c50000000/2097152, 0xb9800000/524288, I/O @ 0x00001000/256
[    11.141] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    11.141] (II) LoadModule: "glx"
[    11.141] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    11.142] (II) Module glx: vendor="X.Org Foundation"
[    11.142] 	compiled for 1.21.1.7, module version = 1.0.0
[    11.142] 	ABI class: X.Org Server Extension, version 10.0
[    11.142] (II) LoadModule: "nvidia"
[    11.142] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    11.142] (II) Module nvidia: vendor="NVIDIA Corporation"
[    11.142] 	compiled for 1.6.99.901, module version = 1.0.0
[    11.142] 	Module class: X.Org Video Driver
[    11.142] (II) NVIDIA dlloader X Driver  530.41.03  Thu Mar 16 19:25:45 UTC 2023
[    11.142] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    11.142] (II) Loading sub module "fb"
[    11.142] (II) LoadModule: "fb"
[    11.142] (II) Module "fb" already built-in
[    11.142] (II) Loading sub module "wfb"
[    11.142] (II) LoadModule: "wfb"
[    11.142] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    11.142] (II) Module wfb: vendor="X.Org Foundation"
[    11.142] 	compiled for 1.21.1.7, module version = 1.0.0
[    11.142] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    11.142] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    11.142] (==) NVIDIA(0): RGB weight 888
[    11.142] (==) NVIDIA(0): Default visual is TrueColor
[    11.142] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    11.142] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    11.142] (**) NVIDIA(0): Option "Stereo" "0"
[    11.142] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-5"
[    11.142] (**) NVIDIA(0): Option "SLI" "Off"
[    11.142] (**) NVIDIA(0): Option "MultiGPU" "Off"
[    11.142] (**) NVIDIA(0): Option "BaseMosaic" "off"
[    11.142] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    11.142] (**) NVIDIA(0): Stereo disabled by request
[    11.142] (**) NVIDIA(0): NVIDIA SLI disabled.
[    11.142] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[    11.142] (**) NVIDIA(0): Option "MetaModes" "2560x1600_165 +0+0"
[    11.143] (**) NVIDIA(0): Enabling 2D acceleration
[    11.143] (II) Loading sub module "glxserver_nvidia"
[    11.143] (II) LoadModule: "glxserver_nvidia"
[    11.143] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    11.146] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    11.146] 	compiled for 1.6.99.901, module version = 1.0.0
[    11.146] 	Module class: X.Org Server Extension
[    11.146] (II) NVIDIA GLX Module  530.41.03  Thu Mar 16 19:27:05 UTC 2023
[    11.146] (II) NVIDIA: The X server supports PRIME Render Offload.
[    11.147] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    11.147] (--) NVIDIA(0):     DFP-0
[    11.147] (--) NVIDIA(0):     DFP-1
[    11.147] (--) NVIDIA(0):     DFP-2
[    11.147] (--) NVIDIA(0):     DFP-3
[    11.147] (--) NVIDIA(0):     DFP-4
[    11.147] (--) NVIDIA(0):     DFP-5 (boot)
[    11.148] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 3070 Ti Laptop GPU (GA104-B) at
[    11.148] (II) NVIDIA(0):     PCI:1:0:0 (GPU-0)
[    11.148] (--) NVIDIA(0): Memory: 8388608 kBytes
[    11.148] (--) NVIDIA(0): VideoBIOS: 94.04.83.00.11
[    11.148] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    11.148] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    11.148] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    11.148] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.148] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    11.148] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    11.148] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.148] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    11.148] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    11.148] (--) NVIDIA(GPU-0): DFP-2: 2670.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.148] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    11.148] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    11.148] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.148] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    11.148] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    11.148] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.148] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): connected
[    11.148] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): Internal DisplayPort
[    11.148] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): 2670.0 MHz maximum pixel clock
[    11.148] (--) NVIDIA(GPU-0): 
[    11.158] (II) NVIDIA(0): Validated MetaModes:
[    11.158] (II) NVIDIA(0):     "2560x1600_165+0+0"
[    11.158] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1600
[    11.188] (--) NVIDIA(0): DPI set to (191, 193); computed from "UseEdidDpi" X config
[    11.188] (--) NVIDIA(0):     option
[    11.188] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[    11.188] (II) NVIDIA:     access.
[    11.197] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    11.197] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    11.197] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    11.197] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    11.197] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    11.197] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    11.197] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    11.197] (II) NVIDIA(0):     Config Options in the README.
[    11.208] (II) NVIDIA(0): Setting mode "2560x1600_165+0+0"
[    12.127] (==) NVIDIA(0): Disabling shared memory pixmaps
[    12.127] (==) NVIDIA(0): Backing store enabled
[    12.127] (==) NVIDIA(0): Silken mouse enabled
[    12.127] (**) NVIDIA(0): DPMS enabled
[    12.127] (II) Loading sub module "dri2"
[    12.127] (II) LoadModule: "dri2"
[    12.127] (II) Module "dri2" already built-in
[    12.127] (II) NVIDIA(0): [DRI2] Setup complete
[    12.127] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    12.127] (II) Initializing extension Generic Event Extension
[    12.127] (II) Initializing extension SHAPE
[    12.127] (II) Initializing extension MIT-SHM
[    12.127] (II) Initializing extension XInputExtension
[    12.127] (II) Initializing extension XTEST
[    12.127] (II) Initializing extension BIG-REQUESTS
[    12.128] (II) Initializing extension SYNC
[    12.128] (II) Initializing extension XKEYBOARD
[    12.128] (II) Initializing extension XC-MISC
[    12.128] (II) Initializing extension SECURITY
[    12.128] (II) Initializing extension XFIXES
[    12.128] (II) Initializing extension RENDER
[    12.128] (II) Initializing extension RANDR
[    12.128] (II) Initializing extension COMPOSITE
[    12.128] (II) Initializing extension DAMAGE
[    12.128] (II) Initializing extension MIT-SCREEN-SAVER
[    12.128] (II) Initializing extension DOUBLE-BUFFER
[    12.128] (II) Initializing extension RECORD
[    12.128] (II) Initializing extension DPMS
[    12.128] (II) Initializing extension Present
[    12.128] (II) Initializing extension DRI3
[    12.128] (II) Initializing extension X-Resource
[    12.128] (II) Initializing extension XVideo
[    12.128] (II) Initializing extension XVideo-MotionCompensation
[    12.128] (II) Initializing extension GLX
[    12.128] (II) Initializing extension GLX
[    12.128] (II) Indirect GLX disabled.
[    12.128] (II) GLX: Another vendor is already registered for screen 0
[    12.128] (II) Initializing extension XFree86-VidModeExtension
[    12.128] (II) Initializing extension XFree86-DGA
[    12.129] (II) Initializing extension XFree86-DRI
[    12.129] (II) Initializing extension DRI2
[    12.129] (II) Initializing extension NV-GLX
[    12.129] (II) Initializing extension NV-CONTROL
[    12.129] (II) Initializing extension XINERAMA
[    12.164] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[    12.164] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    12.164] (II) LoadModule: "libinput"
[    12.164] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    12.165] (II) Module libinput: vendor="X.Org Foundation"
[    12.165] 	compiled for 1.21.1.3, module version = 1.2.1
[    12.165] 	Module class: X.Org XInput Driver
[    12.165] 	ABI class: X.Org XInput driver, version 24.4
[    12.165] (II) Using input driver 'libinput' for 'Video Bus'
[    12.165] (**) Video Bus: always reports core events
[    12.165] (**) Option "Device" "/dev/input/event4"
[    12.166] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    12.166] (II) event4  - Video Bus: device is a keyboard
[    12.166] (II) event4  - Video Bus: device removed
[    12.258] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input4/event4"
[    12.258] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[    12.259] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    12.259] (II) event4  - Video Bus: device is a keyboard
[    12.259] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[    12.259] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    12.259] (II) Using input driver 'libinput' for 'Video Bus'
[    12.260] (**) Video Bus: always reports core events
[    12.260] (**) Option "Device" "/dev/input/event5"
[    12.260] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    12.260] (II) event5  - Video Bus: device is a keyboard
[    12.260] (II) event5  - Video Bus: device removed
[    12.318] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1d/LNXVIDEO:01/input/input5/event5"
[    12.318] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    12.319] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    12.319] (II) event5  - Video Bus: device is a keyboard
[    12.319] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    12.319] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    12.319] (II) Using input driver 'libinput' for 'Power Button'
[    12.319] (**) Power Button: always reports core events
[    12.319] (**) Option "Device" "/dev/input/event0"
[    12.320] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    12.320] (II) event0  - Power Button: device is a keyboard
[    12.320] (II) event0  - Power Button: device removed
[    12.344] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    12.344] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    12.345] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    12.345] (II) event0  - Power Button: device is a keyboard
[    12.345] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    12.345] (II) No input driver specified, ignoring this device.
[    12.345] (II) This device may have been added with another device file.
[    12.346] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[    12.346] (II) No input driver specified, ignoring this device.
[    12.346] (II) This device may have been added with another device file.
[    12.346] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[    12.346] (II) No input driver specified, ignoring this device.
[    12.346] (II) This device may have been added with another device file.
[    12.346] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[    12.346] (II) No input driver specified, ignoring this device.
[    12.346] (II) This device may have been added with another device file.
[    12.346] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[    12.346] (II) No input driver specified, ignoring this device.
[    12.346] (II) This device may have been added with another device file.
[    12.346] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Keyboard (/dev/input/event7)
[    12.346] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[    12.346] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[    12.346] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[    12.346] (**) Option "Device" "/dev/input/event7"
[    12.347] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[    12.347] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[    12.347] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[    12.371] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: needs a virtual subdevice
[    12.371] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:34:00.3/usb4/4-4/4-4:1.0/0003:048D:C102.0003/input/input7/event7"
[    12.371] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: MOUSE, id 9)
[    12.371] (**) Option "AccelerationScheme" "none"
[    12.371] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) selected scheme none/0
[    12.371] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration factor: 2.000
[    12.371] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration threshold: 4
[    12.372] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[    12.372] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[    12.372] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Wireless Radio Control (/dev/input/event10)
[    12.372] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[    12.372] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Wireless Radio Control'
[    12.372] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: always reports core events
[    12.372] (**) Option "Device" "/dev/input/event10"
[    12.373] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[    12.373] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[    12.373] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[    12.424] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:34:00.3/usb4/4-4/4-4:1.0/0003:048D:C102.0003/input/input8/event10"
[    12.424] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Wireless Radio Control" (type: KEYBOARD, id 10)
[    12.426] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[    12.426] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[    12.426] (II) config/udev: Adding input device HD-Audio Generic Headset Mic (/dev/input/event16)
[    12.426] (II) No input driver specified, ignoring this device.
[    12.426] (II) This device may have been added with another device file.
[    12.426] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event17)
[    12.426] (II) No input driver specified, ignoring this device.
[    12.426] (II) This device may have been added with another device file.
[    12.426] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8295) Keyboard (/dev/input/event3)
[    12.426] (**) ITE Tech. Inc. ITE Device(8295) Keyboard: Applying InputClass "libinput keyboard catchall"
[    12.426] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8295) Keyboard'
[    12.426] (**) ITE Tech. Inc. ITE Device(8295) Keyboard: always reports core events
[    12.426] (**) Option "Device" "/dev/input/event3"
[    12.427] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: is tagged by udev as: Keyboard
[    12.427] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: device is a keyboard
[    12.427] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: device removed
[    12.451] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:35:00.0/usb5/5-1/5-1:1.0/0003:048D:C975.0001/input/input3/event3"
[    12.451] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8295) Keyboard" (type: KEYBOARD, id 11)
[    12.452] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: is tagged by udev as: Keyboard
[    12.452] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: device is a keyboard
[    12.453] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event8)
[    12.453] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[    12.453] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[    12.453] (**) Ideapad extra buttons: always reports core events
[    12.453] (**) Option "Device" "/dev/input/event8"
[    12.453] (II) event8  - Ideapad extra buttons: is tagged by udev as: Keyboard
[    12.453] (II) event8  - Ideapad extra buttons: device is a keyboard
[    12.453] (II) event8  - Ideapad extra buttons: device removed
[    12.504] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/input/input12/event8"
[    12.504] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 12)
[    12.505] (II) event8  - Ideapad extra buttons: is tagged by udev as: Keyboard
[    12.505] (II) event8  - Ideapad extra buttons: device is a keyboard
[    12.505] (II) config/udev: Adding input device SYNA2BA6:00 06CB:CE78 Mouse (/dev/input/event9)
[    12.505] (**) SYNA2BA6:00 06CB:CE78 Mouse: Applying InputClass "libinput pointer catchall"
[    12.505] (II) Using input driver 'libinput' for 'SYNA2BA6:00 06CB:CE78 Mouse'
[    12.505] (**) SYNA2BA6:00 06CB:CE78 Mouse: always reports core events
[    12.505] (**) Option "Device" "/dev/input/event9"
[    12.506] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: is tagged by udev as: Mouse Pointingstick
[    12.506] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: device is a pointer
[    12.506] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: device removed
[    12.537] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:00/i2c-0/i2c-SYNA2BA6:00/0018:06CB:CE78.0004/input/input13/event9"
[    12.537] (II) XINPUT: Adding extended input device "SYNA2BA6:00 06CB:CE78 Mouse" (type: MOUSE, id 13)
[    12.538] (**) Option "AccelerationScheme" "none"
[    12.538] (**) SYNA2BA6:00 06CB:CE78 Mouse: (accel) selected scheme none/0
[    12.538] (**) SYNA2BA6:00 06CB:CE78 Mouse: (accel) acceleration factor: 2.000
[    12.538] (**) SYNA2BA6:00 06CB:CE78 Mouse: (accel) acceleration threshold: 4
[    12.538] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: is tagged by udev as: Mouse Pointingstick
[    12.539] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: device is a pointer
[    12.539] (II) config/udev: Adding input device SYNA2BA6:00 06CB:CE78 Mouse (/dev/input/mouse0)
[    12.539] (II) No input driver specified, ignoring this device.
[    12.539] (II) This device may have been added with another device file.
[    12.539] (II) config/udev: Adding input device SYNA2BA6:00 06CB:CE78 Touchpad (/dev/input/event11)
[    12.539] (**) SYNA2BA6:00 06CB:CE78 Touchpad: Applying InputClass "libinput touchpad catchall"
[    12.539] (**) SYNA2BA6:00 06CB:CE78 Touchpad: Applying InputClass "touchpad"
[    12.539] (II) Using input driver 'libinput' for 'SYNA2BA6:00 06CB:CE78 Touchpad'
[    12.539] (**) SYNA2BA6:00 06CB:CE78 Touchpad: always reports core events
[    12.539] (**) Option "Device" "/dev/input/event11"
[    12.540] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: is tagged by udev as: Touchpad
[    12.540] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: device is a touchpad
[    12.541] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: device removed
[    12.611] (**) Option "Tapping" "on"
[    12.611] (**) Option "TappingButtonMap" "lmr"
[    12.611] (**) Option "NaturalScrolling" "true"
[    12.611] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:00/i2c-0/i2c-SYNA2BA6:00/0018:06CB:CE78.0004/input/input14/event11"
[    12.611] (II) XINPUT: Adding extended input device "SYNA2BA6:00 06CB:CE78 Touchpad" (type: TOUCHPAD, id 14)
[    12.612] (**) Option "AccelerationScheme" "none"
[    12.612] (**) SYNA2BA6:00 06CB:CE78 Touchpad: (accel) selected scheme none/0
[    12.612] (**) SYNA2BA6:00 06CB:CE78 Touchpad: (accel) acceleration factor: 2.000
[    12.612] (**) SYNA2BA6:00 06CB:CE78 Touchpad: (accel) acceleration threshold: 4
[    12.613] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: is tagged by udev as: Touchpad
[    12.613] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: device is a touchpad
[    12.614] (II) config/udev: Adding input device SYNA2BA6:00 06CB:CE78 Touchpad (/dev/input/mouse1)
[    12.614] (**) SYNA2BA6:00 06CB:CE78 Touchpad: Applying InputClass "touchpad"
[    12.614] (II) Using input driver 'libinput' for 'SYNA2BA6:00 06CB:CE78 Touchpad'
[    12.614] (**) SYNA2BA6:00 06CB:CE78 Touchpad: always reports core events
[    12.614] (**) Option "Device" "/dev/input/mouse1"
[    12.684] (II) mouse1  - not using input device '/dev/input/mouse1'.
[    12.684] (EE) libinput: SYNA2BA6:00 06CB:CE78 Touchpad: Failed to create a device for /dev/input/mouse1
[    12.684] (EE) PreInit returned 2 for "SYNA2BA6:00 06CB:CE78 Touchpad"
[    12.684] (II) UnloadModule: "libinput"
[    12.684] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    12.684] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    12.684] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    12.685] (**) AT Translated Set 2 keyboard: always reports core events
[    12.685] (**) Option "Device" "/dev/input/event2"
[    12.686] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    12.686] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    12.686] (II) event2  - AT Translated Set 2 keyboard: device removed
[    12.711] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    12.711] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[    12.712] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    12.712] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    12.713] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    12.713] (II) No input driver specified, ignoring this device.
[    12.713] (II) This device may have been added with another device file.
[    12.715] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[    12.715] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[    12.715] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[    12.715] (**) Option "Device" "/dev/input/event7"
[    12.715] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: is a virtual subdevice
[    12.715] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:34:00.3/usb4/4-4/4-4:1.0/0003:048D:C102.0003/input/input7/event7"
[    12.715] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: KEYBOARD, id 16)
[  2032.074] (EE) client bug: timer event11 hold: scheduled expiry is in the past (-310ms), your system is too slow
[  2032.074] (EE) client bug: timer event11 hold: scheduled expiry is in the past (-268ms), your system is too slow
[  2032.074] (EE) client bug: timer event11 hold: scheduled expiry is in the past (-219ms), your system is too slow
[  2032.074] (EE) client bug: timer event11 hold: scheduled expiry is in the past (-198ms), your system is too slow
[  2044.596] (II) event4  - Video Bus: device removed
[  2044.681] (II) event5  - Video Bus: device removed
[  2044.720] (II) event0  - Power Button: device removed
[  2044.744] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[  2044.774] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: device removed
[  2044.787] (II) event8  - Ideapad extra buttons: device removed
[  2044.854] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: device removed
[  2044.907] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: device removed
[  2044.974] (II) event2  - AT Translated Set 2 keyboard: device removed
[  2044.987] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[  2048.308] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2048.308] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2048.308] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[  2048.308] (--) NVIDIA(GPU-0): 
[  2048.308] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2048.308] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2048.308] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2048.308] (--) NVIDIA(GPU-0): 
[  2048.308] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2048.308] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2048.308] (--) NVIDIA(GPU-0): DFP-2: 2670.0 MHz maximum pixel clock
[  2048.308] (--) NVIDIA(GPU-0): 
[  2048.308] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2048.308] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2048.308] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2048.308] (--) NVIDIA(GPU-0): 
[  2048.308] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2048.308] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2048.308] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2048.308] (--) NVIDIA(GPU-0): 
[  2048.309] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): connected
[  2048.309] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): Internal DisplayPort
[  2048.309] (--) NVIDIA(GPU-0): BOE Technology Group Co., Ltd (DFP-5): 2670.0 MHz maximum pixel clock
[  2048.309] (--) NVIDIA(GPU-0): 
[  2048.336] (II) NVIDIA(0): Setting mode "2560x1600_165+0+0"
[  2049.470] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  2049.470] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  2049.470] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  2049.470] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  2049.470] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  2049.470] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  2049.470] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  2049.470] (II) NVIDIA(0):     Config Options in the README.
[  2049.474] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[  2049.474] (II) event4  - Video Bus: device is a keyboard
[  2049.475] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[  2049.475] (II) event5  - Video Bus: device is a keyboard
[  2049.475] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  2049.475] (II) event0  - Power Button: device is a keyboard
[  2049.476] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[  2049.476] (II) event7  - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[  2049.476] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[  2049.476] (II) event10 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[  2049.477] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: is tagged by udev as: Keyboard
[  2049.477] (II) event3  - ITE Tech. Inc. ITE Device(8295) Keyboard: device is a keyboard
[  2049.478] (II) event8  - Ideapad extra buttons: is tagged by udev as: Keyboard
[  2049.478] (II) event8  - Ideapad extra buttons: device is a keyboard
[  2049.478] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: is tagged by udev as: Mouse Pointingstick
[  2049.478] (II) event9  - SYNA2BA6:00 06CB:CE78 Mouse: device is a pointer
[  2049.479] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: is tagged by udev as: Touchpad
[  2049.480] (II) event11 - SYNA2BA6:00 06CB:CE78 Touchpad: device is a touchpad
[  2049.480] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[  2049.480] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard

Offline

#6 2023-04-03 20:23:00

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,349

Re: Xrandr doesn't show any other resolution

And?

[    11.138] (==) Using config file: "/etc/X11/xorg.conf"
seth wrote:

Remove that file

[    11.138] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=8bb8ee12-e1e8-448a-9acd-092c11f80da2 rw loglevel=3 quiet
seth wrote:

the missing ones are most likely because you don't have drm enabled for nvidia (as mentioned before)

seth wrote:
seth wrote:

you need to use edid-decode to inspect the edids


Right now you're running on the nvidia GPU (because of the xorg.conf), there's only one output attached (BOE Technology Group Co., Ltd (DFP-5): connected) and whether 2560x1600 is the only announced mode (or because the output is actually attached to the AMD gpu) we can tell after seeing its edid.

Offline

Board footer

Powered by FluxBB