Coder Social home page Coder Social logo

Need testers about huawei-wmi HOT 36 CLOSED

aymanbagabas avatar aymanbagabas commented on May 26, 2024
Need testers

from huawei-wmi.

Comments (36)

Designator-Ol avatar Designator-Ol commented on May 26, 2024 1

Hi there, thanks for your work with the function keys. they work perfectly now on my MBX (w/o pro).
Do you plan on fixing the sound issue on the MBX too ? As all the others I only have sound on the front left speaker but not on the right one. If I should test something for you let me know ! Your help is higly appreciated !

Thanks an advance.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024 1

I just tested it today with a Gnome installation instead of i3 and it turned out that all keys are working now like it was expected. Means, that also the keys for the display light and the display key (F8) are working. It was an issue with i3 I think. Thanks for the great job! What about the file you attached here to this issue. Will you merge it to the original source and update the Readme?

I'm glad that worked for you. I already merged the changes to the master branch. Also I have created dkms packages for Fedora, Debian based, and Arch pkgbuild that you can use instead of compiling the module yourself. This module along with the micmute led have been merged to the next linux kernel release.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

The DSDT from my MBX is located at https://github.com/cytrinox/matebook-hotkeys/tree/master/acpi

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox I updated the dev branch to support the MBX. Could you please verify that all of the keys work as expected?

Also, we need to figure out what function triggers the micmute led if there is any, so try to test if any of the following does trigger that led. Use acpi_call

echo "\WMI0.WM05 0 0 0x01" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x02" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x03" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x04" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x05" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x06" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x07" | sudo tee /proc/acpi/call
echo "\WMI0.WM05 0 0 0x08" | sudo tee /proc/acpi/call

If any of these worked, what is the behavor? Does it toggle the led? Or does one turns it on and another turns it off?

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox Micmute works after remapping because of this bug 11227. It is related to X being limited to 255 keycodes and the micmute keycode exceeds that so it is not supported in the lower level. Wayland does not have this limitation, however, I had the same issue under Wayland.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox Can you provide me a dump your acpi tables? Since you updated the BIOS there gotta be some changes.

# acpidump > acpidump.out

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

None of the \WMI0.WM05 calls results in a MICMUTE-LED change.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

Just tested the dev-branch. Each hotkey works as expected. Micmute works well after adding the udev hwdb and is correctly reported by xev as XF86AudioMicMute.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

Looking at the DSDT table, WMI0.M242 seems to be the one responsible with changing micmute LED.

            If ((STAT == One))
            {
                \_SB.PCI0.LPCB.EC0.SPIN (Zero, 0x04, Zero)
            }
            Else
            {
                \_SB.PCI0.LPCB.EC0.SPIN (Zero, 0x04, One)
            }

Try if these change the LED. On the MBXP, pin 0x04 is the micmute LED.

echo "\_SB.PCI0.LPCB.EC0.SPIN 0 0x04 0" | sudo tee /proc/acpi/call
echo "\_SB.PCI0.LPCB.EC0.SPIN 0 0x04 1" | sudo tee /proc/acpi/call

Method WMI0.WM05 is the one associated with the GUID. It calls WMI0.WMIG then this calls WGLN which calls multiple methods including WMI0.MF24 which then calls WMI0.M242. So if the above acpi_call calls trigger the LED, there should be a way to control the LED through a WMI call. Maybe the WMI0.INIT has something to do with it? Could you try the calls from the previous comment after calling WMI0.INIT with 0 argument. You could see the output of each acpi_call using cat /proc/acpi/call.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

_SB.PCI0.LPCB.EC0.SPIN is correct, this call (0|1) disable/enable the LED.
What is the correct line for WMI0.INIT? Do you mean zero arguments or one argument with 0 value?

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

One with a 0 value argument.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

No change, each call is responded with "0x0called"

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox try fiddling around with WMI0.M242 and figure out what are the values that turn the led on/off. This way we could trace back the call and find out what are the correct inputs for WMI0.WM05 that triggers the led. I'm using acpiexec to emulate the ACPI tables in user-space which has its limitations.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

M242 called with 0 0 0 enables the LED, but I've not found a combination which disable it.
I don't know how to read the DSL, but the definition of M242 looks like it checks a memory region or a internal field? If this is true, M242 may just toogle the LED depending on data not provided by arguments, but by a internal value.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

M242 only looks for the first argument. Try using 0xFFFF, 0x1 ,0x10000. It depends on the variable 'STAT' in that method which is only mentioned 4 times in the DSDT file. The argument has a size of 32 bit and it will look like 0xXXXXXXXX in hex.

While the LED is on, try if the previous WM05 calls change anything. Maybe do the same while it's off.

What is the value of

echo "\_SB.PMIM" | sudo tee /proc/acpi/call`
sudo cat /proc/acpi/call

@cytrinox we could try a brute-force approach by feeding arbitrary arguments to the method associated with the GUID and we know it has to be WMI0.WM05. Looking at your bmf.mof file, it seems that the method takes one uint32 argument.
void MyFn1([in] uint32 Indx) We could try to execute the method with arguments from 0x0 to 0xFFFFFFFF. 4294967295 calls to the method. The number is huge and it will definitely take time. Let's make that our last option. Now, let's try to narrow our search down and see if we get anything.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024
root@antares:~/Huawei-WMI# echo "\_SB.PMIM" | sudo tee /proc/acpi/call
\_SB.PMIM
root@antares:~/Huawei-WMI# cat /proc/acpi/call
0x7ff6a000root@antares:~/Huawei-WMI#

No luck with 0xFFFF, 0x1, 0x10000 or the WM05 calls.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox I think I'm overthinking this problem. I went with using ACPI calls to toggle the micmute LED.
I updated the dev branch with these changes. We will probably need to apply these changes to the kernel and test it out. I'll let you know once I finish with the kernel patches.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@cytrinox Could you please provide the output of these commands:

$ cat /sys/class/sound/hwC0D0/subsystem_id
$ aplay --list-devices
$ lspci -nnv

I just want to know the subsystem id of the sound card so that we can hook the micmute led with ALSA.

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024
$ cat /sys/class/sound/hwC0D0/subsystem_id
0x19e53201
 
$ aplay --list-devices
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: ALC298 Analog [ALC298 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
 
$ lspci -nnv
00:00.0 Host bridge [0600]: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers [8086:5904] (rev 02)
        Subsystem: Huawei Technologies Co., Ltd. Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers [19e5:3e02]
        Flags: bus master, fast devsel, latency 0
        Capabilities: <access denied>
lspci: Unable to load libkmod resources: error -12

00:02.0 VGA compatible controller [0300]: Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA controller])
        Subsystem: Huawei Technologies Co., Ltd. HD Graphics 620 [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 132
        Memory at a0000000 (64-bit, non-prefetchable) [size=16M]
        Memory at 90000000 (64-bit, prefetchable) [size=256M]
        I/O ports at 4000 [size=64]
        [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel driver in use: i915

00:04.0 Signal processing controller [1180]: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem [8086:1903] (rev 02)
        Subsystem: Huawei Technologies Co., Ltd. Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem [19e5:3e02]
        Flags: fast devsel, IRQ 16
        Memory at a1220000 (64-bit, non-prefetchable) [size=32K]
        Capabilities: <access denied>
        Kernel driver in use: proc_thermal

00:14.0 USB controller [0c03]: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller [8086:9d2f] (rev 21) (prog-if 30 [XHCI])
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP USB 3.0 xHCI Controller [19e5:3e02]
        Flags: bus master, medium devsel, latency 0, IRQ 129
        Memory at a1200000 (64-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: xhci_hcd

00:14.2 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Thermal subsystem [8086:9d31] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP Thermal subsystem [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 18
        Memory at a1230000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel_pch_thermal

00:15.0 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 [8086:9d60] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP Serial IO I2C Controller [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 16
        Memory at a1231000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss

00:15.1 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 [8086:9d61] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP Serial IO I2C Controller [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 17
        Memory at a1232000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss

00:16.0 Communication controller [0780]: Intel Corporation Sunrise Point-LP CSME HECI #1 [8086:9d3a] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP CSME HECI [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 124
        Memory at a1233000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: mei_me

00:1c.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #7 [8086:9d16] (rev f1) (prog-if 00 [Normal decode])
        Flags: bus master, fast devsel, latency 0, IRQ 122
        Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
        I/O behind bridge: 00003000-00003fff [size=4K]
        Memory behind bridge: a1100000-a11fffff [size=1M]
        Prefetchable memory behind bridge: None
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1d.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #9 [8086:9d18] (rev f1) (prog-if 00 [Normal decode])
        Flags: bus master, fast devsel, latency 0, IRQ 123
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
        I/O behind bridge: None
        Memory behind bridge: a1000000-a10fffff [size=1M]
        Prefetchable memory behind bridge: None
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1e.0 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO UART Controller #0 [8086:9d27] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP Serial IO UART Controller [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 20
        Memory at a1234000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss

00:1e.3 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO SPI Controller #1 [8086:9d2a] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP Serial IO SPI Controller [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 23
        Memory at a1235000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss

00:1f.0 ISA bridge [0601]: Intel Corporation Intel(R) 100 Series Chipset Family LPC Controller/eSPI Controller - 9D4E [8086:9d4e] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Intel(R) 100 Series Chipset Family LPC Controller/eSPI Controller - 9D4E [19e5:3e02]
        Flags: bus master, medium devsel, latency 0

00:1f.2 Memory controller [0580]: Intel Corporation Sunrise Point-LP PMC [8086:9d21] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP PMC [19e5:3e02]
        Flags: bus master, fast devsel, latency 0
        Memory at a122c000 (32-bit, non-prefetchable) [size=16K]

00:1f.3 Audio device [0403]: Intel Corporation Sunrise Point-LP HD Audio [8086:9d71] (rev 21) (prog-if 80)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP HD Audio [19e5:3201]
        Flags: bus master, fast devsel, latency 32, IRQ 126
        Memory at a1228000 (64-bit, non-prefetchable) [size=16K]
        Memory at a1210000 (64-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: snd_hda_intel

00:1f.4 SMBus [0c05]: Intel Corporation Sunrise Point-LP SMBus [8086:9d23] (rev 21)
        Subsystem: Huawei Technologies Co., Ltd. Sunrise Point-LP SMBus [19e5:3e02]
        Flags: medium devsel, IRQ 16
        Memory at a1236000 (64-bit, non-prefetchable) [size=256]
        I/O ports at 4040 [size=32]
        Kernel driver in use: i801_smbus

01:00.0 Non-Volatile memory controller [0108]: Lite-On Technology Corporation Device [14a4:5100] (rev 01) (prog-if 02 [NVM Express])
        Subsystem: Lite-On Technology Corporation Device [14a4:5100]
        Flags: bus master, fast devsel, latency 0, IRQ 18, NUMA node 0
        Memory at a1100000 (64-bit, non-prefetchable) [size=32K]
        I/O ports at 3000 [size=8]
        Capabilities: <access denied>
        Kernel driver in use: nvme

02:00.0 Network controller [0280]: Intel Corporation Wireless 8265 / 8275 [8086:24fd] (rev 78)
        Subsystem: Huawei Technologies Co., Ltd. Wireless 8265 / 8275 [19e5:3e02]
        Flags: bus master, fast devsel, latency 0, IRQ 131
        Memory at a1000000 (64-bit, non-prefetchable) [size=8K]
        Capabilities: <access denied>
        Kernel driver in use: iwlwifi

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

What's the current state? Is it working now also for the MatebookX? Should I test something?

Thanks for your effort!

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@janbaer Thanks for the response.

Yes, it should work for the Matebook X, it's just that I haven't updated the master branch and the documentation. Use dev branch to try it out. It would be really nice if you could try building a custom kernel with this module and patching the sound driver for the micmute led to work. You could use the patches in the dev branch and apply them using git am <patch file> to a kernel git clone.

This shows a different subsystem id (19e5:3200) from yours (19e5:3201) which is kinda interesting. I wanted these outputs so I can proceed with pushing the driver to kernel upstream. This is needed for the led to work.

Again thank you for reaching out.

from huawei-wmi.

cytrinox avatar cytrinox commented on May 26, 2024

AFAIK everything works on MBX, what is in the testing pipeline?

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

AFAIK everything works on MBX, what is in the testing pipeline?

I am almost done with submitting this to upstream. However, the only thing left is testing. Now I don't have a MBX which makes it harder for me to test. The problem is that the code has to be very well written and clean as possible. Now the method used to read input from MBX is bad and that is due to how Huawei implemented their firmware.
This would make things much cleaner by using the GUID associated with fetching the input code from keyboard. I'm interested in dmesg output on a hotkey press.

huawei-wmi-r1.zip

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

@aymanbagabas I have an MBX and I would like to help you with testing, but I'm sorry my knowledge about Linux is not so deep to compile the kernel on my own. But of course, I'm very interested to use also the fn-keys on my MBX.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@janbaer Soon this patch should be included in the linux kernel. @cytrinox is doing a great job in testing but it wouldn't hurt to test it on another machine.
You don't need to recompile the kernel you could try the patch just by itself. Download it, compile it and insmod.
huawei-wmi-r1.zip

$ unzip huawei-wmi-r1.zip -d huawei-wmi
$ cd huawei-wmi
$ make
$ sudo modprobe sparse-keymap
$ sudo insmod huawei-wmi.ko

and in a separate window run dmesg -w You should see Huawei WMI hotkeys. Test the keys and submit dmesg log.

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

Actually the make command is failing. I installed the linux-headers for my kernel before

Linux JABASOFT-MBX 4.19.6-1-MANJARO #1 SMP PREEMPT Sat Dec 1 12:21:26 UTC 2018 x86_64 GNU/Linux
make -C /lib/modules/4.19.6-1-MANJARO/build/ M=/home/jan/Downloads/huawei-wmi modules
make[1]: Entering directory '/usr/lib/modules/4.19.6-1-MANJARO/build'
  CC [M]  /home/jan/Downloads/huawei-wmi/huawei-wmi.o
/home/jan/Downloads/huawei-wmi/huawei-wmi.c: In function ‘huawei_wmi_process_key’:
/home/jan/Downloads/huawei-wmi/huawei-wmi.c:147:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
   union acpi_object *obj = (union acpi_object *)out.pointer;
   ^~~~~
/home/jan/Downloads/huawei-wmi/huawei-wmi.c:120:27: warning: unused variable ‘arg_list’ [-Wunused-variable]
   struct acpi_object_list arg_list = {
                           ^~~~~~~~
/home/jan/Downloads/huawei-wmi/huawei-wmi.c:117:15: warning: unused variable ‘handle’ [-Wunused-variable]
   acpi_handle handle;
               ^~~~~~
At top level:
/home/jan/Downloads/huawei-wmi/huawei-wmi.c:47:12: warning: ‘huawei_wmi_micmute_led_set’ defined but not used [-Wunused-function]
 static int huawei_wmi_micmute_led_set(struct led_classdev *led_cdev,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/jan/Downloads/huawei-wmi/huawei-wmi.mod.o
  LD [M]  /home/jan/Downloads/huawei-wmi/huawei-wmi.ko
make[1]: Leaving directory '/usr/lib/modules/4.19.6-1-MANJARO/build'```

Any ideas what's the reason? Thanks.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@janbaer I don't see any errors. These are warnings that you can ignore.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@janbaer Did you get it to work?

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

Yes, it worked, thanks! So this is the output:

[    0.000000] microcode: microcode updated early to revision 0x8e, date = 2018-03-24
[    0.000000] Linux version 4.19.6-1-MANJARO (builduser@development) (gcc version 8.2.1 20180831 (GCC)) #1 SMP PREEMPT Sat Dec 1 12:21:26 UTC 2018
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.19-x86_64 root=UUID=bcd63e36-7ab8-42de-b554-f9e7d10a22cd rw quiet resume=UUID=e7ed8062-f33c-4173-89f0-363eea8751c5
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000066876fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000066877000-0x0000000066877fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000066878000-0x00000000668abfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000668ac000-0x00000000668acfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000668ad000-0x0000000067b87fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067b88000-0x0000000068c87fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000068c88000-0x000000007ee9dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007ee9e000-0x000000007f09dfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007f09e000-0x000000007f88dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007f88e000-0x000000007ff7dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007fffe000-0x000000007fffefff] usable
[    0.000000] BIOS-e820: [mem 0x000000007ffff000-0x000000008cffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000271ffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.50 by HUAWEI
[    0.000000] efi:  ACPI 2.0=0x7fffd014  SMBIOS=0x7f114000  SMBIOS 3.0=0x7f112000  ESRT=0x7f110dd8  PROP=0x66873098 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: HUAWEI HUAWEI MateBook X/HUAWEI MateBook X, BIOS 1.03 05/19/2017
[    0.000000] tsc: Detected 2900.000 MHz processor
[    0.001282] tsc: Detected 2904.000 MHz TSC
[    0.001282] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001284] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001293] last_pfn = 0x272000 max_arch_pfn = 0x400000000
[    0.001297] MTRR default type: write-back
[    0.001297] MTRR fixed ranges enabled:
[    0.001298]   00000-9FFFF write-back
[    0.001299]   A0000-BFFFF uncachable
[    0.001300]   C0000-FFFFF write-protect
[    0.001301] MTRR variable ranges enabled:
[    0.001302]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.001303]   1 base 00A0000000 mask 7FE0000000 uncachable
[    0.001304]   2 base 0090000000 mask 7FF0000000 uncachable
[    0.001304]   3 base 008C000000 mask 7FFC000000 uncachable
[    0.001305]   4 base 008A000000 mask 7FFE000000 uncachable
[    0.001306]   5 base 0089000000 mask 7FFF000000 uncachable
[    0.001307]   6 base 0088800000 mask 7FFF800000 uncachable
[    0.001307]   7 disabled
[    0.001308]   8 disabled
[    0.001308]   9 disabled
[    0.002710] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.003058] last_pfn = 0x7ffff max_arch_pfn = 0x400000000
[    0.015872] esrt: Reserving ESRT space from 0x000000007f110dd8 to 0x000000007f110e38.
[    0.015880] Scanning 1 areas for low memory corruption
[    0.015883] Base memory trampoline at [(____ptrval____)] 98000 size 24576
[    0.015886] Using GB pages for direct mapping
[    0.015888] BRK [0x220001000, 0x220001fff] PGTABLE
[    0.015890] BRK [0x220002000, 0x220002fff] PGTABLE
[    0.015891] BRK [0x220003000, 0x220003fff] PGTABLE
[    0.015911] BRK [0x220004000, 0x220004fff] PGTABLE
[    0.015912] BRK [0x220005000, 0x220005fff] PGTABLE
[    0.015988] BRK [0x220006000, 0x220006fff] PGTABLE
[    0.016006] BRK [0x220007000, 0x220007fff] PGTABLE
[    0.016061] BRK [0x220008000, 0x220008fff] PGTABLE
[    0.016081] BRK [0x220009000, 0x220009fff] PGTABLE
[    0.016099] BRK [0x22000a000, 0x22000afff] PGTABLE
[    0.016129] BRK [0x22000b000, 0x22000bfff] PGTABLE
[    0.016136] Secure boot could not be determined
[    0.016137] RAMDISK: [mem 0x36e39000-0x37713fff]
[    0.016162] ACPI: Early table checksum verification disabled
[    0.016165] ACPI: RSDP 0x000000007FFFD014 000024 (v02 HUAWEI)
[    0.016169] ACPI: XSDT 0x000000007FFAC188 000104 (v01 HUAWEI KBL-ULT  00000000      01000013)
[    0.016175] ACPI: FACP 0x000000007FFDB000 00010C (v05 HUAWEI KBL-ULT  00000000 ACPI 00040000)
[    0.016180] ACPI: DSDT 0x000000007FFB0000 02738E (v02 HUAWEI KBL-ULT  00000000 ACPI 00040000)
[    0.016183] ACPI: FACS 0x000000007FF50000 000040
[    0.016186] ACPI: UEFI 0x000000007FFFC000 000236 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016188] ACPI: UEFI 0x000000007FFFB000 000042 (v01 HUAWEI KBL-ULT  00000002 ACPI 00040000)
[    0.016191] ACPI: ECDT 0x000000007FFFA000 0000C1 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016194] ACPI: SSDT 0x000000007FFF8000 00124F (v01 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016197] ACPI: MSDM 0x000000007FFF7000 000055 (v03 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016200] ACPI: SSDT 0x000000007FFF6000 000505 (v02 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016202] ACPI: SSDT 0x000000007FFF5000 000046 (v02 HUAWEI KBL-ULT  00003000 ACPI 00040000)
[    0.016205] ACPI: TPM2 0x000000007FFF4000 000034 (v03 HUAWEI KBL-ULT  00000000 ACPI 00040000)
[    0.016208] ACPI: SSDT 0x000000007FFF0000 003120 (v02 HUAWEI KBL-ULT  00003000 ACPI 00040000)
[    0.016211] ACPI: SSDT 0x000000007FFDF000 0103A4 (v02 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016213] ACPI: SSDT 0x000000007FFDE000 000864 (v02 HUAWEI KBL-ULT  00000000 ACPI 00040000)
[    0.016216] ACPI: ASPT 0x000000007FFDD000 000034 (v07 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016219] ACPI: BOOT 0x000000007FFDC000 000028 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016221] ACPI: HPET 0x000000007FFDA000 000038 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016224] ACPI: APIC 0x000000007FFD9000 0000BC (v03 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016227] ACPI: MCFG 0x000000007FFD8000 00003C (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016230] ACPI: SSDT 0x000000007FFAF000 0001BC (v02 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016233] ACPI: WSMT 0x000000007FFAE000 000028 (v01 HUAWEI KBL-ULT  00000000 ACPI 00040000)
[    0.016235] ACPI: SSDT 0x000000007FFAD000 000BC9 (v02 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016238] ACPI: DBGP 0x000000007FFAB000 000034 (v01 HUAWEI KBL-ULT  00000002 ACPI 00040000)
[    0.016241] ACPI: DBG2 0x000000007FFAA000 000054 (v00 HUAWEI KBL-ULT  00000002 ACPI 00040000)
[    0.016244] ACPI: SSDT 0x000000007FFA8000 001086 (v02 HUAWEI KBL-ULT  00001000 ACPI 00040000)
[    0.016246] ACPI: SSDT 0x000000007FFA7000 000EDE (v02 HUAWEI KBL-ULT  00003000 ACPI 00040000)
[    0.016249] ACPI: DMAR 0x000000007FFA6000 000138 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016252] ACPI: NHLT 0x000000007FFA5000 00002D (v00 HUAWEI KBL-ULT  00000002 ACPI 00040000)
[    0.016254] ACPI: FPDT 0x000000007FFA4000 000044 (v01 HUAWEI KBL-ULT  00000002 ACPI 00040000)
[    0.016257] ACPI: BGRT 0x000000007FFA3000 000038 (v01 HUAWEI KBL-ULT  00000001 ACPI 00040000)
[    0.016265] ACPI: Local APIC address 0xfee00000
[    0.016453] No NUMA configuration found
[    0.016454] Faking a node at [mem 0x0000000000000000-0x0000000271ffffff]
[    0.016458] NODE_DATA(0) allocated [mem 0x271ffc000-0x271ffffff]
[    0.016479] Zone ranges:
[    0.016480]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.016481]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.016483]   Normal   [mem 0x0000000100000000-0x0000000271ffffff]
[    0.016484]   Device   empty
[    0.016485] Movable zone start for each node
[    0.016485] Early memory node ranges
[    0.016486]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.016487]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.016487]   node   0: [mem 0x0000000000100000-0x0000000066876fff]
[    0.016488]   node   0: [mem 0x0000000066878000-0x00000000668abfff]
[    0.016489]   node   0: [mem 0x00000000668ad000-0x0000000067b87fff]
[    0.016489]   node   0: [mem 0x0000000068c88000-0x000000007ee9dfff]
[    0.016490]   node   0: [mem 0x000000007fffe000-0x000000007fffefff]
[    0.016490]   node   0: [mem 0x0000000100000000-0x0000000271ffffff]
[    0.016615] Reserved but unavailable: 8903 pages
[    0.016616] Initmem setup node 0 [mem 0x0000000000001000-0x0000000271ffffff]
[    0.016617] On node 0 totalpages: 2030905
[    0.016619]   DMA zone: 64 pages used for memmap
[    0.016619]   DMA zone: 22 pages reserved
[    0.016620]   DMA zone: 3996 pages, LIFO batch:0
[    0.016699]   DMA32 zone: 7991 pages used for memmap
[    0.016700]   DMA32 zone: 511389 pages, LIFO batch:63
[    0.028141]   Normal zone: 23680 pages used for memmap
[    0.028142]   Normal zone: 1515520 pages, LIFO batch:63
[    0.058172] Reserving Intel graphics memory at [mem 0x89000000-0x8cffffff]
[    0.058796] ACPI: PM-Timer IO Port: 0x1808
[    0.058798] ACPI: Local APIC address 0xfee00000
[    0.058804] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.058805] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.058805] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.058806] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.058806] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.058807] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.058807] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.058808] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.058835] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.058837] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.058838] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.058839] ACPI: IRQ0 used by override.
[    0.058840] ACPI: IRQ9 used by override.
[    0.058842] Using ACPI (MADT) for SMP configuration information
[    0.058844] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.058854] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.058873] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.058875] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.058876] PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.058877] PM: Registered nosave memory: [mem 0x66877000-0x66877fff]
[    0.058879] PM: Registered nosave memory: [mem 0x668ac000-0x668acfff]
[    0.058880] PM: Registered nosave memory: [mem 0x67b88000-0x68c87fff]
[    0.058881] PM: Registered nosave memory: [mem 0x7ee9e000-0x7f09dfff]
[    0.058882] PM: Registered nosave memory: [mem 0x7f09e000-0x7f88dfff]
[    0.058882] PM: Registered nosave memory: [mem 0x7f88e000-0x7ff7dfff]
[    0.058883] PM: Registered nosave memory: [mem 0x7ff7e000-0x7fffdfff]
[    0.058884] PM: Registered nosave memory: [mem 0x7ffff000-0x8cffffff]
[    0.058885] PM: Registered nosave memory: [mem 0x8d000000-0xdfffffff]
[    0.058885] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.058886] PM: Registered nosave memory: [mem 0xf0000000-0xfcffffff]
[    0.058886] PM: Registered nosave memory: [mem 0xfd000000-0xfe7fffff]
[    0.058887] PM: Registered nosave memory: [mem 0xfe800000-0xfebfffff]
[    0.058887] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.058888] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.058888] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.058889] PM: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
[    0.058889] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.058890] PM: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
[    0.058890] PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
[    0.058891] PM: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
[    0.058891] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.058892] PM: Registered nosave memory: [mem 0xfee01000-0xff9fffff]
[    0.058892] PM: Registered nosave memory: [mem 0xffa00000-0xffffffff]
[    0.058895] [mem 0x8d000000-0xdfffffff] available for PCI devices
[    0.058896] Booting paravirtualized kernel on bare hardware
[    0.058898] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.160507] random: get_random_bytes called from start_kernel+0x95/0x53f with crng_init=0
[    0.160513] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:4 nr_node_ids:1
[    0.160699] percpu: Embedded 46 pages/cpu @(____ptrval____) s151552 r8192 d28672 u524288
[    0.160707] pcpu-alloc: s151552 r8192 d28672 u524288 alloc=1*2097152
[    0.160708] pcpu-alloc: [0] 0 1 2 3 
[    0.160727] Built 1 zonelists, mobility grouping on.  Total pages: 1999148
[    0.160728] Policy zone: Normal
[    0.160730] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19-x86_64 root=UUID=bcd63e36-7ab8-42de-b554-f9e7d10a22cd rw quiet resume=UUID=e7ed8062-f33c-4173-89f0-363eea8751c5
[    0.165744] Calgary: detecting Calgary via BIOS EBDA area
[    0.165746] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.189824] Memory: 7840480K/8123620K available (12300K kernel code, 1383K rwdata, 3692K rodata, 1536K init, 3804K bss, 283140K reserved, 0K cma-reserved)
[    0.189931] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.189937] Kernel/User page tables isolation: enabled
[    0.197580] ftrace: allocating 36072 entries in 141 pages
[    0.212186] rcu: Preemptible hierarchical RCU implementation.
[    0.212187] rcu: 	CONFIG_RCU_FANOUT set to non-default value of 32.
[    0.212187] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.212188] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
[    0.212189] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.212190] 	Tasks RCU enabled.
[    0.212190] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.213780] NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
[    0.213976] rcu: 	Offload RCU callbacks from CPUs: (none).
[    0.214094] Console: colour dummy device 80x25
[    0.214100] console [tty0] enabled
[    0.214115] ACPI: Core revision 20180810
[    0.214525] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.214555] hpet clockevent registered
[    0.214594] APIC: Switch to symmetric I/O mode setup
[    0.214597] DMAR: Host address width 39
[    0.214598] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.214603] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.214604] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.214607] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.214608] DMAR: RMRR base: 0x0000007f78a000 end: 0x0000007f7a9fff
[    0.214609] DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
[    0.214610] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.214611] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[    0.214611] DMAR: ANDD device: 8 name: \_SB.PCI0.SPI1
[    0.214612] DMAR: ANDD device: 9 name: \_SB.PCI0.UA00
[    0.214613] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.214614] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.214615] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.216303] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.216304] x2apic enabled
[    0.216317] Switched APIC routing to cluster x2apic.
[    0.220379] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.234565] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29dc05e54fc, max_idle_ns: 440795291716 ns
[    0.234578] Calibrating delay loop (skipped), value calculated using timer frequency.. 5810.00 BogoMIPS (lpj=9680000)
[    0.234580] pid_max: default: 32768 minimum: 301
[    0.236262] Security Framework initialized
[    0.236264] Yama: becoming mindful.
[    0.236270] AppArmor: AppArmor disabled by boot time parameter
[    0.237475] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.238089] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.238122] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.238140] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.238361] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.238361] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.238367] mce: CPU supports 8 MCE banks
[    0.238377] CPU0: Thermal monitoring enabled (TM1)
[    0.238392] process: using mwait in idle threads
[    0.238395] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.238396] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.238397] Spectre V2 : Mitigation: Full generic retpoline
[    0.238398] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.238398] Spectre V2 : Spectre v2 mitigation: Enabling Indirect Branch Prediction Barrier
[    0.238399] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.238400] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.242260] Freeing SMP alternatives memory: 28K
[    0.248594] TSC deadline timer enabled
[    0.248598] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[    0.267935] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.268056] ... version:                4
[    0.268057] ... bit width:              48
[    0.268057] ... generic registers:      4
[    0.268058] ... value mask:             0000ffffffffffff
[    0.268059] ... max period:             00007fffffffffff
[    0.268059] ... fixed-purpose events:   3
[    0.268060] ... event mask:             000000070000000f
[    0.274586] rcu: Hierarchical SRCU implementation.
[    0.298102] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.304612] smp: Bringing up secondary CPUs ...
[    0.344628] x86: Booting SMP configuration:
[    0.344634] .... node  #0, CPUs:      #1 #2 #3
[    0.425523] smp: Brought up 1 node, 4 CPUs
[    0.425523] smpboot: Max logical packages: 1
[    0.425523] smpboot: Total of 4 processors activated (23241.00 BogoMIPS)
[    0.428204] devtmpfs: initialized
[    0.428204] x86/mm: Memory block size: 128MB
[    0.428520] PM: Registering ACPI NVS region [mem 0x66877000-0x66877fff] (4096 bytes)
[    0.428520] PM: Registering ACPI NVS region [mem 0x67b88000-0x68c87fff] (17825792 bytes)
[    0.428520] PM: Registering ACPI NVS region [mem 0x7f88e000-0x7ff7dfff] (7274496 bytes)
[    0.428520] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.428520] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.428520] pinctrl core: initialized pinctrl subsystem
[    0.428520] RTC time:  9:19:18, date: 12/09/18
[    0.428520] NET: Registered protocol family 16
[    0.428520] audit: initializing netlink subsys (disabled)
[    0.428520] audit: type=2000 audit(1544347158.216:1): state=initialized audit_enabled=0 res=1
[    0.428520] cpuidle: using governor ladder
[    0.428520] cpuidle: using governor menu
[    0.428520] Simple Boot Flag at 0x44 set to 0x80
[    0.428520] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.428520] ACPI: bus type PCI registered
[    0.428520] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.428520] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.428520] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.428520] PCI: Using configuration type 1 for base access
[    0.431255] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.431255] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.431317] ACPI: Added _OSI(Module Device)
[    0.431318] ACPI: Added _OSI(Processor Device)
[    0.431318] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.431319] ACPI: Added _OSI(Processor Aggregator Device)
[    0.431320] ACPI: Added _OSI(Linux-Dell-Video)
[    0.431321] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.431324] ACPI: EC: EC started
[    0.431325] ACPI: EC: interrupt blocked
[    0.431341] ACPI: \: Used as first EC
[    0.431342] ACPI: \: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.431344] ACPI: \: Used as boot ECDT EC to handle transactions
[    0.465997] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.474218] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.593440] ACPI: Dynamic OEM Table Load:
[    0.593454] ACPI: SSDT 0xFFFF92FD68779800 0006F6 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.594072] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.595115] ACPI: Dynamic OEM Table Load:
[    0.595123] ACPI: SSDT 0xFFFF92FD680CF400 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.595640] ACPI: Dynamic OEM Table Load:
[    0.595646] ACPI: SSDT 0xFFFF92FD680CB600 000115 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
[    0.596009] ACPI: Dynamic OEM Table Load:
[    0.596015] ACPI: SSDT 0xFFFF92FD680CBA00 0001A4 (v02 PmRef  HwpLvt   00003000 INTL 20160527)
[    0.596767] ACPI: Dynamic OEM Table Load:
[    0.596779] ACPI: SSDT 0xFFFF92FD6877A800 00065C (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.597591] ACPI: Dynamic OEM Table Load:
[    0.597597] ACPI: SSDT 0xFFFF92FD680CB800 000197 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.598078] ACPI: Dynamic OEM Table Load:
[    0.598084] ACPI: SSDT 0xFFFF92FD680CB200 00018A (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.599714] ACPI: Interpreter enabled
[    0.599763] ACPI: (supports S0 S3 S4 S5)
[    0.599767] ACPI: Using IOAPIC for interrupt routing
[    0.599807] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.600400] ACPI: Enabled 6 GPEs in block 00 to 7F
[    0.614312] ACPI: Power Resource [WRST] (on)
[    0.614788] ACPI: Power Resource [WRST] (on)
[    0.615253] ACPI: Power Resource [WRST] (on)
[    0.615713] ACPI: Power Resource [WRST] (on)
[    0.616172] ACPI: Power Resource [WRST] (on)
[    0.616637] ACPI: Power Resource [WRST] (on)
[    0.617180] ACPI: Power Resource [WRST] (on)
[    0.617641] ACPI: Power Resource [WRST] (on)
[    0.618673] ACPI: Power Resource [WRST] (on)
[    0.619134] ACPI: Power Resource [WRST] (on)
[    0.619594] ACPI: Power Resource [WRST] (on)
[    0.620062] ACPI: Power Resource [WRST] (on)
[    0.620503] ACPI: Power Resource [WRST] (on)
[    0.620936] ACPI: Power Resource [WRST] (on)
[    0.621374] ACPI: Power Resource [WRST] (on)
[    0.621811] ACPI: Power Resource [WRST] (on)
[    0.622243] ACPI: Power Resource [WRST] (on)
[    0.622675] ACPI: Power Resource [WRST] (on)
[    0.623107] ACPI: Power Resource [WRST] (on)
[    0.623539] ACPI: Power Resource [WRST] (on)
[    0.634270] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.634275] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.637203] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[    0.637204] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.639373] PCI host bridge to bus 0000:00
[    0.639375] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.639376] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.639378] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.639379] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.639380] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.639381] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.639382] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.639383] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.639384] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.639386] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.639387] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.639388] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.639389] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.639390] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.639391] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.639392] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.639394] pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
[    0.639395] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.639396] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.639405] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000
[    0.640263] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000
[    0.640276] pci 0000:00:02.0: reg 0x10: [mem 0xa0000000-0xa0ffffff 64bit]
[    0.640282] pci 0000:00:02.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.640287] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.640302] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.641158] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.641173] pci 0000:00:04.0: reg 0x10: [mem 0xa1220000-0xa1227fff 64bit]
[    0.642122] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[    0.642144] pci 0000:00:14.0: reg 0x10: [mem 0xa1200000-0xa120ffff 64bit]
[    0.642212] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.643148] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[    0.643170] pci 0000:00:14.2: reg 0x10: [mem 0xa1230000-0xa1230fff 64bit]
[    0.644150] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[    0.644413] pci 0000:00:15.0: reg 0x10: [mem 0xa1231000-0xa1231fff 64bit]
[    0.646163] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000
[    0.646427] pci 0000:00:15.1: reg 0x10: [mem 0xa1232000-0xa1232fff 64bit]
[    0.648127] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
[    0.648154] pci 0000:00:16.0: reg 0x10: [mem 0xa1233000-0xa1233fff 64bit]
[    0.648230] pci 0000:00:16.0: PME# supported from D3hot
[    0.649123] pci 0000:00:1c.0: [8086:9d16] type 01 class 0x060400
[    0.649195] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.650126] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400
[    0.650206] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.651222] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000
[    0.651470] pci 0000:00:1e.0: reg 0x10: [mem 0xa1234000-0xa1234fff 64bit]
[    0.653242] pci 0000:00:1e.3: [8086:9d2a] type 00 class 0x118000
[    0.653506] pci 0000:00:1e.3: reg 0x10: [mem 0xa1235000-0xa1235fff 64bit]
[    0.655199] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100
[    0.656163] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[    0.656180] pci 0000:00:1f.2: reg 0x10: [mem 0xa122c000-0xa122ffff]
[    0.657086] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380
[    0.657115] pci 0000:00:1f.3: reg 0x10: [mem 0xa1228000-0xa122bfff 64bit]
[    0.657148] pci 0000:00:1f.3: reg 0x20: [mem 0xa1210000-0xa121ffff 64bit]
[    0.657198] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.658107] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[    0.658169] pci 0000:00:1f.4: reg 0x10: [mem 0xa1236000-0xa12360ff 64bit]
[    0.658240] pci 0000:00:1f.4: reg 0x20: [io  0x4040-0x405f]
[    0.659229] pci 0000:01:00.0: [14a4:5100] type 00 class 0x010802
[    0.659260] pci 0000:01:00.0: reg 0x10: [mem 0xa1100000-0xa1107fff 64bit]
[    0.659269] pci 0000:01:00.0: reg 0x18: [io  0x3000-0x3007]
[    0.667922] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.667925] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.667928] pci 0000:00:1c.0:   bridge window [mem 0xa1100000-0xa11fffff]
[    0.668326] pci 0000:02:00.0: [8086:24fd] type 00 class 0x028000
[    0.668425] pci 0000:02:00.0: reg 0x10: [mem 0xa1000000-0xa1001fff 64bit]
[    0.668716] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.668880] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:1d.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)
[    0.669387] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.669392] pci 0000:00:1d.0:   bridge window [mem 0xa1000000-0xa10fffff]
[    0.679398] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.679398] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.681683] platform MSFT0101:00: failed to claim resource 1: [mem 0xfed40000-0xfed40fff]
[    0.681685] acpi MSFT0101:00: platform device creation failed: -16
[    0.681971] ACPI: EC: interrupt unblocked
[    0.681989] ACPI: EC: event unblocked
[    0.682003] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.682005] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.682081] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.682081] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.682081] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.682081] vgaarb: loaded
[    0.682081] ACPI: bus type USB registered
[    0.682081] usbcore: registered new interface driver usbfs
[    0.682081] usbcore: registered new interface driver hub
[    0.682081] usbcore: registered new device driver usb
[    0.682081] pps_core: LinuxPPS API ver. 1 registered
[    0.682081] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.682081] PTP clock support registered
[    0.682081] EDAC MC: Ver: 3.0.0
[    0.682081] Registered efivars operations
[    0.721678] PCI: Using ACPI for IRQ routing
[    0.751055] PCI: pci_cache_line_size set to 64 bytes
[    0.751625] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.751626] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.751627] e820: reserve RAM buffer [mem 0x66877000-0x67ffffff]
[    0.751628] e820: reserve RAM buffer [mem 0x668ac000-0x67ffffff]
[    0.751629] e820: reserve RAM buffer [mem 0x67b88000-0x67ffffff]
[    0.751630] e820: reserve RAM buffer [mem 0x7ee9e000-0x7fffffff]
[    0.751631] e820: reserve RAM buffer [mem 0x7ffff000-0x7fffffff]
[    0.751632] e820: reserve RAM buffer [mem 0x272000000-0x273ffffff]
[    0.751729] NetLabel: Initializing
[    0.751730] NetLabel:  domain hash size = 128
[    0.751730] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.751742] NetLabel:  unlabeled traffic allowed by default
[    0.751746] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.751746] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.753745] clocksource: Switched to clocksource tsc-early
[    0.761072] VFS: Disk quotas dquot_6.6.0
[    0.761104] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.761173] pnp: PnP ACPI init
[    0.761427] system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.761428] system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.761430] system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.761431] system 00:00: [mem 0xfe000000-0xfe01ffff] has been reserved
[    0.761433] system 00:00: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.761434] system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.761435] system 00:00: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.761440] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.761775] system 00:01: [io  0x2000-0x20fe] has been reserved
[    0.761778] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.761928] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.761930] system 00:02: [io  0xffff] has been reserved
[    0.761932] system 00:02: [io  0xffff] has been reserved
[    0.761934] system 00:02: [io  0xffff] has been reserved
[    0.761935] system 00:02: [io  0x1800-0x18fe] has been reserved
[    0.761936] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.761939] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.762041] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.762080] system 00:04: [io  0x1854-0x1857] has been reserved
[    0.762083] system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.771548] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.772892] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.773560] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.773562] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.773563] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.773564] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
[    0.773566] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.773567] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.773569] system 00:07: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.773571] system 00:07: [mem 0xff000000-0xffffffff] could not be reserved
[    0.773572] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.773573] system 00:07: [mem 0x8d000000-0x8d01ffff] has been reserved
[    0.773577] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.774494] pnp: PnP ACPI: found 8 devices
[    0.780151] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.780171] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.780174] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.780177] pci 0000:00:1c.0:   bridge window [mem 0xa1100000-0xa11fffff]
[    0.780183] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.780188] pci 0000:00:1d.0:   bridge window [mem 0xa1000000-0xa10fffff]
[    0.780195] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.780197] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.780198] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.780199] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.780201] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.780202] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.780203] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.780204] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.780206] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.780207] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.780208] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.780209] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.780210] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.780212] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.780213] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.780214] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.780215] pci_bus 0000:00: resource 20 [mem 0x8d000000-0xdfffffff window]
[    0.780216] pci_bus 0000:00: resource 21 [mem 0xfd000000-0xfe7fffff window]
[    0.780218] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.780219] pci_bus 0000:01: resource 1 [mem 0xa1100000-0xa11fffff]
[    0.780220] pci_bus 0000:02: resource 1 [mem 0xa1000000-0xa10fffff]
[    0.780405] NET: Registered protocol family 2
[    0.780513] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
[    0.780540] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.780638] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.780794] TCP: Hash tables configured (established 65536 bind 65536)
[    0.780822] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.780844] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.780893] NET: Registered protocol family 1
[    0.780898] NET: Registered protocol family 44
[    0.780907] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.782965] PCI: CLS 64 bytes, default 64
[    0.782994] Unpacking initramfs...
[    0.884982] Freeing initrd memory: 9068K
[    0.885022] DMAR: ACPI device "device:76" under DMAR at fed91000 as 00:15.0
[    0.885026] DMAR: ACPI device "device:77" under DMAR at fed91000 as 00:15.1
[    0.885029] DMAR: ACPI device "device:78" under DMAR at fed91000 as 00:1e.3
[    0.885031] DMAR: ACPI device "device:79" under DMAR at fed91000 as 00:1e.0
[    0.885052] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.885054] software IO TLB: mapped [mem 0x7a99a000-0x7e99a000] (64MB)
[    0.885083] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc05e54fc, max_idle_ns: 440795291716 ns
[    0.885120] clocksource: Switched to clocksource tsc
[    0.885220] Scanning for low memory corruption every 60 seconds
[    0.885754] Initialise system trusted keyrings
[    0.885763] Key type blacklist registered
[    0.885816] workingset: timestamp_bits=41 max_order=21 bucket_order=0
[    0.886831] zbud: loaded
[    0.887112] pstore: using zstd compression
[    0.888192] Key type asymmetric registered
[    0.888194] Asymmetric key parser 'x509' registered
[    0.888215] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.888245] io scheduler noop registered
[    0.888246] io scheduler deadline registered
[    0.888270] io scheduler cfq registered (default)
[    0.888270] io scheduler mq-deadline registered
[    0.888271] io scheduler kyber registered
[    0.888290] io scheduler bfq registered
[    0.888307] io scheduler bfq-sq registered
[    0.888308] BFQ I/O-scheduler: v9 (with cgroups support)
[    0.888309] blkcg_policy_register: BLKCG_MAX_POLS too small
[    0.888991] pcieport 0000:00:1c.0: AER enabled with IRQ 122
[    0.889011] pcieport 0000:00:1d.0: AER enabled with IRQ 123
[    0.889021] pcieport 0000:00:1c.0: Signaling PME with IRQ 122
[    0.889032] pcieport 0000:00:1d.0: Signaling PME with IRQ 123
[    0.889052] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.889143] efifb: probing for efifb
[    0.889159] efifb: showing boot graphics
[    0.890518] efifb: framebuffer at 0x90000000, using 12160k, total 12160k
[    0.890520] efifb: mode is 2160x1440x32, linelength=8640, pages=1
[    0.890520] efifb: scrolling: redraw
[    0.890521] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.890562] fbcon: Deferring console take-over
[    0.890563] fb0: EFI VGA frame buffer device
[    0.890570] intel_idle: MWAIT substates: 0x11142120
[    0.890571] intel_idle: v0.4.1 model 0x8E
[    0.890755] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.890852] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.890859] ACPI: Lid Switch [LID]
[    0.890890] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.890899] ACPI: Power Button [PWRB]
[    0.890929] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.890941] ACPI: Power Button [PWRF]
[    0.892340] thermal LNXTHERM:00: registered as thermal_zone0
[    0.892341] ACPI: Thermal Zone [THRM] (41 C)
[    0.892552] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.893575] nvme nvme0: pci function 0000:01:00.0
[    0.893609] usbcore: registered new interface driver usbserial_generic
[    0.893615] usbserial: USB Serial support registered for generic
[    0.893636] rtc_cmos 00:03: RTC can wake from S4
[    0.894106] rtc_cmos 00:03: registered as rtc0
[    0.894117] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.894171] intel_pstate: Intel P-state driver initializing
[    0.894374] intel_pstate: HWP enabled
[    0.894400] ledtrig-cpu: registered to indicate activity on CPUs
[    0.894437] intel_pmc_core:  initialized
[    0.894614] NET: Registered protocol family 10
[    0.897602] Segment Routing with IPv6
[    0.897619] NET: Registered protocol family 17
[    0.897843] RAS: Correctable Errors collector initialized.
[    0.897875] microcode: sig=0x806e9, pf=0x80, revision=0x8e
[    0.897930] microcode: Microcode Update Driver: v2.2.
[    0.897938] sched_clock: Marking stable (900764036, -2837956)->(906338390, -8412310)
[    0.898133] registered taskstats version 1
[    0.898140] Loading compiled-in X.509 certificates
[    0.899681] Loaded X.509 cert 'Build time autogenerated kernel key: feb0a7e979343029b50914b06b5d7d5c8f5abf36'
[    0.899696] zswap: loaded using pool lzo/zbud
[    0.901762] Key type big_key registered
[    0.902589]   Magic number: 14:935:322
[    0.902604] tty tty47: hash matches
[    0.902771] rtc_cmos 00:03: setting system clock to 2018-12-09 09:19:19 UTC (1544347159)
[    1.111792]  nvme0n1: p1 p2 p3
[    1.332750] Freeing unused decrypted memory: 2040K
[    1.477224] Freeing unused kernel image memory: 1536K
[    1.477276] Write protecting the kernel read-only data: 18432k
[    1.478203] Freeing unused kernel image memory: 2008K
[    1.478355] Freeing unused kernel image memory: 404K
[    1.483651] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.483652] x86/mm: Checking user space page tables
[    1.488795] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.488797] Run /init as init process
[    1.604513] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.604514] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.607396] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.616677] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.616685] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.617761] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
[    1.617766] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.617981] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    1.617983] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.617984] usb usb1: Product: xHCI Host Controller
[    1.617986] usb usb1: Manufacturer: Linux 4.19.6-1-MANJARO xhci-hcd
[    1.617987] usb usb1: SerialNumber: 0000:00:14.0
[    1.618194] hub 1-0:1.0: USB hub found
[    1.618210] hub 1-0:1.0: 12 ports detected
[    1.619591] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.619594] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.619598] xhci_hcd 0000:00:14.0: Host supports USB 3.0  SuperSpeed
[    1.619635] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
[    1.619636] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.619638] usb usb2: Product: xHCI Host Controller
[    1.619639] usb usb2: Manufacturer: Linux 4.19.6-1-MANJARO xhci-hcd
[    1.619640] usb usb2: SerialNumber: 0000:00:14.0
[    1.619737] hub 2-0:1.0: USB hub found
[    1.619748] hub 2-0:1.0: 6 ports detected
[    1.621829] usb: port power management may be unreliable
[    1.632556] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.634954] PM: Image not found (code -22)
[    1.656360] fbcon: Taking over console
[    1.656496] Console: switching to colour frame buffer device 270x90
[    1.717760] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    1.733302] random: fast init done
[    1.873500] systemd[1]: systemd 239 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)
[    1.888485] systemd[1]: Detected architecture x86-64.
[    1.893032] systemd[1]: Set hostname to <JABASOFT-MBX>.
[    1.947966] usb 1-5: new full-speed USB device number 2 using xhci_hcd
[    2.012319] random: systemd: uninitialized urandom read (16 bytes read)
[    2.012450] systemd[1]: Listening on udev Control Socket.
[    2.012583] random: systemd: uninitialized urandom read (16 bytes read)
[    2.012651] systemd[1]: Listening on Journal Audit Socket.
[    2.012664] random: systemd: uninitialized urandom read (16 bytes read)
[    2.012673] systemd[1]: Reached target Remote File Systems.
[    2.014306] systemd[1]: Created slice system-getty.slice.
[    2.014711] systemd[1]: Created slice User and Session Slice.
[    2.014844] systemd[1]: Listening on Journal Socket.
[    2.015934] systemd[1]: Mounting Huge Pages File System...
[    2.039432] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[    2.041094] audit: type=1130 audit(1544347160.633:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.044219] audit: type=1130 audit(1544347160.636:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.052176] audit: type=1130 audit(1544347160.646:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.056184] audit: type=1130 audit(1544347160.649:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-lvmetad comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.057670] audit: type=1130 audit(1544347160.649:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.064461] audit: type=1130 audit(1544347160.656:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.071148] audit: type=1130 audit(1544347160.663:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.076196] systemd-journald[220]: Received request to flush runtime journal from PID 1
[    2.089260] audit: type=1130 audit(1544347160.683:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.092227] usb 1-5: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[    2.092230] usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.092662] audit: type=1130 audit(1544347160.686:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.214592] usb 1-7: new high-speed USB device number 3 using xhci_hcd
[    2.222516] battery: ACPI: Battery Slot [BAT0] (battery present)
[    2.228870] ACPI: AC Adapter [AC0] (on-line)
[    2.266142] hidraw: raw HID events driver (C) Jiri Kosina
[    2.268345] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    2.272682] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    2.278954] Linux agpgart interface v0.103
[    2.281208] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    2.283232] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    2.294548] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    2.295873] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    2.314449] Adding 9227464k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:9227464k SSFS
[    2.323482] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    2.333730] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    2.334048] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    2.342898] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    2.342900] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    2.342900] RAPL PMU: hw unit of domain package 2^-14 Joules
[    2.342901] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    2.342902] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    2.342902] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    2.348899] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.362276] i2c_hid i2c-ELAN2201:00: i2c-ELAN2201:00 supply vdd not found, using dummy regulator
[    2.362293] i2c_hid i2c-ELAN2201:00: Linked as a consumer to regulator.0
[    2.362295] i2c_hid i2c-ELAN2201:00: i2c-ELAN2201:00 supply vddl not found, using dummy regulator
[    2.367055] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.379129] cryptd: max_cpu_qlen set to 1000
[    2.383542] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    2.383892] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    2.384238] intel-lpss 0000:00:1e.3: enabling device (0000 -> 0002)
[    2.384531] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    2.388294] usb 1-7: New USB device found, idVendor=13d3, idProduct=5691, bcdDevice=17.06
[    2.388296] usb 1-7: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.388298] usb 1-7: Product: Huawei Web Camera - HD
[    2.388299] usb 1-7: Manufacturer: Azurewave
[    2.388300] usb 1-7: SerialNumber: 0x0001
[    2.399610] AVX2 version of gcm_enc/dec engaged.
[    2.399612] AES CTR mode by8 optimization enabled
[    2.424255] Intel(R) Wireless WiFi driver for Linux
[    2.424256] Copyright(c) 2003- 2015 Intel Corporation
[    2.432756] iwlwifi 0000:02:00.0: loaded firmware version 36.7596afd4.0 op_mode iwlmvm
[    2.521270] VFIO - User Level meta-driver version: 0.3
[    2.559079] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 8275, REV=0x230
[    2.620225] iwlwifi 0000:02:00.0: base HW address: 7c:11:cb:4b:ed:29
[    2.624926] random: crng init done
[    2.624927] random: 7 urandom warning(s) missed due to ratelimiting
[    2.637035] Bluetooth: Core ver 2.22
[    2.637051] NET: Registered protocol family 31
[    2.637052] Bluetooth: HCI device and connection manager initialized
[    2.637057] Bluetooth: HCI socket layer initialized
[    2.637060] Bluetooth: L2CAP socket layer initialized
[    2.637065] Bluetooth: SCO socket layer initialized
[    2.639382] iTCO_vendor_support: vendor-support=0
[    2.641748] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    2.641884] iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    2.641998] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.681528] checking generic (90000000 be0000) vs hw (90000000 10000000)
[    2.681530] fb: switching to inteldrmfb from EFI VGA
[    2.681586] Console: switching to colour dummy device 80x25
[    2.683227] input: ELAN2201:00 04F3:3056 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-ELAN2201:00/0018:04F3:3056.0001/input/input5
[    2.683323] input: ELAN2201:00 04F3:3056 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-ELAN2201:00/0018:04F3:3056.0001/input/input6
[    2.683376] hid-generic 0018:04F3:3056.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN2201:00 04F3:3056] on i2c-ELAN2201:00
[    2.684664] [drm] Replacing VGA console driver
[    2.685967] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.685969] [drm] Driver supports precise vblank timestamp query.
[    2.686699] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.690505] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    2.709270] intel_rapl: Found RAPL domain package
[    2.709273] intel_rapl: Found RAPL domain core
[    2.709274] intel_rapl: Found RAPL domain uncore
[    2.709275] intel_rapl: Found RAPL domain dram
[    2.712527] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    2.712844] thermal thermal_zone10: failed to read out thermal zone (-61)
[    2.722031] usbcore: registered new interface driver btusb
[    2.728180] Bluetooth: hci0: Firmware revision 0.1 build 29 week 38 2018
[    2.746144] input: ELAN2201:00 04F3:3056 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-ELAN2201:00/0018:04F3:3056.0001/input/input8
[    2.746309] hid-multitouch 0018:04F3:3056.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN2201:00 04F3:3056] on i2c-ELAN2201:00
[    2.754376] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[    2.765075] media: Linux media interface: v0.10
[    2.774047] mousedev: PS/2 mouse device common for all mice
[    2.788236] dw-apb-uart.2: ttyS0 at MMIO 0xa1234000 (irq = 20, base_baud = 115200) is a 16550A
[    2.801948] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.801950] Bluetooth: BNEP filters: protocol multicast
[    2.801953] Bluetooth: BNEP socket layer initialized
[    2.808424] videodev: Linux video capture interface: v2.00
[    2.843257] uvcvideo: Found UVC 1.00 device Huawei Web Camera - HD (13d3:5691)
[    2.852286] uvcvideo: Failed to initialize entity for entity 6
[    2.852288] uvcvideo: Failed to register entites (-22).
[    2.852351] input: Huawei Web Camera - HD: Huawei  as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input9
[    2.852415] usbcore: registered new interface driver uvcvideo
[    2.852416] USB Video Class driver (1.1.1)
[    2.919138] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    2.972965] [drm] Initialized i915 1.6.0 20180719 for 0000:00:02.0 on minor 0
[    2.974518] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.974873] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[    2.975056] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.086964] fbcon: inteldrmfb (fb0) is primary device
[    3.144402] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    3.163818] aufs 4.19-20181119
[    3.385645] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    3.385692] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    3.397034] Bridge firewalling registered
[    3.448534] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    3.503572] Initializing XFRM netlink socket
[    3.540805] IPv6: ADDRCONF(NETDEV_UP): br-5a41a46561e5: link is not ready
[    3.571359] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[    3.661371] br-5a41a46561e5: port 1(veth95fdf6d) entered blocking state
[    3.661408] br-5a41a46561e5: port 1(veth95fdf6d) entered disabled state
[    3.661814] device veth95fdf6d entered promiscuous mode
[    3.662996] IPv6: ADDRCONF(NETDEV_UP): veth95fdf6d: link is not ready
[    3.663008] br-5a41a46561e5: port 1(veth95fdf6d) entered blocking state
[    3.663013] br-5a41a46561e5: port 1(veth95fdf6d) entered forwarding state
[    3.663302] IPv6: ADDRCONF(NETDEV_CHANGE): br-5a41a46561e5: link becomes ready
[    3.663510] br-5a41a46561e5: port 1(veth95fdf6d) entered disabled state
[    3.922143] eth0: renamed from veth37d9d56
[    3.952480] IPv6: ADDRCONF(NETDEV_CHANGE): veth95fdf6d: link becomes ready
[    3.952570] br-5a41a46561e5: port 1(veth95fdf6d) entered blocking state
[    3.952576] br-5a41a46561e5: port 1(veth95fdf6d) entered forwarding state
[    4.197524] Console: switching to colour frame buffer device 270x90
[    4.220428] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.260566] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC298: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[    4.260569] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.260570] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.260571] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.260572] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.260574] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    4.260575] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    4.314318] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    4.314372] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.314419] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    4.314465] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.314497] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.314526] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.314556] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    5.404085] fuse init (API version 7.27)
[    7.764459] kauditd_printk_skb: 230 callbacks suppressed
[    7.764465] audit: type=1131 audit(1544347166.356:111): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.022429] audit: type=1006 audit(1544347170.616:112): pid=1041 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   12.033170] audit: type=1130 audit(1544347170.626:113): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.038813] audit: type=1006 audit(1544347170.633:114): pid=1051 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   12.052582] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[   12.052947] audit: type=1131 audit(1544347170.646:115): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.068753] audit: type=1131 audit(1544347170.663:116): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.072255] audit: type=1130 audit(1544347170.666:117): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.556871] audit: type=1130 audit(1544347171.150:118): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.946325] Bluetooth: RFCOMM TTY layer initialized
[   12.946331] Bluetooth: RFCOMM socket layer initialized
[   12.946337] Bluetooth: RFCOMM ver 1.11
[   13.009562] audit: type=1130 audit(1544347171.603:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   13.022844] audit: type=1130 audit(1544347171.616:120): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   13.030617] audit: type=1131 audit(1544347171.623:121): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   13.087685] wlp2s0: authenticate with e0:28:6d:d8:01:b6
[   13.096765] wlp2s0: send auth to e0:28:6d:d8:01:b6 (try 1/3)
[   13.104923] wlp2s0: authenticated
[   13.107889] wlp2s0: associate with e0:28:6d:d8:01:b6 (try 1/3)
[   13.114448] wlp2s0: RX AssocResp from e0:28:6d:d8:01:b6 (capab=0x431 status=0 aid=2)
[   13.119377] wlp2s0: associated
[   13.196064] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   13.499356] audit: type=1130 audit(1544347172.093:122): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   13.999845] audit: type=1131 audit(1544347172.593:123): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   15.340015] audit: type=1130 audit(1544347173.933:124): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.007282] audit: type=1131 audit(1544347185.600:125): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   32.910999] audit: type=1131 audit(1544347191.503:126): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   54.652580] audit: type=1130 audit(1544347213.247:127): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  199.501107] audit: type=1131 audit(1544347358.095:128): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  445.266046] audit: type=1130 audit(1544347603.823:129): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=tlp-sleep comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  445.271272] PM: suspend entry (deep)
[  445.271274] PM: Syncing filesystems ... done.
[  445.280794] Freezing user space processes ... (elapsed 0.001 seconds) done.
[  445.282572] OOM killer disabled.
[  445.282573] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  445.283759] Suspending console(s) (use no_console_suspend to debug)
[  445.284268] wlp2s0: deauthenticating from e0:28:6d:d8:01:b6 by local choice (Reason: 3=DEAUTH_LEAVING)
[  445.579533] ACPI: EC: interrupt blocked
[  445.615565] ACPI: Preparing to enter system sleep state S3
[  445.625622] ACPI: EC: event blocked
[  445.625624] ACPI: EC: EC stopped
[  445.625625] PM: Saving platform NVS memory
[  445.626041] Disabling non-boot CPUs ...
[  445.662753] smpboot: CPU 1 is now offline
[  445.703689] smpboot: CPU 2 is now offline
[  445.752551] smpboot: CPU 3 is now offline
[  445.758480] ACPI: Low-level resume complete
[  445.758585] ACPI: EC: EC started
[  445.758585] PM: Restoring platform NVS memory
[  445.763437] Enabling non-boot CPUs ...
[  445.763488] x86: Booting SMP configuration:
[  445.763489] smpboot: Booting Node 0 Processor 1 APIC 0x2
[  445.768767]  cache: parent cpu1 should not be sleeping
[  445.768959] CPU1 is up
[  445.768985] smpboot: Booting Node 0 Processor 2 APIC 0x1
[  445.769642]  cache: parent cpu2 should not be sleeping
[  445.769822] CPU2 is up
[  445.769846] smpboot: Booting Node 0 Processor 3 APIC 0x3
[  445.770346]  cache: parent cpu3 should not be sleeping
[  445.770538] CPU3 is up
[  445.774616] ACPI: Waking up from system sleep state S3
[  445.782214] ACPI: button: The lid device is not compliant to SW_LID.
[  445.843646] ACPI: EC: interrupt unblocked
[  445.894506] ACPI: EC: event unblocked
[  446.125633] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[  446.388876] usb 1-7: reset high-speed USB device number 3 using xhci_hcd
[  446.558477] acpi LNXPOWER:13: Turning OFF
[  446.558649] acpi LNXPOWER:12: Turning OFF
[  446.558781] acpi LNXPOWER:11: Turning OFF
[  446.558912] acpi LNXPOWER:10: Turning OFF
[  446.559041] acpi LNXPOWER:0f: Turning OFF
[  446.559170] acpi LNXPOWER:0e: Turning OFF
[  446.559299] acpi LNXPOWER:0d: Turning OFF
[  446.559429] acpi LNXPOWER:0c: Turning OFF
[  446.559559] acpi LNXPOWER:0b: Turning OFF
[  446.559688] acpi LNXPOWER:0a: Turning OFF
[  446.559818] acpi LNXPOWER:09: Turning OFF
[  446.559948] acpi LNXPOWER:08: Turning OFF
[  446.560078] acpi LNXPOWER:07: Turning OFF
[  446.560207] acpi LNXPOWER:06: Turning OFF
[  446.560339] acpi LNXPOWER:05: Turning OFF
[  446.560469] acpi LNXPOWER:04: Turning OFF
[  446.560599] acpi LNXPOWER:03: Turning OFF
[  446.560729] acpi LNXPOWER:02: Turning OFF
[  446.560859] acpi LNXPOWER:01: Turning OFF
[  446.560989] acpi LNXPOWER:00: Turning OFF
[  446.561087] OOM killer enabled.
[  446.561089] Restarting tasks ... done.
[  446.573195] Bluetooth: hci0: Bootloader revision 0.0 build 26 week 38 2015
[  446.574203] Bluetooth: hci0: Device revision is 16
[  446.574204] Bluetooth: hci0: Secure boot is enabled
[  446.574205] Bluetooth: hci0: OTP lock is disabled
[  446.574206] Bluetooth: hci0: API lock is enabled
[  446.574206] Bluetooth: hci0: Debug lock is disabled
[  446.574208] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[  446.575651] Bluetooth: hci0: Found device firmware: intel/ibt-12-16.sfi
[  446.590157] audit: type=1130 audit(1544350929.826:130): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.645032] PM: suspend exit
[  446.649131] audit: type=1130 audit(1544350929.886:131): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.649155] audit: type=1131 audit(1544350929.886:132): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.707339] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  446.713658] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  446.715694] audit: type=1130 audit(1544350929.953:133): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.742882] audit: type=1131 audit(1544350929.980:134): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.805197] audit: type=1131 audit(1544350930.040:135): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=tlp-sleep comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  446.988306] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  447.033842] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  448.185936] Bluetooth: hci0: Waiting for firmware download to complete
[  448.186214] Bluetooth: hci0: Firmware loaded in 1583977 usecs
[  448.186339] Bluetooth: hci0: Waiting for device to boot
[  448.198223] Bluetooth: hci0: Device booted in 11669 usecs
[  448.198673] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[  448.201229] Bluetooth: hci0: Applying Intel DDC parameters completed
[  448.748337] audit: type=1130 audit(1544350931.983:136): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  448.762107] audit: type=1006 audit(1544350932.000:137): pid=4575 uid=0 old-auid=4294967295 auid=620 tty=(none) old-ses=4294967295 ses=4 res=1
[  448.789320] audit: type=1130 audit(1544350932.026:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  449.953542] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  451.043092] wlp2s0: authenticate with e0:28:6d:d8:01:b6
[  451.050701] wlp2s0: send auth to e0:28:6d:d8:01:b6 (try 1/3)
[  451.059819] wlp2s0: authenticated
[  451.065132] wlp2s0: associate with e0:28:6d:d8:01:b6 (try 1/3)
[  451.070500] wlp2s0: RX AssocResp from e0:28:6d:d8:01:b6 (capab=0x431 status=0 aid=1)
[  451.075062] wlp2s0: associated
[  451.098497] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[  451.327272] audit: type=1130 audit(1544350934.563:139): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  451.595779] audit: type=1131 audit(1544350934.833:140): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  452.993873] audit: type=1131 audit(1544350936.230:141): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  453.018121] audit: type=1131 audit(1544350936.253:142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  463.052367] audit: type=1131 audit(1544350946.290:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  505.330781] audit: type=1130 audit(1544350988.567:144): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  505.338513] audit: type=1006 audit(1544350988.577:145): pid=4701 uid=0 old-auid=4294967295 auid=620 tty=(none) old-ses=4294967295 ses=5 res=1
[  505.343432] wlp2s0: deauthenticating from e0:28:6d:d8:01:b6 by local choice (Reason: 3=DEAUTH_LEAVING)
[  505.358701] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  505.370352] audit: type=1130 audit(1544350988.607:146): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  505.373826] audit: type=1130 audit(1544350988.610:147): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  505.392357] audit: type=1131 audit(1544350988.630:148): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  524.052530] audit: type=1131 audit(1544351007.290:149): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  524.472101] audit: type=1006 audit(1544351007.710:150): pid=4749 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=6 res=1
[  524.494609] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  524.503633] audit: type=1131 audit(1544351007.740:151): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  524.521995] audit: type=1131 audit(1544351007.760:152): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@620 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  524.830906] audit: type=1130 audit(1544351008.067:153): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  524.839242] audit: type=1131 audit(1544351008.077:154): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pamac-system comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  525.870039] wlp2s0: authenticate with e0:28:6d:d8:01:b6
[  525.877604] wlp2s0: send auth to e0:28:6d:d8:01:b6 (try 1/3)
[  525.882276] wlp2s0: authenticated
[  525.884383] wlp2s0: associate with e0:28:6d:d8:01:b6 (try 1/3)
[  525.890296] wlp2s0: RX AssocResp from e0:28:6d:d8:01:b6 (capab=0x431 status=0 aid=1)
[  525.897240] wlp2s0: associated
[  525.905014] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[  526.065819] audit: type=1130 audit(1544351009.304:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  526.117992] audit: type=1130 audit(1544351009.357:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  538.051193] audit: type=1131 audit(1544351021.290:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  603.791893] audit: type=1130 audit(1544351087.031:158): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=tlp-sleep comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  603.799325] PM: suspend entry (deep)
[  603.799326] PM: Syncing filesystems ... done.
[  603.809968] Freezing user space processes ... (elapsed 0.004 seconds) done.
[  603.814049] OOM killer disabled.
[  603.814050] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[  603.816374] Suspending console(s) (use no_console_suspend to debug)
[  603.817299] wlp2s0: deauthenticating from e0:28:6d:d8:01:b6 by local choice (Reason: 3=DEAUTH_LEAVING)
[  604.881624] ACPI: EC: interrupt blocked
[  604.918097] ACPI: Preparing to enter system sleep state S3
[  604.928153] ACPI: EC: event blocked
[  604.928155] ACPI: EC: EC stopped
[  604.928156] PM: Saving platform NVS memory
[  604.928529] Disabling non-boot CPUs ...
[  604.958679] smpboot: CPU 1 is now offline
[  605.012881] smpboot: CPU 2 is now offline
[  605.051826] smpboot: CPU 3 is now offline
[  605.057250] ACPI: Low-level resume complete
[  605.057355] ACPI: EC: EC started
[  605.057355] PM: Restoring platform NVS memory
[  605.062165] Enabling non-boot CPUs ...
[  605.062217] x86: Booting SMP configuration:
[  605.062218] smpboot: Booting Node 0 Processor 1 APIC 0x2
[  605.065038]  cache: parent cpu1 should not be sleeping
[  605.065241] CPU1 is up
[  605.065267] smpboot: Booting Node 0 Processor 2 APIC 0x1
[  605.065851]  cache: parent cpu2 should not be sleeping
[  605.066045] CPU2 is up
[  605.066073] smpboot: Booting Node 0 Processor 3 APIC 0x3
[  605.066589]  cache: parent cpu3 should not be sleeping
[  605.066794] CPU3 is up
[  605.070863] ACPI: Waking up from system sleep state S3
[  605.142887] ACPI: EC: interrupt unblocked
[  605.195250] ACPI: EC: event unblocked
[  605.424913] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[  605.688136] usb 1-7: reset high-speed USB device number 3 using xhci_hcd
[  605.857386] acpi LNXPOWER:13: Turning OFF
[  605.857522] acpi LNXPOWER:12: Turning OFF
[  605.857652] acpi LNXPOWER:11: Turning OFF
[  605.857782] acpi LNXPOWER:10: Turning OFF
[  605.857947] acpi LNXPOWER:0f: Turning OFF
[  605.858077] acpi LNXPOWER:0e: Turning OFF
[  605.858205] acpi LNXPOWER:0d: Turning OFF
[  605.858334] acpi LNXPOWER:0c: Turning OFF
[  605.858463] acpi LNXPOWER:0b: Turning OFF
[  605.858592] acpi LNXPOWER:0a: Turning OFF
[  605.858721] acpi LNXPOWER:09: Turning OFF
[  605.858850] acpi LNXPOWER:08: Turning OFF
[  605.858980] acpi LNXPOWER:07: Turning OFF
[  605.859109] acpi LNXPOWER:06: Turning OFF
[  605.859240] acpi LNXPOWER:05: Turning OFF
[  605.859370] acpi LNXPOWER:04: Turning OFF
[  605.859499] acpi LNXPOWER:03: Turning OFF
[  605.859629] acpi LNXPOWER:02: Turning OFF
[  605.859758] acpi LNXPOWER:01: Turning OFF
[  605.859887] acpi LNXPOWER:00: Turning OFF
[  605.859985] OOM killer enabled.
[  605.859987] Restarting tasks ... done.
[  605.868940] Bluetooth: hci0: Bootloader revision 0.0 build 26 week 38 2015
[  605.869950] Bluetooth: hci0: Device revision is 16
[  605.869952] Bluetooth: hci0: Secure boot is enabled
[  605.869953] Bluetooth: hci0: OTP lock is disabled
[  605.869953] Bluetooth: hci0: API lock is enabled
[  605.869954] Bluetooth: hci0: Debug lock is disabled
[  605.869955] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[  605.869959] Bluetooth: hci0: Found device firmware: intel/ibt-12-16.sfi
[  605.871953] audit: type=1130 audit(1544504009.810:159): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  605.896457] audit: type=1131 audit(1544504009.833:160): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[  605.921533] audit: type=1130 audit(1544504009.860:161): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  605.942660] PM: suspend exit
[  605.946130] audit: type=1130 audit(1544504009.883:162): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  605.946137] audit: type=1131 audit(1544504009.883:163): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  605.994332] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  606.001565] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  606.014181] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  606.018672] audit: type=1130 audit(1544504009.956:164): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  606.062432] audit: type=1130 audit(1544504010.000:165): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  606.062440] audit: type=1131 audit(1544504010.000:166): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  606.072229] audit: type=1131 audit(1544504010.010:167): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  606.186201] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  607.224672] Bluetooth: hci0: Waiting for firmware download to complete
[  607.224914] Bluetooth: hci0: Firmware loaded in 1324768 usecs
[  607.224924] Bluetooth: hci0: Waiting for device to boot
[  607.236920] Bluetooth: hci0: Device booted in 11721 usecs
[  607.236923] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[  607.239922] Bluetooth: hci0: Applying Intel DDC parameters completed
[  609.122601] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  610.168340] wlp2s0: authenticate with e0:28:6d:d8:01:b6
[  610.175618] wlp2s0: send auth to e0:28:6d:d8:01:b6 (try 1/3)
[  610.186429] wlp2s0: authenticated
[  610.191096] wlp2s0: associate with e0:28:6d:d8:01:b6 (try 1/3)
[  610.196533] wlp2s0: RX AssocResp from e0:28:6d:d8:01:b6 (capab=0x31 status=0 aid=4)
[  610.200863] wlp2s0: associated
[  610.218401] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[  610.392606] kauditd_printk_skb: 1 callbacks suppressed
[  610.392608] audit: type=1130 audit(1544504014.330:169): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  610.925646] audit: type=1131 audit(1544504014.863:170): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  615.592859] audit: type=1130 audit(1544504019.530:171): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=updatedb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  615.592862] audit: type=1131 audit(1544504019.530:172): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=updatedb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  622.052206] audit: type=1131 audit(1544504025.990:173): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  645.813791] audit: type=1130 audit(1544504049.750:174): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  645.813818] audit: type=1131 audit(1544504049.750:175): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  716.840425] huawei_wmi: loading out-of-tree module taints kernel.
[  716.840506] huawei_wmi: module verification failed: signature and/or required key missing - tainting kernel
[  716.840918] input: Huawei WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/59142400-C6A3-40FA-BADB-8A2652834100/input/input18
[  716.840996] input: Huawei WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/ABBC0F5C-8EA1-11D1-A000-C90629100000/input/input19
[  817.719774] Returned obj: 641
[  820.952951] Returned obj: 642
[  822.362798] Returned obj: 659
[  823.289651] Returned obj: 644
[  823.962821] Returned obj: 645
[  824.706299] Returned obj: 646
[  825.636297] Returned obj: 647
[  832.719626] Returned obj: 649
[  832.722505] wlp2s0: deauthenticating from e0:28:6d:d8:01:b6 by local choice (Reason: 3=DEAUTH_LEAVING)
[  832.772299] audit: type=1130 audit(1544504239.791:176): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  832.853689] audit: type=1130 audit(1544504239.875:177): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  832.905143] audit: type=1131 audit(1544504239.925:178): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  836.506141] Returned obj: 650
[  837.781776] audit: type=1131 audit(1544504244.801:179): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  843.053235] audit: type=1131 audit(1544504250.075:180): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  864.420749] audit: type=1130 audit(1544504271.442:181): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  875.050024] audit: type=1131 audit(1544504282.072:182): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  903.255595] Returned obj: 641
[  903.269779] audit: type=1130 audit(1544504310.292:183): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  903.269788] audit: type=1131 audit(1544504310.292:184): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  903.775551] Returned obj: 642
[  904.452140] Returned obj: 660
[  904.868866] Returned obj: 644
[  905.378859] Returned obj: 645
[  905.875520] Returned obj: 646
[  906.825508] Returned obj: 647
[  907.842149] Returned obj: 649
[  907.852425] audit: type=1130 audit(1544504314.875:185): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  908.090120] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  908.187223] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  908.742164] Returned obj: 650
[  911.105317] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  912.419192] wlp2s0: authenticate with e0:28:6d:d8:01:b6
[  912.426841] wlp2s0: send auth to e0:28:6d:d8:01:b6 (try 1/3)
[  912.467267] wlp2s0: authenticated
[  912.468250] wlp2s0: associate with e0:28:6d:d8:01:b6 (try 1/3)
[  912.473324] wlp2s0: RX AssocResp from e0:28:6d:d8:01:b6 (capab=0x31 status=0 aid=4)
[  912.478150] wlp2s0: associated
[  912.496008] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[  912.723424] audit: type=1130 audit(1544504319.745:186): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  912.777502] audit: type=1130 audit(1544504319.799:187): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  912.859489] audit: type=1131 audit(1544504319.882:188): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

What I see is, that the keys for mute, volume and wlan are working now, but the keys for the light (F1, F2, F3) have no reaction.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

Thank you for your work @janbaer. The driver seems to successfully report those keys.

[  817.719774] Returned obj: 641
[  820.952951] Returned obj: 642
[  822.362798] Returned obj: 659
...
[  903.255595] Returned obj: 641
[  903.775551] Returned obj: 642
[  904.452140] Returned obj: 660

641 -> brightness down
642 -> brightness up
659, 660, 661 -> keyboard backlight which is ignored because it should work natively using BIOS

The display key is mapped to super+p which is what Windows and most Linux DEs use for display options.

Maybe it has to do with the DE you're using. What DE you running? Try using xev, acpi_listen or evtest to detect if a key is pressed.

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

What so you mean with DE?

I just testet the output with evtest and got the following output

sudo evtest /dev/input/event15

Input driver version is 1.0.1
Input device ID: bus 0x19 vendor 0x0 product 0x0 version 0x0
Input device name: "Huawei WMI hotkeys"
Supported events:
  Event type 0 (EV_SYN)
  Event type 1 (EV_KEY)
    Event code 113 (KEY_MUTE)
    Event code 114 (KEY_VOLUMEDOWN)
    Event code 115 (KEY_VOLUMEUP)
    Event code 171 (KEY_CONFIG)
    Event code 224 (KEY_BRIGHTNESSDOWN)
    Event code 225 (KEY_BRIGHTNESSUP)
    Event code 238 (KEY_WLAN)
    Event code 240 (KEY_UNKNOWN)
    Event code 248 (KEY_MICMUTE)
  Event type 4 (EV_MSC)
    Event code 4 (MSC_SCAN)
Properties:
Testing ... (interrupt to exit)
Event: time 1544558454.954004, type 4 (EV_MSC), code 4 (MSC_SCAN), value 281
Event: time 1544558454.954004, type 1 (EV_KEY), code 224 (KEY_BRIGHTNESSDOWN), value 1
Event: time 1544558454.954004, -------------- SYN_REPORT ------------
Event: time 1544558454.954033, type 1 (EV_KEY), code 224 (KEY_BRIGHTNESSDOWN), value 0
Event: time 1544558454.954033, -------------- SYN_REPORT ------------
Event: time 1544558470.664122, type 4 (EV_MSC), code 4 (MSC_SCAN), value 282
Event: time 1544558470.664122, type 1 (EV_KEY), code 225 (KEY_BRIGHTNESSUP), value 1
Event: time 1544558470.664122, -------------- SYN_REPORT ------------
Event: time 1544558470.664166, type 1 (EV_KEY), code 225 (KEY_BRIGHTNESSUP), value 0
Event: time 1544558470.664166, -------------- SYN_REPORT ------------
Event: time 1544558477.227367, type 4 (EV_MSC), code 4 (MSC_SCAN), value 284
Event: time 1544558477.227367, type 1 (EV_KEY), code 113 (KEY_MUTE), value 1
Event: time 1544558477.227367, -------------- SYN_REPORT ------------
Event: time 1544558477.227390, type 1 (EV_KEY), code 113 (KEY_MUTE), value 0
Event: time 1544558477.227390, -------------- SYN_REPORT ------------
Event: time 1544558483.620747, type 4 (EV_MSC), code 4 (MSC_SCAN), value 285
Event: time 1544558483.620747, type 1 (EV_KEY), code 114 (KEY_VOLUMEDOWN), value 1
Event: time 1544558483.620747, -------------- SYN_REPORT ------------
Event: time 1544558483.620783, type 1 (EV_KEY), code 114 (KEY_VOLUMEDOWN), value 0
Event: time 1544558483.620783, -------------- SYN_REPORT ------------
Event: time 1544558484.864115, type 4 (EV_MSC), code 4 (MSC_SCAN), value 286
Event: time 1544558484.864115, type 1 (EV_KEY), code 115 (KEY_VOLUMEUP), value 1
Event: time 1544558484.864115, -------------- SYN_REPORT ------------
Event: time 1544558484.864158, type 1 (EV_KEY), code 115 (KEY_VOLUMEUP), value 0
Event: time 1544558484.864158, -------------- SYN_REPORT ------------
Event: time 1544558486.630782, type 4 (EV_MSC), code 4 (MSC_SCAN), value 287
Event: time 1544558486.630782, type 1 (EV_KEY), code 248 (KEY_MICMUTE), value 1
Event: time 1544558486.630782, -------------- SYN_REPORT ------------
Event: time 1544558486.630825, type 1 (EV_KEY), code 248 (KEY_MICMUTE), value 0
Event: time 1544558486.630825, -------------- SYN_REPORT ------------
Event: time 1544558494.090748, type 4 (EV_MSC), code 4 (MSC_SCAN), value 289
Event: time 1544558494.090748, type 1 (EV_KEY), code 238 (KEY_WLAN), value 1
Event: time 1544558494.090748, -------------- SYN_REPORT ------------
Event: time 1544558494.090770, type 1 (EV_KEY), code 238 (KEY_WLAN), value 0
Event: time 1544558494.090770, -------------- SYN_REPORT ------------
Event: time 1544558496.450568, type 4 (EV_MSC), code 4 (MSC_SCAN), value 28a
Event: time 1544558496.450568, type 1 (EV_KEY), code 171 (KEY_CONFIG), value 1
Event: time 1544558496.450568, -------------- SYN_REPORT ------------
Event: time 1544558496.450590, type 1 (EV_KEY), code 171 (KEY_CONFIG), value 0
Event: time 1544558496.450590, -------------- SYN_REPORT ------------

The key that is behind F3 gave no output and the same with F8. super+p is doing nothing on my system.

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

@janbaer F3 (keyboard back light) should work without any problem because it is controlled through BIOS. F8 (display key) is a different issue, on my system when I use xev, F8 reports super+p. I use Gnome and I had to remap super+p to get it to work which is an issue with Gnome I guess. But in XFCE for instance, F8 worked fine.

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

I just tested it today with a Gnome installation instead of i3 and it turned out that all keys are working now like it was expected. Means, that also the keys for the display light and the display key (F8) are working. It was an issue with i3 I think. Thanks for the great job! What about the file you attached here to this issue. Will you merge it to the original source and update the Readme?

from huawei-wmi.

aymanbagabas avatar aymanbagabas commented on May 26, 2024

Hi there, thanks for your work with the function keys. they work perfectly now on my MBX (w/o pro).
Do you plan on fixing the sound issue on the MBX too ? As all the others I only have sound on the front left speaker but not on the right one. If I should test something for you let me know ! Your help is higly appreciated !

Thanks an advance.

Sorry for the late reply, i was away from my computer.
I would love to but I don't have a MBX laptop to use for testing. I started this project mainly to fix the keyboard for the MBX Pro which then turned to be the same approach for its successor the MBX and hopefully other huawei laptops. However, i noticed someone on the kernel's bugzilla who is working on this issue 197801

from huawei-wmi.

janbaer avatar janbaer commented on May 26, 2024

Great, thank you for your great work! I'm sure it's very helpful for a lot of people, who wants to use MBX or MBX Pro with Linux. Personally, I like the concept to have a notebook without any active cooling and the MBX works perfectly for me for a year.

from huawei-wmi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.