· 6 years ago · Sep 14, 2019, 06:44 PM
1Topic: External monitor does not appear.
2
3Device/OS:
4HP dv7 4035 i5. Graphics: intel + radeon mobility HD 5650
5Debian 10 (Buster) + lightdm + cinnamon
6
7
8Description/Steps:
9
10-LVDS works. Trying to use HDMI to connect 2nd monitor.
11-2nd monitor is not being recognized by cinnamon Display manager.
12-Installed drivers via:
13# apt install firmware-linux firmware-linux-nonfree libdrm-amdgpu1 xserver-xorg-video-amdgpu
14# apt install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-utils vulkan-validationlayers
15# apt install mesa-opencl-icd
16-2nd monitor seems to work ONLY at splash screen. Then, once at login screen, loses signal.
17-for i in /sys/class/drm/card/enabled; do echo -en "$i\t"; cat $i;done gives me:
18/sys/class/drm/card0-HDMI-A-1/enabled disabled
19/sys/class/drm/card0-LVDS-1/enabled disabled
20/sys/class/drm/card0-VGA-1/enabled disabled
21/sys/class/drm/card1-LVDS-2/enabled enabled
22/sys/class/drm/card1-VGA-2/enabled disabled
23-Trying xorg to auto-detect things with: X -config /root/xorg.conf.new . Then copied to /etc/X11/xorg.conf.d/xorg.conf
24-Now 2nd monitor, as before, works at splash screen, but screen is black after it.
25-for i in /sys/class/drm/card/enabled; do echo -en "$i\t"; cat $i;done gives me:
26/sys/class/drm/card0-HDMI-A-1/enabled enabled
27/sys/class/drm/card0-LVDS-2/enabled disabled
28/sys/class/drm/card0-VGA-2/enabled disabled
29/sys/class/drm/card1-LVDS-1/enabled enabled
30/sys/class/drm/card1-VGA-1/enabled disabled
31
32-xrandr -q:
33Screen 0: minimum 8 x 8, current 1600 x 900, maximum 32767 x 32767
34LVDS1 connected primary 1600x900+0+0 (normal left inverted right x axis y axis) 380mm x 210mm
35 1600x900 60.12*+ 59.82
36 1440x900 59.89
37 1400x900 59.96 59.88
38 1368x768 60.00 59.88 59.85
39 1360x768 59.80 59.96
40 1280x800 59.81 59.91
41 1152x864 60.00
42 1280x720 59.86 60.00 59.74
43 1024x768 60.00
44 1024x576 60.00 59.90 59.82
45 960x540 60.00 59.63 59.82
46 800x600 60.32 56.25
47 864x486 60.00 59.92 59.57
48 800x450 60.00
49 640x480 59.94
50 720x405 59.51 60.00 58.99
51 640x360 59.84 59.32 60.00
52VGA1 disconnected (normal left inverted right x axis y axis)
53VIRTUAL1 disconnected (normal left inverted right x axis y axis)
54
55-VIRTUAL1 is new. Wasn't before.
56-clues.. my xorg.conf is missing something...
57
58
59
60
61
62
63==========================================================================================
64cat /etc/X11/xorg.conf.d/xorg.conf
65==========================================================================================
66Section "ServerLayout"
67 Identifier "X.org Configured"
68 Screen 0 "Screen0" 0 0
69 Screen 1 "Screen1" RightOf "Screen0"
70 Screen 2 "Screen2" RightOf "Screen1"
71 InputDevice "Mouse0" "CorePointer"
72 InputDevice "Keyboard0" "CoreKeyboard"
73EndSection
74
75Section "Files"
76 ModulePath "/usr/lib/xorg/modules"
77 FontPath "/usr/share/fonts/X11/misc"
78 FontPath "/usr/share/fonts/X11/cyrillic"
79 FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
80 FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
81 FontPath "/usr/share/fonts/X11/Type1"
82 FontPath "/usr/share/fonts/X11/100dpi"
83 FontPath "/usr/share/fonts/X11/75dpi"
84 FontPath "built-ins"
85EndSection
86
87Section "Module"
88 Load "glx"
89EndSection
90
91Section "InputDevice"
92 Identifier "Keyboard0"
93 Driver "kbd"
94EndSection
95
96Section "InputDevice"
97 Identifier "Mouse0"
98 Driver "mouse"
99 Option "Protocol" "auto"
100 Option "Device" "/dev/input/mice"
101 Option "ZAxisMapping" "4 5 6 7"
102EndSection
103
104Section "Monitor"
105 Identifier "Monitor0"
106 VendorName "Monitor Vendor"
107 ModelName "Monitor Model"
108EndSection
109
110Section "Monitor"
111 Identifier "Monitor1"
112 VendorName "Monitor Vendor"
113 ModelName "Monitor Model"
114EndSection
115
116Section "Monitor"
117 Identifier "Monitor2"
118 VendorName "Monitor Vendor"
119 ModelName "Monitor Model"
120EndSection
121
122Section "Device"
123 ### Available Driver options are:-
124 ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
125 ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
126 ### <percent>: "<f>%"
127 ### [arg]: arg optional
128 #Option "Accel" # [<bool>]
129 #Option "SWcursor" # [<bool>]
130 #Option "EnablePageFlip" # [<bool>]
131 #Option "SubPixelOrder" # [<str>]
132 #Option "ZaphodHeads" # <str>
133 #Option "AccelMethod" # <str>
134 #Option "DRI3" # [<bool>]
135 #Option "DRI" # <i>
136 #Option "ShadowPrimary" # [<bool>]
137 #Option "TearFree" # [<bool>]
138 #Option "DeleteUnusedDP12Displays" # [<bool>]
139 #Option "VariableRefresh" # [<bool>]
140 Identifier "Card0"
141 Driver "amdgpu"
142 BusID "PCI:1:0:0"
143EndSection
144
145Section "Device"
146 ### Available Driver options are:-
147 ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
148 ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
149 ### <percent>: "<f>%"
150 ### [arg]: arg optional
151 #Option "Accel" # [<bool>]
152 #Option "SWcursor" # [<bool>]
153 #Option "EnablePageFlip" # [<bool>]
154 #Option "SubPixelOrder" # [<str>]
155 #Option "ZaphodHeads" # <str>
156 #Option "AccelMethod" # <str>
157 #Option "DRI3" # [<bool>]
158 #Option "DRI" # <i>
159 #Option "ShadowPrimary" # [<bool>]
160 #Option "TearFree" # [<bool>]
161 #Option "DeleteUnusedDP12Displays" # [<bool>]
162 #Option "VariableRefresh" # [<bool>]
163 Identifier "Card1"
164 Driver "amdgpu"
165 BusID "PCI:1:0:1"
166EndSection
167
168Section "Device"
169 ### Available Driver options are:-
170 ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
171 ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
172 ### <percent>: "<f>%"
173 ### [arg]: arg optional
174 #Option "Accel" # [<bool>]
175 #Option "AccelMethod" # <str>
176 #Option "Backlight" # <str>
177 #Option "CustomEDID" # <str>
178 #Option "DRI" # <str>
179 #Option "Present" # [<bool>]
180 #Option "ColorKey" # <i>
181 #Option "VideoKey" # <i>
182 #Option "Tiling" # [<bool>]
183 #Option "LinearFramebuffer" # [<bool>]
184 #Option "HWRotation" # [<bool>]
185 #Option "VSync" # [<bool>]
186 #Option "PageFlip" # [<bool>]
187 #Option "SwapbuffersWait" # [<bool>]
188 #Option "TripleBuffer" # [<bool>]
189 #Option "XvPreferOverlay" # [<bool>]
190 #Option "HotPlug" # [<bool>]
191 #Option "ReprobeOutputs" # [<bool>]
192 #Option "XvMC" # [<bool>]
193 #Option "ZaphodHeads" # <str>
194 #Option "VirtualHeads" # <i>
195 #Option "TearFree" # [<bool>]
196 #Option "PerCrtcPixmaps" # [<bool>]
197 #Option "FallbackDebug" # [<bool>]
198 #Option "DebugFlushBatches" # [<bool>]
199 #Option "DebugFlushCaches" # [<bool>]
200 #Option "DebugWait" # [<bool>]
201 #Option "BufferCache" # [<bool>]
202 Identifier "Card2"
203 Driver "intel"
204 BusID "PCI:0:2:0"
205EndSection
206
207Section "Screen"
208 Identifier "Screen0"
209 Device "Card0"
210 Monitor "Monitor0"
211 SubSection "Display"
212 Viewport 0 0
213 Depth 1
214 EndSubSection
215 SubSection "Display"
216 Viewport 0 0
217 Depth 4
218 EndSubSection
219 SubSection "Display"
220 Viewport 0 0
221 Depth 8
222 EndSubSection
223 SubSection "Display"
224 Viewport 0 0
225 Depth 15
226 EndSubSection
227 SubSection "Display"
228 Viewport 0 0
229 Depth 16
230 EndSubSection
231 SubSection "Display"
232 Viewport 0 0
233 Depth 24
234 EndSubSection
235EndSection
236
237Section "Screen"
238 Identifier "Screen1"
239 Device "Card1"
240 Monitor "Monitor1"
241 SubSection "Display"
242 Viewport 0 0
243 Depth 1
244 EndSubSection
245 SubSection "Display"
246 Viewport 0 0
247 Depth 4
248 EndSubSection
249 SubSection "Display"
250 Viewport 0 0
251 Depth 8
252 EndSubSection
253 SubSection "Display"
254 Viewport 0 0
255 Depth 15
256 EndSubSection
257 SubSection "Display"
258 Viewport 0 0
259 Depth 16
260 EndSubSection
261 SubSection "Display"
262 Viewport 0 0
263 Depth 24
264 EndSubSection
265EndSection
266
267Section "Screen"
268 Identifier "Screen2"
269 Device "Card2"
270 Monitor "Monitor2"
271 SubSection "Display"
272 Viewport 0 0
273 Depth 1
274 EndSubSection
275 SubSection "Display"
276 Viewport 0 0
277 Depth 4
278 EndSubSection
279 SubSection "Display"
280 Viewport 0 0
281 Depth 8
282 EndSubSection
283 SubSection "Display"
284 Viewport 0 0
285 Depth 15
286 EndSubSection
287 SubSection "Display"
288 Viewport 0 0
289 Depth 16
290 EndSubSection
291 SubSection "Display"
292 Viewport 0 0
293 Depth 24
294 EndSubSection
295EndSection
296
297
298==========================================================================================
299cat /var/log/Xorg.0.log :
300==========================================================================================
301[ 24.007]
302X.Org X Server 1.20.4
303X Protocol Version 11, Revision 0
304[ 24.007] Build Operating System: Linux 4.9.0-8-amd64 x86_64 Debian
305[ 24.007] Current Operating System: Linux pq9-pc 4.19.0-5-amd64 #1 SMP Debian 4.19.37-5+deb10u2 (2019-08-08) x86_64
306[ 24.007] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-5-amd64 root=UUID=1a0931cb-cff7-4847-8a1f-e4e7f66894e4 ro elevator=noop quiet splash
307[ 24.007] Build Date: 05 March 2019 08:11:12PM
308[ 24.007] xorg-server 2:1.20.4-1 (https://www.debian.org/support)
309[ 24.007] Current version of pixman: 0.36.0
310[ 24.007] Before reporting problems, check http://wiki.x.org
311 to make sure that you have the latest version.
312[ 24.007] Markers: (--) probed, (**) from config file, (==) default setting,
313 (++) from command line, (!!) notice, (II) informational,
314 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
315[ 24.007] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep 14 20:02:28 2019
316[ 24.008] (==) Using config directory: "/etc/X11/xorg.conf.d"
317[ 24.008] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
318[ 24.011] (==) ServerLayout "X.org Configured"
319[ 24.011] (**) |-->Screen "Screen0" (0)
320[ 24.011] (**) | |-->Monitor "Monitor0"
321[ 24.012] (**) | |-->Device "Card0"
322[ 24.012] (**) |-->Screen "Screen1" (1)
323[ 24.012] (**) | |-->Monitor "Monitor1"
324[ 24.012] (**) | |-->Device "Card1"
325[ 24.012] (**) |-->Screen "Screen2" (2)
326[ 24.012] (**) | |-->Monitor "Monitor2"
327[ 24.013] (**) | |-->Device "Card2"
328[ 24.013] (**) |-->Input Device "Mouse0"
329[ 24.013] (**) |-->Input Device "Keyboard0"
330[ 24.013] (==) Automatically adding devices
331[ 24.013] (==) Automatically enabling devices
332[ 24.013] (==) Automatically adding GPU devices
333[ 24.013] (==) Max clients allowed: 256, resource mask: 0x1fffff
334[ 24.021] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
335[ 24.021] Entry deleted from font path.
336[ 24.026] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
337[ 24.026] Entry deleted from font path.
338[ 24.026] (**) FontPath set to:
339 /usr/share/fonts/X11/misc,
340 /usr/share/fonts/X11/100dpi/:unscaled,
341 /usr/share/fonts/X11/75dpi/:unscaled,
342 /usr/share/fonts/X11/Type1,
343 /usr/share/fonts/X11/100dpi,
344 /usr/share/fonts/X11/75dpi,
345 built-ins,
346 /usr/share/fonts/X11/misc,
347 /usr/share/fonts/X11/100dpi/:unscaled,
348 /usr/share/fonts/X11/75dpi/:unscaled,
349 /usr/share/fonts/X11/Type1,
350 /usr/share/fonts/X11/100dpi,
351 /usr/share/fonts/X11/75dpi,
352 built-ins
353[ 24.026] (**) ModulePath set to "/usr/lib/xorg/modules"
354[ 24.026] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
355[ 24.026] (WW) Disabling Mouse0
356[ 24.026] (WW) Disabling Keyboard0
357[ 24.026] (II) Loader magic: 0x562c3879fe20
358[ 24.026] (II) Module ABI versions:
359[ 24.026] X.Org ANSI C Emulation: 0.4
360[ 24.026] X.Org Video Driver: 24.0
361[ 24.026] X.Org XInput driver : 24.1
362[ 24.026] X.Org Server Extension : 10.0
363[ 24.027] (++) using VT number 7
364
365[ 24.027] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
366[ 24.029] (II) xfree86: Adding drm device (/dev/dri/card0)
367[ 25.535] (II) xfree86: Adding drm device (/dev/dri/card1)
368[ 25.552] (--) PCI:*(0@0:2:0) 8086:0046:103c:144b rev 2, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00005050/8, BIOS @ 0x????????/131072
369[ 25.552] (--) PCI: (1@0:0:0) 1002:68c1:103c:144b rev 0, Mem @ 0xa0000000/268435456, 0xc4400000/131072, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
370[ 25.552] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
371[ 25.552] (II) LoadModule: "glx"
372[ 25.554] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
373[ 25.566] (II) Module glx: vendor="X.Org Foundation"
374[ 25.566] compiled for 1.20.4, module version = 1.0.0
375[ 25.566] ABI class: X.Org Server Extension, version 10.0
376[ 25.566] (II) LoadModule: "amdgpu"
377[ 25.566] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
378[ 25.571] (II) Module amdgpu: vendor="X.Org Foundation"
379[ 25.571] compiled for 1.20.3, module version = 18.1.99
380[ 25.571] Module class: X.Org Video Driver
381[ 25.571] ABI class: X.Org Video Driver, version 24.0
382[ 25.571] (II) LoadModule: "intel"
383[ 25.571] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
384[ 25.576] (II) Module intel: vendor="X.Org Foundation"
385[ 25.576] compiled for 1.20.1, module version = 2.99.917
386[ 25.576] Module class: X.Org Video Driver
387[ 25.576] ABI class: X.Org Video Driver, version 24.0
388[ 25.576] (II) AMDGPU: Driver for AMD Radeon:
389 All GPUs supported by the amdgpu kernel driver
390[ 25.576] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
391 i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
392 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
393 Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
394 GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
395[ 25.576] (II) intel: Driver for Intel(R) HD Graphics
396[ 25.576] (II) intel: Driver for Intel(R) Iris(TM) Graphics
397[ 25.576] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
398[ 25.585] (II) AMDGPU(0): [KMS] Kernel modesetting enabled.
399[ 27.099] (EE) AMDGPU(0): amdgpu_device_initialize failed
400[ 28.602] (II) AMDGPU(1): [KMS] Kernel modesetting enabled.
401[ 30.110] (EE) AMDGPU(1): amdgpu_device_initialize failed
402[ 31.610] (II) AMDGPU(2): [KMS] drm report modesetting isn't supported.
403[ 31.614] (II) intel(3): Using Kernel Mode Setting driver: i915, version 1.6.0 20180719
404[ 31.614] (II) intel(3): SNA compiled: xserver-xorg-video-intel 2:2.99.917+git20180925-2 (Andreas Boll <aboll@debian.org>)
405[ 31.614] (II) intel(3): SNA compiled for use with valgrind
406[ 31.633] (II) AMDGPU(G0): [KMS] Kernel modesetting enabled.
407[ 33.134] (EE) AMDGPU(G0): amdgpu_device_initialize failed
408[ 34.634] (EE) Screen 0 deleted because of no matching config section.
409[ 34.634] (II) UnloadModule: "amdgpu"
410[ 34.635] (EE) Screen 0 deleted because of no matching config section.
411[ 34.635] (II) UnloadModule: "amdgpu"
412[ 34.635] (EE) Screen 0 deleted because of no matching config section.
413[ 34.635] (II) UnloadModule: "amdgpu"
414[ 34.639] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics
415[ 34.639] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2; using a maximum of 2 threads
416[ 34.639] (==) intel(0): Depth 24, (--) framebuffer bpp 32
417[ 34.639] (==) intel(0): RGB weight 888
418[ 34.639] (==) intel(0): Default visual is TrueColor
419[ 34.640] (II) intel(0): Output LVDS1 using monitor section Monitor2
420[ 34.640] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
421[ 34.640] (II) intel(0): Enabled output LVDS1
422[ 34.640] (II) intel(0): Output VGA1 has no monitor section
423[ 34.641] (II) intel(0): Enabled output VGA1
424[ 34.641] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
425[ 34.641] (II) intel(0): Output VIRTUAL1 has no monitor section
426[ 34.641] (II) intel(0): Enabled output VIRTUAL1
427[ 34.641] (--) intel(0): Output LVDS1 using initial mode 1600x900 on pipe 0
428[ 34.641] (==) intel(0): TearFree disabled
429[ 34.641] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
430[ 34.641] (==) intel(0): DPI set to (96, 96)
431[ 34.641] (II) Loading sub module "dri3"
432[ 34.641] (II) LoadModule: "dri3"
433[ 34.641] (II) Module "dri3" already built-in
434[ 34.641] (II) Loading sub module "dri2"
435[ 34.641] (II) LoadModule: "dri2"
436[ 34.641] (II) Module "dri2" already built-in
437[ 34.641] (II) Loading sub module "present"
438[ 34.641] (II) LoadModule: "present"
439[ 34.641] (II) Module "present" already built-in
440[ 34.641] (II) UnloadModule: "amdgpu"
441[ 34.646] (II) intel(0): SNA initialized with Ironlake (gen5) backend
442[ 34.646] (==) intel(0): Backing store enabled
443[ 34.647] (==) intel(0): Silken mouse enabled
444[ 34.647] (II) intel(0): HW Cursor enabled
445[ 34.648] (==) intel(0): DPMS enabled
446[ 34.648] (==) intel(0): Display hotplug detection enabled
447[ 34.648] (II) intel(0): [XvMC] xvmc_vld driver initialized.
448[ 34.649] (II) intel(0): [DRI2] Setup complete
449[ 34.649] (II) intel(0): [DRI2] DRI driver: i965
450[ 34.649] (II) intel(0): [DRI2] VDPAU driver: va_gl
451[ 34.649] (II) intel(0): direct rendering: DRI2 enabled
452[ 34.649] (II) intel(0): hardware support for Present enabled
453[ 34.649] (II) Initializing extension Generic Event Extension
454[ 34.649] (II) Initializing extension SHAPE
455[ 34.650] (II) Initializing extension MIT-SHM
456[ 34.650] (II) Initializing extension XInputExtension
457[ 34.650] (II) Initializing extension XTEST
458[ 34.651] (II) Initializing extension BIG-REQUESTS
459[ 34.651] (II) Initializing extension SYNC
460[ 34.651] (II) Initializing extension XKEYBOARD
461[ 34.651] (II) Initializing extension XC-MISC
462[ 34.651] (II) Initializing extension SECURITY
463[ 34.652] (II) Initializing extension XFIXES
464[ 34.652] (II) Initializing extension RENDER
465[ 34.652] (II) Initializing extension RANDR
466[ 34.652] (II) Initializing extension COMPOSITE
467[ 34.653] (II) Initializing extension DAMAGE
468[ 34.653] (II) Initializing extension MIT-SCREEN-SAVER
469[ 34.653] (II) Initializing extension DOUBLE-BUFFER
470[ 34.653] (II) Initializing extension RECORD
471[ 34.653] (II) Initializing extension DPMS
472[ 34.654] (II) Initializing extension Present
473[ 34.654] (II) Initializing extension DRI3
474[ 34.654] (II) Initializing extension X-Resource
475[ 34.654] (II) Initializing extension XVideo
476[ 34.654] (II) Initializing extension XVideo-MotionCompensation
477[ 34.654] (II) Initializing extension SELinux
478[ 34.654] (II) SELinux: Disabled on system
479[ 34.654] (II) Initializing extension GLX
480[ 34.702] (II) AIGLX: Loaded and initialized i965
481[ 34.702] (II) GLX: Initialized DRI2 GL provider for screen 0
482[ 34.702] (II) Initializing extension XFree86-VidModeExtension
483[ 34.702] (II) Initializing extension XFree86-DGA
484[ 34.702] (II) Initializing extension XFree86-DRI
485[ 34.702] (II) Initializing extension DRI2
486[ 34.716] (II) intel(0): switch to mode 1600x900@60.0 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
487[ 34.727] (II) intel(0): Setting screen physical size to 423 x 238
488[ 34.840] (II) config/udev: Adding input device Power Button (/dev/input/event3)
489[ 34.840] (**) Power Button: Applying InputClass "libinput keyboard catchall"
490[ 34.840] (**) Power Button: Applying InputClass "system-keyboard"
491[ 34.840] (II) LoadModule: "libinput"
492[ 34.840] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
493[ 34.848] (II) Module libinput: vendor="X.Org Foundation"
494[ 34.848] compiled for 1.20.4, module version = 0.28.2
495[ 34.848] Module class: X.Org XInput Driver
496[ 34.848] ABI class: X.Org XInput driver, version 24.1
497[ 34.849] (II) Using input driver 'libinput' for 'Power Button'
498[ 34.849] (**) Power Button: always reports core events
499[ 34.849] (**) Option "Device" "/dev/input/event3"
500[ 34.849] (**) Option "_source" "server/udev"
501[ 34.854] (II) event3 - Power Button: is tagged by udev as: Keyboard
502[ 34.854] (II) event3 - Power Button: device is a keyboard
503[ 34.854] (II) event3 - Power Button: device removed
504[ 34.872] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
505[ 34.872] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
506[ 34.872] (**) Option "xkb_model" "pc105"
507[ 34.872] (**) Option "xkb_layout" "es"
508[ 34.905] (II) event3 - Power Button: is tagged by udev as: Keyboard
509[ 34.905] (II) event3 - Power Button: device is a keyboard
510[ 34.906] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
511[ 34.906] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
512[ 34.906] (**) Video Bus: Applying InputClass "system-keyboard"
513[ 34.906] (II) Using input driver 'libinput' for 'Video Bus'
514[ 34.907] (**) Video Bus: always reports core events
515[ 34.907] (**) Option "Device" "/dev/input/event9"
516[ 34.907] (**) Option "_source" "server/udev"
517[ 34.908] (II) event9 - Video Bus: is tagged by udev as: Keyboard
518[ 34.908] (II) event9 - Video Bus: device is a keyboard
519[ 34.909] (II) event9 - Video Bus: device removed
520[ 34.960] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11/event9"
521[ 34.960] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
522[ 34.960] (**) Option "xkb_model" "pc105"
523[ 34.960] (**) Option "xkb_layout" "es"
524[ 34.962] (II) event9 - Video Bus: is tagged by udev as: Keyboard
525[ 34.962] (II) event9 - Video Bus: device is a keyboard
526[ 34.963] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
527[ 34.963] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
528[ 34.963] (**) Video Bus: Applying InputClass "system-keyboard"
529[ 34.963] (II) Using input driver 'libinput' for 'Video Bus'
530[ 34.963] (**) Video Bus: always reports core events
531[ 34.963] (**) Option "Device" "/dev/input/event10"
532[ 34.963] (**) Option "_source" "server/udev"
533[ 34.965] (II) event10 - Video Bus: is tagged by udev as: Keyboard
534[ 34.965] (II) event10 - Video Bus: device is a keyboard
535[ 34.966] (II) event10 - Video Bus: device removed
536[ 35.000] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:10/LNXVIDEO:02/input/input12/event10"
537[ 35.000] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
538[ 35.000] (**) Option "xkb_model" "pc105"
539[ 35.000] (**) Option "xkb_layout" "es"
540[ 35.002] (II) event10 - Video Bus: is tagged by udev as: Keyboard
541[ 35.002] (II) event10 - Video Bus: device is a keyboard
542[ 35.003] (II) config/udev: Adding input device Power Button (/dev/input/event1)
543[ 35.003] (**) Power Button: Applying InputClass "libinput keyboard catchall"
544[ 35.003] (**) Power Button: Applying InputClass "system-keyboard"
545[ 35.003] (II) Using input driver 'libinput' for 'Power Button'
546[ 35.004] (**) Power Button: always reports core events
547[ 35.004] (**) Option "Device" "/dev/input/event1"
548[ 35.004] (**) Option "_source" "server/udev"
549[ 35.005] (II) event1 - Power Button: is tagged by udev as: Keyboard
550[ 35.005] (II) event1 - Power Button: device is a keyboard
551[ 35.005] (II) event1 - Power Button: device removed
552[ 35.024] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event1"
553[ 35.024] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
554[ 35.024] (**) Option "xkb_model" "pc105"
555[ 35.024] (**) Option "xkb_layout" "es"
556[ 35.026] (II) event1 - Power Button: is tagged by udev as: Keyboard
557[ 35.026] (II) event1 - Power Button: device is a keyboard
558[ 35.027] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
559[ 35.027] (II) No input driver specified, ignoring this device.
560[ 35.027] (II) This device may have been added with another device file.
561[ 35.028] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event14)
562[ 35.028] (II) No input driver specified, ignoring this device.
563[ 35.028] (II) This device may have been added with another device file.
564[ 35.030] (II) config/udev: Adding input device Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse (/dev/input/event4)
565[ 35.030] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: Applying InputClass "libinput pointer catchall"
566[ 35.030] (II) Using input driver 'libinput' for 'Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse'
567[ 35.030] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: always reports core events
568[ 35.030] (**) Option "Device" "/dev/input/event4"
569[ 35.030] (**) Option "_source" "server/udev"
570[ 35.032] (II) event4 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: is tagged by udev as: Mouse
571[ 35.032] (II) event4 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: device is a pointer
572[ 35.032] (II) event4 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: device removed
573[ 35.072] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input6/event4"
574[ 35.072] (II) XINPUT: Adding extended input device "Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse" (type: MOUSE, id 10)
575[ 35.073] (**) Option "AccelerationScheme" "none"
576[ 35.073] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: (accel) selected scheme none/0
577[ 35.073] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: (accel) acceleration factor: 2.000
578[ 35.073] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: (accel) acceleration threshold: 4
579[ 35.075] (II) event4 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: is tagged by udev as: Mouse
580[ 35.075] (II) event4 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse: device is a pointer
581[ 35.077] (II) config/udev: Adding input device Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse (/dev/input/mouse0)
582[ 35.077] (II) No input driver specified, ignoring this device.
583[ 35.077] (II) This device may have been added with another device file.
584[ 35.078] (II) config/udev: Adding input device Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse (/dev/input/event5)
585[ 35.078] (II) No input driver specified, ignoring this device.
586[ 35.078] (II) This device may have been added with another device file.
587[ 35.079] (II) config/udev: Adding input device Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control (/dev/input/event6)
588[ 35.079] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
589[ 35.079] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: Applying InputClass "system-keyboard"
590[ 35.079] (II) Using input driver 'libinput' for 'Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control'
591[ 35.079] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: always reports core events
592[ 35.079] (**) Option "Device" "/dev/input/event6"
593[ 35.079] (**) Option "_source" "server/udev"
594[ 35.082] (II) event6 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: is tagged by udev as: Keyboard
595[ 35.082] (II) event6 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: device is a keyboard
596[ 35.082] (II) event6 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: device removed
597[ 35.096] (II) libinput: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: needs a virtual subdevice
598[ 35.096] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input8/event6"
599[ 35.096] (II) XINPUT: Adding extended input device "Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control" (type: MOUSE, id 11)
600[ 35.096] (**) Option "AccelerationScheme" "none"
601[ 35.096] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: (accel) selected scheme none/0
602[ 35.096] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: (accel) acceleration factor: 2.000
603[ 35.096] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: (accel) acceleration threshold: 4
604[ 35.099] (II) event6 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: is tagged by udev as: Keyboard
605[ 35.099] (II) event6 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: device is a keyboard
606[ 35.100] (II) config/udev: Adding input device Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control (/dev/input/event7)
607[ 35.100] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: Applying InputClass "libinput keyboard catchall"
608[ 35.100] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: Applying InputClass "system-keyboard"
609[ 35.100] (II) Using input driver 'libinput' for 'Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control'
610[ 35.100] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: always reports core events
611[ 35.100] (**) Option "Device" "/dev/input/event7"
612[ 35.100] (**) Option "_source" "server/udev"
613[ 35.102] (II) event7 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: is tagged by udev as: Keyboard
614[ 35.102] (II) event7 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: device is a keyboard
615[ 35.102] (II) event7 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: device removed
616[ 35.128] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input9/event7"
617[ 35.128] (II) XINPUT: Adding extended input device "Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control" (type: KEYBOARD, id 12)
618[ 35.128] (**) Option "xkb_model" "pc105"
619[ 35.128] (**) Option "xkb_layout" "es"
620[ 35.131] (II) event7 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: is tagged by udev as: Keyboard
621[ 35.131] (II) event7 - Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control: device is a keyboard
622[ 35.132] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event16)
623[ 35.132] (II) No input driver specified, ignoring this device.
624[ 35.132] (II) This device may have been added with another device file.
625[ 35.133] (II) config/udev: Adding input device HDA Intel MID Mic (/dev/input/event17)
626[ 35.133] (II) No input driver specified, ignoring this device.
627[ 35.133] (II) This device may have been added with another device file.
628[ 35.134] (II) config/udev: Adding input device HDA Intel MID Front Headphone (/dev/input/event18)
629[ 35.134] (II) No input driver specified, ignoring this device.
630[ 35.134] (II) This device may have been added with another device file.
631[ 35.135] (II) config/udev: Adding input device HP Webcam: HP Webcam (/dev/input/event15)
632[ 35.135] (**) HP Webcam: HP Webcam: Applying InputClass "libinput keyboard catchall"
633[ 35.135] (**) HP Webcam: HP Webcam: Applying InputClass "system-keyboard"
634[ 35.135] (II) Using input driver 'libinput' for 'HP Webcam: HP Webcam'
635[ 35.135] (**) HP Webcam: HP Webcam: always reports core events
636[ 35.135] (**) Option "Device" "/dev/input/event15"
637[ 35.135] (**) Option "_source" "server/udev"
638[ 35.137] (II) event15 - HP Webcam: HP Webcam: is tagged by udev as: Keyboard
639[ 35.137] (II) event15 - HP Webcam: HP Webcam: device is a keyboard
640[ 35.137] (II) event15 - HP Webcam: HP Webcam: device removed
641[ 35.176] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input18/event15"
642[ 35.176] (II) XINPUT: Adding extended input device "HP Webcam: HP Webcam" (type: KEYBOARD, id 13)
643[ 35.176] (**) Option "xkb_model" "pc105"
644[ 35.176] (**) Option "xkb_layout" "es"
645[ 35.179] (II) event15 - HP Webcam: HP Webcam: is tagged by udev as: Keyboard
646[ 35.179] (II) event15 - HP Webcam: HP Webcam: device is a keyboard
647[ 35.180] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
648[ 35.180] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
649[ 35.180] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
650[ 35.180] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
651[ 35.180] (**) AT Translated Set 2 keyboard: always reports core events
652[ 35.180] (**) Option "Device" "/dev/input/event0"
653[ 35.180] (**) Option "_source" "server/udev"
654[ 35.182] (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
655[ 35.182] (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
656[ 35.184] (II) event0 - AT Translated Set 2 keyboard: device removed
657[ 35.200] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
658[ 35.200] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
659[ 35.200] (**) Option "xkb_model" "pc105"
660[ 35.200] (**) Option "xkb_layout" "es"
661[ 35.202] (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
662[ 35.202] (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
663[ 35.205] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
664[ 35.205] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
665[ 35.205] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
666[ 35.205] (**) SynPS/2 Synaptics TouchPad: always reports core events
667[ 35.205] (**) Option "Device" "/dev/input/event8"
668[ 35.205] (**) Option "_source" "server/udev"
669[ 35.207] (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
670[ 35.209] (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
671[ 35.209] (II) event8 - SynPS/2 Synaptics TouchPad: device removed
672[ 35.241] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event8"
673[ 35.241] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
674[ 35.243] (**) Option "AccelerationScheme" "none"
675[ 35.243] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
676[ 35.243] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
677[ 35.243] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
678[ 35.245] (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
679[ 35.246] (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
680[ 35.247] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
681[ 35.247] (II) No input driver specified, ignoring this device.
682[ 35.247] (II) This device may have been added with another device file.
683[ 35.248] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event11)
684[ 35.248] (II) No input driver specified, ignoring this device.
685[ 35.248] (II) This device may have been added with another device file.
686[ 35.249] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
687[ 35.249] (II) No input driver specified, ignoring this device.
688[ 35.249] (II) This device may have been added with another device file.
689[ 35.249] (II) config/udev: Adding input device PC Speaker (/dev/input/event13)
690[ 35.249] (II) No input driver specified, ignoring this device.
691[ 35.249] (II) This device may have been added with another device file.
692[ 35.250] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event12)
693[ 35.250] (**) HP WMI hotkeys: Applying InputClass "libinput keyboard catchall"
694[ 35.250] (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
695[ 35.250] (II) Using input driver 'libinput' for 'HP WMI hotkeys'
696[ 35.250] (**) HP WMI hotkeys: always reports core events
697[ 35.250] (**) Option "Device" "/dev/input/event12"
698[ 35.250] (**) Option "_source" "server/udev"
699[ 35.251] (II) event12 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
700[ 35.251] (II) event12 - HP WMI hotkeys: device is a keyboard
701[ 35.252] (II) event12 - HP WMI hotkeys: device removed
702[ 35.288] (**) Option "config_info" "udev:/sys/devices/virtual/input/input14/event12"
703[ 35.288] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 16)
704[ 35.288] (**) Option "xkb_model" "pc105"
705[ 35.288] (**) Option "xkb_layout" "es"
706[ 35.289] (II) event12 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
707[ 35.290] (II) event12 - HP WMI hotkeys: device is a keyboard
708[ 35.307] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
709[ 35.307] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: Applying InputClass "system-keyboard"
710[ 35.307] (II) Using input driver 'libinput' for 'Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control'
711[ 35.307] (**) Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: always reports core events
712[ 35.307] (**) Option "Device" "/dev/input/event6"
713[ 35.307] (**) Option "_source" "_driver/libinput"
714[ 35.307] (II) libinput: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control: is a virtual subdevice
715[ 35.307] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input8/event6"
716[ 35.307] (II) XINPUT: Adding extended input device "Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control" (type: KEYBOARD, id 17)
717[ 35.307] (**) Option "xkb_model" "pc105"
718[ 35.307] (**) Option "xkb_layout" "es"
719[ 36.641] (II) intel(0): EDID vendor "AUO", prod id 5022
720[ 36.641] (II) intel(0): Printing DDC gathered Modelines:
721[ 36.641] (II) intel(0): Modeline "1600x900"x0.0 107.80 1600 1648 1680 1966 900 903 909 912 -hsync -vsync (54.8 kHz eP)
722
723
724
725
726
727
728
729
730
731==========================================================================================
732sudo dmesg :
733==========================================================================================
734
735
736[ 0.000000] microcode: microcode updated early to revision 0x7, date = 2018-04-23
737[ 0.000000] Linux version 4.19.0-5-amd64 (debian-kernel@lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.37-5+deb10u2 (2019-08-08)
738[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-5-amd64 root=UUID=1a0931cb-cff7-4847-8a1f-e4e7f66894e4 ro elevator=noop quiet splash
739[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
740[ 0.000000] BIOS-provided physical RAM map:
741[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
742[ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
743[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
744[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009b63efff] usable
745[ 0.000000] BIOS-e820: [mem 0x000000009b63f000-0x000000009b6befff] reserved
746[ 0.000000] BIOS-e820: [mem 0x000000009b6bf000-0x000000009b7befff] ACPI NVS
747[ 0.000000] BIOS-e820: [mem 0x000000009b7bf000-0x000000009b7fefff] ACPI data
748[ 0.000000] BIOS-e820: [mem 0x000000009b7ff000-0x000000009b7fffff] usable
749[ 0.000000] BIOS-e820: [mem 0x000000009b800000-0x000000009fffffff] reserved
750[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
751[ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
752[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
753[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
754[ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
755[ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
756[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
757[ 0.000000] BIOS-e820: [mem 0x00000000ffe80000-0x00000000ffffffff] reserved
758[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000017bffffff] usable
759[ 0.000000] BIOS-e820: [mem 0x000000017c000000-0x000000017fffffff] reserved
760[ 0.000000] BIOS-e820: [mem 0x0000000180000000-0x00000001dbffffff] usable
761[ 0.000000] NX (Execute Disable) protection: active
762[ 0.000000] SMBIOS 2.6 present.
763[ 0.000000] DMI: Hewlett-Packard HP Pavilion dv7 Notebook PC/144B, BIOS F.29 11/07/2011
764[ 0.000000] tsc: Fast TSC calibration using PIT
765[ 0.000000] tsc: Detected 2394.000 MHz processor
766[ 0.002614] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
767[ 0.002616] e820: remove [mem 0x000a0000-0x000fffff] usable
768[ 0.002626] last_pfn = 0x1dc000 max_arch_pfn = 0x400000000
769[ 0.002630] MTRR default type: uncachable
770[ 0.002631] MTRR fixed ranges enabled:
771[ 0.002632] 00000-9FFFF write-back
772[ 0.002633] A0000-BFFFF uncachable
773[ 0.002634] C0000-EFFFF write-through
774[ 0.002635] F0000-FFFFF write-combining
775[ 0.002635] MTRR variable ranges enabled:
776[ 0.002637] 0 base 000000000 mask F80000000 write-back
777[ 0.002638] 1 base 0FFE00000 mask FFFE00000 write-protect
778[ 0.002639] 2 base 080000000 mask FE0000000 write-back
779[ 0.002639] 3 base 09C000000 mask FFC000000 uncachable
780[ 0.002640] 4 base 09B800000 mask FFF800000 uncachable
781[ 0.002641] 5 base 100000000 mask F00000000 write-back
782[ 0.002642] 6 base 1DC000000 mask FFC000000 uncachable
783[ 0.002643] 7 base 1E0000000 mask FE0000000 uncachable
784[ 0.003258] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
785[ 0.003395] last_pfn = 0x9b800 max_arch_pfn = 0x400000000
786[ 0.014824] Base memory trampoline at [(____ptrval____)] 97000 size 24576
787[ 0.014830] BRK [0x126601000, 0x126601fff] PGTABLE
788[ 0.014832] BRK [0x126602000, 0x126602fff] PGTABLE
789[ 0.014834] BRK [0x126603000, 0x126603fff] PGTABLE
790[ 0.014899] BRK [0x126604000, 0x126604fff] PGTABLE
791[ 0.014902] BRK [0x126605000, 0x126605fff] PGTABLE
792[ 0.015046] BRK [0x126606000, 0x126606fff] PGTABLE
793[ 0.015168] BRK [0x126607000, 0x126607fff] PGTABLE
794[ 0.015182] BRK [0x126608000, 0x126608fff] PGTABLE
795[ 0.015258] BRK [0x126609000, 0x126609fff] PGTABLE
796[ 0.015575] RAMDISK: [mem 0x31bd5000-0x34de1fff]
797[ 0.015585] ACPI: Early table checksum verification disabled
798[ 0.016069] ACPI: RSDP 0x00000000000FE020 000024 (v02 HPQOEM)
799[ 0.016073] ACPI: XSDT 0x000000009B7FE120 00007C (v01 HPQOEM SLIC-MPC 00000001 01000013)
800[ 0.016080] ACPI: FACP 0x000000009B7FC000 0000F4 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
801[ 0.016085] ACPI: DSDT 0x000000009B7E9000 00F50F (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
802[ 0.016089] ACPI: FACS 0x000000009B75E000 000040
803[ 0.016092] ACPI: FACS 0x000000009B75E000 000040
804[ 0.016095] ACPI: ASF! 0x000000009B7FD000 0000A5 (v32 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
805[ 0.016098] ACPI: HPET 0x000000009B7FB000 000038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
806[ 0.016102] ACPI: APIC 0x000000009B7FA000 00008C (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
807[ 0.016105] ACPI: MCFG 0x000000009B7F9000 00003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
808[ 0.016108] ACPI: SLIC 0x000000009B7E8000 000176 (v01 HPQOEM SLIC-MPC 00000001 SLIC 000F4240)
809[ 0.016112] ACPI: BOOT 0x000000009B7E5000 000028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
810[ 0.016115] ACPI: ASPT 0x000000009B7E2000 000034 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
811[ 0.016119] ACPI: WDAT 0x000000009B7E1000 000224 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
812[ 0.016122] ACPI: SSDT 0x000000009B7E0000 0009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
813[ 0.016126] ACPI: SSDT 0x000000009B7DE000 001B34 (v01 AmdRef AmdTabl 00001000 INTL 20051117)
814[ 0.016137] ACPI: Local APIC address 0xfee00000
815[ 0.016257] No NUMA configuration found
816[ 0.016258] Faking a node at [mem 0x0000000000000000-0x00000001dbffffff]
817[ 0.016262] NODE_DATA(0) allocated [mem 0x1dbff9000-0x1dbffdfff]
818[ 0.016296] Zone ranges:
819[ 0.016297] DMA [mem 0x0000000000001000-0x0000000000ffffff]
820[ 0.016298] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
821[ 0.016299] Normal [mem 0x0000000100000000-0x00000001dbffffff]
822[ 0.016301] Device empty
823[ 0.016302] Movable zone start for each node
824[ 0.016302] Early memory node ranges
825[ 0.016303] node 0: [mem 0x0000000000001000-0x000000000009cfff]
826[ 0.016304] node 0: [mem 0x0000000000100000-0x000000009b63efff]
827[ 0.016304] node 0: [mem 0x000000009b7ff000-0x000000009b7fffff]
828[ 0.016305] node 0: [mem 0x0000000100000000-0x000000017bffffff]
829[ 0.016306] node 0: [mem 0x0000000180000000-0x00000001dbffffff]
830[ 0.016309] Reserved but unavailable: 100 pages
831[ 0.016311] Initmem setup node 0 [mem 0x0000000000001000-0x00000001dbffffff]
832[ 0.016312] On node 0 totalpages: 1521116
833[ 0.016313] DMA zone: 64 pages used for memmap
834[ 0.016314] DMA zone: 21 pages reserved
835[ 0.016315] DMA zone: 3996 pages, LIFO batch:0
836[ 0.016423] DMA32 zone: 9881 pages used for memmap
837[ 0.016424] DMA32 zone: 632384 pages, LIFO batch:63
838[ 0.036282] Normal zone: 14080 pages used for memmap
839[ 0.036285] Normal zone: 884736 pages, LIFO batch:63
840[ 0.059849] Reserving Intel graphics memory at [mem 0x9e000000-0x9fffffff]
841[ 0.060080] ACPI: PM-Timer IO Port: 0x408
842[ 0.060082] ACPI: Local APIC address 0xfee00000
843[ 0.060104] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
844[ 0.060106] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
845[ 0.060108] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
846[ 0.060110] ACPI: IRQ0 used by override.
847[ 0.060111] ACPI: IRQ9 used by override.
848[ 0.060113] Using ACPI (MADT) for SMP configuration information
849[ 0.060114] ACPI: HPET id: 0x8086a201 base: 0xfed00000
850[ 0.060121] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
851[ 0.060142] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
852[ 0.060144] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
853[ 0.060145] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
854[ 0.060145] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
855[ 0.060147] PM: Registered nosave memory: [mem 0x9b63f000-0x9b6befff]
856[ 0.060147] PM: Registered nosave memory: [mem 0x9b6bf000-0x9b7befff]
857[ 0.060148] PM: Registered nosave memory: [mem 0x9b7bf000-0x9b7fefff]
858[ 0.060149] PM: Registered nosave memory: [mem 0x9b800000-0x9fffffff]
859[ 0.060150] PM: Registered nosave memory: [mem 0xa0000000-0xefffffff]
860[ 0.060150] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
861[ 0.060151] PM: Registered nosave memory: [mem 0xf8000000-0xfeafffff]
862[ 0.060151] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
863[ 0.060152] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
864[ 0.060152] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
865[ 0.060153] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
866[ 0.060154] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
867[ 0.060154] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
868[ 0.060155] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
869[ 0.060155] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1afff]
870[ 0.060156] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
871[ 0.060156] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
872[ 0.060157] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
873[ 0.060157] PM: Registered nosave memory: [mem 0xfee01000-0xffe7ffff]
874[ 0.060158] PM: Registered nosave memory: [mem 0xffe80000-0xffffffff]
875[ 0.060159] PM: Registered nosave memory: [mem 0x17c000000-0x17fffffff]
876[ 0.060162] [mem 0xa0000000-0xefffffff] available for PCI devices
877[ 0.060163] Booting paravirtualized kernel on bare hardware
878[ 0.060166] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
879[ 0.256915] random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0
880[ 0.256928] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
881[ 0.257419] percpu: Embedded 44 pages/cpu s143256 r8192 d28776 u262144
882[ 0.257428] pcpu-alloc: s143256 r8192 d28776 u262144 alloc=1*2097152
883[ 0.257429] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
884[ 0.257457] Built 1 zonelists, mobility grouping on. Total pages: 1497070
885[ 0.257458] Policy zone: Normal
886[ 0.257460] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-5-amd64 root=UUID=1a0931cb-cff7-4847-8a1f-e4e7f66894e4 ro elevator=noop quiet splash
887[ 0.267831] Calgary: detecting Calgary via BIOS EBDA area
888[ 0.267842] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
889[ 0.298620] Memory: 5842672K/6084464K available (10252K kernel code, 1242K rwdata, 3184K rodata, 1580K init, 2296K bss, 241792K reserved, 0K cma-reserved)
890[ 0.298733] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
891[ 0.298741] Kernel/User page tables isolation: enabled
892[ 0.298786] ftrace: allocating 31828 entries in 125 pages
893[ 0.316330] rcu: Hierarchical RCU implementation.
894[ 0.316333] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
895[ 0.316334] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
896[ 0.320222] NR_IRQS: 33024, nr_irqs: 488, preallocated irqs: 16
897[ 0.322909] Console: colour VGA+ 80x25
898[ 0.322916] console [tty0] enabled
899[ 0.322937] ACPI: Core revision 20180810
900[ 0.323166] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
901[ 0.323181] hpet clockevent registered
902[ 0.323188] APIC: Switch to symmetric I/O mode setup
903[ 0.323771] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
904[ 0.343186] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22821391a86, max_idle_ns: 440795325644 ns
905[ 0.343202] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.00 BogoMIPS (lpj=9576000)
906[ 0.343204] pid_max: default: 32768 minimum: 301
907[ 0.343234] Security Framework initialized
908[ 0.343236] Yama: disabled by default; enable with sysctl kernel.yama.*
909[ 0.343259] AppArmor: AppArmor initialized
910[ 0.345354] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
911[ 0.346517] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
912[ 0.346579] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
913[ 0.346617] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
914[ 0.346891] mce: CPU supports 9 MCE banks
915[ 0.346900] CPU0: Thermal monitoring enabled (TM1)
916[ 0.346908] process: using mwait in idle threads
917[ 0.346911] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
918[ 0.346912] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
919[ 0.346913] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
920[ 0.346915] Spectre V2 : Mitigation: Full generic retpoline
921[ 0.346916] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
922[ 0.346916] Spectre V2 : Enabling Restricted Speculation for firmware calls
923[ 0.346926] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
924[ 0.346927] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
925[ 0.346928] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
926[ 0.346957] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
927[ 0.347134] Freeing SMP alternatives memory: 24K
928[ 0.355188] smpboot: CPU0: Intel(R) Core(TM) i5 CPU M 450 @ 2.40GHz (family: 0x6, model: 0x25, stepping: 0x5)
929[ 0.355188] Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
930[ 0.355188] core: CPUID marked event: 'bus cycles' unavailable
931[ 0.355188] ... version: 3
932[ 0.355188] ... bit width: 48
933[ 0.355188] ... generic registers: 4
934[ 0.355188] ... value mask: 0000ffffffffffff
935[ 0.355188] ... max period: 000000007fffffff
936[ 0.355188] ... fixed-purpose events: 3
937[ 0.355188] ... event mask: 000000070000000f
938[ 0.355188] rcu: Hierarchical SRCU implementation.
939[ 0.355188] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
940[ 0.355188] smp: Bringing up secondary CPUs ...
941[ 0.355188] x86: Booting SMP configuration:
942[ 0.355188] .... node #0, CPUs: #1
943[ 0.355353] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
944[ 0.355360] #2 #3
945[ 0.361552] smp: Brought up 1 node, 4 CPUs
946[ 0.361552] smpboot: Max logical packages: 2
947[ 0.361552] smpboot: Total of 4 processors activated (19152.00 BogoMIPS)
948[ 0.363605] devtmpfs: initialized
949[ 0.363605] x86/mm: Memory block size: 128MB
950[ 0.363809] PM: Registering ACPI NVS region [mem 0x9b6bf000-0x9b7befff] (1048576 bytes)
951[ 0.363809] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
952[ 0.363809] futex hash table entries: 2048 (order: 5, 131072 bytes)
953[ 0.363809] pinctrl core: initialized pinctrl subsystem
954[ 0.363809] NET: Registered protocol family 16
955[ 0.363809] audit: initializing netlink subsys (disabled)
956[ 0.363809] audit: type=2000 audit(1568484124.040:1): state=initialized audit_enabled=0 res=1
957[ 0.363809] cpuidle: using governor ladder
958[ 0.363809] cpuidle: using governor menu
959[ 0.363809] Simple Boot Flag at 0x44 set to 0x1
960[ 0.363809] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
961[ 0.363809] ACPI: bus type PCI registered
962[ 0.363809] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
963[ 0.363809] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
964[ 0.363809] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
965[ 0.363809] PCI: Using configuration type 1 for base access
966[ 0.367274] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
967[ 0.367274] ACPI: Added _OSI(Module Device)
968[ 0.367274] ACPI: Added _OSI(Processor Device)
969[ 0.367274] ACPI: Added _OSI(3.0 _SCP Extensions)
970[ 0.367275] ACPI: Added _OSI(Processor Aggregator Device)
971[ 0.367276] ACPI: Added _OSI(Linux-Dell-Video)
972[ 0.367277] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
973[ 0.380964] ACPI: 3 ACPI AML tables successfully acquired and loaded
974[ 0.383515] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
975[ 0.389203] ACPI: Dynamic OEM Table Load:
976[ 0.389209] ACPI: SSDT 0xFFFF900554191000 0003F0 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
977[ 0.389621] ACPI: Dynamic OEM Table Load:
978[ 0.389626] ACPI: SSDT 0xFFFF900555520000 000891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
979[ 0.390258] ACPI: Dynamic OEM Table Load:
980[ 0.390263] ACPI: SSDT 0xFFFF900554196C00 000303 (v01 PmRef ApIst 00003000 INTL 20051117)
981[ 0.390552] ACPI: Dynamic OEM Table Load:
982[ 0.390556] ACPI: SSDT 0xFFFF90055418FE00 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
983[ 0.391322] ACPI: EC: EC started
984[ 0.391323] ACPI: EC: interrupt blocked
985[ 0.395722] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
986[ 0.395724] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
987[ 0.395725] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
988[ 0.395726] ACPI: Interpreter enabled
989[ 0.395760] ACPI: (supports S0 S3 S4 S5)
990[ 0.395762] ACPI: Using IOAPIC for interrupt routing
991[ 0.395797] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
992[ 0.395963] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
993[ 0.396030] ACPI: Enabled 17 GPEs in block 00 to 3F
994[ 0.402153] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
995[ 0.402158] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
996[ 0.402191] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
997[ 0.402644] PCI host bridge to bus 0000:00
998[ 0.402646] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
999[ 0.402647] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
1000[ 0.402649] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
1001[ 0.402650] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xfeafffff window]
1002[ 0.402652] pci_bus 0000:00: root bus resource [bus 00-7e]
1003[ 0.402660] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
1004[ 0.402683] DMAR: Disabling batched IOTLB flush on Ironlake
1005[ 0.402756] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
1006[ 0.402792] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
1007[ 0.402865] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
1008[ 0.402875] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
1009[ 0.402881] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
1010[ 0.402884] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
1011[ 0.403013] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
1012[ 0.403045] pci 0000:00:16.0: reg 0x10: [mem 0xc4504000-0xc450400f 64bit]
1013[ 0.403136] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
1014[ 0.403236] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
1015[ 0.404065] pci 0000:00:1a.0: reg 0x10: [mem 0xc450a000-0xc450a3ff]
1016[ 0.406585] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
1017[ 0.406676] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
1018[ 0.406709] pci 0000:00:1b.0: reg 0x10: [mem 0xc4500000-0xc4503fff 64bit]
1019[ 0.406816] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
1020[ 0.406910] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
1021[ 0.407022] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
1022[ 0.407118] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
1023[ 0.407236] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
1024[ 0.407342] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
1025[ 0.408171] pci 0000:00:1d.0: reg 0x10: [mem 0xc4509000-0xc45093ff]
1026[ 0.410700] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
1027[ 0.410786] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
1028[ 0.410933] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
1029[ 0.411111] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
1030[ 0.411138] pci 0000:00:1f.2: reg 0x10: [io 0x5048-0x504f]
1031[ 0.411148] pci 0000:00:1f.2: reg 0x14: [io 0x505c-0x505f]
1032[ 0.411158] pci 0000:00:1f.2: reg 0x18: [io 0x5040-0x5047]
1033[ 0.411168] pci 0000:00:1f.2: reg 0x1c: [io 0x5058-0x505b]
1034[ 0.411178] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
1035[ 0.411193] pci 0000:00:1f.2: reg 0x24: [mem 0xc4508000-0xc45087ff]
1036[ 0.411253] pci 0000:00:1f.2: PME# supported from D3hot
1037[ 0.411332] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
1038[ 0.411358] pci 0000:00:1f.3: reg 0x10: [mem 0xc4506000-0xc45060ff 64bit]
1039[ 0.411387] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
1040[ 0.411487] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
1041[ 0.411517] pci 0000:00:1f.6: reg 0x10: [mem 0xc4507000-0xc4507fff 64bit]
1042[ 0.411713] pci 0000:01:00.0: [1002:68c1] type 00 class 0x030000
1043[ 0.411734] pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
1044[ 0.411744] pci 0000:01:00.0: reg 0x18: [mem 0xc4400000-0xc441ffff 64bit]
1045[ 0.411749] pci 0000:01:00.0: reg 0x20: [io 0x4000-0x40ff]
1046[ 0.411761] pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
1047[ 0.411767] pci 0000:01:00.0: enabling Extended Tags
1048[ 0.411809] pci 0000:01:00.0: supports D1 D2
1049[ 0.411876] pci 0000:01:00.1: [1002:aa60] type 00 class 0x040300
1050[ 0.411899] pci 0000:01:00.1: reg 0x10: [mem 0xc4420000-0xc4423fff 64bit]
1051[ 0.411938] pci 0000:01:00.1: enabling Extended Tags
1052[ 0.411980] pci 0000:01:00.1: supports D1 D2
1053[ 0.412049] pci 0000:00:01.0: PCI bridge to [bus 01]
1054[ 0.412051] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
1055[ 0.412053] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
1056[ 0.412055] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
1057[ 0.412132] pci 0000:02:00.0: [168c:002b] type 00 class 0x028000
1058[ 0.412178] pci 0000:02:00.0: reg 0x10: [mem 0xc3400000-0xc340ffff 64bit]
1059[ 0.412350] pci 0000:02:00.0: supports D1
1060[ 0.412351] pci 0000:02:00.0: PME# supported from D0 D1 D3hot
1061[ 0.412503] pci 0000:00:1c.0: PCI bridge to [bus 02]
1062[ 0.412507] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
1063[ 0.412511] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
1064[ 0.412517] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
1065[ 0.412591] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
1066[ 0.412618] pci 0000:03:00.0: reg 0x10: [io 0x2000-0x20ff]
1067[ 0.412645] pci 0000:03:00.0: reg 0x18: [mem 0xc1404000-0xc1404fff 64bit pref]
1068[ 0.412662] pci 0000:03:00.0: reg 0x20: [mem 0xc1400000-0xc1403fff 64bit pref]
1069[ 0.412673] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
1070[ 0.412759] pci 0000:03:00.0: supports D1 D2
1071[ 0.412760] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
1072[ 0.412880] pci 0000:00:1c.1: PCI bridge to [bus 03]
1073[ 0.412884] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
1074[ 0.412888] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
1075[ 0.412894] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
1076[ 0.412918] pci_bus 0000:04: extended config space not accessible
1077[ 0.412974] pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
1078[ 0.412986] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
1079[ 0.412987] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
1080[ 0.412988] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
1081[ 0.412989] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xfeafffff window] (subtractive decode)
1082[ 0.413513] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
1083[ 0.413564] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
1084[ 0.413613] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
1085[ 0.413663] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
1086[ 0.413711] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
1087[ 0.413761] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
1088[ 0.413809] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
1089[ 0.413858] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
1090[ 0.619725] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 7f])
1091[ 0.619728] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
1092[ 0.619731] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
1093[ 0.619801] PCI host bridge to bus 0000:7f
1094[ 0.619803] pci_bus 0000:7f: root bus resource [bus 7f]
1095[ 0.619808] pci 0000:7f:00.0: [8086:2c62] type 00 class 0x060000
1096[ 0.619852] pci 0000:7f:00.1: [8086:2d01] type 00 class 0x060000
1097[ 0.619900] pci 0000:7f:02.0: [8086:2d10] type 00 class 0x060000
1098[ 0.619941] pci 0000:7f:02.1: [8086:2d11] type 00 class 0x060000
1099[ 0.619980] pci 0000:7f:02.2: [8086:2d12] type 00 class 0x060000
1100[ 0.620020] pci 0000:7f:02.3: [8086:2d13] type 00 class 0x060000
1101[ 0.620165] ACPI: EC: interrupt unblocked
1102[ 0.620176] ACPI: EC: event unblocked
1103[ 0.620183] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
1104[ 0.620184] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
1105[ 0.620252] pci 0000:00:02.0: vgaarb: setting as boot VGA device
1106[ 0.620252] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
1107[ 0.620252] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
1108[ 0.620252] pci 0000:01:00.0: vgaarb: bridge control possible
1109[ 0.620252] pci 0000:00:02.0: vgaarb: no bridge control possible
1110[ 0.620252] vgaarb: loaded
1111[ 0.620252] pps_core: LinuxPPS API ver. 1 registered
1112[ 0.620252] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
1113[ 0.620252] PTP clock support registered
1114[ 0.620252] EDAC MC: Ver: 3.0.0
1115[ 0.620252] PCI: Using ACPI for IRQ routing
1116[ 0.625361] PCI: pci_cache_line_size set to 64 bytes
1117[ 0.625422] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
1118[ 0.625423] e820: reserve RAM buffer [mem 0x9b63f000-0x9bffffff]
1119[ 0.625424] e820: reserve RAM buffer [mem 0x9b800000-0x9bffffff]
1120[ 0.625538] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
1121[ 0.625538] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
1122[ 0.628233] clocksource: Switched to clocksource tsc-early
1123[ 0.638650] VFS: Disk quotas dquot_6.6.0
1124[ 0.638674] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
1125[ 0.638803] AppArmor: AppArmor Filesystem Enabled
1126[ 0.638827] pnp: PnP ACPI init
1127[ 0.639137] system 00:00: [io 0x0680-0x069f] has been reserved
1128[ 0.639139] system 00:00: [io 0x0800-0x080f] has been reserved
1129[ 0.639140] system 00:00: [io 0xffff] has been reserved
1130[ 0.639141] system 00:00: [io 0xffff] has been reserved
1131[ 0.639143] system 00:00: [io 0x0400-0x047f] has been reserved
1132[ 0.639144] system 00:00: [io 0x0500-0x057f] has been reserved
1133[ 0.639145] system 00:00: [io 0x164e-0x164f] has been reserved
1134[ 0.639146] system 00:00: [io 0x0380-0x038e] has been reserved
1135[ 0.639153] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
1136[ 0.639180] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
1137[ 0.639208] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
1138[ 0.639240] pnp 00:03: Plug and Play ACPI device, IDs SYN1e1d SYN1e00 SYN0002 PNP0f13 (active)
1139[ 0.639513] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
1140[ 0.639515] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
1141[ 0.639516] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
1142[ 0.639517] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
1143[ 0.639519] system 00:04: [mem 0xf0000000-0xf1ffffff] has been reserved
1144[ 0.639520] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
1145[ 0.639521] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
1146[ 0.639523] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
1147[ 0.639524] system 00:04: [mem 0xc4600000-0xc4600fff] has been reserved
1148[ 0.639528] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
1149[ 0.846333] pnp: PnP ACPI: found 5 devices
1150[ 0.852188] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
1151[ 0.852194] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
1152[ 0.852197] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
1153[ 0.852235] pci 0000:01:00.0: BAR 6: assigned [mem 0xc4440000-0xc445ffff pref]
1154[ 0.852238] pci 0000:00:01.0: PCI bridge to [bus 01]
1155[ 0.852240] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
1156[ 0.852242] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
1157[ 0.852244] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
1158[ 0.852247] pci 0000:00:1c.0: PCI bridge to [bus 02]
1159[ 0.852250] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
1160[ 0.852255] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
1161[ 0.852259] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
1162[ 0.852267] pci 0000:03:00.0: BAR 6: assigned [mem 0xc2400000-0xc240ffff pref]
1163[ 0.852268] pci 0000:00:1c.1: PCI bridge to [bus 03]
1164[ 0.852271] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
1165[ 0.852276] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
1166[ 0.852280] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
1167[ 0.852287] pci 0000:00:1e.0: PCI bridge to [bus 04]
1168[ 0.852302] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
1169[ 0.852303] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
1170[ 0.852304] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
1171[ 0.852305] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfeafffff window]
1172[ 0.852307] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
1173[ 0.852308] pci_bus 0000:01: resource 1 [mem 0xc4400000-0xc44fffff]
1174[ 0.852309] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
1175[ 0.852310] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
1176[ 0.852311] pci_bus 0000:02: resource 1 [mem 0xc3400000-0xc43fffff]
1177[ 0.852312] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc13fffff 64bit pref]
1178[ 0.852314] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
1179[ 0.852315] pci_bus 0000:03: resource 1 [mem 0xc2400000-0xc33fffff]
1180[ 0.852316] pci_bus 0000:03: resource 2 [mem 0xc1400000-0xc23fffff 64bit pref]
1181[ 0.852317] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7 window]
1182[ 0.852318] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff window]
1183[ 0.852319] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
1184[ 0.852320] pci_bus 0000:04: resource 7 [mem 0xa0000000-0xfeafffff window]
1185[ 0.852405] NET: Registered protocol family 2
1186[ 0.852580] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
1187[ 0.852622] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
1188[ 0.852799] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
1189[ 0.853042] TCP: Hash tables configured (established 65536 bind 65536)
1190[ 0.853102] UDP hash table entries: 4096 (order: 5, 131072 bytes)
1191[ 0.853141] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
1192[ 0.853240] NET: Registered protocol family 1
1193[ 0.853246] NET: Registered protocol family 44
1194[ 0.853276] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
1195[ 0.870060] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x6c1 took 16376 usecs
1196[ 0.890051] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x6c1 took 19504 usecs
1197[ 0.890082] pci 0000:01:00.1: Linked as a consumer to 0000:01:00.0
1198[ 0.890109] PCI: CLS 64 bytes, default 64
1199[ 0.890206] Unpacking initramfs...
1200[ 1.714102] Freeing initrd memory: 51252K
1201[ 1.716510] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
1202[ 1.716512] software IO TLB: mapped [mem 0x9763f000-0x9b63f000] (64MB)
1203[ 1.717297] Initialise system trusted keyrings
1204[ 1.717309] Key type blacklist registered
1205[ 1.717351] workingset: timestamp_bits=40 max_order=21 bucket_order=0
1206[ 1.718590] zbud: loaded
1207[ 1.718837] pstore: using deflate compression
1208[ 1.914705] Key type asymmetric registered
1209[ 1.914707] Asymmetric key parser 'x509' registered
1210[ 1.914720] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
1211[ 1.914758] io scheduler noop registered (default)
1212[ 1.914759] io scheduler deadline registered
1213[ 1.914796] io scheduler cfq registered
1214[ 1.914797] io scheduler mq-deadline registered
1215[ 1.915380] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
1216[ 1.915394] intel_idle: MWAIT substates: 0x1120
1217[ 1.915395] intel_idle: v0.4.1 model 0x25
1218[ 1.915557] intel_idle: lapic_timer_reliable_states 0xffffffff
1219[ 1.915856] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
1220[ 1.916331] Linux agpgart interface v0.103
1221[ 1.916442] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
1222[ 1.916443] AMD IOMMUv2 functionality not available on this system
1223[ 1.916739] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
1224[ 1.938231] serio: i8042 KBD port at 0x60,0x64 irq 1
1225[ 1.938240] serio: i8042 AUX port at 0x60,0x64 irq 12
1226[ 1.938595] mousedev: PS/2 mouse device common for all mice
1227[ 1.939292] rtc_cmos 00:01: RTC can wake from S4
1228[ 1.939506] rtc_cmos 00:01: registered as rtc0
1229[ 1.939538] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
1230[ 1.940983] ledtrig-cpu: registered to indicate activity on CPUs
1231[ 1.941409] NET: Registered protocol family 10
1232[ 1.951622] Segment Routing with IPv6
1233[ 1.951680] mip6: Mobile IPv6
1234[ 1.951685] NET: Registered protocol family 17
1235[ 1.951776] mpls_gso: MPLS GSO support
1236[ 1.952369] microcode: sig=0x20655, pf=0x10, revision=0x7
1237[ 1.952554] microcode: Microcode Update Driver: v2.2.
1238[ 1.952575] sched_clock: Marking stable (1949856150, 2683873)->(2081803749, -129263726)
1239[ 1.952906] registered taskstats version 1
1240[ 1.952906] Loading compiled-in X.509 certificates
1241[ 1.967137] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
1242[ 2.014216] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
1243[ 2.014252] Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def'
1244[ 2.014287] zswap: loaded using pool lzo/zbud
1245[ 2.014489] AppArmor: AppArmor sha1 policy hashing enabled
1246[ 2.015009] rtc_cmos 00:01: setting system clock to 2019-09-14 18:02:06 UTC (1568484126)
1247[ 2.017345] Freeing unused kernel image memory: 1580K
1248[ 2.047278] Write protecting the kernel read-only data: 16384k
1249[ 2.048275] Freeing unused kernel image memory: 2028K
1250[ 2.048691] Freeing unused kernel image memory: 912K
1251[ 2.067137] x86/mm: Checked W+X mappings: passed, no W+X pages found.
1252[ 2.067140] x86/mm: Checking user space page tables
1253[ 2.085249] x86/mm: Checked W+X mappings: passed, no W+X pages found.
1254[ 2.085252] Run /init as init process
1255[ 2.268900] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
1256[ 2.268918] ACPI: Power Button [PWRB]
1257[ 2.268996] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
1258[ 2.269006] ACPI: Lid Switch [LID0]
1259[ 2.269098] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
1260[ 2.269120] ACPI: Power Button [PWRF]
1261[ 2.311941] [Firmware Bug]: Invalid critical threshold (0)
1262[ 2.320561] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
1263[ 2.323067] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
1264[ 2.323132] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20180810/utaddress-213)
1265[ 2.323139] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
1266[ 2.323143] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.P0P3.PEGP.GPIO) (20180810/utaddress-213)
1267[ 2.323147] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
1268[ 2.323152] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000054F (\SGGP) (20180810/utaddress-213)
1269[ 2.323156] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
1270[ 2.323157] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.P0P3.PEGP.GPIO) (20180810/utaddress-213)
1271[ 2.323161] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
1272[ 2.323166] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000054F (\SGGP) (20180810/utaddress-213)
1273[ 2.323170] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
1274[ 2.323171] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.P0P3.PEGP.GPIO) (20180810/utaddress-213)
1275[ 2.323175] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
1276[ 2.323179] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000054F (\SGGP) (20180810/utaddress-213)
1277[ 2.323184] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
1278[ 2.323184] lpc_ich: Resource conflict(s) found affecting gpio_ich
1279[ 2.325889] thermal LNXTHERM:00: registered as thermal_zone0
1280[ 2.325891] ACPI: Thermal Zone [TZ01] (80 C)
1281[ 2.332439] SCSI subsystem initialized
1282[ 2.351667] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
1283[ 2.352250] ACPI: bus type USB registered
1284[ 2.352281] usbcore: registered new interface driver usbfs
1285[ 2.352293] usbcore: registered new interface driver hub
1286[ 2.353785] usbcore: registered new device driver usb
1287[ 2.361640] libata version 3.00 loaded.
1288[ 2.361672] libphy: r8169: probed
1289[ 2.362354] r8169 0000:03:00.0 eth0: RTL8168d/8111d, 60:eb:69:22:e9:64, XID 283000c0, IRQ 24
1290[ 2.362359] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
1291[ 2.371178] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
1292[ 2.374649] ehci-pci: EHCI PCI platform driver
1293[ 2.374888] ehci-pci 0000:00:1a.0: EHCI Host Controller
1294[ 2.374900] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
1295[ 2.374920] ehci-pci 0000:00:1a.0: debug port 2
1296[ 2.378863] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
1297[ 2.378887] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc450a000
1298[ 2.385008] ahci 0000:00:1f.2: version 3.0
1299[ 2.385314] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
1300[ 2.385318] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst
1301[ 2.391221] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
1302[ 2.391295] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
1303[ 2.391297] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
1304[ 2.391299] usb usb1: Product: EHCI Host Controller
1305[ 2.391301] usb usb1: Manufacturer: Linux 4.19.0-5-amd64 ehci_hcd
1306[ 2.391302] usb usb1: SerialNumber: 0000:00:1a.0
1307[ 2.391498] hub 1-0:1.0: USB hub found
1308[ 2.391507] hub 1-0:1.0: 3 ports detected
1309[ 2.391920] ehci-pci 0000:00:1d.0: EHCI Host Controller
1310[ 2.391928] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
1311[ 2.391943] ehci-pci 0000:00:1d.0: debug port 2
1312[ 2.395869] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
1313[ 2.395888] ehci-pci 0000:00:1d.0: irq 21, io mem 0xc4509000
1314[ 2.408157] scsi host0: ahci
1315[ 2.408362] scsi host1: ahci
1316[ 2.408526] scsi host2: ahci
1317[ 2.408815] scsi host3: ahci
1318[ 2.409113] scsi host4: ahci
1319[ 2.409274] scsi host5: ahci
1320[ 2.409370] ata1: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508100 irq 25
1321[ 2.409373] ata2: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508180 irq 25
1322[ 2.409375] ata3: DUMMY
1323[ 2.409376] ata4: DUMMY
1324[ 2.409379] ata5: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508300 irq 25
1325[ 2.409381] ata6: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508380 irq 25
1326[ 2.411969] r8169 0000:03:00.0 enp3s0: renamed from eth0
1327[ 2.411999] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
1328[ 2.412102] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
1329[ 2.412105] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
1330[ 2.412107] usb usb2: Product: EHCI Host Controller
1331[ 2.412109] usb usb2: Manufacturer: Linux 4.19.0-5-amd64 ehci_hcd
1332[ 2.412110] usb usb2: SerialNumber: 0000:00:1d.0
1333[ 2.412303] hub 2-0:1.0: USB hub found
1334[ 2.412314] hub 2-0:1.0: 3 ports detected
1335[ 2.464300] [drm] radeon kernel modesetting enabled.
1336[ 2.464335] vga_switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
1337[ 2.464403] ATPX version 1, functions 0x0000002f
1338[ 2.464552] radeon 0000:01:00.0: enabling device (0000 -> 0003)
1339[ 2.464783] [drm] initializing kernel modesetting (REDWOOD 0x1002:0x68C1 0x103C:0x144B 0x00).
1340[ 2.508396] pci 0000:00:00.0: Intel HD Graphics Chipset
1341[ 2.508419] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
1342[ 2.508956] pci 0000:00:00.0: detected 32768K stolen memory
1343[ 2.509038] [drm] Replacing VGA console driver
1344[ 2.509547] Console: switching to colour dummy device 80x25
1345[ 2.545857] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
1346[ 2.545858] [drm] Driver supports precise vblank timestamp query.
1347[ 2.564581] vga_switcheroo: enabled
1348[ 2.582413] radeon 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
1349[ 2.582417] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
1350[ 2.582485] ATOM BIOS: MADISON
1351[ 2.582612] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
1352[ 2.582614] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
1353[ 2.582620] [drm] Detected VRAM RAM=1024M, BAR=256M
1354[ 2.582621] [drm] RAM width 128bits DDR
1355[ 2.582678] [TTM] Zone kernel: Available graphics memory: 2949234 kiB
1356[ 2.582679] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
1357[ 2.582679] [TTM] Initializing pool allocator
1358[ 2.582685] [TTM] Initializing DMA pool allocator
1359[ 2.582711] [drm] radeon: 1024M of VRAM memory ready
1360[ 2.582712] [drm] radeon: 1024M of GTT memory ready.
1361[ 2.582722] [drm] Loading REDWOOD Microcode
1362[ 2.582761] radeon 0000:01:00.0: firmware: direct-loading firmware radeon/REDWOOD_pfp.bin
1363[ 2.582781] radeon 0000:01:00.0: firmware: direct-loading firmware radeon/REDWOOD_me.bin
1364[ 2.582795] radeon 0000:01:00.0: firmware: direct-loading firmware radeon/REDWOOD_rlc.bin
1365[ 2.582816] radeon 0000:01:00.0: firmware: direct-loading firmware radeon/REDWOOD_smc.bin
1366[ 2.582820] [drm] Internal thermal controller without fan control
1367[ 2.588464] [drm] radeon: dpm initialized
1368[ 2.588549] radeon 0000:01:00.0: firmware: direct-loading firmware radeon/CYPRESS_uvd.bin
1369[ 2.588585] [drm] GART: num cpu pages 262144, num gpu pages 262144
1370[ 2.595418] [drm] PCIE GART of 1024M enabled (table at 0x000000000014C000).
1371[ 2.595587] radeon 0000:01:00.0: WB enabled
1372[ 2.595592] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0x(____ptrval____)
1373[ 2.595595] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0x(____ptrval____)
1374[ 2.596301] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0x(____ptrval____)
1375[ 2.596309] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
1376[ 2.596310] [drm] Driver supports precise vblank timestamp query.
1377[ 2.596312] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
1378[ 2.596392] radeon 0000:01:00.0: radeon: using MSI.
1379[ 2.596437] [drm] radeon: irq initialized.
1380[ 2.607910] [drm] RC6 disabled, disabling runtime PM support
1381[ 2.613551] [drm] ring test on 0 succeeded in 2 usecs
1382[ 2.613566] [drm] ring test on 3 succeeded in 7 usecs
1383[ 2.721484] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
1384[ 2.721672] ata6: SATA link down (SStatus 0 SControl 300)
1385[ 2.722573] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
1386[ 2.722605] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
1387[ 2.723565] ata5.00: ATA-8: ST9500420AS, 0006HPM1, max UDMA/100
1388[ 2.723569] ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32), AA
1389[ 2.724760] ata5.00: configured for UDMA/100
1390[ 2.727271] usb 1-1: new high-speed USB device number 2 using ehci-pci
1391[ 2.729154] ata1.00: ATA-10: KINGSTON SA400S37240G, S1Z40102, max UDMA/133
1392[ 2.729158] ata1.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
1393[ 2.740734] ata2.00: ATAPI: hp CDDVDW TS-L633N, 0300, max UDMA/100
1394[ 2.741050] ata1.00: configured for UDMA/133
1395[ 2.747270] usb 2-1: new high-speed USB device number 2 using ehci-pci
1396[ 2.752868] scsi 0:0:0:0: Direct-Access ATA KINGSTON SA400S3 0102 PQ: 0 ANSI: 5
1397[ 2.760504] ata2.00: configured for UDMA/100
1398[ 2.774623] scsi 1:0:0:0: CD-ROM hp CDDVDW TS-L633N 0300 PQ: 0 ANSI: 5
1399[ 2.789955] tsc: Refined TSC clocksource calibration: 2393.995 MHz
1400[ 2.789962] [drm] ring test on 5 succeeded in 2 usecs
1401[ 2.789968] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22820eead9b, max_idle_ns: 440795267068 ns
1402[ 2.789975] [drm] UVD initialized successfully.
1403[ 2.790023] clocksource: Switched to clocksource tsc
1404[ 2.790298] [drm] ib test on ring 0 succeeded in 0 usecs
1405[ 2.790437] [drm] ib test on ring 3 succeeded in 0 usecs
1406[ 2.883558] usb 1-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
1407[ 2.883560] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
1408[ 2.883874] hub 1-1:1.0: USB hub found
1409[ 2.883933] hub 1-1:1.0: 6 ports detected
1410[ 2.903588] usb 2-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
1411[ 2.903590] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
1412[ 2.903881] hub 2-1:1.0: USB hub found
1413[ 2.903934] hub 2-1:1.0: 8 ports detected
1414[ 2.957429] scsi 4:0:0:0: Direct-Access ATA ST9500420AS HPM1 PQ: 0 ANSI: 5
1415[ 2.966159] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
1416[ 2.966166] sd 0:0:0:0: [sda] Write Protect is off
1417[ 2.966168] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
1418[ 2.966175] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
1419[ 2.966398] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
1420[ 2.966403] sd 4:0:0:0: [sdb] Write Protect is off
1421[ 2.966404] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
1422[ 2.966412] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
1423[ 2.969930] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
1424[ 2.970428] sd 0:0:0:0: [sda] Attached SCSI disk
1425[ 3.008901] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
1426[ 3.008903] cdrom: Uniform CD-ROM driver Revision: 3.20
1427[ 3.009137] sr 1:0:0:0: Attached scsi CD-ROM sr0
1428[ 3.171263] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
1429[ 3.191297] usb 2-1.5: new high-speed USB device number 3 using ehci-pci
1430[ 3.243354] sdb: sdb1 sdb3
1431[ 3.244091] sd 4:0:0:0: [sdb] Attached SCSI disk
1432[ 3.245268] random: fast init done
1433[ 3.292339] usb 1-1.2: New USB device found, idVendor=17ef, idProduct=608b, bcdDevice= 1.10
1434[ 3.292344] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
1435[ 3.292346] usb 1-1.2: Product: Lenovo 300 Wireless Compact Mouse
1436[ 3.292348] usb 1-1.2: Manufacturer: Lenovo 300 Wireless Compact Mouse
1437[ 3.299775] hidraw: raw HID events driver (C) Jiri Kosina
1438[ 3.309968] usbcore: registered new interface driver usbhid
1439[ 3.309969] usbhid: USB HID core driver
1440[ 3.313833] input: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input6
1441[ 3.313920] input: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input7
1442[ 3.313983] input: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input8
1443[ 3.321361] usb 2-1.5: New USB device found, idVendor=5986, idProduct=0198, bcdDevice= 0.03
1444[ 3.321364] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
1445[ 3.321367] usb 2-1.5: Product: HP Webcam
1446[ 3.321370] usb 2-1.5: Manufacturer: Vimicro Corp.
1447[ 3.371273] usb 1-1.5: new high-speed USB device number 4 using ehci-pci
1448[ 3.371347] input: Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:608B.0001/input/input9
1449[ 3.371529] hid-generic 0003:17EF:608B.0001: input,hiddev0,hidraw0: USB HID v1.11 Mouse [Lenovo 300 Wireless Compact Mouse Lenovo 300 Wireless Compact Mouse] on usb-0000:00:1a.0-1.2/input0
1450[ 3.455521] [drm] ib test on ring 5 succeeded
1451[ 3.493522] usb 1-1.5: New USB device found, idVendor=0bda, idProduct=0159, bcdDevice=58.88
1452[ 3.493526] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
1453[ 3.493529] usb 1-1.5: Product: USB2.0-CRW
1454[ 3.493531] usb 1-1.5: Manufacturer: Generic
1455[ 3.493533] usb 1-1.5: SerialNumber: 20071114173400000
1456[ 3.504622] usbcore: registered new interface driver usb-storage
1457[ 3.506226] usbcore: registered new interface driver uas
1458[ 3.507407] ums-realtek 1-1.5:1.0: USB Mass Storage device detected
1459[ 3.519273] [drm] radeon atom DIG backlight initialized
1460[ 3.519275] [drm] Radeon Display Connectors
1461[ 3.519277] [drm] Connector 0:
1462[ 3.519278] [drm] LVDS-2
1463[ 3.519279] [drm] DDC: 0x6560 0x6560 0x6564 0x6564 0x6568 0x6568 0x656c 0x656c
1464[ 3.519279] [drm] Encoders:
1465[ 3.519280] [drm] LCD1: INTERNAL_UNIPHY
1466[ 3.519281] [drm] Connector 1:
1467[ 3.519281] [drm] HDMI-A-1
1468[ 3.519282] [drm] HPD1
1469[ 3.519283] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
1470[ 3.519283] [drm] Encoders:
1471[ 3.519284] [drm] DFP1: INTERNAL_UNIPHY1
1472[ 3.519284] [drm] Connector 2:
1473[ 3.519285] [drm] VGA-2
1474[ 3.519286] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
1475[ 3.519286] [drm] Encoders:
1476[ 3.519287] [drm] CRT1: INTERNAL_KLDSCP_DAC1
1477[ 3.520321] scsi host6: usb-storage 1-1.5:1.0
1478[ 3.520510] usbcore: registered new interface driver ums-realtek
1479[ 3.524990] psmouse serio1: synaptics: queried max coordinates: x [..5672], y [..4550]
1480[ 3.666475] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xe40000/0x5a0400/0x0, board id: 0, fw id: 631163
1481[ 3.757234] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
1482[ 3.776969] [drm] fb mappable at 0xA034D000
1483[ 3.776971] [drm] vram apper at 0xA0000000
1484[ 3.776972] [drm] size 8294400
1485[ 3.776973] [drm] fb depth is 24
1486[ 3.776974] [drm] pitch is 7680
1487[ 3.817751] Console: switching to colour frame buffer device 240x67
1488[ 3.827405] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
1489[ 3.843605] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
1490[ 3.844000] [drm] Initialized i915 1.6.0 20180719 for 0000:00:02.0 on minor 1
1491[ 3.844891] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
1492[ 3.850906] acpi device:01: registered as cooling_device4
1493[ 3.851035] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
1494[ 3.851219] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
1495[ 3.856437] acpi device:14: registered as cooling_device5
1496[ 3.856488] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:10/LNXVIDEO:02/input/input12
1497[ 3.868580] fbcon: inteldrmfb (fb1) is primary device
1498[ 3.868581] fbcon: Remapping primary device, fb1, to tty 1-63
1499[ 4.546094] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
1500[ 5.758000] i915 0000:00:02.0: fb1: inteldrmfb frame buffer device
1501[ 15.896272] usb 1-1.5: USB disconnect, device number 4
1502[ 15.911295] sd 6:0:0:0: [sdc] Attached SCSI removable disk
1503[ 16.047209] raid6: sse2x1 gen() 3245 MB/s
1504[ 16.115211] raid6: sse2x1 xor() 2286 MB/s
1505[ 16.183206] raid6: sse2x2 gen() 3524 MB/s
1506[ 16.251208] raid6: sse2x2 xor() 2709 MB/s
1507[ 16.319214] raid6: sse2x4 gen() 3952 MB/s
1508[ 16.387206] raid6: sse2x4 xor() 2959 MB/s
1509[ 16.387209] raid6: using algorithm sse2x4 gen() 3952 MB/s
1510[ 16.387210] raid6: .... xor() 2959 MB/s, rmw enabled
1511[ 16.387211] raid6: using ssse3x2 recovery algorithm
1512[ 16.388300] xor: measuring software checksum speed
1513[ 16.427193] prefetch64-sse: 11005.000 MB/sec
1514[ 16.467192] generic_sse: 9683.000 MB/sec
1515[ 16.467194] xor: using function: prefetch64-sse (11005.000 MB/sec)
1516[ 16.468036] async_tx: api initialized (async)
1517[ 16.920935] random: plymouthd: uninitialized urandom read (8 bytes read)
1518[ 16.921085] random: plymouthd: uninitialized urandom read (8 bytes read)
1519[ 17.092909] Btrfs loaded, crc32c=crc32c-intel
1520[ 17.712160] cryptd: max_cpu_qlen set to 1000
1521[ 17.865328] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
1522[ 18.078295] systemd[1]: Inserted module 'autofs4'
1523[ 18.099016] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
1524[ 18.115530] systemd[1]: Detected architecture x86-64.
1525[ 18.118410] systemd[1]: Set hostname to <pq9-pc>.
1526[ 18.281275] random: systemd: uninitialized urandom read (16 bytes read)
1527[ 18.282561] random: systemd: uninitialized urandom read (16 bytes read)
1528[ 18.284042] systemd[1]: Created slice system-tor.slice.
1529[ 18.284099] random: systemd: uninitialized urandom read (16 bytes read)
1530[ 18.284352] systemd[1]: Created slice User and Session Slice.
1531[ 18.284519] systemd[1]: Listening on udev Kernel Socket.
1532[ 18.284550] systemd[1]: Reached target Remote File Systems.
1533[ 18.284748] systemd[1]: Listening on Journal Audit Socket.
1534[ 18.285070] systemd[1]: Created slice system-systemd\x2dfsck.slice.
1535[ 18.285210] systemd[1]: Listening on fsck to fsckd communication Socket.
1536[ 18.321549] EXT4-fs (sda5): re-mounted. Opts: discard
1537[ 18.326762] lp: driver loaded but no devices found
1538[ 18.334813] ppdev: user-space parallel port driver
1539[ 18.518712] systemd-journald[269]: Received request to flush runtime journal from PID 1
1540[ 18.545630] hp_accel: hardware type DV7 found
1541[ 18.545750] i801_smbus 0000:00:1f.3: BIOS is accessing SMBus registers
1542[ 18.545751] i801_smbus 0000:00:1f.3: Driver SMBus register access inhibited
1543[ 18.546398] lis3lv02d: 8 bits sensor found
1544[ 18.580999] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
1545[ 18.585912] ACPI: AC Adapter [ACAD] (on-line)
1546[ 18.592909] iTCO_vendor_support: vendor-support=0
1547[ 18.597068] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input13
1548[ 18.597334] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
1549[ 18.597411] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
1550[ 18.597540] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
1551[ 18.625506] sd 0:0:0:0: Attached scsi generic sg0 type 0
1552[ 18.625572] sr 1:0:0:0: Attached scsi generic sg1 type 5
1553[ 18.625631] sd 4:0:0:0: Attached scsi generic sg2 type 0
1554[ 18.656336] hp_wmi: query 0xd returned error 0x5
1555[ 18.656401] input: HP WMI hotkeys as /devices/virtual/input/input14
1556[ 18.684193] input: PC Speaker as /devices/platform/pcspkr/input/input15
1557[ 18.687400] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
1558[ 18.718761] media: Linux media interface: v0.10
1559[ 18.773487] battery: ACPI: Battery Slot [BAT0] (battery absent)
1560[ 18.808838] videodev: Linux video capture interface: v2.00
1561[ 18.810428] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
1562[ 18.810807] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
1563[ 18.903834] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
1564[ 18.927094] snd_hda_codec_idt hdaudioC0D0: autoconfig for 92HD81B1X5: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:speaker
1565[ 18.927098] snd_hda_codec_idt hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
1566[ 18.927100] snd_hda_codec_idt hdaudioC0D0: hp_outs=1 (0xb/0x0/0x0/0x0/0x0)
1567[ 18.927102] snd_hda_codec_idt hdaudioC0D0: mono: mono_out=0x0
1568[ 18.927103] snd_hda_codec_idt hdaudioC0D0: inputs:
1569[ 18.927105] snd_hda_codec_idt hdaudioC0D0: Internal Mic=0x11
1570[ 18.927107] snd_hda_codec_idt hdaudioC0D0: Mic=0xa
1571[ 18.961644] uvcvideo: Found UVC 1.00 device HP Webcam (5986:0198)
1572[ 18.965820] uvcvideo 2-1.5:1.0: Entity type for entity Processing 2 was not initialized!
1573[ 18.965826] uvcvideo 2-1.5:1.0: Entity type for entity Camera 1 was not initialized!
1574[ 18.965828] uvcvideo 2-1.5:1.0: Entity type for entity Extension 4 was not initialized!
1575[ 18.966262] input: HP Webcam: HP Webcam as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input18
1576[ 18.966363] usbcore: registered new interface driver uvcvideo
1577[ 18.966365] USB Video Class driver (1.1.1)
1578[ 19.012081] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
1579[ 19.012357] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
1580[ 19.012444] input: HDA Intel MID Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input20
1581[ 19.101204] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
1582[ 19.167217] mei mei::55213584-9a29-4916-badf-0fb7ed682aeb:01: Could not read FW version
1583[ 19.167224] mei mei::55213584-9a29-4916-badf-0fb7ed682aeb:01: FW version command failed -5
1584[ 19.221164] ath: phy0: Enable LNA combining
1585[ 19.223725] ath: phy0: ASPM enabled: 0x43
1586[ 19.223728] ath: EEPROM regdomain: 0x60
1587[ 19.223729] ath: EEPROM indicates we should expect a direct regpair map
1588[ 19.223731] ath: Country alpha2 being used: 00
1589[ 19.223732] ath: Regpair used: 0x60
1590[ 19.232692] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
1591[ 19.233080] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffa01e41810000, irq=16
1592[ 19.236649] ath9k 0000:02:00.0 wlo1: renamed from wlan0
1593[ 19.281000] fuse init (API version 7.27)
1594[ 19.306069] random: crng init done
1595[ 19.306073] random: 5 urandom warning(s) missed due to ratelimiting
1596[ 19.333466] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: discard
1597[ 19.385908] audit: type=1400 audit(1568484143.867:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=446 comm="apparmor_parser"
1598[ 19.385913] audit: type=1400 audit(1568484143.867:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=446 comm="apparmor_parser"
1599[ 19.387151] audit: type=1400 audit(1568484143.867:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="system_tor" pid=445 comm="apparmor_parser"
1600[ 19.388450] audit: type=1400 audit(1568484143.871:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=444 comm="apparmor_parser"
1601[ 19.393046] audit: type=1400 audit(1568484143.875:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=451 comm="apparmor_parser"
1602[ 19.396550] audit: type=1400 audit(1568484143.879:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=450 comm="apparmor_parser"
1603[ 19.396555] audit: type=1400 audit(1568484143.879:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=450 comm="apparmor_parser"
1604[ 19.396558] audit: type=1400 audit(1568484143.879:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=450 comm="apparmor_parser"
1605[ 19.399595] audit: type=1400 audit(1568484143.883:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session" pid=452 comm="apparmor_parser"
1606[ 19.399603] audit: type=1400 audit(1568484143.883:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session//chromium" pid=452 comm="apparmor_parser"
1607[ 19.470367] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
1608[ 20.083107] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
1609[ 20.085234] r8169 0000:03:00.0: firmware: direct-loading firmware rtl_nic/rtl8168d-2.fw
1610[ 20.085700] RTL8211B Gigabit Ethernet r8169-300:00: attached PHY driver [RTL8211B Gigabit Ethernet] (mii_bus:phy_addr=r8169-300:00, irq=IGNORE)
1611[ 20.231359] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
1612[ 20.238399] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
1613[ 24.372305] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
1614[ 24.432413] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
1615[ 25.536539] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
1616[ 26.669825] wlo1: authenticate with d8:a7:56:3f:b5:8b
1617[ 26.684007] wlo1: send auth to d8:a7:56:3f:b5:8b (try 1/3)
1618[ 26.685746] wlo1: authenticated
1619[ 26.687291] wlo1: associate with d8:a7:56:3f:b5:8b (try 1/3)
1620[ 26.691046] wlo1: RX AssocResp from d8:a7:56:3f:b5:8b (capab=0x411 status=0 aid=3)
1621[ 26.691216] wlo1: associated
1622[ 26.735234] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
1623[ 304.942157] perf: interrupt took too long (2503 > 2500), lowering kernel.perf_event_max_sample_rate to 79750
1624[ 423.228572] perf: interrupt took too long (3130 > 3128), lowering kernel.perf_event_max_sample_rate to 63750
1625[ 884.685245] perf: interrupt took too long (3913 > 3912), lowering kernel.perf_event_max_sample_rate to 51000
1626[ 1677.901812] perf: interrupt took too long (4894 > 4891), lowering kernel.perf_event_max_sample_rate to 40750