You are not logged in.

#1 2021-09-20 17:24:45

DadDan
Member
Registered: 2021-02-11
Posts: 3

NVIDIA Card stopped working ASUS G14

Hi!

This morning my laptop started booting to a black screen, but only when I have my discreet NVIDIA GPU set as primary. When I use the integrated graphics it loads lightdm just fine and I am able to login. i3 works as expected if I login and then I am able to use xrandr to set my screen resolutions. I would rather be using my Nvidia GPU because I can use the USB-C monitor output for a 2nd external.

I have searched high and low trying asusctl, setting the kernel parameters, adding modules to mkinitcpio, and none of it worked.

Here are my config files:
/etc/X11/xorg.conf is empty

/etc/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf
If I delete the "SetPrimary" line x starts fine, but I can't use my USB-C monitor because it only works with the NVIDIA.

Section "OutputClass"
    Identifier "AMDgpu"
    MatchDriver "amdgpu"
    Driver "modesetting"
EndSection

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
    Option "SetPrimary" "yes"
EndSection

Then there is my .xinitrc

xrandr --setprovideroutputsource modesetting NVIDIA-G0
xrandr --auto
xrdb /home/dan/.Xresources
dbus-update-activation-environment --systemd DISPLAY
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
export SSH_AUTH_BLOCK

The first line used to end in

NVIDIA-0

but I noticed that

xrandr --listproviders

now lists it as G0 so I made that change. Seems to make no difference.

My i3 config file

# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#

# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
exec --no-startup-id xmodmap ~/.Xmodmap
set $mod Mod4

# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 8

# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8

# The combination of xss-lock, nm-applet and pactl is a popular choice, so
# they are included here as an example. Modify as you see fit.

# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
# screen before suspend. Use loginctl lock-session to lock your screen.
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork

# NetworkManager is the most popular way to manage wireless networks on Linux,
# and nm-applet is a desktop environment-independent system tray GUI for it.
exec --no-startup-id nm-applet

# Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status

# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod

# start a terminal
bindsym $mod+Return exec i3-sensible-terminal

# kill focused window
bindsym $mod+Shift+q kill

# start dmenu (a program launcher)
bindsym $mod+d exec --no-startup-id dmenu_run
# A more modern dmenu replacement is rofi:
# bindcode $mod+40 exec "rofi -modi drun,run -show drun"
# There also is i3-dmenu-desktop which only displays applications shipping a
# .desktop file. It is a wrapper around dmenu, so you need that installed.
# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop

# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right

# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right

# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right

# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right

# split in horizontal orientation
bindsym $mod+h split h

# split in vertical orientation
bindsym $mod+v split v

# enter fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle

# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split

# toggle tiling / floating
bindsym $mod+Shift+space floating toggle

# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle

# focus the parent container
bindsym $mod+a focus parent

# focus the child container
#bindsym $mod+d focus child

# Define names for default workspaces for which we configure key bindings later on.
# We use variables to avoid repeating the names in multiple places.
set $ws1 "1"
set $ws2 "2"
set $ws3 "3"
set $ws4 "4"
set $ws5 "5"
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
set $ws9 "9"
set $ws10 "10"

# switch to workspace
bindsym $mod+1 workspace number $ws1
bindsym $mod+2 workspace number $ws2
bindsym $mod+3 workspace number $ws3
bindsym $mod+4 workspace number $ws4
bindsym $mod+5 workspace number $ws5
bindsym $mod+6 workspace number $ws6
bindsym $mod+7 workspace number $ws7
bindsym $mod+8 workspace number $ws8
bindsym $mod+9 workspace number $ws9
bindsym $mod+0 workspace number $ws10

# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number $ws1
bindsym $mod+Shift+2 move container to workspace number $ws2
bindsym $mod+Shift+3 move container to workspace number $ws3
bindsym $mod+Shift+4 move container to workspace number $ws4
bindsym $mod+Shift+5 move container to workspace number $ws5
bindsym $mod+Shift+6 move container to workspace number $ws6
bindsym $mod+Shift+7 move container to workspace number $ws7
bindsym $mod+Shift+8 move container to workspace number $ws8
bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10

# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"

# resize window (you can also use the mouse for that)
mode "resize" {
        # These bindings trigger as soon as you enter the resize mode

        # Pressing left will shrink the window’s width.
        # Pressing right will grow the window’s width.
        # Pressing up will shrink the window’s height.
        # Pressing down will grow the window’s height.
        bindsym j resize shrink width 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize shrink height 10 px or 10 ppt
        bindsym semicolon resize grow width 10 px or 10 ppt

        # same bindings, but for the arrow keys
        bindsym Left resize shrink width 10 px or 10 ppt
        bindsym Down resize grow height 10 px or 10 ppt
        bindsym Up resize shrink height 10 px or 10 ppt
        bindsym Right resize grow width 10 px or 10 ppt

        # back to normal: Enter or Escape or $mod+r
        bindsym Return mode "default"
        bindsym Escape mode "default"
        bindsym $mod+r mode "default"
}

bindsym $mod+r mode "resize"

# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
        status_command i3status
}

bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5

My Xorg.0.log from a boot that went to blackscreen:

[     5.940] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     5.940] Build Operating System: Linux Archlinux
[     5.940] Current Operating System: Linux DanAsus 5.14.6-arch1-1 #1 SMP PREEMPT Sat, 18 Sep 2021 16:19:35 +0000 x86_64
[     5.940] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0a25a270-8721-4da8-8c81-d2bb2055c853 rw loglevel=3 quiet
[     5.940] Build Date: 04 August 2021  08:13:54AM
[     5.940]  
[     5.940] Current version of pixman: 0.40.0
[     5.940] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     5.940] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     5.940] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 20 11:21:01 2021
[     5.940] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     5.940] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     5.941] (==) No Layout section.  Using the first Screen section.
[     5.941] (==) No screen section available. Using defaults.
[     5.941] (**) |-->Screen "Default Screen Section" (0)
[     5.941] (**) |   |-->Monitor "<default monitor>"
[     5.941] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     5.941] (==) Automatically adding devices
[     5.941] (==) Automatically enabling devices
[     5.941] (==) Automatically adding GPU devices
[     5.941] (==) Automatically binding GPU devices
[     5.941] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     5.941] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     5.941] 	Entry deleted from font path.
[     5.941] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     5.941] 	Entry deleted from font path.
[     5.941] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     5.941] 	Entry deleted from font path.
[     5.941] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     5.941] (==) ModulePath set to "/usr/lib/xorg/modules"
[     5.941] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     5.941] (II) Module ABI versions:
[     5.941] 	X.Org ANSI C Emulation: 0.4
[     5.941] 	X.Org Video Driver: 24.1
[     5.941] 	X.Org XInput driver : 24.1
[     5.941] 	X.Org Server Extension : 10.0
[     5.942] (++) using VT number 7

[     5.942] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     5.943] (II) xfree86: Adding drm device (/dev/dri/card1)
[     5.943] (II) xfree86: Adding drm device (/dev/dri/card0)
[     5.950] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     5.951] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     5.951] (**) OutputClass "nvidia" setting /dev/dri/card1 as PrimaryGPU
[     5.953] (--) PCI:*(1@0:0:0) 10de:1f12:1043:1f11 rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[     5.953] (--) PCI: (4@0:0:0) 1002:1636:1043:1f11 rev 197, Mem @ 0xd0000000/268435456, 0xe0000000/2097152, 0xfc500000/524288, I/O @ 0x0000e000/256
[     5.953] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     5.953] (II) LoadModule: "glx"
[     5.953] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     5.955] (II) Module glx: vendor="X.Org Foundation"
[     5.955] 	compiled for 1.20.13, module version = 1.0.0
[     5.955] 	ABI class: X.Org Server Extension, version 10.0
[     5.955] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[     5.955] 	loading driver: nvidia
[     5.955] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[     5.955] 	loading driver: nvidia
[     5.955] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0
[     5.955] 	loading driver: modesetting
[     5.955] (==) Matched nvidia as autoconfigured driver 0
[     5.955] (==) Matched nouveau as autoconfigured driver 1
[     5.955] (==) Matched nv as autoconfigured driver 2
[     5.955] (==) Matched modesetting as autoconfigured driver 3
[     5.955] (==) Matched ati as autoconfigured driver 4
[     5.955] (==) Matched fbdev as autoconfigured driver 5
[     5.956] (==) Matched vesa as autoconfigured driver 6
[     5.956] (==) Assigned the driver to the xf86ConfigLayout
[     5.956] (II) LoadModule: "nvidia"
[     5.956] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     5.956] (II) Module nvidia: vendor="NVIDIA Corporation"
[     5.956] 	compiled for 1.6.99.901, module version = 1.0.0
[     5.956] 	Module class: X.Org Video Driver
[     5.956] (II) LoadModule: "nouveau"
[     5.957] (WW) Warning, couldn't open module nouveau
[     5.957] (EE) Failed to load module "nouveau" (module does not exist, 0)
[     5.957] (II) LoadModule: "nv"
[     5.957] (WW) Warning, couldn't open module nv
[     5.957] (EE) Failed to load module "nv" (module does not exist, 0)
[     5.957] (II) LoadModule: "modesetting"
[     5.957] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     5.957] (II) Module modesetting: vendor="X.Org Foundation"
[     5.957] 	compiled for 1.20.13, module version = 1.20.13
[     5.957] 	Module class: X.Org Video Driver
[     5.957] 	ABI class: X.Org Video Driver, version 24.1
[     5.957] (II) LoadModule: "ati"
[     5.958] (WW) Warning, couldn't open module ati
[     5.958] (EE) Failed to load module "ati" (module does not exist, 0)
[     5.958] (II) LoadModule: "fbdev"
[     5.958] (WW) Warning, couldn't open module fbdev
[     5.958] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     5.958] (II) LoadModule: "vesa"
[     5.958] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[     5.958] (II) Module vesa: vendor="X.Org Foundation"
[     5.958] 	compiled for 1.20.9, module version = 2.5.0
[     5.958] 	Module class: X.Org Video Driver
[     5.958] 	ABI class: X.Org Video Driver, version 24.1
[     5.958] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[     5.958] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     5.958] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     5.958] (II) VESA: driver for VESA chipsets: vesa
[     5.959] (II) Loading sub module "fb"
[     5.959] (II) LoadModule: "fb"
[     5.959] (II) Loading /usr/lib/xorg/modules/libfb.so
[     5.959] (II) Module fb: vendor="X.Org Foundation"
[     5.959] 	compiled for 1.20.13, module version = 1.0.0
[     5.959] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.959] (II) Loading sub module "wfb"
[     5.959] (II) LoadModule: "wfb"
[     5.959] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     5.959] (II) Module wfb: vendor="X.Org Foundation"
[     5.959] 	compiled for 1.20.13, module version = 1.0.0
[     5.959] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.959] (II) Loading sub module "ramdac"
[     5.959] (II) LoadModule: "ramdac"
[     5.959] (II) Module "ramdac" already built-in
[     5.960] (WW) Falling back to old probe method for modesetting
[     5.982] (II) modeset(G0): using drv /dev/dri/card0
[     5.982] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     5.982] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[     5.982] (==) NVIDIA(0): RGB weight 888
[     5.982] (==) NVIDIA(0): Default visual is TrueColor
[     5.982] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     5.982] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     5.982] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     5.982] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     5.982] (**) NVIDIA(0): Enabling 2D acceleration
[     5.982] (II) Loading sub module "glxserver_nvidia"
[     5.982] (II) LoadModule: "glxserver_nvidia"
[     5.982] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     5.991] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     5.991] 	compiled for 1.6.99.901, module version = 1.0.0
[     5.991] 	Module class: X.Org Server Extension
[     5.991] (II) NVIDIA GLX Module  470.63.01  Tue Aug  3 20:35:52 UTC 2021
[     5.991] (II) NVIDIA: The X server supports PRIME Render Offload.
[     6.482] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     6.483] (--) NVIDIA(0):     DFP-0
[     6.483] (--) NVIDIA(0):     DFP-1
[     6.500] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 2060 with Max-Q Design (TU106-A)
[     6.500] (II) NVIDIA(0):     at PCI:1:0:0 (GPU-0)
[     6.500] (--) NVIDIA(0): Memory: 6291456 kBytes
[     6.500] (--) NVIDIA(0): VideoBIOS: 90.06.58.40.03
[     6.500] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     6.500] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     6.500] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     6.500] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[     6.500] (--) NVIDIA(GPU-0): 
[     6.500] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     6.500] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     6.500] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     6.500] (--) NVIDIA(GPU-0): 
[     6.500] (==) NVIDIA(0): 
[     6.500] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[     6.500] (==) NVIDIA(0):     will be used as the requested mode.
[     6.500] (==) NVIDIA(0): 
[     6.500] (--) NVIDIA(0): No enabled display devices found; starting anyway because
[     6.500] (--) NVIDIA(0):     AllowEmptyInitialConfiguration is enabled
[     6.501] (II) NVIDIA(0): Validated MetaModes:
[     6.501] (II) NVIDIA(0):     "NULL"
[     6.501] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[     6.501] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[     6.501] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[     6.501] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[     6.501] (==) modeset(G0): RGB weight 888
[     6.501] (==) modeset(G0): Default visual is TrueColor
[     6.501] (II) Loading sub module "glamoregl"
[     6.501] (II) LoadModule: "glamoregl"
[     6.501] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     6.508] (II) Module glamoregl: vendor="X.Org Foundation"
[     6.508] 	compiled for 1.20.13, module version = 1.0.1
[     6.508] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     6.551] (II) modeset(G0): glamor X acceleration enabled on AMD RENOIR (DRM 3.42.0, 5.14.6-arch1-1, LLVM 12.0.1)
[     6.551] (II) modeset(G0): glamor initialized
[     6.553] (II) modeset(G0): Output eDP-1-1 has no monitor section
[     6.553] (II) modeset(G0): Output HDMI-1-1 has no monitor section
[     6.555] (II) modeset(G0): EDID for output eDP-1-1
[     6.555] (II) modeset(G0): Manufacturer: SHP  Model: 14f1  Serial#: 0
[     6.555] (II) modeset(G0): Year: 2020  Week: 14
[     6.555] (II) modeset(G0): EDID Version: 1.4
[     6.555] (II) modeset(G0): Digital Display Input
[     6.555] (II) modeset(G0): 8 bits per channel
[     6.555] (II) modeset(G0): Digital interface is DisplayPort
[     6.555] (II) modeset(G0): Max Image Size [cm]: horiz.: 31  vert.: 17
[     6.555] (II) modeset(G0): Gamma: 2.20
[     6.555] (II) modeset(G0): No DPMS capabilities specified
[     6.555] (II) modeset(G0): Supported color encodings: RGB 4:4:4 
[     6.555] (II) modeset(G0): Default color space is primary color space
[     6.555] (II) modeset(G0): First detailed timing is preferred mode
[     6.555] (II) modeset(G0): Preferred mode is native pixel format and refresh rate
[     6.555] (II) modeset(G0): Display is continuous-frequency
[     6.555] (II) modeset(G0): redX: 0.640 redY: 0.329   greenX: 0.300 greenY: 0.600
[     6.555] (II) modeset(G0): blueX: 0.149 blueY: 0.060   whiteX: 0.312 whiteY: 0.328
[     6.555] (II) modeset(G0): Manufacturer's mask: 0
[     6.555] (II) modeset(G0): Supported detailed timing:
[     6.555] (II) modeset(G0): clock: 285.6 MHz   Image Size:  309 x 174 mm
[     6.555] (II) modeset(G0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[     6.555] (II) modeset(G0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1144 v_border: 0
[     6.555] (II) modeset(G0): Supported detailed timing:
[     6.555] (II) modeset(G0): clock: 142.8 MHz   Image Size:  309 x 174 mm
[     6.555] (II) modeset(G0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[     6.555] (II) modeset(G0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1144 v_border: 0
[     6.555] (II) modeset(G0): Ranges: V min: 48 V max: 120 Hz, H min: 137 H max: 137 kHz, PixClock max 295 MHz
[     6.555] (II) modeset(G0): Monitor name: LQ140M1JW46
[     6.555] (II) modeset(G0): EDID (in hex):
[     6.555] (II) modeset(G0): 	00ffffffffffff004d10f11400000000
[     6.555] (II) modeset(G0): 	0e1e0104a51f117807de50a3544c9926
[     6.555] (II) modeset(G0): 	0f505400000001010101010101010101
[     6.555] (II) modeset(G0): 	0101010101018b6f80a0703840403020
[     6.555] (II) modeset(G0): 	350035ae10000018c63780a070384040
[     6.555] (II) modeset(G0): 	3020350035ae10000018000000fd0030
[     6.555] (II) modeset(G0): 	7889891d010a202020202020000000fc
[     6.555] (II) modeset(G0): 	004c513134304d314a5734360a200005
[     6.555] (II) modeset(G0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[     6.555] (II) modeset(G0): Printing probed modes for output eDP-1-1
[     6.555] (II) modeset(G0): Modeline "1920x1080"x120.0  285.55  1920 1968 2000 2080  1080 1083 1088 1144 -hsync -vsync (137.3 kHz eP)
[     6.555] (II) modeset(G0): Modeline "1920x1080"x60.0  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     6.555] (II) modeset(G0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     6.555] (II) modeset(G0): Modeline "1920x1080"x60.0  142.78  1920 1968 2000 2080  1080 1083 1088 1144 -hsync -vsync (68.6 kHz e)
[     6.555] (II) modeset(G0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     6.555] (II) modeset(G0): Modeline "1680x1050"x120.0  285.55  1680 1968 2000 2080  1050 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.555] (II) modeset(G0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     6.555] (II) modeset(G0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     6.555] (II) modeset(G0): Modeline "1400x1050"x74.8  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync (81.5 kHz d)
[     6.555] (II) modeset(G0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     6.555] (II) modeset(G0): Modeline "1600x900"x60.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     6.555] (II) modeset(G0): Modeline "1600x900"x59.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     6.555] (II) modeset(G0): Modeline "1280x1024"x120.0  285.55  1280 1968 2000 2080  1024 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.555] (II) modeset(G0): Modeline "1280x1024"x85.0  157.50  1280 1344 1504 1728  1024 1025 1028 1072 +hsync +vsync (91.1 kHz d)
[     6.555] (II) modeset(G0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1440x900"x120.0  285.55  1440 1968 2000 2080  900 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.555] (II) modeset(G0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     6.555] (II) modeset(G0): Modeline "1280x960"x85.0  148.50  1280 1344 1504 1728  960 961 964 1011 +hsync +vsync (85.9 kHz d)
[     6.555] (II) modeset(G0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     6.555] (II) modeset(G0): Modeline "1440x810"x60.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x800"x120.0  285.55  1280 1968 2000 2080  800 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.556] (II) modeset(G0): Modeline "1280x800"x60.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x720"x120.0  285.55  1280 1968 2000 2080  720 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.556] (II) modeset(G0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x120.0  285.55  1024 1968 2000 2080  768 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.556] (II) modeset(G0): Modeline "1024x768"x85.0  194.02  1024 1108 1220 1416  768 768 770 806 doublescan -hsync +vsync (137.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x75.0  170.24  1024 1108 1220 1416  768 768 770 801 doublescan -hsync +vsync (120.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x768i"x87.0   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync (35.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x720"x85.0  170.68  960 1036 1144 1328  720 720 722 756 doublescan -hsync +vsync (128.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x720"x75.0  148.50  960 1032 1144 1320  720 720 722 750 doublescan -hsync +vsync (112.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "928x696"x75.0  144.00  928 992 1104 1280  696 696 698 750 doublescan -hsync +vsync (112.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     6.556] (II) modeset(G0): Modeline "896x672"x75.0  130.50  896 944 1052 1228  672 672 674 708 doublescan -hsync +vsync (106.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x120.0  285.55  800 1968 2000 2080  600 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.556] (II) modeset(G0): Modeline "800x600"x85.0  114.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (106.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x75.0  101.25  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (93.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x70.0   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x65.0   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x85.1   56.30  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "700x525"x74.8   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync (81.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x512"x85.0   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync (91.1 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x512"x75.0   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync (80.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x120.0  285.55  640 1968 2000 2080  480 1083 1088 1144 -hsync -vsync (137.3 kHz e)
[     6.556] (II) modeset(G0): Modeline "640x480"x85.1   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync (85.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     6.556] (II) modeset(G0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "720x400"x85.0   35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x400"x85.1   31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "576x432"x75.0   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (67.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "640x350"x85.1   31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x384"x85.0   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync (68.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x384"x75.0   39.38  512 520 568 656  384 384 386 400 doublescan +hsync +vsync (60.0 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x384i"x87.1   22.45  512 516 604 632  384 384 388 408 interlace doublescan +hsync +vsync (35.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "416x312"x74.7   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (49.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "400x300"x85.3   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync (53.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "400x300"x72.2   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync (48.1 kHz d)
[     6.556] (II) modeset(G0): Modeline "400x300"x75.1   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync (46.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x240"x85.2   18.00  320 348 376 416  240 240 242 254 doublescan -hsync -vsync (43.3 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x240"x72.8   15.75  320 332 352 416  240 244 246 260 doublescan -hsync -vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x240"x75.0   15.75  320 328 360 420  240 240 242 250 doublescan -hsync -vsync (37.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     6.556] (II) modeset(G0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     6.556] (II) modeset(G0): Modeline "360x200"x85.0   17.75  360 378 414 468  200 200 202 223 doublescan -hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x200"x85.3   15.75  320 336 368 416  200 200 202 222 doublescan -hsync +vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     6.556] (II) modeset(G0): Modeline "320x175"x85.3   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[     6.556] (II) modeset(G0): EDID for output HDMI-1-1
[     6.556] (II) modeset(G0): Manufacturer: HPN  Model: 361e  Serial#: 16843009
[     6.556] (II) modeset(G0): Year: 2019  Week: 32
[     6.556] (II) modeset(G0): EDID Version: 1.3
[     6.556] (II) modeset(G0): Digital Display Input
[     6.556] (II) modeset(G0): Max Image Size [cm]: horiz.: 48  vert.: 27
[     6.556] (II) modeset(G0): Gamma: 2.20
[     6.556] (II) modeset(G0): DPMS capabilities: Off
[     6.556] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     6.556] (II) modeset(G0): First detailed timing is preferred mode
[     6.556] (II) modeset(G0): redX: 0.657 redY: 0.335   greenX: 0.318 greenY: 0.634
[     6.556] (II) modeset(G0): blueX: 0.154 blueY: 0.064   whiteX: 0.313 whiteY: 0.329
[     6.556] (II) modeset(G0): Supported established timings:
[     6.556] (II) modeset(G0): 720x400@70Hz
[     6.556] (II) modeset(G0): 640x480@60Hz
[     6.556] (II) modeset(G0): 800x600@60Hz
[     6.556] (II) modeset(G0): 1024x768@60Hz
[     6.556] (II) modeset(G0): Manufacturer's mask: 0
[     6.556] (II) modeset(G0): Supported standard timings:
[     6.556] (II) modeset(G0): #0: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     6.556] (II) modeset(G0): #1: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[     6.556] (II) modeset(G0): #2: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[     6.556] (II) modeset(G0): #3: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     6.556] (II) modeset(G0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     6.556] (II) modeset(G0): #5: hsize: 1280  vsize 800  refresh: 60  vid: 129
[     6.556] (II) modeset(G0): #6: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     6.556] (II) modeset(G0): Supported detailed timing:
[     6.556] (II) modeset(G0): clock: 148.5 MHz   Image Size:  527 x 296 mm
[     6.556] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     6.556] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     6.556] (II) modeset(G0): Ranges: V min: 50 V max: 60 Hz, H min: 30 H max: 80 kHz, PixClock max 175 MHz
[     6.556] (II) modeset(G0): Monitor name: HP P224
[     6.556] (II) modeset(G0): Serial No: CNK93207VW
[     6.556] (II) modeset(G0): Supported detailed timing:
[     6.556] (II) modeset(G0): clock: 148.5 MHz   Image Size:  527 x 296 mm
[     6.556] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     6.556] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     6.556] (II) modeset(G0): Supported detailed timing:
[     6.556] (II) modeset(G0): clock: 148.5 MHz   Image Size:  527 x 296 mm
[     6.556] (II) modeset(G0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[     6.556] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     6.556] (II) modeset(G0): Number of EDID sections to follow: 1
[     6.556] (II) modeset(G0): EDID (in hex):
[     6.556] (II) modeset(G0): 	00ffffffffffff00220e1e3601010101
[     6.556] (II) modeset(G0): 	201d010380301b782a79a5a85551a227
[     6.556] (II) modeset(G0): 	105054a10800d1c0a9c081c0b3009500
[     6.556] (II) modeset(G0): 	810081800101023a801871382d40582c
[     6.556] (II) modeset(G0): 	45000f282100001e000000fd00323c1e
[     6.556] (II) modeset(G0): 	5011000a202020202020000000fc0048
[     6.556] (II) modeset(G0): 	5020503232340a2020202020000000ff
[     6.556] (II) modeset(G0): 	00434e4b393332303756570a2020013c
[     6.556] (II) modeset(G0): 	020319b149901f041303120211016703
[     6.556] (II) modeset(G0): 	0c0010000022e2002b023a801871382d
[     6.557] (II) modeset(G0): 	40582c45000f282100001e023a80d072
[     6.557] (II) modeset(G0): 	382d40102c45800f282100001e000000
[     6.557] (II) modeset(G0): 	00000000000000000000000000000000
[     6.557] (II) modeset(G0): 	00000000000000000000000000000000
[     6.557] (II) modeset(G0): 	00000000000000000000000000000000
[     6.557] (II) modeset(G0): 	00000000000000000000000000000001
[     6.557] (--) modeset(G0): HDMI max TMDS frequency 170000KHz
[     6.557] (II) modeset(G0): Not using default mode "1440x810" (bad mode clock/interlace/doublescan)
[     6.557] (II) modeset(G0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[     6.557] (II) modeset(G0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[     6.557] (II) modeset(G0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[     6.557] (II) modeset(G0): Printing probed modes for output HDMI-1-1
[     6.557] (II) modeset(G0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[     6.557] (II) modeset(G0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     6.557] (II) modeset(G0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     6.557] (II) modeset(G0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     6.557] (II) modeset(G0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     6.557] (II) modeset(G0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[     6.557] (II) modeset(G0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     6.557] (II) modeset(G0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x800"x60.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[     6.557] (II) modeset(G0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     6.557] (II) modeset(G0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     6.557] (II) modeset(G0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     6.557] (II) modeset(G0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x600"x70.0   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x600"x65.0   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     6.557] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     6.557] (II) modeset(G0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     6.557] (II) modeset(G0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     6.557] (II) modeset(G0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     6.557] (II) modeset(G0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     6.557] (II) modeset(G0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     6.557] (II) modeset(G0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     6.557] (II) modeset(G0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     6.557] (II) modeset(G0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     6.557] (II) modeset(G0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     6.557] (II) modeset(G0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     6.557] (II) modeset(G0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     6.557] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[     6.557] (==) modeset(G0): DPI set to (96, 96)
[     6.557] (II) Loading sub module "fb"
[     6.557] (II) LoadModule: "fb"
[     6.557] (II) Loading /usr/lib/xorg/modules/libfb.so
[     6.557] (II) Module fb: vendor="X.Org Foundation"
[     6.557] 	compiled for 1.20.13, module version = 1.0.0
[     6.557] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     6.557] (II) UnloadModule: "vesa"
[     6.557] (II) Unloading vesa
[     6.558] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     6.558] (II) NVIDIA:     access.
[     6.570] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     6.570] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     6.570] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     6.570] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     6.570] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     6.570] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     6.570] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     6.570] (II) NVIDIA(0):     Config Options in the README.
[     6.586] (II) NVIDIA(0): Setting mode "NULL"
[     6.595] (==) NVIDIA(0): Disabling shared memory pixmaps
[     6.595] (==) NVIDIA(0): Backing store enabled
[     6.595] (==) NVIDIA(0): Silken mouse disabled
[     6.595] (==) NVIDIA(0): DPMS enabled
[     6.595] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[     6.595] (II) Loading sub module "dri2"
[     6.595] (II) LoadModule: "dri2"
[     6.595] (II) Module "dri2" already built-in
[     6.595] (II) NVIDIA(0): [DRI2] Setup complete
[     6.595] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     6.622] (==) modeset(G0): Backing store enabled
[     6.622] (==) modeset(G0): Silken mouse disabled
[     6.622] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[     6.622] (==) modeset(G0): DPMS enabled
[     6.623] (II) modeset(G0): [DRI2] Setup complete
[     6.623] (II) modeset(G0): [DRI2]   DRI driver: radeonsi
[     6.623] (II) modeset(G0): [DRI2]   VDPAU driver: radeonsi
[     6.623] (II) Initializing extension Generic Event Extension
[     6.623] (II) Initializing extension SHAPE
[     6.623] (II) Initializing extension MIT-SHM
[     6.623] (II) Initializing extension XInputExtension
[     6.623] (II) Initializing extension XTEST
[     6.623] (II) Initializing extension BIG-REQUESTS
[     6.623] (II) Initializing extension SYNC
[     6.623] (II) Initializing extension XKEYBOARD
[     6.623] (II) Initializing extension XC-MISC
[     6.623] (II) Initializing extension SECURITY
[     6.623] (II) Initializing extension XFIXES
[     6.623] (II) Initializing extension RENDER
[     6.623] (II) Initializing extension RANDR
[     6.623] (II) Initializing extension COMPOSITE
[     6.624] (II) Initializing extension DAMAGE
[     6.624] (II) Initializing extension MIT-SCREEN-SAVER
[     6.624] (II) Initializing extension DOUBLE-BUFFER
[     6.624] (II) Initializing extension RECORD
[     6.624] (II) Initializing extension DPMS
[     6.624] (II) Initializing extension Present
[     6.624] (II) Initializing extension DRI3
[     6.624] (II) Initializing extension X-Resource
[     6.624] (II) Initializing extension XVideo
[     6.624] (II) Initializing extension XVideo-MotionCompensation
[     6.624] (II) Initializing extension GLX
[     6.624] (II) Initializing extension GLX
[     6.624] (II) Indirect GLX disabled.
[     6.624] (II) GLX: Another vendor is already registered for screen 0
[     6.624] (II) Initializing extension XFree86-VidModeExtension
[     6.624] (II) Initializing extension XFree86-DGA
[     6.624] (II) Initializing extension XFree86-DRI
[     6.624] (II) Initializing extension DRI2
[     6.624] (II) Initializing extension NV-GLX
[     6.624] (II) Initializing extension NV-CONTROL
[     6.749] (II) modeset(G0): Damage tracking initialized
[     6.798] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     6.798] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     6.798] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.798] (**) Power Button: Applying InputClass "system-keyboard"
[     6.798] (II) LoadModule: "libinput"
[     6.799] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     6.800] (II) Module libinput: vendor="X.Org Foundation"
[     6.800] 	compiled for 1.20.13, module version = 1.2.0
[     6.800] 	Module class: X.Org XInput Driver
[     6.800] 	ABI class: X.Org XInput driver, version 24.1
[     6.800] (II) Using input driver 'libinput' for 'Power Button'
[     6.800] (**) Power Button: always reports core events
[     6.800] (**) Option "Device" "/dev/input/event3"
[     6.800] (**) Option "_source" "server/udev"
[     6.801] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     6.801] (II) event3  - Power Button: device is a keyboard
[     6.801] (II) event3  - Power Button: device removed
[     6.819] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     6.820] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     6.820] (**) Option "xkb_model" "pc104"
[     6.820] (**) Option "xkb_layout" "us"
[     6.820] (**) Option "xkb_options" "ctrl:nocaps"
[     6.839] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     6.839] (II) event3  - Power Button: device is a keyboard
[     6.839] (II) config/udev: Adding input device Asus Wireless Radio Control (/dev/input/event6)
[     6.839] (**) Asus Wireless Radio Control: Applying InputClass "evdev keyboard catchall"
[     6.839] (**) Asus Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[     6.839] (**) Asus Wireless Radio Control: Applying InputClass "system-keyboard"
[     6.839] (II) Using input driver 'libinput' for 'Asus Wireless Radio Control'
[     6.839] (**) Asus Wireless Radio Control: always reports core events
[     6.839] (**) Option "Device" "/dev/input/event6"
[     6.839] (**) Option "_source" "server/udev"
[     6.840] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[     6.840] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[     6.840] (II) event6  - Asus Wireless Radio Control: device removed
[     6.912] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input6/event6"
[     6.912] (II) XINPUT: Adding extended input device "Asus Wireless Radio Control" (type: KEYBOARD, id 7)
[     6.912] (**) Option "xkb_model" "pc104"
[     6.912] (**) Option "xkb_layout" "us"
[     6.912] (**) Option "xkb_options" "ctrl:nocaps"
[     6.914] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[     6.914] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[     6.915] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[     6.915] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[     6.915] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     6.915] (**) Video Bus: Applying InputClass "system-keyboard"
[     6.915] (II) Using input driver 'libinput' for 'Video Bus'
[     6.915] (**) Video Bus: always reports core events
[     6.915] (**) Option "Device" "/dev/input/event4"
[     6.915] (**) Option "_source" "server/udev"
[     6.917] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[     6.917] (II) event4  - Video Bus: device is a keyboard
[     6.917] (II) event4  - Video Bus: device removed
[     6.992] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1b/LNXVIDEO:00/input/input4/event4"
[     6.992] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     6.992] (**) Option "xkb_model" "pc104"
[     6.992] (**) Option "xkb_layout" "us"
[     6.992] (**) Option "xkb_options" "ctrl:nocaps"
[     6.994] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[     6.994] (II) event4  - Video Bus: device is a keyboard
[     6.995] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     6.995] (II) No input driver specified, ignoring this device.
[     6.995] (II) This device may have been added with another device file.
[     6.996] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     6.996] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     6.996] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.996] (**) Power Button: Applying InputClass "system-keyboard"
[     6.996] (II) Using input driver 'libinput' for 'Power Button'
[     6.996] (**) Power Button: always reports core events
[     6.996] (**) Option "Device" "/dev/input/event1"
[     6.996] (**) Option "_source" "server/udev"
[     6.997] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     6.997] (II) event1  - Power Button: device is a keyboard
[     6.997] (II) event1  - Power Button: device removed
[     7.032] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[     7.032] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[     7.032] (**) Option "xkb_model" "pc104"
[     7.032] (**) Option "xkb_layout" "us"
[     7.032] (**) Option "xkb_options" "ctrl:nocaps"
[     7.034] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     7.034] (II) event1  - Power Button: device is a keyboard
[     7.035] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[     7.035] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[     7.035] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     7.035] (**) Sleep Button: Applying InputClass "system-keyboard"
[     7.035] (II) Using input driver 'libinput' for 'Sleep Button'
[     7.035] (**) Sleep Button: always reports core events
[     7.035] (**) Option "Device" "/dev/input/event2"
[     7.035] (**) Option "_source" "server/udev"
[     7.036] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     7.036] (II) event2  - Sleep Button: device is a keyboard
[     7.036] (II) event2  - Sleep Button: device removed
[     7.072] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[     7.072] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[     7.072] (**) Option "xkb_model" "pc104"
[     7.072] (**) Option "xkb_layout" "us"
[     7.072] (**) Option "xkb_options" "ctrl:nocaps"
[     7.074] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     7.074] (II) event2  - Sleep Button: device is a keyboard
[     7.075] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event5)
[     7.075] (II) No input driver specified, ignoring this device.
[     7.075] (II) This device may have been added with another device file.
[     7.075] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event14)
[     7.075] (II) No input driver specified, ignoring this device.
[     7.075] (II) This device may have been added with another device file.
[     7.076] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event17)
[     7.076] (II) No input driver specified, ignoring this device.
[     7.076] (II) This device may have been added with another device file.
[     7.076] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event19)
[     7.076] (II) No input driver specified, ignoring this device.
[     7.076] (II) This device may have been added with another device file.
[     7.077] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event15)
[     7.077] (II) No input driver specified, ignoring this device.
[     7.077] (II) This device may have been added with another device file.
[     7.078] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event16)
[     7.078] (**) Asus Keyboard: Applying InputClass "evdev keyboard catchall"
[     7.078] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[     7.078] (**) Asus Keyboard: Applying InputClass "system-keyboard"
[     7.078] (II) Using input driver 'libinput' for 'Asus Keyboard'
[     7.078] (**) Asus Keyboard: always reports core events
[     7.078] (**) Option "Device" "/dev/input/event16"
[     7.078] (**) Option "_source" "server/udev"
[     7.080] (II) event16 - Asus Keyboard: is tagged by udev as: Keyboard
[     7.081] (II) event16 - Asus Keyboard: device is a keyboard
[     7.081] (II) event16 - Asus Keyboard: device removed
[     7.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.0/0003:0B05:1866.0001/input/input21/event16"
[     7.125] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 11)
[     7.125] (**) Option "xkb_model" "pc104"
[     7.125] (**) Option "xkb_layout" "us"
[     7.125] (**) Option "xkb_options" "ctrl:nocaps"
[     7.128] (II) event16 - Asus Keyboard: is tagged by udev as: Keyboard
[     7.128] (II) event16 - Asus Keyboard: device is a keyboard
[     7.130] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event20)
[     7.130] (**) Asus Keyboard: Applying InputClass "evdev keyboard catchall"
[     7.130] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[     7.130] (**) Asus Keyboard: Applying InputClass "system-keyboard"
[     7.130] (II) Using input driver 'libinput' for 'Asus Keyboard'
[     7.130] (**) Asus Keyboard: always reports core events
[     7.130] (**) Option "Device" "/dev/input/event20"
[     7.130] (**) Option "_source" "server/udev"
[     7.132] (II) event20 - Asus Keyboard: is tagged by udev as: Keyboard
[     7.132] (II) event20 - Asus Keyboard: device is a keyboard
[     7.132] (II) event20 - Asus Keyboard: device removed
[     7.165] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.1/0003:0B05:1866.0002/input/input24/event20"
[     7.165] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 12)
[     7.165] (**) Option "xkb_model" "pc104"
[     7.165] (**) Option "xkb_layout" "us"
[     7.165] (**) Option "xkb_options" "ctrl:nocaps"
[     7.168] (II) event20 - Asus Keyboard: is tagged by udev as: Keyboard
[     7.168] (II) event20 - Asus Keyboard: device is a keyboard
[     7.170] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event9)
[     7.170] (**) Asus Keyboard: Applying InputClass "evdev keyboard catchall"
[     7.170] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[     7.170] (**) Asus Keyboard: Applying InputClass "system-keyboard"
[     7.170] (II) Using input driver 'libinput' for 'Asus Keyboard'
[     7.170] (**) Asus Keyboard: always reports core events
[     7.170] (**) Option "Device" "/dev/input/event9"
[     7.170] (**) Option "_source" "server/udev"
[     7.172] (II) event9  - Asus Keyboard: is tagged by udev as: Keyboard
[     7.172] (II) event9  - Asus Keyboard: device is a keyboard
[     7.172] (II) event9  - Asus Keyboard: device removed
[     7.192] (II) libinput: Asus Keyboard: needs a virtual subdevice
[     7.192] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input25/event9"
[     7.192] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: MOUSE, id 13)
[     7.192] (**) Option "AccelerationScheme" "none"
[     7.192] (**) Asus Keyboard: (accel) selected scheme none/0
[     7.192] (**) Asus Keyboard: (accel) acceleration factor: 2.000
[     7.192] (**) Asus Keyboard: (accel) acceleration threshold: 4
[     7.195] (II) event9  - Asus Keyboard: is tagged by udev as: Keyboard
[     7.195] (II) event9  - Asus Keyboard: device is a keyboard
[     7.196] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event10)
[     7.196] (II) No input driver specified, ignoring this device.
[     7.196] (II) This device may have been added with another device file.
[     7.196] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event12)
[     7.196] (II) No input driver specified, ignoring this device.
[     7.196] (II) This device may have been added with another device file.
[     7.197] (II) config/udev: Adding input device ELAN1201:00 04F3:3098 Mouse (/dev/input/event18)
[     7.197] (**) ELAN1201:00 04F3:3098 Mouse: Applying InputClass "evdev pointer catchall"
[     7.197] (**) ELAN1201:00 04F3:3098 Mouse: Applying InputClass "libinput pointer catchall"
[     7.197] (II) Using input driver 'libinput' for 'ELAN1201:00 04F3:3098 Mouse'
[     7.197] (**) ELAN1201:00 04F3:3098 Mouse: always reports core events
[     7.197] (**) Option "Device" "/dev/input/event18"
[     7.197] (**) Option "_source" "server/udev"
[     7.199] (II) event18 - ELAN1201:00 04F3:3098 Mouse: is tagged by udev as: Mouse Pointingstick
[     7.199] (II) event18 - ELAN1201:00 04F3:3098 Mouse: device is a pointer
[     7.201] (II) event18 - ELAN1201:00 04F3:3098 Mouse: device removed
[     7.272] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input22/event18"
[     7.272] (II) XINPUT: Adding extended input device "ELAN1201:00 04F3:3098 Mouse" (type: MOUSE, id 14)
[     7.272] (**) Option "AccelerationScheme" "none"
[     7.272] (**) ELAN1201:00 04F3:3098 Mouse: (accel) selected scheme none/0
[     7.272] (**) ELAN1201:00 04F3:3098 Mouse: (accel) acceleration factor: 2.000
[     7.273] (**) ELAN1201:00 04F3:3098 Mouse: (accel) acceleration threshold: 4
[     7.274] (II) event18 - ELAN1201:00 04F3:3098 Mouse: is tagged by udev as: Mouse Pointingstick
[     7.275] (II) event18 - ELAN1201:00 04F3:3098 Mouse: device is a pointer
[     7.277] (II) config/udev: Adding input device ELAN1201:00 04F3:3098 Mouse (/dev/input/mouse0)
[     7.277] (II) No input driver specified, ignoring this device.
[     7.277] (II) This device may have been added with another device file.
[     7.278] (II) config/udev: Adding input device ELAN1201:00 04F3:3098 Touchpad (/dev/input/event7)
[     7.278] (**) ELAN1201:00 04F3:3098 Touchpad: Applying InputClass "evdev touchpad catchall"
[     7.278] (**) ELAN1201:00 04F3:3098 Touchpad: Applying InputClass "libinput touchpad catchall"
[     7.278] (II) Using input driver 'libinput' for 'ELAN1201:00 04F3:3098 Touchpad'
[     7.278] (**) ELAN1201:00 04F3:3098 Touchpad: always reports core events
[     7.278] (**) Option "Device" "/dev/input/event7"
[     7.278] (**) Option "_source" "server/udev"
[     7.279] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: is tagged by udev as: Touchpad
[     7.282] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: device is a touchpad
[     7.282] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: device removed
[     7.353] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input23/event7"
[     7.353] (II) XINPUT: Adding extended input device "ELAN1201:00 04F3:3098 Touchpad" (type: TOUCHPAD, id 15)
[     7.355] (**) Option "AccelerationScheme" "none"
[     7.355] (**) ELAN1201:00 04F3:3098 Touchpad: (accel) selected scheme none/0
[     7.355] (**) ELAN1201:00 04F3:3098 Touchpad: (accel) acceleration factor: 2.000
[     7.355] (**) ELAN1201:00 04F3:3098 Touchpad: (accel) acceleration threshold: 4
[     7.357] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: is tagged by udev as: Touchpad
[     7.359] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: device is a touchpad
[     7.361] (II) config/udev: Adding input device ELAN1201:00 04F3:3098 Touchpad (/dev/input/mouse1)
[     7.361] (II) No input driver specified, ignoring this device.
[     7.361] (II) This device may have been added with another device file.
[     7.361] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event11)
[     7.361] (**) Asus WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[     7.361] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     7.361] (**) Asus WMI hotkeys: Applying InputClass "system-keyboard"
[     7.361] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[     7.361] (**) Asus WMI hotkeys: always reports core events
[     7.361] (**) Option "Device" "/dev/input/event11"
[     7.361] (**) Option "_source" "server/udev"
[     7.362] (II) event11 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[     7.363] (II) event11 - Asus WMI hotkeys: device is a keyboard
[     7.363] (II) event11 - Asus WMI hotkeys: device removed
[     7.432] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input13/event11"
[     7.432] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 16)
[     7.432] (**) Option "xkb_model" "pc104"
[     7.432] (**) Option "xkb_layout" "us"
[     7.432] (**) Option "xkb_options" "ctrl:nocaps"
[     7.433] (II) event11 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[     7.433] (II) event11 - Asus WMI hotkeys: device is a keyboard
[     7.435] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[     7.435] (II) No input driver specified, ignoring this device.
[     7.435] (II) This device may have been added with another device file.
[     7.442] (**) Asus Keyboard: Applying InputClass "evdev keyboard catchall"
[     7.442] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[     7.442] (**) Asus Keyboard: Applying InputClass "system-keyboard"
[     7.442] (II) Using input driver 'libinput' for 'Asus Keyboard'
[     7.442] (**) Asus Keyboard: always reports core events
[     7.442] (**) Option "Device" "/dev/input/event9"
[     7.442] (**) Option "_source" "_driver/libinput"
[     7.443] (II) libinput: Asus Keyboard: is a virtual subdevice
[     7.443] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input25/event9"
[     7.443] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 17)
[     7.443] (**) Option "xkb_model" "pc104"
[     7.443] (**) Option "xkb_layout" "us"
[     7.443] (**) Option "xkb_options" "ctrl:nocaps"
[    26.783] (II) event3  - Power Button: device removed
[    26.818] (II) event6  - Asus Wireless Radio Control: device removed
[    26.872] (II) event4  - Video Bus: device removed
[    26.938] (II) event1  - Power Button: device removed
[    26.965] (II) event2  - Sleep Button: device removed
[    26.992] (II) event16 - Asus Keyboard: device removed
[    27.018] (II) event20 - Asus Keyboard: device removed
[    27.072] (II) event18 - ELAN1201:00 04F3:3098 Mouse: device removed
[    27.125] (II) event7  - ELAN1201:00 04F3:3098 Touchpad: device removed
[    27.192] (II) event11 - Asus WMI hotkeys: device removed
[    27.245] (II) event9  - Asus Keyboard: device removed

dmesg:

[    0.000000] Linux version 5.14.6-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils) 2.36.1) #1 SMP PREEMPT Sat, 18 Sep 2021 16:19:35 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0a25a270-8721-4da8-8c81-d2bb2055c853 rw loglevel=3 quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000aaec4fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000aaec5000-0x00000000ac3dffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ac3e0000-0x00000000ac430fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000ac431000-0x00000000ac5e6fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000ac5e7000-0x00000000acf53fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000acf54000-0x00000000acffefff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000acfff000-0x00000000adffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ae000000-0x00000000afffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000062f33ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000062f340000-0x00000006701fffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0xac5cf000 ACPI 2.0=0xac5cf014 TPMFinalLog=0xac59d000 SMBIOS=0xace01000 SMBIOS 3.0=0xace00000 MEMATTR=0xa92db018 ESRT=0xa9d2b398 
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. ROG Zephyrus G14 GA401IV_GA401IV/GA401IV, BIOS GA401IV.219 12/30/2020
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2994.328 MHz processor
[    0.000129] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000131] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000135] last_pfn = 0x62f340 max_arch_pfn = 0x400000000
[    0.000299] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000516] e820: update [mem 0xb0000000-0xffffffff] usable ==> reserved
[    0.000524] last_pfn = 0xae000 max_arch_pfn = 0x400000000
[    0.003907] esrt: Reserving ESRT space from 0x00000000a9d2b398 to 0x00000000a9d2b3d0.
[    0.003917] e820: update [mem 0xa9d2b000-0xa9d2bfff] usable ==> reserved
[    0.003951] Using GB pages for direct mapping
[    0.004399] Secure boot could not be determined
[    0.004399] RAMDISK: [mem 0x37035000-0x37811fff]
[    0.004403] ACPI: Early table checksum verification disabled
[    0.004406] ACPI: RSDP 0x00000000AC5CF014 000024 (v02 ALASKA)
[    0.004409] ACPI: XSDT 0x00000000AC5CE728 0000EC (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.004413] ACPI: FACP 0x00000000AC426000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.004417] ACPI: DSDT 0x00000000AC41A000 00B83C (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.004419] ACPI: FACS 0x00000000AC59B000 000040
[    0.004421] ACPI: MSDM 0x00000000AC430000 000055 (v03 ALASKA A M I    01072009 ASUS 00000001)
[    0.004423] ACPI: SSDT 0x00000000AC428000 007216 (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.004425] ACPI: IVRS 0x00000000AC427000 0001A4 (v02 AMD    AmdTable 00000001 AMD  00000000)
[    0.004427] ACPI: FIDT 0x00000000AC419000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.004429] ACPI: ECDT 0x00000000AC418000 0000C1 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.004431] ACPI: MCFG 0x00000000AC417000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.004433] ACPI: HPET 0x00000000AC416000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.004435] ACPI: VFCT 0x00000000AC408000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.004437] ACPI: BGRT 0x00000000AC407000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.004439] ACPI: TPM2 0x00000000AC406000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.004441] ACPI: SSDT 0x00000000AC402000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.004443] ACPI: CRAT 0x00000000AC401000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.004445] ACPI: CDIT 0x00000000AC400000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.004447] ACPI: SSDT 0x00000000AC3FF000 0000B9 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004449] ACPI: SSDT 0x00000000AC3FE000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004450] ACPI: SSDT 0x00000000AC3FC000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004452] ACPI: SSDT 0x00000000AC3FA000 001C5E (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004454] ACPI: SSDT 0x00000000AC3F6000 00313B (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004456] ACPI: WSMT 0x00000000AC3F5000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.004458] ACPI: APIC 0x00000000AC3F4000 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.004460] ACPI: SSDT 0x00000000AC3F3000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004462] ACPI: SSDT 0x00000000AC3F2000 00052F (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004464] ACPI: SSDT 0x00000000AC3F1000 000827 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.004466] ACPI: FPDT 0x00000000AC3F0000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.004467] ACPI: Reserving FACP table memory at [mem 0xac426000-0xac426113]
[    0.004468] ACPI: Reserving DSDT table memory at [mem 0xac41a000-0xac42583b]
[    0.004469] ACPI: Reserving FACS table memory at [mem 0xac59b000-0xac59b03f]
[    0.004470] ACPI: Reserving MSDM table memory at [mem 0xac430000-0xac430054]
[    0.004470] ACPI: Reserving SSDT table memory at [mem 0xac428000-0xac42f215]
[    0.004471] ACPI: Reserving IVRS table memory at [mem 0xac427000-0xac4271a3]
[    0.004472] ACPI: Reserving FIDT table memory at [mem 0xac419000-0xac41909b]
[    0.004472] ACPI: Reserving ECDT table memory at [mem 0xac418000-0xac4180c0]
[    0.004473] ACPI: Reserving MCFG table memory at [mem 0xac417000-0xac41703b]
[    0.004473] ACPI: Reserving HPET table memory at [mem 0xac416000-0xac416037]
[    0.004474] ACPI: Reserving VFCT table memory at [mem 0xac408000-0xac415483]
[    0.004475] ACPI: Reserving BGRT table memory at [mem 0xac407000-0xac407037]
[    0.004475] ACPI: Reserving TPM2 table memory at [mem 0xac406000-0xac40604b]
[    0.004476] ACPI: Reserving SSDT table memory at [mem 0xac402000-0xac4059f3]
[    0.004476] ACPI: Reserving CRAT table memory at [mem 0xac401000-0xac401f27]
[    0.004477] ACPI: Reserving CDIT table memory at [mem 0xac400000-0xac400028]
[    0.004478] ACPI: Reserving SSDT table memory at [mem 0xac3ff000-0xac3ff0b8]
[    0.004478] ACPI: Reserving SSDT table memory at [mem 0xac3fe000-0xac3fed36]
[    0.004479] ACPI: Reserving SSDT table memory at [mem 0xac3fc000-0xac3fd0a4]
[    0.004480] ACPI: Reserving SSDT table memory at [mem 0xac3fa000-0xac3fbc5d]
[    0.004480] ACPI: Reserving SSDT table memory at [mem 0xac3f6000-0xac3f913a]
[    0.004481] ACPI: Reserving WSMT table memory at [mem 0xac3f5000-0xac3f5027]
[    0.004481] ACPI: Reserving APIC table memory at [mem 0xac3f4000-0xac3f40dd]
[    0.004482] ACPI: Reserving SSDT table memory at [mem 0xac3f3000-0xac3f307c]
[    0.004483] ACPI: Reserving SSDT table memory at [mem 0xac3f2000-0xac3f252e]
[    0.004483] ACPI: Reserving SSDT table memory at [mem 0xac3f1000-0xac3f1826]
[    0.004484] ACPI: Reserving FPDT table memory at [mem 0xac3f0000-0xac3f0043]
[    0.004531] No NUMA configuration found
[    0.004532] Faking a node at [mem 0x0000000000000000-0x000000062f33ffff]
[    0.004535] NODE_DATA(0) allocated [mem 0x62f33c000-0x62f33ffff]
[    0.004566] Zone ranges:
[    0.004567]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.004568]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.004569]   Normal   [mem 0x0000000100000000-0x000000062f33ffff]
[    0.004570]   Device   empty
[    0.004571] Movable zone start for each node
[    0.004571] Early memory node ranges
[    0.004572]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.004573]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.004574]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.004574]   node   0: [mem 0x000000000a20d000-0x00000000aaec4fff]
[    0.004575]   node   0: [mem 0x00000000acfff000-0x00000000adffffff]
[    0.004576]   node   0: [mem 0x0000000100000000-0x000000062f33ffff]
[    0.004578] Initmem setup node 0 [mem 0x0000000000001000-0x000000062f33ffff]
[    0.004581] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.004597] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004738] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.009539] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.009640] On node 0, zone DMA32: 8506 pages in unavailable ranges
[    0.050659] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.050687] On node 0, zone Normal: 3264 pages in unavailable ranges
[    0.050873] ACPI: PM-Timer IO Port: 0x808
[    0.050880] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.050891] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.050896] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.050897] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.050899] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.050901] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.050902] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.050915] e820: update [mem 0xa92e4000-0xa9342fff] usable ==> reserved
[    0.050923] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.050940] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.050942] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.050943] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    0.050944] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    0.050945] PM: hibernation: Registered nosave memory: [mem 0xa92e4000-0xa9342fff]
[    0.050947] PM: hibernation: Registered nosave memory: [mem 0xa9d2b000-0xa9d2bfff]
[    0.050948] PM: hibernation: Registered nosave memory: [mem 0xaaec5000-0xac3dffff]
[    0.050948] PM: hibernation: Registered nosave memory: [mem 0xac3e0000-0xac430fff]
[    0.050949] PM: hibernation: Registered nosave memory: [mem 0xac431000-0xac5e6fff]
[    0.050949] PM: hibernation: Registered nosave memory: [mem 0xac5e7000-0xacf53fff]
[    0.050950] PM: hibernation: Registered nosave memory: [mem 0xacf54000-0xacffefff]
[    0.050951] PM: hibernation: Registered nosave memory: [mem 0xae000000-0xafffffff]
[    0.050952] PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xefffffff]
[    0.050952] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.050952] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    0.050953] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.050954] [mem 0xb0000000-0xefffffff] available for PCI devices
[    0.050955] Booting paravirtualized kernel on bare hardware
[    0.050958] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.054281] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
[    0.054883] percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
[    0.054890] pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
[    0.054892] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.054917] Built 1 zonelists, mobility grouping on.  Total pages: 6043200
[    0.054918] Policy zone: Normal
[    0.054919] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0a25a270-8721-4da8-8c81-d2bb2055c853 rw loglevel=3 quiet
[    0.054958] Unknown command line parameters: BOOT_IMAGE=/boot/vmlinuz-linux
[    0.058614] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.060463] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.060725] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.115287] Memory: 23928436K/24557148K available (14344K kernel code, 2062K rwdata, 9352K rodata, 1800K init, 4084K bss, 628452K reserved, 0K cma-reserved)
[    0.115293] random: get_random_u64 called from __kmem_cache_create+0x2a/0x5a0 with crng_init=0
[    0.115428] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.115441] ftrace: allocating 42548 entries in 167 pages
[    0.125613] ftrace: allocated 167 pages with 5 groups
[    0.125731] rcu: Preemptible hierarchical RCU implementation.
[    0.125731] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.125732] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
[    0.125732] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.125733] 	Trampoline variant of Tasks RCU enabled.
[    0.125734] 	Rude variant of Tasks RCU enabled.
[    0.125734] 	Tracing variant of Tasks RCU enabled.
[    0.125735] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.125736] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.128281] NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
[    0.128559] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.128758] Console: colour dummy device 80x25
[    0.128767] printk: console [tty0] enabled
[    0.128791] ACPI: Core revision 20210604
[    0.128985] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.129006] APIC: Switch to symmetric I/O mode setup
[    0.129853] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
[    0.129854] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
[    0.129855] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
[    0.129855] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
[    0.130184] Switched APIC routing to physical flat.
[    0.130864] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.145675] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b295754fa1, max_idle_ns: 440795343876 ns
[    0.145685] Calibrating delay loop (skipped), value calculated using timer frequency.. 5991.18 BogoMIPS (lpj=9981093)
[    0.145688] pid_max: default: 32768 minimum: 301
[    0.147842] LSM: Security Framework initializing
[    0.147854] landlock: Up and running.
[    0.147855] Yama: becoming mindful.
[    0.147864] LSM support for eBPF active
[    0.147995] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.148117] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.148415] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.148470] LVT offset 1 assigned for vector 0xf9
[    0.148573] LVT offset 2 assigned for vector 0xf4
[    0.148598] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.148599] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.148605] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.148607] Spectre V2 : Mitigation: Full AMD retpoline
[    0.148607] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.148608] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.148610] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.148611] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[    0.148611] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.151754] Freeing SMP alternatives memory: 36K
[    0.261524] smpboot: CPU0: AMD Ryzen 9 4900HS with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
[    0.261683] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.261688] ... version:                0
[    0.261688] ... bit width:              48
[    0.261689] ... generic registers:      6
[    0.261689] ... value mask:             0000ffffffffffff
[    0.261690] ... max period:             00007fffffffffff
[    0.261690] ... fixed-purpose events:   0
[    0.261690] ... event mask:             000000000000003f
[    0.261749] rcu: Hierarchical SRCU implementation.
[    0.262152] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.262309] smp: Bringing up secondary CPUs ...
[    0.262345] x86: Booting SMP configuration:
[    0.262345] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8
[    0.278011] TSC synchronization [CPU#0 -> CPU#8]:
[    0.278013] Measured 4890 cycles TSC warp between CPUs, turning off TSC clock.
[    0.278014] tsc: Marking TSC unstable due to check_tsc_sync_source failed
[    0.279096]   #9 #10 #11 #12 #13 #14 #15
[    0.279294] smp: Brought up 1 node, 16 CPUs
[    0.279294] smpboot: Max logical packages: 1
[    0.279294] smpboot: Total of 16 processors activated (95856.93 BogoMIPS)
[    0.283143] devtmpfs: initialized
[    0.283143] x86/mm: Memory block size: 128MB
[    0.283156] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[    0.283156] ACPI: PM: Registering ACPI NVS region [mem 0xac431000-0xac5e6fff] (1794048 bytes)
[    0.283156] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.283156] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.283156] pinctrl core: initialized pinctrl subsystem
[    0.283156] PM: RTC time: 16:20:54, date: 2021-09-20
[    0.283156] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.283366] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.286155] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.286888] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.286904] audit: initializing netlink subsys (disabled)
[    0.286923] audit: type=2000 audit(1632154854.156:1): state=initialized audit_enabled=0 res=1
[    0.286923] thermal_sys: Registered thermal governor 'fair_share'
[    0.286923] thermal_sys: Registered thermal governor 'bang_bang'
[    0.286923] thermal_sys: Registered thermal governor 'step_wise'
[    0.286923] thermal_sys: Registered thermal governor 'user_space'
[    0.286923] thermal_sys: Registered thermal governor 'power_allocator'
[    0.286923] cpuidle: using governor ladder
[    0.286923] cpuidle: using governor menu
[    0.286923] HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
[    0.286923] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.286923] ACPI: bus type PCI registered
[    0.286923] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.286923] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.286923] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.286923] PCI: Using configuration type 1 for base access
[    0.286923] Kprobes globally optimized
[    0.286923] HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
[    0.286923] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.286923] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.289080] ACPI: Added _OSI(Module Device)
[    0.289082] ACPI: Added _OSI(Processor Device)
[    0.289082] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.289083] ACPI: Added _OSI(Processor Aggregator Device)
[    0.289083] ACPI: Added _OSI(Linux-Dell-Video)
[    0.289084] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.289084] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.300982] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.301609] ACPI: EC: EC started
[    0.301610] ACPI: EC: interrupt blocked
[    0.301982] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.301983] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.302413] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.307343] ACPI: Interpreter enabled
[    0.307355] ACPI: PM: (supports S0 S3 S4 S5)
[    0.307356] ACPI: Using IOAPIC for interrupt routing
[    0.307528] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.307767] ACPI: Enabled 4 GPEs in block 00 to 1F
[    0.308138] ACPI: PM: Power Resource [PG00]
[    0.309467] ACPI: PM: Power Resource [P0S0]
[    0.309479] ACPI: PM: Power Resource [P3S0]
[    0.309530] ACPI: PM: Power Resource [P0S1]
[    0.309544] ACPI: PM: Power Resource [P3S1]
[    0.312105] ACPI: PM: Power Resource [PRWL]
[    0.312488] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.312493] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.312625] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
[    0.312750] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.312751] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.312760] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    0.313006] PCI host bridge to bus 0000:00
[    0.313007] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.313008] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.313009] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.313010] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.313011] pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfebfffff window]
[    0.313012] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.313013] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.313023] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[    0.313108] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[    0.313196] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[    0.313251] pci 0000:00:01.1: [1022:1633] type 01 class 0x060400
[    0.313305] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.313391] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[    0.313454] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
[    0.313482] pci 0000:00:02.2: enabling Extended Tags
[    0.313525] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.313621] pci 0000:00:02.4: [1022:1634] type 01 class 0x060400
[    0.313691] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    0.313770] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[    0.313823] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[    0.313841] pci 0000:00:08.1: enabling Extended Tags
[    0.313868] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.313937] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400
[    0.313955] pci 0000:00:08.2: enabling Extended Tags
[    0.313982] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.314070] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.314181] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.314299] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000
[    0.314333] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000
[    0.314366] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000
[    0.314399] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000
[    0.314432] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000
[    0.314464] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000
[    0.314503] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000
[    0.314537] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000
[    0.314637] pci 0000:01:00.0: [10de:1f12] type 00 class 0x030000
[    0.314648] pci 0000:01:00.0: reg 0x10: [mem 0xfb000000-0xfbffffff]
[    0.314656] pci 0000:01:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.314664] pci 0000:01:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
[    0.314669] pci 0000:01:00.0: reg 0x24: [io  0xf000-0xf07f]
[    0.314674] pci 0000:01:00.0: reg 0x30: [mem 0xfc000000-0xfc07ffff pref]
[    0.314726] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.314791] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.315287] pci 0000:01:00.1: [10de:10f9] type 00 class 0x040300
[    0.315297] pci 0000:01:00.1: reg 0x10: [mem 0xfc080000-0xfc083fff]
[    0.315416] pci 0000:01:00.2: [10de:1ada] type 00 class 0x0c0330
[    0.315431] pci 0000:01:00.2: reg 0x10: [mem 0xc2000000-0xc203ffff 64bit pref]
[    0.315445] pci 0000:01:00.2: reg 0x1c: [mem 0xc2040000-0xc204ffff 64bit pref]
[    0.315494] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    0.315552] pci 0000:01:00.3: [10de:1adb] type 00 class 0x0c8000
[    0.315561] pci 0000:01:00.3: reg 0x10: [mem 0xfc084000-0xfc084fff]
[    0.315621] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    0.315683] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.315685] pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
[    0.315687] pci 0000:00:01.1:   bridge window [mem 0xfb000000-0xfc0fffff]
[    0.315690] pci 0000:00:01.1:   bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[    0.315757] pci 0000:02:00.0: [8086:2723] type 00 class 0x028000
[    0.315788] pci 0000:02:00.0: reg 0x10: [mem 0xfc800000-0xfc803fff 64bit]
[    0.315915] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.316034] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.316038] pci 0000:00:02.2:   bridge window [mem 0xfc800000-0xfc8fffff]
[    0.316117] pci 0000:03:00.0: [1987:5013] type 00 class 0x010802
[    0.316134] pci 0000:03:00.0: reg 0x10: [mem 0xfc700000-0xfc703fff 64bit]
[    0.316325] pci 0000:00:02.4: PCI bridge to [bus 03]
[    0.316329] pci 0000:00:02.4:   bridge window [mem 0xfc700000-0xfc7fffff]
[    0.316385] pci 0000:04:00.0: [1002:1636] type 00 class 0x030000
[    0.316395] pci 0000:04:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.316402] pci 0000:04:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.316406] pci 0000:04:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.316411] pci 0000:04:00.0: reg 0x24: [mem 0xfc500000-0xfc57ffff]
[    0.316418] pci 0000:04:00.0: enabling Extended Tags
[    0.316428] pci 0000:04:00.0: BAR 0: assigned to efifb
[    0.316462] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.316536] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300
[    0.316543] pci 0000:04:00.1: reg 0x10: [mem 0xfc5c8000-0xfc5cbfff]
[    0.316562] pci 0000:04:00.1: enabling Extended Tags
[    0.316586] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.316635] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000
[    0.316646] pci 0000:04:00.2: reg 0x18: [mem 0xfc400000-0xfc4fffff]
[    0.316655] pci 0000:04:00.2: reg 0x24: [mem 0xfc5cc000-0xfc5cdfff]
[    0.316661] pci 0000:04:00.2: enabling Extended Tags
[    0.316736] pci 0000:04:00.3: [1022:1639] type 00 class 0x0c0330
[    0.316746] pci 0000:04:00.3: reg 0x10: [mem 0xfc300000-0xfc3fffff 64bit]
[    0.316767] pci 0000:04:00.3: enabling Extended Tags
[    0.316793] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
[    0.316844] pci 0000:04:00.4: [1022:1639] type 00 class 0x0c0330
[    0.316853] pci 0000:04:00.4: reg 0x10: [mem 0xfc200000-0xfc2fffff 64bit]
[    0.316875] pci 0000:04:00.4: enabling Extended Tags
[    0.316901] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold
[    0.316951] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000
[    0.316957] pci 0000:04:00.5: reg 0x10: [mem 0xfc580000-0xfc5bffff]
[    0.316976] pci 0000:04:00.5: enabling Extended Tags
[    0.317001] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold
[    0.317050] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300
[    0.317057] pci 0000:04:00.6: reg 0x10: [mem 0xfc5c0000-0xfc5c7fff]
[    0.317082] pci 0000:04:00.6: enabling Extended Tags
[    0.317107] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold
[    0.317168] pci 0000:00:08.1: PCI bridge to [bus 04]
[    0.317171] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.317172] pci 0000:00:08.1:   bridge window [mem 0xfc200000-0xfc5fffff]
[    0.317175] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.317208] pci 0000:05:00.0: [1022:7901] type 00 class 0x010601
[    0.317233] pci 0000:05:00.0: reg 0x24: [mem 0xfc601000-0xfc6017ff]
[    0.317241] pci 0000:05:00.0: enabling Extended Tags
[    0.317338] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601
[    0.317363] pci 0000:05:00.1: reg 0x24: [mem 0xfc600000-0xfc6007ff]
[    0.317371] pci 0000:05:00.1: enabling Extended Tags
[    0.317443] pci 0000:00:08.2: PCI bridge to [bus 05]
[    0.317446] pci 0000:00:08.2:   bridge window [mem 0xfc600000-0xfc6fffff]
[    0.317838] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.317878] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.317913] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.317955] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.317994] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.318025] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.318057] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.318088] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.318672] ACPI: EC: interrupt unblocked
[    0.318673] ACPI: EC: event unblocked
[    0.318678] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.318679] ACPI: EC: GPE=0x3
[    0.318679] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot ECDT EC initialization complete
[    0.318681] ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
[    0.318711] iommu: Default domain type: Translated 
[    0.318721] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.318721] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.318721] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.318721] pci 0000:04:00.0: vgaarb: bridge control possible
[    0.318721] pci 0000:04:00.0: vgaarb: setting as boot device
[    0.318721] vgaarb: loaded
[    0.318721] SCSI subsystem initialized
[    0.318721] libata version 3.00 loaded.
[    0.318721] ACPI: bus type USB registered
[    0.319019] usbcore: registered new interface driver usbfs
[    0.319023] usbcore: registered new interface driver hub
[    0.319027] usbcore: registered new device driver usb
[    0.320276] pps_core: LinuxPPS API ver. 1 registered
[    0.320278] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.320279] PTP clock support registered
[    0.320284] EDAC MC: Ver: 3.0.0
[    0.320446] Registered efivars operations
[    0.320446] NetLabel: Initializing
[    0.320446] NetLabel:  domain hash size = 128
[    0.320446] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.320446] NetLabel:  unlabeled traffic allowed by default
[    0.320446] PCI: Using ACPI for IRQ routing
[    0.325176] PCI: pci_cache_line_size set to 64 bytes
[    0.325331] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.325332] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]
[    0.325333] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.325334] e820: reserve RAM buffer [mem 0xa92e4000-0xabffffff]
[    0.325335] e820: reserve RAM buffer [mem 0xa9d2b000-0xabffffff]
[    0.325335] e820: reserve RAM buffer [mem 0xaaec5000-0xabffffff]
[    0.325336] e820: reserve RAM buffer [mem 0xae000000-0xafffffff]
[    0.325336] e820: reserve RAM buffer [mem 0x62f340000-0x62fffffff]
[    0.325340] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.325340] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.326796] clocksource: Switched to clocksource hpet
[    0.331780] VFS: Disk quotas dquot_6.6.0
[    0.331796] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.331890] pnp: PnP ACPI init
[    0.332029] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.332309] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.332311] system 00:02: [io  0x040b] has been reserved
[    0.332312] system 00:02: [io  0x04d6] has been reserved
[    0.332313] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    0.332314] system 00:02: [io  0x0c14] has been reserved
[    0.332314] system 00:02: [io  0x0c50-0x0c51] has been reserved
[    0.332315] system 00:02: [io  0x0c52] has been reserved
[    0.332316] system 00:02: [io  0x0c6c] has been reserved
[    0.332317] system 00:02: [io  0x0c6f] has been reserved
[    0.332318] system 00:02: [io  0x0cd0-0x0cd1] has been reserved
[    0.332319] system 00:02: [io  0x0cd2-0x0cd3] has been reserved
[    0.332319] system 00:02: [io  0x0cd4-0x0cd5] has been reserved
[    0.332320] system 00:02: [io  0x0cd6-0x0cd7] has been reserved
[    0.332321] system 00:02: [io  0x0cd8-0x0cdf] has been reserved
[    0.332322] system 00:02: [io  0x0800-0x089f] has been reserved
[    0.332323] system 00:02: [io  0x0b00-0x0b0f] has been reserved
[    0.332323] system 00:02: [io  0x0b20-0x0b3f] has been reserved
[    0.332325] system 00:02: [io  0x0900-0x090f] has been reserved
[    0.332326] system 00:02: [io  0x0910-0x091f] has been reserved
[    0.332330] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.332331] system 00:02: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.332332] system 00:02: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.332334] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.332335] system 00:02: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.332336] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.332337] system 00:02: [mem 0xff000000-0xffffffff] has been reserved
[    0.332699] pnp: PnP ACPI: found 3 devices
[    0.341447] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.341564] NET: Registered PF_INET protocol family
[    0.341927] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.344621] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.344992] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.345733] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.345924] TCP: Hash tables configured (established 262144 bind 65536)
[    0.346189] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.346379] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.346554] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.346729] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.346737] NET: Registered PF_XDP protocol family
[    0.346760] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.346767] pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
[    0.346774] pci 0000:00:01.1:   bridge window [mem 0xfb000000-0xfc0fffff]
[    0.346778] pci 0000:00:01.1:   bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[    0.346784] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.346793] pci 0000:00:02.2:   bridge window [mem 0xfc800000-0xfc8fffff]
[    0.346808] pci 0000:00:02.4: PCI bridge to [bus 03]
[    0.346819] pci 0000:00:02.4:   bridge window [mem 0xfc700000-0xfc7fffff]
[    0.346836] pci 0000:00:08.1: PCI bridge to [bus 04]
[    0.346838] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.346843] pci 0000:00:08.1:   bridge window [mem 0xfc200000-0xfc5fffff]
[    0.346846] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.346852] pci 0000:00:08.2: PCI bridge to [bus 05]
[    0.346856] pci 0000:00:08.2:   bridge window [mem 0xfc600000-0xfc6fffff]
[    0.346865] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.346868] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.346871] pci_bus 0000:00: resource 6 [io  0x0d00-0xffff window]
[    0.346873] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff window]
[    0.346876] pci_bus 0000:00: resource 8 [mem 0xb0000000-0xfebfffff window]
[    0.346879] pci_bus 0000:00: resource 9 [mem 0xfee00000-0xffffffff window]
[    0.346882] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    0.346884] pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfc0fffff]
[    0.346886] pci_bus 0000:01: resource 2 [mem 0xb0000000-0xc20fffff 64bit pref]
[    0.346890] pci_bus 0000:02: resource 1 [mem 0xfc800000-0xfc8fffff]
[    0.346892] pci_bus 0000:03: resource 1 [mem 0xfc700000-0xfc7fffff]
[    0.346895] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
[    0.346897] pci_bus 0000:04: resource 1 [mem 0xfc200000-0xfc5fffff]
[    0.346899] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.346902] pci_bus 0000:05: resource 1 [mem 0xfc600000-0xfc6fffff]
[    0.347160] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.347193] pci 0000:01:00.2: D0 power state depends on 0000:01:00.0
[    0.347484] pci 0000:01:00.3: D0 power state depends on 0000:01:00.0
[    0.347577] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0
[    0.347586] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec
[    0.347789] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec
[    0.347923] PCI: CLS 64 bytes, default 64
[    0.347943] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.348022] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.348025] pci 0000:00:00.2: PCI INT A: not connected
[    0.348029] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.348216] Trying to unpack rootfs image as initramfs...
[    0.348539] pci 0000:00:01.0: Adding to iommu group 0
[    0.348565] pci 0000:00:01.1: Adding to iommu group 1
[    0.348608] pci 0000:00:02.0: Adding to iommu group 2
[    0.348635] pci 0000:00:02.2: Adding to iommu group 3
[    0.348658] pci 0000:00:02.4: Adding to iommu group 4
[    0.348698] pci 0000:00:08.0: Adding to iommu group 5
[    0.348714] pci 0000:00:08.1: Adding to iommu group 5
[    0.348733] pci 0000:00:08.2: Adding to iommu group 5
[    0.348770] pci 0000:00:14.0: Adding to iommu group 6
[    0.348787] pci 0000:00:14.3: Adding to iommu group 6
[    0.348845] pci 0000:00:18.0: Adding to iommu group 7
[    0.348856] pci 0000:00:18.1: Adding to iommu group 7
[    0.348864] pci 0000:00:18.2: Adding to iommu group 7
[    0.348872] pci 0000:00:18.3: Adding to iommu group 7
[    0.348879] pci 0000:00:18.4: Adding to iommu group 7
[    0.348889] pci 0000:00:18.5: Adding to iommu group 7
[    0.348899] pci 0000:00:18.6: Adding to iommu group 7
[    0.348910] pci 0000:00:18.7: Adding to iommu group 7
[    0.348925] pci 0000:01:00.0: Adding to iommu group 8
[    0.348933] pci 0000:01:00.1: Adding to iommu group 8
[    0.348941] pci 0000:01:00.2: Adding to iommu group 8
[    0.348948] pci 0000:01:00.3: Adding to iommu group 8
[    0.348963] pci 0000:02:00.0: Adding to iommu group 9
[    0.348976] pci 0000:03:00.0: Adding to iommu group 10
[    0.348985] pci 0000:04:00.0: Adding to iommu group 5
[    0.348991] pci 0000:04:00.1: Adding to iommu group 5
[    0.348995] pci 0000:04:00.2: Adding to iommu group 5
[    0.348999] pci 0000:04:00.3: Adding to iommu group 5
[    0.349004] pci 0000:04:00.4: Adding to iommu group 5
[    0.349009] pci 0000:04:00.5: Adding to iommu group 5
[    0.349031] pci 0000:04:00.6: Adding to iommu group 5
[    0.349036] pci 0000:05:00.0: Adding to iommu group 5
[    0.349041] pci 0000:05:00.1: Adding to iommu group 5
[    0.351590] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.351598] AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
[    0.351602] AMD-Vi: Interrupt remapping enabled
[    0.351603] AMD-Vi: Virtual APIC enabled
[    0.351603] AMD-Vi: X2APIC enabled
[    0.351954] amd_uncore: 4  amd_df counters detected
[    0.351958] amd_uncore: 6  amd_l3 counters detected
[    0.353023] LVT offset 0 assigned for vector 0x400
[    0.353509] perf: AMD IBS detected (0x000003ff)
[    0.353515] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.356746] Initialise system trusted keyrings
[    0.356764] Key type blacklist registered
[    0.356852] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.357522] zbud: loaded
[    0.360583] Key type asymmetric registered
[    0.360585] Asymmetric key parser 'x509' registered
[    0.360592] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.360698] io scheduler mq-deadline registered
[    0.360698] io scheduler kyber registered
[    0.360725] io scheduler bfq registered
[    0.361324] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[    0.361432] pcieport 0000:00:02.2: PME: Signaling with IRQ 27
[    0.361535] pcieport 0000:00:02.4: PME: Signaling with IRQ 28
[    0.361630] pcieport 0000:00:08.1: PME: Signaling with IRQ 29
[    0.361803] pcieport 0000:00:08.2: PME: Signaling with IRQ 30
[    0.361880] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.361897] efifb: probing for efifb
[    0.361918] efifb: showing boot graphics
[    0.363323] efifb: framebuffer at 0xd0000000, using 8128k, total 8128k
[    0.363324] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.363325] efifb: scrolling: redraw
[    0.363326] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.363384] fbcon: Deferring console take-over
[    0.363385] fb0: EFI VGA frame buffer device
[    0.364149] ACPI: AC: AC Adapter [AC0] (on-line)
[    0.364188] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:39/PNP0C09:00/PNP0C0D:00/input/input0
[    0.364200] ACPI: button: Lid Switch [LID]
[    0.364214] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.364223] ACPI: button: Power Button [PWRB]
[    0.364238] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.364245] ACPI: button: Sleep Button [SLPB]
[    0.364259] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.366363] ACPI: button: Power Button [PWRF]
[    0.366448] Monitor-Mwait will be used to enter C-1 state
[    0.366461] ACPI: \_SB_.PLTF.P000: Found 3 idle states
[    0.366466] ACPI: FW issue: working around C-state latencies out of order
[    0.366669] ACPI: \_SB_.PLTF.P001: Found 3 idle states
[    0.366673] ACPI: FW issue: working around C-state latencies out of order
[    0.366727] ACPI: \_SB_.PLTF.P002: Found 3 idle states
[    0.366731] ACPI: FW issue: working around C-state latencies out of order
[    0.366885] ACPI: \_SB_.PLTF.P003: Found 3 idle states
[    0.366889] ACPI: FW issue: working around C-state latencies out of order
[    0.366947] ACPI: \_SB_.PLTF.P004: Found 3 idle states
[    0.366950] ACPI: FW issue: working around C-state latencies out of order
[    0.367062] ACPI: \_SB_.PLTF.P005: Found 3 idle states
[    0.367067] ACPI: FW issue: working around C-state latencies out of order
[    0.367142] ACPI: \_SB_.PLTF.P006: Found 3 idle states
[    0.367146] ACPI: FW issue: working around C-state latencies out of order
[    0.367312] ACPI: \_SB_.PLTF.P007: Found 3 idle states
[    0.367317] ACPI: FW issue: working around C-state latencies out of order
[    0.367407] ACPI: \_SB_.PLTF.P008: Found 3 idle states
[    0.367411] ACPI: FW issue: working around C-state latencies out of order
[    0.367734] ACPI: \_SB_.PLTF.P009: Found 3 idle states
[    0.367738] ACPI: FW issue: working around C-state latencies out of order
[    0.367921] ACPI: \_SB_.PLTF.P00A: Found 3 idle states
[    0.367926] ACPI: FW issue: working around C-state latencies out of order
[    0.368114] ACPI: \_SB_.PLTF.P00B: Found 3 idle states
[    0.368122] ACPI: FW issue: working around C-state latencies out of order
[    0.368366] ACPI: \_SB_.PLTF.P00C: Found 3 idle states
[    0.368375] ACPI: FW issue: working around C-state latencies out of order
[    0.368588] ACPI: \_SB_.PLTF.P00D: Found 3 idle states
[    0.368592] ACPI: FW issue: working around C-state latencies out of order
[    0.368769] ACPI: \_SB_.PLTF.P00E: Found 3 idle states
[    0.368773] ACPI: FW issue: working around C-state latencies out of order
[    0.368947] ACPI: \_SB_.PLTF.P00F: Found 3 idle states
[    0.368952] ACPI: FW issue: working around C-state latencies out of order
[    0.369874] ACPI: \_TZ_.THRM: Invalid passive threshold
[    0.370053] thermal LNXTHERM:00: registered as thermal_zone0
[    0.370055] ACPI: thermal: Thermal Zone [THRM] (71 C)
[    0.370307] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.371438] ACPI: battery: Slot [BAT0] (battery present)
[    0.371720] Non-volatile memory driver v1.3
[    0.371723] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.373445] nvme 0000:03:00.0: platform quirk: setting simple suspend
[    0.373514] nvme nvme0: pci function 0000:03:00.0
[    0.373562] ahci 0000:05:00.0: version 3.0
[    0.373890] ahci 0000:05:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.373894] ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.374143] scsi host0: ahci
[    0.374192] ata1: SATA max UDMA/133 abar m2048@0xfc601000 port 0xfc601100 irq 34
[    0.374387] ahci 0000:05:00.1: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.374390] ahci 0000:05:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.374690] scsi host1: ahci
[    0.374724] ata2: SATA max UDMA/133 abar m2048@0xfc600000 port 0xfc600100 irq 36
[    0.374752] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.374758] ehci-pci: EHCI PCI platform driver
[    0.374777] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.374778] ohci-pci: OHCI PCI platform driver
[    0.374783] uhci_hcd: USB Universal Host Controller Interface driver
[    0.374817] usbcore: registered new interface driver usbserial_generic
[    0.374819] usbserial: USB Serial support registered for generic
[    0.375058] rtc_cmos 00:01: RTC can wake from S4
[    0.375312] rtc_cmos 00:01: registered as rtc0
[    0.375418] rtc_cmos 00:01: setting system clock to 2021-09-20T16:20:55 UTC (1632154855)
[    0.375454] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.375902] ledtrig-cpu: registered to indicate activity on CPUs
[    0.375989] hid: raw HID events driver (C) Jiri Kosina
[    0.376087] drop_monitor: Initializing network drop monitor service
[    0.376132] Initializing XFRM netlink socket
[    0.376196] NET: Registered PF_INET6 protocol family
[    0.383285] nvme nvme0: missing or invalid SUBNQN field.
[    0.390574] Freeing initrd memory: 8052K
[    0.396100] Segment Routing with IPv6
[    0.396103] RPL Segment Routing with IPv6
[    0.396127] NET: Registered PF_PACKET protocol family
[    0.397681] microcode: CPU0: patch_level=0x08600104
[    0.397695] microcode: CPU1: patch_level=0x08600104
[    0.397726] microcode: CPU2: patch_level=0x08600104
[    0.397747] microcode: CPU3: patch_level=0x08600104
[    0.397751] microcode: CPU4: patch_level=0x08600104
[    0.397761] microcode: CPU5: patch_level=0x08600104
[    0.397791] microcode: CPU6: patch_level=0x08600104
[    0.397814] microcode: CPU7: patch_level=0x08600104
[    0.397847] microcode: CPU8: patch_level=0x08600104
[    0.397863] microcode: CPU9: patch_level=0x08600104
[    0.397901] microcode: CPU10: patch_level=0x08600104
[    0.397917] microcode: CPU11: patch_level=0x08600104
[    0.397953] microcode: CPU12: patch_level=0x08600104
[    0.397971] microcode: CPU13: patch_level=0x08600104
[    0.398003] microcode: CPU14: patch_level=0x08600104
[    0.398024] microcode: CPU15: patch_level=0x08600104
[    0.398031] microcode: Microcode Update Driver: v2.2.
[    0.398595] resctrl: L3 allocation detected
[    0.398598] resctrl: L3DATA allocation detected
[    0.398598] resctrl: L3CODE allocation detected
[    0.398599] resctrl: MB allocation detected
[    0.398599] resctrl: L3 monitoring detected
[    0.398602] IPI shorthand broadcast: enabled
[    0.398960] registered taskstats version 1
[    0.400048] Loading compiled-in X.509 certificates
[    0.402062] Loaded X.509 cert 'Build time autogenerated kernel key: 3040a13630d5109cb9bc02cf2e320799be7f67ae'
[    0.402869] zswap: loaded using pool lz4/z3fold
[    0.403381] Key type ._fscrypt registered
[    0.403383] Key type .fscrypt registered
[    0.403384] Key type fscrypt-provisioning registered
[    0.403654] PM:   Magic number: 5:490:338
[    0.403682] tty tty59: hash matches
[    0.403706] acpi ACPI0007:00: hash matches
[    0.403721] memory memory188: hash matches
[    0.403878] RAS: Correctable Errors collector initialized.
[    0.403888] Unstable clock detected, switching default tracing clock to "global"
               If you want to keep using the local clock, then add:
                 "trace_clock=local"
               on the kernel command line
[    0.443909] nvme nvme0: allocated 128 MiB host memory buffer.
[    0.447862] nvme nvme0: 8/0/0 default/read/poll queues
[    0.450875]  nvme0n1: p1 p2 p3 p4 p5
[    0.689656] ata1: SATA link down (SStatus 0 SControl 300)
[    0.689657] ata2: SATA link down (SStatus 0 SControl 300)
[    0.691193] Freeing unused decrypted memory: 2036K
[    0.691705] Freeing unused kernel image (initmem) memory: 1800K
[    0.691714] Write protecting the kernel read-only data: 26624k
[    0.692567] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.693059] Freeing unused kernel image (rodata/data gap) memory: 888K
[    0.715353] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.715357] rodata_test: all tests were successful
[    0.715362] Run /init as init process
[    0.715363]   with arguments:
[    0.715364]     /init
[    0.715365]   with environment:
[    0.715365]     HOME=/
[    0.715366]     TERM=linux
[    0.715366]     BOOT_IMAGE=/boot/vmlinuz-linux
[    0.740316] fbcon: Taking over console
[    0.740410] Console: switching to colour frame buffer device 240x67
[    0.800678] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[    0.802666] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    0.802679] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 1
[    0.802966] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1b/LNXVIDEO:00/input/input4
[    0.803301] xhci_hcd 0000:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[    0.803503] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
[    0.803506] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.803508] usb usb1: Product: xHCI Host Controller
[    0.803509] usb usb1: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.803510] usb usb1: SerialNumber: 0000:01:00.2
[    0.803647] hub 1-0:1.0: USB hub found
[    0.803656] hub 1-0:1.0: 2 ports detected
[    0.803981] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    0.803984] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 2
[    0.803986] xhci_hcd 0000:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[    0.804006] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.804018] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.14
[    0.804020] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.804021] usb usb2: Product: xHCI Host Controller
[    0.804022] usb usb2: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.804022] usb usb2: SerialNumber: 0000:01:00.2
[    0.804081] hub 2-0:1.0: USB hub found
[    0.804088] hub 2-0:1.0: 4 ports detected
[    0.804491] xhci_hcd 0000:04:00.3: xHCI Host Controller
[    0.804494] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 3
[    0.804595] xhci_hcd 0000:04:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    0.804846] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
[    0.804847] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.804848] usb usb3: Product: xHCI Host Controller
[    0.804849] usb usb3: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.804849] usb usb3: SerialNumber: 0000:04:00.3
[    0.804902] hub 3-0:1.0: USB hub found
[    0.804907] hub 3-0:1.0: 4 ports detected
[    0.805148] xhci_hcd 0000:04:00.3: xHCI Host Controller
[    0.805150] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 4
[    0.805151] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    0.805162] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.805173] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.14
[    0.805174] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.805175] usb usb4: Product: xHCI Host Controller
[    0.805176] usb usb4: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.805176] usb usb4: SerialNumber: 0000:04:00.3
[    0.805222] hub 4-0:1.0: USB hub found
[    0.805225] hub 4-0:1.0: 2 ports detected
[    0.805392] xhci_hcd 0000:04:00.4: xHCI Host Controller
[    0.805395] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 5
[    0.805480] xhci_hcd 0000:04:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    0.805892] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
[    0.805896] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.805897] usb usb5: Product: xHCI Host Controller
[    0.805898] usb usb5: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.805899] usb usb5: SerialNumber: 0000:04:00.4
[    0.806002] hub 5-0:1.0: USB hub found
[    0.806008] hub 5-0:1.0: 4 ports detected
[    0.806284] xhci_hcd 0000:04:00.4: xHCI Host Controller
[    0.806286] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 6
[    0.806288] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    0.806313] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.806325] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.14
[    0.806326] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.806327] usb usb6: Product: xHCI Host Controller
[    0.806328] usb usb6: Manufacturer: Linux 5.14.6-arch1-1 xhci-hcd
[    0.806328] usb usb6: SerialNumber: 0000:04:00.4
[    0.806404] hub 6-0:1.0: USB hub found
[    0.806409] hub 6-0:1.0: 2 ports detected
[    0.949874] EXT4-fs (nvme0n1p5): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[    0.985957] random: fast init done
[    1.055765] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[    1.055788] usb 5-1: new full-speed USB device number 2 using xhci_hcd
[    1.079185] systemd[1]: systemd 249.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    1.098029] systemd[1]: Detected architecture x86-64.
[    1.099387] systemd[1]: Hostname set to <DanAsus>.
[    1.153054] random: lvmconfig: uninitialized urandom read (4 bytes read)
[    1.207403] usb 5-1: not running at top speed; connect to a high speed hub
[    1.216693] systemd[1]: Queued start job for default target Graphical Interface.
[    1.218273] usb 3-3: New USB device found, idVendor=0b05, idProduct=1866, bcdDevice= 0.02
[    1.218278] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.218279] usb 3-3: Product: N-KEY Device
[    1.218280] usb 3-3: Manufacturer: ASUSTeK Computer Inc.
[    1.225555] usb 5-1: New USB device found, idVendor=2109, idProduct=0103, bcdDevice= 6.12
[    1.225565] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.225569] usb 5-1: Product: USB 2.0 BILLBOARD
[    1.225571] usb 5-1: Manufacturer: VLI Inc.
[    1.225574] usb 5-1: SerialNumber: 0000000000000001
[    1.266172] systemd[1]: Created slice Slice /system/getty.
[    1.266435] systemd[1]: Created slice Slice /system/modprobe.
[    1.266646] systemd[1]: Created slice Slice /system/syncthing.
[    1.266801] systemd[1]: Created slice User and Session Slice.
[    1.266853] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.266885] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.266995] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.267018] systemd[1]: Reached target Local Encrypted Volumes.
[    1.267036] systemd[1]: Reached target Login Prompts.
[    1.267065] systemd[1]: Reached target Remote File Systems.
[    1.267082] systemd[1]: Reached target Slice Units.
[    1.267102] systemd[1]: Reached target Swaps.
[    1.267128] systemd[1]: Reached target Local Verity Integrity Protected Volumes.
[    1.267179] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.267248] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.268028] systemd[1]: Listening on Process Core Dump Socket.
[    1.268122] systemd[1]: Listening on Journal Audit Socket.
[    1.268175] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.268229] systemd[1]: Listening on Journal Socket.
[    1.268430] systemd[1]: Listening on udev Control Socket.
[    1.268477] systemd[1]: Listening on udev Kernel Socket.
[    1.268980] systemd[1]: Mounting Huge Pages File System...
[    1.269740] systemd[1]: Mounting POSIX Message Queue File System...
[    1.270218] systemd[1]: Mounting Kernel Debug File System...
[    1.270735] systemd[1]: Mounting Kernel Trace File System...
[    1.271920] systemd[1]: Mounting Temporary Directory /tmp...
[    1.272745] systemd[1]: Starting Create List of Static Device Nodes...
[    1.273935] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.274579] systemd[1]: Starting Load Kernel Module configfs...
[    1.275179] systemd[1]: Starting Load Kernel Module drm...
[    1.276263] systemd[1]: Starting Load Kernel Module fuse...
[    1.276831] random: lvm: uninitialized urandom read (4 bytes read)
[    1.278248] systemd[1]: Starting Set Up Additional Binary Formats...
[    1.278323] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    1.281430] systemd[1]: Starting Journal Service...
[    1.284191] systemd[1]: Starting Load Kernel Modules...
[    1.285568] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.285760] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[    1.287437] systemd[1]: Starting Coldplug All udev Devices...
[    1.288163] fuse: init (API version 7.34)
[    1.289233] systemd[1]: Mounted Huge Pages File System.
[    1.289372] systemd[1]: Mounted POSIX Message Queue File System.
[    1.289427] systemd[1]: Mounted Kernel Debug File System.
[    1.289474] systemd[1]: Mounted Kernel Trace File System.
[    1.289523] systemd[1]: Mounted Temporary Directory /tmp.
[    1.289806] systemd[1]: Finished Create List of Static Device Nodes.
[    1.290021] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    1.290222] systemd[1]: Finished Load Kernel Module configfs.
[    1.290417] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    1.290558] systemd[1]: Finished Load Kernel Module fuse.
[    1.290702] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 302 (systemd-binfmt)
[    1.291339] EXT4-fs (nvme0n1p5): re-mounted. Opts: (null). Quota mode: none.
[    1.291383] systemd[1]: Mounting Arbitrary Executable File Formats File System...
[    1.292259] systemd[1]: Mounting FUSE Control File System...
[    1.293236] systemd[1]: Mounting Kernel Configuration File System...
[    1.295174] systemd[1]: Finished Remount Root and Kernel File Systems.
[    1.295306] audit: type=1130 audit(1632154856.416:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.295866] systemd[1]: Mounted Arbitrary Executable File Formats File System.
[    1.295984] systemd[1]: Mounted FUSE Control File System.
[    1.296239] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    1.297193] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    1.298207] systemd[1]: Starting Load/Save Random Seed...
[    1.298269] systemd[1]: Condition check resulted in Create System Users being skipped.
[    1.298897] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.299604] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    1.299780] systemd[1]: Finished Load Kernel Module drm.
[    1.299833] audit: type=1130 audit(1632154856.423:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.299839] audit: type=1131 audit(1632154856.423:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.300124] systemd[1]: Finished Set Up Additional Binary Formats.
[    1.300187] audit: type=1130 audit(1632154856.423:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.300212] systemd[1]: Mounted Kernel Configuration File System.
[    1.308171] vboxdrv: loading out-of-tree module taints kernel.
[    1.308351] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
[    1.311237] vboxdrv: Found 16 processor cores
[    1.319608] systemd[1]: Finished Create Static Device Nodes in /dev.
[    1.319712] audit: type=1130 audit(1632154856.443:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.320446] audit: type=1334 audit(1632154856.443:7): prog-id=14 op=LOAD
[    1.320661] audit: type=1334 audit(1632154856.443:8): prog-id=15 op=LOAD
[    1.320824] audit: type=1334 audit(1632154856.443:9): prog-id=16 op=LOAD
[    1.321221] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    1.329307] systemd[1]: Started Journal Service.
[    1.329440] audit: type=1130 audit(1632154856.453:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.332901] vboxdrv: TSC mode is Invariant, tentative frequency 2994488306 Hz
[    1.332906] vboxdrv: Successfully loaded version 6.1.26 r145957 (interface 0x00300000)
[    1.334471] systemd-journald[303]: Received client request to flush runtime journal.
[    1.335592] VBoxNetAdp: Successfully started.
[    1.339742] VBoxNetFlt: Successfully started.
[    1.366236] usb 5-3: new full-speed USB device number 3 using xhci_hcd
[    1.383424] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.0/0003:0B05:1866.0001/input/input5
[    1.392145] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input6
[    1.397629] acpi_cpufreq: overriding BIOS provided _PSD data
[    1.439364] hid-generic 0003:0B05:1866.0001: input,hidraw0: USB HID v1.10 Keyboard [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input0
[    1.444443] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.1/0003:0B05:1866.0002/input/input7
[    1.494130] input: PC Speaker as /devices/platform/pcspkr/input/input8
[    1.494966] nvidia-gpu 0000:01:00.3: enabling device (0000 -> 0002)
[    1.495410] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    1.495416] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.497309] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    1.497313] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    1.497669] cryptd: max_cpu_qlen set to 1000
[    1.499272] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    1.499880] hid-generic 0003:0B05:1866.0002: input,hidraw1: USB HID v1.10 Keyboard [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input1
[    1.501107] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    1.501369] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    1.501835] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    1.506035] AVX2 version of gcm_enc/dec engaged.
[    1.506080] AES CTR mode by8 optimization enabled
[    1.506274] i8042: PNP: No PS/2 controller found.
[    1.511441] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input9
[    1.511584] asus_wmi: ASUS WMI generic driver loaded
[    1.511618] input: ASUSTeK Computer Inc. N-KEY Device Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input10
[    1.516676] asus_wmi: Initialization: 0x1
[    1.516754] asus_wmi: BIOS WMI version: 9.0
[    1.516799] asus_wmi: SFUN value: 0x21
[    1.516801] asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
[    1.516803] asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
[    1.536326] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input13
[    1.540354] usb 5-3: New USB device found, idVendor=27c6, idProduct=521d, bcdDevice= 1.00
[    1.540361] usb 5-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.540364] usb 5-3: Product: FingerPrint
[    1.540366] usb 5-3: Manufacturer: Goodix
[    1.566034] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input11
[    1.566339] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input12
[    1.566637] hid-generic 0003:0B05:1866.0003: input,hiddev96,hidraw2: USB HID v1.10 Device [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input2
[    1.566699] usbcore: registered new interface driver usbhid
[    1.566701] usbhid: USB HID core driver
[    1.577843] ACPI: battery: new extension: ASUS Battery Extension
[    1.663887] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    1.665718] usb 5-4: new full-speed USB device number 4 using xhci_hcd
[    1.667464] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    1.667823] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    1.667829] cfg80211: failed to load regulatory.db
[    1.689447] input: ELAN1201:00 04F3:3098 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input14
[    1.689515] input: ELAN1201:00 04F3:3098 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input15
[    1.689668] hid-generic 0018:04F3:3098.0004: input,hidraw3: I2C HID v1.00 Mouse [ELAN1201:00 04F3:3098] on i2c-ELAN1201:00
[    1.709142] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    1.712990] ccp 0000:04:00.2: enabling device (0000 -> 0002)
[    1.713206] Linux agpgart interface v0.103
[    1.713269] ccp 0000:04:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[    1.717590] snd_rn_pci_acp3x 0000:04:00.5: enabling device (0000 -> 0002)
[    1.723430] ccp 0000:04:00.2: tee enabled
[    1.723436] ccp 0000:04:00.2: psp enabled
[    1.801642] Intel(R) Wireless WiFi driver for Linux
[    1.801731] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    1.803867] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-cc-a0-64.ucode failed with error -2
[    1.806708] iwlwifi 0000:02:00.0: api flags index 2 larger than supported by driver
[    1.806728] iwlwifi 0000:02:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
[    1.807366] iwlwifi 0000:02:00.0: loaded firmware version 63.c04f3485.0 cc-a0-63.ucode op_mode iwlmvm
[    1.807829] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[    1.807922] snd_hda_intel 0000:01:00.1: Disabling MSI
[    1.807926] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    1.808048] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)
[    1.808086] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
[    1.812760] kvm: Nested Virtualization enabled
[    1.812767] SVM: kvm: Nested Paging enabled
[    1.812771] SEV supported: 14 ASIDs
[    1.812806] SVM: Virtual VMLOAD VMSAVE supported
[    1.812807] SVM: Virtual GIF supported
[    1.833434] usb 5-4: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
[    1.833447] usb 5-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.840078] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input17
[    1.865110] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card1/input16
[    1.872732] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.0/0003:0B05:1866.0001/input/input21
[    1.889387] MCE: In-kernel MCE decoding enabled.
[    1.891743] PPP generic driver version 2.4.2
[    1.892997] NET: Registered PF_PPPOX protocol family
[    1.895295] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input18
[    1.895334] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input19
[    1.904917] input: ELAN1201:00 04F3:3098 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input22
[    1.928278] Bluetooth: Core ver 2.22
[    1.928309] NET: Registered PF_BLUETOOTH protocol family
[    1.928310] Bluetooth: HCI device and connection manager initialized
[    1.928317] Bluetooth: HCI socket layer initialized
[    1.928320] Bluetooth: L2CAP socket layer initialized
[    1.928324] Bluetooth: SCO socket layer initialized
[    1.928740] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC289: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
[    1.928746] snd_hda_codec_realtek hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.928747] snd_hda_codec_realtek hdaudioC2D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    1.928749] snd_hda_codec_realtek hdaudioC2D0:    mono: mono_out=0x0
[    1.928749] snd_hda_codec_realtek hdaudioC2D0:    inputs:
[    1.928750] snd_hda_codec_realtek hdaudioC2D0:      Mic=0x19
[    1.928751] snd_hda_codec_realtek hdaudioC2D0:      Internal Mic=0x12
[    1.933686] l2tp_core: L2TP core driver, V2.0
[    1.935605] l2tp_netlink: L2TP netlink interface
[    1.937936] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    1.941650] usbcore: registered new interface driver btusb
[    1.941665] iwlwifi 0000:02:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340
[    1.944652] Bluetooth: hci0: Firmware revision 0.0 build 191 week 21 2021
[    1.949412] asus 0003:0B05:1866.0001: input,hidraw0: USB HID v1.10 Keyboard [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input0
[    1.949477] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input20
[    1.949529] input: ELAN1201:00 04F3:3098 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN1201:00/0018:04F3:3098.0004/input/input23
[    1.950284] thermal thermal_zone1: failed to read out thermal zone (-61)
[    2.039726] hid-multitouch 0018:04F3:3098.0004: input,hidraw1: I2C HID v1.00 Mouse [ELAN1201:00 04F3:3098] on i2c-ELAN1201:00
[    2.040561] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.1/0003:0B05:1866.0002/input/input24
[    2.067460] iwlwifi 0000:02:00.0: Detected RF HR B3, rfid=0x10a100
[    2.096169] asus 0003:0B05:1866.0002: input,hidraw3: USB HID v1.10 Keyboard [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input1
[    2.106373] Bluetooth: hci0: MSFT filter_enable is already on
[    2.131435] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.131440] Bluetooth: BNEP filters: protocol multicast
[    2.131445] Bluetooth: BNEP socket layer initialized
[    2.133017] iwlwifi 0000:02:00.0: base HW address: c8:e2:65:0f:20:35
[    2.133632] intel_rapl_common: Found RAPL domain package
[    2.133636] intel_rapl_common: Found RAPL domain core
[    2.136429] NET: Registered PF_ALG protocol family
[    2.139497] mousedev: PS/2 mouse device common for all mice
[    2.150590] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[    2.290114] [drm] amdgpu kernel modesetting enabled.
[    2.290147] vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
[    2.290865] ATPX version 1, functions 0x00000201
[    2.290951] ATPX Hybrid Graphics
[    2.308553] asus 0003:0B05:1866.0003: Asus initialise N-KEY Device
[    2.310161] amdgpu: Virtual CRAT table created for CPU
[    2.310181] amdgpu: Topology: Add CPU node
[    2.310291] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
[    2.310293] fb0: switching to amdgpudrmfb from EFI VGA
[    2.310403] Console: switching to colour dummy device 80x25
[    2.310447] amdgpu 0000:04:00.0: vgaarb: deactivate vga console
[    2.310519] amdgpu 0000:04:00.0: enabling device (0006 -> 0007)
[    2.310606] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1636 0x1043:0x1F11 0xC5).
[    2.310611] amdgpu 0000:04:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    2.310737] [drm] register mmio base: 0xFC500000
[    2.310738] [drm] register mmio size: 524288
[    2.310741] [drm] PCIE atomic ops is not supported
[    2.311844] [drm] add ip block number 0 <soc15_common>
[    2.311846] [drm] add ip block number 1 <gmc_v9_0>
[    2.311847] [drm] add ip block number 2 <vega10_ih>
[    2.311848] [drm] add ip block number 3 <psp>
[    2.311850] [drm] add ip block number 4 <smu>
[    2.311851] [drm] add ip block number 5 <gfx_v9_0>
[    2.311852] [drm] add ip block number 6 <sdma_v4_0>
[    2.311854] [drm] add ip block number 7 <dm>
[    2.311855] [drm] add ip block number 8 <vcn_v2_0>
[    2.311856] [drm] add ip block number 9 <jpeg_v2_0>
[    2.311875] amdgpu 0000:04:00.0: amdgpu: Fetched VBIOS from VFCT
[    2.311878] amdgpu: ATOM BIOS: 113-RENOIR-025
[    2.312503] [drm] VCN decode is enabled in VM mode
[    2.312507] [drm] VCN encode is enabled in VM mode
[    2.312508] [drm] JPEG decode is enabled in VM mode
[    2.312563] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    2.312573] amdgpu 0000:04:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[    2.312577] amdgpu 0000:04:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[    2.312580] amdgpu 0000:04:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    2.312589] [drm] Detected VRAM RAM=512M, BAR=512M
[    2.312591] [drm] RAM width 128bits DDR4
[    2.312650] [drm] amdgpu: 512M of VRAM memory ready
[    2.312652] [drm] amdgpu: 3072M of GTT memory ready.
[    2.312659] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.312782] [drm] PCIE GART of 1024M enabled.
[    2.312784] [drm] PTB located at 0x000000F400900000
[    2.314006] amdgpu 0000:04:00.0: amdgpu: PSP runtime database doesn't exist
[    2.318963] [drm] Loading DMUB firmware via PSP: version=0x01010019
[    2.320463] [drm] Found VCN firmware Version ENC: 1.14 DEC: 5 VEP: 0 Revision: 20
[    2.320488] amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware
[    2.322344] input: ASUSTeK Computer Inc. N-KEY Device as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-3/3-3:1.2/0003:0B05:1866.0003/input/input25
[    2.379864] asus 0003:0B05:1866.0003: input,hiddev96,hidraw2: USB HID v1.10 Device [ASUSTeK Computer Inc. N-KEY Device] on usb-0000:04:00.3-3/input2
[    2.383578] nvidia: module license 'NVIDIA' taints kernel.
[    2.383581] Disabling lock debugging due to kernel taint
[    2.533625] nvidia-nvlink: Nvlink Core is being initialized, major device number 511

[    2.534924] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[    2.535076] nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[    2.576201] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  470.63.01  Tue Aug  3 20:44:16 UTC 2021
[    2.617785] nvidia-gpu 0000:01:00.3: i2c timeout error e0000000
[    2.617797] ucsi_ccg 1-0008: i2c_transfer failed -110
[    2.617802] ucsi_ccg 1-0008: ucsi_ccg_init failed - -110
[    2.617807] ucsi_ccg: probe of 1-0008 failed with error -110
[    2.634987] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input26
[    2.635063] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input27
[    2.761669] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  470.63.01  Tue Aug  3 20:30:55 UTC 2021
[    2.767330] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    2.767334] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[    2.912390] random: crng init done
[    2.912397] random: 7 urandom warning(s) missed due to ratelimiting
[    2.935385] [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
[    2.976046] ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20210604/nsarguments-61)
[    3.013019] amdgpu 0000:04:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    3.020872] amdgpu 0000:04:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    3.020875] amdgpu 0000:04:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[    3.021235] amdgpu 0000:04:00.0: amdgpu: SMU is initialized successfully!
[    3.022565] [drm] kiq ring mec 2 pipe 1 q 0
[    3.023315] [drm] Display Core initialized with v3.2.141!
[    3.023955] [drm] DMUB hardware initialized: version=0x01010019
[    3.040834] snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[    3.060385] NET: Registered PF_KEY protocol family
[    3.206319] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[    3.206333] [drm] JPEG decode initialized successfully.
[    3.208108] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    3.238528] memmap_init_zone_device initialised 131072 pages in 0ms
[    3.238536] amdgpu: HMM registered 512MB device memory
[    3.238578] amdgpu: SRAT table not found
[    3.238579] amdgpu: Virtual CRAT table created for GPU
[    3.238676] amdgpu: Topology: Add dGPU node [0x1636:0x1002]
[    3.238679] kfd kfd: amdgpu: added device 1002:1636
[    3.238682] amdgpu 0000:04:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 18, active_cu_number 28
[    3.241193] [drm] fb mappable at 0x630CD1000
[    3.241196] [drm] vram apper at 0x630000000
[    3.241196] [drm] size 8294400
[    3.241197] [drm] fb depth is 24
[    3.241197] [drm]    pitch is 7680
[    3.410754] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    3.412821] Bridge firewalling registered
[    3.539661] fbcon: amdgpu (fb0) is primary device
[    3.539793] Console: switching to colour frame buffer device 240x67
[    3.539802] amdgpu 0000:04:00.0: [drm] fb0: amdgpu frame buffer device
[    3.569305] amdgpu 0000:04:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[    3.569313] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    3.569314] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    3.569315] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    3.569317] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    3.569319] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    3.569320] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    3.569321] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    3.569322] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    3.569323] amdgpu 0000:04:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    3.569324] amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[    3.569326] amdgpu 0000:04:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[    3.569327] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[    3.569328] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[    3.569330] amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[    3.571128] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:04:00.0 on minor 0
[    5.352833] kauditd_printk_skb: 171 callbacks suppressed
[    5.352842] audit: type=1334 audit(1632154860.476:100): prog-id=26 op=UNLOAD
[    5.352912] audit: type=1334 audit(1632154860.476:101): prog-id=25 op=UNLOAD
[    5.352922] audit: type=1334 audit(1632154860.476:102): prog-id=24 op=UNLOAD
[    5.520354] audit: type=1131 audit(1632154860.643:103): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[    5.871779] audit: type=1130 audit(1632154860.993:104): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.871792] audit: type=1131 audit(1632154860.993:105): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.916879] audit: type=1130 audit(1632154861.039:106): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    7.155849] audit: type=1131 audit(1632154862.279:107): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    7.476058] audit: type=1103 audit(1632154862.599:108): pid=1303 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[    7.540772] audit: type=1130 audit(1632154862.663:109): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@972 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.467291] wlp2s0: authenticate with 74:ac:b9:c5:62:7c
[    8.470724] wlp2s0: send auth to 74:ac:b9:c5:62:7c (try 1/3)
[    8.500367] wlp2s0: authenticated
[    8.502452] wlp2s0: associate with 74:ac:b9:c5:62:7c (try 1/3)
[    8.508273] wlp2s0: RX AssocResp from 74:ac:b9:c5:62:7c (capab=0x411 status=0 aid=2)
[    8.513312] wlp2s0: associated
[    8.603640] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   12.007762] kauditd_printk_skb: 15 callbacks suppressed
[   12.007769] audit: type=1131 audit(1632154867.129:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.551049] audit: type=1130 audit(1632154882.673:120): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   29.891260] audit: type=1100 audit(1632154885.013:121): pid=1376 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="dan" exe="/usr/bin/login" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'
[   29.893702] audit: type=1101 audit(1632154885.016:122): pid=1376 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="dan" exe="/usr/bin/login" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'
[   29.894493] audit: type=1103 audit(1632154885.016:123): pid=1376 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="dan" exe="/usr/bin/login" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'
[   29.894550] audit: type=1006 audit(1632154885.016:124): pid=1376 uid=0 old-auid=4294967295 auid=1000 tty=tty2 old-ses=4294967295 ses=2 res=1
[   29.894552] audit: type=1300 audit(1632154885.016:124): arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=7fffebd56cc0 a2=4 a3=3e8 items=0 ppid=1 pid=1376 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=985 fsgid=0 tty=tty2 ses=2 comm="login" exe="/usr/bin/login" key=(null)
[   29.894554] audit: type=1327 audit(1632154885.016:124): proctitle=2F62696E2F6C6F67696E002D70002D2D
[   29.963764] audit: type=1130 audit(1632154885.086:125): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   29.973538] audit: type=1101 audit(1632154885.096:126): pid=1378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="dan" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   29.973559] audit: type=1103 audit(1632154885.096:127): pid=1378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="dan" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   57.572793] kauditd_printk_skb: 15 callbacks suppressed
[   57.572798] audit: type=1101 audit(1632154912.695:139): pid=1448 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="dan" exe="/usr/bin/sudo" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'
[   57.573481] audit: type=1110 audit(1632154912.695:140): pid=1448 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'
[   57.575152] audit: type=1105 audit(1632154912.695:141): pid=1448 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=DanAsus addr=? terminal=/dev/tty2 res=success'

Offline

#2 2021-09-21 06:53:29

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,739

Re: NVIDIA Card stopped working ASUS G14

Try enabling https://wiki.archlinux.org/title/Kernel … _KMS_start for amdgpu and the nvidia modules.

Offline

Board footer

Powered by FluxBB