[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#899086: xserver-xorg-video-amdgpu: completely fails to detect AMD RX 550 (which uses the Polaris 12 chipset) unless firmware-amd-graphics package installed



Package: xserver-xorg-video-amdgpu
Version: 18.0.1-1
Severity: normal

Dear Maintainer,

I recently performed a successful text install of Debian Buster using
a snapshot from
<https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-netinst.iso>.
That install was minimal, i.e., there were no extra packages installed
beyond those absolutely required by the text installer.  I then
followed up by using that minimal Debian system to install
xserver-xorg-video-amdgpu (generally recommended for new chipsets like
the Polaris 12) and other X-related packages.  But I specifically
excluded firmware-amd-graphics because that was only a suggestion
(i.e., not a dependency of xserver-xorg-video-amdgpu), and I try to
avoid using firmware blobs as far as possible for all the obvious
practical as well as free software reasons.  However, all subsequent
attempts to configure X for my AMD RX 550 (Polaris 12) card, failed at
or near the detection stage with messages similar to the following:

[180858.109] (II) AMDGPU: Driver for AMD Radeon:
        All GPUs supported by the amdgpu kernel driver
[180858.109] (II) [KMS] drm report modesetting isn't supported.
[180858.109] (EE) Screen 0 deleted because of no matching config section.
[180858.109] (II) UnloadModule: "amdgpu"
[180858.109] (EE) Device(s) detected, but none match those in the config file.

That is a ambiguous error message because no details are given here or
elsewhere in the error log.  Also, no issues were reported by
/var/log/messages and /var/log/syslog.  However, dmesg did have an
drm-related error message concerning firmware (sorry, lost the
details) which eventually lead me to reluctantly install what turns
out to be the absolutely essential (at least for the RX 550)
firmware-amd-graphics package.  At first that installation made no
difference until I realized you also had to reboot for the firmware
to take effect.  After that (text) reboot, I issued the

startx

command, X recognized this graphics card, and X came up without an
issue.  I suspect to reproduce the bad behaviour above with this model
of graphics cards (and likely other modern AMD GPU's as well) all you
will have to do is to purge the firmware-amd-graphics package, perform
a text reboot, and then issue "startx".

In sum, the issues are

1. Ambiguous error messages (at least within this log file) for the
situation when firmware-amd-graphics is not installed for at least this RX 550
Polaris 12 chipset.

2. You cannot even get started with X configuration with this hardware
unless the firmware-amd-graphics is installed.  This is, of course,
consistent with the statement "Some [AMD] GPUs may require firmware to
operate the X Window System" at
<https://wiki.debian.org/AtiHowTo#Firmware>, but at least a table of
which AMD chipsets (such as my Polaris 12) where this is an issue
would be extremely useful at that website since it would reduce a lot
of hair-pulling by Debian users like me who try to avoid firmware whenever
that is possible.

Thanks for your packaging efforts that have made it possible for me
to use this card (albeit with firmware) and best wishes,

Alan

-- Package-specific info:
/etc/X11/X does not exist.
/etc/X11/X is not a symlink.
/etc/X11/X is not executable.

VGA-compatible devices on PCI bus:
----------------------------------
0a:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Lexa PRO [Radeon RX 550] [1002:699f] (rev c7)

Xorg X server configuration file status:
----------------------------------------
-rw-r--r-- 1 root root 1910 May 17 10:30 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
-------------------------------
# Use defaults for most things, but configure the exceptions to
# defaults that I like.

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	# Use automatic evdev detection of mouse and keyboard
	# so no InputDevice commands here.
EndSection

# As recommended by http://pkg-xorg.alioth.debian.org/howto/configure-input.html
# Note there is no keyboard equivalent because that is configured using
# /etc/default/keyboard and following the udevadmin command given in man keyboard
# (or reboot the system) to make those options visible to X.

Section "InputClass"
	Identifier   "evdev-pointer"
	MatchIsPointer "on"
	Driver "evdev"
	# Disable mouse wheel if it exists (found in evdev man page)
	Option "ButtonMapping" "1 2 3 0 0"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
        DisplaySize       410   260     # mm
        VendorName   "ACI"
        ModelName    "ASUS VH198"
 ### Comment all HorizSync and VertRefresh values to use DDC:
         #HorizSync    30.0 - 80.0
         HorizSync    30.0 - 67.6
         VertRefresh  55.0 - 75.0
         Option      "DPMS"
EndSection


#Section "Module"
#	Load  "modesetting"
#EndSection

# This section inferred from the Jessie "Card0" identifier and general
# "Device" section syntax, the appropriate "amdgpu" name of the
# driver for the Radeon RX 550 graphics card with Polaris 12 chipset,
# AND the following lspci result on Buster merlin:

# 0a:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Lexa PRO [Radeon RX 550] (rev c7)

# where the 0a:00 must be converted from hexadecimal to decimal to help determine the BusID value
Section "Device"
	Identifier  "Card0"
	Driver      "amdgpu"
	#BusID       "PCI:10:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
-------------------------------
Linux version 4.16.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 7.3.0 (Debian 7.3.0-17)) #1 SMP Debian 4.16.5-1 (2018-04-29)

Xorg X server log files on system:
----------------------------------
-rw-r--r-- 1 irwin irwin 44087 May 17 12:39 /home/irwin/.local/share/xorg/Xorg.7.log
-rw-r--r-- 1 irwin irwin  4546 May 17 12:47 /home/irwin/.local/share/xorg/Xorg.0.log
-rw-r--r-- 1 root  root  50680 May 17 13:40 /var/log/Xorg.7.log
-rw-r--r-- 1 root  root  60092 May 18 10:15 /var/log/Xorg.1.log
-rw-r--r-- 1 root  root  49815 May 18 12:18 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
---------------------------------------------------------------------
[ 87734.281] 
X.Org X Server 1.19.6
Release Date: 2017-12-20
[ 87734.287] X Protocol Version 11, Revision 0
[ 87734.289] Build Operating System: Linux 4.9.0-5-amd64 x86_64 Debian
[ 87734.290] Current Operating System: Linux merlin 4.16.0-1-amd64 #1 SMP Debian 4.16.5-1 (2018-04-29) x86_64
[ 87734.290] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.16.0-1-amd64 root=UUID=1e45a1ee-a5d6-4327-9a7b-2663ffc0b157 ro rootwait quiet
[ 87734.292] Build Date: 26 January 2018  04:30:21PM
[ 87734.293] xorg-server 2:1.19.6-1 (https://www.debian.org/support) 
[ 87734.294] Current version of pixman: 0.34.0
[ 87734.295] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 87734.295] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 87734.298] (==) Log file: "/var/log/Xorg.0.log", Time: Fri May 18 11:55:29 2018
[ 87734.299] (==) Using config file: "/etc/X11/xorg.conf"
[ 87734.300] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 87734.300] (==) ServerLayout "X.org Configured"
[ 87734.300] (**) |-->Screen "Screen0" (0)
[ 87734.300] (**) |   |-->Monitor "Monitor0"
[ 87734.300] (**) |   |-->Device "Card0"
[ 87734.300] (==) Automatically adding devices
[ 87734.300] (==) Automatically enabling devices
[ 87734.300] (==) Automatically adding GPU devices
[ 87734.300] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/Type1" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[ 87734.300] 	Entry deleted from font path.
[ 87734.300] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	built-ins
[ 87734.300] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 87734.300] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 87734.300] (II) Loader magic: 0x55c1320d0de0
[ 87734.300] (II) Module ABI versions:
[ 87734.300] 	X.Org ANSI C Emulation: 0.4
[ 87734.300] 	X.Org Video Driver: 23.0
[ 87734.300] 	X.Org XInput driver : 24.1
[ 87734.300] 	X.Org Server Extension : 10.0
[ 87734.301] (++) using VT number 2

[ 87734.303] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_310
[ 87734.304] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 87734.305] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[ 87734.311] (--) PCI:*(0:10:0:0) 1002:699f:1043:0513 rev 199, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfe800000/262144, I/O @ 0x0000f000/256, BIOS @ 0x????????/131072
[ 87734.311] (II) LoadModule: "glx"
[ 87734.311] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 87734.312] (II) Module glx: vendor="X.Org Foundation"
[ 87734.312] 	compiled for 1.19.6, module version = 1.0.0
[ 87734.312] 	ABI class: X.Org Server Extension, version 10.0
[ 87734.312] (II) LoadModule: "amdgpu"
[ 87734.313] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[ 87734.313] (II) Module amdgpu: vendor="X.Org Foundation"
[ 87734.313] 	compiled for 1.19.6, module version = 18.0.1
[ 87734.313] 	Module class: X.Org Video Driver
[ 87734.313] 	ABI class: X.Org Video Driver, version 23.0
[ 87734.313] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[ 87734.313] (II) [KMS] Kernel modesetting enabled.
[ 87734.313] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[ 87734.313] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[ 87734.313] (==) AMDGPU(0): Default visual is TrueColor
[ 87734.313] (==) AMDGPU(0): RGB weight 888
[ 87734.313] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[ 87734.313] (--) AMDGPU(0): Chipset: "Radeon RX 550 Series" (ChipID = 0x699f)
[ 87734.313] (II) Loading sub module "fb"
[ 87734.313] (II) LoadModule: "fb"
[ 87734.313] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 87734.313] (II) Module fb: vendor="X.Org Foundation"
[ 87734.313] 	compiled for 1.19.6, module version = 1.0.0
[ 87734.313] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 87734.313] (II) Loading sub module "dri2"
[ 87734.313] (II) LoadModule: "dri2"
[ 87734.313] (II) Module "dri2" already built-in
[ 87734.364] (II) Loading sub module "glamoregl"
[ 87734.364] (II) LoadModule: "glamoregl"
[ 87734.365] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 87734.367] (II) Module glamoregl: vendor="X.Org Foundation"
[ 87734.367] 	compiled for 1.19.6, module version = 1.0.0
[ 87734.367] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 87734.367] (II) glamor: OpenGL accelerated X.org driver based.
[ 87734.369] (II) glamor: EGL version 1.5 (DRI2):
[ 87734.372] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[ 87734.372] (==) AMDGPU(0): TearFree property default: auto
[ 87734.372] (II) AMDGPU(0): KMS Pageflipping: enabled
[ 87734.404] (II) AMDGPU(0): Output DisplayPort-0 using monitor section Monitor0
[ 87734.406] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section
[ 87734.445] (II) AMDGPU(0): Output DVI-D-0 has no monitor section
[ 87734.476] (II) AMDGPU(0): EDID for output DisplayPort-0
[ 87734.477] (II) AMDGPU(0): EDID for output HDMI-A-0
[ 87734.516] (II) AMDGPU(0): EDID for output DVI-D-0
[ 87734.516] (II) AMDGPU(0): Manufacturer: ACI  Model: 19e7  Serial#: 16843009
[ 87734.516] (II) AMDGPU(0): Year: 2010  Week: 28
[ 87734.516] (II) AMDGPU(0): EDID Version: 1.3
[ 87734.516] (II) AMDGPU(0): Digital Display Input
[ 87734.516] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 41  vert.: 26
[ 87734.517] (II) AMDGPU(0): Gamma: 2.20
[ 87734.517] (II) AMDGPU(0): DPMS capabilities: Off
[ 87734.517] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[ 87734.517] (II) AMDGPU(0): Default color space is primary color space
[ 87734.517] (II) AMDGPU(0): First detailed timing is preferred mode
[ 87734.517] (II) AMDGPU(0): redX: 0.640 redY: 0.334   greenX: 0.286 greenY: 0.599
[ 87734.517] (II) AMDGPU(0): blueX: 0.154 blueY: 0.077   whiteX: 0.313 whiteY: 0.329
[ 87734.517] (II) AMDGPU(0): Supported established timings:
[ 87734.517] (II) AMDGPU(0): 720x400@70Hz
[ 87734.517] (II) AMDGPU(0): 640x480@60Hz
[ 87734.517] (II) AMDGPU(0): 640x480@72Hz
[ 87734.517] (II) AMDGPU(0): 640x480@75Hz
[ 87734.517] (II) AMDGPU(0): 800x600@56Hz
[ 87734.517] (II) AMDGPU(0): 800x600@60Hz
[ 87734.517] (II) AMDGPU(0): 800x600@75Hz
[ 87734.517] (II) AMDGPU(0): 1024x768@60Hz
[ 87734.517] (II) AMDGPU(0): 1024x768@70Hz
[ 87734.517] (II) AMDGPU(0): Manufacturer's mask: 10
[ 87734.517] (II) AMDGPU(0): Supported standard timings:
[ 87734.517] (II) AMDGPU(0): #0: hsize: 1440  vsize 900  refresh: 60  vid: 149
[ 87734.517] (II) AMDGPU(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[ 87734.517] (II) AMDGPU(0): #2: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[ 87734.517] (II) AMDGPU(0): #3: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[ 87734.517] (II) AMDGPU(0): #4: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[ 87734.517] (II) AMDGPU(0): #5: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[ 87734.517] (II) AMDGPU(0): #6: hsize: 1440  vsize 900  refresh: 75  vid: 3989
[ 87734.517] (II) AMDGPU(0): Supported detailed timing:
[ 87734.517] (II) AMDGPU(0): clock: 106.5 MHz   Image Size:  410 x 256 mm
[ 87734.517] (II) AMDGPU(0): h_active: 1440  h_sync: 1520  h_sync_end 1672 h_blank_end 1904 h_border: 0
[ 87734.517] (II) AMDGPU(0): v_active: 900  v_sync: 903  v_sync_end 909 v_blanking: 934 v_border: 0
[ 87734.517] (II) AMDGPU(0): Serial No: A7LMIZ036304
[ 87734.517] (II) AMDGPU(0): Ranges: V min: 55 V max: 75 Hz, H min: 30 H max: 82 kHz, PixClock max 145 MHz
[ 87734.517] (II) AMDGPU(0): Monitor name: ASUS VH198
[ 87734.517] (II) AMDGPU(0): EDID (in hex):
[ 87734.517] (II) AMDGPU(0): 	00ffffffffffff000469e71901010101
[ 87734.517] (II) AMDGPU(0): 	1c14010380291a782ee5b5a355499927
[ 87734.517] (II) AMDGPU(0): 	135054af4c109500810081c08140714f
[ 87734.517] (II) AMDGPU(0): 	8180950f01019a29a0d0518422305098
[ 87734.517] (II) AMDGPU(0): 	36009a001100001c000000ff0041374c
[ 87734.517] (II) AMDGPU(0): 	4d495a3033363330340a000000fd0037
[ 87734.517] (II) AMDGPU(0): 	4b1e520e000a202020202020000000fc
[ 87734.517] (II) AMDGPU(0): 	00415355532056483139380a20200047
[ 87734.517] (II) AMDGPU(0): Printing probed modes for output DVI-D-0
[ 87734.517] (II) AMDGPU(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz eP)
[ 87734.517] (II) AMDGPU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1440x900"x75.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 87734.517] (II) AMDGPU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 87734.517] (II) AMDGPU(0): Output DisplayPort-0 disconnected
[ 87734.517] (II) AMDGPU(0): Output HDMI-A-0 disconnected
[ 87734.517] (II) AMDGPU(0): Output DVI-D-0 connected
[ 87734.517] (II) AMDGPU(0): Using exact sizes for initial modes
[ 87734.517] (II) AMDGPU(0): Output DVI-D-0 using initial mode 1440x900 +0+0
[ 87734.517] (II) AMDGPU(0): mem size init: gart size :ffd3c000 vram size: s:ff6fc000 visible:f6fc000
[ 87734.517] (**) AMDGPU(0): Display dimensions: (410, 260) mm
[ 87734.517] (**) AMDGPU(0): DPI set to (89, 87)
[ 87734.517] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[ 87734.517] (II) Loading sub module "ramdac"
[ 87734.517] (II) LoadModule: "ramdac"
[ 87734.517] (II) Module "ramdac" already built-in
[ 87734.517] (--) Depth 24 pixmap format is 32 bpp
[ 87734.517] (II) AMDGPU(0): [DRI2] Setup complete
[ 87734.517] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[ 87734.517] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[ 87734.518] (II) AMDGPU(0): Front buffer pitch: 6144 bytes
[ 87734.518] (II) AMDGPU(0): SYNC extension fences enabled
[ 87734.518] (II) AMDGPU(0): Present extension enabled
[ 87734.518] (==) AMDGPU(0): DRI3 enabled
[ 87734.518] (==) AMDGPU(0): Backing store enabled
[ 87734.518] (II) AMDGPU(0): Direct rendering enabled
[ 87734.540] (II) AMDGPU(0): Use GLAMOR acceleration.
[ 87734.540] (II) AMDGPU(0): Acceleration enabled
[ 87734.540] (**) AMDGPU(0): DPMS enabled
[ 87734.540] (==) AMDGPU(0): Silken mouse enabled
[ 87734.540] (II) AMDGPU(0): Set up textured video (glamor)
[ 87734.540] (II) AMDGPU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 87734.540] (--) RandR disabled
[ 87734.542] (II) SELinux: Disabled on system
[ 87734.544] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 87734.544] (II) AIGLX: enabled GLX_ARB_create_context
[ 87734.544] (II) AIGLX: enabled GLX_ARB_create_context_profile
[ 87734.544] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[ 87734.544] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 87734.544] (II) AIGLX: enabled GLX_SGI_swap_control
[ 87734.544] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[ 87734.544] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[ 87734.544] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[ 87734.544] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 87734.544] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[ 87734.545] (II) AIGLX: Loaded and initialized radeonsi
[ 87734.545] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 87734.546] (II) AMDGPU(0): Setting screen physical size to 381 x 238
[ 87734.630] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[ 87734.630] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 87734.630] (II) LoadModule: "evdev"
[ 87734.630] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 87734.631] (II) Module evdev: vendor="X.Org Foundation"
[ 87734.631] 	compiled for 1.19.1, module version = 2.10.5
[ 87734.631] 	Module class: X.Org XInput Driver
[ 87734.631] 	ABI class: X.Org XInput driver, version 24.1
[ 87734.631] (II) Using input driver 'evdev' for 'Power Button'
[ 87734.632] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 27 paused 0
[ 87734.632] (**) Power Button: always reports core events
[ 87734.632] (**) evdev: Power Button: Device: "/dev/input/event2"
[ 87734.632] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 87734.632] (--) evdev: Power Button: Found keys
[ 87734.632] (II) evdev: Power Button: Configuring as keyboard
[ 87734.632] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[ 87734.632] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 87734.632] (**) Option "xkb_rules" "evdev"
[ 87734.632] (**) Option "xkb_model" "pc105"
[ 87734.632] (**) Option "xkb_layout" "us"
[ 87734.632] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 87734.654] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 87734.654] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 87734.654] (II) Using input driver 'evdev' for 'Power Button'
[ 87734.656] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 28 paused 0
[ 87734.656] (**) Power Button: always reports core events
[ 87734.656] (**) evdev: Power Button: Device: "/dev/input/event1"
[ 87734.656] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 87734.656] (--) evdev: Power Button: Found keys
[ 87734.656] (II) evdev: Power Button: Configuring as keyboard
[ 87734.656] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 87734.656] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 87734.656] (**) Option "xkb_rules" "evdev"
[ 87734.656] (**) Option "xkb_model" "pc105"
[ 87734.656] (**) Option "xkb_layout" "us"
[ 87734.656] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 87734.657] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event15)
[ 87734.657] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[ 87734.657] (**) USB Optical Mouse: Applying InputClass "evdev-pointer"
[ 87734.657] (II) Using input driver 'evdev' for 'USB Optical Mouse'
[ 87734.716] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 29 paused 0
[ 87734.717] (**) USB Optical Mouse: always reports core events
[ 87734.717] (**) evdev: USB Optical Mouse: Device: "/dev/input/event15"
[ 87734.717] (**) evdev: USB Optical Mouse: ButtonMapping '1 2 3 0 0'
[ 87734.717] (--) evdev: USB Optical Mouse: Vendor 0x15ca Product 0xc3
[ 87734.717] (--) evdev: USB Optical Mouse: Found 3 mouse buttons
[ 87734.717] (--) evdev: USB Optical Mouse: Found scroll wheel(s)
[ 87734.717] (--) evdev: USB Optical Mouse: Found relative axes
[ 87734.717] (--) evdev: USB Optical Mouse: Found x and y relative axes
[ 87734.717] (II) evdev: USB Optical Mouse: Configuring as mouse
[ 87734.717] (II) evdev: USB Optical Mouse: Adding scrollwheel support
[ 87734.717] (**) evdev: USB Optical Mouse: YAxisMapping: buttons 4 and 5
[ 87734.717] (**) evdev: USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 87734.717] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15/event15"
[ 87734.717] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE, id 8)
[ 87734.717] (II) evdev: USB Optical Mouse: initialized for relative axes.
[ 87734.717] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
[ 87734.717] (**) USB Optical Mouse: (accel) acceleration profile 0
[ 87734.717] (**) USB Optical Mouse: (accel) acceleration factor: 2.000
[ 87734.717] (**) USB Optical Mouse: (accel) acceleration threshold: 4
[ 87734.717] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)
[ 87734.717] (**) USB Optical Mouse: Applying InputClass "evdev-pointer"
[ 87734.717] (II) Using input driver 'evdev' for 'USB Optical Mouse'
[ 87734.717] (**) USB Optical Mouse: always reports core events
[ 87734.717] (**) evdev: USB Optical Mouse: Device: "/dev/input/mouse0"
[ 87734.717] (EE) evdev: USB Optical Mouse: Unable to query fd: Inappropriate ioctl for device
[ 87734.748] (EE) PreInit returned 2 for "USB Optical Mouse"
[ 87734.748] (II) UnloadModule: "evdev"
[ 87734.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event5)
[ 87734.749] (II) No input driver specified, ignoring this device.
[ 87734.749] (II) This device may have been added with another device file.
[ 87734.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event6)
[ 87734.749] (II) No input driver specified, ignoring this device.
[ 87734.749] (II) This device may have been added with another device file.
[ 87734.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event7)
[ 87734.749] (II) No input driver specified, ignoring this device.
[ 87734.749] (II) This device may have been added with another device file.
[ 87734.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event8)
[ 87734.749] (II) No input driver specified, ignoring this device.
[ 87734.749] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event9)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event10)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event11)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event12)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HD-Audio Generic Line Out (/dev/input/event13)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.750] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event14)
[ 87734.750] (II) No input driver specified, ignoring this device.
[ 87734.750] (II) This device may have been added with another device file.
[ 87734.751] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event4)
[ 87734.751] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[ 87734.751] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[ 87734.752] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 30 paused 0
[ 87734.752] (**) Eee PC WMI hotkeys: always reports core events
[ 87734.752] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event4"
[ 87734.752] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[ 87734.752] (--) evdev: Eee PC WMI hotkeys: Found keys
[ 87734.752] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[ 87734.752] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input4/event4"
[ 87734.752] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 9)
[ 87734.752] (**) Option "xkb_rules" "evdev"
[ 87734.752] (**) Option "xkb_model" "pc105"
[ 87734.752] (**) Option "xkb_layout" "us"
[ 87734.752] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 87734.753] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[ 87734.753] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[ 87734.753] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[ 87734.754] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 31 paused 0
[ 87734.754] (**) AT Translated Set 2 keyboard: always reports core events
[ 87734.754] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[ 87734.754] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[ 87734.754] (--) evdev: AT Translated Set 2 keyboard: Found keys
[ 87734.754] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[ 87734.754] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[ 87734.754] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[ 87734.754] (**) Option "xkb_rules" "evdev"
[ 87734.754] (**) Option "xkb_model" "pc105"
[ 87734.754] (**) Option "xkb_layout" "us"
[ 87734.754] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 87734.755] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
[ 87734.755] (II) No input driver specified, ignoring this device.
[ 87734.755] (II) This device may have been added with another device file.
[ 87734.755] (II) config/udev: Adding input device (unnamed) (/dev/ttyS1)
[ 87734.755] (II) No input driver specified, ignoring this device.
[ 87734.755] (II) This device may have been added with another device file.
[ 87734.755] (II) config/udev: Adding input device (unnamed) (/dev/ttyS2)
[ 87734.755] (II) No input driver specified, ignoring this device.
[ 87734.755] (II) This device may have been added with another device file.
[ 87734.756] (II) config/udev: Adding input device (unnamed) (/dev/ttyS3)
[ 87734.756] (II) No input driver specified, ignoring this device.
[ 87734.756] (II) This device may have been added with another device file.
[ 87734.756] (II) config/udev: Adding input device (unnamed) (/dev/ttyS0)
[ 87734.756] (II) No input driver specified, ignoring this device.
[ 87734.756] (II) This device may have been added with another device file.
[ 87734.756] (II) config/udev: Adding input device (unnamed) (/dev/input/mice)
[ 87734.756] (II) No input driver specified, ignoring this device.
[ 87734.756] (II) This device may have been added with another device file.
[ 87734.756] (II) config/udev: Adding input device (unnamed) (/dev/console)
[ 87734.756] (II) No input driver specified, ignoring this device.
[ 87734.756] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/ptmx)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/tty)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/tty0)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/tty1)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/tty10)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.757] (II) config/udev: Adding input device (unnamed) (/dev/tty11)
[ 87734.757] (II) No input driver specified, ignoring this device.
[ 87734.757] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty12)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty13)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty14)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty15)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty16)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty17)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.758] (II) config/udev: Adding input device (unnamed) (/dev/tty18)
[ 87734.758] (II) No input driver specified, ignoring this device.
[ 87734.758] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty19)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty2)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty20)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty21)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty22)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.759] (II) config/udev: Adding input device (unnamed) (/dev/tty23)
[ 87734.759] (II) No input driver specified, ignoring this device.
[ 87734.759] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty24)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty25)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty26)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty27)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty28)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.760] (II) config/udev: Adding input device (unnamed) (/dev/tty29)
[ 87734.760] (II) No input driver specified, ignoring this device.
[ 87734.760] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty3)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty30)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty31)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty32)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty33)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.761] (II) config/udev: Adding input device (unnamed) (/dev/tty34)
[ 87734.761] (II) No input driver specified, ignoring this device.
[ 87734.761] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty35)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty36)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty37)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty38)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty39)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty4)
[ 87734.762] (II) No input driver specified, ignoring this device.
[ 87734.762] (II) This device may have been added with another device file.
[ 87734.762] (II) config/udev: Adding input device (unnamed) (/dev/tty40)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty41)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty42)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty43)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty44)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty45)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.763] (II) config/udev: Adding input device (unnamed) (/dev/tty46)
[ 87734.763] (II) No input driver specified, ignoring this device.
[ 87734.763] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty47)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty48)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty49)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty5)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty50)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty51)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty52)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.764] (II) config/udev: Adding input device (unnamed) (/dev/tty53)
[ 87734.764] (II) No input driver specified, ignoring this device.
[ 87734.764] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty54)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty55)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty56)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty57)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty58)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty59)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty6)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty60)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty61)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty62)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty63)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty7)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.765] (II) config/udev: Adding input device (unnamed) (/dev/tty8)
[ 87734.765] (II) No input driver specified, ignoring this device.
[ 87734.765] (II) This device may have been added with another device file.
[ 87734.766] (II) config/udev: Adding input device (unnamed) (/dev/tty9)
[ 87734.766] (II) No input driver specified, ignoring this device.
[ 87734.766] (II) This device may have been added with another device file.
[ 87735.440] (II) AMDGPU(0): EDID vendor "ACI", prod id 6631
[ 87735.440] (II) AMDGPU(0): Using hsync ranges from config file
[ 87735.440] (II) AMDGPU(0): Using vrefresh ranges from config file
[ 87735.440] (II) AMDGPU(0): Printing DDC gathered Modelines:
[ 87735.440] (II) AMDGPU(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz eP)
[ 87735.440] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 87735.440] (II) AMDGPU(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[ 87735.683] (II) AMDGPU(0): EDID vendor "ACI", prod id 6631
[ 87735.684] (II) AMDGPU(0): Using hsync ranges from config file
[ 87735.684] (II) AMDGPU(0): Using vrefresh ranges from config file
[ 87735.684] (II) AMDGPU(0): Printing DDC gathered Modelines:
[ 87735.684] (II) AMDGPU(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz eP)
[ 87735.684] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 87735.684] (II) AMDGPU(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[ 89040.502] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 89040.524] (II) systemd-logind: got pause for 13:64
[ 89040.524] (II) systemd-logind: got pause for 13:65
[ 89040.524] (II) systemd-logind: got pause for 13:68
[ 89040.524] (II) systemd-logind: got pause for 13:79
[ 89040.524] (II) systemd-logind: got pause for 226:0
[ 89040.524] (II) systemd-logind: got pause for 13:66
[ 89064.416] (II) systemd-logind: got resume for 13:64
[ 89064.432] (II) systemd-logind: got resume for 13:65
[ 89064.448] (II) systemd-logind: got resume for 13:68
[ 89064.468] (II) systemd-logind: got resume for 13:79
[ 89064.468] (II) systemd-logind: got resume for 226:0
[ 89064.468] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 89064.556] (II) AMDGPU(0): EDID vendor "ACI", prod id 6631
[ 89064.556] (II) AMDGPU(0): Using hsync ranges from config file
[ 89064.556] (II) AMDGPU(0): Using vrefresh ranges from config file
[ 89064.556] (II) AMDGPU(0): Printing DDC gathered Modelines:
[ 89064.556] (II) AMDGPU(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz eP)
[ 89064.556] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 89064.557] (II) AMDGPU(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[ 89064.563] (II) systemd-logind: got resume for 13:66
[ 89101.791] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 89101.813] (II) systemd-logind: got pause for 13:64
[ 89101.813] (II) systemd-logind: got pause for 13:65
[ 89101.813] (II) systemd-logind: got pause for 13:68
[ 89101.813] (II) systemd-logind: got pause for 13:79
[ 89101.813] (II) systemd-logind: got pause for 226:0
[ 89101.813] (II) systemd-logind: got pause for 13:66
[ 89108.732] (II) systemd-logind: got resume for 13:64
[ 89108.756] (II) systemd-logind: got resume for 13:65
[ 89108.780] (II) systemd-logind: got resume for 13:68
[ 89108.805] (II) systemd-logind: got resume for 13:79
[ 89108.805] (II) systemd-logind: got resume for 226:0
[ 89108.805] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 89108.892] (II) AMDGPU(0): EDID vendor "ACI", prod id 6631
[ 89108.892] (II) AMDGPU(0): Using hsync ranges from config file
[ 89108.892] (II) AMDGPU(0): Using vrefresh ranges from config file
[ 89108.892] (II) AMDGPU(0): Printing DDC gathered Modelines:
[ 89108.892] (II) AMDGPU(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz eP)
[ 89108.892] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 89108.892] (II) AMDGPU(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[ 89108.898] (II) systemd-logind: got resume for 13:66

udev information:
-----------------
P: /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
E: DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
E: EV=3
E: ID_FOR_SEAT=input-acpi-LNXPWRBN_00
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXPWRBN:00
E: ID_PATH_TAG=acpi-LNXPWRBN_00
E: KEY=10000000000000 0
E: MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw
E: NAME="Power Button"
E: PHYS="LNXPWRBN/button/input0"
E: PRODUCT=19/0/1/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=33707027

P: /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2
N: input/event2
E: BACKSPACE=guess
E: DEVNAME=/dev/input/event2
E: DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXPWRBN:00
E: ID_PATH_TAG=acpi-LNXPWRBN_00
E: MAJOR=13
E: MINOR=66
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33800309
E: XKBLAYOUT=us
E: XKBMODEL=pc105
E: XKBOPTIONS=terminate:ctrl_alt_bksp

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
E: EV=3
E: ID_FOR_SEAT=input-acpi-PNP0C0C_00
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-PNP0C0C:00
E: ID_PATH_TAG=acpi-PNP0C0C_00
E: KEY=10000000000000 0
E: MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw
E: NAME="Power Button"
E: PHYS="PNP0C0C/button/input0"
E: PRODUCT=19/0/1/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=33706902

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1
N: input/event1
E: BACKSPACE=guess
E: DEVNAME=/dev/input/event1
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-PNP0C0C:00
E: ID_PATH_TAG=acpi-PNP0C0C_00
E: MAJOR=13
E: MINOR=65
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33808618
E: XKBLAYOUT=us
E: XKBMODEL=pc105
E: XKBOPTIONS=terminate:ctrl_alt_bksp

P: /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15
E: DEVPATH=/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15
E: EV=17
E: ID_BUS=usb
E: ID_FOR_SEAT=input-pci-0000_02_00_0-usb-0_7_1_0
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Optical_Mouse
E: ID_MODEL_ENC=USB\x20Optical\x20Mouse
E: ID_MODEL_ID=00c3
E: ID_PATH=pci-0000:02:00.0-usb-0:7:1.0
E: ID_PATH_TAG=pci-0000_02_00_0-usb-0_7_1_0
E: ID_REVISION=0512
E: ID_SERIAL=15ca_USB_Optical_Mouse
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030102:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=15ca
E: ID_VENDOR_ENC=15ca
E: ID_VENDOR_ID=15ca
E: KEY=70000 0 0 0 0
E: MODALIAS=input:b0003v15CAp00C3e0110-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
E: MSC=10
E: NAME="USB Optical Mouse"
E: PHYS="usb-0000:02:00.0-7/input0"
E: PRODUCT=3/15ca/c3/110
E: PROP=0
E: REL=103
E: SUBSYSTEM=input
E: TAGS=:seat:
E: UNIQ=""
E: USEC_INITIALIZED=34418778

P: /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15/event15
N: input/event15
S: input/by-id/usb-15ca_USB_Optical_Mouse-event-mouse
S: input/by-path/pci-0000:02:00.0-usb-0:7:1.0-event-mouse
E: DEVLINKS=/dev/input/by-path/pci-0000:02:00.0-usb-0:7:1.0-event-mouse /dev/input/by-id/usb-15ca_USB_Optical_Mouse-event-mouse
E: DEVNAME=/dev/input/event15
E: DEVPATH=/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15/event15
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Optical_Mouse
E: ID_MODEL_ENC=USB\x20Optical\x20Mouse
E: ID_MODEL_ID=00c3
E: ID_PATH=pci-0000:02:00.0-usb-0:7:1.0
E: ID_PATH_TAG=pci-0000_02_00_0-usb-0_7_1_0
E: ID_REVISION=0512
E: ID_SERIAL=15ca_USB_Optical_Mouse
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030102:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=15ca
E: ID_VENDOR_ENC=15ca
E: ID_VENDOR_ID=15ca
E: MAJOR=13
E: MINOR=79
E: SUBSYSTEM=input
E: USEC_INITIALIZED=34529837

P: /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15/mouse0
N: input/mouse0
S: input/by-id/usb-15ca_USB_Optical_Mouse-mouse
S: input/by-path/pci-0000:02:00.0-usb-0:7:1.0-mouse
E: DEVLINKS=/dev/input/by-id/usb-15ca_USB_Optical_Mouse-mouse /dev/input/by-path/pci-0000:02:00.0-usb-0:7:1.0-mouse
E: DEVNAME=/dev/input/mouse0
E: DEVPATH=/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-7/1-7:1.0/0003:15CA:00C3.0001/input/input15/mouse0
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Optical_Mouse
E: ID_MODEL_ENC=USB\x20Optical\x20Mouse
E: ID_MODEL_ID=00c3
E: ID_PATH=pci-0000:02:00.0-usb-0:7:1.0
E: ID_PATH_TAG=pci-0000_02_00_0-usb-0_7_1_0
E: ID_REVISION=0512
E: ID_SERIAL=15ca_USB_Optical_Mouse
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030102:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=15ca
E: ID_VENDOR_ENC=15ca
E: ID_VENDOR_ID=15ca
E: MAJOR=13
E: MINOR=32
E: SUBSYSTEM=input
E: USEC_INITIALIZED=34421024

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input5
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input5
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0a_00_1
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA ATI HDMI HDMI/DP,pcm=3"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=33764759

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input5/event5
N: input/event5
E: DEVNAME=/dev/input/event5
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input5/event5
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MAJOR=13
E: MINOR=69
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33880484

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input6
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input6
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0a_00_1
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA ATI HDMI HDMI/DP,pcm=7"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=33764019

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input6/event6
N: input/event6
E: DEVNAME=/dev/input/event6
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input6/event6
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MAJOR=13
E: MINOR=70
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33916258

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input7
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input7
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0a_00_1
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA ATI HDMI HDMI/DP,pcm=8"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=33765081

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input7/event7
N: input/event7
E: DEVNAME=/dev/input/event7
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input7/event7
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MAJOR=13
E: MINOR=71
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33880552

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input8
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input8
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0a_00_1
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA ATI HDMI HDMI/DP,pcm=9"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=33765163

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input8/event8
N: input/event8
E: DEVNAME=/dev/input/event8
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input8/event8
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MAJOR=13
E: MINOR=72
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33916523

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input9
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input9
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0a_00_1
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA ATI HDMI HDMI/DP,pcm=10"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=33764678

P: /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input9/event9
N: input/event9
E: DEVNAME=/dev/input/event9
E: DEVPATH=/devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input9/event9
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0a:00.1
E: ID_PATH_TAG=pci-0000_0a_00_1
E: MAJOR=13
E: MINOR=73
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33868566

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input10
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input10
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0c_00_3
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw4,
E: NAME="HD-Audio Generic Front Mic"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=10
E: TAGS=:seat:
E: USEC_INITIALIZED=33805926

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input10/event10
N: input/event10
E: DEVNAME=/dev/input/event10
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input10/event10
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MAJOR=13
E: MINOR=74
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=34016410

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input11
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input11
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0c_00_3
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw4,
E: NAME="HD-Audio Generic Rear Mic"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=10
E: TAGS=:seat:
E: USEC_INITIALIZED=33806156

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input11/event11
N: input/event11
E: DEVNAME=/dev/input/event11
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input11/event11
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MAJOR=13
E: MINOR=75
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=34012411

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input12
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input12
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0c_00_3
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfwD,
E: NAME="HD-Audio Generic Line"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=2000
E: TAGS=:seat:
E: USEC_INITIALIZED=33806582

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input12/event12
N: input/event12
E: DEVNAME=/dev/input/event12
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input12/event12
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MAJOR=13
E: MINOR=76
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=34016414

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input13
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input13
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0c_00_3
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,
E: NAME="HD-Audio Generic Line Out"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=40
E: TAGS=:seat:
E: USEC_INITIALIZED=33806723

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input13/event13
N: input/event13
E: DEVNAME=/dev/input/event13
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input13/event13
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MAJOR=13
E: MINOR=77
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=34024371

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input14
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input14
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_0c_00_3
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw2,
E: NAME="HD-Audio Generic Front Headphone"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=4
E: TAGS=:seat:
E: USEC_INITIALIZED=33806994

P: /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input14/event14
N: input/event14
E: DEVNAME=/dev/input/event14
E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input14/event14
E: ID_INPUT=1
E: ID_INPUT_SWITCH=1
E: ID_PATH=pci-0000:0c:00.3
E: ID_PATH_TAG=pci-0000_0c_00_3
E: MAJOR=13
E: MINOR=78
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=34068502

P: /devices/platform/eeepc-wmi/input/input4
E: DEVPATH=/devices/platform/eeepc-wmi/input/input4
E: EV=100013
E: ID_FOR_SEAT=input-platform-eeepc-wmi
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=platform-eeepc-wmi
E: ID_PATH_TAG=platform-eeepc-wmi
E: KEY=7e40000 0 800000000000 0 0 1400b00100000 300180001100800 e000000000000 2
E: MODALIAS=input:b0019v0000p0000e0000-e0,1,4,14,k71,72,73,8B,94,98,AB,AC,B8,B9,D4,E0,E1,E3,EE,F0,1AF,212,215,216,217,218,219,21A,ram4,lsfw
E: MSC=10
E: NAME="Eee PC WMI hotkeys"
E: PHYS="eeepc-wmi/input0"
E: PRODUCT=19/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=33739604

P: /devices/platform/eeepc-wmi/input/input4/event4
N: input/event4
S: input/by-path/platform-eeepc-wmi-event
E: BACKSPACE=guess
E: DEVLINKS=/dev/input/by-path/platform-eeepc-wmi-event
E: DEVNAME=/dev/input/event4
E: DEVPATH=/devices/platform/eeepc-wmi/input/input4/event4
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=platform-eeepc-wmi
E: ID_PATH_TAG=platform-eeepc-wmi
E: MAJOR=13
E: MINOR=68
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33880655
E: XKBLAYOUT=us
E: XKBMODEL=pc105
E: XKBOPTIONS=terminate:ctrl_alt_bksp

P: /devices/platform/i8042/serio0/input/input0
E: DEVPATH=/devices/platform/i8042/serio0/input/input0
E: EV=120013
E: ID_BUS=i8042
E: ID_FOR_SEAT=input-platform-i8042-serio-0
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_PATH=platform-i8042-serio-0
E: ID_PATH_TAG=platform-i8042-serio-0
E: ID_SERIAL=noserial
E: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
E: LED=7
E: MODALIAS=input:b0011v0001p0001eAB41-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw
E: MSC=10
E: NAME="AT Translated Set 2 keyboard"
E: PHYS="isa0060/serio0/input0"
E: PRODUCT=11/1/1/ab41
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=633935

P: /devices/platform/i8042/serio0/input/input0/event0
N: input/event0
S: input/by-path/platform-i8042-serio-0-event-kbd
E: BACKSPACE=guess
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-0-event-kbd
E: DEVNAME=/dev/input/event0
E: DEVPATH=/devices/platform/i8042/serio0/input/input0/event0
E: ID_BUS=i8042
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_PATH=platform-i8042-serio-0
E: ID_PATH_TAG=platform-i8042-serio-0
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=64
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=33800759
E: XKBLAYOUT=us
E: XKBMODEL=pc105
E: XKBOPTIONS=terminate:ctrl_alt_bksp

P: /devices/platform/pcspkr/input/input3
E: DEVPATH=/devices/platform/pcspkr/input/input3
E: EV=40001
E: ID_FOR_SEAT=input-platform-pcspkr
E: ID_INPUT=1
E: ID_PATH=platform-pcspkr
E: ID_PATH_TAG=platform-pcspkr
E: ID_SERIAL=noserial
E: MODALIAS=input:b0010v001Fp0001e0100-e0,12,kramls1,2,fw
E: NAME="PC Speaker"
E: PHYS="isa0061/input0"
E: PRODUCT=10/1f/1/100
E: PROP=0
E: SND=6
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=33730968

P: /devices/platform/pcspkr/input/input3/event3
N: input/event3
S: input/by-path/platform-pcspkr-event-spkr
E: DEVLINKS=/dev/input/by-path/platform-pcspkr-event-spkr
E: DEVNAME=/dev/input/event3
E: DEVPATH=/devices/platform/pcspkr/input/input3/event3
E: ID_INPUT=1
E: ID_PATH=platform-pcspkr
E: ID_PATH_TAG=platform-pcspkr
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=67
E: SUBSYSTEM=input
E: USEC_INITIALIZED=33880623


DRM Information from dmesg:
---------------------------


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.16.0-1-amd64 (SMP w/16 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), LANGUAGE=en_CA:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages xserver-xorg-video-amdgpu depends on:
ii  libc6                                  2.27-3
ii  libdrm-amdgpu1                         2.4.91-2
ii  libgbm1                                18.0.3-1
ii  libudev1                               238-4
ii  xserver-xorg-core [xorg-video-abi-23]  2:1.19.6-1

xserver-xorg-video-amdgpu recommends no packages.

Versions of packages xserver-xorg-video-amdgpu suggests:
ii  firmware-amd-graphics  20170823-1

-- no debconf information


Reply to: