* [PATCH] Input: synaptics - disable intertouch for Lenovo L440
@ 2023-04-12 22:54 Jonathan Denose
2023-04-13 20:47 ` Lyude Paul
0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Denose @ 2023-04-12 22:54 UTC (permalink / raw)
To: LKML
Cc: Dmitry Torokhov, Wolfram Sang, linux-input, Jonathan Denose,
Aman Dhoot, Lyude Paul, Mark Pearson
When intertouch is enabled for the L440 a (deep)sleep/resume
cycle causes the touchpad driver to hang which causes the
touchpad to become unresponsive. Disable intertouch resolves
this issue and the touchpad is fine after resume from sleep.
Additionally, when the PNP id for the L440 is only removed
from the topbuttonpad_pnp_ids list, a message is logged to
enable psmouse.synaptics_intertouch, which would cause the
sleep/resume issue again. By removing the PNP id from
topbutton_pnp_ids and then adding it to the
forcepad_pnp_ids array, intertouch is disabled and the
message is not logged.
Signed-off-by: Jonathan Denose <jdenose@google.com>
---
drivers/input/mouse/synaptics.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
index fa021af8506e4..77a4f58128e84 100644
--- a/drivers/input/mouse/synaptics.c
+++ b/drivers/input/mouse/synaptics.c
@@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
"LEN2001", /* Edge E431 */
"LEN2002", /* Edge E531 */
"LEN2003",
- "LEN2004", /* L440 */
"LEN2005",
"LEN2006", /* Edge E440/E540 */
"LEN2007",
@@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
static const char * const forcepad_pnp_ids[] = {
"SYN300D",
"SYN3014",
+ "LEN2004", /* L440 */
NULL
};
@@ -1769,6 +1769,8 @@ static int synaptics_create_intertouch(struct psmouse *psmouse,
.flags = I2C_CLIENT_HOST_NOTIFY,
};
+ psmouse_dbg(psmouse, "topbuttonpad is: %s\n", topbuttonpad ? "true" : "false");
+
return psmouse_smbus_init(psmouse, &intertouch_board,
&pdata, sizeof(pdata), true,
leave_breadcrumbs);
--
2.40.0.577.gac1e443424-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: synaptics - disable intertouch for Lenovo L440
2023-04-12 22:54 [PATCH] Input: synaptics - disable intertouch for Lenovo L440 Jonathan Denose
@ 2023-04-13 20:47 ` Lyude Paul
2023-04-14 16:41 ` [PATCH v2] " Jonathan Denose
0 siblings, 1 reply; 8+ messages in thread
From: Lyude Paul @ 2023-04-13 20:47 UTC (permalink / raw)
To: Jonathan Denose, LKML
Cc: Dmitry Torokhov, Wolfram Sang, linux-input, Jonathan Denose,
Aman Dhoot, Mark Pearson, Andrew Duggan
This patch looks fine to me, I'm a bit curious though whether the folks at
Synaptics have any idea of some other workaround we might be able to do rather
than disabling intertouch? Added Andrew Duggan to CC to ask.
If we don't get any response from them after a while, feel free to consider
this:
Reviewed-by: Lyude Paul <lyude@redhat.com>
On Wed, 2023-04-12 at 17:54 -0500, Jonathan Denose wrote:
> When intertouch is enabled for the L440 a (deep)sleep/resume
> cycle causes the touchpad driver to hang which causes the
> touchpad to become unresponsive. Disable intertouch resolves
> this issue and the touchpad is fine after resume from sleep.
>
> Additionally, when the PNP id for the L440 is only removed
> from the topbuttonpad_pnp_ids list, a message is logged to
> enable psmouse.synaptics_intertouch, which would cause the
> sleep/resume issue again. By removing the PNP id from
> topbutton_pnp_ids and then adding it to the
> forcepad_pnp_ids array, intertouch is disabled and the
> message is not logged.
>
> Signed-off-by: Jonathan Denose <jdenose@google.com>
> ---
>
> drivers/input/mouse/synaptics.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
> index fa021af8506e4..77a4f58128e84 100644
> --- a/drivers/input/mouse/synaptics.c
> +++ b/drivers/input/mouse/synaptics.c
> @@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
> "LEN2001", /* Edge E431 */
> "LEN2002", /* Edge E531 */
> "LEN2003",
> - "LEN2004", /* L440 */
> "LEN2005",
> "LEN2006", /* Edge E440/E540 */
> "LEN2007",
> @@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
> static const char * const forcepad_pnp_ids[] = {
> "SYN300D",
> "SYN3014",
> + "LEN2004", /* L440 */
> NULL
> };
>
> @@ -1769,6 +1769,8 @@ static int synaptics_create_intertouch(struct psmouse *psmouse,
> .flags = I2C_CLIENT_HOST_NOTIFY,
> };
>
> + psmouse_dbg(psmouse, "topbuttonpad is: %s\n", topbuttonpad ? "true" : "false");
> +
> return psmouse_smbus_init(psmouse, &intertouch_board,
> &pdata, sizeof(pdata), true,
> leave_breadcrumbs);
--
Cheers,
Lyude Paul (she/her)
Software Engineer at Red Hat
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
2023-04-13 20:47 ` Lyude Paul
@ 2023-04-14 16:41 ` Jonathan Denose
[not found] ` <CALNJtpXLHHSV8YshUnk0opLNMUJpT7DgBNRYXoP2Yn-fnA8vPA@mail.gmail.com>
0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Denose @ 2023-04-14 16:41 UTC (permalink / raw)
To: lyude
Cc: aduggan, amandhoot12, dmitry.torokhov, jdenose, jdenose,
linux-input, linux-kernel, markpearson, wsa+renesas
When intertouch is enabled for the L440 a (deep)sleep/resume
cycle causes the touchpad driver to hang which causes the
touchpad to become unresponsive. Disable intertouch resolves
this issue and the touchpad is fine after resume from sleep.
Additionally, when the PNP id for the L440 is only removed
from the topbuttonpad_pnp_ids list, a message is logged to
enable psmouse.synaptics_intertouch, which would cause the
sleep/resume issue again. By removing the PNP id from
topbutton_pnp_ids and then adding it to the
forcepad_pnp_ids array, intertouch is disabled and the
message is not logged.
Signed-off-by: Jonathan Denose <jdenose@google.com>
---
Changes in v2:
- remove debug statement
drivers/input/mouse/synaptics.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
index fa021af8506e4..b7218b7652c20 100644
--- a/drivers/input/mouse/synaptics.c
+++ b/drivers/input/mouse/synaptics.c
@@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
"LEN2001", /* Edge E431 */
"LEN2002", /* Edge E531 */
"LEN2003",
- "LEN2004", /* L440 */
"LEN2005",
"LEN2006", /* Edge E440/E540 */
"LEN2007",
@@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
static const char * const forcepad_pnp_ids[] = {
"SYN300D",
"SYN3014",
+ "LEN2004", /* L440 */
NULL
};
--
2.39.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
[not found] ` <CALNJtpXLHHSV8YshUnk0opLNMUJpT7DgBNRYXoP2Yn-fnA8vPA@mail.gmail.com>
@ 2023-04-17 18:52 ` Jonathan Denose
2023-04-17 20:14 ` Andrew Duggan
0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Denose @ 2023-04-17 18:52 UTC (permalink / raw)
To: lyude
Cc: aduggan, amandhoot12, dmitry.torokhov, jdenose, linux-input,
linux-kernel, markpearson, wsa+renesas
[-- Attachment #1: Type: text/plain, Size: 4220 bytes --]
Sorry, I thought I sent this as plain text but I think maybe not.
Trying once more, the message was:
I think that disabling synaptics_intertouch would resolve the issue
mentioned in the commit, but cause a regression in the functionality
that intertouch is supposed to bring, like three-finger gestures. I'm
attaching some of the logs that I captured when the touchpad was
failing on resume. I think the main culprit is
i2c_smbus_read_byte_data where the driver is unable to get the SMBus
version number. I get the following lines in dmesg:
[ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed
to read current IRQ mask.
[ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
[ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
[ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
[ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
[ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus]
returned 0 after 549 usecs
[ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
Any ideas on what might be causing this, only on resume from deep sleep?
On Mon, Apr 17, 2023 at 1:47 PM Jonathan Denose <jdenose@chromium.org> wrote:
>
> I think that disabling synaptics_intertouch would resolve the issue mentioned in the commit, but cause a regression in the functionality that intertouch is supposed to bring, like three-finger gestures. I'm attaching some of the logs that I captured when the touchpad was failing on resume. I think the main culprit is i2c_smbus_read_byte_data where the driver is unable to get the SMBus version number. I get the following lines in dmesg:
>
> [ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
> [ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed to read current IRQ mask.
> [ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
> [ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
> [ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
> [ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
> [ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus] returned 0 after 549 usecs
> [ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
>
> Any ideas on what might be causing this, only on resume from deep sleep?
>
>
> On Fri, Apr 14, 2023 at 11:41 AM Jonathan Denose <jdenose@chromium.org> wrote:
>>
>> When intertouch is enabled for the L440 a (deep)sleep/resume
>> cycle causes the touchpad driver to hang which causes the
>> touchpad to become unresponsive. Disable intertouch resolves
>> this issue and the touchpad is fine after resume from sleep.
>>
>> Additionally, when the PNP id for the L440 is only removed
>> from the topbuttonpad_pnp_ids list, a message is logged to
>> enable psmouse.synaptics_intertouch, which would cause the
>> sleep/resume issue again. By removing the PNP id from
>> topbutton_pnp_ids and then adding it to the
>> forcepad_pnp_ids array, intertouch is disabled and the
>> message is not logged.
>>
>> Signed-off-by: Jonathan Denose <jdenose@google.com>
>> ---
>>
>> Changes in v2:
>> - remove debug statement
>>
>> drivers/input/mouse/synaptics.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
>> index fa021af8506e4..b7218b7652c20 100644
>> --- a/drivers/input/mouse/synaptics.c
>> +++ b/drivers/input/mouse/synaptics.c
>> @@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
>> "LEN2001", /* Edge E431 */
>> "LEN2002", /* Edge E531 */
>> "LEN2003",
>> - "LEN2004", /* L440 */
>> "LEN2005",
>> "LEN2006", /* Edge E440/E540 */
>> "LEN2007",
>> @@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
>> static const char * const forcepad_pnp_ids[] = {
>> "SYN300D",
>> "SYN3014",
>> + "LEN2004", /* L440 */
>> NULL
>> };
>>
>> --
>> 2.39.2
>>
[-- Attachment #2: dmesg_synaptics.txt --]
[-- Type: text/plain, Size: 143163 bytes --]
[ 0.000000] microcode: microcode updated early to revision 0x28, date = 2019-11-12
[ 0.000000] Linux version 5.10.176-22119-gce5c4feabae6-dirty (jdenose@jdenose34) (Chromium OS 16.0_pre475826_p20230103-r8 clang version 16.0.0 (/var/tmp/portage/sys-devel/llvm-16.0_pre475826_p20230103-r8/work/llvm-16.0_pre475826_p20230103/clang 11897708c0229c92802e747564e7c34b722f045f), LLD 16.0.0) #8 SMP PREEMPT Wed Apr 12 08:12:35 CDT 2023
[ 0.000000] Command line: BOOT_IMAGE=vmlinuz.A init=/sbin/init boot=local rootwait ro noresume noswap loglevel=7 noinitrd console= kvm-intel.vmentry_l1d_flush=always i8042.nomux=1 psmouse.dyndbg="module psmouse +pmfl" root=PARTUUID=6BE72B4C-F1A8-DA49-A8C4-6A81A9E280F8 i915.modeset=1 cros_legacy cros_debug
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ce599fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ce59a000-0x00000000dce23fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dce24000-0x00000000dcf7efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000dcf7f000-0x00000000dcffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000dcfff000-0x00000000df9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011f5fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: LENOVO 20ASS07Y00/20ASS07Y00, BIOS J4ET60WW(1.60) 03/13/2014
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2494.209 MHz processor
[ 0.000707] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000711] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000721] last_pfn = 0x11f600 max_arch_pfn = 0x400000000
[ 0.000725] MTRR default type: write-back
[ 0.000727] MTRR fixed ranges enabled:
[ 0.000729] 00000-9FFFF write-back
[ 0.000730] A0000-BFFFF uncachable
[ 0.000731] C0000-FFFFF write-protect
[ 0.000732] MTRR variable ranges enabled:
[ 0.000734] 0 base 00E0000000 mask 7FE0000000 uncachable
[ 0.000736] 1 base 00DE000000 mask 7FFE000000 uncachable
[ 0.000737] 2 base 00DD000000 mask 7FFF000000 uncachable
[ 0.000738] 3 disabled
[ 0.000739] 4 disabled
[ 0.000740] 5 disabled
[ 0.000741] 6 disabled
[ 0.000742] 7 disabled
[ 0.000743] 8 disabled
[ 0.000744] 9 disabled
[ 0.001099] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001687] last_pfn = 0xce59a max_arch_pfn = 0x400000000
[ 0.001792] found SMP MP-table at [mem 0x000f0100-0x000f010f]
[ 0.001812] check: Scanning 1 areas for low memory corruption
[ 0.001817] Using GB pages for direct mapping
[ 0.002122] ACPI: Early table checksum verification disabled
[ 0.002126] ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO)
[ 0.002130] ACPI: XSDT 0x00000000DCFFE170 0000EC (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002137] ACPI: FACP 0x00000000DCFFA000 00010C (v05 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002144] ACPI: DSDT 0x00000000DCFE6000 00F8DC (v01 LENOVO TP-J4 00001600 INTL 20120711)
[ 0.002148] ACPI: FACS 0x00000000DCF4A000 000040
[ 0.002153] ACPI: SLIC 0x00000000DCFFD000 000176 (v01 LENOVO TP-J4 00001600 PTEC 00000001)
[ 0.002157] ACPI: ASF! 0x00000000DCFFC000 0000A5 (v32 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002161] ACPI: HPET 0x00000000DCFF9000 000038 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002166] ACPI: LPIT 0x00000000DCFF8000 000094 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002170] ACPI: APIC 0x00000000DCFF7000 000098 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002174] ACPI: MCFG 0x00000000DCFF6000 00003C (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002179] ACPI: SSDT 0x00000000DCFE5000 00082F (v01 LENOVO SataAhci 00001000 INTL 20120711)
[ 0.002183] ACPI: SSDT 0x00000000DCFE4000 000200 (v01 LENOVO sensrhub 00000000 INTL 20120711)
[ 0.002187] ACPI: SSDT 0x00000000DCFE3000 00019A (v01 LENOVO Sata0Ide 00001000 INTL 20120711)
[ 0.002192] ACPI: SSDT 0x00000000DCFE2000 000180 (v01 LENOVO Sata1Ide 00001000 INTL 20120711)
[ 0.002196] ACPI: SSDT 0x00000000DCFE1000 000539 (v01 LENOVO Cpu0Ist 00003000 INTL 20120711)
[ 0.002200] ACPI: SSDT 0x00000000DCFE0000 000AD8 (v01 LENOVO CpuPm 00003000 INTL 20120711)
[ 0.002205] ACPI: SSDT 0x00000000DCFDC000 003582 (v01 LENOVO SaSsdt 00003000 INTL 20120711)
[ 0.002209] ACPI: SSDT 0x00000000DCFDB000 00036F (v01 LENOVO CppcTabl 00001000 INTL 20120711)
[ 0.002214] ACPI: PCCT 0x00000000DCFDA000 00006E (v05 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002218] ACPI: SSDT 0x00000000DCFD9000 000AC4 (v01 LENOVO Cpc_Tabl 00001000 INTL 20120711)
[ 0.002222] ACPI: TCPA 0x00000000DCFD8000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001)
[ 0.002227] ACPI: UEFI 0x00000000DCFD7000 000042 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002231] ACPI: POAT 0x00000000DCEB2000 000055 (v03 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002235] ACPI: BATB 0x00000000DCFD6000 000046 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002240] ACPI: FPDT 0x00000000DCFD5000 000064 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002244] ACPI: UEFI 0x00000000DCFD4000 0002F6 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002249] ACPI: SSDT 0x00000000DCFD3000 0004DE (v01 LENOVO IsctTabl 00001000 INTL 20120711)
[ 0.002253] ACPI: DBGP 0x00000000DCFD2000 000034 (v01 LENOVO TP-J4 00001600 PTEC 00000002)
[ 0.002257] ACPI: Reserving FACP table memory at [mem 0xdcffa000-0xdcffa10b]
[ 0.002259] ACPI: Reserving DSDT table memory at [mem 0xdcfe6000-0xdcff58db]
[ 0.002261] ACPI: Reserving FACS table memory at [mem 0xdcf4a000-0xdcf4a03f]
[ 0.002262] ACPI: Reserving SLIC table memory at [mem 0xdcffd000-0xdcffd175]
[ 0.002264] ACPI: Reserving ASF! table memory at [mem 0xdcffc000-0xdcffc0a4]
[ 0.002265] ACPI: Reserving HPET table memory at [mem 0xdcff9000-0xdcff9037]
[ 0.002267] ACPI: Reserving LPIT table memory at [mem 0xdcff8000-0xdcff8093]
[ 0.002268] ACPI: Reserving APIC table memory at [mem 0xdcff7000-0xdcff7097]
[ 0.002270] ACPI: Reserving MCFG table memory at [mem 0xdcff6000-0xdcff603b]
[ 0.002271] ACPI: Reserving SSDT table memory at [mem 0xdcfe5000-0xdcfe582e]
[ 0.002273] ACPI: Reserving SSDT table memory at [mem 0xdcfe4000-0xdcfe41ff]
[ 0.002274] ACPI: Reserving SSDT table memory at [mem 0xdcfe3000-0xdcfe3199]
[ 0.002276] ACPI: Reserving SSDT table memory at [mem 0xdcfe2000-0xdcfe217f]
[ 0.002277] ACPI: Reserving SSDT table memory at [mem 0xdcfe1000-0xdcfe1538]
[ 0.002279] ACPI: Reserving SSDT table memory at [mem 0xdcfe0000-0xdcfe0ad7]
[ 0.002280] ACPI: Reserving SSDT table memory at [mem 0xdcfdc000-0xdcfdf581]
[ 0.002282] ACPI: Reserving SSDT table memory at [mem 0xdcfdb000-0xdcfdb36e]
[ 0.002283] ACPI: Reserving PCCT table memory at [mem 0xdcfda000-0xdcfda06d]
[ 0.002285] ACPI: Reserving SSDT table memory at [mem 0xdcfd9000-0xdcfd9ac3]
[ 0.002287] ACPI: Reserving TCPA table memory at [mem 0xdcfd8000-0xdcfd8031]
[ 0.002288] ACPI: Reserving UEFI table memory at [mem 0xdcfd7000-0xdcfd7041]
[ 0.002290] ACPI: Reserving POAT table memory at [mem 0xdceb2000-0xdceb2054]
[ 0.002291] ACPI: Reserving BATB table memory at [mem 0xdcfd6000-0xdcfd6045]
[ 0.002293] ACPI: Reserving FPDT table memory at [mem 0xdcfd5000-0xdcfd5063]
[ 0.002294] ACPI: Reserving UEFI table memory at [mem 0xdcfd4000-0xdcfd42f5]
[ 0.002296] ACPI: Reserving SSDT table memory at [mem 0xdcfd3000-0xdcfd34dd]
[ 0.002297] ACPI: Reserving DBGP table memory at [mem 0xdcfd2000-0xdcfd2033]
[ 0.002306] ACPI: Local APIC address 0xfee00000
[ 0.002322] Zone ranges:
[ 0.002323] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.002326] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.002328] Normal [mem 0x0000000100000000-0x000000011f5fffff]
[ 0.002331] Movable zone start for each node
[ 0.002332] Early memory node ranges
[ 0.002334] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.002335] node 0: [mem 0x0000000000100000-0x00000000ce599fff]
[ 0.002337] node 0: [mem 0x0000000100000000-0x000000011f5fffff]
[ 0.002339] Initmem setup node 0 [mem 0x0000000000001000-0x000000011f5fffff]
[ 0.002341] On node 0 totalpages: 973622
[ 0.002343] DMA zone: 64 pages used for memmap
[ 0.002344] DMA zone: 22 pages reserved
[ 0.002346] DMA zone: 3996 pages, LIFO batch:0
[ 0.002347] DMA32 zone: 13143 pages used for memmap
[ 0.002348] DMA32 zone: 841114 pages, LIFO batch:63
[ 0.002349] Normal zone: 2008 pages used for memmap
[ 0.002350] Normal zone: 128512 pages, LIFO batch:31
[ 0.002354] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.002393] On node 0, zone DMA: 99 pages in unavailable ranges
[ 0.014593] On node 0, zone Normal: 6758 pages in unavailable ranges
[ 0.014630] On node 0, zone Normal: 2560 pages in unavailable ranges
[ 0.014641] Reserving Intel graphics memory at [mem 0xdda00000-0xdf9fffff]
[ 0.014820] ACPI: PM-Timer IO Port: 0x1808
[ 0.014822] ACPI: Local APIC address 0xfee00000
[ 0.014829] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.014831] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.014841] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.014844] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.014846] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.014849] ACPI: IRQ0 used by override.
[ 0.014850] ACPI: IRQ9 used by override.
[ 0.014853] Using ACPI (MADT) for SMP configuration information
[ 0.014855] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.014860] TSC deadline timer available
[ 0.014861] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.014879] [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[ 0.014883] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.019772] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[ 0.020400] percpu: Embedded 57 pages/cpu s194392 r8192 d30888 u262144
[ 0.020407] pcpu-alloc: s194392 r8192 d30888 u262144 alloc=1*2097152
[ 0.020409] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.020433] Built 1 zonelists, mobility grouping on. Total pages: 958385
[ 0.020435] Kernel command line: BOOT_IMAGE=vmlinuz.A init=/sbin/init boot=local rootwait ro noresume noswap loglevel=7 noinitrd console= kvm-intel.vmentry_l1d_flush=always i8042.nomux=1 psmouse.dyndbg="module psmouse +pmfl" root=PARTUUID=6BE72B4C-F1A8-DA49-A8C4-6A81A9E280F8 i915.modeset=1 cros_legacy cros_debug
[ 0.021403] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.021801] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.022282] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.062454] Memory: 3721460K/3894488K available (14348K kernel code, 2409K rwdata, 9508K rodata, 1788K init, 1528K bss, 172768K reserved, 0K cma-reserved)
[ 0.062963] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.063158] Kernel/User page tables isolation: enabled
[ 0.063176] ftrace: allocating 43841 entries in 172 pages
[ 0.087777] ftrace: allocated 172 pages with 4 groups
[ 0.087926] rcu: Preemptible hierarchical RCU implementation.
[ 0.087929] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
[ 0.087930] Trampoline variant of Tasks RCU enabled.
[ 0.087931] Rude variant of Tasks RCU enabled.
[ 0.087932] Tracing variant of Tasks RCU enabled.
[ 0.087934] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.087936] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.091103] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[ 0.091272] rcu: Note: kernel parameter 'rcu_nocbs=', 'nohz_full', or 'isolcpus=' contains nonexistent CPUs.
[ 0.091274] rcu: Offload RCU callbacks from CPUs: 0-7.
[ 0.091366] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.091383] random: crng init done
[ 0.091402] ACPI: Core revision 20200925
[ 0.091566] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.091580] APIC: Switch to symmetric I/O mode setup
[ 0.091980] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.096581] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23f3db1f1df, max_idle_ns: 440795265807 ns
[ 0.096583] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.41 BogoMIPS (lpj=2494209)
[ 0.096586] pid_max: default: 32768 minimum: 301
[ 0.096610] LSM: Security Framework initializing
[ 0.096623] landlock: Up and running.
[ 0.096624] Yama: becoming mindful.
[ 0.096629] LoadPin: ready to pin (currently enforcing)
[ 0.096634] Chromium OS LSM: enabled
[ 0.096635] SELinux: Initializing.
[ 0.096674] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.096686] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.096904] CPU0: Thermal monitoring enabled (TM1)
[ 0.096938] process: using mwait in idle threads
[ 0.096941] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.096942] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.096944] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.096948] Spectre V2 : Mitigation: Retpolines
[ 0.096949] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.096950] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.096952] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.096954] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.096955] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[ 0.096959] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.096961] MDS: Mitigation: Clear CPU buffers
[ 0.096962] MMIO Stale Data: Unknown: No mitigations
[ 0.096964] SRBDS: Mitigation: Microcode
[ 0.109313] Freeing SMP alternatives memory: 36K
[ 0.109642] smpboot: CPU0: Intel(R) Core(TM) i5-4200M CPU @ 2.50GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.109805] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.109819] ... version: 3
[ 0.109821] ... bit width: 48
[ 0.109822] ... generic registers: 4
[ 0.109823] ... value mask: 0000ffffffffffff
[ 0.109825] ... max period: 00007fffffffffff
[ 0.109826] ... fixed-purpose events: 3
[ 0.109827] ... event mask: 000000070000000f
[ 0.109950] rcu: Hierarchical SRCU implementation.
[ 0.110591] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.110673] smp: Bringing up secondary CPUs ...
[ 0.110773] x86: Booting SMP configuration:
[ 0.110775] .... node #0, CPUs: #1
[ 0.111137] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[ 0.111137] #2 #3
[ 0.113064] smp: Brought up 1 node, 4 CPUs
[ 0.113587] smpboot: Max logical packages: 2
[ 0.113589] smpboot: Total of 4 processors activated (19953.67 BogoMIPS)
[ 0.114697] devtmpfs: initialized
[ 0.114782] PM: Registering ACPI NVS region [mem 0xdce24000-0xdcf7efff] (1421312 bytes)
[ 0.114782] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.114782] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.114796] pinctrl core: initialized pinctrl subsystem
[ 0.114845] PM: RTC time: 14:17:59, date: 2023-04-12
[ 0.114963] NET: Registered protocol family 16
[ 0.115104] audit: initializing netlink subsys (disabled)
[ 0.115111] audit: type=2000 audit(1681309079.023:1): state=initialized audit_enabled=0 res=1
[ 0.115595] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.115597] thermal_sys: Registered thermal governor 'step_wise'
[ 0.115599] thermal_sys: Registered thermal governor 'user_space'
[ 0.115619] cpuidle: using governor ladder
[ 0.115624] cpuidle: using governor menu
[ 0.115628] Detected 1 PCC Subspaces
[ 0.115650] Registering PCC driver as Mailbox controller
[ 0.115753] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.115755] ACPI: bus type PCI registered
[ 0.115756] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.115933] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.115939] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.115950] PCI: Using configuration type 1 for base access
[ 0.116047] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.116144] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.117806] cryptd: max_cpu_qlen set to 1000
[ 0.118634] ACPI: Added _OSI(Module Device)
[ 0.118636] ACPI: Added _OSI(Processor Device)
[ 0.118638] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.118640] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.118641] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.118643] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.118644] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.133849] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.135234] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.136287] ACPI: Dynamic OEM Table Load:
[ 0.136297] ACPI: SSDT 0xFFFF8CAEC09CEC00 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
[ 0.137215] ACPI: Dynamic OEM Table Load:
[ 0.137224] ACPI: SSDT 0xFFFF8CAEC0974000 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
[ 0.138175] ACPI: Dynamic OEM Table Load:
[ 0.138182] ACPI: SSDT 0xFFFF8CAEC09D0800 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
[ 0.139544] ACPI: EC: EC started
[ 0.139546] ACPI: EC: interrupt blocked
[ 0.556935] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.556939] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
[ 0.556940] ACPI: Interpreter enabled
[ 0.556971] ACPI: (supports S0 S3 S5)
[ 0.556973] ACPI: Using IOAPIC for interrupt routing
[ 0.557003] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.557289] ACPI: Enabled 10 GPEs in block 00 to 3F
[ 0.558469] ACPI: Power Resource [PUBS] (off)
[ 0.564701] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 1)
[ 0.568797] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.568803] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.568940] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.569390] PCI host bridge to bus 0000:00
[ 0.569393] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.569395] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.569397] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.569399] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff window]
[ 0.569401] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.569413] pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
[ 0.569594] pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
[ 0.569603] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.569609] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.569613] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
[ 0.569799] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 0.569807] pci 0000:00:03.0: reg 0x10: [mem 0xf2530000-0xf2533fff 64bit]
[ 0.570022] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[ 0.570038] pci 0000:00:14.0: reg 0x10: [mem 0xf2520000-0xf252ffff 64bit]
[ 0.570096] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.570273] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[ 0.570291] pci 0000:00:16.0: reg 0x10: [mem 0xf2539000-0xf253900f 64bit]
[ 0.570355] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.570527] pci 0000:00:19.0: [8086:153b] type 00 class 0x020000
[ 0.570540] pci 0000:00:19.0: reg 0x10: [mem 0xf2500000-0xf251ffff]
[ 0.570548] pci 0000:00:19.0: reg 0x14: [mem 0xf253f000-0xf253ffff]
[ 0.570557] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
[ 0.570614] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.570794] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[ 0.570810] pci 0000:00:1a.0: reg 0x10: [mem 0xf253e000-0xf253e3ff]
[ 0.570890] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.571068] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[ 0.571085] pci 0000:00:1b.0: reg 0x10: [mem 0xf2534000-0xf2537fff 64bit]
[ 0.571154] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.571328] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[ 0.571402] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.571619] pci 0000:00:1c.1: [8086:8c12] type 01 class 0x060400
[ 0.571693] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.571904] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
[ 0.571977] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.572160] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
[ 0.572233] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.572419] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[ 0.572435] pci 0000:00:1d.0: reg 0x10: [mem 0xf253d000-0xf253d3ff]
[ 0.572516] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.572700] pci 0000:00:1f.0: [8086:8c49] type 00 class 0x060100
[ 0.572964] pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
[ 0.572976] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
[ 0.572984] pci 0000:00:1f.2: reg 0x14: [io 0x60b4-0x60b7]
[ 0.572991] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
[ 0.572999] pci 0000:00:1f.2: reg 0x1c: [io 0x60b0-0x60b3]
[ 0.573007] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
[ 0.573014] pci 0000:00:1f.2: reg 0x24: [mem 0xf253c000-0xf253c7ff]
[ 0.573050] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.573218] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[ 0.573234] pci 0000:00:1f.3: reg 0x10: [mem 0xf2538000-0xf25380ff 64bit]
[ 0.573253] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.573468] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.573606] pci 0000:02:00.0: [10ec:818b] type 00 class 0x028000
[ 0.573688] pci 0000:02:00.0: reg 0x10: [io 0x5000-0x50ff]
[ 0.573782] pci 0000:02:00.0: reg 0x18: [mem 0xf2400000-0xf2403fff 64bit]
[ 0.574031] pci 0000:02:00.0: supports D1 D2
[ 0.574032] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.576655] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.576660] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.576664] pci 0000:00:1c.1: bridge window [mem 0xf2400000-0xf24fffff]
[ 0.576727] acpiphp: Slot [1] registered
[ 0.576733] pci 0000:00:1c.2: PCI bridge to [bus 03-07]
[ 0.576737] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
[ 0.576741] pci 0000:00:1c.2: bridge window [mem 0xf1c00000-0xf23fffff]
[ 0.576747] pci 0000:00:1c.2: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[ 0.576796] acpiphp: Slot [1-1] registered
[ 0.576886] pci 0000:08:00.0: [10ec:5227] type 00 class 0xff0000
[ 0.576968] pci 0000:08:00.0: reg 0x10: [mem 0xf1400000-0xf1400fff]
[ 0.577483] pci 0000:08:00.0: supports D1 D2
[ 0.577485] pci 0000:08:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.580616] pci 0000:00:1c.4: PCI bridge to [bus 08-0c]
[ 0.580620] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.580624] pci 0000:00:1c.4: bridge window [mem 0xf1400000-0xf1bfffff]
[ 0.580630] pci 0000:00:1c.4: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[ 0.580651] pci_bus 0000:00: on NUMA node 0
[ 0.581579] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.581632] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.581678] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *9
[ 0.581726] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.581772] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.581818] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.581865] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.581911] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 *6 10 11 12 14 15)
[ 0.582299] ACPI: EC: interrupt unblocked
[ 0.582301] ACPI: EC: event unblocked
[ 0.582306] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.582308] ACPI: EC: GPE=0x17
[ 0.582310] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
[ 0.582312] ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
[ 0.582387] iommu: Default domain type: Translated
[ 0.582387] SCSI subsystem initialized
[ 0.582387] libata version 3.00 loaded.
[ 0.582387] ACPI: bus type USB registered
[ 0.582387] usbcore: registered new interface driver usbfs
[ 0.582387] usbcore: registered new interface driver hub
[ 0.582387] usbcore: registered new device driver usb
[ 0.582387] chromeos_acpi: installed
[ 0.582387] Advanced Linux Sound Architecture Driver Initialized.
[ 0.582598] PCI: Using ACPI for IRQ routing
[ 0.583492] PCI: pci_cache_line_size set to 64 bytes
[ 0.583598] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
[ 0.583599] e820: reserve RAM buffer [mem 0xce59a000-0xcfffffff]
[ 0.583600] e820: reserve RAM buffer [mem 0x11f600000-0x11fffffff]
[ 0.583709] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.583716] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.586602] clocksource: Switched to clocksource tsc-early
[ 0.601401] VFS: Disk quotas dquot_6.6.0
[ 0.601421] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.601472] pnp: PnP ACPI init
[ 0.601655] system 00:00: [io 0x06a4] has been reserved
[ 0.601658] system 00:00: [io 0x06a0] has been reserved
[ 0.601664] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.601767] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.601770] system 00:01: [io 0xffff] has been reserved
[ 0.601771] system 00:01: [io 0xffff] has been reserved
[ 0.601773] system 00:01: [io 0xffff] has been reserved
[ 0.601775] system 00:01: [io 0x0800-0x08fe] has been reserved
[ 0.601777] system 00:01: [io 0x0900-0x09fe] has been reserved
[ 0.601779] system 00:01: [io 0x0a00-0x0afe] has been reserved
[ 0.601781] system 00:01: [io 0x0b00-0x0bfe] has been reserved
[ 0.601783] system 00:01: [io 0x1800-0x18fe] has been reserved
[ 0.601785] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.601787] system 00:01: [mem 0xfe800000-0xfe80ffff] has been reserved
[ 0.601792] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.601812] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.601859] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.601864] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.601882] pnp 00:04: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
[ 0.601898] pnp 00:05: Plug and Play ACPI device, IDs LEN2004 PNP0f13 (active)
[ 0.602023] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.602026] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.602028] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.602029] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.602032] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.602033] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.602035] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.602037] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.602039] system 00:06: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.602041] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.602043] system 00:06: [mem 0xffffffff-0x100000ffe] could not be reserved
[ 0.602047] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.602434] pnp 00:07: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
[ 0.602643] pnp: PnP ACPI: found 8 devices
[ 0.607375] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.607446] NET: Registered protocol family 2
[ 0.607509] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.608126] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.608138] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.608199] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 0.608283] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.608311] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.608324] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.608363] NET: Registered protocol family 1
[ 0.608377] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.608389] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.608393] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.608398] pci 0000:00:1c.1: bridge window [mem 0xf2400000-0xf24fffff]
[ 0.608406] pci 0000:00:1c.2: PCI bridge to [bus 03-07]
[ 0.608409] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
[ 0.608414] pci 0000:00:1c.2: bridge window [mem 0xf1c00000-0xf23fffff]
[ 0.608419] pci 0000:00:1c.2: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[ 0.608425] pci 0000:00:1c.4: PCI bridge to [bus 08-0c]
[ 0.608428] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.608432] pci 0000:00:1c.4: bridge window [mem 0xf1400000-0xf1bfffff]
[ 0.608436] pci 0000:00:1c.4: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[ 0.608443] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.608445] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.608447] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.608449] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff window]
[ 0.608451] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.608453] pci_bus 0000:02: resource 1 [mem 0xf2400000-0xf24fffff]
[ 0.608454] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
[ 0.608456] pci_bus 0000:03: resource 1 [mem 0xf1c00000-0xf23fffff]
[ 0.608458] pci_bus 0000:03: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref]
[ 0.608460] pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
[ 0.608461] pci_bus 0000:08: resource 1 [mem 0xf1400000-0xf1bfffff]
[ 0.608463] pci_bus 0000:08: resource 2 [mem 0xf0c00000-0xf13fffff 64bit pref]
[ 0.608546] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.608632] pci 0000:00:14.0: can't derive routing for PCI INT A
[ 0.608634] pci 0000:00:14.0: PCI INT A: no GSI
[ 0.609029] PCI: CLS 64 bytes, default 64
[ 0.609071] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.609073] software IO TLB: mapped [mem 0x00000000ca59a000-0x00000000ce59a000] (64MB)
[ 0.609206] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 0.609208] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 0.609210] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 0.609211] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 0.609212] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 0.609531] kvm: already loaded vendor module 'kvm_intel'
[ 0.609777] check: Scanning for low memory corruption every 60 seconds
[ 0.610290] Initialise system trusted keyrings
[ 0.610327] workingset: timestamp_bits=62 max_order=20 bucket_order=0
[ 0.611576] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.611640] Registering esdfs 0.2
[ 0.611680] alt_syscall: table 'read_write_test' available.
[ 0.611690] alt_syscall: table 'android' available.
[ 0.611700] alt_syscall: table 'android_permissive' available.
[ 0.611708] alt_syscall: table 'third_party' available.
[ 0.611715] alt_syscall: table 'third_party_permissive' available.
[ 0.611722] alt_syscall: table 'complete' available.
[ 0.611728] alt_syscall: table 'complete_permissive' available.
[ 0.623315] Key type asymmetric registered
[ 0.623318] Asymmetric key parser 'x509' registered
[ 0.623325] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 0.623327] io scheduler mq-deadline registered
[ 0.623329] io scheduler kyber registered
[ 0.623352] io scheduler bfq registered
[ 0.623450] pci 0000:00:1c.0: attach allowed to drvr pcieport [internal device]
[ 0.623637] pci 0000:00:1c.1: attach allowed to drvr pcieport [internal device]
[ 0.623777] pci 0000:00:1c.2: attach allowed to drvr pcieport [internal device]
[ 0.623915] pci 0000:00:1c.4: attach allowed to drvr pcieport [internal device]
[ 0.624077] intel_idle: MWAIT substates: 0x42120
[ 0.624079] intel_idle: v0.5.1 model 0x3C
[ 0.624271] intel_idle: Local APIC timer is reliable in all C-states
[ 0.624425] ACPI: AC Adapter [ADP1] (on-line)
[ 0.624485] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 0.624616] ACPI: Lid Switch [LID0]
[ 0.624652] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.625610] ACPI: Sleep Button [SLPB]
[ 0.625644] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.626608] ACPI: Power Button [PWRF]
[ 0.627372] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.627375] ACPI: Thermal Zone [TZS0] (52 C)
[ 0.627548] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.627550] ACPI: Thermal Zone [TZS1] (40 C)
[ 0.628200] Non-volatile memory driver v1.3
[ 0.628291] battery: ACPI: Battery Slot [BAT0] (battery present)
[ 0.631434] tpm_tis 00:07: 1.2 TPM (device-id 0x0, rev-id 78)
[ 0.702475] ACPI: bus type drm_connector registered
[ 0.702593] usbcore: registered new interface driver udl
[ 0.703852] loop: module loaded
[ 0.703917] lkdtm: No crash points registered, enable through debugfs
[ 0.703962] pci 0000:00:1f.0: attach allowed to drvr lpc_ich [internal device]
[ 0.704019] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20200925/utaddress-204)
[ 0.704026] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 0.704029] ACPI Warning: SystemIO range 0x0000000000000840-0x000000000000084F conflicts with OpRegion 0x0000000000000800-0x0000000000000BFF (\GPR) (20200925/utaddress-204)
[ 0.704034] ACPI Warning: SystemIO range 0x0000000000000840-0x000000000000084F conflicts with OpRegion 0x0000000000000800-0x000000000000087F (\_SB.PCI0.LPCB.LPIO) (20200925/utaddress-204)
[ 0.704037] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 0.704039] ACPI Warning: SystemIO range 0x0000000000000830-0x000000000000083F conflicts with OpRegion 0x0000000000000800-0x000000000000083F (\GPRL) (20200925/utaddress-204)
[ 0.704043] ACPI Warning: SystemIO range 0x0000000000000830-0x000000000000083F conflicts with OpRegion 0x0000000000000800-0x0000000000000BFF (\GPR) (20200925/utaddress-204)
[ 0.704047] ACPI Warning: SystemIO range 0x0000000000000830-0x000000000000083F conflicts with OpRegion 0x0000000000000800-0x000000000000087F (\_SB.PCI0.LPCB.LPIO) (20200925/utaddress-204)
[ 0.704050] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 0.704052] ACPI Warning: SystemIO range 0x0000000000000800-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000083F (\GPRL) (20200925/utaddress-204)
[ 0.704055] ACPI Warning: SystemIO range 0x0000000000000800-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x0000000000000BFF (\GPR) (20200925/utaddress-204)
[ 0.704059] ACPI Warning: SystemIO range 0x0000000000000800-0x000000000000082F conflicts with OpRegion 0x0000000000000810-0x0000000000000813 (\IO_D) (20200925/utaddress-204)
[ 0.704063] ACPI Warning: SystemIO range 0x0000000000000800-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000087F (\_SB.PCI0.LPCB.LPIO) (20200925/utaddress-204)
[ 0.704066] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 0.704068] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 0.704374] pci 0000:00:1f.2: attach allowed to drvr ahci [internal device]
[ 0.704383] ahci 0000:00:1f.2: version 3.0
[ 0.704567] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x11 impl SATA mode
[ 0.704570] ahci 0000:00:1f.2: flags: 64bit ncq ilck pm led clo pio slum part ems apst
[ 0.708093] scsi host0: ahci
[ 0.708363] scsi host1: ahci
[ 0.708480] scsi host2: ahci
[ 0.708564] scsi host3: ahci
[ 0.708658] scsi host4: ahci
[ 0.708694] ata1: SATA max UDMA/133 abar m2048@0xf253c000 port 0xf253c100 irq 28
[ 0.708696] ata2: DUMMY
[ 0.708697] ata3: DUMMY
[ 0.708698] ata4: DUMMY
[ 0.708701] ata5: SATA max UDMA/133 abar m2048@0xf253c000 port 0xf253c300 irq 28
[ 0.708773] PPP generic driver version 2.4.2
[ 0.708819] PPP MPPE Compression module registered
[ 0.708860] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.708863] ehci-pci: EHCI PCI platform driver
[ 0.708870] pci 0000:00:1a.0: attach allowed to drvr ehci-pci [internal device]
[ 0.708983] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.709012] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.709022] ehci-pci 0000:00:1a.0: debug port 2
[ 0.712926] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 0.712938] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf253e000
[ 0.719644] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.719700] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 0.719703] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.719705] usb usb1: Product: EHCI Host Controller
[ 0.719707] usb usb1: Manufacturer: Linux 5.10.176-22119-gce5c4feabae6-dirty ehci_hcd
[ 0.719708] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.719884] hub 1-0:1.0: USB hub found
[ 0.719892] hub 1-0:1.0: 3 ports detected
[ 0.720056] pci 0000:00:1d.0: attach allowed to drvr ehci-pci [internal device]
[ 0.720185] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.720233] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.720244] ehci-pci 0000:00:1d.0: debug port 2
[ 0.724156] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 0.724168] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf253d000
[ 0.730644] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.730709] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 0.730711] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.730713] usb usb2: Product: EHCI Host Controller
[ 0.730715] usb usb2: Manufacturer: Linux 5.10.176-22119-gce5c4feabae6-dirty ehci_hcd
[ 0.730716] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.730893] hub 2-0:1.0: USB hub found
[ 0.730901] hub 2-0:1.0: 3 ports detected
[ 0.731079] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.731084] ohci-pci: OHCI PCI platform driver
[ 0.731094] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.731115] pci 0000:00:14.0: attach allowed to drvr xhci_hcd [internal device]
[ 0.731207] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
[ 0.731209] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
[ 0.731239] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.731356] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 0.732425] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 0.732431] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 0.732606] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.732721] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 0.732726] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 0.732760] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 0.732761] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.732763] usb usb3: Product: xHCI Host Controller
[ 0.732765] usb usb3: Manufacturer: Linux 5.10.176-22119-gce5c4feabae6-dirty xhci-hcd
[ 0.732766] usb usb3: SerialNumber: 0000:00:14.0
[ 0.732942] hub 3-0:1.0: USB hub found
[ 0.732961] hub 3-0:1.0: 14 ports detected
[ 0.734424] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[ 0.734427] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.734428] usb usb4: Product: xHCI Host Controller
[ 0.734430] usb usb4: Manufacturer: Linux 5.10.176-22119-gce5c4feabae6-dirty xhci-hcd
[ 0.734431] usb usb4: SerialNumber: 0000:00:14.0
[ 0.734532] hub 4-0:1.0: USB hub found
[ 0.734546] hub 4-0:1.0: 4 ports detected
[ 0.735013] usbcore: registered new interface driver cdc_acm
[ 0.735014] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 0.735083] usbcore: registered new interface driver uas
[ 0.735102] usbcore: registered new interface driver usb-storage
[ 0.735110] usbcore: registered new interface driver ums-realtek
[ 0.735145] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 0.736993] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.737022] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.737215] rtc_cmos 00:02: RTC can wake from S4
[ 0.737436] rtc_cmos 00:02: registered as rtc0
[ 0.737440] rtc_cmos 00:02: GPIO lookup for consumer wp
[ 0.737441] rtc_cmos 00:02: using ACPI for GPIO lookup
[ 0.737443] acpi PNP0B00:00: GPIO: looking up wp-gpios
[ 0.737445] acpi PNP0B00:00: GPIO: looking up wp-gpio
[ 0.737446] rtc_cmos 00:02: using lookup tables for GPIO lookup
[ 0.737447] rtc_cmos 00:02: No GPIO consumer wp found
[ 0.737467] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.737477] i2c /dev entries driver
[ 0.737487] pci 0000:00:1f.3: attach allowed to drvr i801_smbus [internal device]
[ 0.737593] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 0.737929] i2c i2c-0: 1/2 memory slots populated (from DMI)
[ 0.738211] i2c i2c-0: Successfully instantiated SPD at 0x50
[ 0.738523] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[ 0.738576] device-mapper: verity-chromeos: dm-verity-chromeos registered
[ 0.738581] intel_pstate: Intel P-state driver initializing
[ 0.738717] sdhci: Secure Digital Host Controller Interface driver
[ 0.738721] sdhci: Copyright(c) Pierre Ossman
[ 0.739345] hid: raw HID events driver (C) Jiri Kosina
[ 0.739451] usbcore: registered new interface driver usbhid
[ 0.739453] usbhid: USB HID core driver
[ 0.739506] ashmem: initialized
[ 0.739859] cros_ec_lpcs: unsupported system.
[ 0.739948] intel_rapl_common: Found RAPL domain package
[ 0.739950] intel_rapl_common: Found RAPL domain core
[ 0.739952] intel_rapl_common: Found RAPL domain uncore
[ 0.739954] intel_rapl_common: Found RAPL domain dram
[ 0.740564] GACT probability NOT on
[ 0.740800] xt_time: kernel timezone is -0000
[ 0.740918] Initializing XFRM netlink socket
[ 0.741011] NET: Registered protocol family 10
[ 0.741213] Segment Routing with IPv6
[ 0.741269] NET: Registered protocol family 17
[ 0.741275] NET: Registered protocol family 15
[ 0.741564] microcode: sig=0x306c3, pf=0x10, revision=0x28
[ 0.741593] microcode: Microcode Update Driver: v2.2.
[ 0.741597] IPI shorthand broadcast: enabled
[ 0.741605] AVX2 version of gcm_enc/dec engaged.
[ 0.741637] AES CTR mode by8 optimization enabled
[ 0.742016] sched_clock: Marking stable (741720110, 284193)->(744572897, -2568594)
[ 0.742064] registered taskstats version 1
[ 0.742067] Loading compiled-in X.509 certificates
[ 0.742823] Loaded X.509 cert 'Build time autogenerated kernel key: ab0193a8495231b37afc09e758c254de07ed811b'
[ 0.742863] Key type .fscrypt registered
[ 0.742865] Key type fscrypt-provisioning registered
[ 0.743007] Key type encrypted registered
[ 0.743185] PM: Magic number: 3:94:283
[ 0.743298] ALSA device list:
[ 0.743300] No soundcards found.
[ 0.743308] Warning: unable to open an initial console. Fallback to ttynull.
[ 0.743312] printk: console [ttynull0] enabled
[ 0.758579] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.956645] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 0.972649] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 0.972670] usb 3-11: new full-speed USB device number 2 using xhci_hcd
[ 1.016761] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.016780] ata1: SATA link down (SStatus 0 SControl 300)
[ 1.018874] ata5.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.018878] ata5.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.019521] ata5.00: ATA-7: ST9160823AS, 3.CME, max UDMA/100
[ 1.019526] ata5.00: 312581808 sectors, multi 0: LBA48 NCQ (depth 32)
[ 1.020435] ata5.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.020439] ata5.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.021081] ata5.00: configured for UDMA/100
[ 1.034876] scsi 4:0:0:0: Direct-Access ATA ST9160823AS E PQ: 0 ANSI: 5
[ 1.035595] sd 4:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[ 1.035614] sd 4:0:0:0: [sda] Write Protect is off
[ 1.035619] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.035685] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.085056] usb 1-1: New USB device found, idVendor=8087, idProduct=8008, bcdDevice= 0.05
[ 1.085060] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.085469] hub 1-1:1.0: USB hub found
[ 1.085637] hub 1-1:1.0: 6 ports detected
[ 1.100048] usb 3-11: New USB device found, idVendor=0bda, idProduct=8761, bcdDevice= 2.00
[ 1.100054] usb 3-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.100055] usb 3-11: Product: Bluetooth Radio
[ 1.100057] usb 3-11: Manufacturer: Realtek
[ 1.100059] usb 3-11: SerialNumber: 00e04c000001
[ 1.101009] usb 2-1: New USB device found, idVendor=8087, idProduct=8000, bcdDevice= 0.05
[ 1.101013] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.101279] hub 2-1:1.0: USB hub found
[ 1.101514] hub 2-1:1.0: 8 ports detected
[ 1.106255] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12
[ 1.106828] sd 4:0:0:0: [sda] Attached SCSI disk
[ 1.130330] EXT4-fs (sda3): mounting ext2 file system using the ext4 subsystem
[ 1.142960] EXT4-fs (sda3): mounted filesystem without journal. Opts: (null)
[ 1.142976] VFS: Mounted root (ext2 filesystem) readonly on device 8:3.
[ 1.160487] devtmpfs: mounted
[ 1.161448] Freeing unused kernel image (initmem) memory: 1788K
[ 1.161484] Write protecting the kernel read-only data: 26624k
[ 1.161918] Freeing unused kernel image (text/rodata gap) memory: 2032K
[ 1.162098] Freeing unused kernel image (rodata/data gap) memory: 732K
[ 1.162132] Run /sbin/init as init process
[ 1.162134] with arguments:
[ 1.162135] /sbin/init
[ 1.162135] noresume
[ 1.162136] noswap
[ 1.162137] cros_legacy
[ 1.162138] cros_debug
[ 1.162139] with environment:
[ 1.162148] HOME=/
[ 1.162149] TERM=linux
[ 1.162150] BOOT_IMAGE=vmlinuz.A
[ 1.162151] boot=local
[ 1.215621] usb 3-12: new high-speed USB device number 3 using xhci_hcd
[ 1.378057] usb 3-12: New USB device found, idVendor=0bda, idProduct=5719, bcdDevice= 0.20
[ 1.378062] usb 3-12: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 1.378064] usb 3-12: Product: Integrated Camera
[ 1.378066] usb 3-12: Manufacturer: 0C17659AA38R00B
[ 1.378067] usb 3-12: SerialNumber: 200901010001
[ 1.658647] tsc: Refined TSC clocksource calibration: 2494.223 MHz
[ 1.658657] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f3e8602d1, max_idle_ns: 440795241926 ns
[ 1.658684] clocksource: Switched to clocksource tsc
[ 1.803074] audit: type=1404 audit(1681309080.711:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[ 1.876943] SELinux: Permission watch in class filesystem not defined in policy.
[ 1.876949] SELinux: Permission watch_mount in class file not defined in policy.
[ 1.876950] SELinux: Permission watch_sb in class file not defined in policy.
[ 1.876951] SELinux: Permission watch_with_perm in class file not defined in policy.
[ 1.876952] SELinux: Permission watch_reads in class file not defined in policy.
[ 1.876955] SELinux: Permission watch_mount in class dir not defined in policy.
[ 1.876956] SELinux: Permission watch_sb in class dir not defined in policy.
[ 1.876957] SELinux: Permission watch_with_perm in class dir not defined in policy.
[ 1.876958] SELinux: Permission watch_reads in class dir not defined in policy.
[ 1.876961] SELinux: Permission watch_mount in class lnk_file not defined in policy.
[ 1.876962] SELinux: Permission watch_sb in class lnk_file not defined in policy.
[ 1.876963] SELinux: Permission watch_with_perm in class lnk_file not defined in policy.
[ 1.876964] SELinux: Permission watch_reads in class lnk_file not defined in policy.
[ 1.876966] SELinux: Permission watch_mount in class chr_file not defined in policy.
[ 1.876967] SELinux: Permission watch_sb in class chr_file not defined in policy.
[ 1.876968] SELinux: Permission watch_with_perm in class chr_file not defined in policy.
[ 1.876969] SELinux: Permission watch_reads in class chr_file not defined in policy.
[ 1.876970] SELinux: Permission watch_mount in class blk_file not defined in policy.
[ 1.876971] SELinux: Permission watch_sb in class blk_file not defined in policy.
[ 1.876973] SELinux: Permission watch_with_perm in class blk_file not defined in policy.
[ 1.876974] SELinux: Permission watch_reads in class blk_file not defined in policy.
[ 1.876975] SELinux: Permission watch_mount in class sock_file not defined in policy.
[ 1.876976] SELinux: Permission watch_sb in class sock_file not defined in policy.
[ 1.876977] SELinux: Permission watch_with_perm in class sock_file not defined in policy.
[ 1.876978] SELinux: Permission watch_reads in class sock_file not defined in policy.
[ 1.876980] SELinux: Permission watch_mount in class fifo_file not defined in policy.
[ 1.876981] SELinux: Permission watch_sb in class fifo_file not defined in policy.
[ 1.876982] SELinux: Permission watch_with_perm in class fifo_file not defined in policy.
[ 1.876983] SELinux: Permission watch_reads in class fifo_file not defined in policy.
[ 1.876995] SELinux: Permission nlmsg_readpriv in class netlink_route_socket not defined in policy.
[ 1.876997] SELinux: Permission nlmsg_getneigh in class netlink_route_socket not defined in policy.
[ 1.877011] SELinux: Permission perfmon in class capability2 not defined in policy.
[ 1.877013] SELinux: Permission bpf in class capability2 not defined in policy.
[ 1.877014] SELinux: Permission checkpoint_restore in class capability2 not defined in policy.
[ 1.877019] SELinux: Permission perfmon in class cap2_userns not defined in policy.
[ 1.877020] SELinux: Permission bpf in class cap2_userns not defined in policy.
[ 1.877021] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy.
[ 1.877023] SELinux: Permission name_connect in class sctp_socket not defined in policy.
[ 1.877024] SELinux: Permission association in class sctp_socket not defined in policy.
[ 1.877042] SELinux: Class infiniband_pkey not defined in policy.
[ 1.877043] SELinux: Class infiniband_endport not defined in policy.
[ 1.877044] SELinux: Class xdp_socket not defined in policy.
[ 1.877045] SELinux: Class perf_event not defined in policy.
[ 1.877046] SELinux: Class lockdown not defined in policy.
[ 1.877047] SELinux: the above unknown classes and permissions will be denied
[ 1.878071] SELinux: policy capability network_peer_controls=0
[ 1.878073] SELinux: policy capability open_perms=0
[ 1.878084] SELinux: policy capability extended_socket_class=0
[ 1.878085] SELinux: policy capability always_check_network=0
[ 1.878086] SELinux: policy capability cgroup_seclabel=0
[ 1.878087] SELinux: policy capability nnp_nosuid_transition=1
[ 1.878088] SELinux: policy capability genfs_seclabel_symlinks=0
[ 1.878089] SELinux: policy capability ioctl_skip_cloexec=0
[ 1.888205] audit: type=1403 audit(1681309080.795:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[ 4.336799] SELinux: Context u:object_r:storage_file:s0 is not valid (left unmapped).
[ 4.340385] audit: type=1400 audit(1681309083.247:4): avc: granted { execute } for pid=156 comm="sh" name="crash_reporter" dev="sda3" ino=27558 scontext=u:r:cros_init_scripts:s0 tcontext=u:object_r:cros_crash_reporter_exec:s0 tclass=file
[ 5.338015] init: early-failure main process (157) terminated with status 124
[ 6.288297] udevd[176]: starting version 225
[ 6.551347] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 7.043702] EXT4-fs (sda1): mounting with "discard" option, but the device does not support discard
[ 7.043712] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: commit=0,discard
[ 7.107896] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts:
[ 7.284416] EXT4-fs (sda1): re-mounted. Opts:
[ 8.437823] LoadPin: sda3 (8:3): writable
[ 8.437832] LoadPin: enforcement can be disabled.
[ 8.437843] LoadPin: kernel-module pinned obj="/lib/modules/5.10.176-22119-gce5c4feabae6-dirty/kernel/drivers/video/backlight/backlight.ko.gz" pid=192 cmdline="udevd --daemon"
[ 8.715122] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: discard,commit=600
[ 8.726706] pci 0000:00:02.0: attach allowed to drvr i915 [internal device]
[ 8.727217] [drm] ACPI BIOS requests an excessive sleep of 5000 ms, using 1500 ms instead
[ 8.784287] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 8.786531] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 8.786808] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[ 8.941700] audit: type=1400 audit(1681309087.849:5): avc: granted { execute } for pid=361 comm="chromeos_startu" name="crash_reporter" dev="sda3" ino=27558 scontext=u:r:chromeos_startup:s0 tcontext=u:object_r:cros_crash_reporter_exec:s0 tclass=file
[ 9.982530] frecon[386]: Frecon using drm driver i915, version 1.6, date(20201103), desc(Intel Graphics) using atomic
[ 10.691498] EXT4-fs (sda1): re-mounted. Opts: discard,resgid=20119
[ 10.937307] SELinux: Context u:object_r:debugfs_sw_sync:s0 is not valid (left unmapped).
[ 10.937336] audit: type=1400 audit(1681309089.844:6): avc: denied { associate } for pid=491 comm="restorecon" name="sw_sync" dev="debugfs" ino=24608 scontext=u:object_r:unlabeled:s0 tcontext=u:object_r:debugfs:s0 tclass=filesystem permissive=0 srawcon="u:object_r:debugfs_sw_sync:s0"
[ 10.951307] init: debugfs-init main process (491) terminated with status 255
[ 11.008485] low_mem: threshold[0] 189 MB
[ 11.008489] low_mem: threshold[1] 1455 MB
[ 11.163283] frecon[386]: Frecon using drm driver i915, version 1.6, date(20201103), desc(Intel Graphics) using atomic
[ 11.649313] audit: type=1400 audit(1681309090.557:7): avc: denied { search } for pid=582 comm="rsyslogd" name="hosts.d" dev="sda3" ino=2051 scontext=u:r:cros_rsyslogd:s0 tcontext=u:object_r:cros_run_crosdns:s0 tclass=dir permissive=0
[ 11.669427] audit: type=1400 audit(1681309090.576:8): avc: denied { create } for pid=582 comm="rsyslogd" scontext=u:r:cros_rsyslogd:s0 tcontext=u:r:cros_rsyslogd:s0 tclass=udp_socket permissive=0
[ 11.911371] zram: Added device: zram0
[ 11.992100] audit: type=1400 audit(1681309090.899:9): avc: denied { read } for pid=582 comm="rsyslogd" name="ngroups_max" dev="proc" ino=197 scontext=u:r:cros_rsyslogd:s0 tcontext=u:object_r:proc_sys_kernel:s0 tclass=file permissive=0
[ 12.331224] zram0: detected capacity change from 0 to 7452618752
[ 12.463580] x86/PAT: flashrom:632 conflicting memory types f0000000-100000000 uncached-minus<->write-combining
[ 12.463585] x86/PAT: memtype_reserve failed [mem 0xf0000000-0xffffffff], track uncached-minus, req uncached-minus
[ 12.473413] x86/PAT: flashrom:632 conflicting memory types f0000000-100000000 uncached-minus<->write-combining
[ 12.473415] x86/PAT: memtype_reserve failed [mem 0xf0000000-0xffffffff], track uncached-minus, req uncached-minus
[ 12.535983] Adding 7277944k swap on /dev/zram0. Priority:-2 extents:1 across:7277944k SS
[ 12.660427] x86/PAT: flashrom:652 conflicting memory types f0000000-100000000 uncached-minus<->write-combining
[ 12.660431] x86/PAT: memtype_reserve failed [mem 0xf0000000-0xffffffff], track uncached-minus, req uncached-minus
[ 12.670377] x86/PAT: flashrom:652 conflicting memory types f0000000-100000000 uncached-minus<->write-combining
[ 12.670379] x86/PAT: memtype_reserve failed [mem 0xf0000000-0xffffffff], track uncached-minus, req uncached-minus
[ 12.740500] init: vpd-log main process (493) terminated with status 1
[ 16.126779] pps_core: LinuxPPS API ver. 1 registered
[ 16.126786] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 16.152914] PTP clock support registered
[ 16.545683] e1000e: Intel(R) PRO/1000 Network Driver
[ 16.545689] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 16.545704] pci 0000:00:19.0: attach allowed to drvr e1000e [internal device]
[ 16.546024] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 16.617160] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[ 16.679972] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:e7:0c:ab
[ 16.679988] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 16.680039] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
[ 18.216823] Bluetooth: Core ver 2.22
[ 18.216866] NET: Registered protocol family 31
[ 18.216869] Bluetooth: HCI device and connection manager initialized
[ 18.216876] Bluetooth: HCI socket layer initialized
[ 18.216880] Bluetooth: L2CAP socket layer initialized
[ 18.216889] Bluetooth: SCO socket layer initialized
[ 19.728195] pci 0000:02:00.0: attach allowed to drvr rtl8192ee [internal device]
[ 19.738703] rtl8192ee: Using firmware rtlwifi/rtl8192eefw.bin
[ 19.741892] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[ 19.742493] rtlwifi: rtlwifi: wireless switch is on
[ 25.642936] e1000e 0000:00:19.0 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 25.642979] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 25.782144] 8021q: 802.1Q VLAN Support v1.8
[ 28.066131] init: failsafe-delay main process (656) killed by TERM signal
[ 29.095325] fuse: init (API version 7.32)
[ 29.146379] pci 0000:08:00.0: attach allowed to drvr rtsx_pci [internal device]
[ 29.152994] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[ 29.153128] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[ 29.173967] thinkpad_acpi: ThinkPad ACPI Extras v0.26
[ 29.173973] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 29.173975] thinkpad_acpi: ThinkPad BIOS J4ET60WW(1.60), EC unknown
[ 29.173977] thinkpad_acpi: Lenovo ThinkPad L440, model 20ASS07Y00
[ 29.174997] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 29.175000] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 29.177540] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[ 29.178176] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[ 29.182384] thinkpad_acpi: battery 1 registered (start 0, stop 100)
[ 29.182393] battery: new extension: ThinkPad Battery Extension
[ 29.182459] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[ 29.261414] udevd[1425]: Process '/bin/chown -R root:wilco_dtc /sys/firmware/dmi/tables' failed with exit code 1.
[ 29.427817] init: featured main process (1388) terminated with status 69
[ 29.427829] init: featured main process ended, respawning
[ 29.481390] init: featured main process (2047) terminated with status 69
[ 29.481403] init: featured main process ended, respawning
[ 29.496988] init: featured main process (2048) terminated with status 69
[ 29.497001] init: featured main process ended, respawning
[ 29.510928] init: featured main process (2049) terminated with status 69
[ 29.510940] init: featured main process ended, respawning
[ 29.533864] init: featured main process (2050) terminated with status 69
[ 29.533877] init: featured main process ended, respawning
[ 29.546529] init: featured main process (2051) terminated with status 69
[ 29.546542] init: featured main process ended, respawning
[ 29.559229] init: featured main process (2052) terminated with status 69
[ 29.559241] init: featured main process ended, respawning
[ 29.575467] init: featured main process (2053) terminated with status 69
[ 29.575485] init: featured main process ended, respawning
[ 29.610342] init: featured main process (2060) terminated with status 69
[ 29.610356] init: featured main process ended, respawning
[ 29.650257] init: featured main process (2063) terminated with status 69
[ 29.650270] init: featured main process ended, respawning
[ 29.678683] init: featured main process (2065) terminated with status 69
[ 29.678698] init: featured respawning too fast, stopped
[ 30.122306] pci 0000:00:03.0: attach allowed to drvr snd_hda_intel [internal device]
[ 30.122584] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[ 30.122842] pci 0000:00:1b.0: attach allowed to drvr snd_hda_intel [internal device]
[ 30.148551] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
[ 30.148752] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
[ 30.148822] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
[ 30.148881] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
[ 30.148939] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
[ 30.158413] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 30.158419] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 30.158422] snd_hda_codec_realtek hdaudioC1D0: hp_outs=2 (0x16/0x15/0x0/0x0/0x0)
[ 30.158424] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 30.158426] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 30.158429] snd_hda_codec_realtek hdaudioC1D0: Dock Mic=0x19
[ 30.158432] snd_hda_codec_realtek hdaudioC1D0: Mic=0x1a
[ 30.158434] snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
[ 30.296076] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
[ 30.296128] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
[ 30.296816] input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14
[ 30.296869] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
[ 30.573138] udevd[1425]: Unknown key identifier 'zoom'
[ 32.341340] IPv6: ADDRCONF(NETDEV_CHANGE): arc_ns0: link becomes ready
[ 32.341408] IPv6: ADDRCONF(NETDEV_CHANGE): veth0: link becomes ready
[ 32.358715] pci 0000:00:16.0: attach allowed to drvr mei_me [internal device]
[ 32.460538] IPv6: ADDRCONF(NETDEV_CHANGE): veth1: link becomes ready
[ 32.853235] psmouse serio1: synaptics: queried max coordinates: x [..5112], y [..3834]
[ 32.871323] usb 3-11: GPIO lookup for consumer reset
[ 32.871326] usb 3-11: using ACPI for GPIO lookup
[ 32.871328] acpi device:24: GPIO: looking up reset-gpios
[ 32.871330] acpi device:24: GPIO: looking up reset-gpio
[ 32.871332] usb 3-11: using lookup tables for GPIO lookup
[ 32.871333] usb 3-11: No GPIO consumer reset found
[ 32.871631] usbcore: registered new interface driver btusb
[ 32.872895] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000a lmp_ver=06 lmp_subver=8761
[ 32.873738] Bluetooth: hci0: RTL: rom_version status=0 version=2
[ 32.873743] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761a_fw.bin
[ 32.881898] psmouse serio1: synaptics: queried min coordinates: x [1024..], y [1024..]
[ 32.881904] psmouse serio1: synaptics: Trying to set up SMBus access
[ 32.881908] psmouse:synaptics_create_intertouch:1768: psmouse serio1: synaptics: topbuttonpad is: true
[ 32.913826] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761a_config.bin
[ 32.913856] bluetooth hci0: Direct firmware load for rtl_bt/rtl8761a_config.bin failed with error -2
[ 32.913862] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22176
[ 32.928169] mc: Linux media interface: v0.10
[ 33.089288] rmi4_smbus 0-002c: registering SMbus-connected sensor
[ 33.097337] videodev: Linux video capture interface: v2.00
[ 33.122860] usb 3-12: GPIO lookup for consumer privacy
[ 33.122863] usb 3-12: using ACPI for GPIO lookup
[ 33.122866] acpi device:25: GPIO: looking up privacy-gpios
[ 33.122868] acpi device:25: GPIO: looking up privacy-gpio
[ 33.122869] usb 3-12: using lookup tables for GPIO lookup
[ 33.122870] usb 3-12: No GPIO consumer privacy found
[ 33.122872] usb 3-12: Found UVC 1.00 device Integrated Camera (0bda:5719)
[ 33.124895] usb 3-12: Failed to query (GET_INFO) UVC control 13 on unit 2: -32 (exp. 1).
[ 33.124972] rmi4_f01 rmi4-00.fn01: found RMI device, manufacturer: Synaptics, product: TM2722-001, fw id: 0
[ 33.125588] usb 3-12: Failed to query (GET_INFO) UVC control 5 on unit 1: -32 (exp. 1).
[ 33.126950] usbcore: registered new interface driver uvcvideo
[ 33.162646] input: Synaptics TM2722-001 as /devices/rmi4-00/input/input17
[ 33.165480] serio: RMI4 PS/2 pass-through port at rmi4-00.fn03
[ 33.410251] cgroup: cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation
[ 33.531779] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 33.582365] input: TPPS/2 IBM TrackPoint as /devices/rmi4-00/rmi4-00.fn03/serio2/input/input18
[ 33.623340] init: update-engine post-start process (2719) terminated with status 1
[ 33.948792] Bluetooth: hci0: RTL: fw version 0x0e3e4380
[ 34.125352] NET: Registered protocol family 38
[ 35.082211] Bluetooth: RFCOMM socket layer initialized
[ 35.082232] Bluetooth: RFCOMM ver 1.11
[ 36.939656] init: send-boot-elog-metrics main process (2828) terminated with status 1
[ 36.984136] init: cros-camera main process (3136) terminated with status 127
[ 36.984179] init: cros-camera main process ended, respawning
[ 40.251494] init: ml-service (mojo_service) post-start process (3517) terminated with status 2
[ 40.410007] Bluetooth: quality report not supported
[ 120.316868] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #04!!!
[ 120.316981] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #04!!!
[ 134.545918] PM: suspend entry (deep)
[ 134.793586] Filesystems sync: 0.247 seconds
[ 134.793598] PM: Preparing system for sleep (deep)
[ 134.794909] Freezing user space processes ... (elapsed 0.001 seconds) done.
[ 134.796542] OOM killer disabled.
[ 134.796544] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 134.797726] PM: Suspending system (deep)
[ 134.797961] input input18: calling input_dev_suspend+0x0/0x5c @ 3937, parent: serio2
[ 134.797966] input input18: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.797973] psmouse serio2: calling serio_suspend+0x0/0x1d @ 3937, parent: rmi4-00.fn03
[ 134.866665] psmouse serio2: serio_suspend+0x0/0x1d returned 0 after 67105 usecs
[ 134.866677] input input17: calling input_dev_suspend+0x0/0x5c @ 3937, parent: rmi4-00
[ 134.866680] input input17: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866707] rmi4_smbus 0-002c: calling rmi_smb_suspend+0x0/0x48 [rmi_smbus] @ 7, parent: i2c-0
[ 134.866711] rfkill rfkill2: calling rfkill_suspend+0x0/0x21 @ 3937, parent: hci0
[ 134.866716] rfkill rfkill2: rfkill_suspend+0x0/0x21 returned 0 after 1 usecs
[ 134.866733] input input15: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card1
[ 134.866737] input input15: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866742] input input14: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card1
[ 134.866745] input input14: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866750] input input13: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card1
[ 134.866753] input input13: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866758] input input12: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card1
[ 134.866762] input input12: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866770] sound pcmC1D0c: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card1
[ 134.866773] sound pcmC1D0c: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866777] sound pcmC1D0p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card1
[ 134.866780] sound pcmC1D0p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866786] input input11: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card0
[ 134.866789] input input11: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866793] input input10: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card0
[ 134.866796] input input10: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866800] input input9: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card0
[ 134.866802] input input9: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866806] input input8: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card0
[ 134.866809] input input8: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866813] input input7: calling input_dev_suspend+0x0/0x5c @ 3937, parent: card0
[ 134.866815] input input7: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866820] sound pcmC0D10p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card0
[ 134.866822] sound pcmC0D10p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866826] sound pcmC0D9p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card0
[ 134.866829] sound pcmC0D9p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866832] sound pcmC0D8p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card0
[ 134.866835] sound pcmC0D8p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866839] sound pcmC0D7p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card0
[ 134.866841] sound pcmC0D7p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866845] sound pcmC0D3p: calling do_pcm_suspend+0x0/0x23 @ 3937, parent: card0
[ 134.866848] sound pcmC0D3p: do_pcm_suspend+0x0/0x23 returned 0 after 0 usecs
[ 134.866858] input input6: calling input_dev_suspend+0x0/0x5c @ 3937, parent: thinkpad_acpi
[ 134.866860] input input6: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.866865] leds platform::micmute: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866869] leds platform::micmute: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866873] leds platform::mute: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866876] leds platform::mute: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866882] leds tpacpi::thinkvantage: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866892] snd_hda_codec_realtek hdaudioC1D0: calling hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] @ 110, parent: 0000:00:1b.0
[ 134.866899] snd_hda_intel 0000:00:03.0: calling pci_pm_suspend+0x0/0x1de @ 111, parent: pci0000:00
[ 134.866902] leds tpacpi::thinkvantage: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866906] leds tpacpi::standby: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866909] leds tpacpi::standby: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866913] leds tpacpi::power: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866916] leds tpacpi::power: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866920] leds tpacpi::thinklight: calling led_suspend+0x0/0x3f @ 3937, parent: thinkpad_acpi
[ 134.866923] leds tpacpi::thinklight: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.866927] rfkill rfkill1: calling rfkill_suspend+0x0/0x21 @ 3937, parent: thinkpad_acpi
[ 134.866931] rfkill rfkill1: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[ 134.866937] thinkpad_hwmon thinkpad_hwmon: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.866940] thinkpad_hwmon thinkpad_hwmon: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.866946] thinkpad_acpi thinkpad_acpi: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.866951] thinkpad_acpi thinkpad_acpi: platform_pm_suspend+0x0/0x4a returned 0 after 1 usecs
[ 134.866972] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:08:00.0
[ 134.866975] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.866981] rfkill rfkill0: calling rfkill_suspend+0x0/0x21 @ 3937, parent: phy0
[ 134.866986] rfkill rfkill0: rfkill_suspend+0x0/0x21 returned 0 after 1 usecs
[ 134.866992] platform regulatory.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.866996] platform regulatory.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867018] ieee80211 phy0: calling wiphy_suspend+0x0/0xfe [cfg80211] @ 109, parent: 0000:02:00.0
[ 134.867037] snd_hda_intel 0000:00:03.0: pci_pm_suspend+0x0/0x1de returned 0 after 130 usecs
[ 134.867040] input input5: calling input_dev_suspend+0x0/0x5c @ 3937, parent: LNXVIDEO:00
[ 134.867045] input input5: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.867194] backlight intel_backlight: calling backlight_suspend+0x0/0x7a [backlight] @ 3937, parent: card0-eDP-1
[ 134.867199] backlight intel_backlight: backlight_suspend+0x0/0x7a [backlight] returned 0 after 0 usecs
[ 134.867244] rmi4_smbus 0-002c: rmi_smb_suspend+0x0/0x48 [rmi_smbus] returned 0 after 506 usecs
[ 134.867249] usb 3-12: calling usb_dev_suspend+0x0/0x14 @ 9, parent: usb3
[ 134.867255] usb 3-12: usb_dev_suspend+0x0/0x14 returned 0 after 1 usecs
[ 134.867269] leds input3::scrolllock: calling led_suspend+0x0/0x3f @ 3937, parent: input3
[ 134.867274] leds input3::scrolllock: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.867277] usb 2-1: calling usb_dev_suspend+0x0/0x14 @ 9, parent: usb2
[ 134.867279] usb 3-11: calling usb_dev_suspend+0x0/0x14 @ 7, parent: usb3
[ 134.867286] leds input3::capslock: calling led_suspend+0x0/0x3f @ 3937, parent: input3
[ 134.867334] leds input3::capslock: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.867339] leds input3::numlock: calling led_suspend+0x0/0x3f @ 3937, parent: input3
[ 134.867344] leds input3::numlock: led_suspend+0x0/0x3f returned 0 after 0 usecs
[ 134.867349] input input3: calling input_dev_suspend+0x0/0x5c @ 3937, parent: serio0
[ 134.867372] sd 4:0:0:0: calling scsi_bus_suspend+0x0/0x16 @ 112, parent: target4:0:0
[ 134.867376] usb 1-1: calling usb_dev_suspend+0x0/0x14 @ 111, parent: usb1
[ 134.867389] input input3: input_dev_suspend+0x0/0x5c returned 0 after 2 usecs
[ 134.867397] platform microcode: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.867400] platform microcode: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867412] snd-soc-dummy snd-soc-dummy: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.867416] snd-soc-dummy snd-soc-dummy: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867431] platform coretemp.1: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.867434] platform coretemp.1: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867440] platform coretemp.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.867443] platform coretemp.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867451] alarmtimer alarmtimer.1.auto: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: rtc0
[ 134.867458] alarmtimer alarmtimer.1.auto: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.867467] psmouse serio1: calling serio_suspend+0x0/0x1d @ 3937, parent: i8042
[ 134.876264] psmouse serio1: serio_suspend+0x0/0x1d returned 0 after 8588 usecs
[ 134.876273] atkbd serio0: calling serio_suspend+0x0/0x1d @ 3937, parent: i8042
[ 134.876756] sd 4:0:0:0: [sda] Synchronizing SCSI cache
[ 134.878629] atkbd serio0: serio_suspend+0x0/0x1d returned 0 after 2297 usecs
[ 134.878637] i8042 i8042: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.879136] i8042 i8042: platform_pm_suspend+0x0/0x4a returned 0 after 483 usecs
[ 134.879192] usb usb4: calling usb_dev_suspend+0x0/0x14 @ 3939, parent: 0000:00:14.0
[ 134.879245] platform intel-spi: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 134.879249] platform intel-spi: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.879257] platform iTCO_wdt.0.auto: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 134.879261] platform iTCO_wdt.0.auto: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.879288] input input2: calling input_dev_suspend+0x0/0x5c @ 3937, parent: LNXPWRBN:00
[ 134.879291] input input2: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.879296] input input1: calling input_dev_suspend+0x0/0x5c @ 3937, parent: PNP0C0E:00
[ 134.879299] input input1: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.879304] input input0: calling input_dev_suspend+0x0/0x5c @ 3937, parent: PNP0C0D:00
[ 134.879308] input input0: input_dev_suspend+0x0/0x5c returned 0 after 0 usecs
[ 134.879333] platform platform-framebuffer.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.879337] platform platform-framebuffer.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.879348] intel_rapl_msr intel_rapl_msr.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 134.879352] intel_rapl_msr intel_rapl_msr.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 134.879368] tpm_tis 00:07: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 134.879398] ata4: calling ata_port_pm_suspend+0x0/0x3e @ 3944, parent: 0000:00:1f.2
[ 134.879429] ata4: ata_port_pm_suspend+0x0/0x3e returned 0 after 21 usecs
[ 134.879435] ata3: calling ata_port_pm_suspend+0x0/0x3e @ 3945, parent: 0000:00:1f.2
[ 134.879437] ata2: calling ata_port_pm_suspend+0x0/0x3e @ 3944, parent: 0000:00:1f.2
[ 134.879461] ata2: ata_port_pm_suspend+0x0/0x3e returned 0 after 19 usecs
[ 134.879468] ata1: calling ata_port_pm_suspend+0x0/0x3e @ 3944, parent: 0000:00:1f.2
[ 134.879477] ata3: ata_port_pm_suspend+0x0/0x3e returned 0 after 29 usecs
[ 134.879514] ata1: ata_port_pm_suspend+0x0/0x3e returned 0 after 39 usecs
[ 134.879719] snd_hda_codec_realtek hdaudioC1D0: hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] returned 0 after 12524 usecs
[ 134.887436] sd 4:0:0:0: [sda] Stopping disk
[ 134.890702] usb 3-11: usb_dev_suspend+0x0/0x14 returned 0 after 22880 usecs
[ 134.890713] usb usb3: calling usb_dev_suspend+0x0/0x14 @ 3940, parent: 0000:00:14.0
[ 134.890773] usb usb3: usb_dev_suspend+0x0/0x14 returned 0 after 54 usecs
[ 134.901837] usb usb4: usb_dev_suspend+0x0/0x14 returned 0 after 22117 usecs
[ 134.923691] usb 1-1: usb_dev_suspend+0x0/0x14 returned 0 after 55016 usecs
[ 134.923708] usb usb1: calling usb_dev_suspend+0x0/0x14 @ 3941, parent: 0000:00:1a.0
[ 134.924367] usb usb1: usb_dev_suspend+0x0/0x14 returned 0 after 638 usecs
[ 134.924697] usb 2-1: usb_dev_suspend+0x0/0x14 returned 0 after 56099 usecs
[ 134.924712] usb usb2: calling usb_dev_suspend+0x0/0x14 @ 3938, parent: 0000:00:1d.0
[ 134.925366] usb usb2: usb_dev_suspend+0x0/0x14 returned 0 after 635 usecs
[ 135.050651] tpm_tis 00:07: pnp_bus_suspend+0x0/0x14 returned 0 after 167346 usecs
[ 135.050657] system 00:06: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050661] system 00:06: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050664] i8042 aux 00:05: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050668] i8042 aux 00:05: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050671] i8042 kbd 00:04: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050674] i8042 kbd 00:04: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050678] system 00:03: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050681] system 00:03: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050685] rtc_cmos 00:02: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050714] rtc_cmos 00:02: pnp_bus_suspend+0x0/0x14 returned 0 after 25 usecs
[ 135.050718] system 00:01: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050721] system 00:01: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050725] system 00:00: calling pnp_bus_suspend+0x0/0x14 @ 3937, parent: pnp0
[ 135.050728] system 00:00: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[ 135.050735] platform chromeos_acpi: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050738] platform chromeos_acpi: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050744] button LNXPWRBN:00: calling acpi_button_suspend+0x0/0x19 @ 3937, parent: LNXSYSTM:00
[ 135.050747] button LNXPWRBN:00: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[ 135.050751] platform INT33A0:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050753] platform INT33A0:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050757] platform INT340F:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050759] platform INT340F:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050764] acpi-wmi PNP0C14:02: calling acpi_subsys_suspend+0x0/0x55 @ 3937, parent: platform
[ 135.050767] acpi-wmi PNP0C14:02: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[ 135.050770] acpi-wmi PNP0C14:01: calling acpi_subsys_suspend+0x0/0x55 @ 3937, parent: platform
[ 135.050773] acpi-wmi PNP0C14:01: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[ 135.050776] acpi-wmi PNP0C14:00: calling acpi_subsys_suspend+0x0/0x55 @ 3937, parent: platform
[ 135.050779] acpi-wmi PNP0C14:00: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[ 135.050782] platform PNP0C0E:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050785] platform PNP0C0E:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050788] platform PNP0C0D:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050791] platform PNP0C0D:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050794] platform ACPI0003:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.050797] platform ACPI0003:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050800] platform PNP0C04:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 135.050803] platform PNP0C04:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050806] platform PNP0103:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 135.050809] platform PNP0103:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050812] platform INT0800:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 135.050814] platform INT0800:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050818] platform LEN0068:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: PNP0C09:00
[ 135.050820] platform LEN0068:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050824] platform PNP0C0A:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: PNP0C09:00
[ 135.050826] platform PNP0C0A:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050830] platform PNP0C09:00: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: 0000:00:1f.0
[ 135.050832] platform PNP0C09:00: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.050846] rtsx_pci 0000:08:00.0: calling pci_pm_suspend+0x0/0x1de @ 3938, parent: 0000:00:1c.4
[ 135.050909] thermal LNXTHERM:01: calling acpi_thermal_suspend+0x0/0x1d @ 3937, parent: LNXSYBUS:01
[ 135.050913] i801_smbus 0000:00:1f.3: calling pci_pm_suspend+0x0/0x1de @ 3941, parent: pci0000:00
[ 135.050919] i801_smbus 0000:00:1f.3: pci_pm_suspend+0x0/0x1de returned 0 after 2 usecs
[ 135.050922] thermal LNXTHERM:01: acpi_thermal_suspend+0x0/0x1d returned 0 after 1 usecs
[ 135.050926] rtsx_pci 0000:08:00.0: pci_pm_suspend+0x0/0x1de returned 0 after 68 usecs
[ 135.050931] thermal LNXTHERM:00: calling acpi_thermal_suspend+0x0/0x1d @ 3937, parent: LNXSYBUS:01
[ 135.050936] thermal LNXTHERM:00: acpi_thermal_suspend+0x0/0x1d returned 0 after 0 usecs
[ 135.050946] lpc_ich 0000:00:1f.0: calling pci_pm_suspend+0x0/0x1de @ 111, parent: pci0000:00
[ 135.050949] ehci-pci 0000:00:1d.0: calling pci_pm_suspend+0x0/0x1de @ 3941, parent: pci0000:00
[ 135.050952] button PNP0C0E:00: calling acpi_button_suspend+0x0/0x19 @ 3937, parent: LNXSYBUS:00
[ 135.050956] button PNP0C0E:00: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[ 135.050962] button PNP0C0D:00: calling acpi_button_suspend+0x0/0x19 @ 3937, parent: LNXSYBUS:00
[ 135.050965] button PNP0C0D:00: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[ 135.050969] ehci-pci 0000:00:1d.0: pci_pm_suspend+0x0/0x1de returned 0 after 12 usecs
[ 135.050973] lpc_ich 0000:00:1f.0: pci_pm_suspend+0x0/0x1de returned 0 after 0 usecs
[ 135.050976] pcieport 0000:00:1c.4: calling pci_pm_suspend+0x0/0x1de @ 3941, parent: pci0000:00
[ 135.050980] pcieport 0000:00:1c.4: pci_pm_suspend+0x0/0x1de returned 0 after 1 usecs
[ 135.050985] pcieport 0000:00:1c.2: calling pci_pm_suspend+0x0/0x1de @ 3941, parent: pci0000:00
[ 135.050990] pcieport 0000:00:1c.2: pci_pm_suspend+0x0/0x1de returned 0 after 0 usecs
[ 135.050994] pcieport 0000:00:1c.0: calling pci_pm_suspend+0x0/0x1de @ 3939, parent: pci0000:00
[ 135.051000] pcieport 0000:00:1c.0: pci_pm_suspend+0x0/0x1de returned 0 after 0 usecs
[ 135.051002] snd_hda_intel 0000:00:1b.0: calling pci_pm_suspend+0x0/0x1de @ 3941, parent: pci0000:00
[ 135.051009] platform dock.0: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.051011] ehci-pci 0000:00:1a.0: calling pci_pm_suspend+0x0/0x1de @ 3939, parent: pci0000:00
[ 135.051016] platform dock.0: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.051026] ehci-pci 0000:00:1a.0: pci_pm_suspend+0x0/0x1de returned 0 after 11 usecs
[ 135.051033] e1000e 0000:00:19.0: calling pci_pm_suspend+0x0/0x1de @ 3939, parent: pci0000:00
[ 135.051039] e1000e: EEE TX LPI TIMER: 00000011
[ 135.051052] mei_me 0000:00:16.0: calling pci_pm_suspend+0x0/0x1de @ 3940, parent: pci0000:00
[ 135.051094] ec PNP0C09:00: calling acpi_ec_suspend+0x0/0x7d @ 3937, parent: device:01
[ 135.051099] ec PNP0C09:00: acpi_ec_suspend+0x0/0x7d returned 0 after 0 usecs
[ 135.051132] PCCT PCCT: calling platform_pm_suspend+0x0/0x4a @ 3937, parent: platform
[ 135.051136] PCCT PCCT: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[ 135.051160] xhci_hcd 0000:00:14.0: calling pci_pm_suspend+0x0/0x1de @ 7, parent: pci0000:00
[ 135.051239] i915 0000:00:02.0: calling pci_pm_suspend+0x0/0x1de @ 110, parent: pci0000:00
[ 135.051263] xhci_hcd 0000:00:14.0: pci_pm_suspend+0x0/0x1de returned 0 after 96 usecs
[ 135.051271] pci 0000:00:00.0: calling pci_pm_suspend+0x0/0x1de @ 7, parent: pci0000:00
[ 135.051275] pci 0000:00:00.0: pci_pm_suspend+0x0/0x1de returned 0 after 0 usecs
[ 135.051454] mei_me 0000:00:16.0: pci_pm_suspend+0x0/0x1de returned 0 after 387 usecs
[ 135.051658] snd_hda_intel 0000:00:1b.0: pci_pm_suspend+0x0/0x1de returned 0 after 636 usecs
[ 135.054727] i915 0000:00:02.0: pci_pm_suspend+0x0/0x1de returned 0 after 3401 usecs
[ 135.460147] ieee80211 phy0: wiphy_suspend+0x0/0xfe [cfg80211] returned 0 after 579484 usecs
[ 135.460163] rtl8192ee 0000:02:00.0: calling pci_pm_suspend+0x0/0x1de @ 9, parent: 0000:00:1c.1
[ 135.460170] rtl8192ee 0000:02:00.0: pci_pm_suspend+0x0/0x1de returned 0 after 1 usecs
[ 135.460224] pcieport 0000:00:1c.1: calling pci_pm_suspend+0x0/0x1de @ 111, parent: pci0000:00
[ 135.460231] pcieport 0000:00:1c.1: pci_pm_suspend+0x0/0x1de returned 0 after 1 usecs
[ 135.492038] e1000e 0000:00:19.0: pci_pm_suspend+0x0/0x1de returned 0 after 430876 usecs
[ 137.107632] sd 4:0:0:0: scsi_bus_suspend+0x0/0x16 returned 0 after 2188831 usecs
[ 137.107656] scsi target4:0:0: calling scsi_bus_suspend+0x0/0x16 @ 134, parent: host4
[ 137.107662] scsi target4:0:0: scsi_bus_suspend+0x0/0x16 returned 0 after 0 usecs
[ 137.107689] scsi host4: calling scsi_bus_suspend+0x0/0x16 @ 3942, parent: ata5
[ 137.107695] scsi host4: scsi_bus_suspend+0x0/0x16 returned 0 after 0 usecs
[ 137.107754] ata5: calling ata_port_pm_suspend+0x0/0x3e @ 3943, parent: 0000:00:1f.2
[ 137.107900] ata5: ata_port_pm_suspend+0x0/0x3e returned 0 after 123 usecs
[ 137.107920] ahci 0000:00:1f.2: calling pci_pm_suspend+0x0/0x1de @ 3938, parent: pci0000:00
[ 137.107932] ahci 0000:00:1f.2: pci_pm_suspend+0x0/0x1de returned 0 after 7 usecs
[ 137.107945] PM: suspend of devices complete after 2311.169 msecs
[ 137.107948] PM: start suspend of devices complete after 2311.338 msecs
[ 137.108004] rmi4_smbus 0-002c: calling i2c_suspend_late+0x0/0x28 @ 7, parent: i2c-0
[ 137.108011] rmi4_smbus 0-002c: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108017] snd_hda_intel 0000:00:03.0: calling pci_pm_suspend_late+0x0/0x3a @ 3943, parent: pci0000:00
[ 137.108022] snd_hda_intel 0000:00:03.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108052] i2c i2c-9: calling i2c_suspend_late+0x0/0x28 @ 7, parent: card0-DP-2
[ 137.108057] i2c i2c-9: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108155] i2c i2c-8: calling i2c_suspend_late+0x0/0x28 @ 7, parent: card0-DP-1
[ 137.108161] i2c i2c-8: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108200] i2c i2c-7: calling i2c_suspend_late+0x0/0x28 @ 7, parent: card0-eDP-1
[ 137.108203] i2c i2c-7: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108231] i2c i2c-6: calling i2c_suspend_late+0x0/0x28 @ 7, parent: 0000:00:02.0
[ 137.108235] i2c i2c-6: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108243] i2c i2c-5: calling i2c_suspend_late+0x0/0x28 @ 3943, parent: 0000:00:02.0
[ 137.108246] i2c i2c-4: calling i2c_suspend_late+0x0/0x28 @ 7, parent: 0000:00:02.0
[ 137.108252] i2c i2c-3: calling i2c_suspend_late+0x0/0x28 @ 3938, parent: 0000:00:02.0
[ 137.108255] i2c i2c-4: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108259] i2c i2c-3: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108264] i2c i2c-2: calling i2c_suspend_late+0x0/0x28 @ 7, parent: 0000:00:02.0
[ 137.108267] i2c i2c-1: calling i2c_suspend_late+0x0/0x28 @ 3938, parent: 0000:00:02.0
[ 137.108270] i2c i2c-2: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108274] i2c i2c-1: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108284] i2c i2c-5: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108319] i2c 0-0050: calling i2c_suspend_late+0x0/0x28 @ 134, parent: i2c-0
[ 137.108325] i2c 0-0050: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108352] i2c i2c-0: calling i2c_suspend_late+0x0/0x28 @ 3938, parent: 0000:00:1f.3
[ 137.108357] i2c i2c-0: i2c_suspend_late+0x0/0x28 returned 0 after 0 usecs
[ 137.108493] acpi-wmi PNP0C14:02: calling acpi_subsys_suspend_late+0x0/0x52 @ 3937, parent: platform
[ 137.108498] acpi-wmi PNP0C14:02: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[ 137.108501] acpi-wmi PNP0C14:01: calling acpi_subsys_suspend_late+0x0/0x52 @ 3937, parent: platform
[ 137.108504] acpi-wmi PNP0C14:01: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[ 137.108508] acpi-wmi PNP0C14:00: calling acpi_subsys_suspend_late+0x0/0x52 @ 3937, parent: platform
[ 137.108510] acpi-wmi PNP0C14:00: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[ 137.108527] rtsx_pci 0000:08:00.0: calling pci_pm_suspend_late+0x0/0x3a @ 7, parent: 0000:00:1c.4
[ 137.108532] rtl8192ee 0000:02:00.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: 0000:00:1c.1
[ 137.108537] i801_smbus 0000:00:1f.3: calling pci_pm_suspend_late+0x0/0x3a @ 134, parent: pci0000:00
[ 137.108541] rtl8192ee 0000:02:00.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108543] i801_smbus 0000:00:1f.3: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108548] ahci 0000:00:1f.2: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108552] lpc_ich 0000:00:1f.0: calling pci_pm_suspend_late+0x0/0x3a @ 134, parent: pci0000:00
[ 137.108554] ahci 0000:00:1f.2: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108558] lpc_ich 0000:00:1f.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108562] ehci-pci 0000:00:1d.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108565] ehci-pci 0000:00:1d.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108571] pcieport 0000:00:1c.1: calling pci_pm_suspend_late+0x0/0x3a @ 112, parent: pci0000:00
[ 137.108574] rtsx_pci 0000:08:00.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108577] pcieport 0000:00:1c.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108588] pcieport 0000:00:1c.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108592] snd_hda_intel 0000:00:1b.0: calling pci_pm_suspend_late+0x0/0x3a @ 7, parent: pci0000:00
[ 137.108596] ehci-pci 0000:00:1a.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108598] snd_hda_intel 0000:00:1b.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108602] ehci-pci 0000:00:1a.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108605] e1000e 0000:00:19.0: calling pci_pm_suspend_late+0x0/0x3a @ 7, parent: pci0000:00
[ 137.108609] mei_me 0000:00:16.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108612] e1000e 0000:00:19.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108615] mei_me 0000:00:16.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108619] xhci_hcd 0000:00:14.0: calling pci_pm_suspend_late+0x0/0x3a @ 7, parent: pci0000:00
[ 137.108622] xhci_hcd 0000:00:14.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108624] i915 0000:00:02.0: calling pci_pm_suspend_late+0x0/0x3a @ 3942, parent: pci0000:00
[ 137.108628] pci 0000:00:00.0: calling pci_pm_suspend_late+0x0/0x3a @ 7, parent: pci0000:00
[ 137.108631] pci 0000:00:00.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108640] pcieport 0000:00:1c.1: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108647] pcieport 0000:00:1c.4: calling pci_pm_suspend_late+0x0/0x3a @ 134, parent: pci0000:00
[ 137.108651] pcieport 0000:00:1c.4: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.108664] pcieport 0000:00:1c.2: calling pci_pm_suspend_late+0x0/0x3a @ 3939, parent: pci0000:00
[ 137.108667] pcieport 0000:00:1c.2: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[ 137.120623] i915 0000:00:02.0: pci_pm_suspend_late+0x0/0x3a returned 0 after 11718 usecs
[ 137.120698] PM: late suspend of devices complete after 12.735 msecs
[ 137.120793] snd_hda_intel 0000:00:03.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 7, parent: pci0000:00
[ 137.120818] snd_hda_intel 0000:00:03.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 16 usecs
[ 137.121088] acpi-wmi PNP0C14:02: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 3937, parent: platform
[ 137.121093] acpi-wmi PNP0C14:02: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[ 137.121096] acpi-wmi PNP0C14:01: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 3937, parent: platform
[ 137.121099] acpi-wmi PNP0C14:01: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[ 137.121102] acpi-wmi PNP0C14:00: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 3937, parent: platform
[ 137.121105] acpi-wmi PNP0C14:00: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[ 137.121120] rtsx_pci 0000:08:00.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 3939, parent: 0000:00:1c.4
[ 137.121124] rtl8192ee 0000:02:00.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 3942, parent: 0000:00:1c.1
[ 137.121130] i801_smbus 0000:00:1f.3: calling pci_pm_suspend_noirq+0x0/0x260 @ 134, parent: pci0000:00
[ 137.121185] ec PNP0C09:00: calling acpi_ec_suspend_noirq+0x0/0x4c @ 3937, parent: device:01
[ 137.121188] ACPI: EC: interrupt blocked
[ 137.121193] ec PNP0C09:00: acpi_ec_suspend_noirq+0x0/0x4c returned 0 after 2 usecs
[ 137.121230] ahci 0000:00:1f.2: calling pci_pm_suspend_noirq+0x0/0x260 @ 7, parent: pci0000:00
[ 137.121289] lpc_ich 0000:00:1f.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 3938, parent: pci0000:00
[ 137.121430] i801_smbus 0000:00:1f.3: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 289 usecs
[ 137.121439] ehci-pci 0000:00:1d.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 134, parent: pci0000:00
[ 137.121461] lpc_ich 0000:00:1f.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 162 usecs
[ 137.121472] pcieport 0000:00:1c.2: calling pci_pm_suspend_noirq+0x0/0x260 @ 112, parent: pci0000:00
[ 137.121590] pcieport 0000:00:1c.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 111, parent: pci0000:00
[ 137.121594] snd_hda_intel 0000:00:1b.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 9, parent: pci0000:00
[ 137.121630] pcieport 0000:00:1c.2: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 150 usecs
[ 137.121638] ehci-pci 0000:00:1a.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 112, parent: pci0000:00
[ 137.121698] snd_hda_intel 0000:00:1b.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 98 usecs
[ 137.121707] e1000e 0000:00:19.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 9, parent: pci0000:00
[ 137.121713] pcieport 0000:00:1c.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 110 usecs
[ 137.121719] mei_me 0000:00:16.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 111, parent: pci0000:00
[ 137.121784] mei_me 0000:00:16.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 56 usecs
[ 137.121790] xhci_hcd 0000:00:14.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 111, parent: pci0000:00
[ 137.122165] ehci-pci 0000:00:1d.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 704 usecs
[ 137.122173] i915 0000:00:02.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 134, parent: pci0000:00
[ 137.122178] i915 0000:00:02.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 0 usecs
[ 137.122183] pci 0000:00:00.0: calling pci_pm_suspend_noirq+0x0/0x260 @ 134, parent: pci0000:00
[ 137.122197] pci 0000:00:00.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 9 usecs
[ 137.122942] ehci-pci 0000:00:1a.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 1268 usecs
[ 137.123822] xhci_hcd 0000:00:14.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 1979 usecs
[ 137.132582] ahci 0000:00:1f.2: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 11086 usecs
[ 137.133638] rtl8192ee 0000:02:00.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 12223 usecs
[ 137.133648] pcieport 0000:00:1c.1: calling pci_pm_suspend_noirq+0x0/0x260 @ 3943, parent: pci0000:00
[ 137.133692] pcieport 0000:00:1c.1: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 39 usecs
[ 137.134577] e1000e 0000:00:19.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 12571 usecs
[ 137.134658] rtsx_pci 0000:08:00.0: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 13210 usecs
[ 137.134673] pcieport 0000:00:1c.4: calling pci_pm_suspend_noirq+0x0/0x260 @ 3938, parent: pci0000:00
[ 137.134722] pcieport 0000:00:1c.4: pci_pm_suspend_noirq+0x0/0x260 returned 0 after 44 usecs
[ 137.134732] PM: noirq suspend of devices complete after 13.986 msecs
[ 137.135029] ACPI: Preparing to enter system sleep state S3
[ 137.135742] ACPI: EC: event blocked
[ 137.135744] ACPI: EC: EC stopped
[ 137.135746] PM: Saving platform NVS memory
[ 137.135761] Disabling non-boot CPUs ...
[ 137.137487] smpboot: CPU 1 is now offline
[ 137.139152] smpboot: CPU 2 is now offline
[ 137.140778] smpboot: CPU 3 is now offline
[ 137.141100] PM: Checking wakeup interrupts
[ 137.141106] PM: Calling mce_syscore_suspend+0x0/0x16
[ 137.141110] PM: Calling timekeeping_suspend+0x0/0x28d
[ 137.141144] PM: Calling save_ioapic_entries+0x0/0xb0
[ 137.141214] PM: Calling i8259A_suspend+0x0/0x2d
[ 137.141219] PM: Calling kvm_suspend+0x0/0x3b
[ 137.141223] PM: Calling fw_suspend+0x0/0x1b
[ 137.141227] PM: Calling acpi_save_bm_rld+0x0/0x22
[ 137.141237] PM: Calling intel_epb_save+0x0/0x4b
[ 137.141240] PM: Calling lapic_suspend+0x0/0x210
[ 137.144129] TSC at resume: 1342293009
[ 137.144133] ACPI: Low-level resume complete
[ 137.144149] ACPI: EC: EC started
[ 137.144151] PM: Restoring platform NVS memory
[ 137.144168] PM: Calling lapic_resume+0x0/0x318
[ 137.144183] PM: Calling intel_epb_restore+0x0/0xbd
[ 137.144187] PM: Calling acpi_restore_bm_rld+0x0/0x65
[ 137.144190] PM: Calling irqrouter_resume+0x0/0x48
[ 137.144193] PM: Calling kvm_resume+0x0/0x1e
[ 137.144195] PM: Calling i8259A_resume+0x0/0x32
[ 137.144331] PM: Calling i8237A_resume+0x0/0xe0
[ 137.144393] PM: Calling ioapic_resume+0x0/0xca
[ 137.144417] PM: Calling irq_pm_syscore_resume+0x0/0x16
[ 137.144425] PM: Calling timekeeping_resume+0x0/0x21d
[ 137.144452] PM: Timekeeping suspended for 10.902 seconds
[ 137.144464] PM: Calling mce_syscore_resume+0x0/0x28
[ 137.144477] PM: Calling microcode_bsp_resume+0x0/0x50
[ 137.144494] Enabling non-boot CPUs ...
[ 137.144557] x86: Booting SMP configuration:
[ 137.144559] smpboot: Booting Node 0 Processor 1 APIC 0x1
[ 137.144892] smpboot: Scheduler frequency invariance went wobbly, disabling!
[ 137.145378] CPU1 is up
[ 137.145451] smpboot: Booting Node 0 Processor 2 APIC 0x2
[ 137.147631] CPU2 is up
[ 137.147701] smpboot: Booting Node 0 Processor 3 APIC 0x3
[ 137.148420] CPU3 is up
[ 137.149666] ACPI: Waking up from system sleep state S3
[ 137.618241] i915 0000:00:02.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 9, parent: pci0000:00
[ 137.618244] xhci_hcd 0000:00:14.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3938, parent: pci0000:00
[ 137.618250] ec PNP0C09:00: calling acpi_ec_resume_noirq+0x0/0x4b @ 3937, parent: device:01
[ 137.618255] mei_me 0000:00:16.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3943, parent: pci0000:00
[ 137.618256] ACPI: EC: interrupt unblocked
[ 137.618260] ec PNP0C09:00: acpi_ec_resume_noirq+0x0/0x4b returned 0 after 5 usecs
[ 137.618286] snd_hda_intel 0000:00:1b.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 111, parent: pci0000:00
[ 137.618303] mei_me 0000:00:16.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 43 usecs
[ 137.618310] pcieport 0000:00:1c.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3943, parent: pci0000:00
[ 137.618329] pci 0000:00:00.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3939, parent: pci0000:00
[ 137.618380] snd_hda_intel 0000:00:1b.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 87 usecs
[ 137.618385] pci 0000:00:00.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 50 usecs
[ 137.618387] pcieport 0000:00:1c.1: calling pci_pm_resume_noirq+0x0/0xf3 @ 111, parent: pci0000:00
[ 137.618392] pcieport 0000:00:1c.2: calling pci_pm_resume_noirq+0x0/0xf3 @ 3939, parent: pci0000:00
[ 137.618453] pcieport 0000:00:1c.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 135 usecs
[ 137.618458] pcieport 0000:00:1c.4: calling pci_pm_resume_noirq+0x0/0xf3 @ 3943, parent: pci0000:00
[ 137.618572] pcieport 0000:00:1c.1: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 178 usecs
[ 137.618575] xhci_hcd 0000:00:14.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 318 usecs
[ 137.618578] pcieport 0000:00:1c.2: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 178 usecs
[ 137.618581] ehci-pci 0000:00:1d.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3938, parent: pci0000:00
[ 137.618584] lpc_ich 0000:00:1f.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3939, parent: pci0000:00
[ 137.618589] ahci 0000:00:1f.2: calling pci_pm_resume_noirq+0x0/0xf3 @ 111, parent: pci0000:00
[ 137.618606] e1000e 0000:00:19.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3942, parent: pci0000:00
[ 137.618611] ehci-pci 0000:00:1a.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 7, parent: pci0000:00
[ 137.618624] i801_smbus 0000:00:1f.3: calling pci_pm_resume_noirq+0x0/0xf3 @ 112, parent: pci0000:00
[ 137.618633] pcieport 0000:00:1c.4: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 167 usecs
[ 137.618643] rtl8192ee 0000:02:00.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3943, parent: 0000:00:1c.1
[ 137.618670] rtsx_pci 0000:08:00.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 109, parent: 0000:00:1c.4
[ 137.618704] ehci-pci 0000:00:1d.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 116 usecs
[ 137.618711] i801_smbus 0000:00:1f.3: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 81 usecs
[ 137.618724] ehci-pci 0000:00:1a.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 107 usecs
[ 137.618733] lpc_ich 0000:00:1f.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 143 usecs
[ 137.618754] acpi-wmi PNP0C14:00: calling acpi_subsys_resume_noirq+0x0/0x29 @ 3937, parent: platform
[ 137.618758] acpi-wmi PNP0C14:00: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 0 usecs
[ 137.618762] acpi-wmi PNP0C14:01: calling acpi_subsys_resume_noirq+0x0/0x29 @ 3937, parent: platform
[ 137.618765] acpi-wmi PNP0C14:01: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 0 usecs
[ 137.618769] acpi-wmi PNP0C14:02: calling acpi_subsys_resume_noirq+0x0/0x29 @ 3937, parent: platform
[ 137.618773] acpi-wmi PNP0C14:02: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 0 usecs
[ 137.618814] i8042 i8042: calling i8042_pm_resume_noirq+0x0/0x21 @ 3937, parent: platform
[ 137.618816] i8042 i8042: i8042_pm_resume_noirq+0x0/0x21 returned 0 after 0 usecs
[ 137.629739] e1000e 0000:00:19.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 10873 usecs
[ 137.629750] i915 0000:00:02.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 11219 usecs
[ 137.629752] ahci 0000:00:1f.2: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 10902 usecs
[ 137.629793] snd_hda_intel 0000:00:03.0: calling pci_pm_resume_noirq+0x0/0xf3 @ 3955, parent: pci0000:00
[ 137.629809] snd_hda_intel 0000:00:03.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 13 usecs
[ 137.631325] rtsx_pci 0000:08:00.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 12361 usecs
[ 137.631329] rtl8192ee 0000:02:00.0: pci_pm_resume_noirq+0x0/0xf3 returned 0 after 12391 usecs
[ 137.631362] PM: noirq resume of devices complete after 13.238 msecs
[ 137.631440] pci 0000:00:00.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631442] i915 0000:00:02.0: calling pci_pm_resume_early+0x0/0x29 @ 3943, parent: pci0000:00
[ 137.631447] pci 0000:00:00.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631452] xhci_hcd 0000:00:14.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631455] xhci_hcd 0000:00:14.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631460] mei_me 0000:00:16.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631463] mei_me 0000:00:16.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631467] e1000e 0000:00:19.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631471] e1000e 0000:00:19.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631475] ehci-pci 0000:00:1a.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631479] ehci-pci 0000:00:1a.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631482] snd_hda_intel 0000:00:1b.0: calling pci_pm_resume_early+0x0/0x29 @ 109, parent: pci0000:00
[ 137.631485] snd_hda_intel 0000:00:1b.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631488] pcieport 0000:00:1c.0: calling pci_pm_resume_early+0x0/0x29 @ 109, parent: pci0000:00
[ 137.631490] pcieport 0000:00:1c.1: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631493] pcieport 0000:00:1c.1: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631497] pcieport 0000:00:1c.2: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631499] pcieport 0000:00:1c.2: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631502] pcieport 0000:00:1c.4: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631504] pcieport 0000:00:1c.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631508] ehci-pci 0000:00:1d.0: calling pci_pm_resume_early+0x0/0x29 @ 109, parent: pci0000:00
[ 137.631511] ehci-pci 0000:00:1d.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631514] lpc_ich 0000:00:1f.0: calling pci_pm_resume_early+0x0/0x29 @ 109, parent: pci0000:00
[ 137.631516] pcieport 0000:00:1c.4: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631519] ahci 0000:00:1f.2: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631522] ahci 0000:00:1f.2: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631525] i801_smbus 0000:00:1f.3: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: pci0000:00
[ 137.631527] lpc_ich 0000:00:1f.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631531] rtl8192ee 0000:02:00.0: calling pci_pm_resume_early+0x0/0x29 @ 109, parent: 0000:00:1c.1
[ 137.631534] i801_smbus 0000:00:1f.3: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631537] rtsx_pci 0000:08:00.0: calling pci_pm_resume_early+0x0/0x29 @ 3954, parent: 0000:00:1c.4
[ 137.631540] rtsx_pci 0000:08:00.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631543] rtl8192ee 0000:02:00.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631557] acpi-wmi PNP0C14:00: calling acpi_subsys_resume_early+0x0/0x94 @ 3937, parent: platform
[ 137.631561] acpi-wmi PNP0C14:00: acpi_subsys_resume_early+0x0/0x94 returned 0 after 0 usecs
[ 137.631565] acpi-wmi PNP0C14:01: calling acpi_subsys_resume_early+0x0/0x94 @ 3937, parent: platform
[ 137.631569] acpi-wmi PNP0C14:01: acpi_subsys_resume_early+0x0/0x94 returned 0 after 0 usecs
[ 137.631573] acpi-wmi PNP0C14:02: calling acpi_subsys_resume_early+0x0/0x94 @ 3937, parent: platform
[ 137.631576] acpi-wmi PNP0C14:02: acpi_subsys_resume_early+0x0/0x94 returned 0 after 0 usecs
[ 137.631590] i2c i2c-0: calling i2c_resume_early+0x0/0x28 @ 109, parent: 0000:00:1f.3
[ 137.631594] i2c i2c-0: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631599] i2c 0-0050: calling i2c_resume_early+0x0/0x28 @ 109, parent: i2c-0
[ 137.631602] i2c 0-0050: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631676] rmi4_smbus 0-002c: calling i2c_resume_early+0x0/0x28 @ 3944, parent: i2c-0
[ 137.631681] rmi4_smbus 0-002c: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631859] i915 0000:00:02.0: pci_pm_resume_early+0x0/0x29 returned 0 after 403 usecs
[ 137.631879] i2c i2c-2: calling i2c_resume_early+0x0/0x28 @ 3955, parent: 0000:00:02.0
[ 137.631883] i2c i2c-2: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631889] snd_hda_intel 0000:00:03.0: calling pci_pm_resume_early+0x0/0x29 @ 7, parent: pci0000:00
[ 137.631891] i2c i2c-5: calling i2c_resume_early+0x0/0x28 @ 3952, parent: 0000:00:02.0
[ 137.631896] i2c i2c-5: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631901] i2c i2c-3: calling i2c_resume_early+0x0/0x28 @ 3953, parent: 0000:00:02.0
[ 137.631904] snd_hda_intel 0000:00:03.0: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[ 137.631909] i2c i2c-3: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631912] i2c i2c-1: calling i2c_resume_early+0x0/0x28 @ 109, parent: 0000:00:02.0
[ 137.631915] i2c i2c-1: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631921] i2c i2c-8: calling i2c_resume_early+0x0/0x28 @ 3948, parent: card0-DP-1
[ 137.631925] i2c i2c-8: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631932] i2c i2c-6: calling i2c_resume_early+0x0/0x28 @ 3951, parent: 0000:00:02.0
[ 137.631936] i2c i2c-6: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631939] i2c i2c-7: calling i2c_resume_early+0x0/0x28 @ 3950, parent: card0-eDP-1
[ 137.631942] i2c i2c-7: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631948] i2c i2c-9: calling i2c_resume_early+0x0/0x28 @ 3949, parent: card0-DP-2
[ 137.631950] i2c i2c-4: calling i2c_resume_early+0x0/0x28 @ 3954, parent: 0000:00:02.0
[ 137.631954] i2c i2c-4: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631959] i2c i2c-9: i2c_resume_early+0x0/0x28 returned 0 after 0 usecs
[ 137.631966] PM: early resume of devices complete after 0.590 msecs
[ 137.632032] pci 0000:00:00.0: calling pci_pm_resume+0x0/0xed @ 3954, parent: pci0000:00
[ 137.632035] i915 0000:00:02.0: calling pci_pm_resume+0x0/0xed @ 3951, parent: pci0000:00
[ 137.632038] PCCT PCCT: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632040] xhci_hcd 0000:00:14.0: calling pci_pm_resume+0x0/0xed @ 3949, parent: pci0000:00
[ 137.632043] PCCT PCCT: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632050] pci 0000:00:00.0: pci_pm_resume+0x0/0xed returned 0 after 0 usecs
[ 137.632054] ec PNP0C09:00: calling acpi_ec_resume+0x0/0x1a @ 3937, parent: device:01
[ 137.632055] ACPI: EC: event unblocked
[ 137.632060] mei_me 0000:00:16.0: calling pci_pm_resume+0x0/0xed @ 3954, parent: pci0000:00
[ 137.632063] ec PNP0C09:00: acpi_ec_resume+0x0/0x1a returned 0 after 5 usecs
[ 137.632066] battery PNP0C0A:00: calling acpi_battery_resume+0x0/0x3a @ 3937, parent: PNP0C09:00
[ 137.632095] ehci-pci 0000:00:1a.0: calling pci_pm_resume+0x0/0xed @ 3946, parent: pci0000:00
[ 137.632101] e1000e 0000:00:19.0: calling pci_pm_resume+0x0/0xed @ 3950, parent: pci0000:00
[ 137.632112] snd_hda_intel 0000:00:1b.0: calling pci_pm_resume+0x0/0xed @ 3948, parent: pci0000:00
[ 137.632182] pcieport 0000:00:1c.0: calling pci_pm_resume+0x0/0xed @ 3956, parent: pci0000:00
[ 137.632186] pcieport 0000:00:1c.1: calling pci_pm_resume+0x0/0xed @ 3953, parent: pci0000:00
[ 137.632188] pcieport 0000:00:1c.0: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[ 137.632192] pcieport 0000:00:1c.2: calling pci_pm_resume+0x0/0xed @ 109, parent: pci0000:00
[ 137.632195] pcieport 0000:00:1c.4: calling pci_pm_resume+0x0/0xed @ 3956, parent: pci0000:00
[ 137.632198] pcieport 0000:00:1c.2: pci_pm_resume+0x0/0xed returned 0 after 0 usecs
[ 137.632200] pcieport 0000:00:1c.4: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[ 137.632203] ehci-pci 0000:00:1d.0: calling pci_pm_resume+0x0/0xed @ 109, parent: pci0000:00
[ 137.632206] lpc_ich 0000:00:1f.0: calling pci_pm_resume+0x0/0xed @ 3956, parent: pci0000:00
[ 137.632210] lpc_ich 0000:00:1f.0: pci_pm_resume+0x0/0xed returned 0 after 0 usecs
[ 137.632212] ahci 0000:00:1f.2: calling pci_pm_resume+0x0/0xed @ 7, parent: pci0000:00
[ 137.632215] i801_smbus 0000:00:1f.3: calling pci_pm_resume+0x0/0xed @ 3956, parent: pci0000:00
[ 137.632219] pcieport 0000:00:1c.1: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[ 137.632223] rtl8192ee 0000:02:00.0: calling pci_pm_resume+0x0/0xed @ 3953, parent: 0000:00:1c.1
[ 137.632227] i801_smbus 0000:00:1f.3: pci_pm_resume+0x0/0xed returned 0 after 9 usecs
[ 137.632232] rtsx_pci 0000:08:00.0: calling pci_pm_resume+0x0/0xed @ 3956, parent: 0000:00:1c.4
[ 137.632232] rtlwifi: rtlwifi: wireless switch is on
[ 137.632257] ahci 0000:00:1f.2: pci_pm_resume+0x0/0xed returned 0 after 41 usecs
[ 137.632266] ata2: calling ata_port_pm_resume+0x0/0x56 @ 3955, parent: 0000:00:1f.2
[ 137.632269] ata4: calling ata_port_pm_resume+0x0/0x56 @ 7, parent: 0000:00:1f.2
[ 137.632277] ata4: ata_port_pm_resume+0x0/0x56 returned 0 after 4 usecs
[ 137.632280] ata2: ata_port_pm_resume+0x0/0x56 returned 0 after 6 usecs
[ 137.632284] battery PNP0C0A:00: acpi_battery_resume+0x0/0x3a returned 0 after 206 usecs
[ 137.632287] ata5: calling ata_port_pm_resume+0x0/0x56 @ 3955, parent: 0000:00:1f.2
[ 137.632301] platform dock.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632305] platform dock.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632315] ata5: ata_port_pm_resume+0x0/0x56 returned 0 after 23 usecs
[ 137.632318] ac ACPI0003:00: calling acpi_ac_resume+0x0/0x58 @ 3937, parent: LNXSYBUS:00
[ 137.632323] ata3: calling ata_port_pm_resume+0x0/0x56 @ 3943, parent: 0000:00:1f.2
[ 137.632327] ata1: calling ata_port_pm_resume+0x0/0x56 @ 3952, parent: 0000:00:1f.2
[ 137.632336] ata3: ata_port_pm_resume+0x0/0x56 returned 0 after 4 usecs
[ 137.632344] ata1: ata_port_pm_resume+0x0/0x56 returned 0 after 13 usecs
[ 137.632348] scsi host4: calling scsi_bus_resume+0x0/0x1d @ 7, parent: ata5
[ 137.632351] ac ACPI0003:00: acpi_ac_resume+0x0/0x58 returned 0 after 27 usecs
[ 137.632354] scsi host4: scsi_bus_resume+0x0/0x1d returned 0 after 0 usecs
[ 137.632358] button PNP0C0D:00: calling acpi_button_resume+0x0/0xa9 @ 3937, parent: LNXSYBUS:00
[ 137.632368] rtl8192ee 0000:02:00.0: pci_pm_resume+0x0/0xed returned 0 after 134 usecs
[ 137.632394] button PNP0C0D:00: acpi_button_resume+0x0/0xa9 returned 0 after 32 usecs
[ 137.632399] button PNP0C0E:00: calling acpi_button_resume+0x0/0xa9 @ 3937, parent: LNXSYBUS:00
[ 137.632403] button PNP0C0E:00: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[ 137.632410] thermal LNXTHERM:00: calling acpi_thermal_resume+0x0/0x122 @ 3937, parent: LNXSYBUS:01
[ 137.632416] thermal LNXTHERM:00: acpi_thermal_resume+0x0/0x122 returned 0 after 2 usecs
[ 137.632426] thermal LNXTHERM:01: calling acpi_thermal_resume+0x0/0x122 @ 3937, parent: LNXSYBUS:01
[ 137.632431] thermal LNXTHERM:01: acpi_thermal_resume+0x0/0x122 returned 0 after 1 usecs
[ 137.632690] platform PNP0C09:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.632694] platform PNP0C09:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632698] platform PNP0C0A:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: PNP0C09:00
[ 137.632702] platform PNP0C0A:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632706] platform LEN0068:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: PNP0C09:00
[ 137.632709] platform LEN0068:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632713] platform INT0800:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.632717] platform INT0800:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632721] platform PNP0103:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.632725] platform PNP0103:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632733] platform PNP0C04:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.632737] platform PNP0C04:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632741] platform ACPI0003:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632744] rtsx_pci 0000:08:00.0: pci_pm_resume+0x0/0xed returned 0 after 493 usecs
[ 137.632749] platform ACPI0003:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632753] platform PNP0C0D:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632757] platform PNP0C0D:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632761] platform PNP0C0E:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632765] platform PNP0C0E:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632769] acpi-wmi PNP0C14:00: calling acpi_subsys_resume+0x0/0x7b @ 3937, parent: platform
[ 137.632773] acpi-wmi PNP0C14:00: acpi_subsys_resume+0x0/0x7b returned 0 after 0 usecs
[ 137.632777] acpi-wmi PNP0C14:01: calling acpi_subsys_resume+0x0/0x7b @ 3937, parent: platform
[ 137.632780] acpi-wmi PNP0C14:01: acpi_subsys_resume+0x0/0x7b returned 0 after 0 usecs
[ 137.632784] acpi-wmi PNP0C14:02: calling acpi_subsys_resume+0x0/0x7b @ 3937, parent: platform
[ 137.632788] acpi-wmi PNP0C14:02: acpi_subsys_resume+0x0/0x7b returned 0 after 0 usecs
[ 137.632792] platform INT340F:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632795] platform INT340F:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632800] platform INT33A0:00: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632803] platform INT33A0:00: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632808] button LNXPWRBN:00: calling acpi_button_resume+0x0/0xa9 @ 3937, parent: LNXSYSTM:00
[ 137.632812] button LNXPWRBN:00: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[ 137.632816] platform chromeos_acpi: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.632820] platform chromeos_acpi: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.632826] system 00:00: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632830] system 00:00: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632835] system 00:01: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632839] system 00:01: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632843] rtc_cmos 00:02: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632847] rtc_cmos 00:02: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632852] system 00:03: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632856] system 00:03: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632860] i8042 kbd 00:04: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632864] i8042 kbd 00:04: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632868] i8042 aux 00:05: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632872] i8042 aux 00:05: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632877] system 00:06: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632881] system 00:06: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[ 137.632941] scsi target4:0:0: calling scsi_bus_resume+0x0/0x1d @ 3972, parent: host4
[ 137.632947] scsi target4:0:0: scsi_bus_resume+0x0/0x1d returned 0 after 0 usecs
[ 137.632949] tpm_tis 00:07: calling pnp_bus_resume+0x0/0x9d @ 3937, parent: pnp0
[ 137.632955] sd 4:0:0:0: calling scsi_bus_resume+0x0/0x1d @ 3972, parent: target4:0:0
[ 137.632959] sd 4:0:0:0: scsi_bus_resume+0x0/0x1d returned 0 after 0 usecs
[ 137.633041] xhci_hcd 0000:00:14.0: pci_pm_resume+0x0/0xed returned 0 after 973 usecs
[ 137.633052] usb usb3: calling usb_dev_resume+0x0/0x14 @ 3940, parent: 0000:00:14.0
[ 137.633054] usb usb4: calling usb_dev_resume+0x0/0x14 @ 3966, parent: 0000:00:14.0
[ 137.633577] mei_me 0000:00:16.0: pci_pm_resume+0x0/0xed returned 0 after 1470 usecs
[ 137.633769] ehci-pci 0000:00:1a.0: pci_pm_resume+0x0/0xed returned 0 after 1629 usecs
[ 137.633783] usb usb1: calling usb_dev_resume+0x0/0x14 @ 3944, parent: 0000:00:1a.0
[ 137.634496] ehci-pci 0000:00:1d.0: pci_pm_resume+0x0/0xed returned 0 after 2232 usecs
[ 137.634518] usb usb2: calling usb_dev_resume+0x0/0x14 @ 3952, parent: 0000:00:1d.0
[ 137.634724] ieee80211 phy0: calling wiphy_resume+0x0/0x134 [cfg80211] @ 3998, parent: 0000:02:00.0
[ 137.635652] sd 4:0:0:0: [sda] Starting disk
[ 137.636854] snd_hda_intel 0000:00:1b.0: pci_pm_resume+0x0/0xed returned 0 after 4625 usecs
[ 137.636870] snd_hda_codec_realtek hdaudioC1D0: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4000, parent: 0000:00:1b.0
[ 137.638291] i915 0000:00:02.0: pci_pm_resume+0x0/0xed returned 0 after 6108 usecs
[ 137.638323] snd_hda_intel 0000:00:03.0: calling pci_pm_resume+0x0/0xed @ 3999, parent: pci0000:00
[ 137.640602] snd_hda_intel 0000:00:03.0: pci_pm_resume+0x0/0xed returned 0 after 2221 usecs
[ 137.650690] tpm_tis 00:07: pnp_bus_resume+0x0/0x9d returned 0 after 17328 usecs
[ 137.650698] intel_rapl_msr intel_rapl_msr.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.650701] intel_rapl_msr intel_rapl_msr.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.650704] platform platform-framebuffer.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.650706] platform platform-framebuffer.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.650717] input input0: calling input_dev_resume+0x0/0x42 @ 3937, parent: PNP0C0D:00
[ 137.650719] input input0: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 137.650722] input input1: calling input_dev_resume+0x0/0x42 @ 3937, parent: PNP0C0E:00
[ 137.650724] input input1: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 137.650726] input input2: calling input_dev_resume+0x0/0x42 @ 3937, parent: LNXPWRBN:00
[ 137.650728] input input2: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 137.650739] platform iTCO_wdt.0.auto: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.650741] platform iTCO_wdt.0.auto: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.650744] platform intel-spi: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:00:1f.0
[ 137.650746] platform intel-spi: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.650762] i8042 i8042: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.651473] i8042 i8042: platform_pm_resume+0x0/0x41 returned 0 after 692 usecs
[ 137.651477] atkbd serio0: calling serio_resume+0x0/0x94 @ 3937, parent: i8042
[ 137.651481] atkbd serio0: serio_resume+0x0/0x94 returned 0 after 1 usecs
[ 137.651485] psmouse serio1: calling serio_resume+0x0/0x94 @ 3937, parent: i8042
[ 137.654141] psmouse serio1: serio_resume+0x0/0x94 returned 0 after 2590 usecs
[ 137.654149] alarmtimer alarmtimer.1.auto: calling platform_pm_resume+0x0/0x41 @ 3937, parent: rtc0
[ 137.654155] rmi4_smbus 0-002c: calling rmi_smb_resume+0x0/0x6b [rmi_smbus] @ 4002, parent: i2c-0
[ 137.654158] alarmtimer alarmtimer.1.auto: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654161] platform coretemp.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.654163] platform coretemp.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654166] platform coretemp.1: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.654168] platform coretemp.1: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654174] snd-soc-dummy snd-soc-dummy: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.654176] snd-soc-dummy snd-soc-dummy: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654180] platform microcode: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.654182] platform microcode: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654185] input input3: calling input_dev_resume+0x0/0x42 @ 3937, parent: serio0
[ 137.654189] input input3: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[ 137.654193] leds input3::numlock: calling led_resume+0x0/0x20 @ 3937, parent: input3
[ 137.654196] leds input3::numlock: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 137.654199] leds input3::capslock: calling led_resume+0x0/0x20 @ 3937, parent: input3
[ 137.654201] leds input3::capslock: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 137.654204] leds input3::scrolllock: calling led_resume+0x0/0x20 @ 3937, parent: input3
[ 137.654206] leds input3::scrolllock: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 137.654223] backlight intel_backlight: calling backlight_resume+0x0/0x7c [backlight] @ 3937, parent: card0-eDP-1
[ 137.654228] backlight intel_backlight: backlight_resume+0x0/0x7c [backlight] returned 0 after 0 usecs
[ 137.654240] input input5: calling input_dev_resume+0x0/0x42 @ 3937, parent: LNXVIDEO:00
[ 137.654244] input input5: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 137.654249] platform regulatory.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 137.654252] platform regulatory.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 137.654326] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 137.654535] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed to read current IRQ mask.
[ 137.654733] usb usb4: usb_dev_resume+0x0/0x14 returned 0 after 21177 usecs
[ 137.654783] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
[ 137.654787] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
[ 137.654789] rmi4_physical rmi4-00: Failed to suspend functions: -6
[ 137.654792] rmi4_smbus 0-002c: Failed to resume device: -6
[ 137.654796] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus] returned 0 after 623 usecs
[ 137.654935] rmi4_physical rmi4-00: Failed to read irqs, code=-6
[ 137.672729] snd_hda_codec_realtek hdaudioC1D0: hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] returned 0 after 35027 usecs
[ 137.686629] usb usb2: usb_dev_resume+0x0/0x14 returned 0 after 50908 usecs
[ 137.686643] usb 2-1: calling usb_dev_resume+0x0/0x14 @ 3980, parent: usb2
[ 137.686653] usb usb1: usb_dev_resume+0x0/0x14 returned 0 after 51651 usecs
[ 137.686665] usb 1-1: calling usb_dev_resume+0x0/0x14 @ 3972, parent: usb1
[ 137.699462] usb 1-1: usb_dev_resume+0x0/0x14 returned 0 after 12497 usecs
[ 137.699726] usb 2-1: usb_dev_resume+0x0/0x14 returned 0 after 12777 usecs
[ 137.741612] usb usb3: usb_dev_resume+0x0/0x14 returned 0 after 106060 usecs
[ 137.741627] usb 3-12: calling usb_dev_resume+0x0/0x14 @ 3946, parent: usb3
[ 137.741630] usb 3-11: calling usb_dev_resume+0x0/0x14 @ 3979, parent: usb3
[ 137.741633] usb 3-11: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[ 137.741637] usb 3-12: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[ 137.938962] ata1: SATA link down (SStatus 0 SControl 300)
[ 138.325697] ieee80211 phy0: wiphy_resume+0x0/0x134 [cfg80211] returned 0 after 675091 usecs
[ 138.325729] rfkill rfkill0: calling rfkill_resume+0x0/0x66 @ 3937, parent: phy0
[ 138.325737] rfkill rfkill0: rfkill_resume+0x0/0x66 returned 0 after 3 usecs
[ 138.325742] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: calling platform_pm_resume+0x0/0x41 @ 3937, parent: 0000:08:00.0
[ 138.325745] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 138.325758] thinkpad_acpi thinkpad_acpi: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 138.328249] thinkpad_acpi thinkpad_acpi: platform_pm_resume+0x0/0x41 returned 0 after 2428 usecs
[ 138.328254] thinkpad_hwmon thinkpad_hwmon: calling platform_pm_resume+0x0/0x41 @ 3937, parent: platform
[ 138.328256] thinkpad_hwmon thinkpad_hwmon: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[ 138.328261] rfkill rfkill1: calling rfkill_resume+0x0/0x66 @ 3937, parent: thinkpad_acpi
[ 138.328264] rfkill rfkill1: rfkill_resume+0x0/0x66 returned 0 after 0 usecs
[ 138.328268] leds tpacpi::thinklight: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328270] leds tpacpi::thinklight: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328273] leds tpacpi::power: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328276] leds tpacpi::power: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328282] leds tpacpi::standby: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328285] leds tpacpi::standby: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328288] leds tpacpi::thinkvantage: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328290] leds tpacpi::thinkvantage: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328293] leds platform::mute: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328296] leds platform::mute: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328299] leds platform::micmute: calling led_resume+0x0/0x20 @ 3937, parent: thinkpad_acpi
[ 138.328301] leds platform::micmute: led_resume+0x0/0x20 returned 0 after 0 usecs
[ 138.328304] input input6: calling input_dev_resume+0x0/0x42 @ 3937, parent: thinkpad_acpi
[ 138.328306] input input6: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328312] input input7: calling input_dev_resume+0x0/0x42 @ 3937, parent: card0
[ 138.328314] input input7: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328317] input input8: calling input_dev_resume+0x0/0x42 @ 3937, parent: card0
[ 138.328319] input input8: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328321] input input9: calling input_dev_resume+0x0/0x42 @ 3937, parent: card0
[ 138.328323] input input9: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328326] input input10: calling input_dev_resume+0x0/0x42 @ 3937, parent: card0
[ 138.328328] input input10: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328331] input input11: calling input_dev_resume+0x0/0x42 @ 3937, parent: card0
[ 138.328333] input input11: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328337] input input12: calling input_dev_resume+0x0/0x42 @ 3937, parent: card1
[ 138.328339] input input12: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328342] input input13: calling input_dev_resume+0x0/0x42 @ 3937, parent: card1
[ 138.328344] input input13: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328346] input input14: calling input_dev_resume+0x0/0x42 @ 3937, parent: card1
[ 138.328348] input input14: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328351] input input15: calling input_dev_resume+0x0/0x42 @ 3937, parent: card1
[ 138.328353] input input15: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328359] rfkill rfkill2: calling rfkill_resume+0x0/0x66 @ 3937, parent: hci0
[ 138.328364] rfkill rfkill2: rfkill_resume+0x0/0x66 returned 0 after 2 usecs
[ 138.328370] input input17: calling input_dev_resume+0x0/0x42 @ 3937, parent: rmi4-00
[ 138.328372] input input17: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328376] psmouse serio2: calling serio_resume+0x0/0x94 @ 3937, parent: rmi4-00.fn03
[ 138.328380] psmouse serio2: serio_resume+0x0/0x94 returned 0 after 1 usecs
[ 138.328383] input input18: calling input_dev_resume+0x0/0x42 @ 3937, parent: serio2
[ 138.328385] input input18: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[ 138.328798] rmi4_f03 rmi4-00.fn03: rmi_f03_pt_write: Failed to write to F03 TX register (-6).
[ 138.329228] rmi4_physical rmi4-00: rmi_driver_clear_irq_bits: Failed to change enabled interrupts!
[ 138.338972] e1000e 0000:00:19.0: pci_pm_resume+0x0/0xed returned 0 after 690639 usecs
[ 138.339004] PM: resume of devices complete after 707.386 msecs
[ 138.339473] PM: Finishing wakeup.
[ 138.339475] OOM killer enabled.
[ 138.339477] Restarting tasks ...
[ 138.339590] usb 3-11: USB disconnect, device number 2
[ 138.345809] rmi4_physical rmi4-00: rmi_driver_set_irq_bits: Failed to change enabled interrupts!
[ 138.345824] psmouse: probe of serio2 failed with error -1
[ 138.347288] done.
[ 138.348104] Resume cause unknown
[ 138.348108] PM: suspend exit
[ 138.455342] usb 3-11: new full-speed USB device number 4 using xhci_hcd
[ 138.588339] usb 3-11: New USB device found, idVendor=0bda, idProduct=8761, bcdDevice= 2.00
[ 138.588357] usb 3-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 138.588368] usb 3-11: Product: Bluetooth Radio
[ 138.588376] usb 3-11: Manufacturer: Realtek
[ 138.588384] usb 3-11: SerialNumber: 00e04c000001
[ 138.592769] usb 3-11: GPIO lookup for consumer reset
[ 138.592779] usb 3-11: using ACPI for GPIO lookup
[ 138.592788] acpi device:24: GPIO: looking up reset-gpios
[ 138.592796] acpi device:24: GPIO: looking up reset-gpio
[ 138.592803] usb 3-11: using lookup tables for GPIO lookup
[ 138.592810] usb 3-11: No GPIO consumer reset found
[ 138.597884] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000a lmp_ver=06 lmp_subver=8761
[ 138.600036] usb 3-12: USB disconnect, device number 3
[ 138.601289] Bluetooth: hci0: RTL: rom_version status=0 version=2
[ 138.601300] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761a_fw.bin
[ 138.601349] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761a_config.bin
[ 138.601399] bluetooth hci0: Direct firmware load for rtl_bt/rtl8761a_config.bin failed with error -2
[ 138.601439] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22176
[ 138.717181] usb 3-12: new high-speed USB device number 5 using xhci_hcd
[ 138.880168] usb 3-12: New USB device found, idVendor=0bda, idProduct=5719, bcdDevice= 0.20
[ 138.880187] usb 3-12: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 138.880195] usb 3-12: Product: Integrated Camera
[ 138.880200] usb 3-12: Manufacturer: 0C17659AA38R00B
[ 138.880205] usb 3-12: SerialNumber: 200901010001
[ 138.883591] usb 3-12: GPIO lookup for consumer privacy
[ 138.883598] usb 3-12: using ACPI for GPIO lookup
[ 138.883604] acpi device:25: GPIO: looking up privacy-gpios
[ 138.883609] acpi device:25: GPIO: looking up privacy-gpio
[ 138.883613] usb 3-12: using lookup tables for GPIO lookup
[ 138.883617] usb 3-12: No GPIO consumer privacy found
[ 138.883623] usb 3-12: Found UVC 1.00 device Integrated Camera (0bda:5719)
[ 138.886080] usb 3-12: Failed to query (GET_INFO) UVC control 13 on unit 2: -32 (exp. 1).
[ 138.886941] usb 3-12: Failed to query (GET_INFO) UVC control 5 on unit 1: -32 (exp. 1).
[ 139.635747] Bluetooth: hci0: RTL: fw version 0x0e3e4380
[ 140.331437] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 140.333241] ata5.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 140.333251] ata5.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 140.336564] ata5.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 140.336573] ata5.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 140.337971] ata5.00: configured for UDMA/100
[ 140.642629] e1000e 0000:00:19.0 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 140.643110] e1000e 0000:00:19.0 eth0: Detected Hardware Unit Hang:
TDH <11>
TDT <11>
next_to_use <11>
next_to_clean <11>
buffer_info[next_to_clean]:
time_stamp <0>
next_to_watch <b>
jiffies <fffd9156>
next_to_watch.status <0>
MAC Status <40080083>
PHY Status <796d>
PHY 1000BASE-T Status <3800>
PHY Extended Status <3000>
PCI Status <10>
[ 141.055869] Bluetooth: quality report not supported
[ 160.300774] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #06!!!
[ 869.946237] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #04!!!
[ 1259.750975] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #84!!!
[ 1399.681954] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #84!!!
[ 1599.581134] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #84!!!
[ 1799.483840] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #84!!!
[ 1879.441133] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #84!!!
[ 1929.416081] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #284!!!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
2023-04-17 18:52 ` Jonathan Denose
@ 2023-04-17 20:14 ` Andrew Duggan
2023-04-24 19:11 ` Jonathan Denose
0 siblings, 1 reply; 8+ messages in thread
From: Andrew Duggan @ 2023-04-17 20:14 UTC (permalink / raw)
To: Jonathan Denose
Cc: Lyude Paul, Andrew Duggan, amandhoot12@gmail.com, Dmitry Torokhov,
jdenose@google.com, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org, markpearson@lenovo.com,
wsa+renesas@sang-engineering.com, benjamin.tissoires
Hi Lyude and Jonathan,
I was just about to reply and suggest that we look into this issue a little more since the touchpad in the L440 would benefit from the additional data from the intertouch interface. Especially, since it has a large area and several buttons. PS/2 only reports position data for two fingers so three finger gestures is another example.
Generally, these types of suspend / resume issues are the result of the touchpad resetting and the firmware expecting commands from the PS/2 interface. On resume, the PS/2 driver should send a command over the PS/2 interface to switch the touchpad firmware back into intertouch (SMBus) mode. The logs you provided look like that's what is happening here. The SMBus driver is sending commands, but the touchpad firmware won't respond until it is switch back into intertouch mode. It has been a while since I have worked on these touchpads, but from what I remember I think there is code in the psmouse-smbus driver to handle these situations. I added Benjamin Tissoires to CC since I think he worked on that handling. I thought suspend / resume was tested on with these "top button" touchpads when support for them was added. I don't know if the L440 specifically included in the testing. I'm curious if this is a regression or not.
Regarding the patch, I do have one comment below:
> On Apr 17, 2023, at 11:52, Jonathan Denose <jdenose@chromium.org> wrote:
>
> CAUTION: Email originated externally, do not click links or open attachments unless you recognize the sender and know the content is safe.
>
>
> Sorry, I thought I sent this as plain text but I think maybe not.
> Trying once more, the message was:
>
> I think that disabling synaptics_intertouch would resolve the issue
> mentioned in the commit, but cause a regression in the functionality
> that intertouch is supposed to bring, like three-finger gestures. I'm
> attaching some of the logs that I captured when the touchpad was
> failing on resume. I think the main culprit is
> i2c_smbus_read_byte_data where the driver is unable to get the SMBus
> version number. I get the following lines in dmesg:
>
> [ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
> [ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed
> to read current IRQ mask.
> [ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
> [ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
> [ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
> [ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
> [ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus]
> returned 0 after 549 usecs
> [ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
>
> Any ideas on what might be causing this, only on resume from deep sleep?
>
>
> On Mon, Apr 17, 2023 at 1:47 PM Jonathan Denose <jdenose@chromium.org> wrote:
>>
>> I think that disabling synaptics_intertouch would resolve the issue mentioned in the commit, but cause a regression in the functionality that intertouch is supposed to bring, like three-finger gestures. I'm attaching some of the logs that I captured when the touchpad was failing on resume. I think the main culprit is i2c_smbus_read_byte_data where the driver is unable to get the SMBus version number. I get the following lines in dmesg:
>>
>> [ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
>> [ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed to read current IRQ mask.
>> [ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
>> [ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
>> [ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
>> [ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
>> [ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus] returned 0 after 549 usecs
>> [ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
>>
>> Any ideas on what might be causing this, only on resume from deep sleep?
>>
>>
>> On Fri, Apr 14, 2023 at 11:41 AM Jonathan Denose <jdenose@chromium.org> wrote:
>>>
>>> When intertouch is enabled for the L440 a (deep)sleep/resume
>>> cycle causes the touchpad driver to hang which causes the
>>> touchpad to become unresponsive. Disable intertouch resolves
>>> this issue and the touchpad is fine after resume from sleep.
>>>
>>> Additionally, when the PNP id for the L440 is only removed
>>> from the topbuttonpad_pnp_ids list, a message is logged to
>>> enable psmouse.synaptics_intertouch, which would cause the
>>> sleep/resume issue again. By removing the PNP id from
>>> topbutton_pnp_ids and then adding it to the
>>> forcepad_pnp_ids array, intertouch is disabled and the
>>> message is not logged.
>>>
>>> Signed-off-by: Jonathan Denose <jdenose@google.com>
>>> ---
>>>
>>> Changes in v2:
>>> - remove debug statement
>>>
>>> drivers/input/mouse/synaptics.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
>>> index fa021af8506e4..b7218b7652c20 100644
>>> --- a/drivers/input/mouse/synaptics.c
>>> +++ b/drivers/input/mouse/synaptics.c
>>> @@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
>>> "LEN2001", /* Edge E431 */
>>> "LEN2002", /* Edge E531 */
>>> "LEN2003",
>>> - "LEN2004", /* L440 */
>>> "LEN2005",
>>> "LEN2006", /* Edge E440/E540 */
>>> "LEN2007",
>>> @@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
>>> static const char * const forcepad_pnp_ids[] = {
>>> "SYN300D",
>>> "SYN3014",
>>> + "LEN2004", /* L440 */
While this does seem to elliminate the message, the touchpad in the L440 is not a forcepad. Adding the L440 PnP ID here implies that it is one of these special forcepads which reports "force" data for contacts and that is not the case here.
>>> NULL
>>> };
>>>
>>> —
>>> 2.39.2
>>>
Andrew
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
2023-04-17 20:14 ` Andrew Duggan
@ 2023-04-24 19:11 ` Jonathan Denose
2023-05-02 3:11 ` Dmitry Torokhov
0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Denose @ 2023-04-24 19:11 UTC (permalink / raw)
To: Andrew Duggan
Cc: Lyude Paul, Andrew Duggan, amandhoot12@gmail.com, Dmitry Torokhov,
jdenose@google.com, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org, markpearson@lenovo.com,
wsa+renesas@sang-engineering.com, benjamin.tissoires
Hi Andrew,
Thanks for your reply. As an update, I was able to try the patch here:
https://lore.kernel.org/all/YgHTYrODoo2ou49J@google.com/ and it
resolves the suspend/resume issue on this device. I'm not sure what
the status of the linked patch is, to me it doesn't look like it was
merged anywhere.
On Mon, Apr 17, 2023 at 3:14 PM Andrew Duggan <andrew@duggan.us> wrote:
>
> Hi Lyude and Jonathan,
>
> I was just about to reply and suggest that we look into this issue a little more since the touchpad in the L440 would benefit from the additional data from the intertouch interface. Especially, since it has a large area and several buttons. PS/2 only reports position data for two fingers so three finger gestures is another example.
>
> Generally, these types of suspend / resume issues are the result of the touchpad resetting and the firmware expecting commands from the PS/2 interface. On resume, the PS/2 driver should send a command over the PS/2 interface to switch the touchpad firmware back into intertouch (SMBus) mode. The logs you provided look like that's what is happening here. The SMBus driver is sending commands, but the touchpad firmware won't respond until it is switch back into intertouch mode. It has been a while since I have worked on these touchpads, but from what I remember I think there is code in the psmouse-smbus driver to handle these situations. I added Benjamin Tissoires to CC since I think he worked on that handling. I thought suspend / resume was tested on with these "top button" touchpads when support for them was added. I don't know if the L440 specifically included in the testing. I'm curious if this is a regression or not.
>
> Regarding the patch, I do have one comment below:
>
> > On Apr 17, 2023, at 11:52, Jonathan Denose <jdenose@chromium.org> wrote:
> >
> > CAUTION: Email originated externally, do not click links or open attachments unless you recognize the sender and know the content is safe.
> >
> >
> > Sorry, I thought I sent this as plain text but I think maybe not.
> > Trying once more, the message was:
> >
> > I think that disabling synaptics_intertouch would resolve the issue
> > mentioned in the commit, but cause a regression in the functionality
> > that intertouch is supposed to bring, like three-finger gestures. I'm
> > attaching some of the logs that I captured when the touchpad was
> > failing on resume. I think the main culprit is
> > i2c_smbus_read_byte_data where the driver is unable to get the SMBus
> > version number. I get the following lines in dmesg:
> >
> > [ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
> > [ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed
> > to read current IRQ mask.
> > [ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
> > [ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
> > [ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
> > [ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
> > [ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus]
> > returned 0 after 549 usecs
> > [ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
> >
> > Any ideas on what might be causing this, only on resume from deep sleep?
> >
> >
> > On Mon, Apr 17, 2023 at 1:47 PM Jonathan Denose <jdenose@chromium.org> wrote:
> >>
> >> I think that disabling synaptics_intertouch would resolve the issue mentioned in the commit, but cause a regression in the functionality that intertouch is supposed to bring, like three-finger gestures. I'm attaching some of the logs that I captured when the touchpad was failing on resume. I think the main culprit is i2c_smbus_read_byte_data where the driver is unable to get the SMBus version number. I get the following lines in dmesg:
> >>
> >> [ 2869.745860] rmi4_smbus 0-002c: failed to get SMBus version number!
> >> [ 2869.746060] rmi4_physical rmi4-00: rmi_driver_reset_handler: Failed to read current IRQ mask.
> >> [ 2869.746260] rmi4_f01 rmi4-00.fn01: Failed to restore normal operation: -6.
> >> [ 2869.746262] rmi4_f01 rmi4-00.fn01: Resume failed with code -6.
> >> [ 2869.746264] rmi4_physical rmi4-00: Failed to suspend functions: -6
> >> [ 2869.746265] rmi4_smbus 0-002c: Failed to resume device: -6
> >> [ 2869.746268] rmi4_smbus 0-002c: rmi_smb_resume+0x0/0x6b [rmi_smbus] returned 0 after 549 usecs
> >> [ 2869.746446] rmi4_physical rmi4-00: Failed to read irqs, code=-6
> >>
> >> Any ideas on what might be causing this, only on resume from deep sleep?
> >>
> >>
> >> On Fri, Apr 14, 2023 at 11:41 AM Jonathan Denose <jdenose@chromium.org> wrote:
> >>>
> >>> When intertouch is enabled for the L440 a (deep)sleep/resume
> >>> cycle causes the touchpad driver to hang which causes the
> >>> touchpad to become unresponsive. Disable intertouch resolves
> >>> this issue and the touchpad is fine after resume from sleep.
> >>>
> >>> Additionally, when the PNP id for the L440 is only removed
> >>> from the topbuttonpad_pnp_ids list, a message is logged to
> >>> enable psmouse.synaptics_intertouch, which would cause the
> >>> sleep/resume issue again. By removing the PNP id from
> >>> topbutton_pnp_ids and then adding it to the
> >>> forcepad_pnp_ids array, intertouch is disabled and the
> >>> message is not logged.
> >>>
> >>> Signed-off-by: Jonathan Denose <jdenose@google.com>
> >>> ---
> >>>
> >>> Changes in v2:
> >>> - remove debug statement
> >>>
> >>> drivers/input/mouse/synaptics.c | 2 +-
> >>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
> >>> index fa021af8506e4..b7218b7652c20 100644
> >>> --- a/drivers/input/mouse/synaptics.c
> >>> +++ b/drivers/input/mouse/synaptics.c
> >>> @@ -150,7 +150,6 @@ static const char * const topbuttonpad_pnp_ids[] = {
> >>> "LEN2001", /* Edge E431 */
> >>> "LEN2002", /* Edge E531 */
> >>> "LEN2003",
> >>> - "LEN2004", /* L440 */
> >>> "LEN2005",
> >>> "LEN2006", /* Edge E440/E540 */
> >>> "LEN2007",
> >>> @@ -198,6 +197,7 @@ static const char * const smbus_pnp_ids[] = {
> >>> static const char * const forcepad_pnp_ids[] = {
> >>> "SYN300D",
> >>> "SYN3014",
> >>> + "LEN2004", /* L440 */
>
> While this does seem to elliminate the message, the touchpad in the L440 is not a forcepad. Adding the L440 PnP ID here implies that it is one of these special forcepads which reports "force" data for contacts and that is not the case here.
>
> >>> NULL
> >>> };
> >>>
> >>> —
> >>> 2.39.2
> >>>
>
>
> Andrew
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
2023-04-24 19:11 ` Jonathan Denose
@ 2023-05-02 3:11 ` Dmitry Torokhov
2023-05-04 3:32 ` Jeffery Miller
0 siblings, 1 reply; 8+ messages in thread
From: Dmitry Torokhov @ 2023-05-02 3:11 UTC (permalink / raw)
To: Jonathan Denose
Cc: Andrew Duggan, Lyude Paul, Andrew Duggan, amandhoot12@gmail.com,
jdenose@google.com, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org, markpearson@lenovo.com,
wsa+renesas@sang-engineering.com, benjamin.tissoires
On Mon, Apr 24, 2023 at 02:11:28PM -0500, Jonathan Denose wrote:
> Hi Andrew,
>
> Thanks for your reply. As an update, I was able to try the patch here:
> https://lore.kernel.org/all/YgHTYrODoo2ou49J@google.com/ and it
> resolves the suspend/resume issue on this device. I'm not sure what
> the status of the linked patch is, to me it doesn't look like it was
> merged anywhere.
This patch shoudl have been superseded by:
commit 7b1f781f2d2460693f43d5f764198df558e3494b
Author: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Date: Tue Feb 15 13:32:26 2022 -0800
Input: psmouse - set up dependency between PS/2 and SMBus companions
When we switch from emulated PS/2 to native (RMI4 or Elan) protocols, we
create SMBus companion devices that are attached to I2C/SMBus controllers.
However, when suspending and resuming, we also need to make sure that we
take into account the PS/2 device they are associated with, so that PS/2
device is suspended after the companion and resumed before it, otherwise
companions will not work properly. Before I2C devices were marked for
asynchronous suspend/resume, this ordering happened naturally, but now we
need to enforce it by establishing device links, with PS/2 devices being
suppliers and SMBus companions being consumers.
Fixes: 172d931910e1 ("i2c: enable async suspend/resume on i2c client devices")
Reported-and-tested-by: Hugh Dickins <hughd@google.com>
Tested-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Link: https://lore.kernel.org/r/89456fcd-a113-4c82-4b10-a9bcaefac68f@google.com
Link: https://lore.kernel.org/r/YgwQN8ynO88CPMju@google.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Which should have ensured that PS/2 device is resumed first, before
trying to resume RMI interface. I wonder why it is not working for you.
Can you enable logging and see if the order of resume is correct or not.
If it is still wrong we need to figure out why setting the link between
the devices does not have the desired effect.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] Input: synaptics - disable intertouch for Lenovo L440
2023-05-02 3:11 ` Dmitry Torokhov
@ 2023-05-04 3:32 ` Jeffery Miller
0 siblings, 0 replies; 8+ messages in thread
From: Jeffery Miller @ 2023-05-04 3:32 UTC (permalink / raw)
To: Dmitry Torokhov
Cc: Jonathan Denose, Andrew Duggan, Lyude Paul, Andrew Duggan,
amandhoot12@gmail.com, jdenose@google.com,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
markpearson@lenovo.com, wsa+renesas@sang-engineering.com,
benjamin.tissoires
[-- Attachment #1: Type: text/plain, Size: 4499 bytes --]
`
On Mon, May 1, 2023 at 10:12 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
> Link: https://lore.kernel.org/r/89456fcd-a113-4c82-4b10-a9bcaefac68f@google.com
>
> Which should have ensured that PS/2 device is resumed first, before
> trying to resume RMI interface. I wonder why it is not working for you.
>
> Can you enable logging and see if the order of resume is correct or not.
> If it is still wrong we need to figure out why setting the link between
> the devices does not have the desired effect.
I have a Lenovo T440p with a similar issue that fails on resume in
rmi_smb_resume's
call to rmi_smb_get_version.
I've patched rmi_smb_get_version adding a sleep and retry loop in an
attempt to see if
it could avoid some race condition.
I've attached a dmesg log from a 6.3.1 kernel, pm debug messages on and with my
retry patch. In this log it succeeds due to the retry loop.
I believe I'm seeing the suspend order of rmi_smbus then PS/2 first
and PS/2 then rmi_smbus on resume.
dmesg during suspend:
[ 96.357933] rmi4_smbus 0-002c: PM: calling rmi_smb_suspend+0x0/0x44
[rmi_smbus] @ 2375, parent: i2c-0
...
[ 96.358521] psmouse serio1: PM: calling serio_suspend+0x0/0x1c @
4517, parent: i8042
dmesg during resume with debugging showing the retry loop around
getting the smbus version number:
[ 97.048216] psmouse serio1: PM: calling serio_resume+0x0/0x8c @
4517, parent: i8042
[ 97.051545] psmouse serio1: PM: serio_resume+0x0/0x8c returned 0
after 3325 usecs
...
[ 97.051557] rmi4_smbus 0-002c: PM: calling rmi_smb_resume+0x0/0x67
[rmi_smbus] @ 4577, parent: i2c-0
...
[ 97.051725] [4577] i2c_i801:i801_check_post:414: i801_smbus
0000:00:1f.3: No response
[ 97.051730] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 97.051732] rmi4_smbus 0-002c: sleeping to try again
[ 97.052780] [4577] i2c_i801:i801_check_post:414: i801_smbus
0000:00:1f.3: No response
[ 97.052785] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 97.052786] rmi4_smbus 0-002c: sleeping to try again
[ 97.053531] snd_hda_intel 0000:00:03.0: PM: pci_pm_resume+0x0/0xdf
returned 0 after 2275 usecs
[ 97.053790] [4577] i2c_i801:i801_check_post:414: i801_smbus
0000:00:1f.3: No response
[ 97.053795] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 97.053796] rmi4_smbus 0-002c: sleeping to try again
[ 97.054783] [4577] i2c_i801:i801_check_post:414: i801_smbus
0000:00:1f.3: No response
[ 97.054788] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 97.054789] rmi4_smbus 0-002c: sleeping to try again
[ 97.055779] [4577] i2c_i801:i801_check_post:414: i801_smbus
0000:00:1f.3: No response
[ 97.055784] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 97.055785] rmi4_smbus 0-002c: sleeping to try again
[ 97.057117] rmi4_smbus 0-002c: JAM: time to return 6ms
[ 97.057893] rmi4_smbus 0-002c: wrote 4 bytes at 0x86: 0 (4c 00 01
00)
...
[ 97.067335] rmi4_smbus 0-002c: wrote 1 bytes at 0x07: 0 (80)
[ 97.067340] rmi4_f11 rmi4-00.fn11: Resuming...
[ 97.067342] rmi4_smbus 0-002c: PM: rmi_smb_resume+0x0/0x67
[rmi_smbus] returned 0 after 15783 usecs
WIth this short timeout loop it seems to take between 6ms to 12ms
before the calls
to `i2c_smbus_read_byte_data` stop returning -ENXIO from "No response"
log lines from i2c_i801.
I have seen this on various versions such as 5.15, 5.10 (with the
https://lore.kernel.org/r/89456fcd-a113-4c82-4b10-a9bcaefac68f@google.com
patch applied), 6.1
and reproduced here on the 6.3.1 kernel.
I don't know what the delay is waiting on and if there is some other
way to deal with it.
In these logs it appears that there are a few calls occuring at the
same time as rmi_smb_resume.
None of them return just before the retry loop ends and I'm not sure
if they are related.
I'm not sure if there is more information during this time that would
be useful to look at
while it's resuming?
If I apply the patch to `device_disable_async_suspend(&client->dev);`
in rmi_smb_probe it
doesn't seem to need the delay. I could post dmesg output with the
disable in rmi_smb_probe applied
if the timing is possibly interesting to see the ordering and timing
in that case.
If there is anything else you would like me to try, please let me know.
Is it possible there's just some sort of delay occurring here for the
i801 bus to come
up that can be handled in a different way?
Thanks,
Jeff
[-- Attachment #2: dmesg-6-3-1-retry.out.xz --]
[-- Type: application/x-xz, Size: 23836 bytes --]
[-- Attachment #3: 0001-Input-synaptics-rmi4-retry-reading-SMBus-version-on-.patch --]
[-- Type: text/x-patch, Size: 2960 bytes --]
From fd4e87a0d1d8efa0f3a924a5e5cdd47f10b336dc Mon Sep 17 00:00:00 2001
From: Jeffery Miller <jefferymiller@google.com>
Date: Thu, 20 Apr 2023 11:35:59 -0500
Subject: [PATCH] Input: synaptics-rmi4 - retry reading SMBus version on resume
When resuming from suspend there is a delay where
getting the version data from the smbus returns
-ENXIO. This causes the rmi4 resume to fail and
the touchpad to stop working after resume.
In lieu of finding what this really needs to wait
on just retry a few times so it works.
The limit of 100ms is arbitrary.
My tests have shown this to take an extra 7-12ms
on resume to succeed on the Lenovo t440p machine.
Logs on resume now look something like:
```
[ 108.622951] rmi4_smbus 0-002c: calling rmi_smb_resume+0x0/0x63 [rmi_smbus] @ 3975, parent: i2c-0
...
[ 108.623132] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 108.623134] rmi4_smbus 0-002c: sleeping to try again
[ 108.626003] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 108.626005] rmi4_smbus 0-002c: sleeping to try again
[ 108.629025] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 108.629028] rmi4_smbus 0-002c: sleeping to try again
[ 108.632017] rmi4_smbus 0-002c: failed to get SMBus version number!
[ 108.632019] rmi4_smbus 0-002c: sleeping to try again
[ 108.636172] rmi4_smbus 0-002c: wrote 4 bytes at 0x86: 0 (4c 00 01 00)
```
Signed-off-by: Jeffery Miller <jefferymiller@google.com>
---
drivers/input/rmi4/rmi_smbus.c | 24 +++++++++++++++++++-----
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/drivers/input/rmi4/rmi_smbus.c b/drivers/input/rmi4/rmi_smbus.c
index 4bf0e1df6a4a..1fccad5811cf 100644
--- a/drivers/input/rmi4/rmi_smbus.c
+++ b/drivers/input/rmi4/rmi_smbus.c
@@ -9,6 +9,7 @@
#include <linux/delay.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
+#include <linux/jiffies.h>
#include <linux/kconfig.h>
#include <linux/lockdep.h>
#include <linux/module.h>
@@ -44,14 +45,27 @@ static int rmi_smb_get_version(struct rmi_smb_xport *rmi_smb)
struct i2c_client *client = rmi_smb->client;
int retval;
+ unsigned long deadline = jiffies + msecs_to_jiffies(100);
+ unsigned long before = jiffies;
+
/* Check if for SMBus new version device by reading version byte. */
- retval = i2c_smbus_read_byte_data(client, SMB_PROTOCOL_VERSION_ADDRESS);
- if (retval < 0) {
+ while (time_before(jiffies, deadline)) {
+
+ retval = i2c_smbus_read_byte_data(client,
+ SMB_PROTOCOL_VERSION_ADDRESS);
+ if (retval >= 0) {
+ retval++;
+ break;
+ }
+
dev_err(&client->dev, "failed to get SMBus version number!\n");
- return retval;
+ if (retval != -ENXIO)
+ break;
+ dev_warn(&client->dev, "sleeping to try again\n");
+ fsleep(500);
}
-
- return retval + 1;
+ dev_warn(&client->dev, "JAM: time to return %ums", jiffies_to_msecs(jiffies - before));
+ return retval;
}
/* SMB block write - wrapper over ic2_smb_write_block */
--
2.40.1.495.gc816e09b53d-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-05-04 3:32 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-12 22:54 [PATCH] Input: synaptics - disable intertouch for Lenovo L440 Jonathan Denose
2023-04-13 20:47 ` Lyude Paul
2023-04-14 16:41 ` [PATCH v2] " Jonathan Denose
[not found] ` <CALNJtpXLHHSV8YshUnk0opLNMUJpT7DgBNRYXoP2Yn-fnA8vPA@mail.gmail.com>
2023-04-17 18:52 ` Jonathan Denose
2023-04-17 20:14 ` Andrew Duggan
2023-04-24 19:11 ` Jonathan Denose
2023-05-02 3:11 ` Dmitry Torokhov
2023-05-04 3:32 ` Jeffery Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox