diff mbox series

Input: psmouse - add resync_on_resume dmi check

Message ID 20231102075243.1.Idb37ff8043a29f607beab6440c32b9ae52525825@changeid (mailing list archive)
State New
Headers show
Series Input: psmouse - add resync_on_resume dmi check | expand

Commit Message

Jonathan Denose Nov. 2, 2023, 12:52 p.m. UTC
Some elantech touchpads consistently fail after resuming from
suspend at sanity_check in elantech_packet_check_v4. This means
the touchpad is completely unusable after suspend resume.

With different permutations of i8042 nomux, nopnp, reset, and noloop
kernel options enabled, and with crc_enabled the touchpad fails in
the same way.

Resyncing the touchpad after receiving the
PACKET_UNKNOWN/PSMOUSE_BAD_DATA return code allows the touchpad to
function correctly on resume. The touchpad fails to reconnect with
the serio reconnect no matter how many times it retries, so this
change skips over that retry sequence and goes directly to resync.

Signed-off-by: Jonathan Denose <jdenose@google.com>
---

 drivers/input/mouse/psmouse-base.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

Comments

Dmitry Torokhov Feb. 6, 2024, 10:04 p.m. UTC | #1
Hi Jonathan,

On Thu, Nov 02, 2023 at 07:52:47AM -0500, Jonathan Denose wrote:
> Some elantech touchpads consistently fail after resuming from
> suspend at sanity_check in elantech_packet_check_v4. This means
> the touchpad is completely unusable after suspend resume.
> 
> With different permutations of i8042 nomux, nopnp, reset, and noloop
> kernel options enabled, and with crc_enabled the touchpad fails in
> the same way.
> 
> Resyncing the touchpad after receiving the
> PACKET_UNKNOWN/PSMOUSE_BAD_DATA return code allows the touchpad to
> function correctly on resume. The touchpad fails to reconnect with
> the serio reconnect no matter how many times it retries, so this
> change skips over that retry sequence and goes directly to resync.

Why can't we do this in elantech_reconnect()? I am sure we can make it
simpler and more robust than what the generic handler is trying to do
with polling and everything.

Thanks.
Jonathan Denose Feb. 7, 2024, 4:39 p.m. UTC | #2
Hi Dmitry,

Thanks for your reply.

On Tue, Feb 6, 2024 at 4:04 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> Hi Jonathan,
>
> On Thu, Nov 02, 2023 at 07:52:47AM -0500, Jonathan Denose wrote:
> > Some elantech touchpads consistently fail after resuming from
> > suspend at sanity_check in elantech_packet_check_v4. This means
> > the touchpad is completely unusable after suspend resume.
> >
> > With different permutations of i8042 nomux, nopnp, reset, and noloop
> > kernel options enabled, and with crc_enabled the touchpad fails in
> > the same way.
> >
> > Resyncing the touchpad after receiving the
> > PACKET_UNKNOWN/PSMOUSE_BAD_DATA return code allows the touchpad to
> > function correctly on resume. The touchpad fails to reconnect with
> > the serio reconnect no matter how many times it retries, so this
> > change skips over that retry sequence and goes directly to resync.
>
> Why can't we do this in elantech_reconnect()? I am sure we can make it
> simpler and more robust than what the generic handler is trying to do
> with polling and everything.
>
> Thanks.
>
> --
> Dmitry

I am fine with anything that would be simpler and more robust, though
I'm not sure how to implement what you are describing.

Are you suggesting that in this PSMOUSE_BAD_DATA case, instead of
using psmouse_set_state and psmouse_queue_work to call
psmouse->reconnect (which calls elantech_reconnect)?

Jonathan
Dmitry Torokhov Feb. 9, 2024, 7:01 p.m. UTC | #3
On Wed, Feb 07, 2024 at 10:39:03AM -0600, Jonathan Denose wrote:
> Hi Dmitry,
> 
> Thanks for your reply.
> 
> On Tue, Feb 6, 2024 at 4:04 PM Dmitry Torokhov
> <dmitry.torokhov@gmail.com> wrote:
> >
> > Hi Jonathan,
> >
> > On Thu, Nov 02, 2023 at 07:52:47AM -0500, Jonathan Denose wrote:
> > > Some elantech touchpads consistently fail after resuming from
> > > suspend at sanity_check in elantech_packet_check_v4. This means
> > > the touchpad is completely unusable after suspend resume.
> > >
> > > With different permutations of i8042 nomux, nopnp, reset, and noloop
> > > kernel options enabled, and with crc_enabled the touchpad fails in
> > > the same way.
> > >
> > > Resyncing the touchpad after receiving the
> > > PACKET_UNKNOWN/PSMOUSE_BAD_DATA return code allows the touchpad to
> > > function correctly on resume. The touchpad fails to reconnect with
> > > the serio reconnect no matter how many times it retries, so this
> > > change skips over that retry sequence and goes directly to resync.
> >
> > Why can't we do this in elantech_reconnect()? I am sure we can make it
> > simpler and more robust than what the generic handler is trying to do
> > with polling and everything.
> >
> > Thanks.
> >
> > --
> > Dmitry
> 
> I am fine with anything that would be simpler and more robust, though
> I'm not sure how to implement what you are describing.
> 
> Are you suggesting that in this PSMOUSE_BAD_DATA case, instead of
> using psmouse_set_state and psmouse_queue_work to call
> psmouse->reconnect (which calls elantech_reconnect)?

No. From the description it sounds like the device sends wrong/extra
data right after resume. I think you can handle it in
elantech_reconnect() method by draining the buffer or issuing poll
request or something similar.

Can you post the i8042 data stream that happens on suspend/resume?
Toggling i8042.debug option will cause the driver to dump the data to
dmesg.

Thanks.
Jonathan Denose Feb. 12, 2024, 8:57 p.m. UTC | #4
Sure thing!

Attached is the dmesg output with the i8042.debug option and without
the change in this patch.

On Fri, Feb 9, 2024 at 1:02 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> On Wed, Feb 07, 2024 at 10:39:03AM -0600, Jonathan Denose wrote:
> > Hi Dmitry,
> >
> > Thanks for your reply.
> >
> > On Tue, Feb 6, 2024 at 4:04 PM Dmitry Torokhov
> > <dmitry.torokhov@gmail.com> wrote:
> > >
> > > Hi Jonathan,
> > >
> > > On Thu, Nov 02, 2023 at 07:52:47AM -0500, Jonathan Denose wrote:
> > > > Some elantech touchpads consistently fail after resuming from
> > > > suspend at sanity_check in elantech_packet_check_v4. This means
> > > > the touchpad is completely unusable after suspend resume.
> > > >
> > > > With different permutations of i8042 nomux, nopnp, reset, and noloop
> > > > kernel options enabled, and with crc_enabled the touchpad fails in
> > > > the same way.
> > > >
> > > > Resyncing the touchpad after receiving the
> > > > PACKET_UNKNOWN/PSMOUSE_BAD_DATA return code allows the touchpad to
> > > > function correctly on resume. The touchpad fails to reconnect with
> > > > the serio reconnect no matter how many times it retries, so this
> > > > change skips over that retry sequence and goes directly to resync.
> > >
> > > Why can't we do this in elantech_reconnect()? I am sure we can make it
> > > simpler and more robust than what the generic handler is trying to do
> > > with polling and everything.
> > >
> > > Thanks.
> > >
> > > --
> > > Dmitry
> >
> > I am fine with anything that would be simpler and more robust, though
> > I'm not sure how to implement what you are describing.
> >
> > Are you suggesting that in this PSMOUSE_BAD_DATA case, instead of
> > using psmouse_set_state and psmouse_queue_work to call
> > psmouse->reconnect (which calls elantech_reconnect)?
>
> No. From the description it sounds like the device sends wrong/extra
> data right after resume. I think you can handle it in
> elantech_reconnect() method by draining the buffer or issuing poll
> request or something similar.
>
> Can you post the i8042 data stream that happens on suspend/resume?
> Toggling i8042.debug option will cause the driver to dump the data to
> dmesg.
>
> Thanks.
>
> --
> Dmitry
[   43.799575] i8042: [42993] d0 <- i8042 (interrupt, 1, 12)
[   43.801315] i8042: [42995] ef <- i8042 (interrupt, 1, 12)
[   43.802696] i8042: [42996] 44 <- i8042 (interrupt, 1, 12)
[   43.804331] i8042: [42998] 12 <- i8042 (interrupt, 1, 12)
[   43.805905] i8042: [42999] 5c <- i8042 (interrupt, 1, 12)
[   43.807482] i8042: [43001] 31 <- i8042 (interrupt, 1, 12)
[   43.809069] i8042: [43003] d0 <- i8042 (interrupt, 1, 12)
[   43.810656] i8042: [43004] f1 <- i8042 (interrupt, 1, 12)
[   43.812736] i8042: [43006] 44 <- i8042 (interrupt, 1, 12)
[   43.814330] i8042: [43008] 12 <- i8042 (interrupt, 1, 12)
[   43.815911] i8042: [43009] 55 <- i8042 (interrupt, 1, 12)
[   43.817488] i8042: [43011] 31 <- i8042 (interrupt, 1, 12)
[   43.819053] i8042: [43013] d0 <- i8042 (interrupt, 1, 12)
[   43.820654] i8042: [43014] f2 <- i8042 (interrupt, 1, 12)
[   43.822222] i8042: [43016] 44 <- i8042 (interrupt, 1, 12)
[   43.823820] i8042: [43017] 12 <- i8042 (interrupt, 1, 12)
[   43.825402] i8042: [43019] 4e <- i8042 (interrupt, 1, 12)
[   43.826993] i8042: [43021] 31 <- i8042 (interrupt, 1, 12)
[   43.828586] i8042: [43022] d0 <- i8042 (interrupt, 1, 12)
[   43.830160] i8042: [43024] f2 <- i8042 (interrupt, 1, 12)
[   43.831744] i8042: [43025] 44 <- i8042 (interrupt, 1, 12)
[   43.833325] i8042: [43027] 12 <- i8042 (interrupt, 1, 12)
[   43.834906] i8042: [43028] 48 <- i8042 (interrupt, 1, 12)
[   43.836489] i8042: [43030] 31 <- i8042 (interrupt, 1, 12)
[   43.838072] i8042: [43032] f0 <- i8042 (interrupt, 1, 12)
[   43.839656] i8042: [43033] f3 <- i8042 (interrupt, 1, 12)
[   43.841739] i8042: [43035] 44 <- i8042 (interrupt, 1, 12)
[   43.843330] i8042: [43037] 12 <- i8042 (interrupt, 1, 12)
[   43.844906] i8042: [43038] 43 <- i8042 (interrupt, 1, 12)
[   43.846495] i8042: [43040] 31 <- i8042 (interrupt, 1, 12)
[   43.848087] i8042: [43042] f0 <- i8042 (interrupt, 1, 12)
[   43.849662] i8042: [43043] f4 <- i8042 (interrupt, 1, 12)
[   43.851207] i8042: [43045] 44 <- i8042 (interrupt, 1, 12)
[   43.852824] i8042: [43046] 12 <- i8042 (interrupt, 1, 12)
[   43.854406] i8042: [43048] 3d <- i8042 (interrupt, 1, 12)
[   43.855989] i8042: [43050] 31 <- i8042 (interrupt, 1, 12)
[   43.857569] i8042: [43051] f0 <- i8042 (interrupt, 1, 12)
[   43.859086] i8042: [43053] f5 <- i8042 (interrupt, 1, 12)
[   43.860735] i8042: [43054] 44 <- i8042 (interrupt, 1, 12)
[   43.862323] i8042: [43056] 12 <- i8042 (interrupt, 1, 12)
[   43.863911] i8042: [43057] 39 <- i8042 (interrupt, 1, 12)
[   43.865483] i8042: [43059] 31 <- i8042 (interrupt, 1, 12)
[   43.867082] i8042: [43061] f0 <- i8042 (interrupt, 1, 12)
[   43.868646] i8042: [43062] f6 <- i8042 (interrupt, 1, 12)
[   43.870735] i8042: [43064] 44 <- i8042 (interrupt, 1, 12)
[   43.872324] i8042: [43066] 12 <- i8042 (interrupt, 1, 12)
[   43.873899] i8042: [43067] 34 <- i8042 (interrupt, 1, 12)
[   43.875544] i8042: [43069] 31 <- i8042 (interrupt, 1, 12)
[   43.877067] i8042: [43071] f0 <- i8042 (interrupt, 1, 12)
[   43.878646] i8042: [43072] f7 <- i8042 (interrupt, 1, 12)
[   43.880166] i8042: [43074] 44 <- i8042 (interrupt, 1, 12)
[   43.881814] i8042: [43075] 12 <- i8042 (interrupt, 1, 12)
[   43.883397] i8042: [43077] 2f <- i8042 (interrupt, 1, 12)
[   43.884988] i8042: [43079] 31 <- i8042 (interrupt, 1, 12)
[   43.886570] i8042: [43080] f0 <- i8042 (interrupt, 1, 12)
[   43.888083] i8042: [43082] f8 <- i8042 (interrupt, 1, 12)
[   43.890242] i8042: [43084] 44 <- i8042 (interrupt, 1, 12)
[   43.891842] i8042: [43085] 12 <- i8042 (interrupt, 1, 12)
[   43.893417] i8042: [43087] 2b <- i8042 (interrupt, 1, 12)
[   43.894992] i8042: [43089] 31 <- i8042 (interrupt, 1, 12)
[   43.896594] i8042: [43090] f0 <- i8042 (interrupt, 1, 12)
[   43.898156] i8042: [43092] f8 <- i8042 (interrupt, 1, 12)
[   43.899718] i8042: [43093] 44 <- i8042 (interrupt, 1, 12)
[   43.901339] i8042: [43095] 12 <- i8042 (interrupt, 1, 12)
[   43.902908] i8042: [43096] 26 <- i8042 (interrupt, 1, 12)
[   43.904487] i8042: [43098] 31 <- i8042 (interrupt, 1, 12)
[   43.906076] i8042: [43100] f0 <- i8042 (interrupt, 1, 12)
[   43.907654] i8042: [43101] f8 <- i8042 (interrupt, 1, 12)
[   43.909175] i8042: [43103] 44 <- i8042 (interrupt, 1, 12)
[   43.910821] i8042: [43104] 12 <- i8042 (interrupt, 1, 12)
[   43.912403] i8042: [43106] 21 <- i8042 (interrupt, 1, 12)
[   43.913997] i8042: [43108] 31 <- i8042 (interrupt, 1, 12)
[   43.915568] i8042: [43109] f0 <- i8042 (interrupt, 1, 12)
[   43.917083] i8042: [43111] f9 <- i8042 (interrupt, 1, 12)
[   43.919240] i8042: [43113] 44 <- i8042 (interrupt, 1, 12)
[   43.920823] i8042: [43114] 12 <- i8042 (interrupt, 1, 12)
[   43.922417] i8042: [43116] 1a <- i8042 (interrupt, 1, 12)
[   43.923985] i8042: [43118] 31 <- i8042 (interrupt, 1, 12)
[   43.925570] i8042: [43119] f0 <- i8042 (interrupt, 1, 12)
[   43.927153] i8042: [43121] fb <- i8042 (interrupt, 1, 12)
[   43.928726] i8042: [43122] 44 <- i8042 (interrupt, 1, 12)
[   43.930316] i8042: [43124] 12 <- i8042 (interrupt, 1, 12)
[   43.931900] i8042: [43125] 15 <- i8042 (interrupt, 1, 12)
[   43.933488] i8042: [43127] 31 <- i8042 (interrupt, 1, 12)
[   43.935071] i8042: [43129] f0 <- i8042 (interrupt, 1, 12)
[   43.936645] i8042: [43130] fd <- i8042 (interrupt, 1, 12)
[   43.938181] i8042: [43132] 54 <- i8042 (interrupt, 1, 12)
[   43.939816] i8042: [43133] 12 <- i8042 (interrupt, 1, 12)
[   43.941396] i8042: [43135] 0f <- i8042 (interrupt, 1, 12)
[   43.942984] i8042: [43137] 31 <- i8042 (interrupt, 1, 12)
[   43.944567] i8042: [43138] f1 <- i8042 (interrupt, 1, 12)
[   43.946074] i8042: [43140] 00 <- i8042 (interrupt, 1, 12)
[   43.948240] i8042: [43142] 54 <- i8042 (interrupt, 1, 12)
[   43.949823] i8042: [43143] 12 <- i8042 (interrupt, 1, 12)
[   43.951410] i8042: [43145] 08 <- i8042 (interrupt, 1, 12)
[   43.952987] i8042: [43147] 31 <- i8042 (interrupt, 1, 12)
[   43.954562] i8042: [43148] f1 <- i8042 (interrupt, 1, 12)
[   43.956156] i8042: [43150] 03 <- i8042 (interrupt, 1, 12)
[   43.957746] i8042: [43151] 54 <- i8042 (interrupt, 1, 12)
[   43.959314] i8042: [43153] 12 <- i8042 (interrupt, 1, 12)
[   43.960893] i8042: [43154] 01 <- i8042 (interrupt, 1, 12)
[   43.962484] i8042: [43156] 31 <- i8042 (interrupt, 1, 12)
[   43.964071] i8042: [43158] f1 <- i8042 (interrupt, 1, 12)
[   43.965647] i8042: [43159] 05 <- i8042 (interrupt, 1, 12)
[   43.967162] i8042: [43161] 54 <- i8042 (interrupt, 1, 12)
[   43.968812] i8042: [43162] 11 <- i8042 (interrupt, 1, 12)
[   43.970398] i8042: [43164] fa <- i8042 (interrupt, 1, 12)
[   43.971981] i8042: [43166] 31 <- i8042 (interrupt, 1, 12)
[   43.973558] i8042: [43167] f1 <- i8042 (interrupt, 1, 12)
[   43.975071] i8042: [43169] 07 <- i8042 (interrupt, 1, 12)
[   43.977203] i8042: [43171] 54 <- i8042 (interrupt, 1, 12)
[   43.978810] i8042: [43172] 11 <- i8042 (interrupt, 1, 12)
[   43.980401] i8042: [43174] f4 <- i8042 (interrupt, 1, 12)
[   43.981979] i8042: [43176] 31 <- i8042 (interrupt, 1, 12)
[   43.983564] i8042: [43177] f1 <- i8042 (interrupt, 1, 12)
[   43.985145] i8042: [43179] 09 <- i8042 (interrupt, 1, 12)
[   43.986729] i8042: [43180] 54 <- i8042 (interrupt, 1, 12)
[   43.988323] i8042: [43182] 11 <- i8042 (interrupt, 1, 12)
[   43.989889] i8042: [43183] ef <- i8042 (interrupt, 1, 12)
[   43.991477] i8042: [43185] 31 <- i8042 (interrupt, 1, 12)
[   43.993058] i8042: [43187] f1 <- i8042 (interrupt, 1, 12)
[   43.994638] i8042: [43188] 0b <- i8042 (interrupt, 1, 12)
[   43.996176] i8042: [43190] 54 <- i8042 (interrupt, 1, 12)
[   43.997804] i8042: [43191] 11 <- i8042 (interrupt, 1, 12)
[   43.999353] i8042: [43193] ea <- i8042 (interrupt, 1, 12)
[   44.000993] i8042: [43195] 31 <- i8042 (interrupt, 1, 12)
[   44.002483] i8042: [43196] f1 <- i8042 (interrupt, 1, 12)
[   44.004056] i8042: [43198] 0c <- i8042 (interrupt, 1, 12)
[   44.006163] i8042: [43200] 54 <- i8042 (interrupt, 1, 12)
[   44.007808] i8042: [43201] 11 <- i8042 (interrupt, 1, 12)
[   44.009390] i8042: [43203] e5 <- i8042 (interrupt, 1, 12)
[   44.011001] i8042: [43205] 31 <- i8042 (interrupt, 1, 12)
[   44.012579] i8042: [43206] f1 <- i8042 (interrupt, 1, 12)
[   44.014166] i8042: [43208] 0e <- i8042 (interrupt, 1, 12)
[   44.015694] i8042: [43209] 54 <- i8042 (interrupt, 1, 12)
[   44.017312] i8042: [43211] 11 <- i8042 (interrupt, 1, 12)
[   44.018901] i8042: [43212] e1 <- i8042 (interrupt, 1, 12)
[   44.020485] i8042: [43214] 31 <- i8042 (interrupt, 1, 12)
[   44.022066] i8042: [43216] f1 <- i8042 (interrupt, 1, 12)
[   44.023646] i8042: [43217] 0f <- i8042 (interrupt, 1, 12)
[   44.025172] i8042: [43219] 54 <- i8042 (interrupt, 1, 12)
[   44.026821] i8042: [43220] 11 <- i8042 (interrupt, 1, 12)
[   44.028393] i8042: [43222] df <- i8042 (interrupt, 1, 12)
[   44.029985] i8042: [43224] 31 <- i8042 (interrupt, 1, 12)
[   44.031564] i8042: [43225] f1 <- i8042 (interrupt, 1, 12)
[   44.033071] i8042: [43227] 10 <- i8042 (interrupt, 1, 12)
[   44.035234] i8042: [43229] 54 <- i8042 (interrupt, 1, 12)
[   44.036815] i8042: [43230] 11 <- i8042 (interrupt, 1, 12)
[   44.038405] i8042: [43232] dd <- i8042 (interrupt, 1, 12)
[   44.039984] i8042: [43234] 31 <- i8042 (interrupt, 1, 12)
[   44.041566] i8042: [43235] f1 <- i8042 (interrupt, 1, 12)
[   44.043149] i8042: [43237] 11 <- i8042 (interrupt, 1, 12)
[   44.044714] i8042: [43238] 54 <- i8042 (interrupt, 1, 12)
[   44.046319] i8042: [43240] 11 <- i8042 (interrupt, 1, 12)
[   44.047900] i8042: [43241] dd <- i8042 (interrupt, 1, 12)
[   44.049480] i8042: [43243] 31 <- i8042 (interrupt, 1, 12)
[   44.051068] i8042: [43245] f1 <- i8042 (interrupt, 1, 12)
[   44.052651] i8042: [43246] 12 <- i8042 (interrupt, 1, 12)
[   44.054166] i8042: [43248] 54 <- i8042 (interrupt, 1, 12)
[   44.055815] i8042: [43249] 11 <- i8042 (interrupt, 1, 12)
[   44.057399] i8042: [43251] dd <- i8042 (interrupt, 1, 12)
[   44.058988] i8042: [43253] 31 <- i8042 (interrupt, 1, 12)
[   44.060568] i8042: [43254] f1 <- i8042 (interrupt, 1, 12)
[   44.062078] i8042: [43256] 12 <- i8042 (interrupt, 1, 12)
[   44.064239] i8042: [43258] 54 <- i8042 (interrupt, 1, 12)
[   44.065821] i8042: [43259] 11 <- i8042 (interrupt, 1, 12)
[   44.067401] i8042: [43261] dd <- i8042 (interrupt, 1, 12)
[   44.068986] i8042: [43263] 31 <- i8042 (interrupt, 1, 12)
[   44.070562] i8042: [43264] f1 <- i8042 (interrupt, 1, 12)
[   44.072151] i8042: [43266] 12 <- i8042 (interrupt, 1, 12)
[   44.073735] i8042: [43267] 54 <- i8042 (interrupt, 1, 12)
[   44.075341] i8042: [43269] 11 <- i8042 (interrupt, 1, 12)
[   44.076901] i8042: [43270] df <- i8042 (interrupt, 1, 12)
[   44.078475] i8042: [43272] 31 <- i8042 (interrupt, 1, 12)
[   44.080058] i8042: [43274] f1 <- i8042 (interrupt, 1, 12)
[   44.081575] i8042: [43275] 13 <- i8042 (interrupt, 1, 12)
[   44.083233] i8042: [43277] 54 <- i8042 (interrupt, 1, 12)
[   44.084816] i8042: [43278] 11 <- i8042 (interrupt, 1, 12)
[   44.086396] i8042: [43280] e1 <- i8042 (interrupt, 1, 12)
[   44.087982] i8042: [43282] 31 <- i8042 (interrupt, 1, 12)
[   44.089560] i8042: [43283] d1 <- i8042 (interrupt, 1, 12)
[   44.091151] i8042: [43285] 13 <- i8042 (interrupt, 1, 12)
[   44.093234] i8042: [43287] 44 <- i8042 (interrupt, 1, 12)
[   44.094820] i8042: [43288] 11 <- i8042 (interrupt, 1, 12)
[   44.096411] i8042: [43290] e4 <- i8042 (interrupt, 1, 12)
[   44.097991] i8042: [43292] 31 <- i8042 (interrupt, 1, 12)
[   44.099571] i8042: [43293] c1 <- i8042 (interrupt, 1, 12)
[   44.101121] i8042: [43295] 13 <- i8042 (interrupt, 1, 12)
[   44.102722] i8042: [43296] 44 <- i8042 (interrupt, 1, 12)
[   44.104318] i8042: [43298] 11 <- i8042 (interrupt, 1, 12)
[   44.105901] i8042: [43299] ec <- i8042 (interrupt, 1, 12)
[   44.107486] i8042: [43301] 31 <- i8042 (interrupt, 1, 12)
[   44.109051] i8042: [43303] 91 <- i8042 (interrupt, 1, 12)
[   44.110646] i8042: [43304] 12 <- i8042 (interrupt, 1, 12)
[   44.112733] i8042: [43306] 44 <- i8042 (interrupt, 1, 12)
[   44.114322] i8042: [43308] 11 <- i8042 (interrupt, 1, 12)
[   44.115902] i8042: [43309] f4 <- i8042 (interrupt, 1, 12)
[   44.117479] i8042: [43311] 31 <- i8042 (interrupt, 1, 12)
[   44.119065] i8042: [43313] 11 <- i8042 (interrupt, 1, 12)
[   44.120646] i8042: [43314] 11 <- i8042 (interrupt, 1, 12)
[   44.122197] i8042: [43316] 44 <- i8042 (interrupt, 1, 12)
[   44.123819] i8042: [43317] 11 <- i8042 (interrupt, 1, 12)
[   44.125397] i8042: [43319] fb <- i8042 (interrupt, 1, 12)
[   44.126984] i8042: [43321] 31 <- i8042 (interrupt, 1, 12)
[   44.128567] i8042: [43322] 11 <- i8042 (interrupt, 1, 12)
[   44.130150] i8042: [43324] 11 <- i8042 (interrupt, 1, 12)
[   44.131720] i8042: [43325] 04 <- i8042 (interrupt, 1, 12)
[   44.133319] i8042: [43327] 00 <- i8042 (interrupt, 1, 12)
[   44.134896] i8042: [43328] 00 <- i8042 (interrupt, 1, 12)
[   44.136483] i8042: [43330] 10 <- i8042 (interrupt, 1, 12)
[   44.138041] i8042: [43332] 00 <- i8042 (interrupt, 1, 12)
[   44.139644] i8042: [43333] 00 <- i8042 (interrupt, 1, 12)
[   48.596741] i8042: [47790] ** <- i8042 (interrupt, 0, 1)
[   48.598217] i8042: [47792] ** <- i8042 (interrupt, 0, 1)
[   48.598254] atkbd serio0: Unknown key pressed (translated set 2, code 0xbf on isa0060/serio0).
[   48.598274] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   48.599118] i8042: [47793] ** <- i8042 (interrupt, 0, 1)
[   48.601159] i8042: [47795] ** <- i8042 (interrupt, 0, 1)
[   48.601196] atkbd serio0: Unknown key released (translated set 2, code 0xbf on isa0060/serio0).
[   48.601216] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   49.705335] PM: suspend entry (deep)
[   49.747997] Filesystems sync: 0.042 seconds
[   49.748014] PM: Preparing system for sleep (deep)
[   49.751657] Freezing user space processes ... (elapsed 0.001 seconds) done.
[   49.753457] OOM killer disabled.
[   49.753461] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[   49.755338] PM: Suspending system (deep)
[   49.772077] rfkill rfkill3: PM: calling rfkill_suspend+0x0/0x21 @ 4492, parent: hci0
[   49.772101] rfkill rfkill3: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   49.772112] input input17: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: serio1
[   49.772121] input input17: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   49.772130] input input22: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772136] input input22: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772142] input input21: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772148] input input21: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772155] input input20: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772160] input input20: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772168] input input19: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772173] input input19: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772180] input input18: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772186] input input18: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772193] input input16: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772198] input input16: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772205] input input15: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: card0
[   49.772211] input input15: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772219] sound pcmC0D10p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772228] sound pcmC0D10p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 1 usecs
[   49.772234] sound pcmC0D9p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772240] sound pcmC0D9p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   49.772245] sound pcmC0D8p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772251] sound pcmC0D8p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   49.772257] sound pcmC0D7p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772262] sound pcmC0D7p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   49.772268] sound pcmC0D3p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772274] sound pcmC0D3p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   49.772279] sound pcmC0D0c: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772286] sound pcmC0D0c: PM: do_pcm_suspend+0x0/0x27 returned 0 after 1 usecs
[   49.772291] sound pcmC0D0p: PM: calling do_pcm_suspend+0x0/0x27 @ 4492, parent: card0
[   49.772296] sound pcmC0D0p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   49.772310] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:01:00.0
[   49.772318] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772331] rfkill rfkill2: PM: calling rfkill_suspend+0x0/0x21 @ 4492, parent: VPC2004:00
[   49.772337] rfkill rfkill2: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   49.772343] rfkill rfkill1: PM: calling rfkill_suspend+0x0/0x21 @ 4492, parent: VPC2004:00
[   49.772348] rfkill rfkill1: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   49.772357] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] @ 9, parent: 0000:00:0e.0
[   49.772367] input input14: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: VPC2004:00
[   49.772373] input input14: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772390] rfkill rfkill0: PM: calling rfkill_suspend+0x0/0x21 @ 4492, parent: phy0
[   49.772396] rfkill rfkill0: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   49.772403] leds phy0-led: PM: calling led_suspend+0x0/0x3f @ 4492, parent: 0000:02:00.0
[   49.772409] leds phy0-led: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   49.772417] platform regulatory.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.772423] platform regulatory.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772434] input input13: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: LNXVIDEO:00
[   49.772440] input input13: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772449] backlight intel_backlight: PM: calling backlight_suspend+0x0/0x7a [backlight] @ 4492, parent: card0-eDP-1
[   49.772459] backlight intel_backlight: PM: backlight_suspend+0x0/0x7a [backlight] returned 0 after 0 usecs
[   49.772497] ieee80211 phy0: PM: calling wiphy_suspend+0x0/0x124 [cfg80211] @ 107, parent: 0000:02:00.0
[   49.772562] wlan0: deauthenticating from c8:9e:43:94:32:f2 by local choice (Reason: 3=DEAUTH_LEAVING)
[   49.772573] input input11: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: 0018:056A:5120.0002
[   49.772585] input input11: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772594] input input10: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: 0018:056A:5120.0002
[   49.772600] input input10: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772607] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0018:048D:8350.0001
[   49.772613] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772621] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0018:048D:8350.0001
[   49.772628] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 1 usecs
[   49.772635] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0018:048D:8350.0001
[   49.772640] platform HID-SENSOR-200001.2.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772647] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0018:048D:8350.0001
[   49.772652] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772679] platform microcode: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.772685] platform microcode: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772697] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.772703] snd-soc-dummy snd-soc-dummy: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772717] leds input3::scrolllock: PM: calling led_suspend+0x0/0x3f @ 4492, parent: input3
[   49.772715] usb 1-8: PM: calling usb_dev_suspend+0x0/0x14 @ 105, parent: usb1
[   49.772723] leds input3::scrolllock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   49.772729] leds input3::capslock: PM: calling led_suspend+0x0/0x3f @ 4492, parent: input3
[   49.772734] leds input3::capslock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   49.772739] leds input3::numlock: PM: calling led_suspend+0x0/0x3f @ 4492, parent: input3
[   49.772744] leds input3::numlock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   49.772769] input input3: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: serio0
[   49.772775] mmcblk mmc0:0001: PM: calling mmc_bus_suspend+0x0/0x56 @ 11, parent: mmc0
[   49.772780] usb 1-7: PM: calling usb_dev_suspend+0x0/0x14 @ 108, parent: usb1
[   49.772801] input input3: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.772815] platform coretemp.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.772821] platform coretemp.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.772830] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: rtc0
[   49.772837] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 1 usecs
[   49.772847] psmouse serio1: PM: calling serio_suspend+0x0/0x1d @ 4492, parent: i8042
[   49.772864] i8042: [48966] d4 -> i8042 (command)
[   49.772921] usb 1-8: PM: usb_dev_suspend+0x0/0x14 returned 0 after 194 usecs
[   49.773047] i8042: [48967] f5 -> i8042 (parameter)
[   49.773116] usb 1-7: PM: usb_dev_suspend+0x0/0x14 returned 0 after 327 usecs
[   49.776108] i8042: [48970] fa <- i8042 (interrupt, 1, 12)
[   49.776229] i8042: [48970] d4 -> i8042 (command)
[   49.776335] mmcblk mmc0:0001: PM: mmc_bus_suspend+0x0/0x56 returned 0 after 3546 usecs
[   49.776436] i8042: [48970] f6 -> i8042 (parameter)
[   49.779370] i8042: [48973] fa <- i8042 (interrupt, 1, 12)
[   49.779529] i8042: [48973] d4 -> i8042 (command)
[   49.779725] i8042: [48973] f4 -> i8042 (parameter)
[   49.782466] i8042: [48976] fa <- i8042 (interrupt, 1, 12)
[   49.782581] psmouse serio1: PM: serio_suspend+0x0/0x1d returned 0 after 9722 usecs
[   49.782618] atkbd serio0: PM: calling serio_suspend+0x0/0x1d @ 4492, parent: i8042
[   49.782634] i8042: [48976] f6 -> i8042 (kbd-data)
[   49.783961] i8042: [48978] ** <- i8042 (interrupt, 0, 1)
[   49.784045] atkbd serio0: PM: serio_suspend+0x0/0x1d returned 0 after 1417 usecs
[   49.784074] i8042 i8042: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.784098] i8042: [48978] 60 -> i8042 (command)
[   49.784225] i8042: [48978] 74 -> i8042 (parameter)
[   49.784374] i8042: [48978] aa -> i8042 (command)
[   49.784621] i8042: [48978] 55 <- i8042 (return)
[   49.784680] i8042: [48978] 60 -> i8042 (command)
[   49.784809] i8042: [48978] 67 -> i8042 (parameter)
[   49.784818] i8042 i8042: PM: platform_pm_suspend+0x0/0x4a returned 0 after 735 usecs
[   49.784870] platform intel_xhci_usb_sw: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:15.0
[   49.784877] platform intel_xhci_usb_sw: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.784884] usb usb2: PM: calling usb_dev_suspend+0x0/0x14 @ 105, parent: 0000:00:15.0
[   49.784888] platform Fixed MDIO bus.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.784894] platform Fixed MDIO bus.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.784936] idma64 idma64.3: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:17.1
[   49.785013]  ata2: PM: calling ata_port_pm_suspend+0x0/0x3e @ 11, parent: 0000:00:12.0
[   49.785015] usb usb1: PM: calling usb_dev_suspend+0x0/0x14 @ 4493, parent: 0000:00:15.0
[   49.785044]  ata1: PM: calling ata_port_pm_suspend+0x0/0x3e @ 108, parent: 0000:00:12.0
[   49.785191]  ata2: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 160 usecs
[   49.785211] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 11, parent: i2c-3
[   49.785244] idma64 idma64.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 301 usecs
[   49.785259] idma64 idma64.2: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:17.0
[   49.785675] idma64 idma64.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 409 usecs
[   49.785689] idma64 idma64.1: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:16.3
[   49.785816] i2c_designware i2c_designware.2: PM: calling platform_pm_suspend+0x0/0x4a @ 4495, parent: 0000:00:17.0
[   49.785862] i2c_designware i2c_designware.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.785873] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4496, parent: i2c-1
[   49.785922] idma64 idma64.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 227 usecs
[   49.785936] idma64 idma64.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:16.0
[   49.785946] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] returned 0 after 13563 usecs
[   49.785987] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend+0x0/0x1da @ 96, parent: pci0000:00
[   49.786074] i2c_designware i2c_designware.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4497, parent: 0000:00:16.0
[   49.786082] i2c_designware i2c_designware.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786178]  ata1: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 1121 usecs
[   49.786354] idma64 idma64.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 411 usecs
[   49.786365] platform intel-spi: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:1f.0
[   49.786371] platform intel-spi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786408] input input2: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: LNXPWRBN:00
[   49.786416] input input2: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   49.786423] input input1: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: PNP0C0C:00
[   49.786429] input input1: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.786437] input input0: PM: calling input_dev_suspend+0x0/0x47 @ 4492, parent: PNP0C0D:00
[   49.786443] input input0: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   49.786497] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786505] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786522] rtc_cmos 00:04: PM: calling pnp_bus_suspend+0x0/0x14 @ 4492, parent: pnp0
[   49.786672] rtc_cmos 00:04: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 142 usecs
[   49.786692] system 00:03: PM: calling pnp_bus_suspend+0x0/0x14 @ 4492, parent: pnp0
[   49.786700] system 00:03: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   49.786707] i8042 aux 00:02: PM: calling pnp_bus_suspend+0x0/0x14 @ 4492, parent: pnp0
[   49.786713] i8042 aux 00:02: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   49.786719] i8042 kbd 00:01: PM: calling pnp_bus_suspend+0x0/0x14 @ 4492, parent: pnp0
[   49.786725] i8042 kbd 00:01: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   49.786731] system 00:00: PM: calling pnp_bus_suspend+0x0/0x14 @ 4492, parent: pnp0
[   49.786736] system 00:00: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   49.786747] platform chromeos_acpi: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786752] platform chromeos_acpi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786759] platform efivars.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786764] platform efivars.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786771] platform rtc-efi.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786776] platform rtc-efi.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786784] button LNXPWRBN:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4492, parent: LNXSYSTM:00
[   49.786792] button LNXPWRBN:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   49.786802] acpi-fan PNP0C0B:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786808] acpi-fan PNP0C0B:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786814] platform MSFT0101:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786820] platform MSFT0101:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786826] platform INT33A1:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786832] platform INT33A1:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786840] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4492, parent: platform
[   49.786846] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 1 usecs
[   49.786854] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4492, parent: platform
[   49.786859] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   49.786867] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4492, parent: platform
[   49.786871] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   49.786878] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4492, parent: platform
[   49.786883] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   49.786888] platform PNP0103:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786894] platform PNP0103:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786900] platform PNP0C0C:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786913] platform PNP0C0C:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786920] platform ACPI0003:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: platform
[   49.786926] platform ACPI0003:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786933] platform PNP0C0D:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: PNP0C09:00
[   49.786938] platform PNP0C0D:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786944] platform INT33D3:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: PNP0C09:00
[   49.786950] platform INT33D3:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786974] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4492, parent: PNP0C09:00
[   49.786981] ideapad_acpi VPC2004:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   49.786987] platform PNP0C0A:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: PNP0C09:00
[   49.786992] platform PNP0C0A:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.786996] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 998 usecs
[   49.786999] platform PNP0C09:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4492, parent: 0000:00:1f.0
[   49.787004] platform PNP0C09:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.787031] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend+0x0/0x1da @ 108, parent: pci0000:00
[   49.787042] thermal LNXTHERM:00: PM: calling acpi_thermal_suspend+0x0/0x1d @ 4492, parent: LNXSYBUS:01
[   49.787052] thermal LNXTHERM:00: PM: acpi_thermal_suspend+0x0/0x1d returned 0 after 2 usecs
[   49.787066] tpm_crb MSFT0101:00: PM: calling tpm_pm_suspend+0x0/0xcc @ 4492, parent: LNXSYBUS:00
[   49.787114] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 74 usecs
[   49.787125] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 108, parent: pci0000:00
[   49.787132] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   49.787141] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend+0x0/0x1da @ 108, parent: pci0000:00
[   49.787179] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4497, parent: 0000:00:14.0
[   49.787209] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 21 usecs
[   49.787219] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4497, parent: pci0000:00
[   49.787226] intel-lpss 0000:00:17.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 1 usecs
[   49.787242] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 94 usecs
[   49.787254] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend+0x0/0x1da @ 108, parent: pci0000:00
[   49.787261] intel-lpss 0000:00:16.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   49.787806] pcieport 0000:00:14.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4500, parent: pci0000:00
[   49.787841] pcieport 0000:00:14.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 8 usecs
[   49.787855] ahci 0000:00:12.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4500, parent: pci0000:00
[   49.787865] ahci 0000:00:12.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 4 usecs
[   49.787880] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4500, parent: pci0000:00
[   49.788114] i915 0000:00:02.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4501, parent: pci0000:00
[   49.788306] pci 0000:00:00.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4502, parent: pci0000:00
[   49.788318] pci 0000:00:00.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   49.788329] pci 0000:00:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4502, parent: pci0000:00
[   49.788335] pci 0000:00:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   49.788496] mei_me 0000:00:0f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 608 usecs
[   49.789927] i915 0000:00:02.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 1787 usecs
[   49.795111] usb usb1: PM: usb_dev_suspend+0x0/0x14 returned 0 after 10067 usecs
[   49.797580] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 12355 usecs
[   49.797773] i2c_designware i2c_designware.3: PM: calling platform_pm_suspend+0x0/0x4a @ 4494, parent: 0000:00:17.1
[   49.797799] i2c_designware i2c_designware.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.797943] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4498, parent: pci0000:00
[   49.797971] intel-lpss 0000:00:17.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   49.798115] i2c_hid_acpi i2c-WCOM5120:00: failed to change power setting.
[   49.798129] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 12243 usecs
[   49.798276] i2c_designware i2c_designware.1: PM: calling platform_pm_suspend+0x0/0x4a @ 9, parent: 0000:00:16.3
[   49.798302] i2c_designware i2c_designware.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   49.798363] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend+0x0/0x1da @ 4497, parent: pci0000:00
[   49.798380] intel-lpss 0000:00:16.3: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   49.808025] usb usb2: PM: usb_dev_suspend+0x0/0x14 returned 0 after 23120 usecs
[   49.808065] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend+0x0/0x1da @ 108, parent: pci0000:00
[   49.808445] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 370 usecs
[   49.822224] ieee80211 phy0: PM: wiphy_suspend+0x0/0x124 [cfg80211] returned 0 after 49665 usecs
[   49.822346] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 96, parent: 0000:00:14.1
[   49.822365] iwlwifi 0000:02:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 3 usecs
[   49.822399] pcieport 0000:00:14.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4499, parent: pci0000:00
[   49.822413] pcieport 0000:00:14.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 6 usecs
[   50.109745] tpm_crb MSFT0101:00: PM: tpm_pm_suspend+0x0/0xcc returned 0 after 322665 usecs
[   50.109791] button PNP0C0C:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4492, parent: LNXSYBUS:00
[   50.109800] button PNP0C0C:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   50.109894] button PNP0C0D:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4492, parent: PNP0C09:00
[   50.109900] button PNP0C0D:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   50.109922] ec PNP0C09:00: PM: calling acpi_ec_suspend+0x0/0x7d @ 4492, parent: device:01
[   50.109931] ec PNP0C09:00: PM: acpi_ec_suspend+0x0/0x7d returned 0 after 0 usecs
[   50.109977] PM: suspend of devices complete after 337.973 msecs
[   50.109982] PM: start suspend of devices complete after 354.597 msecs
[   50.110138] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110152] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   50.110390] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4502, parent: i2c-3
[   50.110402] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 1 usecs
[   50.110434] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4499, parent: i2c-1
[   50.110463] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4492, parent: platform
[   50.110472] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   50.110480] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4492, parent: platform
[   50.110485] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   50.110492] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4492, parent: platform
[   50.110497] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   50.110504] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4492, parent: platform
[   50.110509] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   50.110518] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4492, parent: PNP0C09:00
[   50.110524] ideapad_acpi VPC2004:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   50.110527] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 4502, parent: 0000:00:17.1
[   50.110549] i2c_designware i2c_designware.3: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 9 usecs
[   50.110557] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 99 usecs
[   50.110560] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: 0000:00:14.1
[   50.110570] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110573] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4499, parent: 0000:00:14.0
[   50.110580] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110584] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   50.110587] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110596] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4499, parent: pci0000:00
[   50.110598] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110605] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110606] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110608] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 96, parent: pci0000:00
[   50.110615] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110623] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110633] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110639] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110652] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110658] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110669] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110670] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 49 usecs
[   50.110676] pcieport 0000:00:14.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110686] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 96, parent: pci0000:00
[   50.110686] ahci 0000:00:12.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110693] ahci 0000:00:12.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110695] pcieport 0000:00:14.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110703] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110711] mei_me 0000:00:0f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110711] i915 0000:00:02.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 96, parent: pci0000:00
[   50.110720] pci 0000:00:00.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110727] pci 0000:00:00.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.110734] pci 0000:00:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4502, parent: pci0000:00
[   50.110740] pci 0000:00:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   50.112733] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 107, parent: 0000:00:16.3
[   50.112760] i2c_designware i2c_designware.1: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 8 usecs
[   50.112795] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4499, parent: pci0000:00
[   50.112845] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 41 usecs
[   50.124069] i915 0000:00:02.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 13344 usecs
[   50.124265] PM: late suspend of devices complete after 14.276 msecs
[   50.124562] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4502, parent: pci0000:00
[   50.124832] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4497, parent: i2c-3
[   50.124857] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1 usecs
[   50.124871] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4497, parent: i2c-1
[   50.124877] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   50.124949] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4492, parent: platform
[   50.125897] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 936 usecs
[   50.125914] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4492, parent: platform
[   50.126766] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 846 usecs
[   50.126774] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4492, parent: platform
[   50.128169] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1389 usecs
[   50.128177] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4492, parent: platform
[   50.129881] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1698 usecs
[   50.129892] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4492, parent: PNP0C09:00
[   50.129897] ideapad_acpi VPC2004:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   50.129928] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 105, parent: 0000:00:14.1
[   50.129938] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 96, parent: 0000:00:14.0
[   50.130033] ec PNP0C09:00: PM: calling acpi_ec_suspend_noirq+0x0/0x4c @ 4492, parent: device:01
[   50.130045] ACPI: EC: interrupt blocked
[   50.130047] ec PNP0C09:00: PM: acpi_ec_suspend_noirq+0x0/0x4c returned 0 after 2 usecs
[   50.130109] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4499, parent: pci0000:00
[   50.130987] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 108, parent: pci0000:00
[   50.131033] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4497, parent: pci0000:00
[   50.131080] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 962 usecs
[   50.131097] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4499, parent: pci0000:00
[   50.131607] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 610 usecs
[   50.131619] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 108, parent: pci0000:00
[   50.131625] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   50.131634] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 108, parent: pci0000:00
[   50.131734] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 9, parent: pci0000:00
[   50.131760] ahci 0000:00:12.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4498, parent: pci0000:00
[   50.131785] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4494, parent: pci0000:00
[   50.131878] pci 0000:00:00.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 11, parent: pci0000:00
[   50.131934] pci 0000:00:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4493, parent: pci0000:00
[   50.132031] pci 0000:00:00.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 143 usecs
[   50.132036] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 107, parent: pci0000:00
[   50.132045] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   50.132057] pci 0000:00:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 115 usecs
[   50.135958] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11378 usecs
[   50.135980] i915 0000:00:02.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 110, parent: pci0000:00
[   50.135989] i915 0000:00:02.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   50.142916] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11276 usecs
[   50.142918] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11814 usecs
[   50.143752] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13808 usecs
[   50.143753] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12710 usecs
[   50.143775] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4495, parent: pci0000:00
[   50.143916] ahci 0000:00:12.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12146 usecs
[   50.144970] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13226 usecs
[   50.144988] mei_me 0000:00:0f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13194 usecs
[   50.145041] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 15093 usecs
[   50.145063] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4496, parent: pci0000:00
[   50.154918] pcieport 0000:00:14.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11134 usecs
[   50.156912] pcieport 0000:00:14.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11840 usecs
[   50.156935] PM: noirq suspend of devices complete after 32.458 msecs
[   50.157091] ACPI: PM: Preparing to enter system sleep state S3
[   50.157482] ACPI: EC: event blocked
[   50.157486] ACPI: EC: EC stopped
[   50.157488] ACPI: PM: Saving platform NVS memory
[   50.157498] Disabling non-boot CPUs ...
[   50.159689] smpboot: CPU 1 is now offline
[   50.162156] smpboot: CPU 2 is now offline
[   50.164533] smpboot: CPU 3 is now offline
[   50.165205] PM: Checking wakeup interrupts
[   50.165212] PM: Calling mce_syscore_suspend+0x0/0x16
[   50.165222] PM: Calling timekeeping_suspend+0x0/0x285
[   50.165334] PM: Calling save_ioapic_entries+0x0/0xb0
[   50.166636] PM: Calling i8259A_suspend+0x0/0x2d
[   50.166649] PM: Calling fw_suspend+0x0/0x1b
[   50.166655] PM: Calling acpi_save_bm_rld+0x0/0x22
[   50.166663] PM: Calling lapic_suspend+0x0/0x20e
[   50.171621] TSC at resume: 699982126
[   50.171659] ACPI: PM: Low-level resume complete
[   50.171822] ACPI: EC: EC started
[   50.171830] ACPI: PM: Restoring platform NVS memory
[   50.171850] PM: Calling init_counter_refs+0x0/0x6d
[   50.171890] PM: Calling lapic_resume+0x0/0x31a
[   50.171960] PM: Calling acpi_restore_bm_rld+0x0/0x65
[   50.171983] PM: Calling irqrouter_resume+0x0/0x48
[   50.172004] PM: Calling i8259A_resume+0x0/0x32
[   50.172216] PM: Calling ioapic_resume+0x0/0xcd
[   50.172550] PM: Calling irq_pm_syscore_resume+0x0/0x17
[   50.172657] PM: Calling timekeeping_resume+0x0/0x21d
[   50.172806] PM: Timekeeping suspended for 12.624 seconds
[   50.172871] PM: Calling mce_syscore_resume+0x0/0x28
[   50.172995] PM: Calling microcode_bsp_resume+0x0/0x50
[   50.173080] Enabling non-boot CPUs ...
[   50.174004] x86: Booting SMP configuration:
[   50.174020] smpboot: Booting Node 0 Processor 1 APIC 0x2
[   50.178753] CPU1 is up
[   50.179524] smpboot: Booting Node 0 Processor 2 APIC 0x4
[   50.189233] CPU2 is up
[   50.189868] smpboot: Booting Node 0 Processor 3 APIC 0x6
[   50.194817] CPU3 is up
[   50.195444] ACPI: PM: Waking up from system sleep state S3
[   50.199668] pcieport 0000:00:14.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 11, parent: pci0000:00
[   50.199669] ec PNP0C09:00: PM: calling acpi_ec_resume_noirq+0x0/0x49 @ 4492, parent: device:01
[   50.199668] pcieport 0000:00:14.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4498, parent: pci0000:00
[   50.199691] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 105, parent: pci0000:00
[   50.199708] ACPI: EC: interrupt unblocked
[   50.199715] ec PNP0C09:00: PM: acpi_ec_resume_noirq+0x0/0x49 returned 0 after 6 usecs
[   50.199749] ahci 0000:00:12.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 9, parent: pci0000:00
[   50.199921] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4497, parent: pci0000:00
[   50.199958] pcieport 0000:00:14.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 249 usecs
[   50.199998] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4498, parent: pci0000:00
[   50.200043] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4496, parent: pci0000:00
[   50.200051] ahci 0000:00:12.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 264 usecs
[   50.200064] pcieport 0000:00:14.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 333 usecs
[   50.200072] pci 0000:00:00.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4495, parent: pci0000:00
[   50.200093] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 9, parent: pci0000:00
[   50.200101] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 108, parent: pci0000:00
[   50.200107] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 11, parent: pci0000:00
[   50.200108] i915 0000:00:02.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 96, parent: pci0000:00
[   50.200147] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 110, parent: pci0000:00
[   50.200153] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4494, parent: pci0000:00
[   50.200175] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4502, parent: 0000:00:14.0
[   50.200236] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4493, parent: 0000:00:14.1
[   50.200410] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 238 usecs
[   50.200450] mei_me 0000:00:0f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 270 usecs
[   50.200473] intel-lpss 0000:00:16.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 522 usecs
[   50.200493] intel-lpss 0000:00:16.3: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 471 usecs
[   50.200522] pci 0000:00:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 455 usecs
[   50.200566] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4499, parent: pci0000:00
[   50.200669] pci 0000:00:00.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 573 usecs
[   50.200718] intel-lpss 0000:00:17.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 601 usecs
[   50.200753] i915 0000:00:02.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 624 usecs
[   50.200787] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4498, parent: i2c-1
[   50.200813] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1 usecs
[   50.200861] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4501, parent: i2c-3
[   50.200868] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 734 usecs
[   50.200889] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1 usecs
[   50.200941] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4492, parent: PNP0C09:00
[   50.200966] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 0 usecs
[   50.200973] intel-lpss 0000:00:17.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 383 usecs
[   50.200991] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4492, parent: platform
[   50.201322] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 1597 usecs
[   50.201495] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4500, parent: pci0000:00
[   50.202084] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 1880 usecs
[   50.203870] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 2341 usecs
[   50.204361] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 3346 usecs
[   50.204401] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4492, parent: platform
[   50.204966] iwlwifi 0000:02:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 4703 usecs
[   50.205494] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 5366 usecs
[   50.206551] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 2130 usecs
[   50.206579] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4492, parent: platform
[   50.207478] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 881 usecs
[   50.207498] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4492, parent: platform
[   50.208476] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 962 usecs
[   50.208593] i8042 i8042: PM: calling i8042_pm_resume_noirq+0x0/0x21 @ 4492, parent: platform
[   50.208615] i8042 i8042: PM: i8042_pm_resume_noirq+0x0/0x21 returned 0 after 0 usecs
[   50.208775] PM: noirq resume of devices complete after 9.539 msecs
[   50.209661] pcieport 0000:00:14.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4497, parent: pci0000:00
[   50.209655] pcieport 0000:00:14.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4500, parent: pci0000:00
[   50.209693] pcieport 0000:00:14.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   50.209695] pcieport 0000:00:14.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209717] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   50.209753] mei_me 0000:00:0f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209804] pci 0000:00:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   50.209805] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 96, parent: pci0000:00
[   50.209825] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209829] pci 0000:00:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209853] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   50.209856] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 96, parent: 0000:00:14.0
[   50.209873] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209876] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209898] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: 0000:00:14.1
[   50.209892] pci 0000:00:00.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 110, parent: pci0000:00
[   50.209920] iwlwifi 0000:02:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209919] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4501, parent: pci0000:00
[   50.209927] pci 0000:00:00.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.209949] intel-lpss 0000:00:17.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 10 usecs
[   50.209955] ahci 0000:00:12.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4493, parent: pci0000:00
[   50.209971] i915 0000:00:02.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 108, parent: pci0000:00
[   50.209976] ahci 0000:00:12.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.210001] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 4493, parent: 0000:00:17.1
[   50.210042] i2c_designware i2c_designware.3: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 13 usecs
[   50.210046] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4495, parent: pci0000:00
[   50.210081] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.210268] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4497, parent: pci0000:00
[   50.210306] intel-lpss 0000:00:16.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   50.210305] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4506, parent: i2c-3
[   50.210338] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210340] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_early+0x0/0x29 @ 4500, parent: pci0000:00
[   50.210400] intel-lpss 0000:00:16.3: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 33 usecs
[   50.210436] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4502, parent: pci0000:00
[   50.210447] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 11, parent: 0000:00:16.3
[   50.210474] intel-lpss 0000:00:17.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 10 usecs
[   50.210478] i2c_designware i2c_designware.1: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 8 usecs
[   50.210511] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   50.210533] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   50.210542] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4501, parent: i2c-1
[   50.210561] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210606] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4492, parent: PNP0C09:00
[   50.210627] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210648] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4492, parent: platform
[   50.210663] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210680] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4492, parent: platform
[   50.210694] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210711] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4492, parent: platform
[   50.210725] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.210741] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4492, parent: platform
[   50.210755] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   50.213009] i915 0000:00:02.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 3010 usecs
[   50.213166] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4495, parent: pci0000:00
[   50.213226] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   50.213424] PM: early resume of devices complete after 4.134 msecs
[   50.213647] pci 0000:00:00.1: PM: calling pci_pm_resume+0x0/0xed @ 4495, parent: pci0000:00
[   50.213649] i915 0000:00:02.0: PM: calling pci_pm_resume+0x0/0xed @ 107, parent: pci0000:00
[   50.213662] ec PNP0C09:00: PM: calling acpi_ec_resume+0x0/0x1a @ 4492, parent: device:01
[   50.213688] pci 0000:00:00.1: PM: pci_pm_resume+0x0/0xed returned 0 after 2 usecs
[   50.213695] ACPI: EC: event unblocked
[   50.213724] ahci 0000:00:12.0: PM: calling pci_pm_resume+0x0/0xed @ 4495, parent: pci0000:00
[   50.213726] ec PNP0C09:00: PM: acpi_ec_resume+0x0/0x1a returned 0 after 30 usecs
[   50.213737] pcieport 0000:00:14.0: PM: calling pci_pm_resume+0x0/0xed @ 4499, parent: pci0000:00
[   50.213745] battery PNP0C0A:00: PM: calling acpi_battery_resume+0x0/0x3b @ 4492, parent: PNP0C09:00
[   50.213780] ahci 0000:00:12.0: PM: pci_pm_resume+0x0/0xed returned 0 after 33 usecs
[   50.213804] pcieport 0000:00:14.1: PM: calling pci_pm_resume+0x0/0xed @ 4495, parent: pci0000:00
[   50.213812] mei_me 0000:00:0f.0: PM: calling pci_pm_resume+0x0/0xed @ 108, parent: pci0000:00
[   50.213839] pci 0000:00:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4508, parent: pci0000:00
[   50.213860] pci 0000:00:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   50.213881] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume+0x0/0xed @ 4508, parent: pci0000:00
[   50.213939] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume+0x0/0xed @ 4501, parent: pci0000:00
[   50.213962] intel-lpss 0000:00:16.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   50.213963] pcieport 0000:00:14.0: PM: pci_pm_resume+0x0/0xed returned 0 after 186 usecs
[   50.213968] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume+0x0/0xed @ 105, parent: pci0000:00
[   50.213985] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume+0x0/0xed @ 4501, parent: pci0000:00
[   50.213996] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume+0x0/0xed @ 4499, parent: pci0000:00
[   50.213998] intel-lpss 0000:00:16.3: PM: pci_pm_resume+0x0/0xed returned 0 after 2 usecs
[   50.214004] intel-lpss 0000:00:17.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   50.214020] intel-lpss 0000:00:17.1: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   50.214020] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume+0x0/0xed @ 105, parent: pci0000:00
[   50.214028] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume+0x0/0xed @ 4501, parent: pci0000:00
[   50.214049] lpc_ich 0000:00:1f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   50.214048] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume+0x0/0xed @ 4499, parent: pci0000:00
[   50.214074] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4501, parent: 0000:00:14.0
[   50.214087] i801_smbus 0000:00:1f.1: PM: pci_pm_resume+0x0/0xed returned 0 after 21 usecs
[   50.214245] pcieport 0000:00:14.1: PM: pci_pm_resume+0x0/0xed returned 0 after 421 usecs
[   50.214296] i2c_designware i2c_designware.0: PM: calling platform_pm_resume+0x0/0x41 @ 4495, parent: 0000:00:16.0
[   50.214301] i2c_designware i2c_designware.1: PM: calling platform_pm_resume+0x0/0x41 @ 4493, parent: 0000:00:16.3
[   50.214319] i2c_designware i2c_designware.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.214326] i2c_designware i2c_designware.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.214349] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4499, parent: 0000:00:14.1
[   50.214369] i2c_designware i2c_designware.2: PM: calling platform_pm_resume+0x0/0x41 @ 9, parent: 0000:00:17.0
[   50.214411] i2c_designware i2c_designware.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.214435] i2c_designware i2c_designware.3: PM: calling platform_pm_resume+0x0/0x41 @ 9, parent: 0000:00:17.1
[   50.214453] i2c_designware i2c_designware.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.214476] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 9, parent: i2c-3
[   50.214494] iwlwifi 0000:02:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 124 usecs
[   50.214557]  ata1: PM: calling ata_port_pm_resume+0x0/0x56 @ 4499, parent: 0000:00:12.0
[   50.214594]  ata1: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 18 usecs
[   50.214613]  ata2: PM: calling ata_port_pm_resume+0x0/0x56 @ 4499, parent: 0000:00:12.0
[   50.214638]  ata2: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 10 usecs
[   50.214649] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume+0x0/0xed returned 0 after 610 usecs
[   50.214736] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4493, parent: i2c-1
[   50.215332] xhci_hcd 0000:00:15.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1428 usecs
[   50.215429] usb usb1: PM: calling usb_dev_resume+0x0/0x14 @ 4499, parent: 0000:00:15.0
[   50.215492] rtsx_pci 0000:01:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1397 usecs
[   50.216584] usb usb2: PM: calling usb_dev_resume+0x0/0x14 @ 4506, parent: 0000:00:15.0
[   50.216669] mei_me 0000:00:0f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 2827 usecs
[   50.217589] mmcblk mmc0:0001: PM: calling mmc_bus_resume+0x0/0x53 @ 4512, parent: mmc0
[   50.217630] mmcblk mmc0:0001: PM: mmc_bus_resume+0x0/0x53 returned 0 after 11 usecs
[   50.218292] ieee80211 phy0: PM: calling wiphy_resume+0x0/0x158 [cfg80211] @ 4516, parent: 0000:02:00.0
[   50.228367] i915 0000:00:02.0: PM: pci_pm_resume+0x0/0xed returned 0 after 14687 usecs
[   50.228499] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume+0x0/0xed @ 4517, parent: pci0000:00
[   50.236650] battery PNP0C0A:00: PM: acpi_battery_resume+0x0/0x3b returned 0 after 22881 usecs
[   50.236694] button PNP0C0D:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4492, parent: PNP0C09:00
[   50.238620] usb usb2: PM: usb_dev_resume+0x0/0x14 returned 0 after 21999 usecs
[   50.239640] button PNP0C0D:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 2923 usecs
[   50.239741] ac ACPI0003:00: PM: calling acpi_ac_resume+0x0/0x59 @ 4492, parent: LNXSYBUS:00
[   50.240966] ac ACPI0003:00: PM: acpi_ac_resume+0x0/0x59 returned 0 after 1205 usecs
[   50.241008] button PNP0C0C:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4492, parent: LNXSYBUS:00
[   50.241023] button PNP0C0C:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   50.241041] tpm_crb MSFT0101:00: PM: calling tpm_pm_resume+0x0/0x30 @ 4492, parent: LNXSYBUS:00
[   50.241055] tpm_crb MSFT0101:00: PM: tpm_pm_resume+0x0/0x30 returned 0 after 0 usecs
[   50.241072] thermal LNXTHERM:00: PM: calling acpi_thermal_resume+0x0/0x11e @ 4492, parent: LNXSYBUS:01
[   50.241145] thermal LNXTHERM:00: PM: acpi_thermal_resume+0x0/0x11e returned 0 after 61 usecs
[   50.241186] platform PNP0C09:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:1f.0
[   50.241201] platform PNP0C09:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.241212] platform PNP0C0A:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: PNP0C09:00
[   50.241223] platform PNP0C0A:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.241235] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: PNP0C09:00
[   50.242055] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 13511 usecs
[   50.242120] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4518, parent: 0000:00:0e.0
[   50.247406] i8042: [49434] a8 -> i8042 (command)
[   50.247468] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 6220 usecs
[   50.247495] platform INT33D3:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: PNP0C09:00
[   50.247510] platform INT33D3:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247522] platform PNP0C0D:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: PNP0C09:00
[   50.247532] platform PNP0C0D:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247544] platform ACPI0003:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247554] platform ACPI0003:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247565] platform PNP0C0C:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247575] platform PNP0C0C:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247587] platform PNP0103:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247597] platform PNP0103:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247609] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: platform
[   50.247621] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 2 usecs
[   50.247632] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: platform
[   50.247642] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   50.247653] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: platform
[   50.247663] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   50.247674] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: platform
[   50.247684] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   50.247695] platform INT33A1:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247705] platform INT33A1:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247717] platform MSFT0101:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247727] platform MSFT0101:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247738] acpi-fan PNP0C0B:00: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247751] acpi-fan PNP0C0B:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 2 usecs
[   50.247765] button LNXPWRBN:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4492, parent: LNXSYSTM:00
[   50.247779] button LNXPWRBN:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   50.247790] platform rtc-efi.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247801] platform rtc-efi.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247812] platform efivars.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247822] platform efivars.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247833] platform chromeos_acpi: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247844] platform chromeos_acpi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.247859] system 00:00: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
[   50.247872] system 00:00: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   50.247883] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
[   50.247894] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   50.247906] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
[   50.247916] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   50.247927] system 00:03: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
[   50.247937] system 00:03: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   50.247948] rtc_cmos 00:04: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
[   50.247960] rtc_cmos 00:04: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   50.247978] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.247990] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248020] input input0: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: PNP0C0D:00
[   50.248034] input input0: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.248045] input input1: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: PNP0C0C:00
[   50.248055] input input1: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.248067] input input2: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: LNXPWRBN:00
[   50.248077] input input2: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.248109] platform intel-spi: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:1f.0
[   50.248120] platform intel-spi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248132] idma64 idma64.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:16.0
[   50.248144] idma64 idma64.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248157] idma64 idma64.1: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:16.3
[   50.248169] idma64 idma64.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   50.248184] idma64 idma64.2: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:17.0
[   50.248195] idma64 idma64.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248208] idma64 idma64.3: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:17.1
[   50.248219] idma64 idma64.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248246] platform Fixed MDIO bus.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.248257] platform Fixed MDIO bus.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248271] platform intel_xhci_usb_sw: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:00:15.0
[   50.248282] platform intel_xhci_usb_sw: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.248301] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.248377] i8042: [49434] 55 <- i8042 (flush, kbd)
[   50.248407] i8042: [49435] aa -> i8042 (command)
[   50.248601] i8042: [49435] 00 <- i8042 (return)
[   50.248604] i8042: [49435] i8042 controller selftest: 0x0 != 0x55
[   50.269406] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] returned 0 after 27250 usecs
[   50.277581] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 63082 usecs
[   50.300456] i8042: [49487] aa -> i8042 (command)
[   50.300491] i8042: [49487] 55 <- i8042 (return)
[   50.300729] i8042: [49487] 60 -> i8042 (command)
[   50.300858] i8042: [49487] 74 -> i8042 (parameter)
[   50.300987] i8042: [49487] 60 -> i8042 (command)
[   50.301116] i8042: [49487] 56 -> i8042 (parameter)
[   50.301245] i8042: [49487] 60 -> i8042 (command)
[   50.301430] i8042: [49488] 47 -> i8042 (parameter)
[   50.301462] i8042: [49488] ** <- i8042 (interrupt, 0, 0)
[   50.301477] i8042 i8042: PM: platform_pm_resume+0x0/0x41 returned 0 after 53162 usecs
[   50.301509] atkbd serio0: PM: calling serio_resume+0x0/0x94 @ 4492, parent: i8042
[   50.301533] atkbd serio0: PM: serio_resume+0x0/0x94 returned 0 after 10 usecs
[   50.301546] psmouse serio1: PM: calling serio_resume+0x0/0x94 @ 4492, parent: i8042
[   50.301563] psmouse serio1: PM: serio_resume+0x0/0x94 returned 0 after 6 usecs
[   50.301581] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: rtc0
[   50.301594] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   50.301610] platform coretemp.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.301621] platform coretemp.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301638] input input3: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: serio0
[   50.301655] input input3: PM: input_dev_resume+0x0/0x42 returned 0 after 3 usecs
[   50.301668] leds input3::numlock: PM: calling led_resume+0x0/0x20 @ 4492, parent: input3
[   50.301679] leds input3::numlock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   50.301689] leds input3::capslock: PM: calling led_resume+0x0/0x20 @ 4492, parent: input3
[   50.301699] leds input3::capslock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   50.301708] leds input3::scrolllock: PM: calling led_resume+0x0/0x20 @ 4492, parent: input3
[   50.301717] leds input3::scrolllock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   50.301733] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.301744] snd-soc-dummy snd-soc-dummy: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301759] platform microcode: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.301770] platform microcode: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301803] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0018:048D:8350.0001
[   50.301815] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301827] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0018:048D:8350.0001
[   50.301838] platform HID-SENSOR-200001.2.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301850] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0018:048D:8350.0001
[   50.301863] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   50.301876] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0018:048D:8350.0001
[   50.301886] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.301915] i8042: [49488] f2 -> i8042 (kbd-data)
[   50.303993] i8042: [49490] ** <- i8042 (interrupt, 0, 1)
[   50.304628] i8042: [49491] ** <- i8042 (interrupt, 0, 1)
[   50.305277] i8042: [49491] ** <- i8042 (interrupt, 0, 1)
[   50.305365] i8042: [49491] f5 -> i8042 (kbd-data)
[   50.306621] i8042: [49493] ** <- i8042 (interrupt, 0, 1)
[   50.306689] i8042: [49493] ed -> i8042 (kbd-data)
[   50.308474] i8042: [49495] ** <- i8042 (interrupt, 0, 1)
[   50.308539] i8042: [49495] 00 -> i8042 (kbd-data)
[   50.309213] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 94454 usecs
[   50.309308] input input10: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: 0018:056A:5120.0002
[   50.309325] input input10: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.309339] input input11: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: 0018:056A:5120.0002
[   50.309349] input input11: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.309385] backlight intel_backlight: PM: calling backlight_resume+0x0/0x7a [backlight] @ 4492, parent: card0-eDP-1
[   50.309404] backlight intel_backlight: PM: backlight_resume+0x0/0x7a [backlight] returned 0 after 0 usecs
[   50.309421] input input13: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: LNXVIDEO:00
[   50.309432] input input13: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.309450] platform regulatory.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
[   50.309461] platform regulatory.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.309477] leds phy0-led: PM: calling led_resume+0x0/0x20 @ 4492, parent: 0000:02:00.0
[   50.309487] leds phy0-led: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   50.309829] i8042: [49496] ** <- i8042 (interrupt, 0, 1)
[   50.309897] i8042: [49496] f3 -> i8042 (kbd-data)
[   50.311816] i8042: [49498] ** <- i8042 (interrupt, 0, 1)
[   50.311924] i8042: [49498] 00 -> i8042 (kbd-data)
[   50.313358] i8042: [49499] ** <- i8042 (interrupt, 0, 1)
[   50.313465] i8042: [49500] f4 -> i8042 (kbd-data)
[   50.314895] i8042: [49501] ** <- i8042 (interrupt, 0, 1)
[   50.315021] i8042: [49501] d4 -> i8042 (command)
[   50.315213] i8042: [49501] ff -> i8042 (parameter)
[   50.318150] i8042: [49504] fa <- i8042 (interrupt, 1, 12)
[   50.332604] usb usb1: PM: usb_dev_resume+0x0/0x14 returned 0 after 117134 usecs
[   50.332669] usb 1-8: PM: calling usb_dev_resume+0x0/0x14 @ 4514, parent: usb1
[   50.332683] usb 1-8: PM: usb_dev_resume+0x0/0x14 returned 0 after 1 usecs
[   50.332882] usb 1-7: PM: calling usb_dev_resume+0x0/0x14 @ 4512, parent: usb1
[   50.332901] usb 1-7: PM: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[   50.419131] i8042: [49605] aa <- i8042 (interrupt, 1, 12)
[   50.420627] i8042: [49607] 00 <- i8042 (interrupt, 1, 12)
[   50.420726] i8042: [49607] d4 -> i8042 (command)
[   50.420918] i8042: [49607] f6 -> i8042 (parameter)
[   50.423919] i8042: [49610] fa <- i8042 (interrupt, 1, 12)
[   50.424038] i8042: [49610] ed -> i8042 (kbd-data)
[   50.425491] i8042: [49612] ** <- i8042 (interrupt, 0, 1)
[   50.425549] i8042: [49612] 00 -> i8042 (kbd-data)
[   50.426953] i8042: [49613] ** <- i8042 (interrupt, 0, 1)
[   50.427063] i8042: [49613] f3 -> i8042 (kbd-data)
[   50.428493] i8042: [49615] ** <- i8042 (interrupt, 0, 1)
[   50.428555] i8042: [49615] 00 -> i8042 (kbd-data)
[   50.429960] i8042: [49616] ** <- i8042 (interrupt, 0, 1)
[   50.430080] i8042: [49616] d4 -> i8042 (command)
[   50.430272] i8042: [49616] f5 -> i8042 (parameter)
[   50.433097] i8042: [49619] fa <- i8042 (interrupt, 1, 12)
[   50.433192] i8042: [49619] d4 -> i8042 (command)
[   50.433382] i8042: [49619] e6 -> i8042 (parameter)
[   50.436344] i8042: [49622] fa <- i8042 (interrupt, 1, 12)
[   50.436480] i8042: [49623] d4 -> i8042 (command)
[   50.436669] i8042: [49623] e6 -> i8042 (parameter)
[   50.439478] i8042: [49626] fa <- i8042 (interrupt, 1, 12)
[   50.439585] i8042: [49626] d4 -> i8042 (command)
[   50.439776] i8042: [49626] e6 -> i8042 (parameter)
[   50.442706] i8042: [49629] fa <- i8042 (interrupt, 1, 12)
[   50.442810] i8042: [49629] d4 -> i8042 (command)
[   50.443054] i8042: [49629] e9 -> i8042 (parameter)
[   50.445866] i8042: [49632] fa <- i8042 (interrupt, 1, 12)
[   50.447615] i8042: [49634] 3c <- i8042 (interrupt, 1, 12)
[   50.448995] i8042: [49635] 03 <- i8042 (interrupt, 1, 12)
[   50.450583] i8042: [49637] 00 <- i8042 (interrupt, 1, 12)
[   50.450673] i8042: [49637] d4 -> i8042 (command)
[   50.450919] i8042: [49637] e6 -> i8042 (parameter)
[   50.453235] ieee80211 phy0: PM: wiphy_resume+0x0/0x158 [cfg80211] returned 0 after 234755 usecs
[   50.453408] rfkill rfkill0: PM: calling rfkill_resume+0x0/0x67 @ 4492, parent: phy0
[   50.453455] rfkill rfkill0: PM: rfkill_resume+0x0/0x67 returned 0 after 11 usecs
[   50.453489] input input14: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: VPC2004:00
[   50.453504] input input14: PM: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[   50.453517] rfkill rfkill1: PM: calling rfkill_resume+0x0/0x67 @ 4492, parent: VPC2004:00
[   50.453528] rfkill rfkill1: PM: rfkill_resume+0x0/0x67 returned 0 after 0 usecs
[   50.453539] rfkill rfkill2: PM: calling rfkill_resume+0x0/0x67 @ 4492, parent: VPC2004:00
[   50.453549] rfkill rfkill2: PM: rfkill_resume+0x0/0x67 returned 0 after 0 usecs
[   50.453564] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: 0000:01:00.0
[   50.453579] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   50.453611] input input15: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453623] input input15: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453636] input input16: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453646] input input16: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453658] input input18: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453668] input input18: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453680] input input19: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453690] input input19: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453702] input input20: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453712] input input20: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453725] input input21: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453748] i8042: [49640] fa <- i8042 (interrupt, 1, 12)
[   50.453766] input input21: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453779] input input22: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: card0
[   50.453789] input input22: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453803] input input17: PM: calling input_dev_resume+0x0/0x42 @ 4492, parent: serio1
[   50.453814] input input17: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   50.453820] i8042: [49640] d4 -> i8042 (command)
[   50.453829] rfkill rfkill3: PM: calling rfkill_resume+0x0/0x67 @ 4492, parent: hci0
[   50.453844] rfkill rfkill3: PM: rfkill_resume+0x0/0x67 returned 0 after 3 usecs
[   50.453872] PM: resume of devices complete after 240.427 msecs
[   50.454013] i8042: [49640] e8 -> i8042 (parameter)
[   50.454369] PM: Finishing wakeup.
[   50.454403] OOM killer enabled.
[   50.454408] Restarting tasks ... 
[   50.454576] usb 1-7: USB disconnect, device number 2
[   50.456934] i8042: [49643] fa <- i8042 (interrupt, 1, 12)
[   50.457782] done.
[   50.460008] i8042: [49646] d4 -> i8042 (command)
[   50.460255] i8042: [49646] 00 -> i8042 (parameter)
[   50.463159] i8042: [49649] fa <- i8042 (interrupt, 1, 12)
[   50.463195] i8042: [49649] d4 -> i8042 (command)
[   50.463436] i8042: [49649] e8 -> i8042 (parameter)
[   50.466349] i8042: [49652] fa <- i8042 (interrupt, 1, 12)
[   50.466400] i8042: [49653] d4 -> i8042 (command)
[   50.466639] i8042: [49653] 00 -> i8042 (parameter)
[   50.469552] i8042: [49656] fa <- i8042 (interrupt, 1, 12)
[   50.469597] i8042: [49656] d4 -> i8042 (command)
[   50.469840] i8042: [49656] e8 -> i8042 (parameter)
[   50.472952] i8042: [49659] fa <- i8042 (interrupt, 1, 12)
[   50.472989] i8042: [49659] d4 -> i8042 (command)
[   50.473178] i8042: [49659] 00 -> i8042 (parameter)
[   50.475928] i8042: [49662] fa <- i8042 (interrupt, 1, 12)
[   50.475970] i8042: [49662] d4 -> i8042 (command)
[   50.476267] i8042: [49662] e8 -> i8042 (parameter)
[   50.479122] i8042: [49665] fa <- i8042 (interrupt, 1, 12)
[   50.479160] i8042: [49665] d4 -> i8042 (command)
[   50.479348] i8042: [49665] 01 -> i8042 (parameter)
[   50.482321] i8042: [49668] fa <- i8042 (interrupt, 1, 12)
[   50.482374] i8042: [49668] d4 -> i8042 (command)
[   50.482560] i8042: [49668] e9 -> i8042 (parameter)
[   50.485508] i8042: [49672] fa <- i8042 (interrupt, 1, 12)
[   50.487079] i8042: [49673] 5e <- i8042 (interrupt, 1, 12)
[   50.488660] i8042: [49675] 0f <- i8042 (interrupt, 1, 12)
[   50.490245] i8042: [49676] 01 <- i8042 (interrupt, 1, 12)
[   50.490291] i8042: [49676] d4 -> i8042 (command)
[   50.490476] i8042: [49676] f8 -> i8042 (parameter)
[   50.493448] i8042: [49680] fa <- i8042 (interrupt, 1, 12)
[   50.493742] i8042: [49680] d4 -> i8042 (command)
[   50.493931] i8042: [49680] 00 -> i8042 (parameter)
[   50.496642] i8042: [49683] fa <- i8042 (interrupt, 1, 12)
[   50.496692] i8042: [49683] d4 -> i8042 (command)
[   50.496880] i8042: [49683] f8 -> i8042 (parameter)
[   50.499835] i8042: [49686] fa <- i8042 (interrupt, 1, 12)
[   50.499968] i8042: [49686] d4 -> i8042 (command)
[   50.500152] i8042: [49686] 07 -> i8042 (parameter)
[   50.503028] i8042: [49689] fa <- i8042 (interrupt, 1, 12)
[   50.503076] i8042: [49689] d4 -> i8042 (command)
[   50.503320] i8042: [49689] f8 -> i8042 (parameter)
[   50.506221] i8042: [49692] fa <- i8042 (interrupt, 1, 12)
[   50.506263] i8042: [49692] d4 -> i8042 (command)
[   50.506505] i8042: [49692] 00 -> i8042 (parameter)
[   50.509422] i8042: [49696] fa <- i8042 (interrupt, 1, 12)
[   50.509467] i8042: [49696] d4 -> i8042 (command)
[   50.509710] i8042: [49696] f8 -> i8042 (parameter)
[   50.512607] i8042: [49699] fa <- i8042 (interrupt, 1, 12)
[   50.512647] i8042: [49699] d4 -> i8042 (command)
[   50.512887] i8042: [49699] 01 -> i8042 (parameter)
[   50.515798] i8042: [49702] fa <- i8042 (interrupt, 1, 12)
[   50.515847] i8042: [49702] d4 -> i8042 (command)
[   50.516033] i8042: [49702] e6 -> i8042 (parameter)
[   50.518998] i8042: [49705] fa <- i8042 (interrupt, 1, 12)
[   50.519042] i8042: [49705] d4 -> i8042 (command)
[   50.519228] i8042: [49705] f3 -> i8042 (parameter)
[   50.522186] i8042: [49708] fa <- i8042 (interrupt, 1, 12)
[   50.522576] ata2: SATA link down (SStatus 4 SControl 300)
[   50.522617] ata1: SATA link down (SStatus 4 SControl 300)
[   50.524835] i8042: [49711] d4 -> i8042 (command)
[   50.525086] i8042: [49711] 64 -> i8042 (parameter)
[   50.527903] i8042: [49714] fa <- i8042 (interrupt, 1, 12)
[   50.527956] i8042: [49714] d4 -> i8042 (command)
[   50.528143] i8042: [49714] e8 -> i8042 (parameter)
[   50.531346] i8042: [49717] fa <- i8042 (interrupt, 1, 12)
[   50.531396] i8042: [49718] d4 -> i8042 (command)
[   50.531581] i8042: [49718] 03 -> i8042 (parameter)
[   50.534290] i8042: [49720] fa <- i8042 (interrupt, 1, 12)
[   50.534783] i8042: [49721] d4 -> i8042 (command)
[   50.534975] i8042: [49721] e6 -> i8042 (parameter)
[   50.537986] i8042: [49724] fa <- i8042 (interrupt, 1, 12)
[   50.538449] i8042: [49725] d4 -> i8042 (command)
[   50.538637] i8042: [49725] f4 -> i8042 (parameter)
[   50.541192] i8042: [49727] fa <- i8042 (interrupt, 1, 12)
[   50.576434] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[   50.586027] Resume cause unknown
[   50.586043] PM: suspend exit
[   50.698236] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   50.703494] usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[   50.703511] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   50.705666] usb 1-7: GPIO lookup for consumer reset
[   50.705676] usb 1-7: using ACPI for GPIO lookup
[   50.705680] acpi device:19: GPIO: looking up reset-gpios
[   50.705685] acpi device:19: GPIO: looking up reset-gpio
[   50.705687] usb 1-7: using lookup tables for GPIO lookup
[   50.705690] usb 1-7: No GPIO consumer reset found
[   50.706474] usb 1-8: USB disconnect, device number 3
[   50.706840] Bluetooth: btintel_version_info() hci0: Bootloader revision 0.0 build 26 week 38 2015
[   50.707848] Bluetooth: btintel_read_boot_params() hci0: Device revision is 16
[   50.707862] Bluetooth: btintel_read_boot_params() hci0: Secure boot is enabled
[   50.707865] Bluetooth: btintel_read_boot_params() hci0: OTP lock is enabled
[   50.707868] Bluetooth: btintel_read_boot_params() hci0: API lock is enabled
[   50.707870] Bluetooth: btintel_read_boot_params() hci0: Debug lock is disabled
[   50.707873] Bluetooth: btintel_read_boot_params() hci0: Minimum firmware build 1 week 10 2014
[   50.715536] Bluetooth: btintel_download_fw() hci0: Found device firmware: intel/ibt-12-16.sfi
[   50.778532] i8042: [49965] ed -> i8042 (kbd-data)
[   50.779830] i8042: [49966] ** <- i8042 (interrupt, 0, 1)
[   50.781001] i8042: [49967] 00 -> i8042 (kbd-data)
[   50.782260] i8042: [49968] ** <- i8042 (interrupt, 0, 1)
[   50.782725] i8042: [49969] f3 -> i8042 (kbd-data)
[   50.783993] i8042: [49970] ** <- i8042 (interrupt, 0, 1)
[   50.784351] i8042: [49970] 00 -> i8042 (kbd-data)
[   50.785649] i8042: [49972] ** <- i8042 (interrupt, 0, 1)
[   50.884403] usb 1-8: new high-speed USB device number 5 using xhci_hcd
[   51.075480] usb 1-8: New USB device found, idVendor=04f2, idProduct=b5a2, bcdDevice=10.34
[   51.075497] usb 1-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[   51.075501] usb 1-8: Product: Lenovo EasyCamera
[   51.075504] usb 1-8: Manufacturer: Chicony Electronics Co.,Ltd.
[   51.075508] usb 1-8: SerialNumber: 0001
[   51.084442] usb 1-8: GPIO lookup for consumer privacy
[   51.084454] usb 1-8: using ACPI for GPIO lookup
[   51.084458] acpi device:1a: GPIO: looking up privacy-gpios
[   51.084462] acpi device:1a: GPIO: looking up privacy-gpio
[   51.084464] usb 1-8: using lookup tables for GPIO lookup
[   51.084467] usb 1-8: No GPIO consumer privacy found
[   51.084470] usb 1-8: Found UVC 1.00 device Lenovo EasyCamera (04f2:b5a2)
[   52.530425] Bluetooth: btintel_download_wait() hci0: Waiting for firmware download to complete
[   52.530913] Bluetooth: btintel_download_wait() hci0: Firmware loaded in 1772813 usecs
[   52.531169] Bluetooth: btintel_boot_wait() hci0: Waiting for device to boot
[   52.543947] Bluetooth: btintel_boot_wait() hci0: Device booted in 12568 usecs
[   52.543954] Bluetooth: msft_skb_pull() hci0: Malformed MSFT vendor event: 0x02
[   52.555633] Bluetooth: btintel_load_ddc_config() hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[   52.559002] Bluetooth: btintel_load_ddc_config() hci0: Applying Intel DDC parameters completed
[   52.559911] Bluetooth: btintel_version_info() hci0: Firmware revision 0.1 build 197 week 12 2021
[   52.561939] Bluetooth: btintel_read_debug_features() hci0: Reading supported features failed (-16)
[   52.561967] Bluetooth: btintel_register_devcoredump_support() hci0: Error reading debug features
[   52.830508] i8042: [52017] 08 <- i8042 (interrupt, 1, 12)
[   52.832093] i8042: [52018] 00 <- i8042 (interrupt, 1, 12)
[   52.833638] i8042: [52020] 00 <- i8042 (interrupt, 1, 12)
[   52.839836] i8042: [52026] 54 <- i8042 (interrupt, 1, 12)
[   52.841388] i8042: [52028] 01 <- i8042 (interrupt, 1, 12)
[   52.842972] i8042: [52029] 00 <- i8042 (interrupt, 1, 12)
[   52.843008] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   52.844520] i8042: [52031] 10 <- i8042 (interrupt, 1, 12)
[   52.846098] i8042: [52032] 00 <- i8042 (interrupt, 1, 12)
[   52.847677] i8042: [52034] 00 <- i8042 (interrupt, 1, 12)
[   52.849262] i8042: [52035] 54 <- i8042 (interrupt, 1, 12)
[   52.850855] i8042: [52037] 13 <- i8042 (interrupt, 1, 12)
[   52.852495] i8042: [52039] cb <- i8042 (interrupt, 1, 12)
[   52.852531] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   52.854120] i8042: [52040] 31 <- i8042 (interrupt, 1, 12)
[   52.855648] i8042: [52042] 12 <- i8042 (interrupt, 1, 12)
[   52.857249] i8042: [52043] 74 <- i8042 (interrupt, 1, 12)
[   52.858802] i8042: [52045] 54 <- i8042 (interrupt, 1, 12)
[   52.860346] i8042: [52046] 13 <- i8042 (interrupt, 1, 12)
[   52.861927] i8042: [52048] cb <- i8042 (interrupt, 1, 12)
[   52.861963] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   52.863559] i8042: [52050] 31 <- i8042 (interrupt, 1, 12)
[   52.865126] i8042: [52051] 92 <- i8042 (interrupt, 1, 12)
[   52.866734] i8042: [52053] 74 <- i8042 (interrupt, 1, 12)
[   52.868329] i8042: [52054] 54 <- i8042 (interrupt, 1, 12)
[   52.869946] i8042: [52056] 23 <- i8042 (interrupt, 1, 12)
[   52.871425] i8042: [52058] cb <- i8042 (interrupt, 1, 12)
[   52.871458] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   52.873079] i8042: [52059] 31 <- i8042 (interrupt, 1, 12)
[   52.874639] i8042: [52061] 02 <- i8042 (interrupt, 1, 12)
[   52.876184] i8042: [52062] 74 <- i8042 (interrupt, 1, 12)
[   52.877799] i8042: [52064] 54 <- i8042 (interrupt, 1, 12)
[   52.879359] i8042: [52065] 23 <- i8042 (interrupt, 1, 12)
[   52.880932] i8042: [52067] cb <- i8042 (interrupt, 1, 12)
[   52.880968] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   52.880985] psmouse serio1: issuing reconnect request
[   52.881026] i8042: [52067] d4 -> i8042 (command)
[   52.881272] i8042: [52067] ff -> i8042 (parameter)
[   52.884245] i8042: [52070] fa <- i8042 (interrupt, 1, 12)
[   52.985217] i8042: [52171] aa <- i8042 (interrupt, 1, 12)
[   52.986908] i8042: [52173] 00 <- i8042 (interrupt, 1, 12)
[   52.986990] i8042: [52173] d4 -> i8042 (command)
[   52.987180] i8042: [52173] f6 -> i8042 (parameter)
[   52.990010] i8042: [52176] fa <- i8042 (interrupt, 1, 12)
[   52.990084] i8042: [52176] d4 -> i8042 (command)
[   52.990274] i8042: [52176] f5 -> i8042 (parameter)
[   52.993210] i8042: [52179] fa <- i8042 (interrupt, 1, 12)
[   52.993279] i8042: [52179] d4 -> i8042 (command)
[   52.993468] i8042: [52180] e6 -> i8042 (parameter)
[   52.996416] i8042: [52183] fa <- i8042 (interrupt, 1, 12)
[   52.996472] i8042: [52183] d4 -> i8042 (command)
[   52.996662] i8042: [52183] e6 -> i8042 (parameter)
[   52.999629] i8042: [52186] fa <- i8042 (interrupt, 1, 12)
[   52.999699] i8042: [52186] d4 -> i8042 (command)
[   52.999888] i8042: [52186] e6 -> i8042 (parameter)
[   53.002943] i8042: [52189] fa <- i8042 (interrupt, 1, 12)
[   53.003009] i8042: [52189] d4 -> i8042 (command)
[   53.003198] i8042: [52189] e9 -> i8042 (parameter)
[   53.006021] i8042: [52192] fa <- i8042 (interrupt, 1, 12)
[   53.007588] i8042: [52194] 3c <- i8042 (interrupt, 1, 12)
[   53.009134] i8042: [52195] 03 <- i8042 (interrupt, 1, 12)
[   53.010715] i8042: [52197] 00 <- i8042 (interrupt, 1, 12)
[   53.010776] i8042: [52197] d4 -> i8042 (command)
[   53.010965] i8042: [52197] e6 -> i8042 (parameter)
[   53.013926] i8042: [52200] fa <- i8042 (interrupt, 1, 12)
[   53.014013] i8042: [52200] d4 -> i8042 (command)
[   53.014202] i8042: [52200] e8 -> i8042 (parameter)
[   53.017160] i8042: [52203] fa <- i8042 (interrupt, 1, 12)
[   53.017225] i8042: [52203] d4 -> i8042 (command)
[   53.017470] i8042: [52203] 00 -> i8042 (parameter)
[   53.020380] i8042: [52206] fa <- i8042 (interrupt, 1, 12)
[   53.020476] i8042: [52207] d4 -> i8042 (command)
[   53.020665] i8042: [52207] e8 -> i8042 (parameter)
[   53.023569] i8042: [52210] fa <- i8042 (interrupt, 1, 12)
[   53.023637] i8042: [52210] d4 -> i8042 (command)
[   53.023826] i8042: [52210] 00 -> i8042 (parameter)
[   53.026706] i8042: [52213] fa <- i8042 (interrupt, 1, 12)
[   53.026760] i8042: [52213] d4 -> i8042 (command)
[   53.026948] i8042: [52213] e8 -> i8042 (parameter)
[   53.029939] i8042: [52216] fa <- i8042 (interrupt, 1, 12)
[   53.030054] i8042: [52216] d4 -> i8042 (command)
[   53.030243] i8042: [52216] 00 -> i8042 (parameter)
[   53.033126] i8042: [52219] fa <- i8042 (interrupt, 1, 12)
[   53.033196] i8042: [52219] d4 -> i8042 (command)
[   53.033386] i8042: [52220] e8 -> i8042 (parameter)
[   53.036395] i8042: [52222] fa <- i8042 (interrupt, 1, 12)
[   53.036495] i8042: [52223] d4 -> i8042 (command)
[   53.036685] i8042: [52223] 01 -> i8042 (parameter)
[   53.039490] i8042: [52226] fa <- i8042 (interrupt, 1, 12)
[   53.039565] i8042: [52226] d4 -> i8042 (command)
[   53.039754] i8042: [52226] e9 -> i8042 (parameter)
[   53.042674] i8042: [52229] fa <- i8042 (interrupt, 1, 12)
[   53.044281] i8042: [52230] 5e <- i8042 (interrupt, 1, 12)
[   53.045866] i8042: [52232] 0f <- i8042 (interrupt, 1, 12)
[   53.047424] i8042: [52234] 01 <- i8042 (interrupt, 1, 12)
[   53.047485] i8042: [52234] d4 -> i8042 (command)
[   53.047676] i8042: [52234] f8 -> i8042 (parameter)
[   53.050690] i8042: [52237] fa <- i8042 (interrupt, 1, 12)
[   53.050786] i8042: [52237] d4 -> i8042 (command)
[   53.050976] i8042: [52237] 00 -> i8042 (parameter)
[   53.053881] i8042: [52240] fa <- i8042 (interrupt, 1, 12)
[   53.053964] i8042: [52240] d4 -> i8042 (command)
[   53.054154] i8042: [52240] f8 -> i8042 (parameter)
[   53.056998] i8042: [52243] fa <- i8042 (interrupt, 1, 12)
[   53.057095] i8042: [52243] d4 -> i8042 (command)
[   53.057285] i8042: [52243] 07 -> i8042 (parameter)
[   53.060199] i8042: [52246] fa <- i8042 (interrupt, 1, 12)
[   53.060263] i8042: [52246] d4 -> i8042 (command)
[   53.060451] i8042: [52246] f8 -> i8042 (parameter)
[   53.063392] i8042: [52249] fa <- i8042 (interrupt, 1, 12)
[   53.063493] i8042: [52250] d4 -> i8042 (command)
[   53.063683] i8042: [52250] 00 -> i8042 (parameter)
[   53.066689] i8042: [52253] fa <- i8042 (interrupt, 1, 12)
[   53.066783] i8042: [52253] d4 -> i8042 (command)
[   53.067030] i8042: [52253] f8 -> i8042 (parameter)
[   53.069869] i8042: [52256] fa <- i8042 (interrupt, 1, 12)
[   53.070074] i8042: [52256] d4 -> i8042 (command)
[   53.070323] i8042: [52256] 01 -> i8042 (parameter)
[   53.072980] i8042: [52259] fa <- i8042 (interrupt, 1, 12)
[   53.073075] i8042: [52259] d4 -> i8042 (command)
[   53.073265] i8042: [52259] e6 -> i8042 (parameter)
[   53.076175] i8042: [52262] fa <- i8042 (interrupt, 1, 12)
[   53.076243] i8042: [52262] d4 -> i8042 (command)
[   53.076432] i8042: [52263] f3 -> i8042 (parameter)
[   53.079367] i8042: [52265] fa <- i8042 (interrupt, 1, 12)
[   53.079465] i8042: [52266] d4 -> i8042 (command)
[   53.079656] i8042: [52266] 64 -> i8042 (parameter)
[   53.082561] i8042: [52269] fa <- i8042 (interrupt, 1, 12)
[   53.082627] i8042: [52269] d4 -> i8042 (command)
[   53.082816] i8042: [52269] e8 -> i8042 (parameter)
[   53.085823] i8042: [52272] fa <- i8042 (interrupt, 1, 12)
[   53.085896] i8042: [52272] d4 -> i8042 (command)
[   53.086142] i8042: [52272] 03 -> i8042 (parameter)
[   53.089017] i8042: [52275] fa <- i8042 (interrupt, 1, 12)
[   53.089097] i8042: [52275] d4 -> i8042 (command)
[   53.089287] i8042: [52275] e6 -> i8042 (parameter)
[   53.092256] i8042: [52278] fa <- i8042 (interrupt, 1, 12)
[   53.092359] i8042: [52278] d4 -> i8042 (command)
[   53.092549] i8042: [52279] f4 -> i8042 (parameter)
[   53.095463] i8042: [52282] fa <- i8042 (interrupt, 1, 12)
[   53.116634] i8042: [52303] 08 <- i8042 (interrupt, 1, 12)
[   53.118231] i8042: [52304] 00 <- i8042 (interrupt, 1, 12)
[   53.119854] i8042: [52306] 00 <- i8042 (interrupt, 1, 12)
[   53.126415] i8042: [52313] 54 <- i8042 (interrupt, 1, 12)
[   53.128026] i8042: [52314] 01 <- i8042 (interrupt, 1, 12)
[   53.129593] i8042: [52316] 00 <- i8042 (interrupt, 1, 12)
[   53.129629] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.131158] i8042: [52317] 10 <- i8042 (interrupt, 1, 12)
[   53.132742] i8042: [52319] 00 <- i8042 (interrupt, 1, 12)
[   53.134286] i8042: [52320] 00 <- i8042 (interrupt, 1, 12)
[   53.135873] i8042: [52322] 54 <- i8042 (interrupt, 1, 12)
[   53.137525] i8042: [52324] 13 <- i8042 (interrupt, 1, 12)
[   53.139076] i8042: [52325] 23 <- i8042 (interrupt, 1, 12)
[   53.139112] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.140693] i8042: [52327] 31 <- i8042 (interrupt, 1, 12)
[   53.142240] i8042: [52328] d2 <- i8042 (interrupt, 1, 12)
[   53.143785] i8042: [52330] f3 <- i8042 (interrupt, 1, 12)
[   53.145367] i8042: [52331] 54 <- i8042 (interrupt, 1, 12)
[   53.146985] i8042: [52333] 23 <- i8042 (interrupt, 1, 12)
[   53.148571] i8042: [52335] 23 <- i8042 (interrupt, 1, 12)
[   53.148606] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.150119] i8042: [52336] 31 <- i8042 (interrupt, 1, 12)
[   53.151789] i8042: [52338] 42 <- i8042 (interrupt, 1, 12)
[   53.153392] i8042: [52339] f3 <- i8042 (interrupt, 1, 12)
[   53.154866] i8042: [52341] 54 <- i8042 (interrupt, 1, 12)
[   53.156494] i8042: [52343] 23 <- i8042 (interrupt, 1, 12)
[   53.158034] i8042: [52344] 95 <- i8042 (interrupt, 1, 12)
[   53.158069] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.159690] i8042: [52346] 31 <- i8042 (interrupt, 1, 12)
[   53.161209] i8042: [52347] 72 <- i8042 (interrupt, 1, 12)
[   53.162823] i8042: [52349] df <- i8042 (interrupt, 1, 12)
[   53.164369] i8042: [52350] 54 <- i8042 (interrupt, 1, 12)
[   53.165951] i8042: [52352] 23 <- i8042 (interrupt, 1, 12)
[   53.167531] i8042: [52354] 9b <- i8042 (interrupt, 1, 12)
[   53.167564] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.167580] psmouse serio1: issuing reconnect request
[   53.167614] i8042: [52354] d4 -> i8042 (command)
[   53.167803] i8042: [52354] ff -> i8042 (parameter)
[   53.170856] i8042: [52357] fa <- i8042 (interrupt, 1, 12)
[   53.271809] i8042: [52458] aa <- i8042 (interrupt, 1, 12)
[   53.273382] i8042: [52459] 00 <- i8042 (interrupt, 1, 12)
[   53.273466] i8042: [52460] d4 -> i8042 (command)
[   53.273654] i8042: [52460] f6 -> i8042 (parameter)
[   53.276527] i8042: [52463] fa <- i8042 (interrupt, 1, 12)
[   53.276591] i8042: [52463] d4 -> i8042 (command)
[   53.276780] i8042: [52463] f5 -> i8042 (parameter)
[   53.279787] i8042: [52466] fa <- i8042 (interrupt, 1, 12)
[   53.279861] i8042: [52466] d4 -> i8042 (command)
[   53.280050] i8042: [52466] e6 -> i8042 (parameter)
[   53.282989] i8042: [52469] fa <- i8042 (interrupt, 1, 12)
[   53.283062] i8042: [52469] d4 -> i8042 (command)
[   53.283307] i8042: [52469] e6 -> i8042 (parameter)
[   53.286216] i8042: [52472] fa <- i8042 (interrupt, 1, 12)
[   53.286298] i8042: [52472] d4 -> i8042 (command)
[   53.286487] i8042: [52473] e6 -> i8042 (parameter)
[   53.289378] i8042: [52475] fa <- i8042 (interrupt, 1, 12)
[   53.289480] i8042: [52476] d4 -> i8042 (command)
[   53.289669] i8042: [52476] e9 -> i8042 (parameter)
[   53.292507] i8042: [52479] fa <- i8042 (interrupt, 1, 12)
[   53.294099] i8042: [52480] 3c <- i8042 (interrupt, 1, 12)
[   53.295648] i8042: [52482] 03 <- i8042 (interrupt, 1, 12)
[   53.297228] i8042: [52483] 00 <- i8042 (interrupt, 1, 12)
[   53.297279] i8042: [52483] d4 -> i8042 (command)
[   53.297468] i8042: [52483] e6 -> i8042 (parameter)
[   53.300521] i8042: [52487] fa <- i8042 (interrupt, 1, 12)
[   53.300591] i8042: [52487] d4 -> i8042 (command)
[   53.300779] i8042: [52487] e8 -> i8042 (parameter)
[   53.303670] i8042: [52490] fa <- i8042 (interrupt, 1, 12)
[   53.303735] i8042: [52490] d4 -> i8042 (command)
[   53.303923] i8042: [52490] 00 -> i8042 (parameter)
[   53.306872] i8042: [52493] fa <- i8042 (interrupt, 1, 12)
[   53.306922] i8042: [52493] d4 -> i8042 (command)
[   53.307109] i8042: [52493] e8 -> i8042 (parameter)
[   53.310052] i8042: [52496] fa <- i8042 (interrupt, 1, 12)
[   53.310095] i8042: [52496] d4 -> i8042 (command)
[   53.310280] i8042: [52496] 00 -> i8042 (parameter)
[   53.313234] i8042: [52499] fa <- i8042 (interrupt, 1, 12)
[   53.313270] i8042: [52499] d4 -> i8042 (command)
[   53.313511] i8042: [52499] e8 -> i8042 (parameter)
[   53.316543] i8042: [52503] fa <- i8042 (interrupt, 1, 12)
[   53.316613] i8042: [52503] d4 -> i8042 (command)
[   53.316801] i8042: [52503] 00 -> i8042 (parameter)
[   53.319674] i8042: [52506] fa <- i8042 (interrupt, 1, 12)
[   53.319750] i8042: [52506] d4 -> i8042 (command)
[   53.319935] i8042: [52506] e8 -> i8042 (parameter)
[   53.322809] i8042: [52509] fa <- i8042 (interrupt, 1, 12)
[   53.322861] i8042: [52509] d4 -> i8042 (command)
[   53.323102] i8042: [52509] 01 -> i8042 (parameter)
[   53.325995] i8042: [52512] fa <- i8042 (interrupt, 1, 12)
[   53.326040] i8042: [52512] d4 -> i8042 (command)
[   53.326225] i8042: [52512] e9 -> i8042 (parameter)
[   53.329184] i8042: [52515] fa <- i8042 (interrupt, 1, 12)
[   53.330855] i8042: [52517] 5e <- i8042 (interrupt, 1, 12)
[   53.332498] i8042: [52519] 0f <- i8042 (interrupt, 1, 12)
[   53.333956] i8042: [52520] 01 <- i8042 (interrupt, 1, 12)
[   53.334001] i8042: [52520] d4 -> i8042 (command)
[   53.334186] i8042: [52520] f8 -> i8042 (parameter)
[   53.337189] i8042: [52523] fa <- i8042 (interrupt, 1, 12)
[   53.337250] i8042: [52523] d4 -> i8042 (command)
[   53.337436] i8042: [52523] 00 -> i8042 (parameter)
[   53.340349] i8042: [52526] fa <- i8042 (interrupt, 1, 12)
[   53.340407] i8042: [52527] d4 -> i8042 (command)
[   53.340592] i8042: [52527] f8 -> i8042 (parameter)
[   53.343585] i8042: [52530] fa <- i8042 (interrupt, 1, 12)
[   53.343645] i8042: [52530] d4 -> i8042 (command)
[   53.343833] i8042: [52530] 07 -> i8042 (parameter)
[   53.346706] i8042: [52533] fa <- i8042 (interrupt, 1, 12)
[   53.346986] i8042: [52533] d4 -> i8042 (command)
[   53.347235] i8042: [52533] f8 -> i8042 (parameter)
[   53.349902] i8042: [52536] fa <- i8042 (interrupt, 1, 12)
[   53.349959] i8042: [52536] d4 -> i8042 (command)
[   53.350149] i8042: [52536] 00 -> i8042 (parameter)
[   53.353144] i8042: [52539] fa <- i8042 (interrupt, 1, 12)
[   53.353204] i8042: [52539] d4 -> i8042 (command)
[   53.353393] i8042: [52539] f8 -> i8042 (parameter)
[   53.356293] i8042: [52542] fa <- i8042 (interrupt, 1, 12)
[   53.356338] i8042: [52542] d4 -> i8042 (command)
[   53.356526] i8042: [52542] 01 -> i8042 (parameter)
[   53.359491] i8042: [52546] fa <- i8042 (interrupt, 1, 12)
[   53.359562] i8042: [52546] d4 -> i8042 (command)
[   53.359750] i8042: [52546] e6 -> i8042 (parameter)
[   53.362711] i8042: [52549] fa <- i8042 (interrupt, 1, 12)
[   53.362775] i8042: [52549] d4 -> i8042 (command)
[   53.362962] i8042: [52549] f3 -> i8042 (parameter)
[   53.365933] i8042: [52552] fa <- i8042 (interrupt, 1, 12)
[   53.365996] i8042: [52552] d4 -> i8042 (command)
[   53.366239] i8042: [52552] 64 -> i8042 (parameter)
[   53.369127] i8042: [52555] fa <- i8042 (interrupt, 1, 12)
[   53.369195] i8042: [52555] d4 -> i8042 (command)
[   53.369379] i8042: [52555] e8 -> i8042 (parameter)
[   53.372256] i8042: [52558] fa <- i8042 (interrupt, 1, 12)
[   53.372306] i8042: [52558] d4 -> i8042 (command)
[   53.372492] i8042: [52558] 03 -> i8042 (parameter)
[   53.375451] i8042: [52562] fa <- i8042 (interrupt, 1, 12)
[   53.375498] i8042: [52562] d4 -> i8042 (command)
[   53.375741] i8042: [52562] e6 -> i8042 (parameter)
[   53.378679] i8042: [52565] fa <- i8042 (interrupt, 1, 12)
[   53.378726] i8042: [52565] d4 -> i8042 (command)
[   53.378966] i8042: [52565] f4 -> i8042 (parameter)
[   53.381921] i8042: [52568] fa <- i8042 (interrupt, 1, 12)
[   53.402618] i8042: [52589] 08 <- i8042 (interrupt, 1, 12)
[   53.404194] i8042: [52590] 00 <- i8042 (interrupt, 1, 12)
[   53.405791] i8042: [52592] 00 <- i8042 (interrupt, 1, 12)
[   53.412374] i8042: [52598] 54 <- i8042 (interrupt, 1, 12)
[   53.413955] i8042: [52600] 01 <- i8042 (interrupt, 1, 12)
[   53.415565] i8042: [52602] 00 <- i8042 (interrupt, 1, 12)
[   53.415597] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.417200] i8042: [52603] 10 <- i8042 (interrupt, 1, 12)
[   53.418826] i8042: [52605] 00 <- i8042 (interrupt, 1, 12)
[   53.420428] i8042: [52607] 00 <- i8042 (interrupt, 1, 12)
[   53.421914] i8042: [52608] 54 <- i8042 (interrupt, 1, 12)
[   53.423453] i8042: [52610] 12 <- i8042 (interrupt, 1, 12)
[   53.425039] i8042: [52611] c1 <- i8042 (interrupt, 1, 12)
[   53.425066] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.426620] i8042: [52613] 31 <- i8042 (interrupt, 1, 12)
[   53.428234] i8042: [52614] f3 <- i8042 (interrupt, 1, 12)
[   53.429819] i8042: [52616] c6 <- i8042 (interrupt, 1, 12)
[   53.431505] i8042: [52618] 54 <- i8042 (interrupt, 1, 12)
[   53.433017] i8042: [52619] 22 <- i8042 (interrupt, 1, 12)
[   53.434541] i8042: [52621] c1 <- i8042 (interrupt, 1, 12)
[   53.434601] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.436167] i8042: [52622] 31 <- i8042 (interrupt, 1, 12)
[   53.437705] i8042: [52624] 43 <- i8042 (interrupt, 1, 12)
[   53.439351] i8042: [52625] c6 <- i8042 (interrupt, 1, 12)
[   53.440944] i8042: [52627] 54 <- i8042 (interrupt, 1, 12)
[   53.442467] i8042: [52629] 22 <- i8042 (interrupt, 1, 12)
[   53.444040] i8042: [52630] c1 <- i8042 (interrupt, 1, 12)
[   53.444074] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.445657] i8042: [52632] 31 <- i8042 (interrupt, 1, 12)
[   53.447236] i8042: [52633] 73 <- i8042 (interrupt, 1, 12)
[   53.448781] i8042: [52635] c6 <- i8042 (interrupt, 1, 12)
[   53.450472] i8042: [52637] 54 <- i8042 (interrupt, 1, 12)
[   53.452068] i8042: [52638] 22 <- i8042 (interrupt, 1, 12)
[   53.453554] i8042: [52640] a9 <- i8042 (interrupt, 1, 12)
[   53.453589] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.453605] psmouse serio1: issuing reconnect request
[   53.453680] i8042: [52640] d4 -> i8042 (command)
[   53.453870] i8042: [52640] ff -> i8042 (parameter)
[   53.456907] i8042: [52643] fa <- i8042 (interrupt, 1, 12)
[   53.557835] i8042: [52744] aa <- i8042 (interrupt, 1, 12)
[   53.559422] i8042: [52746] 00 <- i8042 (interrupt, 1, 12)
[   53.559481] i8042: [52746] d4 -> i8042 (command)
[   53.559671] i8042: [52746] f6 -> i8042 (parameter)
[   53.562624] i8042: [52749] fa <- i8042 (interrupt, 1, 12)
[   53.562677] i8042: [52749] d4 -> i8042 (command)
[   53.562865] i8042: [52749] f5 -> i8042 (parameter)
[   53.565819] i8042: [52752] fa <- i8042 (interrupt, 1, 12)
[   53.565886] i8042: [52752] d4 -> i8042 (command)
[   53.566075] i8042: [52752] e6 -> i8042 (parameter)
[   53.569011] i8042: [52755] fa <- i8042 (interrupt, 1, 12)
[   53.569056] i8042: [52755] d4 -> i8042 (command)
[   53.569302] i8042: [52755] e6 -> i8042 (parameter)
[   53.572204] i8042: [52758] fa <- i8042 (interrupt, 1, 12)
[   53.572258] i8042: [52758] d4 -> i8042 (command)
[   53.572447] i8042: [52759] e6 -> i8042 (parameter)
[   53.575410] i8042: [52762] fa <- i8042 (interrupt, 1, 12)
[   53.575465] i8042: [52762] d4 -> i8042 (command)
[   53.575654] i8042: [52762] e9 -> i8042 (parameter)
[   53.578629] i8042: [52765] fa <- i8042 (interrupt, 1, 12)
[   53.580171] i8042: [52766] 3c <- i8042 (interrupt, 1, 12)
[   53.581748] i8042: [52768] 03 <- i8042 (interrupt, 1, 12)
[   53.583341] i8042: [52769] 00 <- i8042 (interrupt, 1, 12)
[   53.583962] i8042: [52770] d4 -> i8042 (command)
[   53.584157] i8042: [52770] e6 -> i8042 (parameter)
[   53.587154] i8042: [52773] fa <- i8042 (interrupt, 1, 12)
[   53.587225] i8042: [52773] d4 -> i8042 (command)
[   53.587412] i8042: [52773] e8 -> i8042 (parameter)
[   53.590242] i8042: [52776] fa <- i8042 (interrupt, 1, 12)
[   53.590310] i8042: [52776] d4 -> i8042 (command)
[   53.590499] i8042: [52776] 00 -> i8042 (parameter)
[   53.593437] i8042: [52780] fa <- i8042 (interrupt, 1, 12)
[   53.593491] i8042: [52780] d4 -> i8042 (command)
[   53.593680] i8042: [52780] e8 -> i8042 (parameter)
[   53.596666] i8042: [52783] fa <- i8042 (interrupt, 1, 12)
[   53.596738] i8042: [52783] d4 -> i8042 (command)
[   53.596927] i8042: [52783] 00 -> i8042 (parameter)
[   53.599823] i8042: [52786] fa <- i8042 (interrupt, 1, 12)
[   53.599873] i8042: [52786] d4 -> i8042 (command)
[   53.600060] i8042: [52786] e8 -> i8042 (parameter)
[   53.603151] i8042: [52789] fa <- i8042 (interrupt, 1, 12)
[   53.603223] i8042: [52789] d4 -> i8042 (command)
[   53.603411] i8042: [52789] 00 -> i8042 (parameter)
[   53.606277] i8042: [52792] fa <- i8042 (interrupt, 1, 12)
[   53.606354] i8042: [52792] d4 -> i8042 (command)
[   53.606544] i8042: [52793] e8 -> i8042 (parameter)
[   53.609431] i8042: [52796] fa <- i8042 (interrupt, 1, 12)
[   53.609490] i8042: [52796] d4 -> i8042 (command)
[   53.609681] i8042: [52796] 01 -> i8042 (parameter)
[   53.612598] i8042: [52799] fa <- i8042 (interrupt, 1, 12)
[   53.612672] i8042: [52799] d4 -> i8042 (command)
[   53.612861] i8042: [52799] e9 -> i8042 (parameter)
[   53.615786] i8042: [52802] fa <- i8042 (interrupt, 1, 12)
[   53.617354] i8042: [52803] 5e <- i8042 (interrupt, 1, 12)
[   53.618939] i8042: [52805] 0f <- i8042 (interrupt, 1, 12)
[   53.619351] wlan0: authenticate with c8:9e:43:94:32:f2
[   53.620606] i8042: [52807] 01 <- i8042 (interrupt, 1, 12)
[   53.620632] i8042: [52807] d4 -> i8042 (command)
[   53.620874] i8042: [52807] f8 -> i8042 (parameter)
[   53.623743] i8042: [52810] fa <- i8042 (interrupt, 1, 12)
[   53.623775] i8042: [52810] d4 -> i8042 (command)
[   53.624017] i8042: [52810] 00 -> i8042 (parameter)
[   53.626925] i8042: [52813] fa <- i8042 (interrupt, 1, 12)
[   53.626956] i8042: [52813] d4 -> i8042 (command)
[   53.627197] i8042: [52813] f8 -> i8042 (parameter)
[   53.627268] wlan0: send auth to c8:9e:43:94:32:f2 (try 1/3)
[   53.630118] i8042: [52816] fa <- i8042 (interrupt, 1, 12)
[   53.630144] i8042: [52816] d4 -> i8042 (command)
[   53.630384] i8042: [52816] 07 -> i8042 (parameter)
[   53.633310] i8042: [52819] fa <- i8042 (interrupt, 1, 12)
[   53.633328] i8042: [52819] d4 -> i8042 (command)
[   53.633569] i8042: [52819] f8 -> i8042 (parameter)
[   53.634465] wlan0: authenticated
[   53.635413] wlan0: associate with c8:9e:43:94:32:f2 (try 1/3)
[   53.636511] i8042: [52823] fa <- i8042 (interrupt, 1, 12)
[   53.636536] i8042: [52823] d4 -> i8042 (command)
[   53.636778] i8042: [52823] 00 -> i8042 (parameter)
[   53.636854] wlan0: RX AssocResp from c8:9e:43:94:32:f2 (capab=0x11 status=0 aid=28)
[   53.639700] i8042: [52826] fa <- i8042 (interrupt, 1, 12)
[   53.639731] i8042: [52826] d4 -> i8042 (command)
[   53.639972] i8042: [52826] f8 -> i8042 (parameter)
[   53.642900] i8042: [52829] fa <- i8042 (interrupt, 1, 12)
[   53.642942] i8042: [52829] d4 -> i8042 (command)
[   53.643183] i8042: [52829] 01 -> i8042 (parameter)
[   53.646089] i8042: [52832] fa <- i8042 (interrupt, 1, 12)
[   53.646885] i8042: [52833] d4 -> i8042 (command)
[   53.647078] i8042: [52833] e6 -> i8042 (parameter)
[   53.648097] wlan0: associated
[   53.649787] i8042: [52836] fa <- i8042 (interrupt, 1, 12)
[   53.649828] i8042: [52836] d4 -> i8042 (command)
[   53.650069] i8042: [52836] f3 -> i8042 (parameter)
[   53.653013] i8042: [52839] fa <- i8042 (interrupt, 1, 12)
[   53.653048] i8042: [52839] d4 -> i8042 (command)
[   53.653233] i8042: [52839] 64 -> i8042 (parameter)
[   53.656205] i8042: [52842] fa <- i8042 (interrupt, 1, 12)
[   53.656244] i8042: [52842] d4 -> i8042 (command)
[   53.656429] i8042: [52843] e8 -> i8042 (parameter)
[   53.659369] i8042: [52845] fa <- i8042 (interrupt, 1, 12)
[   53.659417] i8042: [52846] d4 -> i8042 (command)
[   53.659657] i8042: [52846] 03 -> i8042 (parameter)
[   53.662561] i8042: [52849] fa <- i8042 (interrupt, 1, 12)
[   53.662597] i8042: [52849] d4 -> i8042 (command)
[   53.662835] i8042: [52849] e6 -> i8042 (parameter)
[   53.665774] i8042: [52852] fa <- i8042 (interrupt, 1, 12)
[   53.665808] i8042: [52852] d4 -> i8042 (command)
[   53.666049] i8042: [52852] f4 -> i8042 (parameter)
[   53.668990] i8042: [52855] fa <- i8042 (interrupt, 1, 12)
[   53.672903] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
[   53.675491] wlan0: dropped frame to c8:9e:43:94:32:f2 (unauthorized port)
[   53.689694] i8042: [52876] 08 <- i8042 (interrupt, 1, 12)
[   53.691275] i8042: [52877] 00 <- i8042 (interrupt, 1, 12)
[   53.692865] i8042: [52879] 00 <- i8042 (interrupt, 1, 12)
[   53.699488] i8042: [52886] 54 <- i8042 (interrupt, 1, 12)
[   53.701075] i8042: [52887] 01 <- i8042 (interrupt, 1, 12)
[   53.702663] i8042: [52889] 00 <- i8042 (interrupt, 1, 12)
[   53.702683] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.704251] i8042: [52890] 10 <- i8042 (interrupt, 1, 12)
[   53.705821] i8042: [52892] 00 <- i8042 (interrupt, 1, 12)
[   53.707412] i8042: [52894] 00 <- i8042 (interrupt, 1, 12)
[   53.708986] i8042: [52895] 54 <- i8042 (interrupt, 1, 12)
[   53.710574] i8042: [52897] 25 <- i8042 (interrupt, 1, 12)
[   53.712156] i8042: [52898] 8b <- i8042 (interrupt, 1, 12)
[   53.712179] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.713770] i8042: [52900] 31 <- i8042 (interrupt, 1, 12)
[   53.715351] i8042: [52901] 42 <- i8042 (interrupt, 1, 12)
[   53.716923] i8042: [52903] 75 <- i8042 (interrupt, 1, 12)
[   53.718491] i8042: [52905] 54 <- i8042 (interrupt, 1, 12)
[   53.720086] i8042: [52906] 25 <- i8042 (interrupt, 1, 12)
[   53.721659] i8042: [52908] 8b <- i8042 (interrupt, 1, 12)
[   53.721679] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.723246] i8042: [52909] 31 <- i8042 (interrupt, 1, 12)
[   53.724859] i8042: [52911] 72 <- i8042 (interrupt, 1, 12)
[   53.726409] i8042: [52913] 75 <- i8042 (interrupt, 1, 12)
[   53.727996] i8042: [52914] 54 <- i8042 (interrupt, 1, 12)
[   53.729577] i8042: [52916] 25 <- i8042 (interrupt, 1, 12)
[   53.731163] i8042: [52917] 44 <- i8042 (interrupt, 1, 12)
[   53.731188] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.732744] i8042: [52919] 31 <- i8042 (interrupt, 1, 12)
[   53.734376] i8042: [52920] a2 <- i8042 (interrupt, 1, 12)
[   53.735974] i8042: [52922] 74 <- i8042 (interrupt, 1, 12)
[   53.737526] i8042: [52924] 54 <- i8042 (interrupt, 1, 12)
[   53.739078] i8042: [52925] 25 <- i8042 (interrupt, 1, 12)
[   53.740657] i8042: [52927] 3b <- i8042 (interrupt, 1, 12)
[   53.740680] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.740689] psmouse serio1: issuing reconnect request
[   53.740723] i8042: [52927] d4 -> i8042 (command)
[   53.740955] i8042: [52927] ff -> i8042 (parameter)
[   53.743877] i8042: [52930] fa <- i8042 (interrupt, 1, 12)
[   53.844964] i8042: [53031] aa <- i8042 (interrupt, 1, 12)
[   53.846452] i8042: [53032] 00 <- i8042 (interrupt, 1, 12)
[   53.846528] i8042: [53033] d4 -> i8042 (command)
[   53.846718] i8042: [53033] f6 -> i8042 (parameter)
[   53.849696] i8042: [53036] fa <- i8042 (interrupt, 1, 12)
[   53.849764] i8042: [53036] d4 -> i8042 (command)
[   53.849954] i8042: [53036] f5 -> i8042 (parameter)
[   53.852923] i8042: [53039] fa <- i8042 (interrupt, 1, 12)
[   53.853004] i8042: [53039] d4 -> i8042 (command)
[   53.853193] i8042: [53039] e6 -> i8042 (parameter)
[   53.856048] i8042: [53042] fa <- i8042 (interrupt, 1, 12)
[   53.856105] i8042: [53042] d4 -> i8042 (command)
[   53.856293] i8042: [53042] e6 -> i8042 (parameter)
[   53.859275] i8042: [53045] fa <- i8042 (interrupt, 1, 12)
[   53.859344] i8042: [53045] d4 -> i8042 (command)
[   53.859533] i8042: [53046] e6 -> i8042 (parameter)
[   53.862437] i8042: [53049] fa <- i8042 (interrupt, 1, 12)
[   53.862490] i8042: [53049] d4 -> i8042 (command)
[   53.862678] i8042: [53049] e9 -> i8042 (parameter)
[   53.865667] i8042: [53052] fa <- i8042 (interrupt, 1, 12)
[   53.867305] i8042: [53053] 3c <- i8042 (interrupt, 1, 12)
[   53.868919] i8042: [53055] 03 <- i8042 (interrupt, 1, 12)
[   53.870541] i8042: [53057] 00 <- i8042 (interrupt, 1, 12)
[   53.870620] i8042: [53057] d4 -> i8042 (command)
[   53.870808] i8042: [53057] e6 -> i8042 (parameter)
[   53.873620] i8042: [53060] fa <- i8042 (interrupt, 1, 12)
[   53.873729] i8042: [53060] d4 -> i8042 (command)
[   53.873919] i8042: [53060] e8 -> i8042 (parameter)
[   53.876774] i8042: [53063] fa <- i8042 (interrupt, 1, 12)
[   53.876837] i8042: [53063] d4 -> i8042 (command)
[   53.877026] i8042: [53063] 00 -> i8042 (parameter)
[   53.879962] i8042: [53066] fa <- i8042 (interrupt, 1, 12)
[   53.880039] i8042: [53066] d4 -> i8042 (command)
[   53.880284] i8042: [53066] e8 -> i8042 (parameter)
[   53.883157] i8042: [53069] fa <- i8042 (interrupt, 1, 12)
[   53.883207] i8042: [53069] d4 -> i8042 (command)
[   53.883395] i8042: [53069] 00 -> i8042 (parameter)
[   53.886535] i8042: [53073] fa <- i8042 (interrupt, 1, 12)
[   53.886604] i8042: [53073] d4 -> i8042 (command)
[   53.886792] i8042: [53073] e8 -> i8042 (parameter)
[   53.889549] i8042: [53076] fa <- i8042 (interrupt, 1, 12)
[   53.889608] i8042: [53076] d4 -> i8042 (command)
[   53.889796] i8042: [53076] 00 -> i8042 (parameter)
[   53.892744] i8042: [53079] fa <- i8042 (interrupt, 1, 12)
[   53.892806] i8042: [53079] d4 -> i8042 (command)
[   53.892995] i8042: [53079] e8 -> i8042 (parameter)
[   53.895994] i8042: [53082] fa <- i8042 (interrupt, 1, 12)
[   53.896067] i8042: [53082] d4 -> i8042 (command)
[   53.896255] i8042: [53082] 01 -> i8042 (parameter)
[   53.899173] i8042: [53085] fa <- i8042 (interrupt, 1, 12)
[   53.899240] i8042: [53085] d4 -> i8042 (command)
[   53.899429] i8042: [53085] e9 -> i8042 (parameter)
[   53.902324] i8042: [53088] fa <- i8042 (interrupt, 1, 12)
[   53.903999] i8042: [53090] 5e <- i8042 (interrupt, 1, 12)
[   53.905482] i8042: [53092] 0f <- i8042 (interrupt, 1, 12)
[   53.907061] i8042: [53093] 01 <- i8042 (interrupt, 1, 12)
[   53.907134] i8042: [53093] d4 -> i8042 (command)
[   53.907323] i8042: [53093] f8 -> i8042 (parameter)
[   53.910270] i8042: [53096] fa <- i8042 (interrupt, 1, 12)
[   53.910330] i8042: [53096] d4 -> i8042 (command)
[   53.910520] i8042: [53096] 00 -> i8042 (parameter)
[   53.913460] i8042: [53100] fa <- i8042 (interrupt, 1, 12)
[   53.913515] i8042: [53100] d4 -> i8042 (command)
[   53.913703] i8042: [53100] f8 -> i8042 (parameter)
[   53.916713] i8042: [53103] fa <- i8042 (interrupt, 1, 12)
[   53.916766] i8042: [53103] d4 -> i8042 (command)
[   53.916953] i8042: [53103] 07 -> i8042 (parameter)
[   53.919981] i8042: [53106] fa <- i8042 (interrupt, 1, 12)
[   53.920053] i8042: [53106] d4 -> i8042 (command)
[   53.920241] i8042: [53106] f8 -> i8042 (parameter)
[   53.923066] i8042: [53109] fa <- i8042 (interrupt, 1, 12)
[   53.923134] i8042: [53109] d4 -> i8042 (command)
[   53.923322] i8042: [53109] 00 -> i8042 (parameter)
[   53.926245] i8042: [53112] fa <- i8042 (interrupt, 1, 12)
[   53.926308] i8042: [53112] d4 -> i8042 (command)
[   53.926497] i8042: [53113] f8 -> i8042 (parameter)
[   53.929443] i8042: [53116] fa <- i8042 (interrupt, 1, 12)
[   53.929512] i8042: [53116] d4 -> i8042 (command)
[   53.929702] i8042: [53116] 01 -> i8042 (parameter)
[   53.932627] i8042: [53119] fa <- i8042 (interrupt, 1, 12)
[   53.932679] i8042: [53119] d4 -> i8042 (command)
[   53.932868] i8042: [53119] e6 -> i8042 (parameter)
[   53.935931] i8042: [53122] fa <- i8042 (interrupt, 1, 12)
[   53.936011] i8042: [53122] d4 -> i8042 (command)
[   53.936200] i8042: [53122] f3 -> i8042 (parameter)
[   53.939056] i8042: [53125] fa <- i8042 (interrupt, 1, 12)
[   53.939115] i8042: [53125] d4 -> i8042 (command)
[   53.939303] i8042: [53125] 64 -> i8042 (parameter)
[   53.942216] i8042: [53128] fa <- i8042 (interrupt, 1, 12)
[   53.942269] i8042: [53128] d4 -> i8042 (command)
[   53.942513] i8042: [53129] e8 -> i8042 (parameter)
[   53.945412] i8042: [53131] fa <- i8042 (interrupt, 1, 12)
[   53.945463] i8042: [53132] d4 -> i8042 (command)
[   53.945652] i8042: [53132] 03 -> i8042 (parameter)
[   53.948705] i8042: [53135] fa <- i8042 (interrupt, 1, 12)
[   53.948773] i8042: [53135] d4 -> i8042 (command)
[   53.948961] i8042: [53135] e6 -> i8042 (parameter)
[   53.951933] i8042: [53138] fa <- i8042 (interrupt, 1, 12)
[   53.952005] i8042: [53138] d4 -> i8042 (command)
[   53.952193] i8042: [53138] f4 -> i8042 (parameter)
[   53.955021] i8042: [53141] fa <- i8042 (interrupt, 1, 12)
[   53.975744] i8042: [53162] 08 <- i8042 (interrupt, 1, 12)
[   53.977388] i8042: [53164] 00 <- i8042 (interrupt, 1, 12)
[   53.978974] i8042: [53165] 00 <- i8042 (interrupt, 1, 12)
[   53.985581] i8042: [53172] 64 <- i8042 (interrupt, 1, 12)
[   53.987215] i8042: [53173] 01 <- i8042 (interrupt, 1, 12)
[   53.988755] i8042: [53175] 00 <- i8042 (interrupt, 1, 12)
[   53.988792] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.990354] i8042: [53176] 10 <- i8042 (interrupt, 1, 12)
[   53.991904] i8042: [53178] 00 <- i8042 (interrupt, 1, 12)
[   53.993449] i8042: [53180] 00 <- i8042 (interrupt, 1, 12)
[   53.995101] i8042: [53181] 64 <- i8042 (interrupt, 1, 12)
[   53.996655] i8042: [53183] 24 <- i8042 (interrupt, 1, 12)
[   53.998233] i8042: [53184] a3 <- i8042 (interrupt, 1, 12)
[   53.998267] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   53.999826] i8042: [53186] 31 <- i8042 (interrupt, 1, 12)
[   54.001411] i8042: [53187] 22 <- i8042 (interrupt, 1, 12)
[   54.003033] i8042: [53189] 17 <- i8042 (interrupt, 1, 12)
[   54.004526] i8042: [53191] 54 <- i8042 (interrupt, 1, 12)
[   54.006149] i8042: [53192] 24 <- i8042 (interrupt, 1, 12)
[   54.007737] i8042: [53194] a3 <- i8042 (interrupt, 1, 12)
[   54.007772] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.009278] i8042: [53195] 31 <- i8042 (interrupt, 1, 12)
[   54.010943] i8042: [53197] 72 <- i8042 (interrupt, 1, 12)
[   54.012490] i8042: [53199] 17 <- i8042 (interrupt, 1, 12)
[   54.014074] i8042: [53200] 54 <- i8042 (interrupt, 1, 12)
[   54.015612] i8042: [53202] 24 <- i8042 (interrupt, 1, 12)
[   54.017200] i8042: [53203] df <- i8042 (interrupt, 1, 12)
[   54.017232] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.018828] i8042: [53205] 31 <- i8042 (interrupt, 1, 12)
[   54.020363] i8042: [53206] b2 <- i8042 (interrupt, 1, 12)
[   54.021950] i8042: [53208] 2f <- i8042 (interrupt, 1, 12)
[   54.023581] i8042: [53210] 54 <- i8042 (interrupt, 1, 12)
[   54.025147] i8042: [53211] 25 <- i8042 (interrupt, 1, 12)
[   54.026701] i8042: [53213] 21 <- i8042 (interrupt, 1, 12)
[   54.026737] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.026753] psmouse serio1: issuing reconnect request
[   54.026798] i8042: [53213] d4 -> i8042 (command)
[   54.027044] i8042: [53213] ff -> i8042 (parameter)
[   54.030007] i8042: [53216] fa <- i8042 (interrupt, 1, 12)
[   54.130996] i8042: [53317] aa <- i8042 (interrupt, 1, 12)
[   54.132590] i8042: [53319] 00 <- i8042 (interrupt, 1, 12)
[   54.132646] i8042: [53319] d4 -> i8042 (command)
[   54.132836] i8042: [53319] f6 -> i8042 (parameter)
[   54.135871] i8042: [53322] fa <- i8042 (interrupt, 1, 12)
[   54.135949] i8042: [53322] d4 -> i8042 (command)
[   54.136138] i8042: [53322] f5 -> i8042 (parameter)
[   54.139022] i8042: [53325] fa <- i8042 (interrupt, 1, 12)
[   54.139086] i8042: [53325] d4 -> i8042 (command)
[   54.139276] i8042: [53325] e6 -> i8042 (parameter)
[   54.142252] i8042: [53328] fa <- i8042 (interrupt, 1, 12)
[   54.142366] i8042: [53328] d4 -> i8042 (command)
[   54.142556] i8042: [53329] e6 -> i8042 (parameter)
[   54.145444] i8042: [53332] fa <- i8042 (interrupt, 1, 12)
[   54.145536] i8042: [53332] d4 -> i8042 (command)
[   54.145725] i8042: [53332] e6 -> i8042 (parameter)
[   54.148565] i8042: [53335] fa <- i8042 (interrupt, 1, 12)
[   54.148623] i8042: [53335] d4 -> i8042 (command)
[   54.148813] i8042: [53335] e9 -> i8042 (parameter)
[   54.151857] i8042: [53338] fa <- i8042 (interrupt, 1, 12)
[   54.153351] i8042: [53339] 3c <- i8042 (interrupt, 1, 12)
[   54.154948] i8042: [53341] 03 <- i8042 (interrupt, 1, 12)
[   54.156495] i8042: [53343] 00 <- i8042 (interrupt, 1, 12)
[   54.156610] i8042: [53343] d4 -> i8042 (command)
[   54.156801] i8042: [53343] e6 -> i8042 (parameter)
[   54.159706] i8042: [53346] fa <- i8042 (interrupt, 1, 12)
[   54.159768] i8042: [53346] d4 -> i8042 (command)
[   54.159958] i8042: [53346] e8 -> i8042 (parameter)
[   54.162901] i8042: [53349] fa <- i8042 (interrupt, 1, 12)
[   54.162965] i8042: [53349] d4 -> i8042 (command)
[   54.163211] i8042: [53349] 00 -> i8042 (parameter)
[   54.166094] i8042: [53352] fa <- i8042 (interrupt, 1, 12)
[   54.166161] i8042: [53352] d4 -> i8042 (command)
[   54.166350] i8042: [53352] e8 -> i8042 (parameter)
[   54.169364] i8042: [53355] fa <- i8042 (interrupt, 1, 12)
[   54.169554] i8042: [53356] d4 -> i8042 (command)
[   54.169745] i8042: [53356] 00 -> i8042 (parameter)
[   54.172488] i8042: [53359] fa <- i8042 (interrupt, 1, 12)
[   54.172579] i8042: [53359] d4 -> i8042 (command)
[   54.172769] i8042: [53359] e8 -> i8042 (parameter)
[   54.175772] i8042: [53362] fa <- i8042 (interrupt, 1, 12)
[   54.175858] i8042: [53362] d4 -> i8042 (command)
[   54.176048] i8042: [53362] 00 -> i8042 (parameter)
[   54.178945] i8042: [53365] fa <- i8042 (interrupt, 1, 12)
[   54.179057] i8042: [53365] d4 -> i8042 (command)
[   54.179246] i8042: [53365] e8 -> i8042 (parameter)
[   54.182070] i8042: [53368] fa <- i8042 (interrupt, 1, 12)
[   54.182112] i8042: [53368] d4 -> i8042 (command)
[   54.182353] i8042: [53368] 01 -> i8042 (parameter)
[   54.185334] i8042: [53371] fa <- i8042 (interrupt, 1, 12)
[   54.185421] i8042: [53372] d4 -> i8042 (command)
[   54.185621] i8042: [53372] e9 -> i8042 (parameter)
[   54.188533] i8042: [53375] fa <- i8042 (interrupt, 1, 12)
[   54.190085] i8042: [53376] 5e <- i8042 (interrupt, 1, 12)
[   54.191615] i8042: [53378] 0f <- i8042 (interrupt, 1, 12)
[   54.193195] i8042: [53379] 01 <- i8042 (interrupt, 1, 12)
[   54.193246] i8042: [53379] d4 -> i8042 (command)
[   54.193431] i8042: [53379] f8 -> i8042 (parameter)
[   54.196507] i8042: [53383] fa <- i8042 (interrupt, 1, 12)
[   54.196596] i8042: [53383] d4 -> i8042 (command)
[   54.196788] i8042: [53383] 00 -> i8042 (parameter)
[   54.199600] i8042: [53386] fa <- i8042 (interrupt, 1, 12)
[   54.199672] i8042: [53386] d4 -> i8042 (command)
[   54.199872] i8042: [53386] f8 -> i8042 (parameter)
[   54.202899] i8042: [53389] fa <- i8042 (interrupt, 1, 12)
[   54.202972] i8042: [53389] d4 -> i8042 (command)
[   54.203159] i8042: [53389] 07 -> i8042 (parameter)
[   54.206055] i8042: [53392] fa <- i8042 (interrupt, 1, 12)
[   54.206112] i8042: [53392] d4 -> i8042 (command)
[   54.206297] i8042: [53392] f8 -> i8042 (parameter)
[   54.209207] i8042: [53395] fa <- i8042 (interrupt, 1, 12)
[   54.209268] i8042: [53395] d4 -> i8042 (command)
[   54.209458] i8042: [53396] 00 -> i8042 (parameter)
[   54.212385] i8042: [53398] fa <- i8042 (interrupt, 1, 12)
[   54.212481] i8042: [53399] d4 -> i8042 (command)
[   54.212727] i8042: [53399] f8 -> i8042 (parameter)
[   54.215568] i8042: [53402] fa <- i8042 (interrupt, 1, 12)
[   54.215623] i8042: [53402] d4 -> i8042 (command)
[   54.215811] i8042: [53402] 01 -> i8042 (parameter)
[   54.218873] i8042: [53405] fa <- i8042 (interrupt, 1, 12)
[   54.218956] i8042: [53405] d4 -> i8042 (command)
[   54.219145] i8042: [53405] e6 -> i8042 (parameter)
[   54.222025] i8042: [53408] fa <- i8042 (interrupt, 1, 12)
[   54.222108] i8042: [53408] d4 -> i8042 (command)
[   54.222297] i8042: [53408] f3 -> i8042 (parameter)
[   54.225238] i8042: [53411] fa <- i8042 (interrupt, 1, 12)
[   54.225316] i8042: [53411] d4 -> i8042 (command)
[   54.225504] i8042: [53411] 64 -> i8042 (parameter)
[   54.228347] i8042: [53414] fa <- i8042 (interrupt, 1, 12)
[   54.228449] i8042: [53415] d4 -> i8042 (command)
[   54.228639] i8042: [53415] e8 -> i8042 (parameter)
[   54.231583] i8042: [53418] fa <- i8042 (interrupt, 1, 12)
[   54.231643] i8042: [53418] d4 -> i8042 (command)
[   54.231831] i8042: [53418] 03 -> i8042 (parameter)
[   54.234805] i8042: [53421] fa <- i8042 (interrupt, 1, 12)
[   54.234881] i8042: [53421] d4 -> i8042 (command)
[   54.235070] i8042: [53421] e6 -> i8042 (parameter)
[   54.237966] i8042: [53424] fa <- i8042 (interrupt, 1, 12)
[   54.238021] i8042: [53424] d4 -> i8042 (command)
[   54.238211] i8042: [53424] f4 -> i8042 (parameter)
[   54.241163] i8042: [53427] fa <- i8042 (interrupt, 1, 12)
[   54.262368] i8042: [53448] 08 <- i8042 (interrupt, 1, 12)
[   54.263954] i8042: [53450] 00 <- i8042 (interrupt, 1, 12)
[   54.265537] i8042: [53452] 00 <- i8042 (interrupt, 1, 12)
[   54.271659] i8042: [53458] 54 <- i8042 (interrupt, 1, 12)
[   54.273250] i8042: [53459] 01 <- i8042 (interrupt, 1, 12)
[   54.274832] i8042: [53461] 00 <- i8042 (interrupt, 1, 12)
[   54.274865] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.276413] i8042: [53463] 10 <- i8042 (interrupt, 1, 12)
[   54.277998] i8042: [53464] 00 <- i8042 (interrupt, 1, 12)
[   54.279579] i8042: [53466] 00 <- i8042 (interrupt, 1, 12)
[   54.281164] i8042: [53467] 54 <- i8042 (interrupt, 1, 12)
[   54.282742] i8042: [53469] 11 <- i8042 (interrupt, 1, 12)
[   54.284328] i8042: [53470] 9c <- i8042 (interrupt, 1, 12)
[   54.284356] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.285910] i8042: [53472] 31 <- i8042 (interrupt, 1, 12)
[   54.287537] i8042: [53474] d1 <- i8042 (interrupt, 1, 12)
[   54.289114] i8042: [53475] f2 <- i8042 (interrupt, 1, 12)
[   54.290658] i8042: [53477] 54 <- i8042 (interrupt, 1, 12)
[   54.292243] i8042: [53478] 21 <- i8042 (interrupt, 1, 12)
[   54.293831] i8042: [53480] 9c <- i8042 (interrupt, 1, 12)
[   54.293860] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.295444] i8042: [53482] 31 <- i8042 (interrupt, 1, 12)
[   54.296998] i8042: [53483] 21 <- i8042 (interrupt, 1, 12)
[   54.298712] i8042: [53485] f2 <- i8042 (interrupt, 1, 12)
[   54.300213] i8042: [53486] 54 <- i8042 (interrupt, 1, 12)
[   54.301835] i8042: [53488] 21 <- i8042 (interrupt, 1, 12)
[   54.303457] i8042: [53490] 9c <- i8042 (interrupt, 1, 12)
[   54.303493] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.304908] i8042: [53491] 31 <- i8042 (interrupt, 1, 12)
[   54.306501] i8042: [53493] 61 <- i8042 (interrupt, 1, 12)
[   54.308073] i8042: [53494] f2 <- i8042 (interrupt, 1, 12)
[   54.309697] i8042: [53496] 54 <- i8042 (interrupt, 1, 12)
[   54.311271] i8042: [53497] 21 <- i8042 (interrupt, 1, 12)
[   54.312827] i8042: [53499] ab <- i8042 (interrupt, 1, 12)
[   54.312860] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.312875] psmouse serio1: issuing reconnect request
[   54.312916] i8042: [53499] d4 -> i8042 (command)
[   54.313105] i8042: [53499] ff -> i8042 (parameter)
[   54.316040] i8042: [53502] fa <- i8042 (interrupt, 1, 12)
[   54.417073] i8042: [53603] aa <- i8042 (interrupt, 1, 12)
[   54.418647] i8042: [53605] 00 <- i8042 (interrupt, 1, 12)
[   54.418682] i8042: [53605] d4 -> i8042 (command)
[   54.418867] i8042: [53605] f6 -> i8042 (parameter)
[   54.421825] i8042: [53608] fa <- i8042 (interrupt, 1, 12)
[   54.422482] i8042: [53609] d4 -> i8042 (command)
[   54.422673] i8042: [53609] f5 -> i8042 (parameter)
[   54.425532] i8042: [53612] fa <- i8042 (interrupt, 1, 12)
[   54.425791] i8042: [53612] d4 -> i8042 (command)
[   54.425977] i8042: [53612] e6 -> i8042 (parameter)
[   54.428732] i8042: [53615] fa <- i8042 (interrupt, 1, 12)
[   54.428774] i8042: [53615] d4 -> i8042 (command)
[   54.429018] i8042: [53615] e6 -> i8042 (parameter)
[   54.431986] i8042: [53618] fa <- i8042 (interrupt, 1, 12)
[   54.432043] i8042: [53618] d4 -> i8042 (command)
[   54.432284] i8042: [53618] e6 -> i8042 (parameter)
[   54.435109] i8042: [53621] fa <- i8042 (interrupt, 1, 12)
[   54.435145] i8042: [53621] d4 -> i8042 (command)
[   54.435385] i8042: [53622] e9 -> i8042 (parameter)
[   54.438297] i8042: [53624] fa <- i8042 (interrupt, 1, 12)
[   54.439868] i8042: [53626] 3c <- i8042 (interrupt, 1, 12)
[   54.441452] i8042: [53628] 03 <- i8042 (interrupt, 1, 12)
[   54.443098] i8042: [53629] 00 <- i8042 (interrupt, 1, 12)
[   54.443178] i8042: [53629] d4 -> i8042 (command)
[   54.443365] i8042: [53629] e6 -> i8042 (parameter)
[   54.446256] i8042: [53632] fa <- i8042 (interrupt, 1, 12)
[   54.446372] i8042: [53632] d4 -> i8042 (command)
[   54.446559] i8042: [53633] e8 -> i8042 (parameter)
[   54.449480] i8042: [53636] fa <- i8042 (interrupt, 1, 12)
[   54.449514] i8042: [53636] d4 -> i8042 (command)
[   54.449755] i8042: [53636] 00 -> i8042 (parameter)
[   54.452704] i8042: [53639] fa <- i8042 (interrupt, 1, 12)
[   54.452746] i8042: [53639] d4 -> i8042 (command)
[   54.452988] i8042: [53639] e8 -> i8042 (parameter)
[   54.455898] i8042: [53642] fa <- i8042 (interrupt, 1, 12)
[   54.455943] i8042: [53642] d4 -> i8042 (command)
[   54.456184] i8042: [53642] 00 -> i8042 (parameter)
[   54.459057] i8042: [53645] fa <- i8042 (interrupt, 1, 12)
[   54.459097] i8042: [53645] d4 -> i8042 (command)
[   54.459281] i8042: [53645] e8 -> i8042 (parameter)
[   54.462206] i8042: [53648] fa <- i8042 (interrupt, 1, 12)
[   54.462300] i8042: [53648] d4 -> i8042 (command)
[   54.462485] i8042: [53649] 00 -> i8042 (parameter)
[   54.465412] i8042: [53651] fa <- i8042 (interrupt, 1, 12)
[   54.465447] i8042: [53652] d4 -> i8042 (command)
[   54.465689] i8042: [53652] e8 -> i8042 (parameter)
[   54.468658] i8042: [53655] fa <- i8042 (interrupt, 1, 12)
[   54.468730] i8042: [53655] d4 -> i8042 (command)
[   54.468916] i8042: [53655] 01 -> i8042 (parameter)
[   54.471789] i8042: [53658] fa <- i8042 (interrupt, 1, 12)
[   54.471978] i8042: [53658] d4 -> i8042 (command)
[   54.472165] i8042: [53658] e9 -> i8042 (parameter)
[   54.474981] i8042: [53661] fa <- i8042 (interrupt, 1, 12)
[   54.476549] i8042: [53663] 5e <- i8042 (interrupt, 1, 12)
[   54.478133] i8042: [53664] 0f <- i8042 (interrupt, 1, 12)
[   54.479724] i8042: [53666] 01 <- i8042 (interrupt, 1, 12)
[   54.479769] i8042: [53666] d4 -> i8042 (command)
[   54.479954] i8042: [53666] f8 -> i8042 (parameter)
[   54.482929] i8042: [53669] fa <- i8042 (interrupt, 1, 12)
[   54.482967] i8042: [53669] d4 -> i8042 (command)
[   54.483152] i8042: [53669] 00 -> i8042 (parameter)
[   54.486128] i8042: [53672] fa <- i8042 (interrupt, 1, 12)
[   54.486171] i8042: [53672] d4 -> i8042 (command)
[   54.486412] i8042: [53673] f8 -> i8042 (parameter)
[   54.489325] i8042: [53675] fa <- i8042 (interrupt, 1, 12)
[   54.489379] i8042: [53676] d4 -> i8042 (command)
[   54.489564] i8042: [53676] 07 -> i8042 (parameter)
[   54.492511] i8042: [53679] fa <- i8042 (interrupt, 1, 12)
[   54.492562] i8042: [53679] d4 -> i8042 (command)
[   54.492803] i8042: [53679] f8 -> i8042 (parameter)
[   54.495710] i8042: [53682] fa <- i8042 (interrupt, 1, 12)
[   54.496635] i8042: [53683] d4 -> i8042 (command)
[   54.496829] i8042: [53683] 00 -> i8042 (parameter)
[   54.499410] i8042: [53685] fa <- i8042 (interrupt, 1, 12)
[   54.499949] i8042: [53686] d4 -> i8042 (command)
[   54.500140] i8042: [53686] f8 -> i8042 (parameter)
[   54.503179] i8042: [53689] fa <- i8042 (interrupt, 1, 12)
[   54.503361] i8042: [53689] d4 -> i8042 (command)
[   54.503547] i8042: [53690] 01 -> i8042 (parameter)
[   54.506368] i8042: [53692] fa <- i8042 (interrupt, 1, 12)
[   54.506542] i8042: [53693] d4 -> i8042 (command)
[   54.506729] i8042: [53693] e6 -> i8042 (parameter)
[   54.509581] i8042: [53696] fa <- i8042 (interrupt, 1, 12)
[   54.509763] i8042: [53696] d4 -> i8042 (command)
[   54.509949] i8042: [53696] f3 -> i8042 (parameter)
[   54.512756] i8042: [53699] fa <- i8042 (interrupt, 1, 12)
[   54.512828] i8042: [53699] d4 -> i8042 (command)
[   54.513013] i8042: [53699] 64 -> i8042 (parameter)
[   54.515887] i8042: [53702] fa <- i8042 (interrupt, 1, 12)
[   54.515933] i8042: [53702] d4 -> i8042 (command)
[   54.516118] i8042: [53702] e8 -> i8042 (parameter)
[   54.519084] i8042: [53705] fa <- i8042 (interrupt, 1, 12)
[   54.519122] i8042: [53705] d4 -> i8042 (command)
[   54.519364] i8042: [53705] 03 -> i8042 (parameter)
[   54.522283] i8042: [53708] fa <- i8042 (interrupt, 1, 12)
[   54.522325] i8042: [53708] d4 -> i8042 (command)
[   54.522566] i8042: [53709] e6 -> i8042 (parameter)
[   54.525471] i8042: [53712] fa <- i8042 (interrupt, 1, 12)
[   54.525508] i8042: [53712] d4 -> i8042 (command)
[   54.525749] i8042: [53712] f4 -> i8042 (parameter)
[   54.528729] i8042: [53715] fa <- i8042 (interrupt, 1, 12)
[   54.540939] i8042: [53727] 08 <- i8042 (interrupt, 1, 12)
[   54.542531] i8042: [53729] 00 <- i8042 (interrupt, 1, 12)
[   54.544122] i8042: [53730] 00 <- i8042 (interrupt, 1, 12)
[   54.550129] i8042: [53736] 54 <- i8042 (interrupt, 1, 12)
[   54.551709] i8042: [53738] 01 <- i8042 (interrupt, 1, 12)
[   54.553294] i8042: [53739] 00 <- i8042 (interrupt, 1, 12)
[   54.553317] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.554877] i8042: [53741] 10 <- i8042 (interrupt, 1, 12)
[   54.556458] i8042: [53743] 00 <- i8042 (interrupt, 1, 12)
[   54.558075] i8042: [53744] 00 <- i8042 (interrupt, 1, 12)
[   54.559656] i8042: [53746] 54 <- i8042 (interrupt, 1, 12)
[   54.561235] i8042: [53747] 13 <- i8042 (interrupt, 1, 12)
[   54.562915] i8042: [53749] 6b <- i8042 (interrupt, 1, 12)
[   54.562951] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.564411] i8042: [53751] 31 <- i8042 (interrupt, 1, 12)
[   54.566059] i8042: [53752] 71 <- i8042 (interrupt, 1, 12)
[   54.567544] i8042: [53754] e2 <- i8042 (interrupt, 1, 12)
[   54.569151] i8042: [53755] 54 <- i8042 (interrupt, 1, 12)
[   54.570810] i8042: [53757] 23 <- i8042 (interrupt, 1, 12)
[   54.572449] i8042: [53759] 6b <- i8042 (interrupt, 1, 12)
[   54.572481] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.573894] i8042: [53760] 31 <- i8042 (interrupt, 1, 12)
[   54.575478] i8042: [53762] 01 <- i8042 (interrupt, 1, 12)
[   54.577057] i8042: [53763] e2 <- i8042 (interrupt, 1, 12)
[   54.578722] i8042: [53765] 54 <- i8042 (interrupt, 1, 12)
[   54.580259] i8042: [53766] 22 <- i8042 (interrupt, 1, 12)
[   54.581791] i8042: [53768] f0 <- i8042 (interrupt, 1, 12)
[   54.581815] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.583363] i8042: [53769] 31 <- i8042 (interrupt, 1, 12)
[   54.585007] i8042: [53771] 71 <- i8042 (interrupt, 1, 12)
[   54.586535] i8042: [53773] de <- i8042 (interrupt, 1, 12)
[   54.588171] i8042: [53774] 54 <- i8042 (interrupt, 1, 12)
[   54.589754] i8042: [53776] 22 <- i8042 (interrupt, 1, 12)
[   54.591339] i8042: [53777] df <- i8042 (interrupt, 1, 12)
[   54.591365] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.591374] psmouse serio1: issuing reconnect request
[   54.591445] i8042: [53778] d4 -> i8042 (command)
[   54.591629] i8042: [53778] ff -> i8042 (parameter)
[   54.594639] i8042: [53781] fa <- i8042 (interrupt, 1, 12)
[   54.695585] i8042: [53882] aa <- i8042 (interrupt, 1, 12)
[   54.697161] i8042: [53883] 00 <- i8042 (interrupt, 1, 12)
[   54.697211] i8042: [53883] d4 -> i8042 (command)
[   54.697395] i8042: [53883] f6 -> i8042 (parameter)
[   54.700369] i8042: [53886] fa <- i8042 (interrupt, 1, 12)
[   54.700428] i8042: [53887] d4 -> i8042 (command)
[   54.700614] i8042: [53887] f5 -> i8042 (parameter)
[   54.703595] i8042: [53890] fa <- i8042 (interrupt, 1, 12)
[   54.703664] i8042: [53890] d4 -> i8042 (command)
[   54.703851] i8042: [53890] e6 -> i8042 (parameter)
[   54.706785] i8042: [53893] fa <- i8042 (interrupt, 1, 12)
[   54.706852] i8042: [53893] d4 -> i8042 (command)
[   54.707038] i8042: [53893] e6 -> i8042 (parameter)
[   54.709981] i8042: [53896] fa <- i8042 (interrupt, 1, 12)
[   54.710134] i8042: [53896] d4 -> i8042 (command)
[   54.710320] i8042: [53896] e6 -> i8042 (parameter)
[   54.713188] i8042: [53899] fa <- i8042 (interrupt, 1, 12)
[   54.713344] i8042: [53899] d4 -> i8042 (command)
[   54.713588] i8042: [53900] e9 -> i8042 (parameter)
[   54.716408] i8042: [53903] fa <- i8042 (interrupt, 1, 12)
[   54.717970] i8042: [53904] 3c <- i8042 (interrupt, 1, 12)
[   54.719532] i8042: [53906] 03 <- i8042 (interrupt, 1, 12)
[   54.721102] i8042: [53907] 00 <- i8042 (interrupt, 1, 12)
[   54.721256] i8042: [53907] d4 -> i8042 (command)
[   54.721451] i8042: [53908] e6 -> i8042 (parameter)
[   54.724279] i8042: [53910] fa <- i8042 (interrupt, 1, 12)
[   54.724313] i8042: [53910] d4 -> i8042 (command)
[   54.724554] i8042: [53911] e8 -> i8042 (parameter)
[   54.727505] i8042: [53914] fa <- i8042 (interrupt, 1, 12)
[   54.727540] i8042: [53914] d4 -> i8042 (command)
[   54.727725] i8042: [53914] 00 -> i8042 (parameter)
[   54.730727] i8042: [53917] fa <- i8042 (interrupt, 1, 12)
[   54.730784] i8042: [53917] d4 -> i8042 (command)
[   54.730968] i8042: [53917] e8 -> i8042 (parameter)
[   54.733867] i8042: [53920] fa <- i8042 (interrupt, 1, 12)
[   54.733911] i8042: [53920] d4 -> i8042 (command)
[   54.734152] i8042: [53920] 00 -> i8042 (parameter)
[   54.737129] i8042: [53923] fa <- i8042 (interrupt, 1, 12)
[   54.737185] i8042: [53923] d4 -> i8042 (command)
[   54.737370] i8042: [53923] e8 -> i8042 (parameter)
[   54.740258] i8042: [53926] fa <- i8042 (interrupt, 1, 12)
[   54.740745] i8042: [53927] d4 -> i8042 (command)
[   54.740991] i8042: [53927] 00 -> i8042 (parameter)
[   54.744017] i8042: [53930] fa <- i8042 (interrupt, 1, 12)
[   54.744072] i8042: [53930] d4 -> i8042 (command)
[   54.744257] i8042: [53930] e8 -> i8042 (parameter)
[   54.747151] i8042: [53933] fa <- i8042 (interrupt, 1, 12)
[   54.747198] i8042: [53933] d4 -> i8042 (command)
[   54.747439] i8042: [53933] 01 -> i8042 (parameter)
[   54.750433] i8042: [53937] fa <- i8042 (interrupt, 1, 12)
[   54.750501] i8042: [53937] d4 -> i8042 (command)
[   54.750686] i8042: [53937] e9 -> i8042 (parameter)
[   54.753536] i8042: [53940] fa <- i8042 (interrupt, 1, 12)
[   54.755105] i8042: [53941] 5e <- i8042 (interrupt, 1, 12)
[   54.756750] i8042: [53943] 0f <- i8042 (interrupt, 1, 12)
[   54.758273] i8042: [53944] 01 <- i8042 (interrupt, 1, 12)
[   54.758349] i8042: [53944] d4 -> i8042 (command)
[   54.758535] i8042: [53944] f8 -> i8042 (parameter)
[   54.761491] i8042: [53948] fa <- i8042 (interrupt, 1, 12)
[   54.761539] i8042: [53948] d4 -> i8042 (command)
[   54.761725] i8042: [53948] 00 -> i8042 (parameter)
[   54.764677] i8042: [53951] fa <- i8042 (interrupt, 1, 12)
[   54.764724] i8042: [53951] d4 -> i8042 (command)
[   54.764966] i8042: [53951] f8 -> i8042 (parameter)
[   54.767906] i8042: [53954] fa <- i8042 (interrupt, 1, 12)
[   54.767970] i8042: [53954] d4 -> i8042 (command)
[   54.768211] i8042: [53954] 07 -> i8042 (parameter)
[   54.771066] i8042: [53957] fa <- i8042 (interrupt, 1, 12)
[   54.771119] i8042: [53957] d4 -> i8042 (command)
[   54.771361] i8042: [53957] f8 -> i8042 (parameter)
[   54.774326] i8042: [53960] fa <- i8042 (interrupt, 1, 12)
[   54.774415] i8042: [53961] d4 -> i8042 (command)
[   54.774601] i8042: [53961] 00 -> i8042 (parameter)
[   54.777455] i8042: [53964] fa <- i8042 (interrupt, 1, 12)
[   54.777496] i8042: [53964] d4 -> i8042 (command)
[   54.777738] i8042: [53964] f8 -> i8042 (parameter)
[   54.780720] i8042: [53967] fa <- i8042 (interrupt, 1, 12)
[   54.780801] i8042: [53967] d4 -> i8042 (command)
[   54.780987] i8042: [53967] 01 -> i8042 (parameter)
[   54.783928] i8042: [53970] fa <- i8042 (interrupt, 1, 12)
[   54.783994] i8042: [53970] d4 -> i8042 (command)
[   54.784179] i8042: [53970] e6 -> i8042 (parameter)
[   54.787074] i8042: [53973] fa <- i8042 (interrupt, 1, 12)
[   54.787141] i8042: [53973] d4 -> i8042 (command)
[   54.787328] i8042: [53973] f3 -> i8042 (parameter)
[   54.790257] i8042: [53976] fa <- i8042 (interrupt, 1, 12)
[   54.790327] i8042: [53976] d4 -> i8042 (command)
[   54.790513] i8042: [53977] 64 -> i8042 (parameter)
[   54.793477] i8042: [53980] fa <- i8042 (interrupt, 1, 12)
[   54.793542] i8042: [53980] d4 -> i8042 (command)
[   54.793728] i8042: [53980] e8 -> i8042 (parameter)
[   54.796686] i8042: [53983] fa <- i8042 (interrupt, 1, 12)
[   54.796759] i8042: [53983] d4 -> i8042 (command)
[   54.796946] i8042: [53983] 03 -> i8042 (parameter)
[   54.799850] i8042: [53986] fa <- i8042 (interrupt, 1, 12)
[   54.799930] i8042: [53986] d4 -> i8042 (command)
[   54.800116] i8042: [53986] e6 -> i8042 (parameter)
[   54.803072] i8042: [53989] fa <- i8042 (interrupt, 1, 12)
[   54.803153] i8042: [53989] d4 -> i8042 (command)
[   54.803339] i8042: [53989] f4 -> i8042 (parameter)
[   54.806264] i8042: [53992] fa <- i8042 (interrupt, 1, 12)
[   54.827069] i8042: [54013] 08 <- i8042 (interrupt, 1, 12)
[   54.828532] i8042: [54015] 00 <- i8042 (interrupt, 1, 12)
[   54.830213] i8042: [54016] 00 <- i8042 (interrupt, 1, 12)
[   54.836848] i8042: [54023] 64 <- i8042 (interrupt, 1, 12)
[   54.838478] i8042: [54025] 01 <- i8042 (interrupt, 1, 12)
[   54.839998] i8042: [54026] 00 <- i8042 (interrupt, 1, 12)
[   54.840037] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.841577] i8042: [54028] 10 <- i8042 (interrupt, 1, 12)
[   54.843197] i8042: [54029] 00 <- i8042 (interrupt, 1, 12)
[   54.844764] i8042: [54031] 00 <- i8042 (interrupt, 1, 12)
[   54.846363] i8042: [54032] 64 <- i8042 (interrupt, 1, 12)
[   54.847939] i8042: [54034] 25 <- i8042 (interrupt, 1, 12)
[   54.849515] i8042: [54036] 48 <- i8042 (interrupt, 1, 12)
[   54.849553] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.851104] i8042: [54037] 31 <- i8042 (interrupt, 1, 12)
[   54.852605] i8042: [54039] 92 <- i8042 (interrupt, 1, 12)
[   54.854280] i8042: [54040] 51 <- i8042 (interrupt, 1, 12)
[   54.855861] i8042: [54042] 64 <- i8042 (interrupt, 1, 12)
[   54.857445] i8042: [54044] 25 <- i8042 (interrupt, 1, 12)
[   54.859016] i8042: [54045] 48 <- i8042 (interrupt, 1, 12)
[   54.859056] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.860621] i8042: [54047] 31 <- i8042 (interrupt, 1, 12)
[   54.862192] i8042: [54048] e2 <- i8042 (interrupt, 1, 12)
[   54.863775] i8042: [54050] 51 <- i8042 (interrupt, 1, 12)
[   54.865351] i8042: [54051] 64 <- i8042 (interrupt, 1, 12)
[   54.866931] i8042: [54053] 35 <- i8042 (interrupt, 1, 12)
[   54.868515] i8042: [54055] 48 <- i8042 (interrupt, 1, 12)
[   54.868553] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.870097] i8042: [54056] 31 <- i8042 (interrupt, 1, 12)
[   54.871648] i8042: [54058] 22 <- i8042 (interrupt, 1, 12)
[   54.873261] i8042: [54059] 51 <- i8042 (interrupt, 1, 12)
[   54.874838] i8042: [54061] 64 <- i8042 (interrupt, 1, 12)
[   54.876437] i8042: [54063] 35 <- i8042 (interrupt, 1, 12)
[   54.878017] i8042: [54064] 48 <- i8042 (interrupt, 1, 12)
[   54.878056] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   54.878074] psmouse serio1: issuing reconnect request
[   54.878159] i8042: [54064] d4 -> i8042 (command)
[   54.878348] i8042: [54064] ff -> i8042 (parameter)
[   54.881233] i8042: [54067] fa <- i8042 (interrupt, 1, 12)
[   54.982187] i8042: [54168] aa <- i8042 (interrupt, 1, 12)
[   54.983778] i8042: [54170] 00 <- i8042 (interrupt, 1, 12)
[   54.983877] i8042: [54170] d4 -> i8042 (command)
[   54.984066] i8042: [54170] f6 -> i8042 (parameter)
[   54.986939] i8042: [54173] fa <- i8042 (interrupt, 1, 12)
[   54.986980] i8042: [54173] d4 -> i8042 (command)
[   54.987165] i8042: [54173] f5 -> i8042 (parameter)
[   54.990161] i8042: [54176] fa <- i8042 (interrupt, 1, 12)
[   54.990268] i8042: [54176] d4 -> i8042 (command)
[   54.990457] i8042: [54177] e6 -> i8042 (parameter)
[   54.993402] i8042: [54180] fa <- i8042 (interrupt, 1, 12)
[   54.993498] i8042: [54180] d4 -> i8042 (command)
[   54.993745] i8042: [54180] e6 -> i8042 (parameter)
[   54.996521] i8042: [54183] fa <- i8042 (interrupt, 1, 12)
[   54.996623] i8042: [54183] d4 -> i8042 (command)
[   54.996813] i8042: [54183] e6 -> i8042 (parameter)
[   54.999769] i8042: [54186] fa <- i8042 (interrupt, 1, 12)
[   54.999934] i8042: [54186] d4 -> i8042 (command)
[   55.000125] i8042: [54186] e9 -> i8042 (parameter)
[   55.002996] i8042: [54189] fa <- i8042 (interrupt, 1, 12)
[   55.004552] i8042: [54191] 3c <- i8042 (interrupt, 1, 12)
[   55.006130] i8042: [54192] 03 <- i8042 (interrupt, 1, 12)
[   55.007687] i8042: [54194] 00 <- i8042 (interrupt, 1, 12)
[   55.007790] i8042: [54194] d4 -> i8042 (command)
[   55.007979] i8042: [54194] e6 -> i8042 (parameter)
[   55.010930] i8042: [54197] fa <- i8042 (interrupt, 1, 12)
[   55.011040] i8042: [54197] d4 -> i8042 (command)
[   55.011286] i8042: [54197] e8 -> i8042 (parameter)
[   55.014114] i8042: [54200] fa <- i8042 (interrupt, 1, 12)
[   55.014214] i8042: [54200] d4 -> i8042 (command)
[   55.014460] i8042: [54201] 00 -> i8042 (parameter)
[   55.017319] i8042: [54203] fa <- i8042 (interrupt, 1, 12)
[   55.017450] i8042: [54204] d4 -> i8042 (command)
[   55.017635] i8042: [54204] e8 -> i8042 (parameter)
[   55.020536] i8042: [54207] fa <- i8042 (interrupt, 1, 12)
[   55.020608] i8042: [54207] d4 -> i8042 (command)
[   55.020797] i8042: [54207] 00 -> i8042 (parameter)
[   55.023642] i8042: [54210] fa <- i8042 (interrupt, 1, 12)
[   55.023715] i8042: [54210] d4 -> i8042 (command)
[   55.023900] i8042: [54210] e8 -> i8042 (parameter)
[   55.026927] i8042: [54213] fa <- i8042 (interrupt, 1, 12)
[   55.026992] i8042: [54213] d4 -> i8042 (command)
[   55.027177] i8042: [54213] 00 -> i8042 (parameter)
[   55.030104] i8042: [54216] fa <- i8042 (interrupt, 1, 12)
[   55.030225] i8042: [54216] d4 -> i8042 (command)
[   55.030470] i8042: [54217] e8 -> i8042 (parameter)
[   55.033288] i8042: [54219] fa <- i8042 (interrupt, 1, 12)
[   55.033424] i8042: [54220] d4 -> i8042 (command)
[   55.033616] i8042: [54220] 01 -> i8042 (parameter)
[   55.036481] i8042: [54223] fa <- i8042 (interrupt, 1, 12)
[   55.036583] i8042: [54223] d4 -> i8042 (command)
[   55.036773] i8042: [54223] e9 -> i8042 (parameter)
[   55.039682] i8042: [54226] fa <- i8042 (interrupt, 1, 12)
[   55.041244] i8042: [54227] 5e <- i8042 (interrupt, 1, 12)
[   55.042820] i8042: [54229] 0f <- i8042 (interrupt, 1, 12)
[   55.044380] i8042: [54230] 01 <- i8042 (interrupt, 1, 12)
[   55.044473] i8042: [54231] d4 -> i8042 (command)
[   55.044658] i8042: [54231] f8 -> i8042 (parameter)
[   55.047596] i8042: [54234] fa <- i8042 (interrupt, 1, 12)
[   55.047709] i8042: [54234] d4 -> i8042 (command)
[   55.047898] i8042: [54234] 00 -> i8042 (parameter)
[   55.050819] i8042: [54237] fa <- i8042 (interrupt, 1, 12)
[   55.050920] i8042: [54237] d4 -> i8042 (command)
[   55.051166] i8042: [54237] f8 -> i8042 (parameter)
[   55.054002] i8042: [54240] fa <- i8042 (interrupt, 1, 12)
[   55.054086] i8042: [54240] d4 -> i8042 (command)
[   55.054276] i8042: [54240] 07 -> i8042 (parameter)
[   55.057211] i8042: [54243] fa <- i8042 (interrupt, 1, 12)
[   55.057334] i8042: [54243] d4 -> i8042 (command)
[   55.057524] i8042: [54244] f8 -> i8042 (parameter)
[   55.060432] i8042: [54247] fa <- i8042 (interrupt, 1, 12)
[   55.060511] i8042: [54247] d4 -> i8042 (command)
[   55.060700] i8042: [54247] 00 -> i8042 (parameter)
[   55.063524] i8042: [54250] fa <- i8042 (interrupt, 1, 12)
[   55.063603] i8042: [54250] d4 -> i8042 (command)
[   55.063793] i8042: [54250] f8 -> i8042 (parameter)
[   55.066787] i8042: [54253] fa <- i8042 (interrupt, 1, 12)
[   55.066888] i8042: [54253] d4 -> i8042 (command)
[   55.067078] i8042: [54253] 01 -> i8042 (parameter)
[   55.069982] i8042: [54256] fa <- i8042 (interrupt, 1, 12)
[   55.070084] i8042: [54256] d4 -> i8042 (command)
[   55.070273] i8042: [54256] e6 -> i8042 (parameter)
[   55.073201] i8042: [54259] fa <- i8042 (interrupt, 1, 12)
[   55.073279] i8042: [54259] d4 -> i8042 (command)
[   55.073476] i8042: [54259] f3 -> i8042 (parameter)
[   55.076409] i8042: [54262] fa <- i8042 (interrupt, 1, 12)
[   55.076524] i8042: [54263] d4 -> i8042 (command)
[   55.076768] i8042: [54263] 64 -> i8042 (parameter)
[   55.079502] i8042: [54266] fa <- i8042 (interrupt, 1, 12)
[   55.079541] i8042: [54266] d4 -> i8042 (command)
[   55.079781] i8042: [54266] e8 -> i8042 (parameter)
[   55.082726] i8042: [54269] fa <- i8042 (interrupt, 1, 12)
[   55.082799] i8042: [54269] d4 -> i8042 (command)
[   55.082984] i8042: [54269] 03 -> i8042 (parameter)
[   55.085994] i8042: [54272] fa <- i8042 (interrupt, 1, 12)
[   55.086102] i8042: [54272] d4 -> i8042 (command)
[   55.086302] i8042: [54272] e6 -> i8042 (parameter)
[   55.089173] i8042: [54275] fa <- i8042 (interrupt, 1, 12)
[   55.089301] i8042: [54275] d4 -> i8042 (command)
[   55.089491] i8042: [54276] f4 -> i8042 (parameter)
[   55.092299] i8042: [54278] fa <- i8042 (interrupt, 1, 12)
[   55.113113] i8042: [54299] 08 <- i8042 (interrupt, 1, 12)
[   55.114637] i8042: [54301] 00 <- i8042 (interrupt, 1, 12)
[   55.116252] i8042: [54302] 00 <- i8042 (interrupt, 1, 12)
[   55.122846] i8042: [54309] 64 <- i8042 (interrupt, 1, 12)
[   55.124478] i8042: [54311] 01 <- i8042 (interrupt, 1, 12)
[   55.126049] i8042: [54312] 00 <- i8042 (interrupt, 1, 12)
[   55.126089] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.127537] i8042: [54314] 10 <- i8042 (interrupt, 1, 12)
[   55.129219] i8042: [54315] 00 <- i8042 (interrupt, 1, 12)
[   55.130801] i8042: [54317] 00 <- i8042 (interrupt, 1, 12)
[   55.132383] i8042: [54318] 64 <- i8042 (interrupt, 1, 12)
[   55.133969] i8042: [54320] 23 <- i8042 (interrupt, 1, 12)
[   55.135519] i8042: [54322] 03 <- i8042 (interrupt, 1, 12)
[   55.135556] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.137079] i8042: [54323] 31 <- i8042 (interrupt, 1, 12)
[   55.138701] i8042: [54325] 22 <- i8042 (interrupt, 1, 12)
[   55.140313] i8042: [54326] 18 <- i8042 (interrupt, 1, 12)
[   55.141881] i8042: [54328] 54 <- i8042 (interrupt, 1, 12)
[   55.143489] i8042: [54330] 23 <- i8042 (interrupt, 1, 12)
[   55.144948] i8042: [54331] 03 <- i8042 (interrupt, 1, 12)
[   55.144981] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.146557] i8042: [54333] 31 <- i8042 (interrupt, 1, 12)
[   55.148221] i8042: [54334] 72 <- i8042 (interrupt, 1, 12)
[   55.149800] i8042: [54336] 18 <- i8042 (interrupt, 1, 12)
[   55.151284] i8042: [54337] 54 <- i8042 (interrupt, 1, 12)
[   55.152974] i8042: [54339] 23 <- i8042 (interrupt, 1, 12)
[   55.154524] i8042: [54341] 4a <- i8042 (interrupt, 1, 12)
[   55.154562] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.156031] i8042: [54342] 31 <- i8042 (interrupt, 1, 12)
[   55.157709] i8042: [54344] c2 <- i8042 (interrupt, 1, 12)
[   55.159298] i8042: [54345] 2a <- i8042 (interrupt, 1, 12)
[   55.160883] i8042: [54347] 64 <- i8042 (interrupt, 1, 12)
[   55.162493] i8042: [54349] 23 <- i8042 (interrupt, 1, 12)
[   55.163980] i8042: [54350] 9d <- i8042 (interrupt, 1, 12)
[   55.164001] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.164008] psmouse serio1: issuing reconnect request
[   55.164035] i8042: [54350] d4 -> i8042 (command)
[   55.164220] i8042: [54350] ff -> i8042 (parameter)
[   55.167275] i8042: [54353] fa <- i8042 (interrupt, 1, 12)
[   55.268267] i8042: [54454] aa <- i8042 (interrupt, 1, 12)
[   55.269840] i8042: [54456] 00 <- i8042 (interrupt, 1, 12)
[   55.269921] i8042: [54456] d4 -> i8042 (command)
[   55.270111] i8042: [54456] f6 -> i8042 (parameter)
[   55.273047] i8042: [54459] fa <- i8042 (interrupt, 1, 12)
[   55.273129] i8042: [54459] d4 -> i8042 (command)
[   55.273318] i8042: [54459] f5 -> i8042 (parameter)
[   55.276243] i8042: [54462] fa <- i8042 (interrupt, 1, 12)
[   55.276325] i8042: [54462] d4 -> i8042 (command)
[   55.276572] i8042: [54463] e6 -> i8042 (parameter)
[   55.279477] i8042: [54466] fa <- i8042 (interrupt, 1, 12)
[   55.279537] i8042: [54466] d4 -> i8042 (command)
[   55.279723] i8042: [54466] e6 -> i8042 (parameter)
[   55.282537] i8042: [54469] fa <- i8042 (interrupt, 1, 12)
[   55.282615] i8042: [54469] d4 -> i8042 (command)
[   55.282826] i8042: [54469] e6 -> i8042 (parameter)
[   55.285809] i8042: [54472] fa <- i8042 (interrupt, 1, 12)
[   55.285866] i8042: [54472] d4 -> i8042 (command)
[   55.286051] i8042: [54472] e9 -> i8042 (parameter)
[   55.289056] i8042: [54475] fa <- i8042 (interrupt, 1, 12)
[   55.290540] i8042: [54477] 3c <- i8042 (interrupt, 1, 12)
[   55.292165] i8042: [54478] 03 <- i8042 (interrupt, 1, 12)
[   55.293696] i8042: [54480] 00 <- i8042 (interrupt, 1, 12)
[   55.293802] i8042: [54480] d4 -> i8042 (command)
[   55.294049] i8042: [54480] e6 -> i8042 (parameter)
[   55.296966] i8042: [54483] fa <- i8042 (interrupt, 1, 12)
[   55.297068] i8042: [54483] d4 -> i8042 (command)
[   55.297257] i8042: [54483] e8 -> i8042 (parameter)
[   55.300160] i8042: [54486] fa <- i8042 (interrupt, 1, 12)
[   55.300259] i8042: [54486] d4 -> i8042 (command)
[   55.300449] i8042: [54487] 00 -> i8042 (parameter)
[   55.303362] i8042: [54489] fa <- i8042 (interrupt, 1, 12)
[   55.303465] i8042: [54490] d4 -> i8042 (command)
[   55.303654] i8042: [54490] e8 -> i8042 (parameter)
[   55.306551] i8042: [54493] fa <- i8042 (interrupt, 1, 12)
[   55.306650] i8042: [54493] d4 -> i8042 (command)
[   55.306840] i8042: [54493] 00 -> i8042 (parameter)
[   55.309745] i8042: [54496] fa <- i8042 (interrupt, 1, 12)
[   55.309846] i8042: [54496] d4 -> i8042 (command)
[   55.310092] i8042: [54496] e8 -> i8042 (parameter)
[   55.312944] i8042: [54499] fa <- i8042 (interrupt, 1, 12)
[   55.313044] i8042: [54499] d4 -> i8042 (command)
[   55.313234] i8042: [54499] 00 -> i8042 (parameter)
[   55.316138] i8042: [54502] fa <- i8042 (interrupt, 1, 12)
[   55.316240] i8042: [54502] d4 -> i8042 (command)
[   55.316430] i8042: [54503] e8 -> i8042 (parameter)
[   55.319333] i8042: [54505] fa <- i8042 (interrupt, 1, 12)
[   55.319432] i8042: [54506] d4 -> i8042 (command)
[   55.319622] i8042: [54506] 01 -> i8042 (parameter)
[   55.322533] i8042: [54509] fa <- i8042 (interrupt, 1, 12)
[   55.322635] i8042: [54509] d4 -> i8042 (command)
[   55.322825] i8042: [54509] e9 -> i8042 (parameter)
[   55.325721] i8042: [54512] fa <- i8042 (interrupt, 1, 12)
[   55.327292] i8042: [54513] 5e <- i8042 (interrupt, 1, 12)
[   55.328839] i8042: [54515] 0f <- i8042 (interrupt, 1, 12)
[   55.330455] i8042: [54517] 01 <- i8042 (interrupt, 1, 12)
[   55.330558] i8042: [54517] d4 -> i8042 (command)
[   55.330747] i8042: [54517] f8 -> i8042 (parameter)
[   55.333671] i8042: [54520] fa <- i8042 (interrupt, 1, 12)
[   55.333774] i8042: [54520] d4 -> i8042 (command)
[   55.333964] i8042: [54520] 00 -> i8042 (parameter)
[   55.336855] i8042: [54523] fa <- i8042 (interrupt, 1, 12)
[   55.336959] i8042: [54523] d4 -> i8042 (command)
[   55.337148] i8042: [54523] f8 -> i8042 (parameter)
[   55.340050] i8042: [54526] fa <- i8042 (interrupt, 1, 12)
[   55.340156] i8042: [54526] d4 -> i8042 (command)
[   55.340345] i8042: [54526] 07 -> i8042 (parameter)
[   55.343245] i8042: [54529] fa <- i8042 (interrupt, 1, 12)
[   55.343351] i8042: [54529] d4 -> i8042 (command)
[   55.343540] i8042: [54530] f8 -> i8042 (parameter)
[   55.346436] i8042: [54533] fa <- i8042 (interrupt, 1, 12)
[   55.346538] i8042: [54533] d4 -> i8042 (command)
[   55.346728] i8042: [54533] 00 -> i8042 (parameter)
[   55.349629] i8042: [54536] fa <- i8042 (interrupt, 1, 12)
[   55.349733] i8042: [54536] d4 -> i8042 (command)
[   55.349923] i8042: [54536] f8 -> i8042 (parameter)
[   55.352825] i8042: [54539] fa <- i8042 (interrupt, 1, 12)
[   55.352929] i8042: [54539] d4 -> i8042 (command)
[   55.353118] i8042: [54539] 01 -> i8042 (parameter)
[   55.356018] i8042: [54542] fa <- i8042 (interrupt, 1, 12)
[   55.356120] i8042: [54542] d4 -> i8042 (command)
[   55.356310] i8042: [54542] e6 -> i8042 (parameter)
[   55.359214] i8042: [54545] fa <- i8042 (interrupt, 1, 12)
[   55.359319] i8042: [54545] d4 -> i8042 (command)
[   55.359508] i8042: [54546] f3 -> i8042 (parameter)
[   55.362404] i8042: [54549] fa <- i8042 (interrupt, 1, 12)
[   55.362503] i8042: [54549] d4 -> i8042 (command)
[   55.362692] i8042: [54549] 64 -> i8042 (parameter)
[   55.365597] i8042: [54552] fa <- i8042 (interrupt, 1, 12)
[   55.365700] i8042: [54552] d4 -> i8042 (command)
[   55.365889] i8042: [54552] e8 -> i8042 (parameter)
[   55.368797] i8042: [54555] fa <- i8042 (interrupt, 1, 12)
[   55.368898] i8042: [54555] d4 -> i8042 (command)
[   55.369144] i8042: [54555] 03 -> i8042 (parameter)
[   55.371990] i8042: [54558] fa <- i8042 (interrupt, 1, 12)
[   55.372092] i8042: [54558] d4 -> i8042 (command)
[   55.372282] i8042: [54558] e6 -> i8042 (parameter)
[   55.375188] i8042: [54561] fa <- i8042 (interrupt, 1, 12)
[   55.375292] i8042: [54561] d4 -> i8042 (command)
[   55.375482] i8042: [54562] f4 -> i8042 (parameter)
[   55.378388] i8042: [54564] fa <- i8042 (interrupt, 1, 12)
[   55.389025] i8042: [54575] 08 <- i8042 (interrupt, 1, 12)
[   55.390523] i8042: [54577] 00 <- i8042 (interrupt, 1, 12)
[   55.392177] i8042: [54578] 00 <- i8042 (interrupt, 1, 12)
[   55.398323] i8042: [54584] 54 <- i8042 (interrupt, 1, 12)
[   55.399895] i8042: [54586] 01 <- i8042 (interrupt, 1, 12)
[   55.401511] i8042: [54588] 00 <- i8042 (interrupt, 1, 12)
[   55.401549] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.402966] i8042: [54589] 10 <- i8042 (interrupt, 1, 12)
[   55.404552] i8042: [54591] 00 <- i8042 (interrupt, 1, 12)
[   55.406228] i8042: [54592] 00 <- i8042 (interrupt, 1, 12)
[   55.407814] i8042: [54594] 54 <- i8042 (interrupt, 1, 12)
[   55.409300] i8042: [54595] 12 <- i8042 (interrupt, 1, 12)
[   55.410977] i8042: [54597] 64 <- i8042 (interrupt, 1, 12)
[   55.411010] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.412592] i8042: [54599] 31 <- i8042 (interrupt, 1, 12)
[   55.414153] i8042: [54600] 51 <- i8042 (interrupt, 1, 12)
[   55.415739] i8042: [54602] 96 <- i8042 (interrupt, 1, 12)
[   55.417352] i8042: [54603] 54 <- i8042 (interrupt, 1, 12)
[   55.418918] i8042: [54605] 12 <- i8042 (interrupt, 1, 12)
[   55.420504] i8042: [54607] 64 <- i8042 (interrupt, 1, 12)
[   55.420541] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.421961] i8042: [54608] 31 <- i8042 (interrupt, 1, 12)
[   55.423651] i8042: [54610] f1 <- i8042 (interrupt, 1, 12)
[   55.425228] i8042: [54611] 96 <- i8042 (interrupt, 1, 12)
[   55.426817] i8042: [54613] 54 <- i8042 (interrupt, 1, 12)
[   55.428394] i8042: [54614] 22 <- i8042 (interrupt, 1, 12)
[   55.429994] i8042: [54616] 4b <- i8042 (interrupt, 1, 12)
[   55.430033] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.431522] i8042: [54618] 31 <- i8042 (interrupt, 1, 12)
[   55.433087] i8042: [54619] 61 <- i8042 (interrupt, 1, 12)
[   55.434710] i8042: [54621] 92 <- i8042 (interrupt, 1, 12)
[   55.436314] i8042: [54622] 54 <- i8042 (interrupt, 1, 12)
[   55.437892] i8042: [54624] 22 <- i8042 (interrupt, 1, 12)
[   55.439512] i8042: [54626] 4a <- i8042 (interrupt, 1, 12)
[   55.439550] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.439567] psmouse serio1: issuing reconnect request
[   55.439647] i8042: [54626] d4 -> i8042 (command)
[   55.439894] i8042: [54626] ff -> i8042 (parameter)
[   55.442701] i8042: [54629] fa <- i8042 (interrupt, 1, 12)
[   55.543726] i8042: [54730] aa <- i8042 (interrupt, 1, 12)
[   55.545296] i8042: [54731] 00 <- i8042 (interrupt, 1, 12)
[   55.545377] i8042: [54731] d4 -> i8042 (command)
[   55.545567] i8042: [54731] f6 -> i8042 (parameter)
[   55.548513] i8042: [54735] fa <- i8042 (interrupt, 1, 12)
[   55.548615] i8042: [54735] d4 -> i8042 (command)
[   55.548804] i8042: [54735] f5 -> i8042 (parameter)
[   55.551709] i8042: [54738] fa <- i8042 (interrupt, 1, 12)
[   55.551811] i8042: [54738] d4 -> i8042 (command)
[   55.552058] i8042: [54738] e6 -> i8042 (parameter)
[   55.554896] i8042: [54741] fa <- i8042 (interrupt, 1, 12)
[   55.554998] i8042: [54741] d4 -> i8042 (command)
[   55.555187] i8042: [54741] e6 -> i8042 (parameter)
[   55.558098] i8042: [54744] fa <- i8042 (interrupt, 1, 12)
[   55.558199] i8042: [54744] d4 -> i8042 (command)
[   55.558389] i8042: [54745] e6 -> i8042 (parameter)
[   55.561287] i8042: [54747] fa <- i8042 (interrupt, 1, 12)
[   55.561424] i8042: [54748] d4 -> i8042 (command)
[   55.561615] i8042: [54748] e9 -> i8042 (parameter)
[   55.564480] i8042: [54751] fa <- i8042 (interrupt, 1, 12)
[   55.566042] i8042: [54752] 3c <- i8042 (interrupt, 1, 12)
[   55.567532] i8042: [54754] 03 <- i8042 (interrupt, 1, 12)
[   55.569205] i8042: [54755] 00 <- i8042 (interrupt, 1, 12)
[   55.569283] i8042: [54755] d4 -> i8042 (command)
[   55.569471] i8042: [54756] e6 -> i8042 (parameter)
[   55.572311] i8042: [54758] fa <- i8042 (interrupt, 1, 12)
[   55.573066] i8042: [54759] d4 -> i8042 (command)
[   55.573264] i8042: [54759] e8 -> i8042 (parameter)
[   55.576017] i8042: [54762] fa <- i8042 (interrupt, 1, 12)
[   55.576051] i8042: [54762] d4 -> i8042 (command)
[   55.576296] i8042: [54762] 00 -> i8042 (parameter)
[   55.579315] i8042: [54765] fa <- i8042 (interrupt, 1, 12)
[   55.579434] i8042: [54766] d4 -> i8042 (command)
[   55.579680] i8042: [54766] e8 -> i8042 (parameter)
[   55.582402] i8042: [54769] fa <- i8042 (interrupt, 1, 12)
[   55.582624] i8042: [54769] d4 -> i8042 (command)
[   55.582815] i8042: [54769] 00 -> i8042 (parameter)
[   55.585606] i8042: [54772] fa <- i8042 (interrupt, 1, 12)
[   55.585676] i8042: [54772] d4 -> i8042 (command)
[   55.585866] i8042: [54772] e8 -> i8042 (parameter)
[   55.588890] i8042: [54775] fa <- i8042 (interrupt, 1, 12)
[   55.588995] i8042: [54775] d4 -> i8042 (command)
[   55.589184] i8042: [54775] 00 -> i8042 (parameter)
[   55.592033] i8042: [54778] fa <- i8042 (interrupt, 1, 12)
[   55.592122] i8042: [54778] d4 -> i8042 (command)
[   55.592311] i8042: [54778] e8 -> i8042 (parameter)
[   55.595173] i8042: [54781] fa <- i8042 (interrupt, 1, 12)
[   55.595224] i8042: [54781] d4 -> i8042 (command)
[   55.595412] i8042: [54781] 01 -> i8042 (parameter)
[   55.598464] i8042: [54785] fa <- i8042 (interrupt, 1, 12)
[   55.598538] i8042: [54785] d4 -> i8042 (command)
[   55.598727] i8042: [54785] e9 -> i8042 (parameter)
[   55.601569] i8042: [54788] fa <- i8042 (interrupt, 1, 12)
[   55.603211] i8042: [54789] 5e <- i8042 (interrupt, 1, 12)
[   55.604786] i8042: [54791] 0f <- i8042 (interrupt, 1, 12)
[   55.606383] i8042: [54793] 01 <- i8042 (interrupt, 1, 12)
[   55.606487] i8042: [54793] d4 -> i8042 (command)
[   55.606677] i8042: [54793] f8 -> i8042 (parameter)
[   55.609578] i8042: [54796] fa <- i8042 (interrupt, 1, 12)
[   55.609682] i8042: [54796] d4 -> i8042 (command)
[   55.609871] i8042: [54796] 00 -> i8042 (parameter)
[   55.612778] i8042: [54799] fa <- i8042 (interrupt, 1, 12)
[   55.612883] i8042: [54799] d4 -> i8042 (command)
[   55.613129] i8042: [54799] f8 -> i8042 (parameter)
[   55.615996] i8042: [54802] fa <- i8042 (interrupt, 1, 12)
[   55.616100] i8042: [54802] d4 -> i8042 (command)
[   55.616290] i8042: [54802] 07 -> i8042 (parameter)
[   55.619193] i8042: [54805] fa <- i8042 (interrupt, 1, 12)
[   55.619303] i8042: [54805] d4 -> i8042 (command)
[   55.619494] i8042: [54806] f8 -> i8042 (parameter)
[   55.622406] i8042: [54809] fa <- i8042 (interrupt, 1, 12)
[   55.622509] i8042: [54809] d4 -> i8042 (command)
[   55.622698] i8042: [54809] 00 -> i8042 (parameter)
[   55.625591] i8042: [54812] fa <- i8042 (interrupt, 1, 12)
[   55.625695] i8042: [54812] d4 -> i8042 (command)
[   55.625884] i8042: [54812] f8 -> i8042 (parameter)
[   55.628787] i8042: [54815] fa <- i8042 (interrupt, 1, 12)
[   55.628892] i8042: [54815] d4 -> i8042 (command)
[   55.629081] i8042: [54815] 01 -> i8042 (parameter)
[   55.631994] i8042: [54818] fa <- i8042 (interrupt, 1, 12)
[   55.632098] i8042: [54818] d4 -> i8042 (command)
[   55.632287] i8042: [54818] e6 -> i8042 (parameter)
[   55.635157] i8042: [54821] fa <- i8042 (interrupt, 1, 12)
[   55.635267] i8042: [54821] d4 -> i8042 (command)
[   55.635513] i8042: [54822] f3 -> i8042 (parameter)
[   55.638353] i8042: [54824] fa <- i8042 (interrupt, 1, 12)
[   55.638454] i8042: [54825] d4 -> i8042 (command)
[   55.638643] i8042: [54825] 64 -> i8042 (parameter)
[   55.641544] i8042: [54828] fa <- i8042 (interrupt, 1, 12)
[   55.641649] i8042: [54828] d4 -> i8042 (command)
[   55.641895] i8042: [54828] e8 -> i8042 (parameter)
[   55.644722] i8042: [54831] fa <- i8042 (interrupt, 1, 12)
[   55.644823] i8042: [54831] d4 -> i8042 (command)
[   55.645013] i8042: [54831] 03 -> i8042 (parameter)
[   55.647927] i8042: [54834] fa <- i8042 (interrupt, 1, 12)
[   55.648031] i8042: [54834] d4 -> i8042 (command)
[   55.648220] i8042: [54834] e6 -> i8042 (parameter)
[   55.651139] i8042: [54837] fa <- i8042 (interrupt, 1, 12)
[   55.651246] i8042: [54837] d4 -> i8042 (command)
[   55.651436] i8042: [54838] f4 -> i8042 (parameter)
[   55.654323] i8042: [54840] fa <- i8042 (interrupt, 1, 12)
[   55.675063] i8042: [54861] 08 <- i8042 (interrupt, 1, 12)
[   55.676545] i8042: [54863] 00 <- i8042 (interrupt, 1, 12)
[   55.678222] i8042: [54864] 00 <- i8042 (interrupt, 1, 12)
[   55.684858] i8042: [54871] 54 <- i8042 (interrupt, 1, 12)
[   55.686463] i8042: [54873] 01 <- i8042 (interrupt, 1, 12)
[   55.687962] i8042: [54874] 00 <- i8042 (interrupt, 1, 12)
[   55.687996] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.689523] i8042: [54876] 10 <- i8042 (interrupt, 1, 12)
[   55.691198] i8042: [54877] 00 <- i8042 (interrupt, 1, 12)
[   55.692781] i8042: [54879] 00 <- i8042 (interrupt, 1, 12)
[   55.694256] i8042: [54880] 54 <- i8042 (interrupt, 1, 12)
[   55.695936] i8042: [54882] 24 <- i8042 (interrupt, 1, 12)
[   55.697533] i8042: [54884] fe <- i8042 (interrupt, 1, 12)
[   55.697573] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.699109] i8042: [54885] 31 <- i8042 (interrupt, 1, 12)
[   55.700627] i8042: [54887] 21 <- i8042 (interrupt, 1, 12)
[   55.702267] i8042: [54888] e3 <- i8042 (interrupt, 1, 12)
[   55.703856] i8042: [54890] 54 <- i8042 (interrupt, 1, 12)
[   55.705443] i8042: [54892] 24 <- i8042 (interrupt, 1, 12)
[   55.707018] i8042: [54893] fe <- i8042 (interrupt, 1, 12)
[   55.707059] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.708527] i8042: [54895] 31 <- i8042 (interrupt, 1, 12)
[   55.710163] i8042: [54896] 61 <- i8042 (interrupt, 1, 12)
[   55.711764] i8042: [54898] e3 <- i8042 (interrupt, 1, 12)
[   55.713347] i8042: [54899] 54 <- i8042 (interrupt, 1, 12)
[   55.714944] i8042: [54901] 24 <- i8042 (interrupt, 1, 12)
[   55.716519] i8042: [54903] 7a <- i8042 (interrupt, 1, 12)
[   55.716556] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.718089] i8042: [54904] 31 <- i8042 (interrupt, 1, 12)
[   55.719650] i8042: [54906] 71 <- i8042 (interrupt, 1, 12)
[   55.721262] i8042: [54907] ca <- i8042 (interrupt, 1, 12)
[   55.722852] i8042: [54909] 54 <- i8042 (interrupt, 1, 12)
[   55.724434] i8042: [54911] 24 <- i8042 (interrupt, 1, 12)
[   55.726010] i8042: [54912] 65 <- i8042 (interrupt, 1, 12)
[   55.726052] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.726069] psmouse serio1: issuing reconnect request
[   55.726152] i8042: [54912] d4 -> i8042 (command)
[   55.726341] i8042: [54912] ff -> i8042 (parameter)
[   55.729240] i8042: [54915] fa <- i8042 (interrupt, 1, 12)
[   55.830123] i8042: [55016] aa <- i8042 (interrupt, 1, 12)
[   55.831812] i8042: [55018] 00 <- i8042 (interrupt, 1, 12)
[   55.831915] i8042: [55018] d4 -> i8042 (command)
[   55.832104] i8042: [55018] f6 -> i8042 (parameter)
[   55.835036] i8042: [55021] fa <- i8042 (interrupt, 1, 12)
[   55.835139] i8042: [55021] d4 -> i8042 (command)
[   55.835329] i8042: [55021] f5 -> i8042 (parameter)
[   55.838231] i8042: [55024] fa <- i8042 (interrupt, 1, 12)
[   55.838334] i8042: [55024] d4 -> i8042 (command)
[   55.838524] i8042: [55025] e6 -> i8042 (parameter)
[   55.841426] i8042: [55028] fa <- i8042 (interrupt, 1, 12)
[   55.841522] i8042: [55028] d4 -> i8042 (command)
[   55.841712] i8042: [55028] e6 -> i8042 (parameter)
[   55.844616] i8042: [55031] fa <- i8042 (interrupt, 1, 12)
[   55.844725] i8042: [55031] d4 -> i8042 (command)
[   55.844972] i8042: [55031] e6 -> i8042 (parameter)
[   55.847788] i8042: [55034] fa <- i8042 (interrupt, 1, 12)
[   55.847892] i8042: [55034] d4 -> i8042 (command)
[   55.848081] i8042: [55034] e9 -> i8042 (parameter)
[   55.850987] i8042: [55037] fa <- i8042 (interrupt, 1, 12)
[   55.852701] i8042: [55039] 3c <- i8042 (interrupt, 1, 12)
[   55.854230] i8042: [55040] 03 <- i8042 (interrupt, 1, 12)
[   55.855669] i8042: [55042] 00 <- i8042 (interrupt, 1, 12)
[   55.856094] i8042: [55042] d4 -> i8042 (command)
[   55.856286] i8042: [55042] e6 -> i8042 (parameter)
[   55.859404] i8042: [55046] fa <- i8042 (interrupt, 1, 12)
[   55.859463] i8042: [55046] d4 -> i8042 (command)
[   55.859711] i8042: [55046] e8 -> i8042 (parameter)
[   55.862563] i8042: [55049] fa <- i8042 (interrupt, 1, 12)
[   55.862648] i8042: [55049] d4 -> i8042 (command)
[   55.862838] i8042: [55049] 00 -> i8042 (parameter)
[   55.865798] i8042: [55052] fa <- i8042 (interrupt, 1, 12)
[   55.865890] i8042: [55052] d4 -> i8042 (command)
[   55.866078] i8042: [55052] e8 -> i8042 (parameter)
[   55.869070] i8042: [55055] fa <- i8042 (interrupt, 1, 12)
[   55.869161] i8042: [55055] d4 -> i8042 (command)
[   55.869349] i8042: [55055] 00 -> i8042 (parameter)
[   55.872262] i8042: [55058] fa <- i8042 (interrupt, 1, 12)
[   55.872359] i8042: [55058] d4 -> i8042 (command)
[   55.872548] i8042: [55059] e8 -> i8042 (parameter)
[   55.875456] i8042: [55062] fa <- i8042 (interrupt, 1, 12)
[   55.875548] i8042: [55062] d4 -> i8042 (command)
[   55.875736] i8042: [55062] 00 -> i8042 (parameter)
[   55.878655] i8042: [55065] fa <- i8042 (interrupt, 1, 12)
[   55.878748] i8042: [55065] d4 -> i8042 (command)
[   55.878936] i8042: [55065] e8 -> i8042 (parameter)
[   55.881792] i8042: [55068] fa <- i8042 (interrupt, 1, 12)
[   55.881884] i8042: [55068] d4 -> i8042 (command)
[   55.882130] i8042: [55068] 01 -> i8042 (parameter)
[   55.885023] i8042: [55071] fa <- i8042 (interrupt, 1, 12)
[   55.885118] i8042: [55071] d4 -> i8042 (command)
[   55.885306] i8042: [55071] e9 -> i8042 (parameter)
[   55.888213] i8042: [55074] fa <- i8042 (interrupt, 1, 12)
[   55.889778] i8042: [55076] 5e <- i8042 (interrupt, 1, 12)
[   55.891353] i8042: [55077] 0f <- i8042 (interrupt, 1, 12)
[   55.892934] i8042: [55079] 01 <- i8042 (interrupt, 1, 12)
[   55.893027] i8042: [55079] d4 -> i8042 (command)
[   55.893215] i8042: [55079] f8 -> i8042 (parameter)
[   55.896160] i8042: [55082] fa <- i8042 (interrupt, 1, 12)
[   55.896259] i8042: [55082] d4 -> i8042 (command)
[   55.896447] i8042: [55083] 00 -> i8042 (parameter)
[   55.899340] i8042: [55085] fa <- i8042 (interrupt, 1, 12)
[   55.899439] i8042: [55086] d4 -> i8042 (command)
[   55.899627] i8042: [55086] f8 -> i8042 (parameter)
[   55.902549] i8042: [55089] fa <- i8042 (interrupt, 1, 12)
[   55.902635] i8042: [55089] d4 -> i8042 (command)
[   55.902880] i8042: [55089] 07 -> i8042 (parameter)
[   55.905735] i8042: [55092] fa <- i8042 (interrupt, 1, 12)
[   55.905831] i8042: [55092] d4 -> i8042 (command)
[   55.906019] i8042: [55092] f8 -> i8042 (parameter)
[   55.908934] i8042: [55095] fa <- i8042 (interrupt, 1, 12)
[   55.909029] i8042: [55095] d4 -> i8042 (command)
[   55.909217] i8042: [55095] 00 -> i8042 (parameter)
[   55.912138] i8042: [55098] fa <- i8042 (interrupt, 1, 12)
[   55.912235] i8042: [55098] d4 -> i8042 (command)
[   55.912480] i8042: [55099] f8 -> i8042 (parameter)
[   55.915321] i8042: [55101] fa <- i8042 (interrupt, 1, 12)
[   55.915415] i8042: [55102] d4 -> i8042 (command)
[   55.915604] i8042: [55102] 01 -> i8042 (parameter)
[   55.918509] i8042: [55105] fa <- i8042 (interrupt, 1, 12)
[   55.918604] i8042: [55105] d4 -> i8042 (command)
[   55.918793] i8042: [55105] e6 -> i8042 (parameter)
[   55.921702] i8042: [55108] fa <- i8042 (interrupt, 1, 12)
[   55.921798] i8042: [55108] d4 -> i8042 (command)
[   55.921986] i8042: [55108] f3 -> i8042 (parameter)
[   55.924898] i8042: [55111] fa <- i8042 (interrupt, 1, 12)
[   55.924990] i8042: [55111] d4 -> i8042 (command)
[   55.925178] i8042: [55111] 64 -> i8042 (parameter)
[   55.928079] i8042: [55114] fa <- i8042 (interrupt, 1, 12)
[   55.928175] i8042: [55114] d4 -> i8042 (command)
[   55.928363] i8042: [55114] e8 -> i8042 (parameter)
[   55.931275] i8042: [55117] fa <- i8042 (interrupt, 1, 12)
[   55.931353] i8042: [55117] d4 -> i8042 (command)
[   55.931598] i8042: [55118] 03 -> i8042 (parameter)
[   55.934361] i8042: [55120] fa <- i8042 (interrupt, 1, 12)
[   55.939976] i8042: [55126] d4 -> i8042 (command)
[   55.940178] i8042: [55126] e6 -> i8042 (parameter)
[   55.943203] i8042: [55129] fa <- i8042 (interrupt, 1, 12)
[   55.943307] i8042: [55129] d4 -> i8042 (command)
[   55.943554] i8042: [55130] f4 -> i8042 (parameter)
[   55.946401] i8042: [55133] fa <- i8042 (interrupt, 1, 12)
[   55.967084] i8042: [55153] 08 <- i8042 (interrupt, 1, 12)
[   55.968690] i8042: [55155] 00 <- i8042 (interrupt, 1, 12)
[   55.970273] i8042: [55156] 00 <- i8042 (interrupt, 1, 12)
[   55.976928] i8042: [55163] 64 <- i8042 (interrupt, 1, 12)
[   55.978524] i8042: [55165] 01 <- i8042 (interrupt, 1, 12)
[   55.980028] i8042: [55166] 00 <- i8042 (interrupt, 1, 12)
[   55.980053] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.981671] i8042: [55168] 10 <- i8042 (interrupt, 1, 12)
[   55.983258] i8042: [55169] 00 <- i8042 (interrupt, 1, 12)
[   55.984789] i8042: [55171] 00 <- i8042 (interrupt, 1, 12)
[   55.986374] i8042: [55172] 64 <- i8042 (interrupt, 1, 12)
[   55.987959] i8042: [55174] 24 <- i8042 (interrupt, 1, 12)
[   55.989498] i8042: [55176] a9 <- i8042 (interrupt, 1, 12)
[   55.989530] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   55.991145] i8042: [55177] 31 <- i8042 (interrupt, 1, 12)
[   55.992705] i8042: [55179] 52 <- i8042 (interrupt, 1, 12)
[   55.994255] i8042: [55180] 1e <- i8042 (interrupt, 1, 12)
[   55.995933] i8042: [55182] 64 <- i8042 (interrupt, 1, 12)
[   55.997413] i8042: [55184] 24 <- i8042 (interrupt, 1, 12)
[   55.999076] i8042: [55185] a9 <- i8042 (interrupt, 1, 12)
[   55.999102] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.000627] i8042: [55187] 31 <- i8042 (interrupt, 1, 12)
[   56.002273] i8042: [55188] b2 <- i8042 (interrupt, 1, 12)
[   56.003840] i8042: [55190] 1e <- i8042 (interrupt, 1, 12)
[   56.005449] i8042: [55192] 64 <- i8042 (interrupt, 1, 12)
[   56.007024] i8042: [55193] 25 <- i8042 (interrupt, 1, 12)
[   56.008595] i8042: [55195] 14 <- i8042 (interrupt, 1, 12)
[   56.008629] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.010200] i8042: [55196] 31 <- i8042 (interrupt, 1, 12)
[   56.011757] i8042: [55198] f2 <- i8042 (interrupt, 1, 12)
[   56.013342] i8042: [55199] 34 <- i8042 (interrupt, 1, 12)
[   56.014923] i8042: [55201] 64 <- i8042 (interrupt, 1, 12)
[   56.016517] i8042: [55203] 35 <- i8042 (interrupt, 1, 12)
[   56.018095] i8042: [55204] 2a <- i8042 (interrupt, 1, 12)
[   56.018135] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.018153] psmouse serio1: issuing reconnect request
[   56.018238] i8042: [55204] d4 -> i8042 (command)
[   56.018485] i8042: [55205] ff -> i8042 (parameter)
[   56.021311] i8042: [55207] fa <- i8042 (interrupt, 1, 12)
[   56.122316] i8042: [55308] aa <- i8042 (interrupt, 1, 12)
[   56.123895] i8042: [55310] 00 <- i8042 (interrupt, 1, 12)
[   56.124000] i8042: [55310] d4 -> i8042 (command)
[   56.124190] i8042: [55310] f6 -> i8042 (parameter)
[   56.127101] i8042: [55313] fa <- i8042 (interrupt, 1, 12)
[   56.127205] i8042: [55313] d4 -> i8042 (command)
[   56.127452] i8042: [55314] f5 -> i8042 (parameter)
[   56.130305] i8042: [55316] fa <- i8042 (interrupt, 1, 12)
[   56.130426] i8042: [55317] d4 -> i8042 (command)
[   56.130617] i8042: [55317] e6 -> i8042 (parameter)
[   56.133511] i8042: [55320] fa <- i8042 (interrupt, 1, 12)
[   56.133615] i8042: [55320] d4 -> i8042 (command)
[   56.133804] i8042: [55320] e6 -> i8042 (parameter)
[   56.136706] i8042: [55323] fa <- i8042 (interrupt, 1, 12)
[   56.136812] i8042: [55323] d4 -> i8042 (command)
[   56.137002] i8042: [55323] e6 -> i8042 (parameter)
[   56.139904] i8042: [55326] fa <- i8042 (interrupt, 1, 12)
[   56.140008] i8042: [55326] d4 -> i8042 (command)
[   56.140197] i8042: [55326] e9 -> i8042 (parameter)
[   56.143097] i8042: [55329] fa <- i8042 (interrupt, 1, 12)
[   56.144660] i8042: [55331] 3c <- i8042 (interrupt, 1, 12)
[   56.146242] i8042: [55332] 03 <- i8042 (interrupt, 1, 12)
[   56.147824] i8042: [55334] 00 <- i8042 (interrupt, 1, 12)
[   56.147927] i8042: [55334] d4 -> i8042 (command)
[   56.148117] i8042: [55334] e6 -> i8042 (parameter)
[   56.151038] i8042: [55337] fa <- i8042 (interrupt, 1, 12)
[   56.151142] i8042: [55337] d4 -> i8042 (command)
[   56.151331] i8042: [55337] e8 -> i8042 (parameter)
[   56.154234] i8042: [55340] fa <- i8042 (interrupt, 1, 12)
[   56.154336] i8042: [55340] d4 -> i8042 (command)
[   56.154584] i8042: [55341] 00 -> i8042 (parameter)
[   56.157428] i8042: [55344] fa <- i8042 (interrupt, 1, 12)
[   56.157532] i8042: [55344] d4 -> i8042 (command)
[   56.157722] i8042: [55344] e8 -> i8042 (parameter)
[   56.160621] i8042: [55347] fa <- i8042 (interrupt, 1, 12)
[   56.160722] i8042: [55347] d4 -> i8042 (command)
[   56.160968] i8042: [55347] 00 -> i8042 (parameter)
[   56.163829] i8042: [55350] fa <- i8042 (interrupt, 1, 12)
[   56.163932] i8042: [55350] d4 -> i8042 (command)
[   56.164122] i8042: [55350] e8 -> i8042 (parameter)
[   56.167007] i8042: [55353] fa <- i8042 (interrupt, 1, 12)
[   56.167109] i8042: [55353] d4 -> i8042 (command)
[   56.167299] i8042: [55353] 00 -> i8042 (parameter)
[   56.170205] i8042: [55356] fa <- i8042 (interrupt, 1, 12)
[   56.170308] i8042: [55356] d4 -> i8042 (command)
[   56.170497] i8042: [55357] e8 -> i8042 (parameter)
[   56.173400] i8042: [55359] fa <- i8042 (interrupt, 1, 12)
[   56.173501] i8042: [55360] d4 -> i8042 (command)
[   56.173748] i8042: [55360] 01 -> i8042 (parameter)
[   56.176586] i8042: [55363] fa <- i8042 (interrupt, 1, 12)
[   56.176690] i8042: [55363] d4 -> i8042 (command)
[   56.176880] i8042: [55363] e9 -> i8042 (parameter)
[   56.179741] i8042: [55366] fa <- i8042 (interrupt, 1, 12)
[   56.181344] i8042: [55367] 5e <- i8042 (interrupt, 1, 12)
[   56.182922] i8042: [55369] 0f <- i8042 (interrupt, 1, 12)
[   56.184519] i8042: [55371] 01 <- i8042 (interrupt, 1, 12)
[   56.184623] i8042: [55371] d4 -> i8042 (command)
[   56.184812] i8042: [55371] f8 -> i8042 (parameter)
[   56.187682] i8042: [55374] fa <- i8042 (interrupt, 1, 12)
[   56.187789] i8042: [55374] d4 -> i8042 (command)
[   56.187980] i8042: [55374] 00 -> i8042 (parameter)
[   56.190911] i8042: [55377] fa <- i8042 (interrupt, 1, 12)
[   56.191037] i8042: [55377] d4 -> i8042 (command)
[   56.191227] i8042: [55377] f8 -> i8042 (parameter)
[   56.194101] i8042: [55380] fa <- i8042 (interrupt, 1, 12)
[   56.194204] i8042: [55380] d4 -> i8042 (command)
[   56.194394] i8042: [55381] 07 -> i8042 (parameter)
[   56.197248] i8042: [55383] fa <- i8042 (interrupt, 1, 12)
[   56.197306] i8042: [55383] d4 -> i8042 (command)
[   56.197508] i8042: [55384] f8 -> i8042 (parameter)
[   56.200512] i8042: [55387] fa <- i8042 (interrupt, 1, 12)
[   56.200615] i8042: [55387] d4 -> i8042 (command)
[   56.200805] i8042: [55387] 00 -> i8042 (parameter)
[   56.203698] i8042: [55390] fa <- i8042 (interrupt, 1, 12)
[   56.203803] i8042: [55390] d4 -> i8042 (command)
[   56.203993] i8042: [55390] f8 -> i8042 (parameter)
[   56.206910] i8042: [55393] fa <- i8042 (interrupt, 1, 12)
[   56.207014] i8042: [55393] d4 -> i8042 (command)
[   56.207205] i8042: [55393] 01 -> i8042 (parameter)
[   56.210091] i8042: [55396] fa <- i8042 (interrupt, 1, 12)
[   56.210196] i8042: [55396] d4 -> i8042 (command)
[   56.210386] i8042: [55397] e6 -> i8042 (parameter)
[   56.213282] i8042: [55399] fa <- i8042 (interrupt, 1, 12)
[   56.213408] i8042: [55400] d4 -> i8042 (command)
[   56.213598] i8042: [55400] f3 -> i8042 (parameter)
[   56.216469] i8042: [55403] fa <- i8042 (interrupt, 1, 12)
[   56.216569] i8042: [55403] d4 -> i8042 (command)
[   56.216758] i8042: [55403] 64 -> i8042 (parameter)
[   56.219554] i8042: [55406] fa <- i8042 (interrupt, 1, 12)
[   56.219636] i8042: [55406] d4 -> i8042 (command)
[   56.219825] i8042: [55406] e8 -> i8042 (parameter)
[   56.222842] i8042: [55409] fa <- i8042 (interrupt, 1, 12)
[   56.222921] i8042: [55409] d4 -> i8042 (command)
[   56.223110] i8042: [55409] 03 -> i8042 (parameter)
[   56.226035] i8042: [55412] fa <- i8042 (interrupt, 1, 12)
[   56.226118] i8042: [55412] d4 -> i8042 (command)
[   56.226308] i8042: [55412] e6 -> i8042 (parameter)
[   56.229234] i8042: [55415] fa <- i8042 (interrupt, 1, 12)
[   56.229317] i8042: [55415] d4 -> i8042 (command)
[   56.229506] i8042: [55415] f4 -> i8042 (parameter)
[   56.232340] i8042: [55418] fa <- i8042 (interrupt, 1, 12)
[   56.253174] i8042: [55439] 08 <- i8042 (interrupt, 1, 12)
[   56.254756] i8042: [55441] 00 <- i8042 (interrupt, 1, 12)
[   56.256336] i8042: [55442] 00 <- i8042 (interrupt, 1, 12)
[   56.262969] i8042: [55449] 54 <- i8042 (interrupt, 1, 12)
[   56.264522] i8042: [55451] 01 <- i8042 (interrupt, 1, 12)
[   56.266140] i8042: [55452] 00 <- i8042 (interrupt, 1, 12)
[   56.266179] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.267704] i8042: [55454] 10 <- i8042 (interrupt, 1, 12)
[   56.269306] i8042: [55455] 00 <- i8042 (interrupt, 1, 12)
[   56.270900] i8042: [55457] 00 <- i8042 (interrupt, 1, 12)
[   56.272472] i8042: [55459] 54 <- i8042 (interrupt, 1, 12)
[   56.274050] i8042: [55460] 11 <- i8042 (interrupt, 1, 12)
[   56.275606] i8042: [55462] ca <- i8042 (interrupt, 1, 12)
[   56.275646] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.277216] i8042: [55463] 31 <- i8042 (interrupt, 1, 12)
[   56.278806] i8042: [55465] d2 <- i8042 (interrupt, 1, 12)
[   56.280379] i8042: [55466] a5 <- i8042 (interrupt, 1, 12)
[   56.281971] i8042: [55468] 54 <- i8042 (interrupt, 1, 12)
[   56.283547] i8042: [55470] 21 <- i8042 (interrupt, 1, 12)
[   56.285102] i8042: [55471] ca <- i8042 (interrupt, 1, 12)
[   56.285141] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.286688] i8042: [55473] 31 <- i8042 (interrupt, 1, 12)
[   56.288293] i8042: [55474] 22 <- i8042 (interrupt, 1, 12)
[   56.289881] i8042: [55476] a5 <- i8042 (interrupt, 1, 12)
[   56.291543] i8042: [55478] 54 <- i8042 (interrupt, 1, 12)
[   56.293055] i8042: [55479] 21 <- i8042 (interrupt, 1, 12)
[   56.294622] i8042: [55481] eb <- i8042 (interrupt, 1, 12)
[   56.294654] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.296228] i8042: [55482] 31 <- i8042 (interrupt, 1, 12)
[   56.297777] i8042: [55484] 42 <- i8042 (interrupt, 1, 12)
[   56.299380] i8042: [55485] b2 <- i8042 (interrupt, 1, 12)
[   56.300961] i8042: [55487] 54 <- i8042 (interrupt, 1, 12)
[   56.302535] i8042: [55489] 22 <- i8042 (interrupt, 1, 12)
[   56.304130] i8042: [55490] 1f <- i8042 (interrupt, 1, 12)
[   56.304157] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.304166] psmouse serio1: issuing reconnect request
[   56.304259] i8042: [55490] d4 -> i8042 (command)
[   56.304449] i8042: [55491] ff -> i8042 (parameter)
[   56.307343] i8042: [55493] fa <- i8042 (interrupt, 1, 12)
[   56.408356] i8042: [55594] aa <- i8042 (interrupt, 1, 12)
[   56.409918] i8042: [55596] 00 <- i8042 (interrupt, 1, 12)
[   56.409996] i8042: [55596] d4 -> i8042 (command)
[   56.410185] i8042: [55596] f6 -> i8042 (parameter)
[   56.413126] i8042: [55599] fa <- i8042 (interrupt, 1, 12)
[   56.413230] i8042: [55599] d4 -> i8042 (command)
[   56.413419] i8042: [55600] f5 -> i8042 (parameter)
[   56.416321] i8042: [55602] fa <- i8042 (interrupt, 1, 12)
[   56.416430] i8042: [55603] d4 -> i8042 (command)
[   56.416620] i8042: [55603] e6 -> i8042 (parameter)
[   56.419525] i8042: [55606] fa <- i8042 (interrupt, 1, 12)
[   56.419603] i8042: [55606] d4 -> i8042 (command)
[   56.419793] i8042: [55606] e6 -> i8042 (parameter)
[   56.422653] i8042: [55609] fa <- i8042 (interrupt, 1, 12)
[   56.422726] i8042: [55609] d4 -> i8042 (command)
[   56.422916] i8042: [55609] e6 -> i8042 (parameter)
[   56.425900] i8042: [55612] fa <- i8042 (interrupt, 1, 12)
[   56.425979] i8042: [55612] d4 -> i8042 (command)
[   56.426168] i8042: [55612] e9 -> i8042 (parameter)
[   56.429109] i8042: [55615] fa <- i8042 (interrupt, 1, 12)
[   56.430638] i8042: [55617] 3c <- i8042 (interrupt, 1, 12)
[   56.432257] i8042: [55618] 03 <- i8042 (interrupt, 1, 12)
[   56.433849] i8042: [55620] 00 <- i8042 (interrupt, 1, 12)
[   56.434042] i8042: [55620] d4 -> i8042 (command)
[   56.434234] i8042: [55620] e6 -> i8042 (parameter)
[   56.437077] i8042: [55623] fa <- i8042 (interrupt, 1, 12)
[   56.437196] i8042: [55623] d4 -> i8042 (command)
[   56.437385] i8042: [55624] e8 -> i8042 (parameter)
[   56.440256] i8042: [55626] fa <- i8042 (interrupt, 1, 12)
[   56.440356] i8042: [55626] d4 -> i8042 (command)
[   56.440603] i8042: [55627] 00 -> i8042 (parameter)
[   56.443464] i8042: [55630] fa <- i8042 (interrupt, 1, 12)
[   56.443580] i8042: [55630] d4 -> i8042 (command)
[   56.443827] i8042: [55630] e8 -> i8042 (parameter)
[   56.446649] i8042: [55633] fa <- i8042 (interrupt, 1, 12)
[   56.446750] i8042: [55633] d4 -> i8042 (command)
[   56.446940] i8042: [55633] 00 -> i8042 (parameter)
[   56.449837] i8042: [55636] fa <- i8042 (interrupt, 1, 12)
[   56.449939] i8042: [55636] d4 -> i8042 (command)
[   56.450129] i8042: [55636] e8 -> i8042 (parameter)
[   56.453043] i8042: [55639] fa <- i8042 (interrupt, 1, 12)
[   56.453142] i8042: [55639] d4 -> i8042 (command)
[   56.453332] i8042: [55639] 00 -> i8042 (parameter)
[   56.456216] i8042: [55642] fa <- i8042 (interrupt, 1, 12)
[   56.456318] i8042: [55642] d4 -> i8042 (command)
[   56.456564] i8042: [55643] e8 -> i8042 (parameter)
[   56.459431] i8042: [55646] fa <- i8042 (interrupt, 1, 12)
[   56.459529] i8042: [55646] d4 -> i8042 (command)
[   56.459719] i8042: [55646] 01 -> i8042 (parameter)
[   56.462579] i8042: [55649] fa <- i8042 (interrupt, 1, 12)
[   56.462683] i8042: [55649] d4 -> i8042 (command)
[   56.462873] i8042: [55649] e9 -> i8042 (parameter)
[   56.465794] i8042: [55652] fa <- i8042 (interrupt, 1, 12)
[   56.467372] i8042: [55653] 5e <- i8042 (interrupt, 1, 12)
[   56.468928] i8042: [55655] 0f <- i8042 (interrupt, 1, 12)
[   56.470506] i8042: [55657] 01 <- i8042 (interrupt, 1, 12)
[   56.470612] i8042: [55657] d4 -> i8042 (command)
[   56.470803] i8042: [55657] f8 -> i8042 (parameter)
[   56.473711] i8042: [55660] fa <- i8042 (interrupt, 1, 12)
[   56.473815] i8042: [55660] d4 -> i8042 (command)
[   56.474005] i8042: [55660] 00 -> i8042 (parameter)
[   56.476952] i8042: [55663] fa <- i8042 (interrupt, 1, 12)
[   56.477057] i8042: [55663] d4 -> i8042 (command)
[   56.477246] i8042: [55663] f8 -> i8042 (parameter)
[   56.480153] i8042: [55666] fa <- i8042 (interrupt, 1, 12)
[   56.480256] i8042: [55666] d4 -> i8042 (command)
[   56.480446] i8042: [55667] 07 -> i8042 (parameter)
[   56.483372] i8042: [55669] fa <- i8042 (interrupt, 1, 12)
[   56.483476] i8042: [55670] d4 -> i8042 (command)
[   56.483666] i8042: [55670] f8 -> i8042 (parameter)
[   56.486546] i8042: [55673] fa <- i8042 (interrupt, 1, 12)
[   56.486651] i8042: [55673] d4 -> i8042 (command)
[   56.486840] i8042: [55673] 00 -> i8042 (parameter)
[   56.489736] i8042: [55676] fa <- i8042 (interrupt, 1, 12)
[   56.489841] i8042: [55676] d4 -> i8042 (command)
[   56.490031] i8042: [55676] f8 -> i8042 (parameter)
[   56.492934] i8042: [55679] fa <- i8042 (interrupt, 1, 12)
[   56.493038] i8042: [55679] d4 -> i8042 (command)
[   56.493227] i8042: [55679] 01 -> i8042 (parameter)
[   56.496117] i8042: [55682] fa <- i8042 (interrupt, 1, 12)
[   56.496222] i8042: [55682] d4 -> i8042 (command)
[   56.496468] i8042: [55683] e6 -> i8042 (parameter)
[   56.499306] i8042: [55685] fa <- i8042 (interrupt, 1, 12)
[   56.499418] i8042: [55686] d4 -> i8042 (command)
[   56.499608] i8042: [55686] f3 -> i8042 (parameter)
[   56.502529] i8042: [55689] fa <- i8042 (interrupt, 1, 12)
[   56.502604] i8042: [55689] d4 -> i8042 (command)
[   56.502794] i8042: [55689] 64 -> i8042 (parameter)
[   56.505711] i8042: [55692] fa <- i8042 (interrupt, 1, 12)
[   56.505816] i8042: [55692] d4 -> i8042 (command)
[   56.506063] i8042: [55692] e8 -> i8042 (parameter)
[   56.508904] i8042: [55695] fa <- i8042 (interrupt, 1, 12)
[   56.509006] i8042: [55695] d4 -> i8042 (command)
[   56.509195] i8042: [55695] 03 -> i8042 (parameter)
[   56.512102] i8042: [55698] fa <- i8042 (interrupt, 1, 12)
[   56.512206] i8042: [55698] d4 -> i8042 (command)
[   56.512395] i8042: [55699] e6 -> i8042 (parameter)
[   56.515302] i8042: [55701] fa <- i8042 (interrupt, 1, 12)
[   56.515435] i8042: [55702] d4 -> i8042 (command)
[   56.515626] i8042: [55702] f4 -> i8042 (parameter)
[   56.518486] i8042: [55705] fa <- i8042 (interrupt, 1, 12)
[   56.539734] i8042: [55726] 08 <- i8042 (interrupt, 1, 12)
[   56.541299] i8042: [55727] 00 <- i8042 (interrupt, 1, 12)
[   56.542893] i8042: [55729] 00 <- i8042 (interrupt, 1, 12)
[   56.549010] i8042: [55735] 54 <- i8042 (interrupt, 1, 12)
[   56.550594] i8042: [55737] 01 <- i8042 (interrupt, 1, 12)
[   56.552182] i8042: [55738] 00 <- i8042 (interrupt, 1, 12)
[   56.552221] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.553759] i8042: [55740] 10 <- i8042 (interrupt, 1, 12)
[   56.555348] i8042: [55741] 00 <- i8042 (interrupt, 1, 12)
[   56.556923] i8042: [55743] 00 <- i8042 (interrupt, 1, 12)
[   56.558510] i8042: [55745] 54 <- i8042 (interrupt, 1, 12)
[   56.560095] i8042: [55746] 13 <- i8042 (interrupt, 1, 12)
[   56.561664] i8042: [55748] fb <- i8042 (interrupt, 1, 12)
[   56.561704] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.563271] i8042: [55749] 31 <- i8042 (interrupt, 1, 12)
[   56.564841] i8042: [55751] f2 <- i8042 (interrupt, 1, 12)
[   56.566421] i8042: [55753] 86 <- i8042 (interrupt, 1, 12)
[   56.568005] i8042: [55754] 54 <- i8042 (interrupt, 1, 12)
[   56.569561] i8042: [55756] 23 <- i8042 (interrupt, 1, 12)
[   56.571105] i8042: [55757] fb <- i8042 (interrupt, 1, 12)
[   56.571143] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.572753] i8042: [55759] 31 <- i8042 (interrupt, 1, 12)
[   56.574336] i8042: [55760] 42 <- i8042 (interrupt, 1, 12)
[   56.575932] i8042: [55762] 86 <- i8042 (interrupt, 1, 12)
[   56.577499] i8042: [55764] 54 <- i8042 (interrupt, 1, 12)
[   56.579077] i8042: [55765] 23 <- i8042 (interrupt, 1, 12)
[   56.580665] i8042: [55767] af <- i8042 (interrupt, 1, 12)
[   56.580705] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.582250] i8042: [55768] 31 <- i8042 (interrupt, 1, 12)
[   56.583833] i8042: [55770] 62 <- i8042 (interrupt, 1, 12)
[   56.585380] i8042: [55771] 86 <- i8042 (interrupt, 1, 12)
[   56.586982] i8042: [55773] 54 <- i8042 (interrupt, 1, 12)
[   56.588530] i8042: [55775] 23 <- i8042 (interrupt, 1, 12)
[   56.590162] i8042: [55776] 65 <- i8042 (interrupt, 1, 12)
[   56.590202] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.590219] psmouse serio1: issuing reconnect request
[   56.590303] i8042: [55776] d4 -> i8042 (command)
[   56.590663] i8042: [55777] ff -> i8042 (parameter)
[   56.594019] i8042: [55780] fa <- i8042 (interrupt, 1, 12)
[   56.695129] i8042: [55881] aa <- i8042 (interrupt, 1, 12)
[   56.696631] i8042: [55883] 00 <- i8042 (interrupt, 1, 12)
[   56.696710] i8042: [55883] d4 -> i8042 (command)
[   56.696899] i8042: [55883] f6 -> i8042 (parameter)
[   56.699881] i8042: [55886] fa <- i8042 (interrupt, 1, 12)
[   56.699985] i8042: [55886] d4 -> i8042 (command)
[   56.700175] i8042: [55886] f5 -> i8042 (parameter)
[   56.703012] i8042: [55889] fa <- i8042 (interrupt, 1, 12)
[   56.703092] i8042: [55889] d4 -> i8042 (command)
[   56.703283] i8042: [55889] e6 -> i8042 (parameter)
[   56.706246] i8042: [55892] fa <- i8042 (interrupt, 1, 12)
[   56.706349] i8042: [55892] d4 -> i8042 (command)
[   56.706538] i8042: [55893] e6 -> i8042 (parameter)
[   56.709442] i8042: [55896] fa <- i8042 (interrupt, 1, 12)
[   56.709548] i8042: [55896] d4 -> i8042 (command)
[   56.709794] i8042: [55896] e6 -> i8042 (parameter)
[   56.712671] i8042: [55899] fa <- i8042 (interrupt, 1, 12)
[   56.712775] i8042: [55899] d4 -> i8042 (command)
[   56.712964] i8042: [55899] e9 -> i8042 (parameter)
[   56.715894] i8042: [55902] fa <- i8042 (interrupt, 1, 12)
[   56.717443] i8042: [55904] 3c <- i8042 (interrupt, 1, 12)
[   56.719024] i8042: [55905] 03 <- i8042 (interrupt, 1, 12)
[   56.720566] i8042: [55907] 00 <- i8042 (interrupt, 1, 12)
[   56.720670] i8042: [55907] d4 -> i8042 (command)
[   56.720860] i8042: [55907] e6 -> i8042 (parameter)
[   56.723815] i8042: [55910] fa <- i8042 (interrupt, 1, 12)
[   56.723918] i8042: [55910] d4 -> i8042 (command)
[   56.724108] i8042: [55910] e8 -> i8042 (parameter)
[   56.727008] i8042: [55913] fa <- i8042 (interrupt, 1, 12)
[   56.727108] i8042: [55913] d4 -> i8042 (command)
[   56.727297] i8042: [55913] 00 -> i8042 (parameter)
[   56.730090] i8042: [55916] fa <- i8042 (interrupt, 1, 12)
[   56.730556] i8042: [55917] d4 -> i8042 (command)
[   56.730758] i8042: [55917] e8 -> i8042 (parameter)
[   56.733287] i8042: [55919] fa <- i8042 (interrupt, 1, 12)
[   56.733570] i8042: [55920] d4 -> i8042 (command)
[   56.733756] i8042: [55920] 00 -> i8042 (parameter)
[   56.736480] i8042: [55923] fa <- i8042 (interrupt, 1, 12)
[   56.736643] i8042: [55923] d4 -> i8042 (command)
[   56.736829] i8042: [55923] e8 -> i8042 (parameter)
[   56.739828] i8042: [55926] fa <- i8042 (interrupt, 1, 12)
[   56.740017] i8042: [55926] d4 -> i8042 (command)
[   56.740260] i8042: [55926] 00 -> i8042 (parameter)
[   56.743014] i8042: [55929] fa <- i8042 (interrupt, 1, 12)
[   56.743131] i8042: [55929] d4 -> i8042 (command)
[   56.743321] i8042: [55929] e8 -> i8042 (parameter)
[   56.746193] i8042: [55932] fa <- i8042 (interrupt, 1, 12)
[   56.746293] i8042: [55932] d4 -> i8042 (command)
[   56.746482] i8042: [55933] 01 -> i8042 (parameter)
[   56.749412] i8042: [55936] fa <- i8042 (interrupt, 1, 12)
[   56.749539] i8042: [55936] d4 -> i8042 (command)
[   56.749729] i8042: [55936] e9 -> i8042 (parameter)
[   56.752581] i8042: [55939] fa <- i8042 (interrupt, 1, 12)
[   56.754134] i8042: [55940] 5e <- i8042 (interrupt, 1, 12)
[   56.755604] i8042: [55942] 0f <- i8042 (interrupt, 1, 12)
[   56.757207] i8042: [55943] 01 <- i8042 (interrupt, 1, 12)
[   56.757247] i8042: [55943] d4 -> i8042 (command)
[   56.757488] i8042: [55944] f8 -> i8042 (parameter)
[   56.760550] i8042: [55947] fa <- i8042 (interrupt, 1, 12)
[   56.760671] i8042: [55947] d4 -> i8042 (command)
[   56.760861] i8042: [55947] 00 -> i8042 (parameter)
[   56.763723] i8042: [55950] fa <- i8042 (interrupt, 1, 12)
[   56.763844] i8042: [55950] d4 -> i8042 (command)
[   56.764034] i8042: [55950] f8 -> i8042 (parameter)
[   56.766795] i8042: [55953] fa <- i8042 (interrupt, 1, 12)
[   56.766915] i8042: [55953] d4 -> i8042 (command)
[   56.767100] i8042: [55953] 07 -> i8042 (parameter)
[   56.770130] i8042: [55956] fa <- i8042 (interrupt, 1, 12)
[   56.770249] i8042: [55956] d4 -> i8042 (command)
[   56.770440] i8042: [55957] f8 -> i8042 (parameter)
[   56.773326] i8042: [55959] fa <- i8042 (interrupt, 1, 12)
[   56.773429] i8042: [55960] d4 -> i8042 (command)
[   56.773620] i8042: [55960] 00 -> i8042 (parameter)
[   56.776516] i8042: [55963] fa <- i8042 (interrupt, 1, 12)
[   56.776637] i8042: [55963] d4 -> i8042 (command)
[   56.776883] i8042: [55963] f8 -> i8042 (parameter)
[   56.779702] i8042: [55966] fa <- i8042 (interrupt, 1, 12)
[   56.779806] i8042: [55966] d4 -> i8042 (command)
[   56.779995] i8042: [55966] 01 -> i8042 (parameter)
[   56.782891] i8042: [55969] fa <- i8042 (interrupt, 1, 12)
[   56.782994] i8042: [55969] d4 -> i8042 (command)
[   56.783184] i8042: [55969] e6 -> i8042 (parameter)
[   56.786076] i8042: [55972] fa <- i8042 (interrupt, 1, 12)
[   56.786182] i8042: [55972] d4 -> i8042 (command)
[   56.786373] i8042: [55972] f3 -> i8042 (parameter)
[   56.789218] i8042: [55975] fa <- i8042 (interrupt, 1, 12)
[   56.789309] i8042: [55975] d4 -> i8042 (command)
[   56.789498] i8042: [55976] 64 -> i8042 (parameter)
[   56.792417] i8042: [55979] fa <- i8042 (interrupt, 1, 12)
[   56.792518] i8042: [55979] d4 -> i8042 (command)
[   56.792707] i8042: [55979] e8 -> i8042 (parameter)
[   56.795684] i8042: [55982] fa <- i8042 (interrupt, 1, 12)
[   56.795796] i8042: [55982] d4 -> i8042 (command)
[   56.795986] i8042: [55982] 03 -> i8042 (parameter)
[   56.798857] i8042: [55985] fa <- i8042 (interrupt, 1, 12)
[   56.798961] i8042: [55985] d4 -> i8042 (command)
[   56.799150] i8042: [55985] e6 -> i8042 (parameter)
[   56.801960] i8042: [55988] fa <- i8042 (interrupt, 1, 12)
[   56.802533] i8042: [55989] d4 -> i8042 (command)
[   56.802719] i8042: [55989] f4 -> i8042 (parameter)
[   56.805760] i8042: [55992] fa <- i8042 (interrupt, 1, 12)
[   56.826518] i8042: [56013] 08 <- i8042 (interrupt, 1, 12)
[   56.827956] i8042: [56014] 00 <- i8042 (interrupt, 1, 12)
[   56.829673] i8042: [56016] 00 <- i8042 (interrupt, 1, 12)
[   56.836320] i8042: [56022] 64 <- i8042 (interrupt, 1, 12)
[   56.837857] i8042: [56024] 01 <- i8042 (interrupt, 1, 12)
[   56.839370] i8042: [56025] 00 <- i8042 (interrupt, 1, 12)
[   56.839405] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.841043] i8042: [56027] 10 <- i8042 (interrupt, 1, 12)
[   56.842539] i8042: [56029] 00 <- i8042 (interrupt, 1, 12)
[   56.844183] i8042: [56030] 00 <- i8042 (interrupt, 1, 12)
[   56.845738] i8042: [56032] 64 <- i8042 (interrupt, 1, 12)
[   56.847382] i8042: [56033] 25 <- i8042 (interrupt, 1, 12)
[   56.848963] i8042: [56035] 8a <- i8042 (interrupt, 1, 12)
[   56.849000] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.850424] i8042: [56037] 31 <- i8042 (interrupt, 1, 12)
[   56.852007] i8042: [56038] 72 <- i8042 (interrupt, 1, 12)
[   56.853591] i8042: [56040] 8b <- i8042 (interrupt, 1, 12)
[   56.855256] i8042: [56041] 64 <- i8042 (interrupt, 1, 12)
[   56.856775] i8042: [56043] 25 <- i8042 (interrupt, 1, 12)
[   56.858512] i8042: [56045] 8a <- i8042 (interrupt, 1, 12)
[   56.858543] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.859983] i8042: [56046] 31 <- i8042 (interrupt, 1, 12)
[   56.861562] i8042: [56048] c2 <- i8042 (interrupt, 1, 12)
[   56.863171] i8042: [56049] 8b <- i8042 (interrupt, 1, 12)
[   56.864809] i8042: [56051] 54 <- i8042 (interrupt, 1, 12)
[   56.866402] i8042: [56053] 25 <- i8042 (interrupt, 1, 12)
[   56.867973] i8042: [56054] 72 <- i8042 (interrupt, 1, 12)
[   56.868009] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.869553] i8042: [56056] 31 <- i8042 (interrupt, 1, 12)
[   56.871136] i8042: [56057] f2 <- i8042 (interrupt, 1, 12)
[   56.872641] i8042: [56059] 7f <- i8042 (interrupt, 1, 12)
[   56.874295] i8042: [56060] 64 <- i8042 (interrupt, 1, 12)
[   56.875859] i8042: [56062] 25 <- i8042 (interrupt, 1, 12)
[   56.877485] i8042: [56064] 60 <- i8042 (interrupt, 1, 12)
[   56.877519] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   56.877534] psmouse serio1: issuing reconnect request
[   56.877590] i8042: [56064] d4 -> i8042 (command)
[   56.877792] i8042: [56064] ff -> i8042 (parameter)
[   56.880603] i8042: [56067] fa <- i8042 (interrupt, 1, 12)
[   56.981652] i8042: [56168] aa <- i8042 (interrupt, 1, 12)
[   56.983227] i8042: [56169] 00 <- i8042 (interrupt, 1, 12)
[   56.983330] i8042: [56169] d4 -> i8042 (command)
[   56.983520] i8042: [56170] f6 -> i8042 (parameter)
[   56.986450] i8042: [56173] fa <- i8042 (interrupt, 1, 12)
[   56.986544] i8042: [56173] d4 -> i8042 (command)
[   56.986734] i8042: [56173] f5 -> i8042 (parameter)
[   56.989579] i8042: [56176] fa <- i8042 (interrupt, 1, 12)
[   56.989657] i8042: [56176] d4 -> i8042 (command)
[   56.990017] i8042: [56176] e6 -> i8042 (parameter)
[   56.992808] i8042: [56179] fa <- i8042 (interrupt, 1, 12)
[   56.992934] i8042: [56179] d4 -> i8042 (command)
[   56.993123] i8042: [56179] e6 -> i8042 (parameter)
[   56.996022] i8042: [56182] fa <- i8042 (interrupt, 1, 12)
[   56.996125] i8042: [56182] d4 -> i8042 (command)
[   56.996315] i8042: [56182] e6 -> i8042 (parameter)
[   56.999230] i8042: [56185] fa <- i8042 (interrupt, 1, 12)
[   56.999360] i8042: [56185] d4 -> i8042 (command)
[   56.999551] i8042: [56186] e9 -> i8042 (parameter)
[   57.002412] i8042: [56189] fa <- i8042 (interrupt, 1, 12)
[   57.003976] i8042: [56190] 3c <- i8042 (interrupt, 1, 12)
[   57.005563] i8042: [56192] 03 <- i8042 (interrupt, 1, 12)
[   57.007148] i8042: [56193] 00 <- i8042 (interrupt, 1, 12)
[   57.007252] i8042: [56193] d4 -> i8042 (command)
[   57.007441] i8042: [56194] e6 -> i8042 (parameter)
[   57.010357] i8042: [56196] fa <- i8042 (interrupt, 1, 12)
[   57.010459] i8042: [56197] d4 -> i8042 (command)
[   57.010649] i8042: [56197] e8 -> i8042 (parameter)
[   57.013547] i8042: [56200] fa <- i8042 (interrupt, 1, 12)
[   57.013649] i8042: [56200] d4 -> i8042 (command)
[   57.013839] i8042: [56200] 00 -> i8042 (parameter)
[   57.016746] i8042: [56203] fa <- i8042 (interrupt, 1, 12)
[   57.016848] i8042: [56203] d4 -> i8042 (command)
[   57.017038] i8042: [56203] e8 -> i8042 (parameter)
[   57.019938] i8042: [56206] fa <- i8042 (interrupt, 1, 12)
[   57.020039] i8042: [56206] d4 -> i8042 (command)
[   57.020228] i8042: [56206] 00 -> i8042 (parameter)
[   57.023126] i8042: [56209] fa <- i8042 (interrupt, 1, 12)
[   57.023206] i8042: [56209] d4 -> i8042 (command)
[   57.023395] i8042: [56209] e8 -> i8042 (parameter)
[   57.026315] i8042: [56212] fa <- i8042 (interrupt, 1, 12)
[   57.026449] i8042: [56213] d4 -> i8042 (command)
[   57.026640] i8042: [56213] 00 -> i8042 (parameter)
[   57.029517] i8042: [56216] fa <- i8042 (interrupt, 1, 12)
[   57.029618] i8042: [56216] d4 -> i8042 (command)
[   57.029807] i8042: [56216] e8 -> i8042 (parameter)
[   57.032712] i8042: [56219] fa <- i8042 (interrupt, 1, 12)
[   57.032812] i8042: [56219] d4 -> i8042 (command)
[   57.033002] i8042: [56219] 01 -> i8042 (parameter)
[   57.035908] i8042: [56222] fa <- i8042 (interrupt, 1, 12)
[   57.036011] i8042: [56222] d4 -> i8042 (command)
[   57.036200] i8042: [56222] e9 -> i8042 (parameter)
[   57.039104] i8042: [56225] fa <- i8042 (interrupt, 1, 12)
[   57.040681] i8042: [56227] 5e <- i8042 (interrupt, 1, 12)
[   57.042265] i8042: [56228] 0f <- i8042 (interrupt, 1, 12)
[   57.043840] i8042: [56230] 01 <- i8042 (interrupt, 1, 12)
[   57.043944] i8042: [56230] d4 -> i8042 (command)
[   57.044134] i8042: [56230] f8 -> i8042 (parameter)
[   57.047044] i8042: [56233] fa <- i8042 (interrupt, 1, 12)
[   57.047147] i8042: [56233] d4 -> i8042 (command)
[   57.047337] i8042: [56233] 00 -> i8042 (parameter)
[   57.050239] i8042: [56236] fa <- i8042 (interrupt, 1, 12)
[   57.050343] i8042: [56236] d4 -> i8042 (command)
[   57.050533] i8042: [56237] f8 -> i8042 (parameter)
[   57.053432] i8042: [56240] fa <- i8042 (interrupt, 1, 12)
[   57.053535] i8042: [56240] d4 -> i8042 (command)
[   57.053725] i8042: [56240] 07 -> i8042 (parameter)
[   57.056626] i8042: [56243] fa <- i8042 (interrupt, 1, 12)
[   57.056729] i8042: [56243] d4 -> i8042 (command)
[   57.056919] i8042: [56243] f8 -> i8042 (parameter)
[   57.059824] i8042: [56246] fa <- i8042 (interrupt, 1, 12)
[   57.059927] i8042: [56246] d4 -> i8042 (command)
[   57.060173] i8042: [56246] 00 -> i8042 (parameter)
[   57.063009] i8042: [56249] fa <- i8042 (interrupt, 1, 12)
[   57.063092] i8042: [56249] d4 -> i8042 (command)
[   57.063281] i8042: [56249] f8 -> i8042 (parameter)
[   57.066206] i8042: [56252] fa <- i8042 (interrupt, 1, 12)
[   57.066307] i8042: [56252] d4 -> i8042 (command)
[   57.066502] i8042: [56252] 01 -> i8042 (parameter)
[   57.069421] i8042: [56256] fa <- i8042 (interrupt, 1, 12)
[   57.069539] i8042: [56256] d4 -> i8042 (command)
[   57.069729] i8042: [56256] e6 -> i8042 (parameter)
[   57.072603] i8042: [56259] fa <- i8042 (interrupt, 1, 12)
[   57.072708] i8042: [56259] d4 -> i8042 (command)
[   57.072897] i8042: [56259] f3 -> i8042 (parameter)
[   57.075792] i8042: [56262] fa <- i8042 (interrupt, 1, 12)
[   57.075892] i8042: [56262] d4 -> i8042 (command)
[   57.076082] i8042: [56262] 64 -> i8042 (parameter)
[   57.079007] i8042: [56265] fa <- i8042 (interrupt, 1, 12)
[   57.079125] i8042: [56265] d4 -> i8042 (command)
[   57.079314] i8042: [56265] e8 -> i8042 (parameter)
[   57.082177] i8042: [56268] fa <- i8042 (interrupt, 1, 12)
[   57.082276] i8042: [56268] d4 -> i8042 (command)
[   57.082466] i8042: [56269] 03 -> i8042 (parameter)
[   57.085370] i8042: [56271] fa <- i8042 (interrupt, 1, 12)
[   57.085461] i8042: [56272] d4 -> i8042 (command)
[   57.085646] i8042: [56272] e6 -> i8042 (parameter)
[   57.088546] i8042: [56275] fa <- i8042 (interrupt, 1, 12)
[   57.088650] i8042: [56275] d4 -> i8042 (command)
[   57.088840] i8042: [56275] f4 -> i8042 (parameter)
[   57.091755] i8042: [56278] fa <- i8042 (interrupt, 1, 12)
[   57.112017] i8042: [56298] 08 <- i8042 (interrupt, 1, 12)
[   57.113603] i8042: [56300] 00 <- i8042 (interrupt, 1, 12)
[   57.115187] i8042: [56301] 00 <- i8042 (interrupt, 1, 12)
[   57.121814] i8042: [56308] 54 <- i8042 (interrupt, 1, 12)
[   57.123394] i8042: [56309] 01 <- i8042 (interrupt, 1, 12)
[   57.124981] i8042: [56311] 00 <- i8042 (interrupt, 1, 12)
[   57.125016] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.126576] i8042: [56313] 10 <- i8042 (interrupt, 1, 12)
[   57.128149] i8042: [56314] 00 <- i8042 (interrupt, 1, 12)
[   57.129651] i8042: [56316] 00 <- i8042 (interrupt, 1, 12)
[   57.131309] i8042: [56317] 54 <- i8042 (interrupt, 1, 12)
[   57.132883] i8042: [56319] 11 <- i8042 (interrupt, 1, 12)
[   57.134491] i8042: [56321] a4 <- i8042 (interrupt, 1, 12)
[   57.134527] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.136068] i8042: [56322] 31 <- i8042 (interrupt, 1, 12)
[   57.137582] i8042: [56324] f2 <- i8042 (interrupt, 1, 12)
[   57.139229] i8042: [56325] 35 <- i8042 (interrupt, 1, 12)
[   57.140813] i8042: [56327] 54 <- i8042 (interrupt, 1, 12)
[   57.142393] i8042: [56328] 21 <- i8042 (interrupt, 1, 12)
[   57.143957] i8042: [56330] a4 <- i8042 (interrupt, 1, 12)
[   57.143989] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.145557] i8042: [56332] 31 <- i8042 (interrupt, 1, 12)
[   57.147152] i8042: [56333] 42 <- i8042 (interrupt, 1, 12)
[   57.148733] i8042: [56335] 35 <- i8042 (interrupt, 1, 12)
[   57.150319] i8042: [56336] 64 <- i8042 (interrupt, 1, 12)
[   57.151877] i8042: [56338] 22 <- i8042 (interrupt, 1, 12)
[   57.153477] i8042: [56340] 3f <- i8042 (interrupt, 1, 12)
[   57.153513] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.155067] i8042: [56341] 31 <- i8042 (interrupt, 1, 12)
[   57.156607] i8042: [56343] 62 <- i8042 (interrupt, 1, 12)
[   57.158231] i8042: [56344] 44 <- i8042 (interrupt, 1, 12)
[   57.159783] i8042: [56346] 54 <- i8042 (interrupt, 1, 12)
[   57.161398] i8042: [56347] 22 <- i8042 (interrupt, 1, 12)
[   57.162974] i8042: [56349] 8f <- i8042 (interrupt, 1, 12)
[   57.163008] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.163022] psmouse serio1: issuing reconnect request
[   57.163117] i8042: [56349] d4 -> i8042 (command)
[   57.163308] i8042: [56349] ff -> i8042 (parameter)
[   57.166170] i8042: [56352] fa <- i8042 (interrupt, 1, 12)
[   57.267193] i8042: [56453] aa <- i8042 (interrupt, 1, 12)
[   57.268776] i8042: [56455] 00 <- i8042 (interrupt, 1, 12)
[   57.268879] i8042: [56455] d4 -> i8042 (command)
[   57.269125] i8042: [56455] f6 -> i8042 (parameter)
[   57.271987] i8042: [56458] fa <- i8042 (interrupt, 1, 12)
[   57.272090] i8042: [56458] d4 -> i8042 (command)
[   57.272279] i8042: [56458] f5 -> i8042 (parameter)
[   57.275180] i8042: [56461] fa <- i8042 (interrupt, 1, 12)
[   57.275281] i8042: [56461] d4 -> i8042 (command)
[   57.275471] i8042: [56462] e6 -> i8042 (parameter)
[   57.278380] i8042: [56464] fa <- i8042 (interrupt, 1, 12)
[   57.278483] i8042: [56465] d4 -> i8042 (command)
[   57.278730] i8042: [56465] e6 -> i8042 (parameter)
[   57.281562] i8042: [56468] fa <- i8042 (interrupt, 1, 12)
[   57.281665] i8042: [56468] d4 -> i8042 (command)
[   57.281854] i8042: [56468] e6 -> i8042 (parameter)
[   57.284775] i8042: [56471] fa <- i8042 (interrupt, 1, 12)
[   57.284878] i8042: [56471] d4 -> i8042 (command)
[   57.285067] i8042: [56471] e9 -> i8042 (parameter)
[   57.287958] i8042: [56474] fa <- i8042 (interrupt, 1, 12)
[   57.289560] i8042: [56476] 3c <- i8042 (interrupt, 1, 12)
[   57.291114] i8042: [56477] 03 <- i8042 (interrupt, 1, 12)
[   57.292616] i8042: [56479] 00 <- i8042 (interrupt, 1, 12)
[   57.292711] i8042: [56479] d4 -> i8042 (command)
[   57.292901] i8042: [56479] e6 -> i8042 (parameter)
[   57.295904] i8042: [56482] fa <- i8042 (interrupt, 1, 12)
[   57.296004] i8042: [56482] d4 -> i8042 (command)
[   57.296194] i8042: [56482] e8 -> i8042 (parameter)
[   57.299098] i8042: [56485] fa <- i8042 (interrupt, 1, 12)
[   57.299197] i8042: [56485] d4 -> i8042 (command)
[   57.299387] i8042: [56486] 00 -> i8042 (parameter)
[   57.302290] i8042: [56488] fa <- i8042 (interrupt, 1, 12)
[   57.302426] i8042: [56489] d4 -> i8042 (command)
[   57.302616] i8042: [56489] e8 -> i8042 (parameter)
[   57.305492] i8042: [56492] fa <- i8042 (interrupt, 1, 12)
[   57.305592] i8042: [56492] d4 -> i8042 (command)
[   57.305839] i8042: [56492] 00 -> i8042 (parameter)
[   57.308675] i8042: [56495] fa <- i8042 (interrupt, 1, 12)
[   57.308777] i8042: [56495] d4 -> i8042 (command)
[   57.308967] i8042: [56495] e8 -> i8042 (parameter)
[   57.311875] i8042: [56498] fa <- i8042 (interrupt, 1, 12)
[   57.312176] i8042: [56498] d4 -> i8042 (command)
[   57.312385] i8042: [56499] 00 -> i8042 (parameter)
[   57.315095] i8042: [56501] fa <- i8042 (interrupt, 1, 12)
[   57.315211] i8042: [56501] d4 -> i8042 (command)
[   57.315401] i8042: [56502] e8 -> i8042 (parameter)
[   57.318265] i8042: [56504] fa <- i8042 (interrupt, 1, 12)
[   57.318364] i8042: [56504] d4 -> i8042 (command)
[   57.318610] i8042: [56505] 01 -> i8042 (parameter)
[   57.321475] i8042: [56508] fa <- i8042 (interrupt, 1, 12)
[   57.321593] i8042: [56508] d4 -> i8042 (command)
[   57.321783] i8042: [56508] e9 -> i8042 (parameter)
[   57.324658] i8042: [56511] fa <- i8042 (interrupt, 1, 12)
[   57.326229] i8042: [56512] 5e <- i8042 (interrupt, 1, 12)
[   57.327802] i8042: [56514] 0f <- i8042 (interrupt, 1, 12)
[   57.329382] i8042: [56515] 01 <- i8042 (interrupt, 1, 12)
[   57.329482] i8042: [56516] d4 -> i8042 (command)
[   57.329673] i8042: [56516] f8 -> i8042 (parameter)
[   57.332597] i8042: [56519] fa <- i8042 (interrupt, 1, 12)
[   57.332699] i8042: [56519] d4 -> i8042 (command)
[   57.332889] i8042: [56519] 00 -> i8042 (parameter)
[   57.335772] i8042: [56522] fa <- i8042 (interrupt, 1, 12)
[   57.335874] i8042: [56522] d4 -> i8042 (command)
[   57.336064] i8042: [56522] f8 -> i8042 (parameter)
[   57.338968] i8042: [56525] fa <- i8042 (interrupt, 1, 12)
[   57.339072] i8042: [56525] d4 -> i8042 (command)
[   57.339262] i8042: [56525] 07 -> i8042 (parameter)
[   57.342161] i8042: [56528] fa <- i8042 (interrupt, 1, 12)
[   57.342264] i8042: [56528] d4 -> i8042 (command)
[   57.342454] i8042: [56529] f8 -> i8042 (parameter)
[   57.345366] i8042: [56531] fa <- i8042 (interrupt, 1, 12)
[   57.345470] i8042: [56532] d4 -> i8042 (command)
[   57.345717] i8042: [56532] 00 -> i8042 (parameter)
[   57.348570] i8042: [56535] fa <- i8042 (interrupt, 1, 12)
[   57.348689] i8042: [56535] d4 -> i8042 (command)
[   57.348878] i8042: [56535] f8 -> i8042 (parameter)
[   57.351749] i8042: [56538] fa <- i8042 (interrupt, 1, 12)
[   57.351852] i8042: [56538] d4 -> i8042 (command)
[   57.352098] i8042: [56538] 01 -> i8042 (parameter)
[   57.354963] i8042: [56541] fa <- i8042 (interrupt, 1, 12)
[   57.355088] i8042: [56541] d4 -> i8042 (command)
[   57.355289] i8042: [56541] e6 -> i8042 (parameter)
[   57.358155] i8042: [56544] fa <- i8042 (interrupt, 1, 12)
[   57.358278] i8042: [56544] d4 -> i8042 (command)
[   57.358467] i8042: [56545] f3 -> i8042 (parameter)
[   57.361338] i8042: [56547] fa <- i8042 (interrupt, 1, 12)
[   57.361439] i8042: [56548] d4 -> i8042 (command)
[   57.361628] i8042: [56548] 64 -> i8042 (parameter)
[   57.364527] i8042: [56551] fa <- i8042 (interrupt, 1, 12)
[   57.364630] i8042: [56551] d4 -> i8042 (command)
[   57.364876] i8042: [56551] e8 -> i8042 (parameter)
[   57.367720] i8042: [56554] fa <- i8042 (interrupt, 1, 12)
[   57.367820] i8042: [56554] d4 -> i8042 (command)
[   57.368009] i8042: [56554] 03 -> i8042 (parameter)
[   57.370916] i8042: [56557] fa <- i8042 (interrupt, 1, 12)
[   57.371019] i8042: [56557] d4 -> i8042 (command)
[   57.371266] i8042: [56557] e6 -> i8042 (parameter)
[   57.374112] i8042: [56560] fa <- i8042 (interrupt, 1, 12)
[   57.374215] i8042: [56560] d4 -> i8042 (command)
[   57.374462] i8042: [56561] f4 -> i8042 (parameter)
[   57.377307] i8042: [56563] fa <- i8042 (interrupt, 1, 12)
[   57.398556] i8042: [56585] 08 <- i8042 (interrupt, 1, 12)
[   57.400137] i8042: [56586] 00 <- i8042 (interrupt, 1, 12)
[   57.401726] i8042: [56588] 00 <- i8042 (interrupt, 1, 12)
[   57.408356] i8042: [56594] 54 <- i8042 (interrupt, 1, 12)
[   57.409931] i8042: [56596] 01 <- i8042 (interrupt, 1, 12)
[   57.411505] i8042: [56598] 00 <- i8042 (interrupt, 1, 12)
[   57.411542] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.413103] i8042: [56599] 10 <- i8042 (interrupt, 1, 12)
[   57.414686] i8042: [56601] 00 <- i8042 (interrupt, 1, 12)
[   57.416264] i8042: [56602] 00 <- i8042 (interrupt, 1, 12)
[   57.417852] i8042: [56604] 54 <- i8042 (interrupt, 1, 12)
[   57.419443] i8042: [56606] 11 <- i8042 (interrupt, 1, 12)
[   57.421033] i8042: [56607] 5c <- i8042 (interrupt, 1, 12)
[   57.421072] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.422570] i8042: [56609] 31 <- i8042 (interrupt, 1, 12)
[   57.424186] i8042: [56610] f2 <- i8042 (interrupt, 1, 12)
[   57.425741] i8042: [56612] 97 <- i8042 (interrupt, 1, 12)
[   57.427345] i8042: [56613] 54 <- i8042 (interrupt, 1, 12)
[   57.428931] i8042: [56615] 21 <- i8042 (interrupt, 1, 12)
[   57.430504] i8042: [56617] 5c <- i8042 (interrupt, 1, 12)
[   57.430543] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.432113] i8042: [56618] 31 <- i8042 (interrupt, 1, 12)
[   57.433681] i8042: [56620] 42 <- i8042 (interrupt, 1, 12)
[   57.435262] i8042: [56621] 97 <- i8042 (interrupt, 1, 12)
[   57.436846] i8042: [56623] 54 <- i8042 (interrupt, 1, 12)
[   57.438428] i8042: [56625] 21 <- i8042 (interrupt, 1, 12)
[   57.440009] i8042: [56626] 24 <- i8042 (interrupt, 1, 12)
[   57.440050] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.441535] i8042: [56628] 31 <- i8042 (interrupt, 1, 12)
[   57.443189] i8042: [56629] 62 <- i8042 (interrupt, 1, 12)
[   57.444747] i8042: [56631] 76 <- i8042 (interrupt, 1, 12)
[   57.446345] i8042: [56632] 54 <- i8042 (interrupt, 1, 12)
[   57.447922] i8042: [56634] 21 <- i8042 (interrupt, 1, 12)
[   57.449503] i8042: [56636] 1f <- i8042 (interrupt, 1, 12)
[   57.449542] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.449559] psmouse serio1: issuing reconnect request
[   57.449636] i8042: [56636] d4 -> i8042 (command)
[   57.449826] i8042: [56636] ff -> i8042 (parameter)
[   57.452711] i8042: [56639] fa <- i8042 (interrupt, 1, 12)
[   57.553679] i8042: [56740] aa <- i8042 (interrupt, 1, 12)
[   57.555330] i8042: [56741] 00 <- i8042 (interrupt, 1, 12)
[   57.555449] i8042: [56742] d4 -> i8042 (command)
[   57.555696] i8042: [56742] f6 -> i8042 (parameter)
[   57.558525] i8042: [56745] fa <- i8042 (interrupt, 1, 12)
[   57.558628] i8042: [56745] d4 -> i8042 (command)
[   57.558817] i8042: [56745] f5 -> i8042 (parameter)
[   57.561719] i8042: [56748] fa <- i8042 (interrupt, 1, 12)
[   57.561822] i8042: [56748] d4 -> i8042 (command)
[   57.562069] i8042: [56748] e6 -> i8042 (parameter)
[   57.564911] i8042: [56751] fa <- i8042 (interrupt, 1, 12)
[   57.565014] i8042: [56751] d4 -> i8042 (command)
[   57.565204] i8042: [56751] e6 -> i8042 (parameter)
[   57.568106] i8042: [56754] fa <- i8042 (interrupt, 1, 12)
[   57.568208] i8042: [56754] d4 -> i8042 (command)
[   57.568398] i8042: [56755] e6 -> i8042 (parameter)
[   57.571314] i8042: [56757] fa <- i8042 (interrupt, 1, 12)
[   57.571418] i8042: [56758] d4 -> i8042 (command)
[   57.571608] i8042: [56758] e9 -> i8042 (parameter)
[   57.574491] i8042: [56761] fa <- i8042 (interrupt, 1, 12)
[   57.576051] i8042: [56762] 3c <- i8042 (interrupt, 1, 12)
[   57.577645] i8042: [56764] 03 <- i8042 (interrupt, 1, 12)
[   57.579215] i8042: [56765] 00 <- i8042 (interrupt, 1, 12)
[   57.579316] i8042: [56765] d4 -> i8042 (command)
[   57.579563] i8042: [56766] e6 -> i8042 (parameter)
[   57.582450] i8042: [56769] fa <- i8042 (interrupt, 1, 12)
[   57.582526] i8042: [56769] d4 -> i8042 (command)
[   57.582716] i8042: [56769] e8 -> i8042 (parameter)
[   57.585559] i8042: [56772] fa <- i8042 (interrupt, 1, 12)
[   57.585831] i8042: [56772] d4 -> i8042 (command)
[   57.586023] i8042: [56772] 00 -> i8042 (parameter)
[   57.588706] i8042: [56775] fa <- i8042 (interrupt, 1, 12)
[   57.588911] i8042: [56775] d4 -> i8042 (command)
[   57.589102] i8042: [56775] e8 -> i8042 (parameter)
[   57.592001] i8042: [56778] fa <- i8042 (interrupt, 1, 12)
[   57.592081] i8042: [56778] d4 -> i8042 (command)
[   57.592270] i8042: [56778] 00 -> i8042 (parameter)
[   57.595215] i8042: [56781] fa <- i8042 (interrupt, 1, 12)
[   57.595293] i8042: [56781] d4 -> i8042 (command)
[   57.595483] i8042: [56781] e8 -> i8042 (parameter)
[   57.598394] i8042: [56784] fa <- i8042 (interrupt, 1, 12)
[   57.598506] i8042: [56785] d4 -> i8042 (command)
[   57.598695] i8042: [56785] 00 -> i8042 (parameter)
[   57.601535] i8042: [56788] fa <- i8042 (interrupt, 1, 12)
[   57.601633] i8042: [56788] d4 -> i8042 (command)
[   57.601881] i8042: [56788] e8 -> i8042 (parameter)
[   57.604787] i8042: [56791] fa <- i8042 (interrupt, 1, 12)
[   57.604866] i8042: [56791] d4 -> i8042 (command)
[   57.605056] i8042: [56791] 01 -> i8042 (parameter)
[   57.607987] i8042: [56794] fa <- i8042 (interrupt, 1, 12)
[   57.608068] i8042: [56794] d4 -> i8042 (command)
[   57.608314] i8042: [56794] e9 -> i8042 (parameter)
[   57.611173] i8042: [56797] fa <- i8042 (interrupt, 1, 12)
[   57.612750] i8042: [56799] 5e <- i8042 (interrupt, 1, 12)
[   57.614331] i8042: [56800] 0f <- i8042 (interrupt, 1, 12)
[   57.615917] i8042: [56802] 01 <- i8042 (interrupt, 1, 12)
[   57.616020] i8042: [56802] d4 -> i8042 (command)
[   57.616209] i8042: [56802] f8 -> i8042 (parameter)
[   57.619134] i8042: [56805] fa <- i8042 (interrupt, 1, 12)
[   57.619236] i8042: [56805] d4 -> i8042 (command)
[   57.619426] i8042: [56806] 00 -> i8042 (parameter)
[   57.622327] i8042: [56808] fa <- i8042 (interrupt, 1, 12)
[   57.622429] i8042: [56809] d4 -> i8042 (command)
[   57.622619] i8042: [56809] f8 -> i8042 (parameter)
[   57.625520] i8042: [56812] fa <- i8042 (interrupt, 1, 12)
[   57.625623] i8042: [56812] d4 -> i8042 (command)
[   57.625869] i8042: [56812] 07 -> i8042 (parameter)
[   57.628712] i8042: [56815] fa <- i8042 (interrupt, 1, 12)
[   57.628815] i8042: [56815] d4 -> i8042 (command)
[   57.629004] i8042: [56815] f8 -> i8042 (parameter)
[   57.631909] i8042: [56818] fa <- i8042 (interrupt, 1, 12)
[   57.632012] i8042: [56818] d4 -> i8042 (command)
[   57.632202] i8042: [56818] 00 -> i8042 (parameter)
[   57.635093] i8042: [56821] fa <- i8042 (interrupt, 1, 12)
[   57.635195] i8042: [56821] d4 -> i8042 (command)
[   57.635385] i8042: [56822] f8 -> i8042 (parameter)
[   57.638274] i8042: [56824] fa <- i8042 (interrupt, 1, 12)
[   57.638378] i8042: [56824] d4 -> i8042 (command)
[   57.638624] i8042: [56825] 01 -> i8042 (parameter)
[   57.641471] i8042: [56828] fa <- i8042 (interrupt, 1, 12)
[   57.641573] i8042: [56828] d4 -> i8042 (command)
[   57.641763] i8042: [56828] e6 -> i8042 (parameter)
[   57.644665] i8042: [56831] fa <- i8042 (interrupt, 1, 12)
[   57.644769] i8042: [56831] d4 -> i8042 (command)
[   57.644959] i8042: [56831] f3 -> i8042 (parameter)
[   57.647855] i8042: [56834] fa <- i8042 (interrupt, 1, 12)
[   57.647955] i8042: [56834] d4 -> i8042 (command)
[   57.648144] i8042: [56834] 64 -> i8042 (parameter)
[   57.651050] i8042: [56837] fa <- i8042 (interrupt, 1, 12)
[   57.651153] i8042: [56837] d4 -> i8042 (command)
[   57.651398] i8042: [56838] e8 -> i8042 (parameter)
[   57.654241] i8042: [56840] fa <- i8042 (interrupt, 1, 12)
[   57.654342] i8042: [56840] d4 -> i8042 (command)
[   57.654532] i8042: [56841] 03 -> i8042 (parameter)
[   57.657440] i8042: [56844] fa <- i8042 (interrupt, 1, 12)
[   57.657542] i8042: [56844] d4 -> i8042 (command)
[   57.657732] i8042: [56844] e6 -> i8042 (parameter)
[   57.660642] i8042: [56847] fa <- i8042 (interrupt, 1, 12)
[   57.660745] i8042: [56847] d4 -> i8042 (command)
[   57.660992] i8042: [56847] f4 -> i8042 (parameter)
[   57.663832] i8042: [56850] fa <- i8042 (interrupt, 1, 12)
[   57.684578] i8042: [56871] 08 <- i8042 (interrupt, 1, 12)
[   57.686152] i8042: [56872] 00 <- i8042 (interrupt, 1, 12)
[   57.687728] i8042: [56874] 00 <- i8042 (interrupt, 1, 12)
[   57.694376] i8042: [56880] 64 <- i8042 (interrupt, 1, 12)
[   57.695948] i8042: [56882] 01 <- i8042 (interrupt, 1, 12)
[   57.697512] i8042: [56884] 00 <- i8042 (interrupt, 1, 12)
[   57.697551] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.699109] i8042: [56885] 10 <- i8042 (interrupt, 1, 12)
[   57.700644] i8042: [56887] 00 <- i8042 (interrupt, 1, 12)
[   57.702281] i8042: [56888] 00 <- i8042 (interrupt, 1, 12)
[   57.703869] i8042: [56890] 64 <- i8042 (interrupt, 1, 12)
[   57.705359] i8042: [56891] 23 <- i8042 (interrupt, 1, 12)
[   57.707032] i8042: [56893] 94 <- i8042 (interrupt, 1, 12)
[   57.707073] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.708622] i8042: [56895] 31 <- i8042 (interrupt, 1, 12)
[   57.710204] i8042: [56896] 42 <- i8042 (interrupt, 1, 12)
[   57.711805] i8042: [56898] f8 <- i8042 (interrupt, 1, 12)
[   57.713363] i8042: [56899] 54 <- i8042 (interrupt, 1, 12)
[   57.714955] i8042: [56901] 23 <- i8042 (interrupt, 1, 12)
[   57.716544] i8042: [56903] 94 <- i8042 (interrupt, 1, 12)
[   57.716584] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.718116] i8042: [56904] 31 <- i8042 (interrupt, 1, 12)
[   57.719638] i8042: [56906] 72 <- i8042 (interrupt, 1, 12)
[   57.721277] i8042: [56907] f8 <- i8042 (interrupt, 1, 12)
[   57.722865] i8042: [56909] 54 <- i8042 (interrupt, 1, 12)
[   57.724443] i8042: [56911] 23 <- i8042 (interrupt, 1, 12)
[   57.726040] i8042: [56912] 56 <- i8042 (interrupt, 1, 12)
[   57.726080] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.727610] i8042: [56914] 31 <- i8042 (interrupt, 1, 12)
[   57.729194] i8042: [56915] a3 <- i8042 (interrupt, 1, 12)
[   57.730781] i8042: [56917] 00 <- i8042 (interrupt, 1, 12)
[   57.732354] i8042: [56918] 54 <- i8042 (interrupt, 1, 12)
[   57.733939] i8042: [56920] 23 <- i8042 (interrupt, 1, 12)
[   57.735506] i8042: [56922] 0a <- i8042 (interrupt, 1, 12)
[   57.735546] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.735563] psmouse serio1: issuing reconnect request
[   57.735641] i8042: [56922] d4 -> i8042 (command)
[   57.735831] i8042: [56922] ff -> i8042 (parameter)
[   57.738727] i8042: [56925] fa <- i8042 (interrupt, 1, 12)
[   57.839780] i8042: [57026] aa <- i8042 (interrupt, 1, 12)
[   57.841330] i8042: [57027] 00 <- i8042 (interrupt, 1, 12)
[   57.841438] i8042: [57028] d4 -> i8042 (command)
[   57.841628] i8042: [57028] f6 -> i8042 (parameter)
[   57.844553] i8042: [57031] fa <- i8042 (interrupt, 1, 12)
[   57.844654] i8042: [57031] d4 -> i8042 (command)
[   57.844844] i8042: [57031] f5 -> i8042 (parameter)
[   57.847750] i8042: [57034] fa <- i8042 (interrupt, 1, 12)
[   57.847852] i8042: [57034] d4 -> i8042 (command)
[   57.848098] i8042: [57034] e6 -> i8042 (parameter)
[   57.850942] i8042: [57037] fa <- i8042 (interrupt, 1, 12)
[   57.851044] i8042: [57037] d4 -> i8042 (command)
[   57.851234] i8042: [57037] e6 -> i8042 (parameter)
[   57.854110] i8042: [57040] fa <- i8042 (interrupt, 1, 12)
[   57.854225] i8042: [57040] d4 -> i8042 (command)
[   57.854415] i8042: [57041] e6 -> i8042 (parameter)
[   57.857337] i8042: [57043] fa <- i8042 (interrupt, 1, 12)
[   57.857439] i8042: [57044] d4 -> i8042 (command)
[   57.857629] i8042: [57044] e9 -> i8042 (parameter)
[   57.860528] i8042: [57047] fa <- i8042 (interrupt, 1, 12)
[   57.862091] i8042: [57048] 3c <- i8042 (interrupt, 1, 12)
[   57.863669] i8042: [57050] 03 <- i8042 (interrupt, 1, 12)
[   57.865251] i8042: [57051] 00 <- i8042 (interrupt, 1, 12)
[   57.865352] i8042: [57051] d4 -> i8042 (command)
[   57.865542] i8042: [57052] e6 -> i8042 (parameter)
[   57.868468] i8042: [57055] fa <- i8042 (interrupt, 1, 12)
[   57.868568] i8042: [57055] d4 -> i8042 (command)
[   57.868758] i8042: [57055] e8 -> i8042 (parameter)
[   57.871661] i8042: [57058] fa <- i8042 (interrupt, 1, 12)
[   57.871760] i8042: [57058] d4 -> i8042 (command)
[   57.871949] i8042: [57058] 00 -> i8042 (parameter)
[   57.874857] i8042: [57061] fa <- i8042 (interrupt, 1, 12)
[   57.874958] i8042: [57061] d4 -> i8042 (command)
[   57.875147] i8042: [57061] e8 -> i8042 (parameter)
[   57.878050] i8042: [57064] fa <- i8042 (interrupt, 1, 12)
[   57.878149] i8042: [57064] d4 -> i8042 (command)
[   57.878339] i8042: [57064] 00 -> i8042 (parameter)
[   57.881244] i8042: [57067] fa <- i8042 (interrupt, 1, 12)
[   57.881344] i8042: [57067] d4 -> i8042 (command)
[   57.881591] i8042: [57068] e8 -> i8042 (parameter)
[   57.884439] i8042: [57071] fa <- i8042 (interrupt, 1, 12)
[   57.884537] i8042: [57071] d4 -> i8042 (command)
[   57.884727] i8042: [57071] 00 -> i8042 (parameter)
[   57.887636] i8042: [57074] fa <- i8042 (interrupt, 1, 12)
[   57.887737] i8042: [57074] d4 -> i8042 (command)
[   57.888154] i8042: [57074] e8 -> i8042 (parameter)
[   57.890830] i8042: [57077] fa <- i8042 (interrupt, 1, 12)
[   57.890929] i8042: [57077] d4 -> i8042 (command)
[   57.891119] i8042: [57077] 01 -> i8042 (parameter)
[   57.894019] i8042: [57080] fa <- i8042 (interrupt, 1, 12)
[   57.894121] i8042: [57080] d4 -> i8042 (command)
[   57.894311] i8042: [57080] e9 -> i8042 (parameter)
[   57.897202] i8042: [57083] fa <- i8042 (interrupt, 1, 12)
[   57.898736] i8042: [57085] 5e <- i8042 (interrupt, 1, 12)
[   57.900357] i8042: [57086] 0f <- i8042 (interrupt, 1, 12)
[   57.901933] i8042: [57088] 01 <- i8042 (interrupt, 1, 12)
[   57.902036] i8042: [57088] d4 -> i8042 (command)
[   57.902225] i8042: [57088] f8 -> i8042 (parameter)
[   57.905140] i8042: [57091] fa <- i8042 (interrupt, 1, 12)
[   57.905224] i8042: [57091] d4 -> i8042 (command)
[   57.905471] i8042: [57092] 00 -> i8042 (parameter)
[   57.908344] i8042: [57094] fa <- i8042 (interrupt, 1, 12)
[   57.908459] i8042: [57095] d4 -> i8042 (command)
[   57.908649] i8042: [57095] f8 -> i8042 (parameter)
[   57.911549] i8042: [57098] fa <- i8042 (interrupt, 1, 12)
[   57.911651] i8042: [57098] d4 -> i8042 (command)
[   57.911841] i8042: [57098] 07 -> i8042 (parameter)
[   57.914742] i8042: [57101] fa <- i8042 (interrupt, 1, 12)
[   57.914844] i8042: [57101] d4 -> i8042 (command)
[   57.915091] i8042: [57101] f8 -> i8042 (parameter)
[   57.917942] i8042: [57104] fa <- i8042 (interrupt, 1, 12)
[   57.918044] i8042: [57104] d4 -> i8042 (command)
[   57.918234] i8042: [57104] 00 -> i8042 (parameter)
[   57.921131] i8042: [57107] fa <- i8042 (interrupt, 1, 12)
[   57.921234] i8042: [57107] d4 -> i8042 (command)
[   57.921424] i8042: [57108] f8 -> i8042 (parameter)
[   57.924326] i8042: [57110] fa <- i8042 (interrupt, 1, 12)
[   57.924428] i8042: [57111] d4 -> i8042 (command)
[   57.924617] i8042: [57111] 01 -> i8042 (parameter)
[   57.927520] i8042: [57114] fa <- i8042 (interrupt, 1, 12)
[   57.927623] i8042: [57114] d4 -> i8042 (command)
[   57.927869] i8042: [57114] e6 -> i8042 (parameter)
[   57.930726] i8042: [57117] fa <- i8042 (interrupt, 1, 12)
[   57.930831] i8042: [57117] d4 -> i8042 (command)
[   57.931021] i8042: [57117] f3 -> i8042 (parameter)
[   57.933917] i8042: [57120] fa <- i8042 (interrupt, 1, 12)
[   57.934016] i8042: [57120] d4 -> i8042 (command)
[   57.934206] i8042: [57120] 64 -> i8042 (parameter)
[   57.937095] i8042: [57123] fa <- i8042 (interrupt, 1, 12)
[   57.937198] i8042: [57123] d4 -> i8042 (command)
[   57.937445] i8042: [57124] e8 -> i8042 (parameter)
[   57.940279] i8042: [57126] fa <- i8042 (interrupt, 1, 12)
[   57.940378] i8042: [57126] d4 -> i8042 (command)
[   57.940568] i8042: [57127] 03 -> i8042 (parameter)
[   57.943474] i8042: [57130] fa <- i8042 (interrupt, 1, 12)
[   57.943577] i8042: [57130] d4 -> i8042 (command)
[   57.943767] i8042: [57130] e6 -> i8042 (parameter)
[   57.946670] i8042: [57133] fa <- i8042 (interrupt, 1, 12)
[   57.946772] i8042: [57133] d4 -> i8042 (command)
[   57.946962] i8042: [57133] f4 -> i8042 (parameter)
[   57.949869] i8042: [57136] fa <- i8042 (interrupt, 1, 12)
[   57.970102] i8042: [57156] 08 <- i8042 (interrupt, 1, 12)
[   57.971628] i8042: [57158] 00 <- i8042 (interrupt, 1, 12)
[   57.973238] i8042: [57159] 00 <- i8042 (interrupt, 1, 12)
[   57.979872] i8042: [57166] 54 <- i8042 (interrupt, 1, 12)
[   57.981493] i8042: [57168] 01 <- i8042 (interrupt, 1, 12)
[   57.983065] i8042: [57169] 00 <- i8042 (interrupt, 1, 12)
[   57.983104] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.984587] i8042: [57171] 10 <- i8042 (interrupt, 1, 12)
[   57.986171] i8042: [57172] 00 <- i8042 (interrupt, 1, 12)
[   57.987713] i8042: [57174] 00 <- i8042 (interrupt, 1, 12)
[   57.989292] i8042: [57175] 54 <- i8042 (interrupt, 1, 12)
[   57.990871] i8042: [57177] 23 <- i8042 (interrupt, 1, 12)
[   57.992454] i8042: [57179] 57 <- i8042 (interrupt, 1, 12)
[   57.992469] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   57.994128] i8042: [57180] 31 <- i8042 (interrupt, 1, 12)
[   57.995706] i8042: [57182] 22 <- i8042 (interrupt, 1, 12)
[   57.997324] i8042: [57183] cb <- i8042 (interrupt, 1, 12)
[   57.998809] i8042: [57185] 64 <- i8042 (interrupt, 1, 12)
[   58.000484] i8042: [57187] 23 <- i8042 (interrupt, 1, 12)
[   58.002054] i8042: [57188] 57 <- i8042 (interrupt, 1, 12)
[   58.002080] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.003564] i8042: [57190] 31 <- i8042 (interrupt, 1, 12)
[   58.005234] i8042: [57191] 72 <- i8042 (interrupt, 1, 12)
[   58.006820] i8042: [57193] cb <- i8042 (interrupt, 1, 12)
[   58.008396] i8042: [57194] 64 <- i8042 (interrupt, 1, 12)
[   58.009994] i8042: [57196] 24 <- i8042 (interrupt, 1, 12)
[   58.011543] i8042: [57198] 01 <- i8042 (interrupt, 1, 12)
[   58.011582] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.013147] i8042: [57199] 31 <- i8042 (interrupt, 1, 12)
[   58.014737] i8042: [57201] c2 <- i8042 (interrupt, 1, 12)
[   58.016312] i8042: [57202] e6 <- i8042 (interrupt, 1, 12)
[   58.017904] i8042: [57204] 64 <- i8042 (interrupt, 1, 12)
[   58.019495] i8042: [57206] 24 <- i8042 (interrupt, 1, 12)
[   58.021077] i8042: [57207] 50 <- i8042 (interrupt, 1, 12)
[   58.021115] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.021130] psmouse serio1: issuing reconnect request
[   58.021233] i8042: [57207] d4 -> i8042 (command)
[   58.021423] i8042: [57208] ff -> i8042 (parameter)
[   58.024278] i8042: [57210] fa <- i8042 (interrupt, 1, 12)
[   58.125290] i8042: [57311] aa <- i8042 (interrupt, 1, 12)
[   58.126857] i8042: [57313] 00 <- i8042 (interrupt, 1, 12)
[   58.126960] i8042: [57313] d4 -> i8042 (command)
[   58.127149] i8042: [57313] f6 -> i8042 (parameter)
[   58.130065] i8042: [57316] fa <- i8042 (interrupt, 1, 12)
[   58.130169] i8042: [57316] d4 -> i8042 (command)
[   58.130359] i8042: [57316] f5 -> i8042 (parameter)
[   58.133275] i8042: [57319] fa <- i8042 (interrupt, 1, 12)
[   58.133379] i8042: [57319] d4 -> i8042 (command)
[   58.133568] i8042: [57320] e6 -> i8042 (parameter)
[   58.136471] i8042: [57323] fa <- i8042 (interrupt, 1, 12)
[   58.136574] i8042: [57323] d4 -> i8042 (command)
[   58.136764] i8042: [57323] e6 -> i8042 (parameter)
[   58.139666] i8042: [57326] fa <- i8042 (interrupt, 1, 12)
[   58.139769] i8042: [57326] d4 -> i8042 (command)
[   58.140016] i8042: [57326] e6 -> i8042 (parameter)
[   58.142877] i8042: [57329] fa <- i8042 (interrupt, 1, 12)
[   58.142980] i8042: [57329] d4 -> i8042 (command)
[   58.143169] i8042: [57329] e9 -> i8042 (parameter)
[   58.146058] i8042: [57332] fa <- i8042 (interrupt, 1, 12)
[   58.147571] i8042: [57334] 3c <- i8042 (interrupt, 1, 12)
[   58.149209] i8042: [57335] 03 <- i8042 (interrupt, 1, 12)
[   58.150781] i8042: [57337] 00 <- i8042 (interrupt, 1, 12)
[   58.150883] i8042: [57337] d4 -> i8042 (command)
[   58.151072] i8042: [57337] e6 -> i8042 (parameter)
[   58.154003] i8042: [57340] fa <- i8042 (interrupt, 1, 12)
[   58.154105] i8042: [57340] d4 -> i8042 (command)
[   58.154295] i8042: [57340] e8 -> i8042 (parameter)
[   58.157196] i8042: [57343] fa <- i8042 (interrupt, 1, 12)
[   58.157296] i8042: [57343] d4 -> i8042 (command)
[   58.157486] i8042: [57344] 00 -> i8042 (parameter)
[   58.160395] i8042: [57346] fa <- i8042 (interrupt, 1, 12)
[   58.160497] i8042: [57347] d4 -> i8042 (command)
[   58.160744] i8042: [57347] e8 -> i8042 (parameter)
[   58.163578] i8042: [57350] fa <- i8042 (interrupt, 1, 12)
[   58.163678] i8042: [57350] d4 -> i8042 (command)
[   58.163868] i8042: [57350] 00 -> i8042 (parameter)
[   58.166778] i8042: [57353] fa <- i8042 (interrupt, 1, 12)
[   58.166880] i8042: [57353] d4 -> i8042 (command)
[   58.167126] i8042: [57353] e8 -> i8042 (parameter)
[   58.169971] i8042: [57356] fa <- i8042 (interrupt, 1, 12)
[   58.170071] i8042: [57356] d4 -> i8042 (command)
[   58.170261] i8042: [57356] 00 -> i8042 (parameter)
[   58.173165] i8042: [57359] fa <- i8042 (interrupt, 1, 12)
[   58.173267] i8042: [57359] d4 -> i8042 (command)
[   58.173457] i8042: [57360] e8 -> i8042 (parameter)
[   58.176351] i8042: [57362] fa <- i8042 (interrupt, 1, 12)
[   58.176457] i8042: [57363] d4 -> i8042 (command)
[   58.176647] i8042: [57363] 01 -> i8042 (parameter)
[   58.179558] i8042: [57366] fa <- i8042 (interrupt, 1, 12)
[   58.179661] i8042: [57366] d4 -> i8042 (command)
[   58.179851] i8042: [57366] e9 -> i8042 (parameter)
[   58.182709] i8042: [57369] fa <- i8042 (interrupt, 1, 12)
[   58.184322] i8042: [57370] 5e <- i8042 (interrupt, 1, 12)
[   58.185893] i8042: [57372] 0f <- i8042 (interrupt, 1, 12)
[   58.187601] i8042: [57374] 01 <- i8042 (interrupt, 1, 12)
[   58.187705] i8042: [57374] d4 -> i8042 (command)
[   58.187895] i8042: [57374] f8 -> i8042 (parameter)
[   58.190683] i8042: [57377] fa <- i8042 (interrupt, 1, 12)
[   58.190808] i8042: [57377] d4 -> i8042 (command)
[   58.191008] i8042: [57377] 00 -> i8042 (parameter)
[   58.193899] i8042: [57380] fa <- i8042 (interrupt, 1, 12)
[   58.194020] i8042: [57380] d4 -> i8042 (command)
[   58.194267] i8042: [57380] f8 -> i8042 (parameter)
[   58.197071] i8042: [57383] fa <- i8042 (interrupt, 1, 12)
[   58.197175] i8042: [57383] d4 -> i8042 (command)
[   58.197364] i8042: [57383] 07 -> i8042 (parameter)
[   58.200266] i8042: [57386] fa <- i8042 (interrupt, 1, 12)
[   58.200369] i8042: [57386] d4 -> i8042 (command)
[   58.200559] i8042: [57387] f8 -> i8042 (parameter)
[   58.203490] i8042: [57389] fa <- i8042 (interrupt, 1, 12)
[   58.203567] i8042: [57390] d4 -> i8042 (command)
[   58.203756] i8042: [57390] 00 -> i8042 (parameter)
[   58.206553] i8042: [57393] fa <- i8042 (interrupt, 1, 12)
[   58.206806] i8042: [57393] d4 -> i8042 (command)
[   58.206996] i8042: [57393] f8 -> i8042 (parameter)
[   58.209859] i8042: [57396] fa <- i8042 (interrupt, 1, 12)
[   58.209943] i8042: [57396] d4 -> i8042 (command)
[   58.210132] i8042: [57396] 01 -> i8042 (parameter)
[   58.213052] i8042: [57399] fa <- i8042 (interrupt, 1, 12)
[   58.213153] i8042: [57399] d4 -> i8042 (command)
[   58.213342] i8042: [57399] e6 -> i8042 (parameter)
[   58.216269] i8042: [57402] fa <- i8042 (interrupt, 1, 12)
[   58.216373] i8042: [57402] d4 -> i8042 (command)
[   58.216563] i8042: [57403] f3 -> i8042 (parameter)
[   58.219453] i8042: [57406] fa <- i8042 (interrupt, 1, 12)
[   58.219551] i8042: [57406] d4 -> i8042 (command)
[   58.219741] i8042: [57406] 64 -> i8042 (parameter)
[   58.222538] i8042: [57409] fa <- i8042 (interrupt, 1, 12)
[   58.222617] i8042: [57409] d4 -> i8042 (command)
[   58.222806] i8042: [57409] e8 -> i8042 (parameter)
[   58.225823] i8042: [57412] fa <- i8042 (interrupt, 1, 12)
[   58.225897] i8042: [57412] d4 -> i8042 (command)
[   58.226081] i8042: [57412] 03 -> i8042 (parameter)
[   58.229022] i8042: [57415] fa <- i8042 (interrupt, 1, 12)
[   58.229097] i8042: [57415] d4 -> i8042 (command)
[   58.229295] i8042: [57415] e6 -> i8042 (parameter)
[   58.232235] i8042: [57418] fa <- i8042 (interrupt, 1, 12)
[   58.232311] i8042: [57418] d4 -> i8042 (command)
[   58.232508] i8042: [57418] f4 -> i8042 (parameter)
[   58.235445] i8042: [57422] fa <- i8042 (interrupt, 1, 12)
[   58.256673] i8042: [57443] 08 <- i8042 (interrupt, 1, 12)
[   58.258244] i8042: [57444] 00 <- i8042 (interrupt, 1, 12)
[   58.259838] i8042: [57446] 00 <- i8042 (interrupt, 1, 12)
[   58.266483] i8042: [57453] 54 <- i8042 (interrupt, 1, 12)
[   58.268040] i8042: [57454] 01 <- i8042 (interrupt, 1, 12)
[   58.269627] i8042: [57456] 00 <- i8042 (interrupt, 1, 12)
[   58.269666] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.271214] i8042: [57457] 10 <- i8042 (interrupt, 1, 12)
[   58.272800] i8042: [57459] 00 <- i8042 (interrupt, 1, 12)
[   58.274382] i8042: [57460] 00 <- i8042 (interrupt, 1, 12)
[   58.275964] i8042: [57462] 54 <- i8042 (interrupt, 1, 12)
[   58.277564] i8042: [57464] 13 <- i8042 (interrupt, 1, 12)
[   58.279141] i8042: [57465] 35 <- i8042 (interrupt, 1, 12)
[   58.279177] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.280688] i8042: [57467] 31 <- i8042 (interrupt, 1, 12)
[   58.282314] i8042: [57468] c2 <- i8042 (interrupt, 1, 12)
[   58.283901] i8042: [57470] 04 <- i8042 (interrupt, 1, 12)
[   58.285494] i8042: [57472] 54 <- i8042 (interrupt, 1, 12)
[   58.287035] i8042: [57473] 23 <- i8042 (interrupt, 1, 12)
[   58.288619] i8042: [57475] 35 <- i8042 (interrupt, 1, 12)
[   58.288650] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.290224] i8042: [57476] 31 <- i8042 (interrupt, 1, 12)
[   58.291778] i8042: [57478] 02 <- i8042 (interrupt, 1, 12)
[   58.293390] i8042: [57479] 04 <- i8042 (interrupt, 1, 12)
[   58.294982] i8042: [57481] 54 <- i8042 (interrupt, 1, 12)
[   58.296597] i8042: [57483] 23 <- i8042 (interrupt, 1, 12)
[   58.298148] i8042: [57484] 35 <- i8042 (interrupt, 1, 12)
[   58.298184] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.299678] i8042: [57486] 31 <- i8042 (interrupt, 1, 12)
[   58.301306] i8042: [57487] 42 <- i8042 (interrupt, 1, 12)
[   58.302885] i8042: [57489] 04 <- i8042 (interrupt, 1, 12)
[   58.304468] i8042: [57491] 54 <- i8042 (interrupt, 1, 12)
[   58.306050] i8042: [57492] 23 <- i8042 (interrupt, 1, 12)
[   58.307639] i8042: [57494] 35 <- i8042 (interrupt, 1, 12)
[   58.307675] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.307689] psmouse serio1: issuing reconnect request
[   58.307798] i8042: [57494] d4 -> i8042 (command)
[   58.308046] i8042: [57494] ff -> i8042 (parameter)
[   58.310910] i8042: [57497] fa <- i8042 (interrupt, 1, 12)
[   58.411948] i8042: [57598] aa <- i8042 (interrupt, 1, 12)
[   58.413495] i8042: [57600] 00 <- i8042 (interrupt, 1, 12)
[   58.413597] i8042: [57600] d4 -> i8042 (command)
[   58.413786] i8042: [57600] f6 -> i8042 (parameter)
[   58.416716] i8042: [57603] fa <- i8042 (interrupt, 1, 12)
[   58.416816] i8042: [57603] d4 -> i8042 (command)
[   58.417006] i8042: [57603] f5 -> i8042 (parameter)
[   58.419898] i8042: [57606] fa <- i8042 (interrupt, 1, 12)
[   58.420000] i8042: [57606] d4 -> i8042 (command)
[   58.420190] i8042: [57606] e6 -> i8042 (parameter)
[   58.423113] i8042: [57609] fa <- i8042 (interrupt, 1, 12)
[   58.423189] i8042: [57609] d4 -> i8042 (command)
[   58.423383] i8042: [57609] e6 -> i8042 (parameter)
[   58.426262] i8042: [57612] fa <- i8042 (interrupt, 1, 12)
[   58.426339] i8042: [57612] d4 -> i8042 (command)
[   58.426527] i8042: [57612] e6 -> i8042 (parameter)
[   58.429479] i8042: [57616] fa <- i8042 (interrupt, 1, 12)
[   58.429572] i8042: [57616] d4 -> i8042 (command)
[   58.429818] i8042: [57616] e9 -> i8042 (parameter)
[   58.432688] i8042: [57619] fa <- i8042 (interrupt, 1, 12)
[   58.434253] i8042: [57620] 3c <- i8042 (interrupt, 1, 12)
[   58.435840] i8042: [57622] 03 <- i8042 (interrupt, 1, 12)
[   58.437435] i8042: [57624] 00 <- i8042 (interrupt, 1, 12)
[   58.437536] i8042: [57624] d4 -> i8042 (command)
[   58.437726] i8042: [57624] e6 -> i8042 (parameter)
[   58.440641] i8042: [57627] fa <- i8042 (interrupt, 1, 12)
[   58.440741] i8042: [57627] d4 -> i8042 (command)
[   58.440931] i8042: [57627] e8 -> i8042 (parameter)
[   58.443834] i8042: [57630] fa <- i8042 (interrupt, 1, 12)
[   58.443932] i8042: [57630] d4 -> i8042 (command)
[   58.444122] i8042: [57630] 00 -> i8042 (parameter)
[   58.447033] i8042: [57633] fa <- i8042 (interrupt, 1, 12)
[   58.447133] i8042: [57633] d4 -> i8042 (command)
[   58.447380] i8042: [57634] e8 -> i8042 (parameter)
[   58.450212] i8042: [57636] fa <- i8042 (interrupt, 1, 12)
[   58.450311] i8042: [57636] d4 -> i8042 (command)
[   58.450500] i8042: [57637] 00 -> i8042 (parameter)
[   58.453413] i8042: [57640] fa <- i8042 (interrupt, 1, 12)
[   58.453513] i8042: [57640] d4 -> i8042 (command)
[   58.453703] i8042: [57640] e8 -> i8042 (parameter)
[   58.456535] i8042: [57643] fa <- i8042 (interrupt, 1, 12)
[   58.456632] i8042: [57643] d4 -> i8042 (command)
[   58.456822] i8042: [57643] 00 -> i8042 (parameter)
[   58.459802] i8042: [57646] fa <- i8042 (interrupt, 1, 12)
[   58.459883] i8042: [57646] d4 -> i8042 (command)
[   58.460073] i8042: [57646] e8 -> i8042 (parameter)
[   58.462991] i8042: [57649] fa <- i8042 (interrupt, 1, 12)
[   58.463089] i8042: [57649] d4 -> i8042 (command)
[   58.463279] i8042: [57649] 01 -> i8042 (parameter)
[   58.466208] i8042: [57652] fa <- i8042 (interrupt, 1, 12)
[   58.466309] i8042: [57652] d4 -> i8042 (command)
[   58.466499] i8042: [57653] e9 -> i8042 (parameter)
[   58.469401] i8042: [57656] fa <- i8042 (interrupt, 1, 12)
[   58.470958] i8042: [57657] 5e <- i8042 (interrupt, 1, 12)
[   58.472517] i8042: [57659] 0f <- i8042 (interrupt, 1, 12)
[   58.474100] i8042: [57660] 01 <- i8042 (interrupt, 1, 12)
[   58.474206] i8042: [57660] d4 -> i8042 (command)
[   58.474395] i8042: [57661] f8 -> i8042 (parameter)
[   58.477297] i8042: [57663] fa <- i8042 (interrupt, 1, 12)
[   58.477433] i8042: [57664] d4 -> i8042 (command)
[   58.477624] i8042: [57664] 00 -> i8042 (parameter)
[   58.480494] i8042: [57667] fa <- i8042 (interrupt, 1, 12)
[   58.480596] i8042: [57667] d4 -> i8042 (command)
[   58.480786] i8042: [57667] f8 -> i8042 (parameter)
[   58.483737] i8042: [57670] fa <- i8042 (interrupt, 1, 12)
[   58.483840] i8042: [57670] d4 -> i8042 (command)
[   58.484087] i8042: [57670] 07 -> i8042 (parameter)
[   58.486810] i8042: [57673] fa <- i8042 (interrupt, 1, 12)
[   58.486845] i8042: [57673] d4 -> i8042 (command)
[   58.487087] i8042: [57673] f8 -> i8042 (parameter)
[   58.490100] i8042: [57676] fa <- i8042 (interrupt, 1, 12)
[   58.490212] i8042: [57676] d4 -> i8042 (command)
[   58.490402] i8042: [57677] 00 -> i8042 (parameter)
[   58.493329] i8042: [57679] fa <- i8042 (interrupt, 1, 12)
[   58.493433] i8042: [57680] d4 -> i8042 (command)
[   58.493622] i8042: [57680] f8 -> i8042 (parameter)
[   58.496526] i8042: [57683] fa <- i8042 (interrupt, 1, 12)
[   58.496645] i8042: [57683] d4 -> i8042 (command)
[   58.496836] i8042: [57683] 01 -> i8042 (parameter)
[   58.499720] i8042: [57686] fa <- i8042 (interrupt, 1, 12)
[   58.499824] i8042: [57686] d4 -> i8042 (command)
[   58.500013] i8042: [57686] e6 -> i8042 (parameter)
[   58.502909] i8042: [57689] fa <- i8042 (interrupt, 1, 12)
[   58.503014] i8042: [57689] d4 -> i8042 (command)
[   58.503260] i8042: [57689] f3 -> i8042 (parameter)
[   58.506108] i8042: [57692] fa <- i8042 (interrupt, 1, 12)
[   58.506208] i8042: [57692] d4 -> i8042 (command)
[   58.506454] i8042: [57693] 64 -> i8042 (parameter)
[   58.509299] i8042: [57695] fa <- i8042 (interrupt, 1, 12)
[   58.509433] i8042: [57696] d4 -> i8042 (command)
[   58.509623] i8042: [57696] e8 -> i8042 (parameter)
[   58.512510] i8042: [57699] fa <- i8042 (interrupt, 1, 12)
[   58.512585] i8042: [57699] d4 -> i8042 (command)
[   58.512775] i8042: [57699] 03 -> i8042 (parameter)
[   58.515647] i8042: [57702] fa <- i8042 (interrupt, 1, 12)
[   58.515752] i8042: [57702] d4 -> i8042 (command)
[   58.515941] i8042: [57702] e6 -> i8042 (parameter)
[   58.518872] i8042: [57705] fa <- i8042 (interrupt, 1, 12)
[   58.518955] i8042: [57705] d4 -> i8042 (command)
[   58.519201] i8042: [57705] f4 -> i8042 (parameter)
[   58.522055] i8042: [57708] fa <- i8042 (interrupt, 1, 12)
[   58.542819] i8042: [57729] 08 <- i8042 (interrupt, 1, 12)
[   58.544388] i8042: [57730] 00 <- i8042 (interrupt, 1, 12)
[   58.545968] i8042: [57732] 00 <- i8042 (interrupt, 1, 12)
[   58.552599] i8042: [57739] 54 <- i8042 (interrupt, 1, 12)
[   58.554215] i8042: [57740] 01 <- i8042 (interrupt, 1, 12)
[   58.555765] i8042: [57742] 00 <- i8042 (interrupt, 1, 12)
[   58.555804] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.557346] i8042: [57743] 10 <- i8042 (interrupt, 1, 12)
[   58.558938] i8042: [57745] 00 <- i8042 (interrupt, 1, 12)
[   58.560507] i8042: [57747] 00 <- i8042 (interrupt, 1, 12)
[   58.562102] i8042: [57748] 54 <- i8042 (interrupt, 1, 12)
[   58.563675] i8042: [57750] 12 <- i8042 (interrupt, 1, 12)
[   58.565257] i8042: [57751] bc <- i8042 (interrupt, 1, 12)
[   58.565296] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.566840] i8042: [57753] 31 <- i8042 (interrupt, 1, 12)
[   58.568424] i8042: [57755] a2 <- i8042 (interrupt, 1, 12)
[   58.570001] i8042: [57756] 48 <- i8042 (interrupt, 1, 12)
[   58.571585] i8042: [57758] 44 <- i8042 (interrupt, 1, 12)
[   58.573169] i8042: [57759] 12 <- i8042 (interrupt, 1, 12)
[   58.574726] i8042: [57761] bc <- i8042 (interrupt, 1, 12)
[   58.574767] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.576338] i8042: [57762] 31 <- i8042 (interrupt, 1, 12)
[   58.577916] i8042: [57764] 72 <- i8042 (interrupt, 1, 12)
[   58.579502] i8042: [57766] 48 <- i8042 (interrupt, 1, 12)
[   58.581081] i8042: [57767] 04 <- i8042 (interrupt, 1, 12)
[   58.582664] i8042: [57769] 00 <- i8042 (interrupt, 1, 12)
[   58.584238] i8042: [57770] 00 <- i8042 (interrupt, 1, 12)
[   58.584278] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   58.585828] i8042: [57772] 10 <- i8042 (interrupt, 1, 12)
[   58.587307] i8042: [57773] 00 <- i8042 (interrupt, 1, 12)
[   58.588887] i8042: [57775] 00 <- i8042 (interrupt, 1, 12)
[   73.937492] Lockdown: futility: raw io port access is restricted; see man kernel_lockdown.7
[   73.944371] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   73.947701] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   75.227619] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   75.227872] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
Dmitry Torokhov Feb. 29, 2024, 6:23 p.m. UTC | #5
On Mon, Feb 12, 2024 at 02:57:08PM -0600, Jonathan Denose wrote:
...
> [   50.241235] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: PNP0C09:00
> [   50.242055] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 13511 usecs
> [   50.242120] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4518, parent: 0000:00:0e.0
> [   50.247406] i8042: [49434] a8 -> i8042 (command)
> [   50.247468] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 6220 usecs
...
> [   50.247883] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> [   50.247894] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
> [   50.247906] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> [   50.247916] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
...
> [   50.248301] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
> [   50.248377] i8042: [49434] 55 <- i8042 (flush, kbd)
> [   50.248407] i8042: [49435] aa -> i8042 (command)
> [   50.248601] i8042: [49435] 00 <- i8042 (return)
> [   50.248604] i8042: [49435] i8042 controller selftest: 0x0 != 0x55

So here I see the ideapad-laptop driver trying to access i8042 before it
even starts resuming. I wonder, does it help if you disable
(temporarily) the ideapad driver?

Thanks.
Jonathan Denose March 4, 2024, 5:17 p.m. UTC | #6
I disabled the ideapad driver by rebuilding the kernel without the
ideapad_laptop module. That does fix the suspend/resume issue!

Attached are the logs. Is there a way to make this permanent?

On Thu, Feb 29, 2024 at 12:23 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> On Mon, Feb 12, 2024 at 02:57:08PM -0600, Jonathan Denose wrote:
> ...
> > [   50.241235] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: PNP0C09:00
> > [   50.242055] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 13511 usecs
> > [   50.242120] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4518, parent: 0000:00:0e.0
> > [   50.247406] i8042: [49434] a8 -> i8042 (command)
> > [   50.247468] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 6220 usecs
> ...
> > [   50.247883] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> > [   50.247894] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
> > [   50.247906] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> > [   50.247916] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
> ...
> > [   50.248301] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
> > [   50.248377] i8042: [49434] 55 <- i8042 (flush, kbd)
> > [   50.248407] i8042: [49435] aa -> i8042 (command)
> > [   50.248601] i8042: [49435] 00 <- i8042 (return)
> > [   50.248604] i8042: [49435] i8042 controller selftest: 0x0 != 0x55
>
> So here I see the ideapad-laptop driver trying to access i8042 before it
> even starts resuming. I wonder, does it help if you disable
> (temporarily) the ideapad driver?
>
> Thanks.
>
> --
> Dmitry
[    6.621757] iwlwifi 0000:02:00.0: loaded firmware version 36.212c8d87.0 8265-36.ucode op_mode iwlmvm
[    7.034210] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
[    7.042095] thermal thermal_zone2: failed to read out thermal zone (-61)
[    7.097325] iwlwifi 0000:02:00.0: base HW address: f8:34:41:00:2a:17
[    7.166248] loop2: detected capacity change from 0 to 195288
[    7.172311] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    8.821879] init: failsafe-delay main process (693) killed by TERM signal
[    9.009851] fuse: init (API version 7.34)
[    9.352795] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[    9.353510] init: update-engine post-start process (1990) terminated with status 1
[   10.239753] loop3: detected capacity change from 0 to 16384
[   10.256415] pci 0000:00:0f.0: attach allowed to drvr mei_me [internal device]
[   10.284788] device-mapper: verity: sha256 using implementation "sha256-ni"
[   10.392980] pci 0000:00:0e.0: attach allowed to drvr snd_hda_intel [internal device]
[   10.393427] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[   10.394909] loop4: detected capacity change from 0 to 12856
[   10.504381] pci 0000:01:00.0: attach allowed to drvr rtsx_pci [internal device]
[   10.509108] rtsx_pci 0000:01:00.0: enabling device (0000 -> 0002)
[   10.535234] IPv6: ADDRCONF(NETDEV_CHANGE): arc_ns0: link becomes ready
[   10.535367] IPv6: ADDRCONF(NETDEV_CHANGE): veth0: link becomes ready
[   10.650854] snd_hda_intel 0000:00:0e.0: attach allowed to drvr snd_soc_skl [internal device]
[   10.748283] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   10.748301] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   10.748305] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[   10.748310] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   10.748312] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   10.748316] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[   10.748319] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   10.944154] IPv6: ADDRCONF(NETDEV_CHANGE): veth1: link becomes ready
[   10.986240] snd_hda_intel 0000:00:0e.0: attach allowed to drvr sof-audio-pci-intel-apl [internal device]
[   11.012110] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input14
[   11.012303] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:0e.0/sound/card0/input15
[   11.012433] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input16
[   11.012561] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input17
[   11.012691] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input18
[   11.012817] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input19
[   11.012960] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input20
[   11.194344] i8042: [10376] d4 -> i8042 (command)
[   11.194537] i8042: [10376] f2 -> i8042 (parameter)
[   11.197443] i8042: [10379] fa <- i8042 (interrupt, 1, 12)
[   11.199009] i8042: [10381] 00 <- i8042 (interrupt, 1, 12)
[   11.200591] i8042: [10382] d4 -> i8042 (command)
[   11.200785] i8042: [10382] f6 -> i8042 (parameter)
[   11.203735] i8042: [10385] fa <- i8042 (interrupt, 1, 12)
[   11.203798] i8042: [10385] d4 -> i8042 (command)
[   11.203993] i8042: [10386] f3 -> i8042 (parameter)
[   11.206930] i8042: [10388] fa <- i8042 (interrupt, 1, 12)
[   11.206990] i8042: [10389] d4 -> i8042 (command)
[   11.207241] i8042: [10389] 0a -> i8042 (parameter)
[   11.210118] i8042: [10392] fa <- i8042 (interrupt, 1, 12)
[   11.210166] i8042: [10392] d4 -> i8042 (command)
[   11.210361] i8042: [10392] e8 -> i8042 (parameter)
[   11.213308] i8042: [10395] fa <- i8042 (interrupt, 1, 12)
[   11.213368] i8042: [10395] d4 -> i8042 (command)
[   11.213562] i8042: [10395] 00 -> i8042 (parameter)
[   11.216501] i8042: [10398] fa <- i8042 (interrupt, 1, 12)
[   11.216554] i8042: [10398] d4 -> i8042 (command)
[   11.216802] i8042: [10398] f3 -> i8042 (parameter)
[   11.219693] i8042: [10401] fa <- i8042 (interrupt, 1, 12)
[   11.219763] i8042: [10401] d4 -> i8042 (command)
[   11.219956] i8042: [10402] 14 -> i8042 (parameter)
[   11.222885] i8042: [10404] fa <- i8042 (interrupt, 1, 12)
[   11.223007] i8042: [10405] d4 -> i8042 (command)
[   11.223258] i8042: [10405] f3 -> i8042 (parameter)
[   11.226077] i8042: [10408] fa <- i8042 (interrupt, 1, 12)
[   11.228206] i8042: [10410] d4 -> i8042 (command)
[   11.228395] i8042: [10410] 3c -> i8042 (parameter)
[   11.231309] i8042: [10413] fa <- i8042 (interrupt, 1, 12)
[   11.231506] i8042: [10413] d4 -> i8042 (command)
[   11.231701] i8042: [10413] f3 -> i8042 (parameter)
[   11.234491] i8042: [10416] fa <- i8042 (interrupt, 1, 12)
[   11.237002] i8042: [10419] d4 -> i8042 (command)
[   11.237193] i8042: [10419] 28 -> i8042 (parameter)
[   11.240200] i8042: [10422] fa <- i8042 (interrupt, 1, 12)
[   11.241176] i8042: [10423] d4 -> i8042 (command)
[   11.241366] i8042: [10423] f3 -> i8042 (parameter)
[   11.243894] i8042: [10425] fa <- i8042 (interrupt, 1, 12)
[   11.243953] i8042: [10426] d4 -> i8042 (command)
[   11.244146] i8042: [10426] 14 -> i8042 (parameter)
[   11.247086] i8042: [10429] fa <- i8042 (interrupt, 1, 12)
[   11.247229] i8042: [10429] d4 -> i8042 (command)
[   11.247424] i8042: [10429] f3 -> i8042 (parameter)
[   11.250279] i8042: [10432] fa <- i8042 (interrupt, 1, 12)
[   11.250322] i8042: [10432] d4 -> i8042 (command)
[   11.250518] i8042: [10432] 14 -> i8042 (parameter)
[   11.253471] i8042: [10435] fa <- i8042 (interrupt, 1, 12)
[   11.253528] i8042: [10435] d4 -> i8042 (command)
[   11.253723] i8042: [10435] f3 -> i8042 (parameter)
[   11.256660] i8042: [10438] fa <- i8042 (interrupt, 1, 12)
[   11.256712] i8042: [10438] d4 -> i8042 (command)
[   11.256906] i8042: [10438] 3c -> i8042 (parameter)
[   11.259852] i8042: [10441] fa <- i8042 (interrupt, 1, 12)
[   11.259903] i8042: [10441] d4 -> i8042 (command)
[   11.260099] i8042: [10442] f3 -> i8042 (parameter)
[   11.263080] i8042: [10445] fa <- i8042 (interrupt, 1, 12)
[   11.265962] i8042: [10448] d4 -> i8042 (command)
[   11.266214] i8042: [10448] 28 -> i8042 (parameter)
[   11.268758] i8042: [10450] fa <- i8042 (interrupt, 1, 12)
[   11.268817] i8042: [10450] d4 -> i8042 (command)
[   11.269011] i8042: [10450] f3 -> i8042 (parameter)
[   11.271953] i8042: [10454] fa <- i8042 (interrupt, 1, 12)
[   11.275618] i8042: [10457] d4 -> i8042 (command)
[   11.275812] i8042: [10457] 14 -> i8042 (parameter)
[   11.278673] i8042: [10460] fa <- i8042 (interrupt, 1, 12)
[   11.278719] i8042: [10460] d4 -> i8042 (command)
[   11.278914] i8042: [10460] f3 -> i8042 (parameter)
[   11.281294] wlan0: authenticate with c8:9e:43:94:32:f2
[   11.281865] i8042: [10463] fa <- i8042 (interrupt, 1, 12)
[   11.281914] i8042: [10463] d4 -> i8042 (command)
[   11.282105] i8042: [10463] 14 -> i8042 (parameter)
[   11.285064] i8042: [10467] fa <- i8042 (interrupt, 1, 12)
[   11.285109] i8042: [10467] d4 -> i8042 (command)
[   11.285360] i8042: [10467] f2 -> i8042 (parameter)
[   11.288248] i8042: [10470] fa <- i8042 (interrupt, 1, 12)
[   11.289819] i8042: [10471] 00 <- i8042 (interrupt, 1, 12)
[   11.290298] i8042: [10472] d4 -> i8042 (command)
[   11.290494] i8042: [10472] e8 -> i8042 (parameter)
[   11.293021] i8042: [10475] fa <- i8042 (interrupt, 1, 12)
[   11.293059] i8042: [10475] d4 -> i8042 (command)
[   11.293251] i8042: [10475] 00 -> i8042 (parameter)
[   11.296230] i8042: [10478] fa <- i8042 (interrupt, 1, 12)
[   11.296286] i8042: [10478] d4 -> i8042 (command)
[   11.296481] i8042: [10478] e8 -> i8042 (parameter)
[   11.299413] i8042: [10481] fa <- i8042 (interrupt, 1, 12)
[   11.299648] i8042: [10481] d4 -> i8042 (command)
[   11.299838] i8042: [10481] 00 -> i8042 (parameter)
[   11.302600] i8042: [10484] fa <- i8042 (interrupt, 1, 12)
[   11.303271] i8042: [10485] d4 -> i8042 (command)
[   11.303464] i8042: [10485] e8 -> i8042 (parameter)
[   11.305590] wlan0: send auth to c8:9e:43:94:32:f2 (try 1/3)
[   11.306298] i8042: [10488] fa <- i8042 (interrupt, 1, 12)
[   11.306424] i8042: [10488] d4 -> i8042 (command)
[   11.306619] i8042: [10488] 00 -> i8042 (parameter)
[   11.309489] i8042: [10491] fa <- i8042 (interrupt, 1, 12)
[   11.309532] i8042: [10491] d4 -> i8042 (command)
[   11.309727] i8042: [10491] e8 -> i8042 (parameter)
[   11.311459] wlan0: authenticated
[   11.312684] i8042: [10494] fa <- i8042 (interrupt, 1, 12)
[   11.312726] i8042: [10494] d4 -> i8042 (command)
[   11.312920] i8042: [10494] 00 -> i8042 (parameter)
[   11.315876] i8042: [10497] fa <- i8042 (interrupt, 1, 12)
[   11.315946] i8042: [10498] d4 -> i8042 (command)
[   11.316196] i8042: [10498] e9 -> i8042 (parameter)
[   11.319067] i8042: [10501] fa <- i8042 (interrupt, 1, 12)
[   11.320636] i8042: [10502] 3c <- i8042 (interrupt, 1, 12)
[   11.322219] i8042: [10504] 04 <- i8042 (interrupt, 1, 12)
[   11.323810] i8042: [10505] 00 <- i8042 (interrupt, 1, 12)
[   11.323871] i8042: [10505] d4 -> i8042 (command)
[   11.324066] i8042: [10505] f6 -> i8042 (parameter)
[   11.327007] i8042: [10509] fa <- i8042 (interrupt, 1, 12)
[   11.327048] i8042: [10509] d4 -> i8042 (command)
[   11.327243] i8042: [10509] e8 -> i8042 (parameter)
[   11.330199] i8042: [10512] fa <- i8042 (interrupt, 1, 12)
[   11.331996] i8042: [10514] d4 -> i8042 (command)
[   11.332248] i8042: [10514] 00 -> i8042 (parameter)
[   11.334904] i8042: [10516] fa <- i8042 (interrupt, 1, 12)
[   11.335088] i8042: [10517] d4 -> i8042 (command)
[   11.335282] i8042: [10517] e6 -> i8042 (parameter)
[   11.338101] i8042: [10520] fa <- i8042 (interrupt, 1, 12)
[   11.338147] i8042: [10520] d4 -> i8042 (command)
[   11.338399] i8042: [10520] e6 -> i8042 (parameter)
[   11.341286] i8042: [10523] fa <- i8042 (interrupt, 1, 12)
[   11.342049] i8042: [10524] d4 -> i8042 (command)
[   11.342301] i8042: [10524] e6 -> i8042 (parameter)
[   11.344984] i8042: [10527] fa <- i8042 (interrupt, 1, 12)
[   11.345065] i8042: [10527] d4 -> i8042 (command)
[   11.345316] i8042: [10527] e9 -> i8042 (parameter)
[   11.348174] i8042: [10530] fa <- i8042 (interrupt, 1, 12)
[   11.349751] i8042: [10531] 3c <- i8042 (interrupt, 1, 12)
[   11.351323] i8042: [10533] 03 <- i8042 (interrupt, 1, 12)
[   11.352905] i8042: [10534] 00 <- i8042 (interrupt, 1, 12)
[   11.353114] i8042: [10535] d4 -> i8042 (command)
[   11.353359] i8042: [10535] f6 -> i8042 (parameter)
[   11.356127] i8042: [10538] fa <- i8042 (interrupt, 1, 12)
[   11.356165] i8042: [10538] d4 -> i8042 (command)
[   11.356358] i8042: [10538] f5 -> i8042 (parameter)
[   11.359342] i8042: [10541] fa <- i8042 (interrupt, 1, 12)
[   11.359472] i8042: [10541] d4 -> i8042 (command)
[   11.359667] i8042: [10541] e6 -> i8042 (parameter)
[   11.362499] i8042: [10544] fa <- i8042 (interrupt, 1, 12)
[   11.362539] i8042: [10544] d4 -> i8042 (command)
[   11.362733] i8042: [10544] e6 -> i8042 (parameter)
[   11.365697] i8042: [10547] fa <- i8042 (interrupt, 1, 12)
[   11.368739] i8042: [10550] d4 -> i8042 (command)
[   11.368989] i8042: [10550] e6 -> i8042 (parameter)
[   11.371910] i8042: [10553] fa <- i8042 (interrupt, 1, 12)
[   11.371948] i8042: [10554] d4 -> i8042 (command)
[   11.372139] i8042: [10554] e9 -> i8042 (parameter)
[   11.375102] i8042: [10557] fa <- i8042 (interrupt, 1, 12)
[   11.376673] i8042: [10558] 3c <- i8042 (interrupt, 1, 12)
[   11.378249] i8042: [10560] 03 <- i8042 (interrupt, 1, 12)
[   11.379835] i8042: [10561] 00 <- i8042 (interrupt, 1, 12)
[   11.379875] i8042: [10561] d4 -> i8042 (command)
[   11.380070] i8042: [10561] e6 -> i8042 (parameter)
[   11.383035] i8042: [10565] fa <- i8042 (interrupt, 1, 12)
[   11.383071] i8042: [10565] d4 -> i8042 (command)
[   11.383321] i8042: [10565] e8 -> i8042 (parameter)
[   11.386229] i8042: [10568] fa <- i8042 (interrupt, 1, 12)
[   11.386307] i8042: [10568] d4 -> i8042 (command)
[   11.386502] i8042: [10568] 00 -> i8042 (parameter)
[   11.388808] wlan0: associate with c8:9e:43:94:32:f2 (try 1/3)
[   11.389420] i8042: [10571] fa <- i8042 (interrupt, 1, 12)
[   11.389816] i8042: [10571] d4 -> i8042 (command)
[   11.390007] i8042: [10571] e8 -> i8042 (parameter)
[   11.390311] wlan0: RX AssocResp from c8:9e:43:94:32:f2 (capab=0x11 status=0 aid=30)
[   11.392613] i8042: [10574] fa <- i8042 (interrupt, 1, 12)
[   11.393274] i8042: [10575] d4 -> i8042 (command)
[   11.393467] i8042: [10575] 00 -> i8042 (parameter)
[   11.396308] i8042: [10578] fa <- i8042 (interrupt, 1, 12)
[   11.396435] i8042: [10578] d4 -> i8042 (command)
[   11.396686] i8042: [10578] e8 -> i8042 (parameter)
[   11.399504] i8042: [10581] fa <- i8042 (interrupt, 1, 12)
[   11.399539] i8042: [10581] d4 -> i8042 (command)
[   11.399734] i8042: [10581] 00 -> i8042 (parameter)
[   11.402702] i8042: [10584] fa <- i8042 (interrupt, 1, 12)
[   11.402741] i8042: [10584] d4 -> i8042 (command)
[   11.402935] i8042: [10584] e8 -> i8042 (parameter)
[   11.404980] wlan0: associated
[   11.405886] i8042: [10587] fa <- i8042 (interrupt, 1, 12)
[   11.406178] i8042: [10588] d4 -> i8042 (command)
[   11.406368] i8042: [10588] 01 -> i8042 (parameter)
[   11.409076] i8042: [10591] fa <- i8042 (interrupt, 1, 12)
[   11.409117] i8042: [10591] d4 -> i8042 (command)
[   11.409367] i8042: [10591] e9 -> i8042 (parameter)
[   11.412289] i8042: [10594] fa <- i8042 (interrupt, 1, 12)
[   11.413843] i8042: [10595] 5e <- i8042 (interrupt, 1, 12)
[   11.415420] i8042: [10597] 0f <- i8042 (interrupt, 1, 12)
[   11.416998] i8042: [10599] 01 <- i8042 (interrupt, 1, 12)
[   11.417198] i8042: [10599] d4 -> i8042 (command)
[   11.417391] i8042: [10599] ff -> i8042 (parameter)
[   11.420204] i8042: [10602] fa <- i8042 (interrupt, 1, 12)
[   11.521153] i8042: [10703] aa <- i8042 (interrupt, 1, 12)
[   11.522965] i8042: [10705] 00 <- i8042 (interrupt, 1, 12)
[   11.523009] i8042: [10705] d4 -> i8042 (command)
[   11.523201] i8042: [10705] e6 -> i8042 (parameter)
[   11.525944] i8042: [10708] fa <- i8042 (interrupt, 1, 12)
[   11.525985] i8042: [10708] d4 -> i8042 (command)
[   11.526236] i8042: [10708] e8 -> i8042 (parameter)
[   11.529134] i8042: [10711] fa <- i8042 (interrupt, 1, 12)
[   11.529547] i8042: [10711] d4 -> i8042 (command)
[   11.529742] i8042: [10711] 00 -> i8042 (parameter)
[   11.532325] i8042: [10714] fa <- i8042 (interrupt, 1, 12)
[   11.532363] i8042: [10714] d4 -> i8042 (command)
[   11.532610] i8042: [10714] e8 -> i8042 (parameter)
[   11.535515] i8042: [10717] fa <- i8042 (interrupt, 1, 12)
[   11.535621] i8042: [10717] d4 -> i8042 (command)
[   11.535815] i8042: [10717] 00 -> i8042 (parameter)
[   11.538707] i8042: [10720] fa <- i8042 (interrupt, 1, 12)
[   11.538787] i8042: [10720] d4 -> i8042 (command)
[   11.538980] i8042: [10721] e8 -> i8042 (parameter)
[   11.541897] i8042: [10723] fa <- i8042 (interrupt, 1, 12)
[   11.542177] i8042: [10724] d4 -> i8042 (command)
[   11.542366] i8042: [10724] 00 -> i8042 (parameter)
[   11.545091] i8042: [10727] fa <- i8042 (interrupt, 1, 12)
[   11.548105] i8042: [10730] d4 -> i8042 (command)
[   11.548355] i8042: [10730] e8 -> i8042 (parameter)
[   11.551314] i8042: [10733] fa <- i8042 (interrupt, 1, 12)
[   11.551355] i8042: [10733] d4 -> i8042 (command)
[   11.551550] i8042: [10733] 01 -> i8042 (parameter)
[   11.554502] i8042: [10736] fa <- i8042 (interrupt, 1, 12)
[   11.554550] i8042: [10736] d4 -> i8042 (command)
[   11.554742] i8042: [10736] e9 -> i8042 (parameter)
[   11.557694] i8042: [10739] fa <- i8042 (interrupt, 1, 12)
[   11.559263] i8042: [10741] 5e <- i8042 (interrupt, 1, 12)
[   11.560843] i8042: [10742] 0f <- i8042 (interrupt, 1, 12)
[   11.562434] i8042: [10744] 01 <- i8042 (interrupt, 1, 12)
[   11.562473] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x5e0f01)
[   11.562497] i8042: [10744] d4 -> i8042 (command)
[   11.562682] i8042: [10744] f8 -> i8042 (parameter)
[   11.565627] i8042: [10747] fa <- i8042 (interrupt, 1, 12)
[   11.565669] i8042: [10747] d4 -> i8042 (command)
[   11.565863] i8042: [10747] 02 -> i8042 (parameter)
[   11.568820] i8042: [10750] fa <- i8042 (interrupt, 1, 12)
[   11.568860] i8042: [10750] d4 -> i8042 (command)
[   11.569110] i8042: [10751] e9 -> i8042 (parameter)
[   11.572013] i8042: [10754] fa <- i8042 (interrupt, 1, 12)
[   11.573578] i8042: [10755] 41 <- i8042 (interrupt, 1, 12)
[   11.575160] i8042: [10757] 12 <- i8042 (interrupt, 1, 12)
[   11.576747] i8042: [10758] 09 <- i8042 (interrupt, 1, 12)
[   11.576786] psmouse serio1: elantech: Synaptics capabilities query result 0x41, 0x12, 0x09.
[   11.576810] i8042: [10758] d4 -> i8042 (command)
[   11.576994] i8042: [10759] f8 -> i8042 (parameter)
[   11.579949] i8042: [10762] fa <- i8042 (interrupt, 1, 12)
[   11.579994] i8042: [10762] d4 -> i8042 (command)
[   11.580188] i8042: [10762] 03 -> i8042 (parameter)
[   11.583156] i8042: [10765] fa <- i8042 (interrupt, 1, 12)
[   11.583204] i8042: [10765] d4 -> i8042 (command)
[   11.583399] i8042: [10765] e9 -> i8042 (parameter)
[   11.586336] i8042: [10768] fa <- i8042 (interrupt, 1, 12)
[   11.587901] i8042: [10769] 06 <- i8042 (interrupt, 1, 12)
[   11.589494] i8042: [10771] 4e <- i8042 (interrupt, 1, 12)
[   11.591065] i8042: [10773] 97 <- i8042 (interrupt, 1, 12)
[   11.591100] psmouse serio1: elantech: Elan sample query result 06, 4e, 97
[   11.591124] i8042: [10773] d4 -> i8042 (command)
[   11.591308] i8042: [10773] f8 -> i8042 (parameter)
[   11.594268] i8042: [10776] fa <- i8042 (interrupt, 1, 12)
[   11.594310] i8042: [10776] d4 -> i8042 (command)
[   11.594562] i8042: [10776] 04 -> i8042 (parameter)
[   11.597460] i8042: [10779] fa <- i8042 (interrupt, 1, 12)
[   11.597505] i8042: [10779] d4 -> i8042 (command)
[   11.597700] i8042: [10779] e9 -> i8042 (parameter)
[   11.600647] i8042: [10782] fa <- i8042 (interrupt, 1, 12)
[   11.602219] i8042: [10784] 06 <- i8042 (interrupt, 1, 12)
[   11.603799] i8042: [10785] 11 <- i8042 (interrupt, 1, 12)
[   11.605418] i8042: [10787] 00 <- i8042 (interrupt, 1, 12)
[   11.606050] i8042: [10788] d4 -> i8042 (command)
[   11.606243] i8042: [10788] f8 -> i8042 (parameter)
[   11.609093] i8042: [10791] fa <- i8042 (interrupt, 1, 12)
[   11.609145] i8042: [10791] d4 -> i8042 (command)
[   11.609340] i8042: [10791] 00 -> i8042 (parameter)
[   11.612283] i8042: [10794] fa <- i8042 (interrupt, 1, 12)
[   11.612434] i8042: [10794] d4 -> i8042 (command)
[   11.612628] i8042: [10794] e9 -> i8042 (parameter)
[   11.615476] i8042: [10797] fa <- i8042 (interrupt, 1, 12)
[   11.617046] i8042: [10799] 4a <- i8042 (interrupt, 1, 12)
[   11.618626] i8042: [10800] 0e <- i8042 (interrupt, 1, 12)
[   11.620207] i8042: [10802] da <- i8042 (interrupt, 1, 12)
[   11.620293] i8042: [10802] d4 -> i8042 (command)
[   11.620544] i8042: [10802] f8 -> i8042 (parameter)
[   11.623410] i8042: [10805] fa <- i8042 (interrupt, 1, 12)
[   11.623451] i8042: [10805] d4 -> i8042 (command)
[   11.623702] i8042: [10805] 00 -> i8042 (parameter)
[   11.626604] i8042: [10808] fa <- i8042 (interrupt, 1, 12)
[   11.626662] i8042: [10808] d4 -> i8042 (command)
[   11.626913] i8042: [10808] f8 -> i8042 (parameter)
[   11.629795] i8042: [10811] fa <- i8042 (interrupt, 1, 12)
[   11.629839] i8042: [10811] d4 -> i8042 (command)
[   11.630033] i8042: [10812] 07 -> i8042 (parameter)
[   11.632985] i8042: [10815] fa <- i8042 (interrupt, 1, 12)
[   11.633029] i8042: [10815] d4 -> i8042 (command)
[   11.633222] i8042: [10815] f8 -> i8042 (parameter)
[   11.636178] i8042: [10818] fa <- i8042 (interrupt, 1, 12)
[   11.636223] i8042: [10818] d4 -> i8042 (command)
[   11.636417] i8042: [10818] 00 -> i8042 (parameter)
[   11.637411] usb 1-8: GPIO lookup for consumer privacy
[   11.637423] usb 1-8: using ACPI for GPIO lookup
[   11.637427] acpi device:1a: GPIO: looking up privacy-gpios
[   11.637431] acpi device:1a: GPIO: looking up privacy-gpio
[   11.637433] usb 1-8: using lookup tables for GPIO lookup
[   11.637436] usb 1-8: No GPIO consumer privacy found
[   11.637439] usb 1-8: Found UVC 1.00 device Lenovo EasyCamera (04f2:b5a2)
[   11.639369] i8042: [10821] fa <- i8042 (interrupt, 1, 12)
[   11.639488] i8042: [10821] d4 -> i8042 (command)
[   11.639682] i8042: [10821] f8 -> i8042 (parameter)
[   11.642562] i8042: [10824] fa <- i8042 (interrupt, 1, 12)
[   11.642842] i8042: [10824] d4 -> i8042 (command)
[   11.643037] i8042: [10825] 01 -> i8042 (parameter)
[   11.645754] i8042: [10827] fa <- i8042 (interrupt, 1, 12)
[   11.645831] i8042: [10827] d4 -> i8042 (command)
[   11.646026] i8042: [10828] e6 -> i8042 (parameter)
[   11.648941] i8042: [10831] fa <- i8042 (interrupt, 1, 12)
[   11.655352] i8042: [10837] d4 -> i8042 (command)
[   11.655546] i8042: [10837] f3 -> i8042 (parameter)
[   11.658191] i8042: [10840] fa <- i8042 (interrupt, 1, 12)
[   11.658555] i8042: [10840] d4 -> i8042 (command)
[   11.658749] i8042: [10840] 64 -> i8042 (parameter)
[   11.661383] i8042: [10843] fa <- i8042 (interrupt, 1, 12)
[   11.661440] i8042: [10843] d4 -> i8042 (command)
[   11.661635] i8042: [10843] e8 -> i8042 (parameter)
[   11.664570] i8042: [10846] fa <- i8042 (interrupt, 1, 12)
[   11.664819] i8042: [10846] d4 -> i8042 (command)
[   11.665071] i8042: [10847] 03 -> i8042 (parameter)
[   11.667764] i8042: [10849] fa <- i8042 (interrupt, 1, 12)
[   11.667807] i8042: [10849] d4 -> i8042 (command)
[   11.668000] i8042: [10850] e6 -> i8042 (parameter)
[   11.670954] i8042: [10853] fa <- i8042 (interrupt, 1, 12)
[   11.673795] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input21
[   11.679201] i8042: [10861] d4 -> i8042 (command)
[   11.679396] i8042: [10861] f4 -> i8042 (parameter)
[   11.682218] i8042: [10864] fa <- i8042 (interrupt, 1, 12)
[   11.697886] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
[   11.723310] usb 1-7: GPIO lookup for consumer reset
[   11.723322] usb 1-7: using ACPI for GPIO lookup
[   11.723326] acpi device:19: GPIO: looking up reset-gpios
[   11.723330] acpi device:19: GPIO: looking up reset-gpio
[   11.723332] usb 1-7: using lookup tables for GPIO lookup
[   11.723335] usb 1-7: No GPIO consumer reset found
[   11.723616] usbcore: registered new interface driver btusb
[   11.734763] Bluetooth: btintel_version_info() hci0: Firmware revision 0.1 build 197 week 12 2021
[   11.738087] Bluetooth: btintel_read_debug_features() hci0: Reading supported features failed (-16)
[   11.738106] Bluetooth: btintel_register_devcoredump_support() hci0: Error reading debug features
[   11.767043] usbcore: registered new interface driver uvcvideo
[   11.821575] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   11.839771] NET: Registered PF_ALG protocol family
[   11.913121] 8021q: 802.1Q VLAN Support v1.8
[   12.140683] loop5: detected capacity change from 0 to 34640
[   12.205059] Bluetooth: rfcomm_init_sockets() RFCOMM socket layer initialized
[   12.205133] Bluetooth: rfcomm_init() RFCOMM ver 1.11
[   12.223798] device-mapper: verity: sha256 using implementation "sha256-ni"
[   13.443601] loop6: detected capacity change from 0 to 14400
[   13.489724] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   13.502443] init: send-boot-elog-metrics main process (3413) terminated with status 1
[   13.535615] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   13.615828] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   13.936403] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   13.976239] zram: Added device: zram0
[   14.038557] zram0: detected capacity change from 0 to 15332672
[   14.051160] Adding 7666332k swap on /dev/zram0.  Priority:-2 extents:1 across:7666332k SS
[   14.067902] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.089105] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.110752] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.132161] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.158328] Lockdown: cbmem: /dev/mem,kmem,port is restricted; see man kernel_lockdown.7
[   14.164669] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   14.316339] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   14.316448] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   50.263554] i8042: [49445] ** <- i8042 (interrupt, 0, 1)
[   50.324710] i8042: [49506] ** <- i8042 (interrupt, 0, 1)
[   50.408396] i8042: [49590] ** <- i8042 (interrupt, 0, 1)
[   50.492033] i8042: [49674] ** <- i8042 (interrupt, 0, 1)
[   50.990370] i8042: [50172] ** <- i8042 (interrupt, 0, 1)
[   51.059839] i8042: [50241] ** <- i8042 (interrupt, 0, 1)
[   51.138733] i8042: [50320] ** <- i8042 (interrupt, 0, 1)
[   51.142837] i8042: [50324] ** <- i8042 (interrupt, 0, 1)
[   51.180615] i8042: [50362] ** <- i8042 (interrupt, 0, 1)
[   51.235712] i8042: [50417] ** <- i8042 (interrupt, 0, 1)
[   51.267468] i8042: [50449] ** <- i8042 (interrupt, 0, 1)
[   51.374315] i8042: [50556] ** <- i8042 (interrupt, 0, 1)
[   51.547557] i8042: [50729] ** <- i8042 (interrupt, 0, 1)
[   51.636009] i8042: [50818] ** <- i8042 (interrupt, 0, 1)
[   51.824608] i8042: [51006] ** <- i8042 (interrupt, 0, 1)
[   51.880580] i8042: [51062] ** <- i8042 (interrupt, 0, 1)
[   51.952904] i8042: [51134] ** <- i8042 (interrupt, 0, 1)
[   52.050370] i8042: [51232] ** <- i8042 (interrupt, 0, 1)
[   53.680273] i8042: [52862] ** <- i8042 (interrupt, 0, 1)
[   53.759050] i8042: [52941] ** <- i8042 (interrupt, 0, 1)
[   58.996975] i8042: [58179] ** <- i8042 (interrupt, 0, 1)
[   59.071955] i8042: [58254] ** <- i8042 (interrupt, 0, 1)
[   59.149757] i8042: [58331] ** <- i8042 (interrupt, 0, 1)
[   59.238077] i8042: [58420] ** <- i8042 (interrupt, 0, 1)
[   59.556916] i8042: [58738] ** <- i8042 (interrupt, 0, 1)
[   59.626167] i8042: [58808] ** <- i8042 (interrupt, 0, 1)
[   59.686828] i8042: [58868] ** <- i8042 (interrupt, 0, 1)
[   59.700194] i8042: [58882] ** <- i8042 (interrupt, 0, 1)
[   59.737547] i8042: [58919] ** <- i8042 (interrupt, 0, 1)
[   59.807179] i8042: [58989] ** <- i8042 (interrupt, 0, 1)
[   59.845812] i8042: [59027] ** <- i8042 (interrupt, 0, 1)
[   59.906026] i8042: [59088] ** <- i8042 (interrupt, 0, 1)
[   59.948136] i8042: [59130] ** <- i8042 (interrupt, 0, 1)
[   60.022292] i8042: [59204] ** <- i8042 (interrupt, 0, 1)
[   60.076932] i8042: [59258] ** <- i8042 (interrupt, 0, 1)
[   60.151614] i8042: [59333] ** <- i8042 (interrupt, 0, 1)
[   60.292683] i8042: [59474] ** <- i8042 (interrupt, 0, 1)
[   60.353305] i8042: [59535] ** <- i8042 (interrupt, 0, 1)
[   60.426896] i8042: [59608] ** <- i8042 (interrupt, 0, 1)
[   60.561655] i8042: [59743] ** <- i8042 (interrupt, 0, 1)
[   60.670677] i8042: [59852] ** <- i8042 (interrupt, 0, 1)
[   60.804958] i8042: [59987] ** <- i8042 (interrupt, 0, 1)
[   61.179228] fscrypt: AES-256-CTS-CBC using implementation "cts-cbc-aes-aesni"
[   61.288033] fscrypt: AES-256-XTS using implementation "xts-aes-aesni"
[   61.562814] init: vm_concierge main process (3990) terminated with status 251
[   61.562861] init: vm_concierge main process ended, respawning
[   64.156447] loop7: detected capacity change from 0 to 245760
[   64.188644] device-mapper: verity: sha256 using implementation "sha256-ni"
[   66.780549] i8042: [65962] 54 <- i8042 (interrupt, 1, 12)
[   66.782080] i8042: [65964] 01 <- i8042 (interrupt, 1, 12)
[   66.783706] i8042: [65965] 00 <- i8042 (interrupt, 1, 12)
[   66.785289] i8042: [65967] 10 <- i8042 (interrupt, 1, 12)
[   66.786876] i8042: [65968] 00 <- i8042 (interrupt, 1, 12)
[   66.788455] i8042: [65970] 00 <- i8042 (interrupt, 1, 12)
[   66.790028] i8042: [65972] 54 <- i8042 (interrupt, 1, 12)
[   66.791622] i8042: [65973] 16 <- i8042 (interrupt, 1, 12)
[   66.793201] i8042: [65975] 7e <- i8042 (interrupt, 1, 12)
[   66.794714] i8042: [65976] 31 <- i8042 (interrupt, 1, 12)
[   66.796365] i8042: [65978] 93 <- i8042 (interrupt, 1, 12)
[   66.797903] i8042: [65979] db <- i8042 (interrupt, 1, 12)
[   66.799531] i8042: [65981] 54 <- i8042 (interrupt, 1, 12)
[   66.801092] i8042: [65983] 16 <- i8042 (interrupt, 1, 12)
[   66.802661] i8042: [65984] 7e <- i8042 (interrupt, 1, 12)
[   66.804256] i8042: [65986] 31 <- i8042 (interrupt, 1, 12)
[   66.805824] i8042: [65987] 93 <- i8042 (interrupt, 1, 12)
[   66.807396] i8042: [65989] db <- i8042 (interrupt, 1, 12)
[   66.809031] i8042: [65991] 54 <- i8042 (interrupt, 1, 12)
[   66.810602] i8042: [65992] 26 <- i8042 (interrupt, 1, 12)
[   66.812161] i8042: [65994] 7e <- i8042 (interrupt, 1, 12)
[   66.813798] i8042: [65995] 31 <- i8042 (interrupt, 1, 12)
[   66.815388] i8042: [65997] 43 <- i8042 (interrupt, 1, 12)
[   66.816989] i8042: [65999] db <- i8042 (interrupt, 1, 12)
[   66.818529] i8042: [66000] 54 <- i8042 (interrupt, 1, 12)
[   66.820089] i8042: [66002] 26 <- i8042 (interrupt, 1, 12)
[   66.821693] i8042: [66003] 7e <- i8042 (interrupt, 1, 12)
[   66.823253] i8042: [66005] 31 <- i8042 (interrupt, 1, 12)
[   66.824858] i8042: [66006] 63 <- i8042 (interrupt, 1, 12)
[   66.826438] i8042: [66008] db <- i8042 (interrupt, 1, 12)
[   66.828001] i8042: [66010] 54 <- i8042 (interrupt, 1, 12)
[   66.829589] i8042: [66011] 26 <- i8042 (interrupt, 1, 12)
[   66.831204] i8042: [66013] 7e <- i8042 (interrupt, 1, 12)
[   66.832763] i8042: [66014] 31 <- i8042 (interrupt, 1, 12)
[   66.834310] i8042: [66016] 73 <- i8042 (interrupt, 1, 12)
[   66.835894] i8042: [66017] db <- i8042 (interrupt, 1, 12)
[   66.837490] i8042: [66019] 54 <- i8042 (interrupt, 1, 12)
[   66.839019] i8042: [66021] 26 <- i8042 (interrupt, 1, 12)
[   66.840617] i8042: [66022] 7a <- i8042 (interrupt, 1, 12)
[   66.842185] i8042: [66024] 31 <- i8042 (interrupt, 1, 12)
[   66.843804] i8042: [66025] 93 <- i8042 (interrupt, 1, 12)
[   66.845388] i8042: [66027] e5 <- i8042 (interrupt, 1, 12)
[   66.846950] i8042: [66029] 54 <- i8042 (interrupt, 1, 12)
[   66.848588] i8042: [66030] 26 <- i8042 (interrupt, 1, 12)
[   66.850153] i8042: [66032] 7a <- i8042 (interrupt, 1, 12)
[   66.851755] i8042: [66033] 31 <- i8042 (interrupt, 1, 12)
[   66.853309] i8042: [66035] 93 <- i8042 (interrupt, 1, 12)
[   66.854849] i8042: [66036] e5 <- i8042 (interrupt, 1, 12)
[   66.856468] i8042: [66038] 54 <- i8042 (interrupt, 1, 12)
[   66.858041] i8042: [66040] 26 <- i8042 (interrupt, 1, 12)
[   66.859638] i8042: [66041] 72 <- i8042 (interrupt, 1, 12)
[   66.861219] i8042: [66043] 31 <- i8042 (interrupt, 1, 12)
[   66.862833] i8042: [66044] 93 <- i8042 (interrupt, 1, 12)
[   66.864382] i8042: [66046] e4 <- i8042 (interrupt, 1, 12)
[   66.865975] i8042: [66048] 54 <- i8042 (interrupt, 1, 12)
[   66.867548] i8042: [66049] 26 <- i8042 (interrupt, 1, 12)
[   66.869096] i8042: [66051] 6e <- i8042 (interrupt, 1, 12)
[   66.870711] i8042: [66052] 31 <- i8042 (interrupt, 1, 12)
[   66.872254] i8042: [66054] 93 <- i8042 (interrupt, 1, 12)
[   66.873843] i8042: [66055] e3 <- i8042 (interrupt, 1, 12)
[   66.875426] i8042: [66057] 54 <- i8042 (interrupt, 1, 12)
[   66.877005] i8042: [66059] 26 <- i8042 (interrupt, 1, 12)
[   66.878590] i8042: [66060] 6a <- i8042 (interrupt, 1, 12)
[   66.880169] i8042: [66062] 31 <- i8042 (interrupt, 1, 12)
[   66.881799] i8042: [66063] 93 <- i8042 (interrupt, 1, 12)
[   66.883411] i8042: [66065] e2 <- i8042 (interrupt, 1, 12)
[   66.884917] i8042: [66067] 54 <- i8042 (interrupt, 1, 12)
[   66.886510] i8042: [66068] 26 <- i8042 (interrupt, 1, 12)
[   66.888076] i8042: [66070] 66 <- i8042 (interrupt, 1, 12)
[   66.889663] i8042: [66071] 31 <- i8042 (interrupt, 1, 12)
[   66.891242] i8042: [66073] 93 <- i8042 (interrupt, 1, 12)
[   66.892828] i8042: [66074] e1 <- i8042 (interrupt, 1, 12)
[   66.894450] i8042: [66076] 54 <- i8042 (interrupt, 1, 12)
[   66.895995] i8042: [66078] 26 <- i8042 (interrupt, 1, 12)
[   66.897609] i8042: [66079] 62 <- i8042 (interrupt, 1, 12)
[   66.899196] i8042: [66081] 31 <- i8042 (interrupt, 1, 12)
[   66.900777] i8042: [66082] 93 <- i8042 (interrupt, 1, 12)
[   66.902355] i8042: [66084] e0 <- i8042 (interrupt, 1, 12)
[   66.903967] i8042: [66086] 54 <- i8042 (interrupt, 1, 12)
[   66.905491] i8042: [66087] 26 <- i8042 (interrupt, 1, 12)
[   66.907074] i8042: [66089] 5e <- i8042 (interrupt, 1, 12)
[   66.908655] i8042: [66090] 31 <- i8042 (interrupt, 1, 12)
[   66.910274] i8042: [66092] 73 <- i8042 (interrupt, 1, 12)
[   66.911818] i8042: [66093] df <- i8042 (interrupt, 1, 12)
[   66.913399] i8042: [66095] 54 <- i8042 (interrupt, 1, 12)
[   66.915080] i8042: [66097] 26 <- i8042 (interrupt, 1, 12)
[   66.916566] i8042: [66098] 58 <- i8042 (interrupt, 1, 12)
[   66.918146] i8042: [66100] 31 <- i8042 (interrupt, 1, 12)
[   66.919768] i8042: [66101] 63 <- i8042 (interrupt, 1, 12)
[   66.921341] i8042: [66103] de <- i8042 (interrupt, 1, 12)
[   66.922924] i8042: [66105] 54 <- i8042 (interrupt, 1, 12)
[   66.924517] i8042: [66106] 26 <- i8042 (interrupt, 1, 12)
[   66.926102] i8042: [66108] 4c <- i8042 (interrupt, 1, 12)
[   66.927649] i8042: [66109] 31 <- i8042 (interrupt, 1, 12)
[   66.929257] i8042: [66111] 63 <- i8042 (interrupt, 1, 12)
[   66.930871] i8042: [66112] de <- i8042 (interrupt, 1, 12)
[   66.932391] i8042: [66114] 54 <- i8042 (interrupt, 1, 12)
[   66.933972] i8042: [66116] 26 <- i8042 (interrupt, 1, 12)
[   66.935586] i8042: [66117] 39 <- i8042 (interrupt, 1, 12)
[   66.937135] i8042: [66119] 31 <- i8042 (interrupt, 1, 12)
[   66.938733] i8042: [66120] 63 <- i8042 (interrupt, 1, 12)
[   66.940346] i8042: [66122] da <- i8042 (interrupt, 1, 12)
[   66.941894] i8042: [66123] 54 <- i8042 (interrupt, 1, 12)
[   66.943501] i8042: [66125] 26 <- i8042 (interrupt, 1, 12)
[   66.945079] i8042: [66127] 23 <- i8042 (interrupt, 1, 12)
[   66.946662] i8042: [66128] 31 <- i8042 (interrupt, 1, 12)
[   66.948228] i8042: [66130] 63 <- i8042 (interrupt, 1, 12)
[   66.949864] i8042: [66131] d6 <- i8042 (interrupt, 1, 12)
[   66.951423] i8042: [66133] 54 <- i8042 (interrupt, 1, 12)
[   66.953000] i8042: [66135] 26 <- i8042 (interrupt, 1, 12)
[   66.954586] i8042: [66136] 0b <- i8042 (interrupt, 1, 12)
[   66.956160] i8042: [66138] 31 <- i8042 (interrupt, 1, 12)
[   66.957781] i8042: [66139] 63 <- i8042 (interrupt, 1, 12)
[   66.959316] i8042: [66141] d2 <- i8042 (interrupt, 1, 12)
[   66.960923] i8042: [66143] 54 <- i8042 (interrupt, 1, 12)
[   66.962506] i8042: [66144] 25 <- i8042 (interrupt, 1, 12)
[   66.964110] i8042: [66146] f4 <- i8042 (interrupt, 1, 12)
[   66.965634] i8042: [66147] 31 <- i8042 (interrupt, 1, 12)
[   66.967291] i8042: [66149] 63 <- i8042 (interrupt, 1, 12)
[   66.968948] i8042: [66151] cd <- i8042 (interrupt, 1, 12)
[   66.970448] i8042: [66152] 54 <- i8042 (interrupt, 1, 12)
[   66.972018] i8042: [66154] 25 <- i8042 (interrupt, 1, 12)
[   66.973549] i8042: [66155] d3 <- i8042 (interrupt, 1, 12)
[   66.975135] i8042: [66157] 31 <- i8042 (interrupt, 1, 12)
[   66.976753] i8042: [66158] 63 <- i8042 (interrupt, 1, 12)
[   66.978303] i8042: [66160] c9 <- i8042 (interrupt, 1, 12)
[   66.979908] i8042: [66161] 54 <- i8042 (interrupt, 1, 12)
[   66.981530] i8042: [66163] 25 <- i8042 (interrupt, 1, 12)
[   66.983037] i8042: [66165] bf <- i8042 (interrupt, 1, 12)
[   66.984654] i8042: [66166] 31 <- i8042 (interrupt, 1, 12)
[   66.986271] i8042: [66168] 63 <- i8042 (interrupt, 1, 12)
[   66.987820] i8042: [66169] c9 <- i8042 (interrupt, 1, 12)
[   66.989435] i8042: [66171] 54 <- i8042 (interrupt, 1, 12)
[   66.990956] i8042: [66172] 25 <- i8042 (interrupt, 1, 12)
[   66.992566] i8042: [66174] a6 <- i8042 (interrupt, 1, 12)
[   66.994125] i8042: [66176] 31 <- i8042 (interrupt, 1, 12)
[   66.995736] i8042: [66177] 63 <- i8042 (interrupt, 1, 12)
[   66.997319] i8042: [66179] c7 <- i8042 (interrupt, 1, 12)
[   66.998903] i8042: [66180] 54 <- i8042 (interrupt, 1, 12)
[   67.000514] i8042: [66182] 25 <- i8042 (interrupt, 1, 12)
[   67.002072] i8042: [66184] 91 <- i8042 (interrupt, 1, 12)
[   67.003651] i8042: [66185] 31 <- i8042 (interrupt, 1, 12)
[   67.005277] i8042: [66187] 73 <- i8042 (interrupt, 1, 12)
[   67.006851] i8042: [66188] c4 <- i8042 (interrupt, 1, 12)
[   67.008394] i8042: [66190] 54 <- i8042 (interrupt, 1, 12)
[   67.010014] i8042: [66192] 25 <- i8042 (interrupt, 1, 12)
[   67.011562] i8042: [66193] 7f <- i8042 (interrupt, 1, 12)
[   67.013137] i8042: [66195] 31 <- i8042 (interrupt, 1, 12)
[   67.014863] i8042: [66196] 93 <- i8042 (interrupt, 1, 12)
[   67.016354] i8042: [66198] c1 <- i8042 (interrupt, 1, 12)
[   67.017895] i8042: [66199] 54 <- i8042 (interrupt, 1, 12)
[   67.019537] i8042: [66201] 25 <- i8042 (interrupt, 1, 12)
[   67.021044] i8042: [66203] 71 <- i8042 (interrupt, 1, 12)
[   67.022672] i8042: [66204] 31 <- i8042 (interrupt, 1, 12)
[   67.024269] i8042: [66206] 93 <- i8042 (interrupt, 1, 12)
[   67.025816] i8042: [66207] bf <- i8042 (interrupt, 1, 12)
[   67.027426] i8042: [66209] 54 <- i8042 (interrupt, 1, 12)
[   67.028995] i8042: [66211] 25 <- i8042 (interrupt, 1, 12)
[   67.030599] i8042: [66212] 65 <- i8042 (interrupt, 1, 12)
[   67.032140] i8042: [66214] 31 <- i8042 (interrupt, 1, 12)
[   67.033721] i8042: [66215] 93 <- i8042 (interrupt, 1, 12)
[   67.035337] i8042: [66217] be <- i8042 (interrupt, 1, 12)
[   67.036919] i8042: [66218] 54 <- i8042 (interrupt, 1, 12)
[   67.038496] i8042: [66220] 25 <- i8042 (interrupt, 1, 12)
[   67.040077] i8042: [66222] 5a <- i8042 (interrupt, 1, 12)
[   67.041659] i8042: [66223] 31 <- i8042 (interrupt, 1, 12)
[   67.043246] i8042: [66225] 73 <- i8042 (interrupt, 1, 12)
[   67.044834] i8042: [66226] bd <- i8042 (interrupt, 1, 12)
[   67.046411] i8042: [66228] 54 <- i8042 (interrupt, 1, 12)
[   67.048013] i8042: [66230] 25 <- i8042 (interrupt, 1, 12)
[   67.049571] i8042: [66231] 50 <- i8042 (interrupt, 1, 12)
[   67.051154] i8042: [66233] 31 <- i8042 (interrupt, 1, 12)
[   67.052735] i8042: [66234] 73 <- i8042 (interrupt, 1, 12)
[   67.054319] i8042: [66236] bd <- i8042 (interrupt, 1, 12)
[   67.055835] i8042: [66237] 54 <- i8042 (interrupt, 1, 12)
[   67.057412] i8042: [66239] 25 <- i8042 (interrupt, 1, 12)
[   67.059016] i8042: [66241] 45 <- i8042 (interrupt, 1, 12)
[   67.060635] i8042: [66242] 31 <- i8042 (interrupt, 1, 12)
[   67.062231] i8042: [66244] 73 <- i8042 (interrupt, 1, 12)
[   67.063809] i8042: [66245] c0 <- i8042 (interrupt, 1, 12)
[   67.065410] i8042: [66247] 54 <- i8042 (interrupt, 1, 12)
[   67.066992] i8042: [66249] 25 <- i8042 (interrupt, 1, 12)
[   67.068578] i8042: [66250] 3a <- i8042 (interrupt, 1, 12)
[   67.070083] i8042: [66252] 31 <- i8042 (interrupt, 1, 12)
[   67.071722] i8042: [66253] 73 <- i8042 (interrupt, 1, 12)
[   67.073295] i8042: [66255] c0 <- i8042 (interrupt, 1, 12)
[   67.074888] i8042: [66256] 54 <- i8042 (interrupt, 1, 12)
[   67.076479] i8042: [66258] 25 <- i8042 (interrupt, 1, 12)
[   67.078020] i8042: [66260] 2f <- i8042 (interrupt, 1, 12)
[   67.079644] i8042: [66261] 31 <- i8042 (interrupt, 1, 12)
[   67.081227] i8042: [66263] 73 <- i8042 (interrupt, 1, 12)
[   67.082807] i8042: [66264] bf <- i8042 (interrupt, 1, 12)
[   67.084389] i8042: [66266] 54 <- i8042 (interrupt, 1, 12)
[   67.085973] i8042: [66268] 25 <- i8042 (interrupt, 1, 12)
[   67.087560] i8042: [66269] 26 <- i8042 (interrupt, 1, 12)
[   67.089130] i8042: [66271] 31 <- i8042 (interrupt, 1, 12)
[   67.090798] i8042: [66272] 73 <- i8042 (interrupt, 1, 12)
[   67.092250] i8042: [66274] bb <- i8042 (interrupt, 1, 12)
[   67.093889] i8042: [66275] 54 <- i8042 (interrupt, 1, 12)
[   67.095402] i8042: [66277] 25 <- i8042 (interrupt, 1, 12)
[   67.097012] i8042: [66279] 1e <- i8042 (interrupt, 1, 12)
[   67.098632] i8042: [66280] 31 <- i8042 (interrupt, 1, 12)
[   67.100212] i8042: [66282] 73 <- i8042 (interrupt, 1, 12)
[   67.101795] i8042: [66283] b8 <- i8042 (interrupt, 1, 12)
[   67.103357] i8042: [66285] 54 <- i8042 (interrupt, 1, 12)
[   67.104976] i8042: [66287] 25 <- i8042 (interrupt, 1, 12)
[   67.106563] i8042: [66288] 15 <- i8042 (interrupt, 1, 12)
[   67.108065] i8042: [66290] 31 <- i8042 (interrupt, 1, 12)
[   67.109709] i8042: [66291] 73 <- i8042 (interrupt, 1, 12)
[   67.111292] i8042: [66293] b5 <- i8042 (interrupt, 1, 12)
[   67.112873] i8042: [66294] 54 <- i8042 (interrupt, 1, 12)
[   67.114390] i8042: [66296] 25 <- i8042 (interrupt, 1, 12)
[   67.115999] i8042: [66298] 09 <- i8042 (interrupt, 1, 12)
[   67.117622] i8042: [66299] 31 <- i8042 (interrupt, 1, 12)
[   67.119217] i8042: [66301] 73 <- i8042 (interrupt, 1, 12)
[   67.120800] i8042: [66302] b1 <- i8042 (interrupt, 1, 12)
[   67.122348] i8042: [66304] 54 <- i8042 (interrupt, 1, 12)
[   67.123919] i8042: [66305] 24 <- i8042 (interrupt, 1, 12)
[   67.125502] i8042: [66307] fb <- i8042 (interrupt, 1, 12)
[   67.127093] i8042: [66309] 31 <- i8042 (interrupt, 1, 12)
[   67.128663] i8042: [66310] 73 <- i8042 (interrupt, 1, 12)
[   67.130227] i8042: [66312] af <- i8042 (interrupt, 1, 12)
[   67.131850] i8042: [66313] 54 <- i8042 (interrupt, 1, 12)
[   67.133381] i8042: [66315] 24 <- i8042 (interrupt, 1, 12)
[   67.135021] i8042: [66317] ef <- i8042 (interrupt, 1, 12)
[   67.136615] i8042: [66318] 31 <- i8042 (interrupt, 1, 12)
[   67.138163] i8042: [66320] 73 <- i8042 (interrupt, 1, 12)
[   67.139741] i8042: [66321] ac <- i8042 (interrupt, 1, 12)
[   67.141323] i8042: [66323] 54 <- i8042 (interrupt, 1, 12)
[   67.142919] i8042: [66324] 24 <- i8042 (interrupt, 1, 12)
[   67.144498] i8042: [66326] e3 <- i8042 (interrupt, 1, 12)
[   67.146087] i8042: [66328] 31 <- i8042 (interrupt, 1, 12)
[   67.147686] i8042: [66329] 73 <- i8042 (interrupt, 1, 12)
[   67.149250] i8042: [66331] a5 <- i8042 (interrupt, 1, 12)
[   67.150791] i8042: [66332] 54 <- i8042 (interrupt, 1, 12)
[   67.152448] i8042: [66334] 24 <- i8042 (interrupt, 1, 12)
[   67.154020] i8042: [66336] d7 <- i8042 (interrupt, 1, 12)
[   67.155605] i8042: [66337] 31 <- i8042 (interrupt, 1, 12)
[   67.157164] i8042: [66339] 73 <- i8042 (interrupt, 1, 12)
[   67.158787] i8042: [66340] 9f <- i8042 (interrupt, 1, 12)
[   67.160316] i8042: [66342] 54 <- i8042 (interrupt, 1, 12)
[   67.161867] i8042: [66343] 24 <- i8042 (interrupt, 1, 12)
[   67.163525] i8042: [66345] cc <- i8042 (interrupt, 1, 12)
[   67.165034] i8042: [66347] 31 <- i8042 (interrupt, 1, 12)
[   67.166685] i8042: [66348] 73 <- i8042 (interrupt, 1, 12)
[   67.168275] i8042: [66350] 9a <- i8042 (interrupt, 1, 12)
[   67.169825] i8042: [66351] 54 <- i8042 (interrupt, 1, 12)
[   67.171455] i8042: [66353] 24 <- i8042 (interrupt, 1, 12)
[   67.172962] i8042: [66355] c4 <- i8042 (interrupt, 1, 12)
[   67.174532] i8042: [66356] 31 <- i8042 (interrupt, 1, 12)
[   67.176156] i8042: [66358] 73 <- i8042 (interrupt, 1, 12)
[   67.177829] i8042: [66359] 94 <- i8042 (interrupt, 1, 12)
[   67.179293] i8042: [66361] 54 <- i8042 (interrupt, 1, 12)
[   67.180860] i8042: [66362] 24 <- i8042 (interrupt, 1, 12)
[   67.182445] i8042: [66364] bb <- i8042 (interrupt, 1, 12)
[   67.184029] i8042: [66366] 31 <- i8042 (interrupt, 1, 12)
[   67.185612] i8042: [66367] 73 <- i8042 (interrupt, 1, 12)
[   67.187233] i8042: [66369] 8d <- i8042 (interrupt, 1, 12)
[   67.188809] i8042: [66370] 54 <- i8042 (interrupt, 1, 12)
[   67.190358] i8042: [66372] 24 <- i8042 (interrupt, 1, 12)
[   67.191942] i8042: [66374] b4 <- i8042 (interrupt, 1, 12)
[   67.193524] i8042: [66375] 31 <- i8042 (interrupt, 1, 12)
[   67.195106] i8042: [66377] 63 <- i8042 (interrupt, 1, 12)
[   67.196699] i8042: [66378] 86 <- i8042 (interrupt, 1, 12)
[   67.198270] i8042: [66380] 54 <- i8042 (interrupt, 1, 12)
[   67.199898] i8042: [66381] 24 <- i8042 (interrupt, 1, 12)
[   67.201439] i8042: [66383] ae <- i8042 (interrupt, 1, 12)
[   67.203055] i8042: [66385] 31 <- i8042 (interrupt, 1, 12)
[   67.204649] i8042: [66386] 63 <- i8042 (interrupt, 1, 12)
[   67.206182] i8042: [66388] 80 <- i8042 (interrupt, 1, 12)
[   67.208339] i8042: [66390] 54 <- i8042 (interrupt, 1, 12)
[   67.209934] i8042: [66392] 24 <- i8042 (interrupt, 1, 12)
[   67.211438] i8042: [66393] ab <- i8042 (interrupt, 1, 12)
[   67.213031] i8042: [66395] 31 <- i8042 (interrupt, 1, 12)
[   67.214614] i8042: [66396] 63 <- i8042 (interrupt, 1, 12)
[   67.216265] i8042: [66398] 79 <- i8042 (interrupt, 1, 12)
[   67.217812] i8042: [66399] 54 <- i8042 (interrupt, 1, 12)
[   67.219432] i8042: [66401] 24 <- i8042 (interrupt, 1, 12)
[   67.221030] i8042: [66403] a8 <- i8042 (interrupt, 1, 12)
[   67.222585] i8042: [66404] 31 <- i8042 (interrupt, 1, 12)
[   67.224145] i8042: [66406] 53 <- i8042 (interrupt, 1, 12)
[   67.225724] i8042: [66407] 74 <- i8042 (interrupt, 1, 12)
[   67.227823] i8042: [66409] 54 <- i8042 (interrupt, 1, 12)
[   67.229442] i8042: [66411] 24 <- i8042 (interrupt, 1, 12)
[   67.231029] i8042: [66413] a6 <- i8042 (interrupt, 1, 12)
[   67.232606] i8042: [66414] 31 <- i8042 (interrupt, 1, 12)
[   67.234149] i8042: [66416] 53 <- i8042 (interrupt, 1, 12)
[   67.235770] i8042: [66417] 70 <- i8042 (interrupt, 1, 12)
[   67.237326] i8042: [66419] 54 <- i8042 (interrupt, 1, 12)
[   67.238983] i8042: [66421] 24 <- i8042 (interrupt, 1, 12)
[   67.240487] i8042: [66422] a6 <- i8042 (interrupt, 1, 12)
[   67.242058] i8042: [66424] 31 <- i8042 (interrupt, 1, 12)
[   67.243689] i8042: [66425] 53 <- i8042 (interrupt, 1, 12)
[   67.245232] i8042: [66427] 70 <- i8042 (interrupt, 1, 12)
[   67.246849] i8042: [66428] 54 <- i8042 (interrupt, 1, 12)
[   67.248394] i8042: [66430] 24 <- i8042 (interrupt, 1, 12)
[   67.249969] i8042: [66432] a7 <- i8042 (interrupt, 1, 12)
[   67.251559] i8042: [66433] 31 <- i8042 (interrupt, 1, 12)
[   67.253144] i8042: [66435] 53 <- i8042 (interrupt, 1, 12)
[   67.254724] i8042: [66436] 6f <- i8042 (interrupt, 1, 12)
[   67.256857] i8042: [66438] 54 <- i8042 (interrupt, 1, 12)
[   67.258393] i8042: [66440] 24 <- i8042 (interrupt, 1, 12)
[   67.260013] i8042: [66442] a7 <- i8042 (interrupt, 1, 12)
[   67.261561] i8042: [66443] 31 <- i8042 (interrupt, 1, 12)
[   67.263176] i8042: [66445] 53 <- i8042 (interrupt, 1, 12)
[   67.264761] i8042: [66446] 6f <- i8042 (interrupt, 1, 12)
[   67.266306] i8042: [66448] 54 <- i8042 (interrupt, 1, 12)
[   67.267928] i8042: [66450] 24 <- i8042 (interrupt, 1, 12)
[   67.269486] i8042: [66451] aa <- i8042 (interrupt, 1, 12)
[   67.271106] i8042: [66453] 31 <- i8042 (interrupt, 1, 12)
[   67.272675] i8042: [66454] 53 <- i8042 (interrupt, 1, 12)
[   67.274224] i8042: [66456] 6c <- i8042 (interrupt, 1, 12)
[   67.276346] i8042: [66458] 54 <- i8042 (interrupt, 1, 12)
[   67.277897] i8042: [66459] 24 <- i8042 (interrupt, 1, 12)
[   67.279474] i8042: [66461] ad <- i8042 (interrupt, 1, 12)
[   67.281053] i8042: [66463] 31 <- i8042 (interrupt, 1, 12)
[   67.282740] i8042: [66464] 53 <- i8042 (interrupt, 1, 12)
[   67.284267] i8042: [66466] 68 <- i8042 (interrupt, 1, 12)
[   67.285817] i8042: [66467] 54 <- i8042 (interrupt, 1, 12)
[   67.287427] i8042: [66469] 24 <- i8042 (interrupt, 1, 12)
[   67.289037] i8042: [66471] b7 <- i8042 (interrupt, 1, 12)
[   67.290559] i8042: [66472] 31 <- i8042 (interrupt, 1, 12)
[   67.292100] i8042: [66474] 53 <- i8042 (interrupt, 1, 12)
[   67.293683] i8042: [66475] 5e <- i8042 (interrupt, 1, 12)
[   67.295308] i8042: [66477] 54 <- i8042 (interrupt, 1, 12)
[   67.296851] i8042: [66478] 24 <- i8042 (interrupt, 1, 12)
[   67.298435] i8042: [66480] be <- i8042 (interrupt, 1, 12)
[   67.300052] i8042: [66482] 31 <- i8042 (interrupt, 1, 12)
[   67.301619] i8042: [66483] 53 <- i8042 (interrupt, 1, 12)
[   67.303213] i8042: [66485] 5b <- i8042 (interrupt, 1, 12)
[   67.305306] i8042: [66487] 54 <- i8042 (interrupt, 1, 12)
[   67.306892] i8042: [66488] 24 <- i8042 (interrupt, 1, 12)
[   67.308478] i8042: [66490] c7 <- i8042 (interrupt, 1, 12)
[   67.310051] i8042: [66492] 31 <- i8042 (interrupt, 1, 12)
[   67.311640] i8042: [66493] 43 <- i8042 (interrupt, 1, 12)
[   67.313241] i8042: [66495] 57 <- i8042 (interrupt, 1, 12)
[   67.314822] i8042: [66496] 54 <- i8042 (interrupt, 1, 12)
[   67.316349] i8042: [66498] 24 <- i8042 (interrupt, 1, 12)
[   67.318018] i8042: [66500] d1 <- i8042 (interrupt, 1, 12)
[   67.319521] i8042: [66501] 31 <- i8042 (interrupt, 1, 12)
[   67.321148] i8042: [66503] 43 <- i8042 (interrupt, 1, 12)
[   67.322682] i8042: [66504] 51 <- i8042 (interrupt, 1, 12)
[   67.324815] i8042: [66506] 54 <- i8042 (interrupt, 1, 12)
[   67.326389] i8042: [66508] 24 <- i8042 (interrupt, 1, 12)
[   67.327991] i8042: [66510] dd <- i8042 (interrupt, 1, 12)
[   67.329519] i8042: [66511] 31 <- i8042 (interrupt, 1, 12)
[   67.331096] i8042: [66513] 43 <- i8042 (interrupt, 1, 12)
[   67.332679] i8042: [66514] 4a <- i8042 (interrupt, 1, 12)
[   67.334339] i8042: [66516] 54 <- i8042 (interrupt, 1, 12)
[   67.335851] i8042: [66517] 24 <- i8042 (interrupt, 1, 12)
[   67.337462] i8042: [66519] e9 <- i8042 (interrupt, 1, 12)
[   67.339007] i8042: [66521] 31 <- i8042 (interrupt, 1, 12)
[   67.340627] i8042: [66522] 43 <- i8042 (interrupt, 1, 12)
[   67.342176] i8042: [66524] 45 <- i8042 (interrupt, 1, 12)
[   67.343793] i8042: [66525] 54 <- i8042 (interrupt, 1, 12)
[   67.345338] i8042: [66527] 24 <- i8042 (interrupt, 1, 12)
[   67.347191] i8042: [66529] f8 <- i8042 (interrupt, 1, 12)
[   67.348554] i8042: [66530] 31 <- i8042 (interrupt, 1, 12)
[   67.350083] i8042: [66532] 43 <- i8042 (interrupt, 1, 12)
[   67.351703] i8042: [66533] 3f <- i8042 (interrupt, 1, 12)
[   67.353754] i8042: [66535] 54 <- i8042 (interrupt, 1, 12)
[   67.355382] i8042: [66537] 25 <- i8042 (interrupt, 1, 12)
[   67.356917] i8042: [66538] 09 <- i8042 (interrupt, 1, 12)
[   67.358509] i8042: [66540] 31 <- i8042 (interrupt, 1, 12)
[   67.360123] i8042: [66542] 23 <- i8042 (interrupt, 1, 12)
[   67.361665] i8042: [66543] 3d <- i8042 (interrupt, 1, 12)
[   67.363292] i8042: [66545] 54 <- i8042 (interrupt, 1, 12)
[   67.364875] i8042: [66546] 25 <- i8042 (interrupt, 1, 12)
[   67.366412] i8042: [66548] 1a <- i8042 (interrupt, 1, 12)
[   67.368031] i8042: [66550] 31 <- i8042 (interrupt, 1, 12)
[   67.369576] i8042: [66551] 03 <- i8042 (interrupt, 1, 12)
[   67.371157] i8042: [66553] 3f <- i8042 (interrupt, 1, 12)
[   67.373283] i8042: [66555] 54 <- i8042 (interrupt, 1, 12)
[   67.374863] i8042: [66556] 25 <- i8042 (interrupt, 1, 12)
[   67.376447] i8042: [66558] 2c <- i8042 (interrupt, 1, 12)
[   67.378105] i8042: [66560] 31 <- i8042 (interrupt, 1, 12)
[   67.379577] i8042: [66561] 03 <- i8042 (interrupt, 1, 12)
[   67.381158] i8042: [66563] 41 <- i8042 (interrupt, 1, 12)
[   67.382763] i8042: [66564] 54 <- i8042 (interrupt, 1, 12)
[   67.384325] i8042: [66566] 25 <- i8042 (interrupt, 1, 12)
[   67.385916] i8042: [66567] 40 <- i8042 (interrupt, 1, 12)
[   67.387496] i8042: [66569] 31 <- i8042 (interrupt, 1, 12)
[   67.389071] i8042: [66571] 03 <- i8042 (interrupt, 1, 12)
[   67.390654] i8042: [66572] 43 <- i8042 (interrupt, 1, 12)
[   67.392328] i8042: [66574] 54 <- i8042 (interrupt, 1, 12)
[   67.393819] i8042: [66575] 25 <- i8042 (interrupt, 1, 12)
[   67.395491] i8042: [66577] 53 <- i8042 (interrupt, 1, 12)
[   67.396988] i8042: [66579] 31 <- i8042 (interrupt, 1, 12)
[   67.398640] i8042: [66580] 03 <- i8042 (interrupt, 1, 12)
[   67.400152] i8042: [66582] 45 <- i8042 (interrupt, 1, 12)
[   67.402243] i8042: [66584] 54 <- i8042 (interrupt, 1, 12)
[   67.403865] i8042: [66585] 25 <- i8042 (interrupt, 1, 12)
[   67.405410] i8042: [66587] 6c <- i8042 (interrupt, 1, 12)
[   67.407035] i8042: [66589] 31 <- i8042 (interrupt, 1, 12)
[   67.408572] i8042: [66590] 23 <- i8042 (interrupt, 1, 12)
[   67.410242] i8042: [66592] 4b <- i8042 (interrupt, 1, 12)
[   67.411797] i8042: [66593] 54 <- i8042 (interrupt, 1, 12)
[   67.413357] i8042: [66595] 25 <- i8042 (interrupt, 1, 12)
[   67.414998] i8042: [66597] 7e <- i8042 (interrupt, 1, 12)
[   67.416557] i8042: [66598] 31 <- i8042 (interrupt, 1, 12)
[   67.418113] i8042: [66600] 23 <- i8042 (interrupt, 1, 12)
[   67.419721] i8042: [66601] 51 <- i8042 (interrupt, 1, 12)
[   67.421782] i8042: [66603] 54 <- i8042 (interrupt, 1, 12)
[   67.423318] i8042: [66605] 25 <- i8042 (interrupt, 1, 12)
[   67.425000] i8042: [66607] 93 <- i8042 (interrupt, 1, 12)
[   67.426484] i8042: [66608] 31 <- i8042 (interrupt, 1, 12)
[   67.428103] i8042: [66610] 23 <- i8042 (interrupt, 1, 12)
[   67.429737] i8042: [66611] 57 <- i8042 (interrupt, 1, 12)
[   67.431267] i8042: [66613] 54 <- i8042 (interrupt, 1, 12)
[   67.432869] i8042: [66614] 25 <- i8042 (interrupt, 1, 12)
[   67.434445] i8042: [66616] aa <- i8042 (interrupt, 1, 12)
[   67.436021] i8042: [66618] 31 <- i8042 (interrupt, 1, 12)
[   67.437593] i8042: [66619] 23 <- i8042 (interrupt, 1, 12)
[   67.439172] i8042: [66621] 5d <- i8042 (interrupt, 1, 12)
[   67.441301] i8042: [66623] 54 <- i8042 (interrupt, 1, 12)
[   67.442848] i8042: [66624] 25 <- i8042 (interrupt, 1, 12)
[   67.444400] i8042: [66626] c3 <- i8042 (interrupt, 1, 12)
[   67.445991] i8042: [66628] 31 <- i8042 (interrupt, 1, 12)
[   67.447597] i8042: [66629] 23 <- i8042 (interrupt, 1, 12)
[   67.449226] i8042: [66631] 64 <- i8042 (interrupt, 1, 12)
[   67.450758] i8042: [66632] 54 <- i8042 (interrupt, 1, 12)
[   67.452341] i8042: [66634] 25 <- i8042 (interrupt, 1, 12)
[   67.453953] i8042: [66636] dc <- i8042 (interrupt, 1, 12)
[   67.455540] i8042: [66637] 31 <- i8042 (interrupt, 1, 12)
[   67.457101] i8042: [66639] 23 <- i8042 (interrupt, 1, 12)
[   67.458704] i8042: [66640] 6c <- i8042 (interrupt, 1, 12)
[   67.460294] i8042: [66642] 54 <- i8042 (interrupt, 1, 12)
[   67.461869] i8042: [66643] 25 <- i8042 (interrupt, 1, 12)
[   67.463451] i8042: [66645] f6 <- i8042 (interrupt, 1, 12)
[   67.465028] i8042: [66647] 31 <- i8042 (interrupt, 1, 12)
[   67.466585] i8042: [66648] 23 <- i8042 (interrupt, 1, 12)
[   67.468171] i8042: [66650] 73 <- i8042 (interrupt, 1, 12)
[   67.470260] i8042: [66652] 54 <- i8042 (interrupt, 1, 12)
[   67.471884] i8042: [66653] 26 <- i8042 (interrupt, 1, 12)
[   67.473452] i8042: [66655] 0f <- i8042 (interrupt, 1, 12)
[   67.475021] i8042: [66657] 31 <- i8042 (interrupt, 1, 12)
[   67.476612] i8042: [66658] 23 <- i8042 (interrupt, 1, 12)
[   67.478200] i8042: [66660] 79 <- i8042 (interrupt, 1, 12)
[   67.479779] i8042: [66661] 54 <- i8042 (interrupt, 1, 12)
[   67.481362] i8042: [66663] 26 <- i8042 (interrupt, 1, 12)
[   67.482938] i8042: [66664] 27 <- i8042 (interrupt, 1, 12)
[   67.484526] i8042: [66666] 31 <- i8042 (interrupt, 1, 12)
[   67.486049] i8042: [66668] 23 <- i8042 (interrupt, 1, 12)
[   67.487657] i8042: [66669] 7e <- i8042 (interrupt, 1, 12)
[   67.489778] i8042: [66671] 54 <- i8042 (interrupt, 1, 12)
[   67.491362] i8042: [66673] 26 <- i8042 (interrupt, 1, 12)
[   67.492949] i8042: [66675] 40 <- i8042 (interrupt, 1, 12)
[   67.494541] i8042: [66676] 31 <- i8042 (interrupt, 1, 12)
[   67.496078] i8042: [66678] 23 <- i8042 (interrupt, 1, 12)
[   67.497681] i8042: [66679] 83 <- i8042 (interrupt, 1, 12)
[   67.499248] i8042: [66681] 54 <- i8042 (interrupt, 1, 12)
[   67.500858] i8042: [66682] 26 <- i8042 (interrupt, 1, 12)
[   67.502372] i8042: [66684] 58 <- i8042 (interrupt, 1, 12)
[   67.504027] i8042: [66686] 31 <- i8042 (interrupt, 1, 12)
[   67.505605] i8042: [66687] 23 <- i8042 (interrupt, 1, 12)
[   67.507158] i8042: [66689] 89 <- i8042 (interrupt, 1, 12)
[   67.508782] i8042: [66690] 54 <- i8042 (interrupt, 1, 12)
[   67.510355] i8042: [66692] 26 <- i8042 (interrupt, 1, 12)
[   67.511968] i8042: [66694] 70 <- i8042 (interrupt, 1, 12)
[   67.513521] i8042: [66695] 31 <- i8042 (interrupt, 1, 12)
[   67.515035] i8042: [66697] 23 <- i8042 (interrupt, 1, 12)
[   67.516694] i8042: [66698] 8f <- i8042 (interrupt, 1, 12)
[   67.518768] i8042: [66700] 54 <- i8042 (interrupt, 1, 12)
[   67.520350] i8042: [66702] 26 <- i8042 (interrupt, 1, 12)
[   67.521962] i8042: [66704] 89 <- i8042 (interrupt, 1, 12)
[   67.523482] i8042: [66705] 31 <- i8042 (interrupt, 1, 12)
[   67.525053] i8042: [66707] 23 <- i8042 (interrupt, 1, 12)
[   67.526647] i8042: [66708] 93 <- i8042 (interrupt, 1, 12)
[   67.528262] i8042: [66710] 54 <- i8042 (interrupt, 1, 12)
[   67.529839] i8042: [66711] 26 <- i8042 (interrupt, 1, 12)
[   67.531438] i8042: [66713] 9f <- i8042 (interrupt, 1, 12)
[   67.533019] i8042: [66715] 31 <- i8042 (interrupt, 1, 12)
[   67.534561] i8042: [66716] 23 <- i8042 (interrupt, 1, 12)
[   67.536146] i8042: [66718] 96 <- i8042 (interrupt, 1, 12)
[   67.538264] i8042: [66720] 54 <- i8042 (interrupt, 1, 12)
[   67.539848] i8042: [66721] 26 <- i8042 (interrupt, 1, 12)
[   67.541423] i8042: [66723] b9 <- i8042 (interrupt, 1, 12)
[   67.543028] i8042: [66725] 31 <- i8042 (interrupt, 1, 12)
[   67.544586] i8042: [66726] 23 <- i8042 (interrupt, 1, 12)
[   67.546178] i8042: [66728] 99 <- i8042 (interrupt, 1, 12)
[   67.547850] i8042: [66729] 54 <- i8042 (interrupt, 1, 12)
[   67.549373] i8042: [66731] 26 <- i8042 (interrupt, 1, 12)
[   67.550856] i8042: [66732] cf <- i8042 (interrupt, 1, 12)
[   67.552506] i8042: [66734] 31 <- i8042 (interrupt, 1, 12)
[   67.554029] i8042: [66736] 23 <- i8042 (interrupt, 1, 12)
[   67.555691] i8042: [66737] 9b <- i8042 (interrupt, 1, 12)
[   67.557257] i8042: [66739] 54 <- i8042 (interrupt, 1, 12)
[   67.558805] i8042: [66740] 26 <- i8042 (interrupt, 1, 12)
[   67.560419] i8042: [66742] e4 <- i8042 (interrupt, 1, 12)
[   67.562020] i8042: [66744] 31 <- i8042 (interrupt, 1, 12)
[   67.563579] i8042: [66745] 23 <- i8042 (interrupt, 1, 12)
[   67.565132] i8042: [66747] 9c <- i8042 (interrupt, 1, 12)
[   67.567247] i8042: [66749] 54 <- i8042 (interrupt, 1, 12)
[   67.568827] i8042: [66750] 26 <- i8042 (interrupt, 1, 12)
[   67.570411] i8042: [66752] f8 <- i8042 (interrupt, 1, 12)
[   67.571982] i8042: [66754] 31 <- i8042 (interrupt, 1, 12)
[   67.573598] i8042: [66755] 23 <- i8042 (interrupt, 1, 12)
[   67.575158] i8042: [66757] 9d <- i8042 (interrupt, 1, 12)
[   67.576740] i8042: [66758] 54 <- i8042 (interrupt, 1, 12)
[   67.578260] i8042: [66760] 27 <- i8042 (interrupt, 1, 12)
[   67.579844] i8042: [66761] 0a <- i8042 (interrupt, 1, 12)
[   67.581487] i8042: [66763] 31 <- i8042 (interrupt, 1, 12)
[   67.583039] i8042: [66765] 23 <- i8042 (interrupt, 1, 12)
[   67.584659] i8042: [66766] 9d <- i8042 (interrupt, 1, 12)
[   67.586749] i8042: [66768] 54 <- i8042 (interrupt, 1, 12)
[   67.588293] i8042: [66770] 27 <- i8042 (interrupt, 1, 12)
[   67.589840] i8042: [66771] 22 <- i8042 (interrupt, 1, 12)
[   67.591421] i8042: [66773] 31 <- i8042 (interrupt, 1, 12)
[   67.593038] i8042: [66775] 23 <- i8042 (interrupt, 1, 12)
[   67.594625] i8042: [66776] 9d <- i8042 (interrupt, 1, 12)
[   67.596213] i8042: [66778] 54 <- i8042 (interrupt, 1, 12)
[   67.597784] i8042: [66779] 27 <- i8042 (interrupt, 1, 12)
[   67.599364] i8042: [66781] 35 <- i8042 (interrupt, 1, 12)
[   67.600944] i8042: [66783] 31 <- i8042 (interrupt, 1, 12)
[   67.602570] i8042: [66784] 23 <- i8042 (interrupt, 1, 12)
[   67.604084] i8042: [66786] 9c <- i8042 (interrupt, 1, 12)
[   67.605678] i8042: [66787] 54 <- i8042 (interrupt, 1, 12)
[   67.607255] i8042: [66789] 27 <- i8042 (interrupt, 1, 12)
[   67.608832] i8042: [66790] 46 <- i8042 (interrupt, 1, 12)
[   67.610448] i8042: [66792] 31 <- i8042 (interrupt, 1, 12)
[   67.612016] i8042: [66794] 23 <- i8042 (interrupt, 1, 12)
[   67.613642] i8042: [66795] 9b <- i8042 (interrupt, 1, 12)
[   67.615700] i8042: [66797] 54 <- i8042 (interrupt, 1, 12)
[   67.617318] i8042: [66799] 27 <- i8042 (interrupt, 1, 12)
[   67.618848] i8042: [66800] 57 <- i8042 (interrupt, 1, 12)
[   67.620451] i8042: [66802] 31 <- i8042 (interrupt, 1, 12)
[   67.621999] i8042: [66804] 23 <- i8042 (interrupt, 1, 12)
[   67.623583] i8042: [66805] 98 <- i8042 (interrupt, 1, 12)
[   67.625164] i8042: [66807] 54 <- i8042 (interrupt, 1, 12)
[   67.626779] i8042: [66808] 27 <- i8042 (interrupt, 1, 12)
[   67.628349] i8042: [66810] 66 <- i8042 (interrupt, 1, 12)
[   67.629946] i8042: [66812] 31 <- i8042 (interrupt, 1, 12)
[   67.631495] i8042: [66813] 23 <- i8042 (interrupt, 1, 12)
[   67.633117] i8042: [66815] 93 <- i8042 (interrupt, 1, 12)
[   67.635200] i8042: [66817] 54 <- i8042 (interrupt, 1, 12)
[   67.636774] i8042: [66818] 27 <- i8042 (interrupt, 1, 12)
[   67.638376] i8042: [66820] 75 <- i8042 (interrupt, 1, 12)
[   67.639957] i8042: [66822] 31 <- i8042 (interrupt, 1, 12)
[   67.641538] i8042: [66823] 23 <- i8042 (interrupt, 1, 12)
[   67.643135] i8042: [66825] 8d <- i8042 (interrupt, 1, 12)
[   67.644662] i8042: [66826] 54 <- i8042 (interrupt, 1, 12)
[   67.646273] i8042: [66828] 27 <- i8042 (interrupt, 1, 12)
[   67.647862] i8042: [66829] 83 <- i8042 (interrupt, 1, 12)
[   67.649443] i8042: [66831] 31 <- i8042 (interrupt, 1, 12)
[   67.651067] i8042: [66833] 03 <- i8042 (interrupt, 1, 12)
[   67.652574] i8042: [66834] 88 <- i8042 (interrupt, 1, 12)
[   67.654187] i8042: [66836] 54 <- i8042 (interrupt, 1, 12)
[   67.655765] i8042: [66837] 27 <- i8042 (interrupt, 1, 12)
[   67.657351] i8042: [66839] 8e <- i8042 (interrupt, 1, 12)
[   67.658900] i8042: [66840] 31 <- i8042 (interrupt, 1, 12)
[   67.660480] i8042: [66842] 03 <- i8042 (interrupt, 1, 12)
[   67.662108] i8042: [66844] 86 <- i8042 (interrupt, 1, 12)
[   67.664161] i8042: [66846] 54 <- i8042 (interrupt, 1, 12)
[   67.665815] i8042: [66847] 27 <- i8042 (interrupt, 1, 12)
[   67.667351] i8042: [66849] 99 <- i8042 (interrupt, 1, 12)
[   67.668900] i8042: [66850] 31 <- i8042 (interrupt, 1, 12)
[   67.670483] i8042: [66852] 03 <- i8042 (interrupt, 1, 12)
[   67.672071] i8042: [66854] 84 <- i8042 (interrupt, 1, 12)
[   67.673658] i8042: [66855] 54 <- i8042 (interrupt, 1, 12)
[   67.675303] i8042: [66857] 27 <- i8042 (interrupt, 1, 12)
[   67.676847] i8042: [66858] a3 <- i8042 (interrupt, 1, 12)
[   67.678399] i8042: [66860] 31 <- i8042 (interrupt, 1, 12)
[   67.680003] i8042: [66862] 03 <- i8042 (interrupt, 1, 12)
[   67.681575] i8042: [66863] 7f <- i8042 (interrupt, 1, 12)
[   67.683656] i8042: [66865] 54 <- i8042 (interrupt, 1, 12)
[   67.685270] i8042: [66867] 17 <- i8042 (interrupt, 1, 12)
[   67.686831] i8042: [66868] ab <- i8042 (interrupt, 1, 12)
[   67.688404] i8042: [66870] 31 <- i8042 (interrupt, 1, 12)
[   67.689996] i8042: [66872] f3 <- i8042 (interrupt, 1, 12)
[   67.691567] i8042: [66873] 77 <- i8042 (interrupt, 1, 12)
[   67.693150] i8042: [66875] 54 <- i8042 (interrupt, 1, 12)
[   67.694766] i8042: [66876] 17 <- i8042 (interrupt, 1, 12)
[   67.696320] i8042: [66878] b2 <- i8042 (interrupt, 1, 12)
[   67.697945] i8042: [66880] 31 <- i8042 (interrupt, 1, 12)
[   67.699481] i8042: [66881] f3 <- i8042 (interrupt, 1, 12)
[   67.701064] i8042: [66883] 6f <- i8042 (interrupt, 1, 12)
[   67.702681] i8042: [66884] 44 <- i8042 (interrupt, 1, 12)
[   67.704243] i8042: [66886] 17 <- i8042 (interrupt, 1, 12)
[   67.705816] i8042: [66887] b9 <- i8042 (interrupt, 1, 12)
[   67.707397] i8042: [66889] 31 <- i8042 (interrupt, 1, 12)
[   67.709008] i8042: [66891] d3 <- i8042 (interrupt, 1, 12)
[   67.710562] i8042: [66892] 66 <- i8042 (interrupt, 1, 12)
[   67.712650] i8042: [66894] 44 <- i8042 (interrupt, 1, 12)
[   67.714310] i8042: [66896] 17 <- i8042 (interrupt, 1, 12)
[   67.715901] i8042: [66897] be <- i8042 (interrupt, 1, 12)
[   67.717397] i8042: [66899] 31 <- i8042 (interrupt, 1, 12)
[   67.718979] i8042: [66901] d3 <- i8042 (interrupt, 1, 12)
[   67.720623] i8042: [66902] 5f <- i8042 (interrupt, 1, 12)
[   67.722209] i8042: [66904] 44 <- i8042 (interrupt, 1, 12)
[   67.723738] i8042: [66905] 17 <- i8042 (interrupt, 1, 12)
[   67.725389] i8042: [66907] c1 <- i8042 (interrupt, 1, 12)
[   67.726893] i8042: [66908] 31 <- i8042 (interrupt, 1, 12)
[   67.728535] i8042: [66910] d3 <- i8042 (interrupt, 1, 12)
[   67.730098] i8042: [66912] 58 <- i8042 (interrupt, 1, 12)
[   67.732145] i8042: [66914] 44 <- i8042 (interrupt, 1, 12)
[   67.733725] i8042: [66915] 17 <- i8042 (interrupt, 1, 12)
[   67.735308] i8042: [66917] c3 <- i8042 (interrupt, 1, 12)
[   67.736895] i8042: [66918] 31 <- i8042 (interrupt, 1, 12)
[   67.738471] i8042: [66920] d3 <- i8042 (interrupt, 1, 12)
[   67.740054] i8042: [66922] 52 <- i8042 (interrupt, 1, 12)
[   67.741635] i8042: [66923] 54 <- i8042 (interrupt, 1, 12)
[   67.743251] i8042: [66925] 17 <- i8042 (interrupt, 1, 12)
[   67.744799] i8042: [66926] c2 <- i8042 (interrupt, 1, 12)
[   67.746378] i8042: [66928] 31 <- i8042 (interrupt, 1, 12)
[   67.747980] i8042: [66930] d3 <- i8042 (interrupt, 1, 12)
[   67.749586] i8042: [66931] 4d <- i8042 (interrupt, 1, 12)
[   67.751634] i8042: [66933] 54 <- i8042 (interrupt, 1, 12)
[   67.753219] i8042: [66935] 17 <- i8042 (interrupt, 1, 12)
[   67.754807] i8042: [66936] bd <- i8042 (interrupt, 1, 12)
[   67.756381] i8042: [66938] 31 <- i8042 (interrupt, 1, 12)
[   67.757964] i8042: [66940] d3 <- i8042 (interrupt, 1, 12)
[   67.759545] i8042: [66941] 49 <- i8042 (interrupt, 1, 12)
[   67.761144] i8042: [66943] 54 <- i8042 (interrupt, 1, 12)
[   67.762709] i8042: [66944] 17 <- i8042 (interrupt, 1, 12)
[   67.764291] i8042: [66946] b4 <- i8042 (interrupt, 1, 12)
[   67.765962] i8042: [66948] 31 <- i8042 (interrupt, 1, 12)
[   67.767487] i8042: [66949] d3 <- i8042 (interrupt, 1, 12)
[   67.769075] i8042: [66951] 44 <- i8042 (interrupt, 1, 12)
[   67.770654] i8042: [66952] 54 <- i8042 (interrupt, 1, 12)
[   67.772243] i8042: [66954] 17 <- i8042 (interrupt, 1, 12)
[   67.773788] i8042: [66955] ac <- i8042 (interrupt, 1, 12)
[   67.775372] i8042: [66957] 31 <- i8042 (interrupt, 1, 12)
[   67.776971] i8042: [66959] d3 <- i8042 (interrupt, 1, 12)
[   67.778534] i8042: [66960] 40 <- i8042 (interrupt, 1, 12)
[   67.780673] i8042: [66962] 54 <- i8042 (interrupt, 1, 12)
[   67.782273] i8042: [66964] 17 <- i8042 (interrupt, 1, 12)
[   67.783839] i8042: [66965] a3 <- i8042 (interrupt, 1, 12)
[   67.785365] i8042: [66967] 31 <- i8042 (interrupt, 1, 12)
[   67.786984] i8042: [66969] f3 <- i8042 (interrupt, 1, 12)
[   67.788563] i8042: [66970] 3c <- i8042 (interrupt, 1, 12)
[   67.790114] i8042: [66972] 54 <- i8042 (interrupt, 1, 12)
[   67.791714] i8042: [66973] 27 <- i8042 (interrupt, 1, 12)
[   67.793281] i8042: [66975] 99 <- i8042 (interrupt, 1, 12)
[   67.794909] i8042: [66976] 31 <- i8042 (interrupt, 1, 12)
[   67.796478] i8042: [66978] 03 <- i8042 (interrupt, 1, 12)
[   67.798068] i8042: [66980] 38 <- i8042 (interrupt, 1, 12)
[   67.800150] i8042: [66982] 54 <- i8042 (interrupt, 1, 12)
[   67.801731] i8042: [66983] 27 <- i8042 (interrupt, 1, 12)
[   67.803280] i8042: [66985] 8b <- i8042 (interrupt, 1, 12)
[   67.804864] i8042: [66986] 31 <- i8042 (interrupt, 1, 12)
[   67.806476] i8042: [66988] 03 <- i8042 (interrupt, 1, 12)
[   67.808029] i8042: [66990] 31 <- i8042 (interrupt, 1, 12)
[   67.809615] i8042: [66991] 54 <- i8042 (interrupt, 1, 12)
[   67.811273] i8042: [66993] 27 <- i8042 (interrupt, 1, 12)
[   67.812781] i8042: [66994] 7f <- i8042 (interrupt, 1, 12)
[   67.814395] i8042: [66996] 31 <- i8042 (interrupt, 1, 12)
[   67.816018] i8042: [66998] 03 <- i8042 (interrupt, 1, 12)
[   67.817593] i8042: [66999] 30 <- i8042 (interrupt, 1, 12)
[   67.819118] i8042: [67001] 54 <- i8042 (interrupt, 1, 12)
[   67.820693] i8042: [67002] 27 <- i8042 (interrupt, 1, 12)
[   67.822383] i8042: [67004] 6e <- i8042 (interrupt, 1, 12)
[   67.824043] i8042: [67006] 31 <- i8042 (interrupt, 1, 12)
[   67.825512] i8042: [67007] 03 <- i8042 (interrupt, 1, 12)
[   67.827126] i8042: [67009] 2f <- i8042 (interrupt, 1, 12)
[   67.829113] i8042: [67011] 54 <- i8042 (interrupt, 1, 12)
[   67.830848] i8042: [67012] 27 <- i8042 (interrupt, 1, 12)
[   67.832346] i8042: [67014] 5d <- i8042 (interrupt, 1, 12)
[   67.834034] i8042: [67016] 31 <- i8042 (interrupt, 1, 12)
[   67.835507] i8042: [67017] 03 <- i8042 (interrupt, 1, 12)
[   67.837108] i8042: [67019] 2f <- i8042 (interrupt, 1, 12)
[   67.838755] i8042: [67020] 54 <- i8042 (interrupt, 1, 12)
[   67.840269] i8042: [67022] 27 <- i8042 (interrupt, 1, 12)
[   67.841928] i8042: [67023] 4d <- i8042 (interrupt, 1, 12)
[   67.843506] i8042: [67025] 31 <- i8042 (interrupt, 1, 12)
[   67.845272] i8042: [67027] 03 <- i8042 (interrupt, 1, 12)
[   67.846853] i8042: [67028] 31 <- i8042 (interrupt, 1, 12)
[   67.848725] i8042: [67030] 54 <- i8042 (interrupt, 1, 12)
[   67.850275] i8042: [67032] 27 <- i8042 (interrupt, 1, 12)
[   67.851902] i8042: [67033] 34 <- i8042 (interrupt, 1, 12)
[   67.853473] i8042: [67035] 31 <- i8042 (interrupt, 1, 12)
[   67.855072] i8042: [67037] 23 <- i8042 (interrupt, 1, 12)
[   67.856823] i8042: [67038] 34 <- i8042 (interrupt, 1, 12)
[   67.858162] i8042: [67040] 54 <- i8042 (interrupt, 1, 12)
[   67.859810] i8042: [67041] 27 <- i8042 (interrupt, 1, 12)
[   67.861386] i8042: [67043] 1a <- i8042 (interrupt, 1, 12)
[   67.862983] i8042: [67045] 31 <- i8042 (interrupt, 1, 12)
[   67.864556] i8042: [67046] 23 <- i8042 (interrupt, 1, 12)
[   67.866114] i8042: [67048] 3c <- i8042 (interrupt, 1, 12)
[   67.867700] i8042: [67049] 54 <- i8042 (interrupt, 1, 12)
[   67.869271] i8042: [67051] 27 <- i8042 (interrupt, 1, 12)
[   67.871068] i8042: [67053] 03 <- i8042 (interrupt, 1, 12)
[   67.872644] i8042: [67054] 31 <- i8042 (interrupt, 1, 12)
[   67.874070] i8042: [67056] 23 <- i8042 (interrupt, 1, 12)
[   67.875809] i8042: [67057] 41 <- i8042 (interrupt, 1, 12)
[   67.877729] i8042: [67059] 44 <- i8042 (interrupt, 1, 12)
[   67.879232] i8042: [67061] 26 <- i8042 (interrupt, 1, 12)
[   67.880886] i8042: [67062] ed <- i8042 (interrupt, 1, 12)
[   67.882647] i8042: [67064] 31 <- i8042 (interrupt, 1, 12)
[   67.884068] i8042: [67066] 23 <- i8042 (interrupt, 1, 12)
[   67.885802] i8042: [67067] 46 <- i8042 (interrupt, 1, 12)
[   67.887146] i8042: [67069] 54 <- i8042 (interrupt, 1, 12)
[   67.888801] i8042: [67070] 26 <- i8042 (interrupt, 1, 12)
[   67.890287] i8042: [67072] d7 <- i8042 (interrupt, 1, 12)
[   67.891978] i8042: [67074] 31 <- i8042 (interrupt, 1, 12)
[   67.893550] i8042: [67075] 23 <- i8042 (interrupt, 1, 12)
[   67.895116] i8042: [67077] 4a <- i8042 (interrupt, 1, 12)
[   67.897173] i8042: [67079] 54 <- i8042 (interrupt, 1, 12)
[   67.898799] i8042: [67080] 26 <- i8042 (interrupt, 1, 12)
[   67.900380] i8042: [67082] c0 <- i8042 (interrupt, 1, 12)
[   67.901910] i8042: [67083] 31 <- i8042 (interrupt, 1, 12)
[   67.903456] i8042: [67085] 43 <- i8042 (interrupt, 1, 12)
[   67.905046] i8042: [67087] 50 <- i8042 (interrupt, 1, 12)
[   67.906622] i8042: [67088] 54 <- i8042 (interrupt, 1, 12)
[   67.908202] i8042: [67090] 26 <- i8042 (interrupt, 1, 12)
[   67.909781] i8042: [67091] ab <- i8042 (interrupt, 1, 12)
[   67.911407] i8042: [67093] 31 <- i8042 (interrupt, 1, 12)
[   67.912986] i8042: [67095] 43 <- i8042 (interrupt, 1, 12)
[   67.914579] i8042: [67096] 59 <- i8042 (interrupt, 1, 12)
[   67.916078] i8042: [67098] 54 <- i8042 (interrupt, 1, 12)
[   67.917782] i8042: [67099] 26 <- i8042 (interrupt, 1, 12)
[   67.919321] i8042: [67101] 96 <- i8042 (interrupt, 1, 12)
[   67.920900] i8042: [67102] 31 <- i8042 (interrupt, 1, 12)
[   67.922526] i8042: [67104] 53 <- i8042 (interrupt, 1, 12)
[   67.924286] i8042: [67106] 63 <- i8042 (interrupt, 1, 12)
[   67.926084] i8042: [67108] 54 <- i8042 (interrupt, 1, 12)
[   67.927780] i8042: [67109] 26 <- i8042 (interrupt, 1, 12)
[   67.929357] i8042: [67111] 81 <- i8042 (interrupt, 1, 12)
[   67.930952] i8042: [67113] 31 <- i8042 (interrupt, 1, 12)
[   67.932401] i8042: [67114] 53 <- i8042 (interrupt, 1, 12)
[   67.934086] i8042: [67116] 6c <- i8042 (interrupt, 1, 12)
[   67.935687] i8042: [67117] 54 <- i8042 (interrupt, 1, 12)
[   67.937228] i8042: [67119] 26 <- i8042 (interrupt, 1, 12)
[   67.938805] i8042: [67120] 6d <- i8042 (interrupt, 1, 12)
[   67.940612] i8042: [67122] 31 <- i8042 (interrupt, 1, 12)
[   67.942200] i8042: [67124] 53 <- i8042 (interrupt, 1, 12)
[   67.943779] i8042: [67125] 75 <- i8042 (interrupt, 1, 12)
[   67.945688] i8042: [67127] 54 <- i8042 (interrupt, 1, 12)
[   67.947196] i8042: [67129] 26 <- i8042 (interrupt, 1, 12)
[   67.948842] i8042: [67130] 5a <- i8042 (interrupt, 1, 12)
[   67.950434] i8042: [67132] 31 <- i8042 (interrupt, 1, 12)
[   67.952033] i8042: [67134] 53 <- i8042 (interrupt, 1, 12)
[   67.953554] i8042: [67135] 7f <- i8042 (interrupt, 1, 12)
[   67.955102] i8042: [67137] 54 <- i8042 (interrupt, 1, 12)
[   67.956725] i8042: [67138] 26 <- i8042 (interrupt, 1, 12)
[   67.958341] i8042: [67140] 47 <- i8042 (interrupt, 1, 12)
[   67.959919] i8042: [67141] 31 <- i8042 (interrupt, 1, 12)
[   67.961512] i8042: [67143] 53 <- i8042 (interrupt, 1, 12)
[   67.963071] i8042: [67145] 89 <- i8042 (interrupt, 1, 12)
[   67.964560] i8042: [67146] 54 <- i8042 (interrupt, 1, 12)
[   67.966138] i8042: [67148] 26 <- i8042 (interrupt, 1, 12)
[   67.967722] i8042: [67149] 35 <- i8042 (interrupt, 1, 12)
[   67.969301] i8042: [67151] 31 <- i8042 (interrupt, 1, 12)
[   67.970880] i8042: [67152] 53 <- i8042 (interrupt, 1, 12)
[   67.972464] i8042: [67154] 93 <- i8042 (interrupt, 1, 12)
[   67.974562] i8042: [67156] 54 <- i8042 (interrupt, 1, 12)
[   67.976131] i8042: [67158] 26 <- i8042 (interrupt, 1, 12)
[   67.977718] i8042: [67159] 22 <- i8042 (interrupt, 1, 12)
[   67.979299] i8042: [67161] 31 <- i8042 (interrupt, 1, 12)
[   67.980881] i8042: [67162] 53 <- i8042 (interrupt, 1, 12)
[   67.982467] i8042: [67164] 9f <- i8042 (interrupt, 1, 12)
[   67.984061] i8042: [67166] 54 <- i8042 (interrupt, 1, 12)
[   67.985629] i8042: [67167] 26 <- i8042 (interrupt, 1, 12)
[   67.987222] i8042: [67169] 10 <- i8042 (interrupt, 1, 12)
[   67.988796] i8042: [67170] 31 <- i8042 (interrupt, 1, 12)
[   67.990379] i8042: [67172] 53 <- i8042 (interrupt, 1, 12)
[   67.991959] i8042: [67174] ab <- i8042 (interrupt, 1, 12)
[   67.994054] i8042: [67176] 54 <- i8042 (interrupt, 1, 12)
[   67.995633] i8042: [67177] 25 <- i8042 (interrupt, 1, 12)
[   67.997216] i8042: [67179] fe <- i8042 (interrupt, 1, 12)
[   67.998797] i8042: [67180] 31 <- i8042 (interrupt, 1, 12)
[   68.000377] i8042: [67182] 53 <- i8042 (interrupt, 1, 12)
[   68.001959] i8042: [67184] b7 <- i8042 (interrupt, 1, 12)
[   68.003558] i8042: [67185] 54 <- i8042 (interrupt, 1, 12)
[   68.005123] i8042: [67187] 25 <- i8042 (interrupt, 1, 12)
[   68.006715] i8042: [67188] ea <- i8042 (interrupt, 1, 12)
[   68.008295] i8042: [67190] 31 <- i8042 (interrupt, 1, 12)
[   68.009956] i8042: [67192] 53 <- i8042 (interrupt, 1, 12)
[   68.011459] i8042: [67193] c6 <- i8042 (interrupt, 1, 12)
[   68.013049] i8042: [67195] 54 <- i8042 (interrupt, 1, 12)
[   68.014627] i8042: [67196] 25 <- i8042 (interrupt, 1, 12)
[   68.016211] i8042: [67198] da <- i8042 (interrupt, 1, 12)
[   68.017794] i8042: [67199] 31 <- i8042 (interrupt, 1, 12)
[   68.019373] i8042: [67201] 53 <- i8042 (interrupt, 1, 12)
[   68.020955] i8042: [67203] d4 <- i8042 (interrupt, 1, 12)
[   68.023090] i8042: [67205] 54 <- i8042 (interrupt, 1, 12)
[   68.024630] i8042: [67206] 25 <- i8042 (interrupt, 1, 12)
[   68.026207] i8042: [67208] ca <- i8042 (interrupt, 1, 12)
[   68.027791] i8042: [67209] 31 <- i8042 (interrupt, 1, 12)
[   68.029370] i8042: [67211] 43 <- i8042 (interrupt, 1, 12)
[   68.030991] i8042: [67213] e1 <- i8042 (interrupt, 1, 12)
[   68.032581] i8042: [67214] 44 <- i8042 (interrupt, 1, 12)
[   68.034147] i8042: [67216] 25 <- i8042 (interrupt, 1, 12)
[   68.035729] i8042: [67217] b9 <- i8042 (interrupt, 1, 12)
[   68.037313] i8042: [67219] 31 <- i8042 (interrupt, 1, 12)
[   68.038930] i8042: [67220] 43 <- i8042 (interrupt, 1, 12)
[   68.040513] i8042: [67222] ec <- i8042 (interrupt, 1, 12)
[   68.042569] i8042: [67224] 54 <- i8042 (interrupt, 1, 12)
[   68.044146] i8042: [67226] 25 <- i8042 (interrupt, 1, 12)
[   68.045730] i8042: [67227] aa <- i8042 (interrupt, 1, 12)
[   68.047346] i8042: [67229] 31 <- i8042 (interrupt, 1, 12)
[   68.048926] i8042: [67230] 43 <- i8042 (interrupt, 1, 12)
[   68.050503] i8042: [67232] f5 <- i8042 (interrupt, 1, 12)
[   68.052093] i8042: [67234] 54 <- i8042 (interrupt, 1, 12)
[   68.053619] i8042: [67235] 25 <- i8042 (interrupt, 1, 12)
[   68.055231] i8042: [67237] 98 <- i8042 (interrupt, 1, 12)
[   68.056772] i8042: [67238] 31 <- i8042 (interrupt, 1, 12)
[   68.058435] i8042: [67240] 43 <- i8042 (interrupt, 1, 12)
[   68.059977] i8042: [67242] fc <- i8042 (interrupt, 1, 12)
[   68.062026] i8042: [67244] 54 <- i8042 (interrupt, 1, 12)
[   68.063682] i8042: [67245] 25 <- i8042 (interrupt, 1, 12)
[   68.065262] i8042: [67247] 85 <- i8042 (interrupt, 1, 12)
[   68.066835] i8042: [67248] 31 <- i8042 (interrupt, 1, 12)
[   68.068415] i8042: [67250] 44 <- i8042 (interrupt, 1, 12)
[   68.069998] i8042: [67252] 03 <- i8042 (interrupt, 1, 12)
[   68.071550] i8042: [67253] 54 <- i8042 (interrupt, 1, 12)
[   68.073131] i8042: [67255] 25 <- i8042 (interrupt, 1, 12)
[   68.074726] i8042: [67256] 72 <- i8042 (interrupt, 1, 12)
[   68.076293] i8042: [67258] 31 <- i8042 (interrupt, 1, 12)
[   68.077875] i8042: [67259] 44 <- i8042 (interrupt, 1, 12)
[   68.079554] i8042: [67261] 0a <- i8042 (interrupt, 1, 12)
[   68.081100] i8042: [67263] 54 <- i8042 (interrupt, 1, 12)
[   68.082693] i8042: [67264] 25 <- i8042 (interrupt, 1, 12)
[   68.084246] i8042: [67266] 5e <- i8042 (interrupt, 1, 12)
[   68.085881] i8042: [67267] 31 <- i8042 (interrupt, 1, 12)
[   68.087445] i8042: [67269] 24 <- i8042 (interrupt, 1, 12)
[   68.089093] i8042: [67271] 0f <- i8042 (interrupt, 1, 12)
[   68.091098] i8042: [67273] 54 <- i8042 (interrupt, 1, 12)
[   68.092679] i8042: [67274] 25 <- i8042 (interrupt, 1, 12)
[   68.094222] i8042: [67276] 4a <- i8042 (interrupt, 1, 12)
[   68.095874] i8042: [67277] 31 <- i8042 (interrupt, 1, 12)
[   68.097433] i8042: [67279] 24 <- i8042 (interrupt, 1, 12)
[   68.099079] i8042: [67281] 14 <- i8042 (interrupt, 1, 12)
[   68.100665] i8042: [67282] 44 <- i8042 (interrupt, 1, 12)
[   68.102165] i8042: [67284] 25 <- i8042 (interrupt, 1, 12)
[   68.103820] i8042: [67285] 37 <- i8042 (interrupt, 1, 12)
[   68.105319] i8042: [67287] 31 <- i8042 (interrupt, 1, 12)
[   68.107004] i8042: [67289] 24 <- i8042 (interrupt, 1, 12)
[   68.108447] i8042: [67290] 18 <- i8042 (interrupt, 1, 12)
[   68.110670] i8042: [67292] 44 <- i8042 (interrupt, 1, 12)
[   68.112137] i8042: [67294] 25 <- i8042 (interrupt, 1, 12)
[   68.113778] i8042: [67295] 25 <- i8042 (interrupt, 1, 12)
[   68.115363] i8042: [67297] 31 <- i8042 (interrupt, 1, 12)
[   68.116976] i8042: [67299] 24 <- i8042 (interrupt, 1, 12)
[   68.118448] i8042: [67300] 1b <- i8042 (interrupt, 1, 12)
[   68.120086] i8042: [67302] 54 <- i8042 (interrupt, 1, 12)
[   68.121623] i8042: [67303] 25 <- i8042 (interrupt, 1, 12)
[   68.123205] i8042: [67305] 10 <- i8042 (interrupt, 1, 12)
[   68.124746] i8042: [67306] 31 <- i8042 (interrupt, 1, 12)
[   68.126449] i8042: [67308] 24 <- i8042 (interrupt, 1, 12)
[   68.128220] i8042: [67310] 1d <- i8042 (interrupt, 1, 12)
[   68.129538] i8042: [67311] 54 <- i8042 (interrupt, 1, 12)
[   68.131385] i8042: [67313] 24 <- i8042 (interrupt, 1, 12)
[   68.132962] i8042: [67315] fd <- i8042 (interrupt, 1, 12)
[   68.134364] i8042: [67316] 31 <- i8042 (interrupt, 1, 12)
[   68.136122] i8042: [67318] 24 <- i8042 (interrupt, 1, 12)
[   68.137526] i8042: [67319] 1e <- i8042 (interrupt, 1, 12)
[   68.139614] i8042: [67321] 54 <- i8042 (interrupt, 1, 12)
[   68.141085] i8042: [67323] 24 <- i8042 (interrupt, 1, 12)
[   68.142785] i8042: [67324] eb <- i8042 (interrupt, 1, 12)
[   68.144351] i8042: [67326] 31 <- i8042 (interrupt, 1, 12)
[   68.145834] i8042: [67327] 24 <- i8042 (interrupt, 1, 12)
[   68.147523] i8042: [67329] 1f <- i8042 (interrupt, 1, 12)
[   68.148987] i8042: [67331] 54 <- i8042 (interrupt, 1, 12)
[   68.150614] i8042: [67332] 24 <- i8042 (interrupt, 1, 12)
[   68.152158] i8042: [67334] da <- i8042 (interrupt, 1, 12)
[   68.153845] i8042: [67335] 31 <- i8042 (interrupt, 1, 12)
[   68.155423] i8042: [67337] 24 <- i8042 (interrupt, 1, 12)
[   68.157031] i8042: [67339] 1f <- i8042 (interrupt, 1, 12)
[   68.159061] i8042: [67341] 54 <- i8042 (interrupt, 1, 12)
[   68.160612] i8042: [67342] 24 <- i8042 (interrupt, 1, 12)
[   68.162199] i8042: [67344] c9 <- i8042 (interrupt, 1, 12)
[   68.163842] i8042: [67345] 31 <- i8042 (interrupt, 1, 12)
[   68.165420] i8042: [67347] 24 <- i8042 (interrupt, 1, 12)
[   68.167014] i8042: [67349] 1f <- i8042 (interrupt, 1, 12)
[   68.168532] i8042: [67350] 54 <- i8042 (interrupt, 1, 12)
[   68.170141] i8042: [67352] 24 <- i8042 (interrupt, 1, 12)
[   68.171754] i8042: [67353] ba <- i8042 (interrupt, 1, 12)
[   68.173350] i8042: [67355] 31 <- i8042 (interrupt, 1, 12)
[   68.174921] i8042: [67356] 24 <- i8042 (interrupt, 1, 12)
[   68.176508] i8042: [67358] 1e <- i8042 (interrupt, 1, 12)
[   68.178030] i8042: [67360] 54 <- i8042 (interrupt, 1, 12)
[   68.179635] i8042: [67361] 24 <- i8042 (interrupt, 1, 12)
[   68.181187] i8042: [67363] aa <- i8042 (interrupt, 1, 12)
[   68.182934] i8042: [67364] 31 <- i8042 (interrupt, 1, 12)
[   68.184412] i8042: [67366] 24 <- i8042 (interrupt, 1, 12)
[   68.186003] i8042: [67368] 19 <- i8042 (interrupt, 1, 12)
[   68.188070] i8042: [67370] 44 <- i8042 (interrupt, 1, 12)
[   68.189597] i8042: [67371] 24 <- i8042 (interrupt, 1, 12)
[   68.191284] i8042: [67373] 9a <- i8042 (interrupt, 1, 12)
[   68.192857] i8042: [67374] 31 <- i8042 (interrupt, 1, 12)
[   68.194446] i8042: [67376] 24 <- i8042 (interrupt, 1, 12)
[   68.196026] i8042: [67378] 13 <- i8042 (interrupt, 1, 12)
[   68.197570] i8042: [67379] 44 <- i8042 (interrupt, 1, 12)
[   68.199071] i8042: [67381] 24 <- i8042 (interrupt, 1, 12)
[   68.200736] i8042: [67382] 8b <- i8042 (interrupt, 1, 12)
[   68.202332] i8042: [67384] 31 <- i8042 (interrupt, 1, 12)
[   68.203921] i8042: [67385] 24 <- i8042 (interrupt, 1, 12)
[   68.205493] i8042: [67387] 0c <- i8042 (interrupt, 1, 12)
[   68.207579] i8042: [67389] 44 <- i8042 (interrupt, 1, 12)
[   68.209072] i8042: [67391] 24 <- i8042 (interrupt, 1, 12)
[   68.210737] i8042: [67392] 7c <- i8042 (interrupt, 1, 12)
[   68.212311] i8042: [67394] 31 <- i8042 (interrupt, 1, 12)
[   68.213908] i8042: [67395] 24 <- i8042 (interrupt, 1, 12)
[   68.215507] i8042: [67397] 04 <- i8042 (interrupt, 1, 12)
[   68.217087] i8042: [67399] 54 <- i8042 (interrupt, 1, 12)
[   68.218663] i8042: [67400] 24 <- i8042 (interrupt, 1, 12)
[   68.220250] i8042: [67402] 6f <- i8042 (interrupt, 1, 12)
[   68.221826] i8042: [67403] 31 <- i8042 (interrupt, 1, 12)
[   68.223413] i8042: [67405] 23 <- i8042 (interrupt, 1, 12)
[   68.225014] i8042: [67407] fc <- i8042 (interrupt, 1, 12)
[   68.226562] i8042: [67408] 54 <- i8042 (interrupt, 1, 12)
[   68.228172] i8042: [67410] 24 <- i8042 (interrupt, 1, 12)
[   68.229743] i8042: [67411] 63 <- i8042 (interrupt, 1, 12)
[   68.231308] i8042: [67413] 31 <- i8042 (interrupt, 1, 12)
[   68.232910] i8042: [67414] 23 <- i8042 (interrupt, 1, 12)
[   68.234488] i8042: [67416] f4 <- i8042 (interrupt, 1, 12)
[   68.236567] i8042: [67418] 54 <- i8042 (interrupt, 1, 12)
[   68.238070] i8042: [67420] 24 <- i8042 (interrupt, 1, 12)
[   68.239728] i8042: [67421] 56 <- i8042 (interrupt, 1, 12)
[   68.241297] i8042: [67423] 31 <- i8042 (interrupt, 1, 12)
[   68.242898] i8042: [67424] 23 <- i8042 (interrupt, 1, 12)
[   68.244478] i8042: [67426] e8 <- i8042 (interrupt, 1, 12)
[   68.246062] i8042: [67428] 54 <- i8042 (interrupt, 1, 12)
[   68.247574] i8042: [67429] 24 <- i8042 (interrupt, 1, 12)
[   68.249168] i8042: [67431] 4b <- i8042 (interrupt, 1, 12)
[   68.250806] i8042: [67432] 31 <- i8042 (interrupt, 1, 12)
[   68.252388] i8042: [67434] 23 <- i8042 (interrupt, 1, 12)
[   68.254007] i8042: [67436] db <- i8042 (interrupt, 1, 12)
[   68.256064] i8042: [67438] 54 <- i8042 (interrupt, 1, 12)
[   68.257576] i8042: [67439] 24 <- i8042 (interrupt, 1, 12)
[   68.259162] i8042: [67441] 43 <- i8042 (interrupt, 1, 12)
[   68.260739] i8042: [67442] 31 <- i8042 (interrupt, 1, 12)
[   68.262389] i8042: [67444] 23 <- i8042 (interrupt, 1, 12)
[   68.263982] i8042: [67446] cf <- i8042 (interrupt, 1, 12)
[   68.265518] i8042: [67447] 54 <- i8042 (interrupt, 1, 12)
[   68.267068] i8042: [67449] 24 <- i8042 (interrupt, 1, 12)
[   68.268721] i8042: [67450] 3e <- i8042 (interrupt, 1, 12)
[   68.270313] i8042: [67452] 31 <- i8042 (interrupt, 1, 12)
[   68.271899] i8042: [67453] 03 <- i8042 (interrupt, 1, 12)
[   68.273471] i8042: [67455] c2 <- i8042 (interrupt, 1, 12)
[   68.275013] i8042: [67457] 54 <- i8042 (interrupt, 1, 12)
[   68.276630] i8042: [67458] 24 <- i8042 (interrupt, 1, 12)
[   68.278220] i8042: [67460] 3a <- i8042 (interrupt, 1, 12)
[   68.279795] i8042: [67461] 31 <- i8042 (interrupt, 1, 12)
[   68.281387] i8042: [67463] 03 <- i8042 (interrupt, 1, 12)
[   68.282986] i8042: [67465] b6 <- i8042 (interrupt, 1, 12)
[   68.285048] i8042: [67467] 54 <- i8042 (interrupt, 1, 12)
[   68.286633] i8042: [67468] 24 <- i8042 (interrupt, 1, 12)
[   68.288137] i8042: [67470] 38 <- i8042 (interrupt, 1, 12)
[   68.289795] i8042: [67471] 31 <- i8042 (interrupt, 1, 12)
[   68.291375] i8042: [67473] 03 <- i8042 (interrupt, 1, 12)
[   68.292974] i8042: [67475] ab <- i8042 (interrupt, 1, 12)
[   68.294522] i8042: [67476] 54 <- i8042 (interrupt, 1, 12)
[   68.296072] i8042: [67478] 24 <- i8042 (interrupt, 1, 12)
[   68.297704] i8042: [67479] 38 <- i8042 (interrupt, 1, 12)
[   68.299262] i8042: [67481] 31 <- i8042 (interrupt, 1, 12)
[   68.300881] i8042: [67482] 03 <- i8042 (interrupt, 1, 12)
[   68.302473] i8042: [67484] 9f <- i8042 (interrupt, 1, 12)
[   68.304550] i8042: [67486] 54 <- i8042 (interrupt, 1, 12)
[   68.306072] i8042: [67488] 24 <- i8042 (interrupt, 1, 12)
[   68.307656] i8042: [67489] 39 <- i8042 (interrupt, 1, 12)
[   68.309314] i8042: [67491] 31 <- i8042 (interrupt, 1, 12)
[   68.310881] i8042: [67492] 23 <- i8042 (interrupt, 1, 12)
[   68.312470] i8042: [67494] 94 <- i8042 (interrupt, 1, 12)
[   68.314010] i8042: [67496] 54 <- i8042 (interrupt, 1, 12)
[   68.315627] i8042: [67497] 24 <- i8042 (interrupt, 1, 12)
[   68.317136] i8042: [67499] 3b <- i8042 (interrupt, 1, 12)
[   68.318807] i8042: [67500] 31 <- i8042 (interrupt, 1, 12)
[   68.320381] i8042: [67502] 23 <- i8042 (interrupt, 1, 12)
[   68.321965] i8042: [67504] 8b <- i8042 (interrupt, 1, 12)
[   68.323509] i8042: [67505] 54 <- i8042 (interrupt, 1, 12)
[   68.325065] i8042: [67507] 24 <- i8042 (interrupt, 1, 12)
[   68.326646] i8042: [67508] 3f <- i8042 (interrupt, 1, 12)
[   68.328291] i8042: [67510] 31 <- i8042 (interrupt, 1, 12)
[   68.329877] i8042: [67511] 23 <- i8042 (interrupt, 1, 12)
[   68.331459] i8042: [67513] 85 <- i8042 (interrupt, 1, 12)
[   68.333550] i8042: [67515] 54 <- i8042 (interrupt, 1, 12)
[   68.335068] i8042: [67517] 24 <- i8042 (interrupt, 1, 12)
[   68.336699] i8042: [67518] 45 <- i8042 (interrupt, 1, 12)
[   68.338232] i8042: [67520] 31 <- i8042 (interrupt, 1, 12)
[   68.339877] i8042: [67521] 23 <- i8042 (interrupt, 1, 12)
[   68.341472] i8042: [67523] 82 <- i8042 (interrupt, 1, 12)
[   68.343035] i8042: [67525] 54 <- i8042 (interrupt, 1, 12)
[   68.344534] i8042: [67526] 24 <- i8042 (interrupt, 1, 12)
[   68.346152] i8042: [67528] 4d <- i8042 (interrupt, 1, 12)
[   68.347801] i8042: [67529] 31 <- i8042 (interrupt, 1, 12)
[   68.349388] i8042: [67531] 23 <- i8042 (interrupt, 1, 12)
[   68.350970] i8042: [67533] 7d <- i8042 (interrupt, 1, 12)
[   68.353048] i8042: [67535] 54 <- i8042 (interrupt, 1, 12)
[   68.354638] i8042: [67536] 24 <- i8042 (interrupt, 1, 12)
[   68.356164] i8042: [67538] 58 <- i8042 (interrupt, 1, 12)
[   68.357801] i8042: [67539] 31 <- i8042 (interrupt, 1, 12)
[   68.359384] i8042: [67541] 23 <- i8042 (interrupt, 1, 12)
[   68.360993] i8042: [67543] 77 <- i8042 (interrupt, 1, 12)
[   68.362510] i8042: [67544] 54 <- i8042 (interrupt, 1, 12)
[   68.364075] i8042: [67546] 24 <- i8042 (interrupt, 1, 12)
[   68.365728] i8042: [67547] 62 <- i8042 (interrupt, 1, 12)
[   68.367195] i8042: [67549] 31 <- i8042 (interrupt, 1, 12)
[   68.368858] i8042: [67550] 23 <- i8042 (interrupt, 1, 12)
[   68.370386] i8042: [67552] 75 <- i8042 (interrupt, 1, 12)
[   68.372022] i8042: [67554] 54 <- i8042 (interrupt, 1, 12)
[   68.373521] i8042: [67555] 24 <- i8042 (interrupt, 1, 12)
[   68.375139] i8042: [67557] 6e <- i8042 (interrupt, 1, 12)
[   68.376808] i8042: [67558] 31 <- i8042 (interrupt, 1, 12)
[   68.378380] i8042: [67560] 43 <- i8042 (interrupt, 1, 12)
[   68.379978] i8042: [67562] 76 <- i8042 (interrupt, 1, 12)
[   68.382072] i8042: [67564] 54 <- i8042 (interrupt, 1, 12)
[   68.383567] i8042: [67565] 24 <- i8042 (interrupt, 1, 12)
[   68.385108] i8042: [67567] 7c <- i8042 (interrupt, 1, 12)
[   68.386723] i8042: [67568] 31 <- i8042 (interrupt, 1, 12)
[   68.388381] i8042: [67570] 43 <- i8042 (interrupt, 1, 12)
[   68.389894] i8042: [67571] 76 <- i8042 (interrupt, 1, 12)
[   68.391443] i8042: [67573] 54 <- i8042 (interrupt, 1, 12)
[   68.393026] i8042: [67575] 24 <- i8042 (interrupt, 1, 12)
[   68.394607] i8042: [67576] 8b <- i8042 (interrupt, 1, 12)
[   68.396261] i8042: [67578] 31 <- i8042 (interrupt, 1, 12)
[   68.397906] i8042: [67579] 43 <- i8042 (interrupt, 1, 12)
[   68.399502] i8042: [67581] 77 <- i8042 (interrupt, 1, 12)
[   68.401582] i8042: [67583] 54 <- i8042 (interrupt, 1, 12)
[   68.403043] i8042: [67585] 24 <- i8042 (interrupt, 1, 12)
[   68.404759] i8042: [67586] 9e <- i8042 (interrupt, 1, 12)
[   68.406241] i8042: [67588] 31 <- i8042 (interrupt, 1, 12)
[   68.407913] i8042: [67589] 43 <- i8042 (interrupt, 1, 12)
[   68.409407] i8042: [67591] 79 <- i8042 (interrupt, 1, 12)
[   68.411097] i8042: [67593] 54 <- i8042 (interrupt, 1, 12)
[   68.412563] i8042: [67594] 24 <- i8042 (interrupt, 1, 12)
[   68.414185] i8042: [67596] b7 <- i8042 (interrupt, 1, 12)
[   68.415803] i8042: [67597] 31 <- i8042 (interrupt, 1, 12)
[   68.417382] i8042: [67599] 43 <- i8042 (interrupt, 1, 12)
[   68.418991] i8042: [67601] 7d <- i8042 (interrupt, 1, 12)
[   68.420489] i8042: [67602] 54 <- i8042 (interrupt, 1, 12)
[   68.422139] i8042: [67604] 24 <- i8042 (interrupt, 1, 12)
[   68.423712] i8042: [67605] d3 <- i8042 (interrupt, 1, 12)
[   68.425282] i8042: [67607] 31 <- i8042 (interrupt, 1, 12)
[   68.426877] i8042: [67608] 43 <- i8042 (interrupt, 1, 12)
[   68.428461] i8042: [67610] 82 <- i8042 (interrupt, 1, 12)
[   68.430542] i8042: [67612] 54 <- i8042 (interrupt, 1, 12)
[   68.432066] i8042: [67614] 24 <- i8042 (interrupt, 1, 12)
[   68.433688] i8042: [67615] f2 <- i8042 (interrupt, 1, 12)
[   68.435267] i8042: [67617] 31 <- i8042 (interrupt, 1, 12)
[   68.436888] i8042: [67618] 43 <- i8042 (interrupt, 1, 12)
[   68.438467] i8042: [67620] 88 <- i8042 (interrupt, 1, 12)
[   68.440066] i8042: [67622] 54 <- i8042 (interrupt, 1, 12)
[   68.441590] i8042: [67623] 25 <- i8042 (interrupt, 1, 12)
[   68.443133] i8042: [67625] 0e <- i8042 (interrupt, 1, 12)
[   68.444794] i8042: [67626] 31 <- i8042 (interrupt, 1, 12)
[   68.446378] i8042: [67628] 43 <- i8042 (interrupt, 1, 12)
[   68.447987] i8042: [67630] 8f <- i8042 (interrupt, 1, 12)
[   68.450063] i8042: [67632] 54 <- i8042 (interrupt, 1, 12)
[   68.451538] i8042: [67633] 25 <- i8042 (interrupt, 1, 12)
[   68.453165] i8042: [67635] 2a <- i8042 (interrupt, 1, 12)
[   68.454804] i8042: [67636] 31 <- i8042 (interrupt, 1, 12)
[   68.456379] i8042: [67638] 23 <- i8042 (interrupt, 1, 12)
[   68.457993] i8042: [67640] 96 <- i8042 (interrupt, 1, 12)
[   68.459479] i8042: [67641] 54 <- i8042 (interrupt, 1, 12)
[   68.461073] i8042: [67643] 25 <- i8042 (interrupt, 1, 12)
[   68.462692] i8042: [67644] 4e <- i8042 (interrupt, 1, 12)
[   68.464277] i8042: [67646] 31 <- i8042 (interrupt, 1, 12)
[   68.465876] i8042: [67647] 23 <- i8042 (interrupt, 1, 12)
[   68.467352] i8042: [67649] a1 <- i8042 (interrupt, 1, 12)
[   68.469044] i8042: [67651] 54 <- i8042 (interrupt, 1, 12)
[   68.470641] i8042: [67652] 25 <- i8042 (interrupt, 1, 12)
[   68.472173] i8042: [67654] 69 <- i8042 (interrupt, 1, 12)
[   68.473794] i8042: [67655] 31 <- i8042 (interrupt, 1, 12)
[   68.475378] i8042: [67657] 23 <- i8042 (interrupt, 1, 12)
[   68.476958] i8042: [67659] a9 <- i8042 (interrupt, 1, 12)
[   68.479069] i8042: [67661] 54 <- i8042 (interrupt, 1, 12)
[   68.480591] i8042: [67662] 25 <- i8042 (interrupt, 1, 12)
[   68.482150] i8042: [67664] 8a <- i8042 (interrupt, 1, 12)
[   68.483777] i8042: [67665] 31 <- i8042 (interrupt, 1, 12)
[   68.485261] i8042: [67667] 23 <- i8042 (interrupt, 1, 12)
[   68.486852] i8042: [67668] b1 <- i8042 (interrupt, 1, 12)
[   68.488446] i8042: [67670] 54 <- i8042 (interrupt, 1, 12)
[   68.490082] i8042: [67672] 25 <- i8042 (interrupt, 1, 12)
[   68.491721] i8042: [67673] ad <- i8042 (interrupt, 1, 12)
[   68.493179] i8042: [67675] 31 <- i8042 (interrupt, 1, 12)
[   68.494877] i8042: [67676] 23 <- i8042 (interrupt, 1, 12)
[   68.496460] i8042: [67678] b8 <- i8042 (interrupt, 1, 12)
[   68.498439] i8042: [67680] 44 <- i8042 (interrupt, 1, 12)
[   68.500014] i8042: [67682] 25 <- i8042 (interrupt, 1, 12)
[   68.501719] i8042: [67683] d4 <- i8042 (interrupt, 1, 12)
[   68.503189] i8042: [67685] 31 <- i8042 (interrupt, 1, 12)
[   68.504776] i8042: [67686] 23 <- i8042 (interrupt, 1, 12)
[   68.506345] i8042: [67688] c0 <- i8042 (interrupt, 1, 12)
[   68.508055] i8042: [67690] 44 <- i8042 (interrupt, 1, 12)
[   68.509586] i8042: [67691] 25 <- i8042 (interrupt, 1, 12)
[   68.511151] i8042: [67693] f1 <- i8042 (interrupt, 1, 12)
[   68.512780] i8042: [67694] 31 <- i8042 (interrupt, 1, 12)
[   68.514371] i8042: [67696] 23 <- i8042 (interrupt, 1, 12)
[   68.515974] i8042: [67698] c8 <- i8042 (interrupt, 1, 12)
[   68.517505] i8042: [67699] 54 <- i8042 (interrupt, 1, 12)
[   68.519065] i8042: [67701] 26 <- i8042 (interrupt, 1, 12)
[   68.520665] i8042: [67702] 13 <- i8042 (interrupt, 1, 12)
[   68.522251] i8042: [67704] 31 <- i8042 (interrupt, 1, 12)
[   68.523865] i8042: [67705] 23 <- i8042 (interrupt, 1, 12)
[   68.525349] i8042: [67707] d4 <- i8042 (interrupt, 1, 12)
[   68.527538] i8042: [67709] 54 <- i8042 (interrupt, 1, 12)
[   68.529063] i8042: [67711] 26 <- i8042 (interrupt, 1, 12)
[   68.530652] i8042: [67712] 33 <- i8042 (interrupt, 1, 12)
[   68.532212] i8042: [67714] 31 <- i8042 (interrupt, 1, 12)
[   68.533791] i8042: [67715] 03 <- i8042 (interrupt, 1, 12)
[   68.535352] i8042: [67717] dd <- i8042 (interrupt, 1, 12)
[   68.536925] i8042: [67718] 54 <- i8042 (interrupt, 1, 12)
[   68.538615] i8042: [67720] 26 <- i8042 (interrupt, 1, 12)
[   68.540114] i8042: [67722] 53 <- i8042 (interrupt, 1, 12)
[   68.541673] i8042: [67723] 31 <- i8042 (interrupt, 1, 12)
[   68.543352] i8042: [67725] 03 <- i8042 (interrupt, 1, 12)
[   68.544831] i8042: [67726] e4 <- i8042 (interrupt, 1, 12)
[   68.547058] i8042: [67729] 44 <- i8042 (interrupt, 1, 12)
[   68.548594] i8042: [67730] 26 <- i8042 (interrupt, 1, 12)
[   68.550157] i8042: [67732] 74 <- i8042 (interrupt, 1, 12)
[   68.551775] i8042: [67733] 31 <- i8042 (interrupt, 1, 12)
[   68.553320] i8042: [67735] 03 <- i8042 (interrupt, 1, 12)
[   68.554969] i8042: [67737] ea <- i8042 (interrupt, 1, 12)
[   68.556454] i8042: [67738] 54 <- i8042 (interrupt, 1, 12)
[   68.558073] i8042: [67740] 26 <- i8042 (interrupt, 1, 12)
[   68.559651] i8042: [67741] 94 <- i8042 (interrupt, 1, 12)
[   68.561218] i8042: [67743] 31 <- i8042 (interrupt, 1, 12)
[   68.562848] i8042: [67744] 03 <- i8042 (interrupt, 1, 12)
[   68.564427] i8042: [67746] ee <- i8042 (interrupt, 1, 12)
[   68.566479] i8042: [67748] 54 <- i8042 (interrupt, 1, 12)
[   68.568033] i8042: [67750] 26 <- i8042 (interrupt, 1, 12)
[   68.569571] i8042: [67751] b3 <- i8042 (interrupt, 1, 12)
[   68.571215] i8042: [67753] 31 <- i8042 (interrupt, 1, 12)
[   68.572831] i8042: [67754] 03 <- i8042 (interrupt, 1, 12)
[   68.574412] i8042: [67756] f2 <- i8042 (interrupt, 1, 12)
[   68.576031] i8042: [67758] 54 <- i8042 (interrupt, 1, 12)
[   68.577556] i8042: [67759] 26 <- i8042 (interrupt, 1, 12)
[   68.579073] i8042: [67761] d1 <- i8042 (interrupt, 1, 12)
[   68.580763] i8042: [67762] 31 <- i8042 (interrupt, 1, 12)
[   68.582316] i8042: [67764] 03 <- i8042 (interrupt, 1, 12)
[   68.583919] i8042: [67765] f6 <- i8042 (interrupt, 1, 12)
[   68.585496] i8042: [67767] 44 <- i8042 (interrupt, 1, 12)
[   68.587075] i8042: [67769] 26 <- i8042 (interrupt, 1, 12)
[   68.588664] i8042: [67770] ef <- i8042 (interrupt, 1, 12)
[   68.590148] i8042: [67772] 31 <- i8042 (interrupt, 1, 12)
[   68.591800] i8042: [67773] 03 <- i8042 (interrupt, 1, 12)
[   68.593381] i8042: [67775] fa <- i8042 (interrupt, 1, 12)
[   68.595468] i8042: [67777] 44 <- i8042 (interrupt, 1, 12)
[   68.596987] i8042: [67779] 27 <- i8042 (interrupt, 1, 12)
[   68.598554] i8042: [67780] 0c <- i8042 (interrupt, 1, 12)
[   68.600211] i8042: [67782] 31 <- i8042 (interrupt, 1, 12)
[   68.601821] i8042: [67783] 03 <- i8042 (interrupt, 1, 12)
[   68.603414] i8042: [67785] fd <- i8042 (interrupt, 1, 12)
[   68.605007] i8042: [67786] 44 <- i8042 (interrupt, 1, 12)
[   68.606543] i8042: [67788] 27 <- i8042 (interrupt, 1, 12)
[   68.608179] i8042: [67790] 28 <- i8042 (interrupt, 1, 12)
[   68.609715] i8042: [67791] 31 <- i8042 (interrupt, 1, 12)
[   68.611324] i8042: [67793] 03 <- i8042 (interrupt, 1, 12)
[   68.612911] i8042: [67794] fd <- i8042 (interrupt, 1, 12)
[   68.615026] i8042: [67797] 54 <- i8042 (interrupt, 1, 12)
[   68.616539] i8042: [67798] 27 <- i8042 (interrupt, 1, 12)
[   68.618078] i8042: [67800] 41 <- i8042 (interrupt, 1, 12)
[   68.619701] i8042: [67801] 31 <- i8042 (interrupt, 1, 12)
[   68.621319] i8042: [67803] 03 <- i8042 (interrupt, 1, 12)
[   68.622902] i8042: [67804] fc <- i8042 (interrupt, 1, 12)
[   68.624496] i8042: [67806] 54 <- i8042 (interrupt, 1, 12)
[   68.626055] i8042: [67808] 27 <- i8042 (interrupt, 1, 12)
[   68.627623] i8042: [67809] 59 <- i8042 (interrupt, 1, 12)
[   68.629204] i8042: [67811] 31 <- i8042 (interrupt, 1, 12)
[   68.630810] i8042: [67812] 03 <- i8042 (interrupt, 1, 12)
[   68.632289] i8042: [67814] fd <- i8042 (interrupt, 1, 12)
[   68.633981] i8042: [67816] 54 <- i8042 (interrupt, 1, 12)
[   68.635528] i8042: [67817] 27 <- i8042 (interrupt, 1, 12)
[   68.637107] i8042: [67819] 77 <- i8042 (interrupt, 1, 12)
[   68.638639] i8042: [67820] 31 <- i8042 (interrupt, 1, 12)
[   68.640203] i8042: [67822] 03 <- i8042 (interrupt, 1, 12)
[   68.641784] i8042: [67823] fc <- i8042 (interrupt, 1, 12)
[   68.643878] i8042: [67825] 44 <- i8042 (interrupt, 1, 12)
[   68.645578] i8042: [67827] 27 <- i8042 (interrupt, 1, 12)
[   68.647173] i8042: [67829] 94 <- i8042 (interrupt, 1, 12)
[   68.648744] i8042: [67830] 31 <- i8042 (interrupt, 1, 12)
[   68.650328] i8042: [67832] 03 <- i8042 (interrupt, 1, 12)
[   68.651922] i8042: [67833] fa <- i8042 (interrupt, 1, 12)
[   68.653462] i8042: [67835] 44 <- i8042 (interrupt, 1, 12)
[   68.655101] i8042: [67837] 27 <- i8042 (interrupt, 1, 12)
[   68.656661] i8042: [67838] ae <- i8042 (interrupt, 1, 12)
[   68.658199] i8042: [67840] 31 <- i8042 (interrupt, 1, 12)
[   68.659831] i8042: [67841] 03 <- i8042 (interrupt, 1, 12)
[   68.661389] i8042: [67843] f8 <- i8042 (interrupt, 1, 12)
[   68.663487] i8042: [67845] 54 <- i8042 (interrupt, 1, 12)
[   68.665081] i8042: [67847] 27 <- i8042 (interrupt, 1, 12)
[   68.666669] i8042: [67848] c6 <- i8042 (interrupt, 1, 12)
[   68.668213] i8042: [67850] 31 <- i8042 (interrupt, 1, 12)
[   68.669825] i8042: [67851] 03 <- i8042 (interrupt, 1, 12)
[   68.671392] i8042: [67853] f5 <- i8042 (interrupt, 1, 12)
[   68.672957] i8042: [67855] 54 <- i8042 (interrupt, 1, 12)
[   68.674566] i8042: [67856] 27 <- i8042 (interrupt, 1, 12)
[   68.676066] i8042: [67858] df <- i8042 (interrupt, 1, 12)
[   68.677670] i8042: [67859] 31 <- i8042 (interrupt, 1, 12)
[   68.679297] i8042: [67861] 03 <- i8042 (interrupt, 1, 12)
[   68.680892] i8042: [67862] f0 <- i8042 (interrupt, 1, 12)
[   68.682440] i8042: [67864] 54 <- i8042 (interrupt, 1, 12)
[   68.684076] i8042: [67866] 27 <- i8042 (interrupt, 1, 12)
[   68.685651] i8042: [67867] f9 <- i8042 (interrupt, 1, 12)
[   68.687232] i8042: [67869] 31 <- i8042 (interrupt, 1, 12)
[   68.688818] i8042: [67870] 03 <- i8042 (interrupt, 1, 12)
[   68.690390] i8042: [67872] ea <- i8042 (interrupt, 1, 12)
[   68.692475] i8042: [67874] 54 <- i8042 (interrupt, 1, 12)
[   68.694063] i8042: [67876] 28 <- i8042 (interrupt, 1, 12)
[   68.695639] i8042: [67877] 12 <- i8042 (interrupt, 1, 12)
[   68.697237] i8042: [67879] 31 <- i8042 (interrupt, 1, 12)
[   68.698803] i8042: [67880] 03 <- i8042 (interrupt, 1, 12)
[   68.700401] i8042: [67882] e6 <- i8042 (interrupt, 1, 12)
[   68.701946] i8042: [67884] 44 <- i8042 (interrupt, 1, 12)
[   68.703556] i8042: [67885] 28 <- i8042 (interrupt, 1, 12)
[   68.705144] i8042: [67887] 28 <- i8042 (interrupt, 1, 12)
[   68.706728] i8042: [67888] 31 <- i8042 (interrupt, 1, 12)
[   68.708306] i8042: [67890] 03 <- i8042 (interrupt, 1, 12)
[   68.709885] i8042: [67891] e2 <- i8042 (interrupt, 1, 12)
[   68.711865] i8042: [67893] 44 <- i8042 (interrupt, 1, 12)
[   68.713533] i8042: [67895] 28 <- i8042 (interrupt, 1, 12)
[   68.715062] i8042: [67897] 3c <- i8042 (interrupt, 1, 12)
[   68.716613] i8042: [67898] 31 <- i8042 (interrupt, 1, 12)
[   68.718320] i8042: [67900] 03 <- i8042 (interrupt, 1, 12)
[   68.719892] i8042: [67901] de <- i8042 (interrupt, 1, 12)
[   68.721438] i8042: [67903] 44 <- i8042 (interrupt, 1, 12)
[   68.723063] i8042: [67905] 28 <- i8042 (interrupt, 1, 12)
[   68.724651] i8042: [67906] 4c <- i8042 (interrupt, 1, 12)
[   68.726224] i8042: [67908] 31 <- i8042 (interrupt, 1, 12)
[   68.727803] i8042: [67909] 03 <- i8042 (interrupt, 1, 12)
[   68.729387] i8042: [67911] da <- i8042 (interrupt, 1, 12)
[   68.730942] i8042: [67913] 44 <- i8042 (interrupt, 1, 12)
[   68.732554] i8042: [67914] 28 <- i8042 (interrupt, 1, 12)
[   68.734106] i8042: [67916] 59 <- i8042 (interrupt, 1, 12)
[   68.735721] i8042: [67917] 31 <- i8042 (interrupt, 1, 12)
[   68.737281] i8042: [67919] 03 <- i8042 (interrupt, 1, 12)
[   68.738893] i8042: [67920] d3 <- i8042 (interrupt, 1, 12)
[   68.740968] i8042: [67923] 44 <- i8042 (interrupt, 1, 12)
[   68.742551] i8042: [67924] 28 <- i8042 (interrupt, 1, 12)
[   68.744140] i8042: [67926] 63 <- i8042 (interrupt, 1, 12)
[   68.745714] i8042: [67927] 31 <- i8042 (interrupt, 1, 12)
[   68.747284] i8042: [67929] 03 <- i8042 (interrupt, 1, 12)
[   68.749069] i8042: [67931] ce <- i8042 (interrupt, 1, 12)
[   68.750367] i8042: [67932] 54 <- i8042 (interrupt, 1, 12)
[   68.752049] i8042: [67934] 28 <- i8042 (interrupt, 1, 12)
[   68.753630] i8042: [67935] 6a <- i8042 (interrupt, 1, 12)
[   68.755127] i8042: [67937] 31 <- i8042 (interrupt, 1, 12)
[   68.756776] i8042: [67938] 03 <- i8042 (interrupt, 1, 12)
[   68.758378] i8042: [67940] cb <- i8042 (interrupt, 1, 12)
[   68.760461] i8042: [67942] 54 <- i8042 (interrupt, 1, 12)
[   68.762056] i8042: [67944] 28 <- i8042 (interrupt, 1, 12)
[   68.763643] i8042: [67945] 74 <- i8042 (interrupt, 1, 12)
[   68.765191] i8042: [67947] 31 <- i8042 (interrupt, 1, 12)
[   68.766793] i8042: [67948] 03 <- i8042 (interrupt, 1, 12)
[   68.768386] i8042: [67950] c7 <- i8042 (interrupt, 1, 12)
[   68.769986] i8042: [67952] 54 <- i8042 (interrupt, 1, 12)
[   68.771507] i8042: [67953] 28 <- i8042 (interrupt, 1, 12)
[   68.773090] i8042: [67955] 7c <- i8042 (interrupt, 1, 12)
[   68.774705] i8042: [67956] 31 <- i8042 (interrupt, 1, 12)
[   68.776254] i8042: [67958] 03 <- i8042 (interrupt, 1, 12)
[   68.777876] i8042: [67959] c4 <- i8042 (interrupt, 1, 12)
[   68.779446] i8042: [67961] 54 <- i8042 (interrupt, 1, 12)
[   68.781068] i8042: [67963] 28 <- i8042 (interrupt, 1, 12)
[   68.782512] i8042: [67964] 86 <- i8042 (interrupt, 1, 12)
[   68.784164] i8042: [67966] 31 <- i8042 (interrupt, 1, 12)
[   68.785788] i8042: [67967] 03 <- i8042 (interrupt, 1, 12)
[   68.787379] i8042: [67969] bd <- i8042 (interrupt, 1, 12)
[   68.789451] i8042: [67971] 54 <- i8042 (interrupt, 1, 12)
[   68.791051] i8042: [67973] 28 <- i8042 (interrupt, 1, 12)
[   68.792508] i8042: [67974] 8f <- i8042 (interrupt, 1, 12)
[   68.794110] i8042: [67976] 31 <- i8042 (interrupt, 1, 12)
[   68.795778] i8042: [67977] 03 <- i8042 (interrupt, 1, 12)
[   68.797376] i8042: [67979] b5 <- i8042 (interrupt, 1, 12)
[   68.798941] i8042: [67980] 54 <- i8042 (interrupt, 1, 12)
[   68.800532] i8042: [67982] 28 <- i8042 (interrupt, 1, 12)
[   68.802069] i8042: [67984] 95 <- i8042 (interrupt, 1, 12)
[   68.803592] i8042: [67985] 31 <- i8042 (interrupt, 1, 12)
[   68.805222] i8042: [67987] 03 <- i8042 (interrupt, 1, 12)
[   68.806857] i8042: [67988] b0 <- i8042 (interrupt, 1, 12)
[   68.808964] i8042: [67991] 54 <- i8042 (interrupt, 1, 12)
[   68.810428] i8042: [67992] 28 <- i8042 (interrupt, 1, 12)
[   68.812070] i8042: [67994] 98 <- i8042 (interrupt, 1, 12)
[   68.813592] i8042: [67995] 31 <- i8042 (interrupt, 1, 12)
[   68.815216] i8042: [67997] 03 <- i8042 (interrupt, 1, 12)
[   68.816794] i8042: [67998] ac <- i8042 (interrupt, 1, 12)
[   68.818437] i8042: [68000] 54 <- i8042 (interrupt, 1, 12)
[   68.820031] i8042: [68002] 28 <- i8042 (interrupt, 1, 12)
[   68.821609] i8042: [68003] 99 <- i8042 (interrupt, 1, 12)
[   68.823082] i8042: [68005] 31 <- i8042 (interrupt, 1, 12)
[   68.824716] i8042: [68006] 03 <- i8042 (interrupt, 1, 12)
[   68.826360] i8042: [68008] ab <- i8042 (interrupt, 1, 12)
[   68.827963] i8042: [68009] 54 <- i8042 (interrupt, 1, 12)
[   68.829422] i8042: [68011] 28 <- i8042 (interrupt, 1, 12)
[   68.831046] i8042: [68013] 97 <- i8042 (interrupt, 1, 12)
[   68.832696] i8042: [68014] 31 <- i8042 (interrupt, 1, 12)
[   68.834205] i8042: [68016] 03 <- i8042 (interrupt, 1, 12)
[   68.835859] i8042: [68017] a8 <- i8042 (interrupt, 1, 12)
[   68.837945] i8042: [68020] 54 <- i8042 (interrupt, 1, 12)
[   68.839536] i8042: [68021] 28 <- i8042 (interrupt, 1, 12)
[   68.841131] i8042: [68023] 94 <- i8042 (interrupt, 1, 12)
[   68.842697] i8042: [68024] 31 <- i8042 (interrupt, 1, 12)
[   68.844273] i8042: [68026] 03 <- i8042 (interrupt, 1, 12)
[   68.845862] i8042: [68027] a5 <- i8042 (interrupt, 1, 12)
[   68.847426] i8042: [68029] 54 <- i8042 (interrupt, 1, 12)
[   68.849019] i8042: [68031] 28 <- i8042 (interrupt, 1, 12)
[   68.850603] i8042: [68032] 91 <- i8042 (interrupt, 1, 12)
[   68.852117] i8042: [68034] 31 <- i8042 (interrupt, 1, 12)
[   68.853774] i8042: [68035] 03 <- i8042 (interrupt, 1, 12)
[   68.855361] i8042: [68037] a4 <- i8042 (interrupt, 1, 12)
[   68.857441] i8042: [68039] 54 <- i8042 (interrupt, 1, 12)
[   68.859023] i8042: [68041] 28 <- i8042 (interrupt, 1, 12)
[   68.860599] i8042: [68042] 89 <- i8042 (interrupt, 1, 12)
[   68.862187] i8042: [68044] 31 <- i8042 (interrupt, 1, 12)
[   68.863763] i8042: [68045] 03 <- i8042 (interrupt, 1, 12)
[   68.865349] i8042: [68047] a3 <- i8042 (interrupt, 1, 12)
[   68.866932] i8042: [68048] 54 <- i8042 (interrupt, 1, 12)
[   68.868508] i8042: [68050] 28 <- i8042 (interrupt, 1, 12)
[   68.870101] i8042: [68052] 7b <- i8042 (interrupt, 1, 12)
[   68.871676] i8042: [68053] 31 <- i8042 (interrupt, 1, 12)
[   68.873193] i8042: [68055] 03 <- i8042 (interrupt, 1, 12)
[   68.874842] i8042: [68056] a4 <- i8042 (interrupt, 1, 12)
[   68.876933] i8042: [68058] 54 <- i8042 (interrupt, 1, 12)
[   68.878505] i8042: [68060] 28 <- i8042 (interrupt, 1, 12)
[   68.880094] i8042: [68062] 6c <- i8042 (interrupt, 1, 12)
[   68.881685] i8042: [68063] 31 <- i8042 (interrupt, 1, 12)
[   68.883255] i8042: [68065] 03 <- i8042 (interrupt, 1, 12)
[   68.884840] i8042: [68066] a4 <- i8042 (interrupt, 1, 12)
[   68.886422] i8042: [68068] 54 <- i8042 (interrupt, 1, 12)
[   68.888002] i8042: [68070] 28 <- i8042 (interrupt, 1, 12)
[   68.889586] i8042: [68071] 54 <- i8042 (interrupt, 1, 12)
[   68.891067] i8042: [68073] 31 <- i8042 (interrupt, 1, 12)
[   68.892638] i8042: [68074] 03 <- i8042 (interrupt, 1, 12)
[   68.894311] i8042: [68076] a4 <- i8042 (interrupt, 1, 12)
[   68.895900] i8042: [68077] 54 <- i8042 (interrupt, 1, 12)
[   68.897492] i8042: [68079] 28 <- i8042 (interrupt, 1, 12)
[   68.899078] i8042: [68081] 3a <- i8042 (interrupt, 1, 12)
[   68.900657] i8042: [68082] 31 <- i8042 (interrupt, 1, 12)
[   68.902244] i8042: [68084] 03 <- i8042 (interrupt, 1, 12)
[   68.903827] i8042: [68085] a5 <- i8042 (interrupt, 1, 12)
[   68.905906] i8042: [68087] 54 <- i8042 (interrupt, 1, 12)
[   68.907493] i8042: [68089] 28 <- i8042 (interrupt, 1, 12)
[   68.909053] i8042: [68091] 1a <- i8042 (interrupt, 1, 12)
[   68.910586] i8042: [68092] 31 <- i8042 (interrupt, 1, 12)
[   68.912200] i8042: [68094] 03 <- i8042 (interrupt, 1, 12)
[   68.913818] i8042: [68095] aa <- i8042 (interrupt, 1, 12)
[   68.915393] i8042: [68097] 54 <- i8042 (interrupt, 1, 12)
[   68.916996] i8042: [68099] 28 <- i8042 (interrupt, 1, 12)
[   68.918582] i8042: [68100] 05 <- i8042 (interrupt, 1, 12)
[   68.920153] i8042: [68102] 31 <- i8042 (interrupt, 1, 12)
[   68.921729] i8042: [68103] 23 <- i8042 (interrupt, 1, 12)
[   68.923315] i8042: [68105] ad <- i8042 (interrupt, 1, 12)
[   68.925403] i8042: [68107] 54 <- i8042 (interrupt, 1, 12)
[   68.927006] i8042: [68109] 27 <- i8042 (interrupt, 1, 12)
[   68.928459] i8042: [68110] de <- i8042 (interrupt, 1, 12)
[   68.930151] i8042: [68112] 31 <- i8042 (interrupt, 1, 12)
[   68.931731] i8042: [68113] 23 <- i8042 (interrupt, 1, 12)
[   68.933300] i8042: [68115] b4 <- i8042 (interrupt, 1, 12)
[   68.934899] i8042: [68116] 54 <- i8042 (interrupt, 1, 12)
[   68.936481] i8042: [68118] 27 <- i8042 (interrupt, 1, 12)
[   68.938067] i8042: [68120] be <- i8042 (interrupt, 1, 12)
[   68.939644] i8042: [68121] 31 <- i8042 (interrupt, 1, 12)
[   68.941186] i8042: [68123] 23 <- i8042 (interrupt, 1, 12)
[   68.942812] i8042: [68124] bc <- i8042 (interrupt, 1, 12)
[   68.944386] i8042: [68126] 54 <- i8042 (interrupt, 1, 12)
[   68.945984] i8042: [68128] 27 <- i8042 (interrupt, 1, 12)
[   68.947569] i8042: [68129] a4 <- i8042 (interrupt, 1, 12)
[   68.949069] i8042: [68131] 31 <- i8042 (interrupt, 1, 12)
[   68.950621] i8042: [68132] 23 <- i8042 (interrupt, 1, 12)
[   68.952304] i8042: [68134] c3 <- i8042 (interrupt, 1, 12)
[   68.954407] i8042: [68136] 44 <- i8042 (interrupt, 1, 12)
[   68.956000] i8042: [68138] 27 <- i8042 (interrupt, 1, 12)
[   68.957570] i8042: [68139] 86 <- i8042 (interrupt, 1, 12)
[   68.959069] i8042: [68141] 31 <- i8042 (interrupt, 1, 12)
[   68.960620] i8042: [68142] 23 <- i8042 (interrupt, 1, 12)
[   68.962316] i8042: [68144] ca <- i8042 (interrupt, 1, 12)
[   68.963892] i8042: [68145] 44 <- i8042 (interrupt, 1, 12)
[   68.965486] i8042: [68147] 27 <- i8042 (interrupt, 1, 12)
[   68.967072] i8042: [68149] 69 <- i8042 (interrupt, 1, 12)
[   68.968537] i8042: [68150] 31 <- i8042 (interrupt, 1, 12)
[   68.970230] i8042: [68152] 23 <- i8042 (interrupt, 1, 12)
[   68.971811] i8042: [68153] d1 <- i8042 (interrupt, 1, 12)
[   68.973895] i8042: [68155] 54 <- i8042 (interrupt, 1, 12)
[   68.975475] i8042: [68157] 27 <- i8042 (interrupt, 1, 12)
[   68.977081] i8042: [68159] 50 <- i8042 (interrupt, 1, 12)
[   68.978638] i8042: [68160] 31 <- i8042 (interrupt, 1, 12)
[   68.980226] i8042: [68162] 23 <- i8042 (interrupt, 1, 12)
[   68.981809] i8042: [68163] d7 <- i8042 (interrupt, 1, 12)
[   68.983384] i8042: [68165] 54 <- i8042 (interrupt, 1, 12)
[   68.984998] i8042: [68167] 27 <- i8042 (interrupt, 1, 12)
[   68.986452] i8042: [68168] 35 <- i8042 (interrupt, 1, 12)
[   68.988073] i8042: [68170] 31 <- i8042 (interrupt, 1, 12)
[   68.989613] i8042: [68171] 23 <- i8042 (interrupt, 1, 12)
[   68.991302] i8042: [68173] db <- i8042 (interrupt, 1, 12)
[   68.992876] i8042: [68174] 54 <- i8042 (interrupt, 1, 12)
[   68.994480] i8042: [68176] 27 <- i8042 (interrupt, 1, 12)
[   68.996072] i8042: [68178] 19 <- i8042 (interrupt, 1, 12)
[   68.997532] i8042: [68179] 31 <- i8042 (interrupt, 1, 12)
[   68.999147] i8042: [68181] 23 <- i8042 (interrupt, 1, 12)
[   69.000745] i8042: [68182] de <- i8042 (interrupt, 1, 12)
[   69.002885] i8042: [68184] 44 <- i8042 (interrupt, 1, 12)
[   69.004464] i8042: [68186] 26 <- i8042 (interrupt, 1, 12)
[   69.006071] i8042: [68188] fe <- i8042 (interrupt, 1, 12)
[   69.007539] i8042: [68189] 31 <- i8042 (interrupt, 1, 12)
[   69.009148] i8042: [68191] 23 <- i8042 (interrupt, 1, 12)
[   69.010724] i8042: [68192] e0 <- i8042 (interrupt, 1, 12)
[   69.012368] i8042: [68194] 54 <- i8042 (interrupt, 1, 12)
[   69.013963] i8042: [68196] 26 <- i8042 (interrupt, 1, 12)
[   69.015550] i8042: [68197] df <- i8042 (interrupt, 1, 12)
[   69.017131] i8042: [68199] 31 <- i8042 (interrupt, 1, 12)
[   69.018710] i8042: [68200] 23 <- i8042 (interrupt, 1, 12)
[   69.020295] i8042: [68202] df <- i8042 (interrupt, 1, 12)
[   69.022379] i8042: [68204] 54 <- i8042 (interrupt, 1, 12)
[   69.023975] i8042: [68206] 26 <- i8042 (interrupt, 1, 12)
[   69.025555] i8042: [68207] c0 <- i8042 (interrupt, 1, 12)
[   69.027127] i8042: [68209] 31 <- i8042 (interrupt, 1, 12)
[   69.028705] i8042: [68210] 03 <- i8042 (interrupt, 1, 12)
[   69.030294] i8042: [68212] dc <- i8042 (interrupt, 1, 12)
[   69.031873] i8042: [68213] 54 <- i8042 (interrupt, 1, 12)
[   69.033457] i8042: [68215] 26 <- i8042 (interrupt, 1, 12)
[   69.035065] i8042: [68217] a5 <- i8042 (interrupt, 1, 12)
[   69.036588] i8042: [68218] 31 <- i8042 (interrupt, 1, 12)
[   69.038111] i8042: [68220] 03 <- i8042 (interrupt, 1, 12)
[   69.039792] i8042: [68221] d8 <- i8042 (interrupt, 1, 12)
[   69.041375] i8042: [68223] 54 <- i8042 (interrupt, 1, 12)
[   69.042973] i8042: [68225] 26 <- i8042 (interrupt, 1, 12)
[   69.044497] i8042: [68226] 84 <- i8042 (interrupt, 1, 12)
[   69.046070] i8042: [68228] 31 <- i8042 (interrupt, 1, 12)
[   69.047662] i8042: [68229] 03 <- i8042 (interrupt, 1, 12)
[   69.049547] i8042: [68231] d0 <- i8042 (interrupt, 1, 12)
[   69.051369] i8042: [68233] 54 <- i8042 (interrupt, 1, 12)
[   69.052969] i8042: [68235] 26 <- i8042 (interrupt, 1, 12)
[   69.054502] i8042: [68236] 64 <- i8042 (interrupt, 1, 12)
[   69.056105] i8042: [68238] 31 <- i8042 (interrupt, 1, 12)
[   69.057705] i8042: [68239] 03 <- i8042 (interrupt, 1, 12)
[   69.059274] i8042: [68241] c6 <- i8042 (interrupt, 1, 12)
[   69.060876] i8042: [68242] 54 <- i8042 (interrupt, 1, 12)
[   69.062447] i8042: [68244] 26 <- i8042 (interrupt, 1, 12)
[   69.064035] i8042: [68246] 49 <- i8042 (interrupt, 1, 12)
[   69.065621] i8042: [68247] 31 <- i8042 (interrupt, 1, 12)
[   69.067159] i8042: [68249] 03 <- i8042 (interrupt, 1, 12)
[   69.068743] i8042: [68250] b8 <- i8042 (interrupt, 1, 12)
[   69.070834] i8042: [68252] 54 <- i8042 (interrupt, 1, 12)
[   69.072419] i8042: [68254] 26 <- i8042 (interrupt, 1, 12)
[   69.074029] i8042: [68256] 31 <- i8042 (interrupt, 1, 12)
[   69.075582] i8042: [68257] 31 <- i8042 (interrupt, 1, 12)
[   69.077110] i8042: [68259] 03 <- i8042 (interrupt, 1, 12)
[   69.078767] i8042: [68260] aa <- i8042 (interrupt, 1, 12)
[   69.080355] i8042: [68262] 54 <- i8042 (interrupt, 1, 12)
[   69.081968] i8042: [68264] 26 <- i8042 (interrupt, 1, 12)
[   69.083495] i8042: [68265] 1c <- i8042 (interrupt, 1, 12)
[   69.085118] i8042: [68267] 31 <- i8042 (interrupt, 1, 12)
[   69.086694] i8042: [68268] 03 <- i8042 (interrupt, 1, 12)
[   69.088280] i8042: [68270] 9b <- i8042 (interrupt, 1, 12)
[   69.089855] i8042: [68271] 54 <- i8042 (interrupt, 1, 12)
[   69.091454] i8042: [68273] 26 <- i8042 (interrupt, 1, 12)
[   69.093032] i8042: [68275] 09 <- i8042 (interrupt, 1, 12)
[   69.094612] i8042: [68276] 31 <- i8042 (interrupt, 1, 12)
[   69.096164] i8042: [68278] 03 <- i8042 (interrupt, 1, 12)
[   69.097773] i8042: [68279] 8c <- i8042 (interrupt, 1, 12)
[   69.099862] i8042: [68281] 54 <- i8042 (interrupt, 1, 12)
[   69.101445] i8042: [68283] 25 <- i8042 (interrupt, 1, 12)
[   69.103030] i8042: [68285] f8 <- i8042 (interrupt, 1, 12)
[   69.104606] i8042: [68286] 31 <- i8042 (interrupt, 1, 12)
[   69.106155] i8042: [68288] 03 <- i8042 (interrupt, 1, 12)
[   69.107783] i8042: [68289] 7f <- i8042 (interrupt, 1, 12)
[   69.109349] i8042: [68291] 54 <- i8042 (interrupt, 1, 12)
[   69.110937] i8042: [68292] 25 <- i8042 (interrupt, 1, 12)
[   69.112520] i8042: [68294] e9 <- i8042 (interrupt, 1, 12)
[   69.114099] i8042: [68296] 31 <- i8042 (interrupt, 1, 12)
[   69.115686] i8042: [68297] 03 <- i8042 (interrupt, 1, 12)
[   69.117235] i8042: [68299] 71 <- i8042 (interrupt, 1, 12)
[   69.119367] i8042: [68301] 54 <- i8042 (interrupt, 1, 12)
[   69.120941] i8042: [68303] 15 <- i8042 (interrupt, 1, 12)
[   69.122483] i8042: [68304] dd <- i8042 (interrupt, 1, 12)
[   69.124106] i8042: [68306] 31 <- i8042 (interrupt, 1, 12)
[   69.125693] i8042: [68307] f3 <- i8042 (interrupt, 1, 12)
[   69.127271] i8042: [68309] 65 <- i8042 (interrupt, 1, 12)
[   69.128840] i8042: [68310] 54 <- i8042 (interrupt, 1, 12)
[   69.130429] i8042: [68312] 15 <- i8042 (interrupt, 1, 12)
[   69.132016] i8042: [68314] d5 <- i8042 (interrupt, 1, 12)
[   69.133600] i8042: [68315] 31 <- i8042 (interrupt, 1, 12)
[   69.135180] i8042: [68317] f3 <- i8042 (interrupt, 1, 12)
[   69.136759] i8042: [68318] 5b <- i8042 (interrupt, 1, 12)
[   69.138844] i8042: [68320] 54 <- i8042 (interrupt, 1, 12)
[   69.140436] i8042: [68322] 15 <- i8042 (interrupt, 1, 12)
[   69.142028] i8042: [68324] d0 <- i8042 (interrupt, 1, 12)
[   69.143594] i8042: [68325] 31 <- i8042 (interrupt, 1, 12)
[   69.145179] i8042: [68327] f3 <- i8042 (interrupt, 1, 12)
[   69.146762] i8042: [68328] 54 <- i8042 (interrupt, 1, 12)
[   69.148342] i8042: [68330] 54 <- i8042 (interrupt, 1, 12)
[   69.149928] i8042: [68331] 15 <- i8042 (interrupt, 1, 12)
[   69.151509] i8042: [68333] ce <- i8042 (interrupt, 1, 12)
[   69.153097] i8042: [68335] 31 <- i8042 (interrupt, 1, 12)
[   69.154672] i8042: [68336] f3 <- i8042 (interrupt, 1, 12)
[   69.156225] i8042: [68338] 4e <- i8042 (interrupt, 1, 12)
[   69.157833] i8042: [68339] 54 <- i8042 (interrupt, 1, 12)
[   69.159422] i8042: [68341] 15 <- i8042 (interrupt, 1, 12)
[   69.161028] i8042: [68343] cf <- i8042 (interrupt, 1, 12)
[   69.162589] i8042: [68344] 31 <- i8042 (interrupt, 1, 12)
[   69.164135] i8042: [68346] f3 <- i8042 (interrupt, 1, 12)
[   69.165750] i8042: [68347] 4a <- i8042 (interrupt, 1, 12)
[   69.167810] i8042: [68349] 54 <- i8042 (interrupt, 1, 12)
[   69.169420] i8042: [68351] 25 <- i8042 (interrupt, 1, 12)
[   69.171013] i8042: [68353] d3 <- i8042 (interrupt, 1, 12)
[   69.172585] i8042: [68354] 31 <- i8042 (interrupt, 1, 12)
[   69.174130] i8042: [68356] 03 <- i8042 (interrupt, 1, 12)
[   69.175747] i8042: [68357] 48 <- i8042 (interrupt, 1, 12)
[   69.177332] i8042: [68359] 54 <- i8042 (interrupt, 1, 12)
[   69.178911] i8042: [68360] 25 <- i8042 (interrupt, 1, 12)
[   69.180504] i8042: [68362] d8 <- i8042 (interrupt, 1, 12)
[   69.182054] i8042: [68364] 31 <- i8042 (interrupt, 1, 12)
[   69.183638] i8042: [68365] 03 <- i8042 (interrupt, 1, 12)
[   69.185180] i8042: [68367] 47 <- i8042 (interrupt, 1, 12)
[   69.187332] i8042: [68369] 54 <- i8042 (interrupt, 1, 12)
[   69.188916] i8042: [68370] 25 <- i8042 (interrupt, 1, 12)
[   69.190497] i8042: [68372] de <- i8042 (interrupt, 1, 12)
[   69.192077] i8042: [68374] 31 <- i8042 (interrupt, 1, 12)
[   69.193660] i8042: [68375] 03 <- i8042 (interrupt, 1, 12)
[   69.195243] i8042: [68377] 46 <- i8042 (interrupt, 1, 12)
[   69.196822] i8042: [68378] 54 <- i8042 (interrupt, 1, 12)
[   69.198404] i8042: [68380] 25 <- i8042 (interrupt, 1, 12)
[   69.199996] i8042: [68382] e6 <- i8042 (interrupt, 1, 12)
[   69.201572] i8042: [68383] 31 <- i8042 (interrupt, 1, 12)
[   69.203161] i8042: [68385] 03 <- i8042 (interrupt, 1, 12)
[   69.204740] i8042: [68386] 44 <- i8042 (interrupt, 1, 12)
[   69.206311] i8042: [68388] 54 <- i8042 (interrupt, 1, 12)
[   69.207904] i8042: [68389] 25 <- i8042 (interrupt, 1, 12)
[   69.209485] i8042: [68391] f0 <- i8042 (interrupt, 1, 12)
[   69.211090] i8042: [68393] 31 <- i8042 (interrupt, 1, 12)
[   69.212654] i8042: [68394] 03 <- i8042 (interrupt, 1, 12)
[   69.214225] i8042: [68396] 42 <- i8042 (interrupt, 1, 12)
[   69.216294] i8042: [68398] 54 <- i8042 (interrupt, 1, 12)
[   69.217905] i8042: [68399] 25 <- i8042 (interrupt, 1, 12)
[   69.219483] i8042: [68401] fc <- i8042 (interrupt, 1, 12)
[   69.221068] i8042: [68403] 31 <- i8042 (interrupt, 1, 12)
[   69.222646] i8042: [68404] 03 <- i8042 (interrupt, 1, 12)
[   69.224233] i8042: [68406] 40 <- i8042 (interrupt, 1, 12)
[   69.225807] i8042: [68407] 54 <- i8042 (interrupt, 1, 12)
[   69.227416] i8042: [68409] 26 <- i8042 (interrupt, 1, 12)
[   69.228985] i8042: [68411] 0c <- i8042 (interrupt, 1, 12)
[   69.230579] i8042: [68412] 31 <- i8042 (interrupt, 1, 12)
[   69.232159] i8042: [68414] 23 <- i8042 (interrupt, 1, 12)
[   69.233728] i8042: [68415] 3d <- i8042 (interrupt, 1, 12)
[   69.235812] i8042: [68417] 54 <- i8042 (interrupt, 1, 12)
[   69.237397] i8042: [68419] 26 <- i8042 (interrupt, 1, 12)
[   69.238982] i8042: [68421] 1d <- i8042 (interrupt, 1, 12)
[   69.240557] i8042: [68422] 31 <- i8042 (interrupt, 1, 12)
[   69.242151] i8042: [68424] 23 <- i8042 (interrupt, 1, 12)
[   69.243743] i8042: [68425] 3b <- i8042 (interrupt, 1, 12)
[   69.245310] i8042: [68427] 54 <- i8042 (interrupt, 1, 12)
[   69.246891] i8042: [68428] 26 <- i8042 (interrupt, 1, 12)
[   69.248475] i8042: [68430] 31 <- i8042 (interrupt, 1, 12)
[   69.250051] i8042: [68432] 31 <- i8042 (interrupt, 1, 12)
[   69.251645] i8042: [68433] 23 <- i8042 (interrupt, 1, 12)
[   69.253184] i8042: [68435] 3b <- i8042 (interrupt, 1, 12)
[   69.254796] i8042: [68436] 54 <- i8042 (interrupt, 1, 12)
[   69.256382] i8042: [68438] 26 <- i8042 (interrupt, 1, 12)
[   69.257982] i8042: [68440] 4a <- i8042 (interrupt, 1, 12)
[   69.259549] i8042: [68441] 31 <- i8042 (interrupt, 1, 12)
[   69.261108] i8042: [68443] 23 <- i8042 (interrupt, 1, 12)
[   69.262715] i8042: [68444] 3d <- i8042 (interrupt, 1, 12)
[   69.264803] i8042: [68446] 44 <- i8042 (interrupt, 1, 12)
[   69.266384] i8042: [68448] 26 <- i8042 (interrupt, 1, 12)
[   69.267971] i8042: [68450] 65 <- i8042 (interrupt, 1, 12)
[   69.269549] i8042: [68451] 31 <- i8042 (interrupt, 1, 12)
[   69.271150] i8042: [68453] 23 <- i8042 (interrupt, 1, 12)
[   69.272719] i8042: [68454] 41 <- i8042 (interrupt, 1, 12)
[   69.274306] i8042: [68456] 54 <- i8042 (interrupt, 1, 12)
[   69.275878] i8042: [68457] 26 <- i8042 (interrupt, 1, 12)
[   69.277467] i8042: [68459] 81 <- i8042 (interrupt, 1, 12)
[   69.279053] i8042: [68461] 31 <- i8042 (interrupt, 1, 12)
[   69.280637] i8042: [68462] 23 <- i8042 (interrupt, 1, 12)
[   69.282146] i8042: [68464] 45 <- i8042 (interrupt, 1, 12)
[   69.284316] i8042: [68466] 54 <- i8042 (interrupt, 1, 12)
[   69.285890] i8042: [68467] 26 <- i8042 (interrupt, 1, 12)
[   69.287481] i8042: [68469] 9d <- i8042 (interrupt, 1, 12)
[   69.289070] i8042: [68471] 31 <- i8042 (interrupt, 1, 12)
[   69.290641] i8042: [68472] 23 <- i8042 (interrupt, 1, 12)
[   69.292226] i8042: [68474] 4c <- i8042 (interrupt, 1, 12)
[   69.293806] i8042: [68475] 54 <- i8042 (interrupt, 1, 12)
[   69.295387] i8042: [68477] 26 <- i8042 (interrupt, 1, 12)
[   69.296994] i8042: [68479] b8 <- i8042 (interrupt, 1, 12)
[   69.298447] i8042: [68480] 31 <- i8042 (interrupt, 1, 12)
[   69.300070] i8042: [68482] 23 <- i8042 (interrupt, 1, 12)
[   69.301614] i8042: [68483] 53 <- i8042 (interrupt, 1, 12)
[   69.303310] i8042: [68485] 54 <- i8042 (interrupt, 1, 12)
[   69.304877] i8042: [68486] 26 <- i8042 (interrupt, 1, 12)
[   69.306475] i8042: [68488] d0 <- i8042 (interrupt, 1, 12)
[   69.308069] i8042: [68490] 31 <- i8042 (interrupt, 1, 12)
[   69.309639] i8042: [68491] 23 <- i8042 (interrupt, 1, 12)
[   69.311184] i8042: [68493] 5a <- i8042 (interrupt, 1, 12)
[   69.313312] i8042: [68495] 54 <- i8042 (interrupt, 1, 12)
[   69.314902] i8042: [68496] 26 <- i8042 (interrupt, 1, 12)
[   69.316470] i8042: [68498] e7 <- i8042 (interrupt, 1, 12)
[   69.318072] i8042: [68500] 31 <- i8042 (interrupt, 1, 12)
[   69.319529] i8042: [68501] 23 <- i8042 (interrupt, 1, 12)
[   69.321245] i8042: [68503] 63 <- i8042 (interrupt, 1, 12)
[   69.322793] i8042: [68504] 54 <- i8042 (interrupt, 1, 12)
[   69.324386] i8042: [68506] 26 <- i8042 (interrupt, 1, 12)
[   69.325976] i8042: [68508] f9 <- i8042 (interrupt, 1, 12)
[   69.327556] i8042: [68509] 31 <- i8042 (interrupt, 1, 12)
[   69.329069] i8042: [68511] 23 <- i8042 (interrupt, 1, 12)
[   69.330610] i8042: [68512] 6a <- i8042 (interrupt, 1, 12)
[   69.332803] i8042: [68514] 54 <- i8042 (interrupt, 1, 12)
[   69.334384] i8042: [68516] 27 <- i8042 (interrupt, 1, 12)
[   69.335995] i8042: [68518] 0d <- i8042 (interrupt, 1, 12)
[   69.337483] i8042: [68519] 31 <- i8042 (interrupt, 1, 12)
[   69.339067] i8042: [68521] 03 <- i8042 (interrupt, 1, 12)
[   69.340715] i8042: [68522] 6f <- i8042 (interrupt, 1, 12)
[   69.342267] i8042: [68524] 54 <- i8042 (interrupt, 1, 12)
[   69.343884] i8042: [68525] 17 <- i8042 (interrupt, 1, 12)
[   69.345467] i8042: [68527] 25 <- i8042 (interrupt, 1, 12)
[   69.347063] i8042: [68529] 31 <- i8042 (interrupt, 1, 12)
[   69.348625] i8042: [68530] d3 <- i8042 (interrupt, 1, 12)
[   69.350223] i8042: [68532] 77 <- i8042 (interrupt, 1, 12)
[   69.351795] i8042: [68533] 44 <- i8042 (interrupt, 1, 12)
[   69.353373] i8042: [68535] 17 <- i8042 (interrupt, 1, 12)
[   69.354959] i8042: [68537] 43 <- i8042 (interrupt, 1, 12)
[   69.356470] i8042: [68538] 31 <- i8042 (interrupt, 1, 12)
[   69.358064] i8042: [68540] 73 <- i8042 (interrupt, 1, 12)
[   69.359596] i8042: [68541] 8a <- i8042 (interrupt, 1, 12)
[   69.361758] i8042: [68543] 44 <- i8042 (interrupt, 1, 12)
[   69.363382] i8042: [68545] 17 <- i8042 (interrupt, 1, 12)
[   69.364971] i8042: [68547] 5e <- i8042 (interrupt, 1, 12)
[   69.366547] i8042: [68548] 31 <- i8042 (interrupt, 1, 12)
[   69.368125] i8042: [68550] 73 <- i8042 (interrupt, 1, 12)
[   69.369705] i8042: [68551] a3 <- i8042 (interrupt, 1, 12)
[   69.371216] i8042: [68553] 04 <- i8042 (interrupt, 1, 12)
[   69.372874] i8042: [68554] 00 <- i8042 (interrupt, 1, 12)
[   69.374462] i8042: [68556] 00 <- i8042 (interrupt, 1, 12)
[   69.376067] i8042: [68558] 10 <- i8042 (interrupt, 1, 12)
[   69.377507] i8042: [68559] 00 <- i8042 (interrupt, 1, 12)
[   69.379201] i8042: [68561] 00 <- i8042 (interrupt, 1, 12)
[   71.988305] i8042: [71170] ** <- i8042 (interrupt, 0, 1)
[   71.989738] i8042: [71171] ** <- i8042 (interrupt, 0, 1)
[   71.989774] atkbd serio0: Unknown key pressed (translated set 2, code 0xbf on isa0060/serio0).
[   71.989795] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   71.991052] i8042: [71173] ** <- i8042 (interrupt, 0, 1)
[   71.992590] i8042: [71174] ** <- i8042 (interrupt, 0, 1)
[   71.992626] atkbd serio0: Unknown key released (translated set 2, code 0xbf on isa0060/serio0).
[   71.992645] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   73.234323] Lockdown: futility: raw io port access is restricted; see man kernel_lockdown.7
[   73.240865] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   73.242027] PM: suspend entry (deep)
[   73.243877] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   73.268655] Filesystems sync: 0.026 seconds
[   73.268672] PM: Preparing system for sleep (deep)
[   73.273226] Freezing user space processes ... (elapsed 0.002 seconds) done.
[   73.275410] OOM killer disabled.
[   73.275414] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[   73.277353] PM: Suspending system (deep)
[   73.292160] rfkill rfkill1: PM: calling rfkill_suspend+0x0/0x21 @ 4573, parent: hci0
[   73.292186] rfkill rfkill1: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   73.292199] input input21: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: serio1
[   73.292208] input input21: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   73.292215] input input20: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292220] input input20: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292226] input input19: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292231] input input19: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292237] input input18: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292242] input input18: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292247] input input17: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292252] input input17: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292259] input input16: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292264] input input16: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292270] input input15: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292274] input input15: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292280] input input14: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: card0
[   73.292285] input input14: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292292] sound pcmC0D10p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292302] sound pcmC0D10p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 1 usecs
[   73.292308] sound pcmC0D9p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292314] sound pcmC0D9p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   73.292321] sound pcmC0D8p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292327] sound pcmC0D8p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   73.292333] sound pcmC0D7p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292339] sound pcmC0D7p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   73.292345] sound pcmC0D3p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292352] sound pcmC0D3p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   73.292358] sound pcmC0D0c: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292365] sound pcmC0D0c: PM: do_pcm_suspend+0x0/0x27 returned 0 after 1 usecs
[   73.292371] sound pcmC0D0p: PM: calling do_pcm_suspend+0x0/0x27 @ 4573, parent: card0
[   73.292377] sound pcmC0D0p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   73.292393] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:01:00.0
[   73.292400] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292421] rfkill rfkill0: PM: calling rfkill_suspend+0x0/0x21 @ 4573, parent: phy0
[   73.292426] rfkill rfkill0: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   73.292434] leds phy0-led: PM: calling led_suspend+0x0/0x3f @ 4573, parent: 0000:02:00.0
[   73.292441] leds phy0-led: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   73.292451] platform regulatory.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.292455] platform regulatory.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292465] input input13: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: LNXVIDEO:00
[   73.292471] input input13: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292479] backlight intel_backlight: PM: calling backlight_suspend+0x0/0x7a [backlight] @ 4573, parent: card0-eDP-1
[   73.292490] backlight intel_backlight: PM: backlight_suspend+0x0/0x7a [backlight] returned 0 after 0 usecs
[   73.292507] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] @ 4415, parent: 0000:00:0e.0
[   73.292618] ieee80211 phy0: PM: calling wiphy_suspend+0x0/0x124 [cfg80211] @ 11, parent: 0000:02:00.0
[   73.292679] wlan0: deauthenticating from c8:9e:43:94:32:f2 by local choice (Reason: 3=DEAUTH_LEAVING)
[   73.292705] input input11: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: 0018:056A:5120.0002
[   73.292721] input input11: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   73.292729] input input10: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: 0018:056A:5120.0002
[   73.292734] input input10: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292742] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0018:048D:8350.0001
[   73.292749] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292756] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0018:048D:8350.0001
[   73.292762] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 1 usecs
[   73.292768] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0018:048D:8350.0001
[   73.292773] platform HID-SENSOR-200001.2.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292780] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0018:048D:8350.0001
[   73.292785] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292824] platform microcode: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.292830] platform microcode: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292843] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.292849] snd-soc-dummy snd-soc-dummy: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292845] usb 1-8: PM: calling usb_dev_suspend+0x0/0x14 @ 114, parent: usb1
[   73.292859] usb 1-8: PM: usb_dev_suspend+0x0/0x14 returned 0 after 1 usecs
[   73.292864] leds input3::scrolllock: PM: calling led_suspend+0x0/0x3f @ 4573, parent: input3
[   73.292874] leds input3::scrolllock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   73.292876] usb 1-7: PM: calling usb_dev_suspend+0x0/0x14 @ 114, parent: usb1
[   73.292882] leds input3::capslock: PM: calling led_suspend+0x0/0x3f @ 4573, parent: input3
[   73.292889] leds input3::capslock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   73.292896] leds input3::numlock: PM: calling led_suspend+0x0/0x3f @ 4573, parent: input3
[   73.292941] leds input3::numlock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   73.292950] input input3: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: serio0
[   73.292956] input input3: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.292978] platform coretemp.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.292969] mmcblk mmc0:0001: PM: calling mmc_bus_suspend+0x0/0x56 @ 111, parent: mmc0
[   73.292984] platform coretemp.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.292994] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: rtc0
[   73.293001] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.293017] psmouse serio1: PM: calling serio_suspend+0x0/0x1d @ 4573, parent: i8042
[   73.293033] i8042: [72475] d4 -> i8042 (command)
[   73.293216] i8042: [72475] f5 -> i8042 (parameter)
[   73.293385] usb 1-7: PM: usb_dev_suspend+0x0/0x14 returned 0 after 500 usecs
[   73.295947] i8042: [72478] fa <- i8042 (interrupt, 1, 12)
[   73.296033] i8042: [72478] d4 -> i8042 (command)
[   73.296219] i8042: [72478] f6 -> i8042 (parameter)
[   73.298158] mmcblk mmc0:0001: PM: mmc_bus_suspend+0x0/0x56 returned 0 after 5136 usecs
[   73.299131] i8042: [72481] fa <- i8042 (interrupt, 1, 12)
[   73.299230] i8042: [72481] d4 -> i8042 (command)
[   73.299418] i8042: [72481] f4 -> i8042 (parameter)
[   73.302390] i8042: [72484] fa <- i8042 (interrupt, 1, 12)
[   73.302489] psmouse serio1: PM: serio_suspend+0x0/0x1d returned 0 after 9462 usecs
[   73.302519] atkbd serio0: PM: calling serio_suspend+0x0/0x1d @ 4573, parent: i8042
[   73.302533] i8042: [72484] f6 -> i8042 (kbd-data)
[   73.303911] i8042: [72485] ** <- i8042 (interrupt, 0, 1)
[   73.304052] atkbd serio0: PM: serio_suspend+0x0/0x1d returned 0 after 1521 usecs
[   73.304121] i8042 i8042: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.304144] i8042: [72486] 60 -> i8042 (command)
[   73.304272] i8042: [72486] 74 -> i8042 (parameter)
[   73.304399] i8042: [72486] aa -> i8042 (command)
[   73.304646] i8042: [72486] 55 <- i8042 (return)
[   73.304654] i8042: [72486] 60 -> i8042 (command)
[   73.304836] i8042: [72486] 67 -> i8042 (parameter)
[   73.304847] i8042 i8042: PM: platform_pm_suspend+0x0/0x4a returned 0 after 718 usecs
[   73.304888] platform intel_xhci_usb_sw: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:15.0
[   73.304894] platform intel_xhci_usb_sw: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.304905] platform Fixed MDIO bus.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.304910] platform Fixed MDIO bus.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.304947] idma64 idma64.3: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:17.1
[   73.304956] idma64 idma64.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 3 usecs
[   73.304948] usb usb2: PM: calling usb_dev_suspend+0x0/0x14 @ 98, parent: 0000:00:15.0
[   73.304968] idma64 idma64.2: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:17.0
[   73.304979] usb usb1: PM: calling usb_dev_suspend+0x0/0x14 @ 111, parent: 0000:00:15.0
[   73.305030]  ata2: PM: calling ata_port_pm_suspend+0x0/0x3e @ 114, parent: 0000:00:12.0
[   73.305069]  ata1: PM: calling ata_port_pm_suspend+0x0/0x3e @ 109, parent: 0000:00:12.0
[   73.305168]  ata2: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 124 usecs
[   73.305182]  ata1: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 101 usecs
[   73.305184] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 114, parent: i2c-3
[   73.305403] idma64 idma64.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 428 usecs
[   73.305415] idma64 idma64.1: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:16.3
[   73.305503] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 308 usecs
[   73.305527] i2c_designware i2c_designware.2: PM: calling platform_pm_suspend+0x0/0x4a @ 114, parent: 0000:00:17.0
[   73.305534] i2c_designware i2c_designware.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.305547] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 114, parent: i2c-1
[   73.305560] i2c_designware i2c_designware.3: PM: calling platform_pm_suspend+0x0/0x4a @ 9, parent: 0000:00:17.1
[   73.305584] idma64 idma64.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 163 usecs
[   73.305584] i2c_designware i2c_designware.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.305603] idma64 idma64.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:16.0
[   73.305605] i2c_designware i2c_designware.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4578, parent: 0000:00:16.0
[   73.305613] i2c_designware i2c_designware.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306055] idma64 idma64.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 445 usecs
[   73.306068] platform intel-spi: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:1f.0
[   73.306073] platform intel-spi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306108] input input2: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: LNXPWRBN:00
[   73.306116] input input2: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   73.306123] input input1: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: PNP0C0C:00
[   73.306128] input input1: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.306135] input input0: PM: calling input_dev_suspend+0x0/0x47 @ 4573, parent: PNP0C0D:00
[   73.306141] input input0: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   73.306181] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306187] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306204] rtc_cmos 00:04: PM: calling pnp_bus_suspend+0x0/0x14 @ 4573, parent: pnp0
[   73.306345] rtc_cmos 00:04: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 134 usecs
[   73.306351] system 00:03: PM: calling pnp_bus_suspend+0x0/0x14 @ 4573, parent: pnp0
[   73.306357] system 00:03: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   73.306363] i8042 aux 00:02: PM: calling pnp_bus_suspend+0x0/0x14 @ 4573, parent: pnp0
[   73.306368] i8042 aux 00:02: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   73.306374] i8042 kbd 00:01: PM: calling pnp_bus_suspend+0x0/0x14 @ 4573, parent: pnp0
[   73.306379] i8042 kbd 00:01: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   73.306385] system 00:00: PM: calling pnp_bus_suspend+0x0/0x14 @ 4573, parent: pnp0
[   73.306391] system 00:00: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   73.306400] platform chromeos_acpi: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306405] platform chromeos_acpi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306411] platform efivars.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306416] platform efivars.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306422] platform rtc-efi.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306427] platform rtc-efi.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306433] button LNXPWRBN:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4573, parent: LNXSYSTM:00
[   73.306440] button LNXPWRBN:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   73.306449] acpi-fan PNP0C0B:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306455] acpi-fan PNP0C0B:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306461] platform MSFT0101:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306465] platform MSFT0101:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306471] platform INT33A1:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306476] platform INT33A1:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306484] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4573, parent: platform
[   73.306492] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   73.306500] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4573, parent: platform
[   73.306506] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   73.306515] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4573, parent: platform
[   73.306521] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   73.306529] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4573, parent: platform
[   73.306535] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   73.306542] platform PNP0103:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306547] platform PNP0103:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306553] platform PNP0C0C:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306557] platform PNP0C0C:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306563] platform ACPI0003:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: platform
[   73.306568] platform ACPI0003:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306573] platform PNP0C0D:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: PNP0C09:00
[   73.306578] platform PNP0C0D:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306584] platform INT33D3:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: PNP0C09:00
[   73.306589] platform INT33D3:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306594] platform VPC2004:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: PNP0C09:00
[   73.306599] platform VPC2004:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306604] platform PNP0C0A:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: PNP0C09:00
[   73.306609] platform PNP0C0A:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306615] platform PNP0C09:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4573, parent: 0000:00:1f.0
[   73.306619] platform PNP0C09:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.306644] thermal LNXTHERM:00: PM: calling acpi_thermal_suspend+0x0/0x1d @ 4573, parent: LNXSYBUS:01
[   73.306654] thermal LNXTHERM:00: PM: acpi_thermal_suspend+0x0/0x1d returned 0 after 3 usecs
[   73.306667] tpm_crb MSFT0101:00: PM: calling tpm_pm_suspend+0x0/0xcc @ 4573, parent: LNXSYBUS:00
[   73.306905] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: 0000:00:14.0
[   73.306958] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 19 usecs
[   73.306971] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: pci0000:00
[   73.307043] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 65 usecs
[   73.307053] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: pci0000:00
[   73.307059] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   73.307066] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4579, parent: pci0000:00
[   73.307070] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: pci0000:00
[   73.307077] intel-lpss 0000:00:17.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   73.307087] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: pci0000:00
[   73.307094] intel-lpss 0000:00:17.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 1 usecs
[   73.307277] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 196 usecs
[   73.307281] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4580, parent: pci0000:00
[   73.307310] intel-lpss 0000:00:16.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 3 usecs
[   73.307432] pcieport 0000:00:14.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4581, parent: pci0000:00
[   73.307450] pcieport 0000:00:14.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 6 usecs
[   73.307461] ahci 0000:00:12.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4581, parent: pci0000:00
[   73.307472] ahci 0000:00:12.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 4 usecs
[   73.307485] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4581, parent: pci0000:00
[   73.307525] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] returned 0 after 14986 usecs
[   73.307561] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend+0x0/0x1da @ 106, parent: pci0000:00
[   73.307568] pci 0000:00:00.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4582, parent: pci0000:00
[   73.307577] pci 0000:00:00.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   73.307585] pci 0000:00:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4582, parent: pci0000:00
[   73.307591] pci 0000:00:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   73.308062] mei_me 0000:00:0f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 570 usecs
[   73.308910] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 1335 usecs
[   73.309042] i915 0000:00:02.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4415, parent: pci0000:00
[   73.310288] i915 0000:00:02.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 1201 usecs
[   73.315112] usb usb1: PM: usb_dev_suspend+0x0/0x14 returned 0 after 10112 usecs
[   73.317497] i2c_hid_acpi i2c-WCOM5120:00: failed to change power setting.
[   73.317519] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 11965 usecs
[   73.317672] i2c_designware i2c_designware.1: PM: calling platform_pm_suspend+0x0/0x4a @ 4577, parent: 0000:00:16.3
[   73.317698] i2c_designware i2c_designware.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   73.317751] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend+0x0/0x1da @ 4578, parent: pci0000:00
[   73.317766] intel-lpss 0000:00:16.3: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   73.327332] usb usb2: PM: usb_dev_suspend+0x0/0x14 returned 0 after 22353 usecs
[   73.327376] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4579, parent: pci0000:00
[   73.327749] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 363 usecs
[   73.341217] ieee80211 phy0: PM: wiphy_suspend+0x0/0x124 [cfg80211] returned 0 after 48538 usecs
[   73.341366] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 9, parent: 0000:00:14.1
[   73.341383] iwlwifi 0000:02:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   73.341434] pcieport 0000:00:14.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4580, parent: pci0000:00
[   73.341481] pcieport 0000:00:14.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 8 usecs
[   73.516672] tpm_crb MSFT0101:00: PM: tpm_pm_suspend+0x0/0xcc returned 0 after 209993 usecs
[   73.516716] button PNP0C0C:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4573, parent: LNXSYBUS:00
[   73.516724] button PNP0C0C:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   73.516815] button PNP0C0D:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4573, parent: PNP0C09:00
[   73.516821] button PNP0C0D:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   73.516833] ec PNP0C09:00: PM: calling acpi_ec_suspend+0x0/0x7d @ 4573, parent: device:01
[   73.516840] ec PNP0C09:00: PM: acpi_ec_suspend+0x0/0x7d returned 0 after 0 usecs
[   73.516886] PM: suspend of devices complete after 224.797 msecs
[   73.516891] PM: start suspend of devices complete after 239.491 msecs
[   73.517088] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517117] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   73.517324] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4580, parent: i2c-3
[   73.517338] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 1 usecs
[   73.517350] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 4580, parent: 0000:00:17.1
[   73.517366] i2c_designware i2c_designware.3: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 7 usecs
[   73.517377] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4580, parent: i2c-1
[   73.517416] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4573, parent: platform
[   73.517425] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   73.517433] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4573, parent: platform
[   73.517439] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   73.517448] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4573, parent: platform
[   73.517453] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   73.517457] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 73 usecs
[   73.517462] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4573, parent: platform
[   73.517469] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   73.517470] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 4580, parent: 0000:00:16.3
[   73.517482] i2c_designware i2c_designware.1: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 4 usecs
[   73.517500] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: 0000:00:14.1
[   73.517507] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517516] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: 0000:00:14.0
[   73.517522] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517530] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517535] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517544] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517549] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517556] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517562] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517570] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517614] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 38 usecs
[   73.517625] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517631] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517638] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517684] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 41 usecs
[   73.517707] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517713] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517736] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517742] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517749] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517755] pcieport 0000:00:14.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517763] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517769] pcieport 0000:00:14.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517778] ahci 0000:00:12.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517784] ahci 0000:00:12.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517793] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.517799] mei_me 0000:00:0f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.517808] i915 0000:00:02.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4580, parent: pci0000:00
[   73.518240] pci 0000:00:00.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4582, parent: pci0000:00
[   73.518252] pci 0000:00:00.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.518264] pci 0000:00:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4582, parent: pci0000:00
[   73.518271] pci 0000:00:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   73.532111] i915 0000:00:02.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 14289 usecs
[   73.532279] PM: late suspend of devices complete after 15.382 msecs
[   73.532571] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4582, parent: pci0000:00
[   73.532790] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 9, parent: i2c-3
[   73.532816] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   73.532834] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 9, parent: i2c-1
[   73.532840] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   73.532875] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4573, parent: platform
[   73.533837] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 948 usecs
[   73.533846] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4573, parent: platform
[   73.534706] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 853 usecs
[   73.534716] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4573, parent: platform
[   73.536120] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1398 usecs
[   73.536131] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4573, parent: platform
[   73.537835] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1698 usecs
[   73.537864] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4580, parent: 0000:00:14.1
[   73.537878] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 9, parent: 0000:00:14.0
[   73.537897] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 11, parent: pci0000:00
[   73.537968] ec PNP0C09:00: PM: calling acpi_ec_suspend_noirq+0x0/0x4c @ 4573, parent: device:01
[   73.537979] ACPI: EC: interrupt blocked
[   73.537981] ec PNP0C09:00: PM: acpi_ec_suspend_noirq+0x0/0x4c returned 0 after 2 usecs
[   73.538043] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4579, parent: pci0000:00
[   73.538901] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 992 usecs
[   73.538922] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 11, parent: pci0000:00
[   73.539083] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 1032 usecs
[   73.539096] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4579, parent: pci0000:00
[   73.539810] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 98, parent: pci0000:00
[   73.539819] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   73.539831] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 98, parent: pci0000:00
[   73.539837] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4578, parent: pci0000:00
[   73.539845] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   73.539851] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4577, parent: pci0000:00
[   73.539884] ahci 0000:00:12.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 114, parent: pci0000:00
[   73.539896] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 111, parent: pci0000:00
[   73.539926] pci 0000:00:00.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 106, parent: pci0000:00
[   73.539976] pci 0000:00:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4581, parent: pci0000:00
[   73.540052] pci 0000:00:00.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 117 usecs
[   73.540062] pci 0000:00:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 77 usecs
[   73.543971] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11386 usecs
[   73.543990] i915 0000:00:02.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4415, parent: pci0000:00
[   73.543999] i915 0000:00:02.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   73.550996] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11893 usecs
[   73.550999] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11161 usecs
[   73.551897] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 14021 usecs
[   73.551933] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 14045 usecs
[   73.551945] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4578, parent: pci0000:00
[   73.551952] ahci 0000:00:12.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12058 usecs
[   73.551974] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 109, parent: pci0000:00
[   73.551995] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13065 usecs
[   73.552926] mei_me 0000:00:0f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13021 usecs
[   73.552948] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13087 usecs
[   73.563927] pcieport 0000:00:14.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11943 usecs
[   73.563928] pcieport 0000:00:14.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11973 usecs
[   73.563962] PM: noirq suspend of devices complete after 31.480 msecs
[   73.564115] ACPI: PM: Preparing to enter system sleep state S3
[   73.564500] ACPI: EC: event blocked
[   73.564504] ACPI: EC: EC stopped
[   73.564506] ACPI: PM: Saving platform NVS memory
[   73.564516] Disabling non-boot CPUs ...
[   73.566671] smpboot: CPU 1 is now offline
[   73.569255] smpboot: CPU 2 is now offline
[   73.571690] smpboot: CPU 3 is now offline
[   73.572321] PM: Checking wakeup interrupts
[   73.572330] PM: Calling mce_syscore_suspend+0x0/0x16
[   73.572343] PM: Calling timekeeping_suspend+0x0/0x285
[   73.572455] PM: Calling save_ioapic_entries+0x0/0xb0
[   73.573760] PM: Calling i8259A_suspend+0x0/0x2d
[   73.573775] PM: Calling fw_suspend+0x0/0x1b
[   73.573780] PM: Calling acpi_save_bm_rld+0x0/0x22
[   73.573790] PM: Calling lapic_suspend+0x0/0x20e
[   73.578751] TSC at resume: 698223849
[   73.578790] ACPI: PM: Low-level resume complete
[   73.578957] ACPI: EC: EC started
[   73.578966] ACPI: PM: Restoring platform NVS memory
[   73.578987] PM: Calling init_counter_refs+0x0/0x6d
[   73.579026] PM: Calling lapic_resume+0x0/0x31a
[   73.579100] PM: Calling acpi_restore_bm_rld+0x0/0x65
[   73.579127] PM: Calling irqrouter_resume+0x0/0x48
[   73.579151] PM: Calling i8259A_resume+0x0/0x32
[   73.579361] PM: Calling ioapic_resume+0x0/0xcd
[   73.579691] PM: Calling irq_pm_syscore_resume+0x0/0x17
[   73.579804] PM: Calling timekeeping_resume+0x0/0x21d
[   73.579957] PM: Timekeeping suspended for 8.467 seconds
[   73.580030] PM: Calling mce_syscore_resume+0x0/0x28
[   73.580161] PM: Calling microcode_bsp_resume+0x0/0x50
[   73.580280] Enabling non-boot CPUs ...
[   73.580990] x86: Booting SMP configuration:
[   73.581007] smpboot: Booting Node 0 Processor 1 APIC 0x2
[   73.585659] CPU1 is up
[   73.586259] smpboot: Booting Node 0 Processor 2 APIC 0x4
[   73.595912] CPU2 is up
[   73.596531] smpboot: Booting Node 0 Processor 3 APIC 0x6
[   73.601837] CPU3 is up
[   73.602467] ACPI: PM: Waking up from system sleep state S3
[   73.606971] ec PNP0C09:00: PM: calling acpi_ec_resume_noirq+0x0/0x49 @ 4573, parent: device:01
[   73.606977] i915 0000:00:02.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 106, parent: pci0000:00
[   73.606973] pci 0000:00:00.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4578, parent: pci0000:00
[   73.607009] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4577, parent: pci0000:00
[   73.607050] ahci 0000:00:12.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 111, parent: pci0000:00
[   73.607298] pci 0000:00:00.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 262 usecs
[   73.607333] mei_me 0000:00:0f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 275 usecs
[   73.607337] pcieport 0000:00:14.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4578, parent: pci0000:00
[   73.607357] i915 0000:00:02.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 339 usecs
[   73.607375] pcieport 0000:00:14.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4577, parent: pci0000:00
[   73.607400] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 106, parent: pci0000:00
[   73.607402] ahci 0000:00:12.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 313 usecs
[   73.607461] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 111, parent: pci0000:00
[   73.607511] ACPI: EC: interrupt unblocked
[   73.607523] ec PNP0C09:00: PM: acpi_ec_resume_noirq+0x0/0x49 returned 0 after 10 usecs
[   73.607597] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 109, parent: pci0000:00
[   73.607607] pcieport 0000:00:14.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 246 usecs
[   73.607682] pcieport 0000:00:14.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 279 usecs
[   73.607757] intel-lpss 0000:00:16.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 263 usecs
[   73.607759] pci 0000:00:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 121 usecs
[   73.607867] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4578, parent: pci0000:00
[   73.607918] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 458 usecs
[   73.607959] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 106, parent: 0000:00:14.1
[   73.607980] intel-lpss 0000:00:16.3: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 80 usecs
[   73.608032] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4578, parent: i2c-1
[   73.608062] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1 usecs
[   73.608116] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 11, parent: pci0000:00
[   73.608168] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4577, parent: pci0000:00
[   73.608614] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 114, parent: pci0000:00
[   73.609121] intel-lpss 0000:00:17.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 976 usecs
[   73.609124] intel-lpss 0000:00:17.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 922 usecs
[   73.609339] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4582, parent: pci0000:00
[   73.609363] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4578, parent: i2c-3
[   73.609393] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1 usecs
[   73.609477] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 109, parent: pci0000:00
[   73.609499] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 111, parent: pci0000:00
[   73.610282] iwlwifi 0000:02:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 2296 usecs
[   73.610337] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 833 usecs
[   73.610370] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 838 usecs
[   73.610387] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 9, parent: 0000:00:14.0
[   73.610395] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 1029 usecs
[   73.610409] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4573, parent: platform
[   73.610931] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 515 usecs
[   73.612232] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1778 usecs
[   73.612262] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4573, parent: platform
[   73.612530] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 3879 usecs
[   73.613721] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1438 usecs
[   73.613750] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4573, parent: platform
[   73.614652] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 880 usecs
[   73.614680] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4573, parent: platform
[   73.615653] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 953 usecs
[   73.615777] i8042 i8042: PM: calling i8042_pm_resume_noirq+0x0/0x21 @ 4573, parent: platform
[   73.615799] i8042 i8042: PM: i8042_pm_resume_noirq+0x0/0x21 returned 0 after 0 usecs
[   73.615965] PM: noirq resume of devices complete after 9.341 msecs
[   73.616793] i915 0000:00:02.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 114, parent: pci0000:00
[   73.616797] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.616829] mei_me 0000:00:0f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   73.616859] ahci 0000:00:12.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.616854] pci 0000:00:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   73.616864] pci 0000:00:00.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: pci0000:00
[   73.616880] ahci 0000:00:12.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616888] pci 0000:00:00.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616898] pci 0000:00:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616903] pcieport 0000:00:14.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.616920] pcieport 0000:00:14.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: pci0000:00
[   73.616921] pcieport 0000:00:14.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616933] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   73.616939] pcieport 0000:00:14.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616950] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.616957] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.616965] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: pci0000:00
[   73.616983] intel-lpss 0000:00:16.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   73.616983] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   73.616999] intel-lpss 0000:00:16.3: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   73.617005] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.617018] intel-lpss 0000:00:17.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   73.617025] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: pci0000:00
[   73.617037] intel-lpss 0000:00:17.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 10 usecs
[   73.617044] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: pci0000:00
[   73.617045] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.617062] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   73.617068] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.617068] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: 0000:00:14.0
[   73.617082] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.617086] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.617096] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 11, parent: 0000:00:14.1
[   73.617117] iwlwifi 0000:02:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   73.617121] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 4577, parent: 0000:00:16.3
[   73.617154] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 4582, parent: 0000:00:17.1
[   73.617160] i2c_designware i2c_designware.1: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 13 usecs
[   73.617253] i2c_designware i2c_designware.3: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 74 usecs
[   73.617361] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4580, parent: i2c-1
[   73.617388] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.617454] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4577, parent: i2c-3
[   73.617484] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.617639] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4573, parent: platform
[   73.617665] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.617689] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4573, parent: platform
[   73.617709] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.617756] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4573, parent: platform
[   73.617778] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.617800] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4573, parent: platform
[   73.617820] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   73.619981] i915 0000:00:02.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 3159 usecs
[   73.620092] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4577, parent: pci0000:00
[   73.620127] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   73.620312] PM: early resume of devices complete after 3.778 msecs
[   73.620556] ec PNP0C09:00: PM: calling acpi_ec_resume+0x0/0x1a @ 4573, parent: device:01
[   73.620551] pci 0000:00:00.1: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   73.620552] pci 0000:00:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4584, parent: pci0000:00
[   73.620580] ACPI: EC: event unblocked
[   73.620591] pci 0000:00:00.1: PM: pci_pm_resume+0x0/0xed returned 0 after 4 usecs
[   73.620591] pci 0000:00:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 3 usecs
[   73.620617] ec PNP0C09:00: PM: acpi_ec_resume+0x0/0x1a returned 0 after 36 usecs
[   73.620624] mei_me 0000:00:0f.0: PM: calling pci_pm_resume+0x0/0xed @ 4584, parent: pci0000:00
[   73.620626] ahci 0000:00:12.0: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   73.620625] i915 0000:00:02.0: PM: calling pci_pm_resume+0x0/0xed @ 4577, parent: pci0000:00
[   73.620637] battery PNP0C0A:00: PM: calling acpi_battery_resume+0x0/0x3b @ 4573, parent: PNP0C09:00
[   73.620675] ahci 0000:00:12.0: PM: pci_pm_resume+0x0/0xed returned 0 after 32 usecs
[   73.620696] pcieport 0000:00:14.0: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   73.620792] pcieport 0000:00:14.1: PM: calling pci_pm_resume+0x0/0xed @ 114, parent: pci0000:00
[   73.620808] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume+0x0/0xed @ 4583, parent: pci0000:00
[   73.620836] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: pci0000:00
[   73.620857] pcieport 0000:00:14.0: PM: pci_pm_resume+0x0/0xed returned 0 after 143 usecs
[   73.620862] intel-lpss 0000:00:16.0: PM: pci_pm_resume+0x0/0xed returned 0 after 2 usecs
[   73.620883] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: pci0000:00
[   73.620889] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   73.620902] intel-lpss 0000:00:16.3: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   73.620909] intel-lpss 0000:00:17.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   73.620925] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: pci0000:00
[   73.620931] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   73.620943] intel-lpss 0000:00:17.1: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   73.620965] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: pci0000:00
[   73.620983] lpc_ich 0000:00:1f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   73.621002] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: pci0000:00
[   73.621051] i801_smbus 0000:00:1f.1: PM: pci_pm_resume+0x0/0xed returned 0 after 26 usecs
[   73.621060] pcieport 0000:00:14.1: PM: pci_pm_resume+0x0/0xed returned 0 after 33 usecs
[   73.621075] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4578, parent: 0000:00:14.0
[   73.621087] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume+0x0/0xed @ 114, parent: 0000:00:14.1
[   73.621213] iwlwifi 0000:02:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 107 usecs
[   73.621243] i2c_designware i2c_designware.0: PM: calling platform_pm_resume+0x0/0x41 @ 114, parent: 0000:00:16.0
[   73.621260] i2c_designware i2c_designware.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.621258] xhci_hcd 0000:00:15.0: PM: pci_pm_resume+0x0/0xed returned 0 after 411 usecs
[   73.621281] i2c_designware i2c_designware.1: PM: calling platform_pm_resume+0x0/0x41 @ 114, parent: 0000:00:16.3
[   73.621297] i2c_designware i2c_designware.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.621329] i2c_designware i2c_designware.2: PM: calling platform_pm_resume+0x0/0x41 @ 11, parent: 0000:00:17.0
[   73.621331] i2c_designware i2c_designware.3: PM: calling platform_pm_resume+0x0/0x41 @ 114, parent: 0000:00:17.1
[   73.621346] i2c_designware i2c_designware.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.621351] i2c_designware i2c_designware.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.621371] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 114, parent: i2c-3
[   73.621372]  ata1: PM: calling ata_port_pm_resume+0x0/0x56 @ 11, parent: 0000:00:12.0
[   73.621403]  ata1: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 14 usecs
[   73.621448]  ata2: PM: calling ata_port_pm_resume+0x0/0x56 @ 11, parent: 0000:00:12.0
[   73.621473]  ata2: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 8 usecs
[   73.621512] usb usb1: PM: calling usb_dev_resume+0x0/0x14 @ 111, parent: 0000:00:15.0
[   73.621532] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 106, parent: i2c-1
[   73.621786] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume+0x0/0xed returned 0 after 835 usecs
[   73.622285] rtsx_pci 0000:01:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1186 usecs
[   73.622408] usb usb2: PM: calling usb_dev_resume+0x0/0x14 @ 4578, parent: 0000:00:15.0
[   73.623357] mei_me 0000:00:0f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 2697 usecs
[   73.623671] mmcblk mmc0:0001: PM: calling mmc_bus_resume+0x0/0x53 @ 4595, parent: mmc0
[   73.623811] mmcblk mmc0:0001: PM: mmc_bus_resume+0x0/0x53 returned 0 after 12 usecs
[   73.624169] ieee80211 phy0: PM: calling wiphy_resume+0x0/0x158 [cfg80211] @ 4598, parent: 0000:02:00.0
[   73.636074] i915 0000:00:02.0: PM: pci_pm_resume+0x0/0xed returned 0 after 15418 usecs
[   73.636177] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume+0x0/0xed @ 4599, parent: pci0000:00
[   73.644168] battery PNP0C0A:00: PM: acpi_battery_resume+0x0/0x3b returned 0 after 23510 usecs
[   73.644214] button PNP0C0D:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4573, parent: PNP0C09:00
[   73.645397] usb usb2: PM: usb_dev_resume+0x0/0x14 returned 0 after 22944 usecs
[   73.646685] button PNP0C0D:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 2454 usecs
[   73.646777] ac ACPI0003:00: PM: calling acpi_ac_resume+0x0/0x59 @ 4573, parent: LNXSYBUS:00
[   73.648082] ac ACPI0003:00: PM: acpi_ac_resume+0x0/0x59 returned 0 after 1287 usecs
[   73.648111] button PNP0C0C:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4573, parent: LNXSYBUS:00
[   73.648125] button PNP0C0C:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   73.648142] tpm_crb MSFT0101:00: PM: calling tpm_pm_resume+0x0/0x30 @ 4573, parent: LNXSYBUS:00
[   73.648155] tpm_crb MSFT0101:00: PM: tpm_pm_resume+0x0/0x30 returned 0 after 0 usecs
[   73.648172] thermal LNXTHERM:00: PM: calling acpi_thermal_resume+0x0/0x11e @ 4573, parent: LNXSYBUS:01
[   73.648257] thermal LNXTHERM:00: PM: acpi_thermal_resume+0x0/0x11e returned 0 after 70 usecs
[   73.648303] platform PNP0C09:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:1f.0
[   73.648316] platform PNP0C09:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648327] platform PNP0C0A:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: PNP0C09:00
[   73.648337] platform PNP0C0A:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648347] platform VPC2004:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: PNP0C09:00
[   73.648357] platform VPC2004:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648368] platform INT33D3:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: PNP0C09:00
[   73.648378] platform INT33D3:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648389] platform PNP0C0D:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: PNP0C09:00
[   73.648398] platform PNP0C0D:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648409] platform ACPI0003:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648431] platform ACPI0003:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648443] platform PNP0C0C:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648452] platform PNP0C0C:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648464] platform PNP0103:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648473] platform PNP0103:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648485] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4573, parent: platform
[   73.648500] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 2 usecs
[   73.648514] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume+0x0/0x5d @ 4573, parent: platform
[   73.648526] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   73.648541] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume+0x0/0x5d @ 4573, parent: platform
[   73.648553] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   73.648567] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume+0x0/0x5d @ 4573, parent: platform
[   73.648579] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   73.648593] platform INT33A1:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648603] platform INT33A1:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648613] platform MSFT0101:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648623] platform MSFT0101:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648634] acpi-fan PNP0C0B:00: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648645] acpi-fan PNP0C0B:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   73.648658] button LNXPWRBN:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4573, parent: LNXSYSTM:00
[   73.648670] button LNXPWRBN:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   73.648681] platform rtc-efi.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648691] platform rtc-efi.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648702] platform efivars.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648712] platform efivars.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648723] platform chromeos_acpi: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648732] platform chromeos_acpi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648747] system 00:00: PM: calling pnp_bus_resume+0x0/0x9d @ 4573, parent: pnp0
[   73.648759] system 00:00: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   73.648771] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4573, parent: pnp0
[   73.648781] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   73.648792] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4573, parent: pnp0
[   73.648802] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   73.648812] system 00:03: PM: calling pnp_bus_resume+0x0/0x9d @ 4573, parent: pnp0
[   73.648822] system 00:03: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   73.648832] rtc_cmos 00:04: PM: calling pnp_bus_resume+0x0/0x9d @ 4573, parent: pnp0
[   73.648843] rtc_cmos 00:04: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   73.648862] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.648873] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.648905] input input0: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: PNP0C0D:00
[   73.648917] input input0: PM: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[   73.648928] input input1: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: PNP0C0C:00
[   73.648937] input input1: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.648948] input input2: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: LNXPWRBN:00
[   73.648957] input input2: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.648990] platform intel-spi: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:1f.0
[   73.649000] platform intel-spi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649012] idma64 idma64.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:16.0
[   73.649024] idma64 idma64.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   73.649037] idma64 idma64.1: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:16.3
[   73.649047] idma64 idma64.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649061] idma64 idma64.2: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:17.0
[   73.649072] idma64 idma64.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649085] idma64 idma64.3: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:17.1
[   73.649095] idma64 idma64.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649120] platform Fixed MDIO bus.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.649130] platform Fixed MDIO bus.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649144] platform intel_xhci_usb_sw: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:00:15.0
[   73.649154] platform intel_xhci_usb_sw: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.649174] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.649251] i8042: [72823] 55 <- i8042 (flush, kbd)
[   73.649271] i8042: [72823] aa -> i8042 (command)
[   73.649520] i8042: [72824] 55 <- i8042 (return)
[   73.649536] i8042: [72824] 60 -> i8042 (command)
[   73.649736] i8042: [72824] 74 -> i8042 (parameter)
[   73.649863] i8042: [72824] 60 -> i8042 (command)
[   73.650031] i8042: [72824] 56 -> i8042 (parameter)
[   73.650217] i8042: [72824] 60 -> i8042 (command)
[   73.650355] i8042: [72824] 47 -> i8042 (parameter)
[   73.650371] i8042 i8042: PM: platform_pm_resume+0x0/0x41 returned 0 after 1187 usecs
[   73.650385] atkbd serio0: PM: calling serio_resume+0x0/0x94 @ 4573, parent: i8042
[   73.650397] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 14195 usecs
[   73.650475] i8042: [72825] ed -> i8042 (kbd-data)
[   73.650507] atkbd serio0: PM: serio_resume+0x0/0x94 returned 0 after 110 usecs
[   73.650521] psmouse serio1: PM: calling serio_resume+0x0/0x94 @ 4573, parent: i8042
[   73.650527] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4600, parent: 0000:00:0e.0
[   73.650546] psmouse serio1: PM: serio_resume+0x0/0x94 returned 0 after 14 usecs
[   73.650565] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: rtc0
[   73.650576] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.650589] platform coretemp.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.650598] platform coretemp.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.650614] input input3: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: serio0
[   73.650637] input input3: PM: input_dev_resume+0x0/0x42 returned 0 after 14 usecs
[   73.650650] leds input3::numlock: PM: calling led_resume+0x0/0x20 @ 4573, parent: input3
[   73.650664] leds input3::numlock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   73.650676] leds input3::capslock: PM: calling led_resume+0x0/0x20 @ 4573, parent: input3
[   73.650687] leds input3::capslock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   73.650699] leds input3::scrolllock: PM: calling led_resume+0x0/0x20 @ 4573, parent: input3
[   73.650710] leds input3::scrolllock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   73.650728] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.650738] snd-soc-dummy snd-soc-dummy: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.650751] platform microcode: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.650759] platform microcode: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.651823] i8042: [72826] ** <- i8042 (interrupt, 0, 1)
[   73.651871] i8042: [72826] 00 -> i8042 (kbd-data)
[   73.653245] i8042: [72827] ** <- i8042 (interrupt, 0, 1)
[   73.653361] i8042: [72827] ed -> i8042 (kbd-data)
[   73.654727] i8042: [72829] ** <- i8042 (interrupt, 0, 1)
[   73.654836] i8042: [72829] 00 -> i8042 (kbd-data)
[   73.656205] i8042: [72830] ** <- i8042 (interrupt, 0, 1)
[   73.656335] i8042: [72830] f3 -> i8042 (kbd-data)
[   73.657702] i8042: [72832] ** <- i8042 (interrupt, 0, 1)
[   73.657812] i8042: [72832] 00 -> i8042 (kbd-data)
[   73.659157] i8042: [72833] ** <- i8042 (interrupt, 0, 1)
[   73.659272] i8042: [72833] f4 -> i8042 (kbd-data)
[   73.660629] i8042: [72835] ** <- i8042 (interrupt, 0, 1)
[   73.660762] i8042: [72835] d4 -> i8042 (command)
[   73.660951] i8042: [72835] ff -> i8042 (parameter)
[   73.663516] i8042: [72838] fa <- i8042 (interrupt, 1, 12)
[   73.668976] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] returned 0 after 18412 usecs
[   73.683618] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 62217 usecs
[   73.683837] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0018:048D:8350.0001
[   73.683871] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.683887] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0018:048D:8350.0001
[   73.683897] platform HID-SENSOR-200001.2.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.683908] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0018:048D:8350.0001
[   73.683928] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 9 usecs
[   73.684050] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0018:048D:8350.0001
[   73.684059] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.716996] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 95435 usecs
[   73.717133] input input10: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: 0018:056A:5120.0002
[   73.717165] input input10: PM: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[   73.717180] input input11: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: 0018:056A:5120.0002
[   73.717190] input input11: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.717217] backlight intel_backlight: PM: calling backlight_resume+0x0/0x7a [backlight] @ 4573, parent: card0-eDP-1
[   73.717234] backlight intel_backlight: PM: backlight_resume+0x0/0x7a [backlight] returned 0 after 1 usecs
[   73.717251] input input13: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: LNXVIDEO:00
[   73.717260] input input13: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.717276] platform regulatory.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: platform
[   73.717288] platform regulatory.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.717302] leds phy0-led: PM: calling led_resume+0x0/0x20 @ 4573, parent: 0000:02:00.0
[   73.717317] leds phy0-led: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   73.734692] usb usb1: PM: usb_dev_resume+0x0/0x14 returned 0 after 113149 usecs
[   73.734844] usb 1-7: PM: calling usb_dev_resume+0x0/0x14 @ 4595, parent: usb1
[   73.734865] usb 1-7: PM: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[   73.734899] usb 1-8: PM: calling usb_dev_resume+0x0/0x14 @ 4597, parent: usb1
[   73.734921] usb 1-8: PM: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[   73.764541] i8042: [72939] aa <- i8042 (interrupt, 1, 12)
[   73.766130] i8042: [72940] 00 <- i8042 (interrupt, 1, 12)
[   73.766206] i8042: [72940] d4 -> i8042 (command)
[   73.766397] i8042: [72940] f6 -> i8042 (parameter)
[   73.769270] i8042: [72943] fa <- i8042 (interrupt, 1, 12)
[   73.769384] i8042: [72943] ed -> i8042 (kbd-data)
[   73.770708] i8042: [72945] ** <- i8042 (interrupt, 0, 1)
[   73.770912] i8042: [72945] 00 -> i8042 (kbd-data)
[   73.772341] i8042: [72946] ** <- i8042 (interrupt, 0, 1)
[   73.772462] i8042: [72947] f3 -> i8042 (kbd-data)
[   73.773883] i8042: [72948] ** <- i8042 (interrupt, 0, 1)
[   73.773992] i8042: [72948] 00 -> i8042 (kbd-data)
[   73.775346] i8042: [72949] ** <- i8042 (interrupt, 0, 1)
[   73.775505] i8042: [72950] d4 -> i8042 (command)
[   73.775750] i8042: [72950] f5 -> i8042 (parameter)
[   73.778588] i8042: [72953] fa <- i8042 (interrupt, 1, 12)
[   73.778701] i8042: [72953] d4 -> i8042 (command)
[   73.778890] i8042: [72953] e6 -> i8042 (parameter)
[   73.781626] i8042: [72956] fa <- i8042 (interrupt, 1, 12)
[   73.781780] i8042: [72956] d4 -> i8042 (command)
[   73.781969] i8042: [72956] e6 -> i8042 (parameter)
[   73.784945] i8042: [72959] fa <- i8042 (interrupt, 1, 12)
[   73.785062] i8042: [72959] d4 -> i8042 (command)
[   73.785289] i8042: [72959] e6 -> i8042 (parameter)
[   73.788138] i8042: [72962] fa <- i8042 (interrupt, 1, 12)
[   73.788256] i8042: [72962] d4 -> i8042 (command)
[   73.788501] i8042: [72963] e9 -> i8042 (parameter)
[   73.791332] i8042: [72965] fa <- i8042 (interrupt, 1, 12)
[   73.792906] i8042: [72967] 3c <- i8042 (interrupt, 1, 12)
[   73.794484] i8042: [72969] 03 <- i8042 (interrupt, 1, 12)
[   73.796069] i8042: [72970] 00 <- i8042 (interrupt, 1, 12)
[   73.796188] i8042: [72970] d4 -> i8042 (command)
[   73.796432] i8042: [72970] e6 -> i8042 (parameter)
[   73.799272] i8042: [72973] fa <- i8042 (interrupt, 1, 12)
[   73.799390] i8042: [72973] d4 -> i8042 (command)
[   73.799581] i8042: [72973] e8 -> i8042 (parameter)
[   73.802469] i8042: [72977] fa <- i8042 (interrupt, 1, 12)
[   73.802585] i8042: [72977] d4 -> i8042 (command)
[   73.802776] i8042: [72977] 00 -> i8042 (parameter)
[   73.805661] i8042: [72980] fa <- i8042 (interrupt, 1, 12)
[   73.805778] i8042: [72980] d4 -> i8042 (command)
[   73.806023] i8042: [72980] e8 -> i8042 (parameter)
[   73.808851] i8042: [72983] fa <- i8042 (interrupt, 1, 12)
[   73.808966] i8042: [72983] d4 -> i8042 (command)
[   73.809158] i8042: [72983] 00 -> i8042 (parameter)
[   73.812049] i8042: [72986] fa <- i8042 (interrupt, 1, 12)
[   73.812168] i8042: [72986] d4 -> i8042 (command)
[   73.812412] i8042: [72986] e8 -> i8042 (parameter)
[   73.815232] i8042: [72989] fa <- i8042 (interrupt, 1, 12)
[   73.815339] i8042: [72989] d4 -> i8042 (command)
[   73.815530] i8042: [72989] 00 -> i8042 (parameter)
[   73.818424] i8042: [72992] fa <- i8042 (interrupt, 1, 12)
[   73.818536] i8042: [72993] d4 -> i8042 (command)
[   73.818725] i8042: [72993] e8 -> i8042 (parameter)
[   73.821597] i8042: [72996] fa <- i8042 (interrupt, 1, 12)
[   73.821707] i8042: [72996] d4 -> i8042 (command)
[   73.821951] i8042: [72996] 01 -> i8042 (parameter)
[   73.824811] i8042: [72999] fa <- i8042 (interrupt, 1, 12)
[   73.824928] i8042: [72999] d4 -> i8042 (command)
[   73.825118] i8042: [72999] e9 -> i8042 (parameter)
[   73.828007] i8042: [73002] fa <- i8042 (interrupt, 1, 12)
[   73.829570] i8042: [73004] 5e <- i8042 (interrupt, 1, 12)
[   73.831152] i8042: [73005] 0f <- i8042 (interrupt, 1, 12)
[   73.832667] i8042: [73007] 01 <- i8042 (interrupt, 1, 12)
[   73.832784] i8042: [73007] d4 -> i8042 (command)
[   73.832975] i8042: [73007] f8 -> i8042 (parameter)
[   73.835875] i8042: [73010] fa <- i8042 (interrupt, 1, 12)
[   73.835986] i8042: [73010] d4 -> i8042 (command)
[   73.836178] i8042: [73010] 00 -> i8042 (parameter)
[   73.839129] i8042: [73013] fa <- i8042 (interrupt, 1, 12)
[   73.839231] i8042: [73013] d4 -> i8042 (command)
[   73.839421] i8042: [73013] f8 -> i8042 (parameter)
[   73.842220] i8042: [73016] fa <- i8042 (interrupt, 1, 12)
[   73.842268] i8042: [73016] d4 -> i8042 (command)
[   73.842515] i8042: [73017] 07 -> i8042 (parameter)
[   73.845378] i8042: [73019] fa <- i8042 (interrupt, 1, 12)
[   73.845437] i8042: [73019] d4 -> i8042 (command)
[   73.845683] i8042: [73020] f8 -> i8042 (parameter)
[   73.848568] i8042: [73023] fa <- i8042 (interrupt, 1, 12)
[   73.848614] i8042: [73023] d4 -> i8042 (command)
[   73.848860] i8042: [73023] 00 -> i8042 (parameter)
[   73.851799] i8042: [73026] fa <- i8042 (interrupt, 1, 12)
[   73.851886] i8042: [73026] d4 -> i8042 (command)
[   73.852130] i8042: [73026] f8 -> i8042 (parameter)
[   73.853894] ieee80211 phy0: PM: wiphy_resume+0x0/0x158 [cfg80211] returned 0 after 229607 usecs
[   73.854015] rfkill rfkill0: PM: calling rfkill_resume+0x0/0x67 @ 4573, parent: phy0
[   73.854050] rfkill rfkill0: PM: rfkill_resume+0x0/0x67 returned 0 after 11 usecs
[   73.854080] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_resume+0x0/0x41 @ 4573, parent: 0000:01:00.0
[   73.854093] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   73.854123] input input14: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854137] input input14: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854147] input input15: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854156] input input15: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854167] input input16: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854176] input input16: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854187] input input17: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854195] input input17: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854206] input input18: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854215] input input18: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854226] input input19: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854235] input input19: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854245] input input20: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: card0
[   73.854254] input input20: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854265] input input21: PM: calling input_dev_resume+0x0/0x42 @ 4573, parent: serio1
[   73.854275] input input21: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   73.854290] rfkill rfkill1: PM: calling rfkill_resume+0x0/0x67 @ 4573, parent: hci0
[   73.854302] rfkill rfkill1: PM: rfkill_resume+0x0/0x67 returned 0 after 2 usecs
[   73.854332] PM: resume of devices complete after 234.004 msecs
[   73.854823] PM: Finishing wakeup.
[   73.854836] OOM killer enabled.
[   73.854843] Restarting tasks ... 
[   73.854948] i8042: [73029] fa <- i8042 (interrupt, 1, 12)
[   73.854951] usb 1-7: USB disconnect, device number 2
[   73.855024] i8042: [73029] d4 -> i8042 (command)
[   73.855270] i8042: [73029] 01 -> i8042 (parameter)
[   73.858145] i8042: [73032] fa <- i8042 (interrupt, 1, 12)
[   73.863976] done.
[   73.870042] i8042: [73044] d4 -> i8042 (command)
[   73.870345] i8042: [73044] e6 -> i8042 (parameter)
[   73.872950] i8042: [73047] fa <- i8042 (interrupt, 1, 12)
[   73.872992] i8042: [73047] d4 -> i8042 (command)
[   73.873289] i8042: [73047] f3 -> i8042 (parameter)
[   73.876233] i8042: [73050] fa <- i8042 (interrupt, 1, 12)
[   73.876267] i8042: [73050] d4 -> i8042 (command)
[   73.876506] i8042: [73051] 64 -> i8042 (parameter)
[   73.879318] i8042: [73053] fa <- i8042 (interrupt, 1, 12)
[   73.879352] i8042: [73053] d4 -> i8042 (command)
[   73.879590] i8042: [73054] e8 -> i8042 (parameter)
[   73.882513] i8042: [73057] fa <- i8042 (interrupt, 1, 12)
[   73.882550] i8042: [73057] d4 -> i8042 (command)
[   73.882792] i8042: [73057] 03 -> i8042 (parameter)
[   73.885702] i8042: [73060] fa <- i8042 (interrupt, 1, 12)
[   73.885742] i8042: [73060] d4 -> i8042 (command)
[   73.885978] i8042: [73060] e6 -> i8042 (parameter)
[   73.888894] i8042: [73063] fa <- i8042 (interrupt, 1, 12)
[   73.888936] i8042: [73063] d4 -> i8042 (command)
[   73.889176] i8042: [73063] f4 -> i8042 (parameter)
[   73.892087] i8042: [73066] fa <- i8042 (interrupt, 1, 12)
[   73.931841] ata2: SATA link down (SStatus 4 SControl 300)
[   73.932535] ata1: SATA link down (SStatus 4 SControl 300)
[   73.980454] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[   73.992954] Resume cause unknown
[   73.992970] PM: suspend exit
[   74.094029] i8042: [73268] ed -> i8042 (kbd-data)
[   74.095366] i8042: [73269] ** <- i8042 (interrupt, 0, 1)
[   74.095438] i8042: [73270] 00 -> i8042 (kbd-data)
[   74.096713] i8042: [73271] ** <- i8042 (interrupt, 0, 1)
[   74.099405] i8042: [73273] f3 -> i8042 (kbd-data)
[   74.100692] i8042: [73275] ** <- i8042 (interrupt, 0, 1)
[   74.100732] i8042: [73275] 00 -> i8042 (kbd-data)
[   74.100915] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   74.102038] i8042: [73276] ** <- i8042 (interrupt, 0, 1)
[   74.109486] usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[   74.109503] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   74.112145] usb 1-7: GPIO lookup for consumer reset
[   74.112157] usb 1-7: using ACPI for GPIO lookup
[   74.112162] acpi device:19: GPIO: looking up reset-gpios
[   74.112166] acpi device:19: GPIO: looking up reset-gpio
[   74.112168] usb 1-7: using lookup tables for GPIO lookup
[   74.112171] usb 1-7: No GPIO consumer reset found
[   74.113605] usb 1-8: USB disconnect, device number 3
[   74.114258] Bluetooth: btintel_version_info() hci0: Bootloader revision 0.0 build 26 week 38 2015
[   74.115306] Bluetooth: btintel_read_boot_params() hci0: Device revision is 16
[   74.115318] Bluetooth: btintel_read_boot_params() hci0: Secure boot is enabled
[   74.115321] Bluetooth: btintel_read_boot_params() hci0: OTP lock is enabled
[   74.115324] Bluetooth: btintel_read_boot_params() hci0: API lock is enabled
[   74.115327] Bluetooth: btintel_read_boot_params() hci0: Debug lock is disabled
[   74.115329] Bluetooth: btintel_read_boot_params() hci0: Minimum firmware build 1 week 10 2014
[   74.124738] Bluetooth: btintel_download_fw() hci0: Found device firmware: intel/ibt-12-16.sfi
[   74.233468] usb 1-8: new high-speed USB device number 5 using xhci_hcd
[   74.351839] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   74.351950] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   74.424009] usb 1-8: New USB device found, idVendor=04f2, idProduct=b5a2, bcdDevice=10.34
[   74.424035] usb 1-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[   74.424045] usb 1-8: Product: Lenovo EasyCamera
[   74.424053] usb 1-8: Manufacturer: Chicony Electronics Co.,Ltd.
[   74.424060] usb 1-8: SerialNumber: 0001
[   74.432266] usb 1-8: GPIO lookup for consumer privacy
[   74.432284] usb 1-8: using ACPI for GPIO lookup
[   74.432292] acpi device:1a: GPIO: looking up privacy-gpios
[   74.432300] acpi device:1a: GPIO: looking up privacy-gpio
[   74.432305] usb 1-8: using lookup tables for GPIO lookup
[   74.432310] usb 1-8: No GPIO consumer privacy found
[   74.432316] usb 1-8: Found UVC 1.00 device Lenovo EasyCamera (04f2:b5a2)
[   75.562543] i8042: [74737] 54 <- i8042 (interrupt, 1, 12)
[   75.564170] i8042: [74738] 01 <- i8042 (interrupt, 1, 12)
[   75.565736] i8042: [74740] 00 <- i8042 (interrupt, 1, 12)
[   75.567302] i8042: [74741] 10 <- i8042 (interrupt, 1, 12)
[   75.568883] i8042: [74743] 00 <- i8042 (interrupt, 1, 12)
[   75.570453] i8042: [74744] 00 <- i8042 (interrupt, 1, 12)
[   75.572084] i8042: [74746] 54 <- i8042 (interrupt, 1, 12)
[   75.573672] i8042: [74748] 16 <- i8042 (interrupt, 1, 12)
[   75.575203] i8042: [74749] 76 <- i8042 (interrupt, 1, 12)
[   75.576847] i8042: [74751] 31 <- i8042 (interrupt, 1, 12)
[   75.578404] i8042: [74752] 32 <- i8042 (interrupt, 1, 12)
[   75.579986] i8042: [74754] 98 <- i8042 (interrupt, 1, 12)
[   75.581530] i8042: [74756] 54 <- i8042 (interrupt, 1, 12)
[   75.583112] i8042: [74757] 16 <- i8042 (interrupt, 1, 12)
[   75.584693] i8042: [74759] 76 <- i8042 (interrupt, 1, 12)
[   75.586274] i8042: [74760] 31 <- i8042 (interrupt, 1, 12)
[   75.587856] i8042: [74762] 32 <- i8042 (interrupt, 1, 12)
[   75.589455] i8042: [74763] 98 <- i8042 (interrupt, 1, 12)
[   75.591038] i8042: [74765] 54 <- i8042 (interrupt, 1, 12)
[   75.592625] i8042: [74767] 26 <- i8042 (interrupt, 1, 12)
[   75.594196] i8042: [74768] 76 <- i8042 (interrupt, 1, 12)
[   75.595795] i8042: [74770] 31 <- i8042 (interrupt, 1, 12)
[   75.597360] i8042: [74771] 02 <- i8042 (interrupt, 1, 12)
[   75.598947] i8042: [74773] 98 <- i8042 (interrupt, 1, 12)
[   75.600517] i8042: [74775] 54 <- i8042 (interrupt, 1, 12)
[   75.602103] i8042: [74776] 26 <- i8042 (interrupt, 1, 12)
[   75.603686] i8042: [74778] 76 <- i8042 (interrupt, 1, 12)
[   75.605269] i8042: [74779] 31 <- i8042 (interrupt, 1, 12)
[   75.606934] i8042: [74781] 22 <- i8042 (interrupt, 1, 12)
[   75.608458] i8042: [74783] 98 <- i8042 (interrupt, 1, 12)
[   75.610033] i8042: [74784] 54 <- i8042 (interrupt, 1, 12)
[   75.611668] i8042: [74786] 26 <- i8042 (interrupt, 1, 12)
[   75.613182] i8042: [74787] 76 <- i8042 (interrupt, 1, 12)
[   75.614793] i8042: [74789] 31 <- i8042 (interrupt, 1, 12)
[   75.616364] i8042: [74790] 42 <- i8042 (interrupt, 1, 12)
[   75.617927] i8042: [74792] 98 <- i8042 (interrupt, 1, 12)
[   75.619535] i8042: [74794] 54 <- i8042 (interrupt, 1, 12)
[   75.621099] i8042: [74795] 26 <- i8042 (interrupt, 1, 12)
[   75.622747] i8042: [74797] 6b <- i8042 (interrupt, 1, 12)
[   75.624285] i8042: [74798] 31 <- i8042 (interrupt, 1, 12)
[   75.625934] i8042: [74800] 52 <- i8042 (interrupt, 1, 12)
[   75.627517] i8042: [74802] 9d <- i8042 (interrupt, 1, 12)
[   75.629069] i8042: [74803] 54 <- i8042 (interrupt, 1, 12)
[   75.630593] i8042: [74805] 26 <- i8042 (interrupt, 1, 12)
[   75.632222] i8042: [74806] 66 <- i8042 (interrupt, 1, 12)
[   75.633775] i8042: [74808] 31 <- i8042 (interrupt, 1, 12)
[   75.635338] i8042: [74809] 52 <- i8042 (interrupt, 1, 12)
[   75.636921] i8042: [74811] a1 <- i8042 (interrupt, 1, 12)
[   75.638503] i8042: [74813] 54 <- i8042 (interrupt, 1, 12)
[   75.640157] i8042: [74814] 26 <- i8042 (interrupt, 1, 12)
[   75.641681] i8042: [74816] 61 <- i8042 (interrupt, 1, 12)
[   75.643248] i8042: [74817] 31 <- i8042 (interrupt, 1, 12)
[   75.644903] i8042: [74819] 52 <- i8042 (interrupt, 1, 12)
[   75.646409] i8042: [74820] a5 <- i8042 (interrupt, 1, 12)
[   75.648034] i8042: [74822] 54 <- i8042 (interrupt, 1, 12)
[   75.649612] i8042: [74824] 26 <- i8042 (interrupt, 1, 12)
[   75.651172] i8042: [74825] 5d <- i8042 (interrupt, 1, 12)
[   75.652745] i8042: [74827] 31 <- i8042 (interrupt, 1, 12)
[   75.654333] i8042: [74828] 42 <- i8042 (interrupt, 1, 12)
[   75.655992] i8042: [74830] a6 <- i8042 (interrupt, 1, 12)
[   75.657577] i8042: [74832] 54 <- i8042 (interrupt, 1, 12)
[   75.659079] i8042: [74833] 26 <- i8042 (interrupt, 1, 12)
[   75.660666] i8042: [74835] 59 <- i8042 (interrupt, 1, 12)
[   75.662293] i8042: [74836] 31 <- i8042 (interrupt, 1, 12)
[   75.663817] i8042: [74838] 42 <- i8042 (interrupt, 1, 12)
[   75.665401] i8042: [74839] aa <- i8042 (interrupt, 1, 12)
[   75.666986] i8042: [74841] 44 <- i8042 (interrupt, 1, 12)
[   75.668586] i8042: [74843] 26 <- i8042 (interrupt, 1, 12)
[   75.670187] i8042: [74844] 54 <- i8042 (interrupt, 1, 12)
[   75.671767] i8042: [74846] 31 <- i8042 (interrupt, 1, 12)
[   75.673311] i8042: [74847] 42 <- i8042 (interrupt, 1, 12)
[   75.674971] i8042: [74849] af <- i8042 (interrupt, 1, 12)
[   75.676479] i8042: [74851] 44 <- i8042 (interrupt, 1, 12)
[   75.678078] i8042: [74852] 26 <- i8042 (interrupt, 1, 12)
[   75.679640] i8042: [74854] 4c <- i8042 (interrupt, 1, 12)
[   75.681274] i8042: [74855] 31 <- i8042 (interrupt, 1, 12)
[   75.682877] i8042: [74857] 42 <- i8042 (interrupt, 1, 12)
[   75.684387] i8042: [74858] b3 <- i8042 (interrupt, 1, 12)
[   75.685986] i8042: [74860] 44 <- i8042 (interrupt, 1, 12)
[   75.687560] i8042: [74862] 26 <- i8042 (interrupt, 1, 12)
[   75.689209] i8042: [74863] 42 <- i8042 (interrupt, 1, 12)
[   75.690801] i8042: [74865] 31 <- i8042 (interrupt, 1, 12)
[   75.692303] i8042: [74866] 42 <- i8042 (interrupt, 1, 12)
[   75.693890] i8042: [74868] b6 <- i8042 (interrupt, 1, 12)
[   75.695467] i8042: [74870] 54 <- i8042 (interrupt, 1, 12)
[   75.697049] i8042: [74871] 26 <- i8042 (interrupt, 1, 12)
[   75.698634] i8042: [74873] 36 <- i8042 (interrupt, 1, 12)
[   75.700257] i8042: [74874] 31 <- i8042 (interrupt, 1, 12)
[   75.701810] i8042: [74876] 42 <- i8042 (interrupt, 1, 12)
[   75.703380] i8042: [74877] b6 <- i8042 (interrupt, 1, 12)
[   75.704971] i8042: [74879] 54 <- i8042 (interrupt, 1, 12)
[   75.706544] i8042: [74881] 26 <- i8042 (interrupt, 1, 12)
[   75.708202] i8042: [74882] 29 <- i8042 (interrupt, 1, 12)
[   75.709713] i8042: [74884] 31 <- i8042 (interrupt, 1, 12)
[   75.711388] i8042: [74885] 22 <- i8042 (interrupt, 1, 12)
[   75.712923] i8042: [74887] b6 <- i8042 (interrupt, 1, 12)
[   75.714458] i8042: [74889] 54 <- i8042 (interrupt, 1, 12)
[   75.716076] i8042: [74890] 26 <- i8042 (interrupt, 1, 12)
[   75.717620] i8042: [74892] 19 <- i8042 (interrupt, 1, 12)
[   75.719212] i8042: [74893] 31 <- i8042 (interrupt, 1, 12)
[   75.720786] i8042: [74895] 22 <- i8042 (interrupt, 1, 12)
[   75.722387] i8042: [74896] b4 <- i8042 (interrupt, 1, 12)
[   75.723995] i8042: [74898] 54 <- i8042 (interrupt, 1, 12)
[   75.725701] i8042: [74900] 26 <- i8042 (interrupt, 1, 12)
[   75.727121] i8042: [74901] 08 <- i8042 (interrupt, 1, 12)
[   75.728770] i8042: [74903] 31 <- i8042 (interrupt, 1, 12)
[   75.730283] i8042: [74904] 22 <- i8042 (interrupt, 1, 12)
[   75.731901] i8042: [74906] b2 <- i8042 (interrupt, 1, 12)
[   75.733464] i8042: [74908] 54 <- i8042 (interrupt, 1, 12)
[   75.735033] i8042: [74909] 25 <- i8042 (interrupt, 1, 12)
[   75.736732] i8042: [74911] f7 <- i8042 (interrupt, 1, 12)
[   75.738191] i8042: [74912] 31 <- i8042 (interrupt, 1, 12)
[   75.739892] i8042: [74914] 22 <- i8042 (interrupt, 1, 12)
[   75.741401] i8042: [74915] b0 <- i8042 (interrupt, 1, 12)
[   75.742944] i8042: [74917] 54 <- i8042 (interrupt, 1, 12)
[   75.744606] i8042: [74919] 25 <- i8042 (interrupt, 1, 12)
[   75.746215] i8042: [74920] e7 <- i8042 (interrupt, 1, 12)
[   75.747763] i8042: [74922] 31 <- i8042 (interrupt, 1, 12)
[   75.749313] i8042: [74923] 22 <- i8042 (interrupt, 1, 12)
[   75.750919] i8042: [74925] ad <- i8042 (interrupt, 1, 12)
[   75.752458] i8042: [74927] 44 <- i8042 (interrupt, 1, 12)
[   75.754127] i8042: [74928] 25 <- i8042 (interrupt, 1, 12)
[   75.755692] i8042: [74930] d1 <- i8042 (interrupt, 1, 12)
[   75.757316] i8042: [74931] 31 <- i8042 (interrupt, 1, 12)
[   75.758772] i8042: [74933] 02 <- i8042 (interrupt, 1, 12)
[   75.760397] i8042: [74934] a9 <- i8042 (interrupt, 1, 12)
[   75.761976] i8042: [74936] 54 <- i8042 (interrupt, 1, 12)
[   75.763521] i8042: [74938] 25 <- i8042 (interrupt, 1, 12)
[   75.765101] i8042: [74939] be <- i8042 (interrupt, 1, 12)
[   75.766714] i8042: [74941] 31 <- i8042 (interrupt, 1, 12)
[   75.768263] i8042: [74942] 02 <- i8042 (interrupt, 1, 12)
[   75.769855] i8042: [74944] a7 <- i8042 (interrupt, 1, 12)
[   75.771452] i8042: [74946] 54 <- i8042 (interrupt, 1, 12)
[   75.773028] i8042: [74947] 25 <- i8042 (interrupt, 1, 12)
[   75.774725] i8042: [74949] af <- i8042 (interrupt, 1, 12)
[   75.776180] i8042: [74950] 31 <- i8042 (interrupt, 1, 12)
[   75.777831] i8042: [74952] 02 <- i8042 (interrupt, 1, 12)
[   75.779414] i8042: [74953] a4 <- i8042 (interrupt, 1, 12)
[   75.780929] i8042: [74955] 54 <- i8042 (interrupt, 1, 12)
[   75.782543] i8042: [74957] 25 <- i8042 (interrupt, 1, 12)
[   75.784104] i8042: [74958] a1 <- i8042 (interrupt, 1, 12)
[   75.785680] i8042: [74960] 31 <- i8042 (interrupt, 1, 12)
[   75.787273] i8042: [74961] 02 <- i8042 (interrupt, 1, 12)
[   75.788916] i8042: [74963] a2 <- i8042 (interrupt, 1, 12)
[   75.790425] i8042: [74965] 54 <- i8042 (interrupt, 1, 12)
[   75.792026] i8042: [74966] 25 <- i8042 (interrupt, 1, 12)
[   75.793633] i8042: [74968] 90 <- i8042 (interrupt, 1, 12)
[   75.795197] i8042: [74969] 31 <- i8042 (interrupt, 1, 12)
[   75.796756] i8042: [74971] 22 <- i8042 (interrupt, 1, 12)
[   75.798339] i8042: [74972] a0 <- i8042 (interrupt, 1, 12)
[   75.799926] i8042: [74974] 54 <- i8042 (interrupt, 1, 12)
[   75.801504] i8042: [74976] 25 <- i8042 (interrupt, 1, 12)
[   75.803081] i8042: [74977] 7d <- i8042 (interrupt, 1, 12)
[   75.804663] i8042: [74979] 31 <- i8042 (interrupt, 1, 12)
[   75.806309] i8042: [74980] 22 <- i8042 (interrupt, 1, 12)
[   75.807933] i8042: [74982] 9e <- i8042 (interrupt, 1, 12)
[   75.809421] i8042: [74983] 54 <- i8042 (interrupt, 1, 12)
[   75.811032] i8042: [74985] 25 <- i8042 (interrupt, 1, 12)
[   75.812658] i8042: [74987] 69 <- i8042 (interrupt, 1, 12)
[   75.814162] i8042: [74988] 31 <- i8042 (interrupt, 1, 12)
[   75.815776] i8042: [74990] 22 <- i8042 (interrupt, 1, 12)
[   75.817333] i8042: [74991] 9b <- i8042 (interrupt, 1, 12)
[   75.818902] i8042: [74993] 54 <- i8042 (interrupt, 1, 12)
[   75.820490] i8042: [74995] 25 <- i8042 (interrupt, 1, 12)
[   75.822088] i8042: [74996] 55 <- i8042 (interrupt, 1, 12)
[   75.823723] i8042: [74998] 31 <- i8042 (interrupt, 1, 12)
[   75.825230] i8042: [74999] 22 <- i8042 (interrupt, 1, 12)
[   75.826850] i8042: [75001] 99 <- i8042 (interrupt, 1, 12)
[   75.828395] i8042: [75002] 54 <- i8042 (interrupt, 1, 12)
[   75.830028] i8042: [75004] 25 <- i8042 (interrupt, 1, 12)
[   75.831597] i8042: [75006] 40 <- i8042 (interrupt, 1, 12)
[   75.833143] i8042: [75007] 31 <- i8042 (interrupt, 1, 12)
[   75.834724] i8042: [75009] 22 <- i8042 (interrupt, 1, 12)
[   75.836308] i8042: [75010] 96 <- i8042 (interrupt, 1, 12)
[   75.837985] i8042: [75012] 54 <- i8042 (interrupt, 1, 12)
[   75.839534] i8042: [75014] 25 <- i8042 (interrupt, 1, 12)
[   75.841114] i8042: [75015] 2d <- i8042 (interrupt, 1, 12)
[   75.842705] i8042: [75017] 31 <- i8042 (interrupt, 1, 12)
[   75.844250] i8042: [75018] 22 <- i8042 (interrupt, 1, 12)
[   75.845818] i8042: [75020] 94 <- i8042 (interrupt, 1, 12)
[   75.847385] i8042: [75021] 54 <- i8042 (interrupt, 1, 12)
[   75.848962] i8042: [75023] 25 <- i8042 (interrupt, 1, 12)
[   75.850559] i8042: [75025] 1b <- i8042 (interrupt, 1, 12)
[   75.852129] i8042: [75026] 31 <- i8042 (interrupt, 1, 12)
[   75.853746] i8042: [75028] 22 <- i8042 (interrupt, 1, 12)
[   75.855371] i8042: [75029] 92 <- i8042 (interrupt, 1, 12)
[   75.857041] i8042: [75031] 54 <- i8042 (interrupt, 1, 12)
[   75.858478] i8042: [75033] 25 <- i8042 (interrupt, 1, 12)
[   75.860067] i8042: [75034] 0b <- i8042 (interrupt, 1, 12)
[   75.861629] i8042: [75036] 31 <- i8042 (interrupt, 1, 12)
[   75.863219] i8042: [75037] 22 <- i8042 (interrupt, 1, 12)
[   75.864810] i8042: [75039] 93 <- i8042 (interrupt, 1, 12)
[   75.866383] i8042: [75040] 54 <- i8042 (interrupt, 1, 12)
[   75.868037] i8042: [75042] 24 <- i8042 (interrupt, 1, 12)
[   75.869546] i8042: [75044] fd <- i8042 (interrupt, 1, 12)
[   75.871130] i8042: [75045] 31 <- i8042 (interrupt, 1, 12)
[   75.872819] i8042: [75047] 22 <- i8042 (interrupt, 1, 12)
[   75.874332] i8042: [75048] 92 <- i8042 (interrupt, 1, 12)
[   75.875875] i8042: [75050] 54 <- i8042 (interrupt, 1, 12)
[   75.877530] i8042: [75052] 24 <- i8042 (interrupt, 1, 12)
[   75.879042] i8042: [75053] eb <- i8042 (interrupt, 1, 12)
[   75.880631] i8042: [75055] 31 <- i8042 (interrupt, 1, 12)
[   75.882206] i8042: [75056] 22 <- i8042 (interrupt, 1, 12)
[   75.883825] i8042: [75058] 91 <- i8042 (interrupt, 1, 12)
[   75.885383] i8042: [75059] 54 <- i8042 (interrupt, 1, 12)
[   75.887002] i8042: [75061] 24 <- i8042 (interrupt, 1, 12)
[   75.888588] i8042: [75063] da <- i8042 (interrupt, 1, 12)
[   75.890212] i8042: [75064] 31 <- i8042 (interrupt, 1, 12)
[   75.891703] i8042: [75066] 22 <- i8042 (interrupt, 1, 12)
[   75.893342] i8042: [75067] 8f <- i8042 (interrupt, 1, 12)
[   75.894873] i8042: [75069] 54 <- i8042 (interrupt, 1, 12)
[   75.896468] i8042: [75071] 24 <- i8042 (interrupt, 1, 12)
[   75.898046] i8042: [75072] c8 <- i8042 (interrupt, 1, 12)
[   75.899621] i8042: [75074] 31 <- i8042 (interrupt, 1, 12)
[   75.901254] i8042: [75075] 22 <- i8042 (interrupt, 1, 12)
[   75.902825] i8042: [75077] 8c <- i8042 (interrupt, 1, 12)
[   75.904365] i8042: [75078] 54 <- i8042 (interrupt, 1, 12)
[   75.905957] i8042: [75080] 24 <- i8042 (interrupt, 1, 12)
[   75.907577] i8042: [75082] b9 <- i8042 (interrupt, 1, 12)
[   75.909114] i8042: [75083] 31 <- i8042 (interrupt, 1, 12)
[   75.910791] i8042: [75085] 42 <- i8042 (interrupt, 1, 12)
[   75.912371] i8042: [75086] 88 <- i8042 (interrupt, 1, 12)
[   75.913903] i8042: [75088] 54 <- i8042 (interrupt, 1, 12)
[   75.915517] i8042: [75090] 24 <- i8042 (interrupt, 1, 12)
[   75.917055] i8042: [75091] aa <- i8042 (interrupt, 1, 12)
[   75.918612] i8042: [75093] 31 <- i8042 (interrupt, 1, 12)
[   75.920196] i8042: [75094] 42 <- i8042 (interrupt, 1, 12)
[   75.921775] i8042: [75096] 85 <- i8042 (interrupt, 1, 12)
[   75.923365] i8042: [75097] 54 <- i8042 (interrupt, 1, 12)
[   75.924984] i8042: [75099] 24 <- i8042 (interrupt, 1, 12)
[   75.926579] i8042: [75101] 9b <- i8042 (interrupt, 1, 12)
[   75.928146] i8042: [75102] 31 <- i8042 (interrupt, 1, 12)
[   75.929693] i8042: [75104] 42 <- i8042 (interrupt, 1, 12)
[   75.931275] i8042: [75105] 80 <- i8042 (interrupt, 1, 12)
[   75.932860] i8042: [75107] 54 <- i8042 (interrupt, 1, 12)
[   75.934455] i8042: [75109] 24 <- i8042 (interrupt, 1, 12)
[   75.936027] i8042: [75110] 8d <- i8042 (interrupt, 1, 12)
[   75.937618] i8042: [75112] 31 <- i8042 (interrupt, 1, 12)
[   75.939189] i8042: [75113] 42 <- i8042 (interrupt, 1, 12)
[   75.940878] i8042: [75115] 7b <- i8042 (interrupt, 1, 12)
[   75.942366] i8042: [75116] 54 <- i8042 (interrupt, 1, 12)
[   75.944013] i8042: [75118] 24 <- i8042 (interrupt, 1, 12)
[   75.945566] i8042: [75120] 7e <- i8042 (interrupt, 1, 12)
[   75.947108] i8042: [75121] 31 <- i8042 (interrupt, 1, 12)
[   75.948687] i8042: [75123] 42 <- i8042 (interrupt, 1, 12)
[   75.950311] i8042: [75124] 78 <- i8042 (interrupt, 1, 12)
[   75.951929] i8042: [75126] 54 <- i8042 (interrupt, 1, 12)
[   75.953450] i8042: [75128] 24 <- i8042 (interrupt, 1, 12)
[   75.955023] i8042: [75129] 70 <- i8042 (interrupt, 1, 12)
[   75.956612] i8042: [75131] 31 <- i8042 (interrupt, 1, 12)
[   75.958182] i8042: [75132] 42 <- i8042 (interrupt, 1, 12)
[   75.959762] i8042: [75134] 75 <- i8042 (interrupt, 1, 12)
[   75.961347] i8042: [75135] 54 <- i8042 (interrupt, 1, 12)
[   75.962977] i8042: [75137] 24 <- i8042 (interrupt, 1, 12)
[   75.964517] i8042: [75139] 62 <- i8042 (interrupt, 1, 12)
[   75.966092] i8042: [75140] 31 <- i8042 (interrupt, 1, 12)
[   75.967675] i8042: [75142] 42 <- i8042 (interrupt, 1, 12)
[   75.969271] i8042: [75143] 72 <- i8042 (interrupt, 1, 12)
[   75.970403] Bluetooth: btintel_download_wait() hci0: Waiting for firmware download to complete
[   75.970889] i8042: [75145] 54 <- i8042 (interrupt, 1, 12)
[   75.971393] Bluetooth: btintel_download_wait() hci0: Firmware loaded in 1803353 usecs
[   75.971716] Bluetooth: btintel_boot_wait() hci0: Waiting for device to boot
[   75.972477] i8042: [75147] 24 <- i8042 (interrupt, 1, 12)
[   75.974074] i8042: [75148] 53 <- i8042 (interrupt, 1, 12)
[   75.975587] i8042: [75150] 31 <- i8042 (interrupt, 1, 12)
[   75.977167] i8042: [75151] 42 <- i8042 (interrupt, 1, 12)
[   75.978798] i8042: [75153] 6f <- i8042 (interrupt, 1, 12)
[   75.980885] i8042: [75155] 54 <- i8042 (interrupt, 1, 12)
[   75.982430] i8042: [75156] 24 <- i8042 (interrupt, 1, 12)
[   75.984051] i8042: [75158] 45 <- i8042 (interrupt, 1, 12)
[   75.984376] Bluetooth: btintel_boot_wait() hci0: Device booted in 12507 usecs
[   75.984386] Bluetooth: msft_skb_pull() hci0: Malformed MSFT vendor event: 0x02
[   75.985641] i8042: [75160] 31 <- i8042 (interrupt, 1, 12)
[   75.987220] i8042: [75161] 22 <- i8042 (interrupt, 1, 12)
[   75.988798] i8042: [75163] 6b <- i8042 (interrupt, 1, 12)
[   75.990419] i8042: [75164] 54 <- i8042 (interrupt, 1, 12)
[   75.991959] i8042: [75166] 24 <- i8042 (interrupt, 1, 12)
[   75.993533] i8042: [75168] 38 <- i8042 (interrupt, 1, 12)
[   75.995095] i8042: [75169] 31 <- i8042 (interrupt, 1, 12)
[   75.996708] i8042: [75171] 22 <- i8042 (interrupt, 1, 12)
[   75.998252] i8042: [75172] 68 <- i8042 (interrupt, 1, 12)
[   75.999835] i8042: [75174] 54 <- i8042 (interrupt, 1, 12)
[   76.001420] i8042: [75175] 24 <- i8042 (interrupt, 1, 12)
[   76.003046] i8042: [75177] 2c <- i8042 (interrupt, 1, 12)
[   76.004623] i8042: [75179] 31 <- i8042 (interrupt, 1, 12)
[   76.006216] i8042: [75180] 22 <- i8042 (interrupt, 1, 12)
[   76.007031] Bluetooth: btintel_load_ddc_config() hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[   76.007748] i8042: [75182] 67 <- i8042 (interrupt, 1, 12)
[   76.009871] i8042: [75184] 54 <- i8042 (interrupt, 1, 12)
[   76.010401] Bluetooth: btintel_load_ddc_config() hci0: Applying Intel DDC parameters completed
[   76.011425] i8042: [75186] 24 <- i8042 (interrupt, 1, 12)
[   76.011505] Bluetooth: btintel_version_info() hci0: Firmware revision 0.1 build 197 week 12 2021
[   76.013001] i8042: [75187] 1e <- i8042 (interrupt, 1, 12)
[   76.013381] Bluetooth: btintel_read_debug_features() hci0: Reading supported features failed (-16)
[   76.013411] Bluetooth: btintel_register_devcoredump_support() hci0: Error reading debug features
[   76.014589] i8042: [75189] 31 <- i8042 (interrupt, 1, 12)
[   76.016169] i8042: [75190] 22 <- i8042 (interrupt, 1, 12)
[   76.017787] i8042: [75192] 66 <- i8042 (interrupt, 1, 12)
[   76.019369] i8042: [75193] 54 <- i8042 (interrupt, 1, 12)
[   76.020930] i8042: [75195] 24 <- i8042 (interrupt, 1, 12)
[   76.022542] i8042: [75197] 0f <- i8042 (interrupt, 1, 12)
[   76.024192] i8042: [75198] 31 <- i8042 (interrupt, 1, 12)
[   76.025660] i8042: [75200] 22 <- i8042 (interrupt, 1, 12)
[   76.027309] i8042: [75201] 65 <- i8042 (interrupt, 1, 12)
[   76.029346] i8042: [75203] 54 <- i8042 (interrupt, 1, 12)
[   76.030960] i8042: [75205] 24 <- i8042 (interrupt, 1, 12)
[   76.032498] i8042: [75207] 02 <- i8042 (interrupt, 1, 12)
[   76.034146] i8042: [75208] 31 <- i8042 (interrupt, 1, 12)
[   76.035741] i8042: [75210] 22 <- i8042 (interrupt, 1, 12)
[   76.037310] i8042: [75211] 64 <- i8042 (interrupt, 1, 12)
[   76.038824] i8042: [75213] 54 <- i8042 (interrupt, 1, 12)
[   76.040406] i8042: [75214] 23 <- i8042 (interrupt, 1, 12)
[   76.042062] i8042: [75216] f4 <- i8042 (interrupt, 1, 12)
[   76.043611] i8042: [75218] 31 <- i8042 (interrupt, 1, 12)
[   76.045157] i8042: [75219] 22 <- i8042 (interrupt, 1, 12)
[   76.046775] i8042: [75221] 63 <- i8042 (interrupt, 1, 12)
[   76.048319] i8042: [75222] 54 <- i8042 (interrupt, 1, 12)
[   76.049902] i8042: [75224] 23 <- i8042 (interrupt, 1, 12)
[   76.051484] i8042: [75226] e6 <- i8042 (interrupt, 1, 12)
[   76.053111] i8042: [75227] 31 <- i8042 (interrupt, 1, 12)
[   76.054652] i8042: [75229] 22 <- i8042 (interrupt, 1, 12)
[   76.056287] i8042: [75230] 63 <- i8042 (interrupt, 1, 12)
[   76.058348] i8042: [75232] 54 <- i8042 (interrupt, 1, 12)
[   76.059906] i8042: [75234] 23 <- i8042 (interrupt, 1, 12)
[   76.061495] i8042: [75236] d8 <- i8042 (interrupt, 1, 12)
[   76.063160] i8042: [75237] 31 <- i8042 (interrupt, 1, 12)
[   76.064647] i8042: [75239] 22 <- i8042 (interrupt, 1, 12)
[   76.066231] i8042: [75240] 63 <- i8042 (interrupt, 1, 12)
[   76.067813] i8042: [75242] 54 <- i8042 (interrupt, 1, 12)
[   76.069397] i8042: [75243] 23 <- i8042 (interrupt, 1, 12)
[   76.070973] i8042: [75245] c9 <- i8042 (interrupt, 1, 12)
[   76.072557] i8042: [75247] 31 <- i8042 (interrupt, 1, 12)
[   76.074189] i8042: [75248] 22 <- i8042 (interrupt, 1, 12)
[   76.075803] i8042: [75250] 65 <- i8042 (interrupt, 1, 12)
[   76.077809] i8042: [75252] 54 <- i8042 (interrupt, 1, 12)
[   76.079390] i8042: [75253] 23 <- i8042 (interrupt, 1, 12)
[   76.080981] i8042: [75255] b9 <- i8042 (interrupt, 1, 12)
[   76.082606] i8042: [75257] 31 <- i8042 (interrupt, 1, 12)
[   76.084208] i8042: [75258] 22 <- i8042 (interrupt, 1, 12)
[   76.085758] i8042: [75260] 69 <- i8042 (interrupt, 1, 12)
[   76.087374] i8042: [75261] 54 <- i8042 (interrupt, 1, 12)
[   76.088958] i8042: [75263] 23 <- i8042 (interrupt, 1, 12)
[   76.090525] i8042: [75265] a9 <- i8042 (interrupt, 1, 12)
[   76.092060] i8042: [75266] 31 <- i8042 (interrupt, 1, 12)
[   76.093703] i8042: [75268] 22 <- i8042 (interrupt, 1, 12)
[   76.095286] i8042: [75269] 6e <- i8042 (interrupt, 1, 12)
[   76.096810] i8042: [75271] 54 <- i8042 (interrupt, 1, 12)
[   76.098392] i8042: [75272] 23 <- i8042 (interrupt, 1, 12)
[   76.099975] i8042: [75274] 9a <- i8042 (interrupt, 1, 12)
[   76.101615] i8042: [75276] 31 <- i8042 (interrupt, 1, 12)
[   76.103145] i8042: [75277] 42 <- i8042 (interrupt, 1, 12)
[   76.104789] i8042: [75279] 73 <- i8042 (interrupt, 1, 12)
[   76.106807] i8042: [75281] 54 <- i8042 (interrupt, 1, 12)
[   76.108391] i8042: [75282] 23 <- i8042 (interrupt, 1, 12)
[   76.110020] i8042: [75284] 8d <- i8042 (interrupt, 1, 12)
[   76.111610] i8042: [75286] 31 <- i8042 (interrupt, 1, 12)
[   76.113185] i8042: [75287] 42 <- i8042 (interrupt, 1, 12)
[   76.114743] i8042: [75289] 79 <- i8042 (interrupt, 1, 12)
[   76.116380] i8042: [75290] 54 <- i8042 (interrupt, 1, 12)
[   76.117963] i8042: [75292] 23 <- i8042 (interrupt, 1, 12)
[   76.119523] i8042: [75294] 82 <- i8042 (interrupt, 1, 12)
[   76.121140] i8042: [75295] 31 <- i8042 (interrupt, 1, 12)
[   76.122642] i8042: [75297] 42 <- i8042 (interrupt, 1, 12)
[   76.124267] i8042: [75298] 82 <- i8042 (interrupt, 1, 12)
[   76.126314] i8042: [75300] 54 <- i8042 (interrupt, 1, 12)
[   76.127897] i8042: [75302] 23 <- i8042 (interrupt, 1, 12)
[   76.129489] i8042: [75304] 78 <- i8042 (interrupt, 1, 12)
[   76.131074] i8042: [75305] 31 <- i8042 (interrupt, 1, 12)
[   76.132656] i8042: [75307] 42 <- i8042 (interrupt, 1, 12)
[   76.134236] i8042: [75308] 89 <- i8042 (interrupt, 1, 12)
[   76.135811] i8042: [75310] 54 <- i8042 (interrupt, 1, 12)
[   76.137395] i8042: [75311] 23 <- i8042 (interrupt, 1, 12)
[   76.138986] i8042: [75313] 70 <- i8042 (interrupt, 1, 12)
[   76.140573] i8042: [75315] 31 <- i8042 (interrupt, 1, 12)
[   76.142209] i8042: [75316] 42 <- i8042 (interrupt, 1, 12)
[   76.143791] i8042: [75318] 91 <- i8042 (interrupt, 1, 12)
[   76.145372] i8042: [75319] 44 <- i8042 (interrupt, 1, 12)
[   76.146968] i8042: [75321] 23 <- i8042 (interrupt, 1, 12)
[   76.148523] i8042: [75323] 6b <- i8042 (interrupt, 1, 12)
[   76.150106] i8042: [75324] 31 <- i8042 (interrupt, 1, 12)
[   76.151689] i8042: [75326] 22 <- i8042 (interrupt, 1, 12)
[   76.153375] i8042: [75327] 98 <- i8042 (interrupt, 1, 12)
[   76.155454] i8042: [75329] 54 <- i8042 (interrupt, 1, 12)
[   76.156909] i8042: [75331] 23 <- i8042 (interrupt, 1, 12)
[   76.158479] i8042: [75333] 67 <- i8042 (interrupt, 1, 12)
[   76.160134] i8042: [75334] 31 <- i8042 (interrupt, 1, 12)
[   76.161644] i8042: [75336] 22 <- i8042 (interrupt, 1, 12)
[   76.163227] i8042: [75337] a0 <- i8042 (interrupt, 1, 12)
[   76.164888] i8042: [75339] 54 <- i8042 (interrupt, 1, 12)
[   76.166394] i8042: [75340] 23 <- i8042 (interrupt, 1, 12)
[   76.167976] i8042: [75342] 65 <- i8042 (interrupt, 1, 12)
[   76.169567] i8042: [75344] 31 <- i8042 (interrupt, 1, 12)
[   76.171264] i8042: [75345] 22 <- i8042 (interrupt, 1, 12)
[   76.172820] i8042: [75347] a9 <- i8042 (interrupt, 1, 12)
[   76.174944] i8042: [75349] 54 <- i8042 (interrupt, 1, 12)
[   76.176396] i8042: [75350] 23 <- i8042 (interrupt, 1, 12)
[   76.178018] i8042: [75352] 68 <- i8042 (interrupt, 1, 12)
[   76.179563] i8042: [75354] 31 <- i8042 (interrupt, 1, 12)
[   76.181183] i8042: [75355] 22 <- i8042 (interrupt, 1, 12)
[   76.182725] i8042: [75357] b5 <- i8042 (interrupt, 1, 12)
[   76.184304] i8042: [75358] 54 <- i8042 (interrupt, 1, 12)
[   76.185888] i8042: [75360] 23 <- i8042 (interrupt, 1, 12)
[   76.187537] i8042: [75362] 6e <- i8042 (interrupt, 1, 12)
[   76.189100] i8042: [75363] 31 <- i8042 (interrupt, 1, 12)
[   76.190682] i8042: [75365] 22 <- i8042 (interrupt, 1, 12)
[   76.192215] i8042: [75366] c2 <- i8042 (interrupt, 1, 12)
[   76.194374] i8042: [75368] 54 <- i8042 (interrupt, 1, 12)
[   76.195888] i8042: [75370] 23 <- i8042 (interrupt, 1, 12)
[   76.197472] i8042: [75372] 79 <- i8042 (interrupt, 1, 12)
[   76.199054] i8042: [75373] 31 <- i8042 (interrupt, 1, 12)
[   76.200697] i8042: [75375] 22 <- i8042 (interrupt, 1, 12)
[   76.202221] i8042: [75376] d4 <- i8042 (interrupt, 1, 12)
[   76.203837] i8042: [75378] 54 <- i8042 (interrupt, 1, 12)
[   76.205422] i8042: [75380] 23 <- i8042 (interrupt, 1, 12)
[   76.207041] i8042: [75381] 8a <- i8042 (interrupt, 1, 12)
[   76.208544] i8042: [75383] 31 <- i8042 (interrupt, 1, 12)
[   76.210196] i8042: [75384] 22 <- i8042 (interrupt, 1, 12)
[   76.211734] i8042: [75386] e7 <- i8042 (interrupt, 1, 12)
[   76.213360] i8042: [75387] 44 <- i8042 (interrupt, 1, 12)
[   76.214925] i8042: [75389] 23 <- i8042 (interrupt, 1, 12)
[   76.216464] i8042: [75391] 9e <- i8042 (interrupt, 1, 12)
[   76.218089] i8042: [75392] 31 <- i8042 (interrupt, 1, 12)
[   76.219668] i8042: [75394] 22 <- i8042 (interrupt, 1, 12)
[   76.221252] i8042: [75395] fc <- i8042 (interrupt, 1, 12)
[   76.223369] i8042: [75397] 54 <- i8042 (interrupt, 1, 12)
[   76.224954] i8042: [75399] 23 <- i8042 (interrupt, 1, 12)
[   76.226462] i8042: [75401] b6 <- i8042 (interrupt, 1, 12)
[   76.228060] i8042: [75402] 31 <- i8042 (interrupt, 1, 12)
[   76.229630] i8042: [75404] 23 <- i8042 (interrupt, 1, 12)
[   76.231248] i8042: [75405] 13 <- i8042 (interrupt, 1, 12)
[   76.232792] i8042: [75407] 54 <- i8042 (interrupt, 1, 12)
[   76.234372] i8042: [75408] 23 <- i8042 (interrupt, 1, 12)
[   76.235957] i8042: [75410] d2 <- i8042 (interrupt, 1, 12)
[   76.237536] i8042: [75412] 31 <- i8042 (interrupt, 1, 12)
[   76.239197] i8042: [75413] 23 <- i8042 (interrupt, 1, 12)
[   76.240780] i8042: [75415] 27 <- i8042 (interrupt, 1, 12)
[   76.242804] i8042: [75417] 54 <- i8042 (interrupt, 1, 12)
[   76.244478] i8042: [75419] 23 <- i8042 (interrupt, 1, 12)
[   76.246031] i8042: [75420] f1 <- i8042 (interrupt, 1, 12)
[   76.247534] i8042: [75422] 31 <- i8042 (interrupt, 1, 12)
[   76.249119] i8042: [75423] 23 <- i8042 (interrupt, 1, 12)
[   76.250695] i8042: [75425] 37 <- i8042 (interrupt, 1, 12)
[   76.252282] i8042: [75426] 54 <- i8042 (interrupt, 1, 12)
[   76.253858] i8042: [75428] 24 <- i8042 (interrupt, 1, 12)
[   76.255527] i8042: [75430] 11 <- i8042 (interrupt, 1, 12)
[   76.257075] i8042: [75431] 31 <- i8042 (interrupt, 1, 12)
[   76.258730] i8042: [75433] 23 <- i8042 (interrupt, 1, 12)
[   76.260261] i8042: [75434] 47 <- i8042 (interrupt, 1, 12)
[   76.261810] i8042: [75436] 54 <- i8042 (interrupt, 1, 12)
[   76.263358] i8042: [75437] 24 <- i8042 (interrupt, 1, 12)
[   76.264975] i8042: [75439] 33 <- i8042 (interrupt, 1, 12)
[   76.266524] i8042: [75441] 31 <- i8042 (interrupt, 1, 12)
[   76.268103] i8042: [75442] 23 <- i8042 (interrupt, 1, 12)
[   76.269702] i8042: [75444] 56 <- i8042 (interrupt, 1, 12)
[   76.271850] i8042: [75446] 54 <- i8042 (interrupt, 1, 12)
[   76.273492] i8042: [75448] 24 <- i8042 (interrupt, 1, 12)
[   76.274938] i8042: [75449] 54 <- i8042 (interrupt, 1, 12)
[   76.276530] i8042: [75451] 31 <- i8042 (interrupt, 1, 12)
[   76.278175] i8042: [75452] 23 <- i8042 (interrupt, 1, 12)
[   76.279724] i8042: [75454] 62 <- i8042 (interrupt, 1, 12)
[   76.281341] i8042: [75455] 54 <- i8042 (interrupt, 1, 12)
[   76.282922] i8042: [75457] 24 <- i8042 (interrupt, 1, 12)
[   76.284473] i8042: [75459] 72 <- i8042 (interrupt, 1, 12)
[   76.286063] i8042: [75460] 31 <- i8042 (interrupt, 1, 12)
[   76.287644] i8042: [75462] 23 <- i8042 (interrupt, 1, 12)
[   76.289253] i8042: [75463] 6b <- i8042 (interrupt, 1, 12)
[   76.291378] i8042: [75465] 54 <- i8042 (interrupt, 1, 12)
[   76.292844] i8042: [75467] 24 <- i8042 (interrupt, 1, 12)
[   76.294528] i8042: [75469] 93 <- i8042 (interrupt, 1, 12)
[   76.296114] i8042: [75470] 31 <- i8042 (interrupt, 1, 12)
[   76.297598] i8042: [75472] 03 <- i8042 (interrupt, 1, 12)
[   76.299249] i8042: [75473] 71 <- i8042 (interrupt, 1, 12)
[   76.300802] i8042: [75475] 54 <- i8042 (interrupt, 1, 12)
[   76.302392] i8042: [75476] 24 <- i8042 (interrupt, 1, 12)
[   76.303948] i8042: [75478] af <- i8042 (interrupt, 1, 12)
[   76.305552] i8042: [75480] 31 <- i8042 (interrupt, 1, 12)
[   76.307196] i8042: [75481] 03 <- i8042 (interrupt, 1, 12)
[   76.308727] i8042: [75483] 75 <- i8042 (interrupt, 1, 12)
[   76.310334] i8042: [75484] 54 <- i8042 (interrupt, 1, 12)
[   76.311913] i8042: [75486] 24 <- i8042 (interrupt, 1, 12)
[   76.313479] i8042: [75488] ca <- i8042 (interrupt, 1, 12)
[   76.315075] i8042: [75489] 31 <- i8042 (interrupt, 1, 12)
[   76.316626] i8042: [75491] 03 <- i8042 (interrupt, 1, 12)
[   76.318210] i8042: [75492] 75 <- i8042 (interrupt, 1, 12)
[   76.320291] i8042: [75494] 54 <- i8042 (interrupt, 1, 12)
[   76.321908] i8042: [75496] 24 <- i8042 (interrupt, 1, 12)
[   76.323424] i8042: [75497] e7 <- i8042 (interrupt, 1, 12)
[   76.325080] i8042: [75499] 31 <- i8042 (interrupt, 1, 12)
[   76.326623] i8042: [75501] 03 <- i8042 (interrupt, 1, 12)
[   76.328219] i8042: [75502] 72 <- i8042 (interrupt, 1, 12)
[   76.329821] i8042: [75504] 54 <- i8042 (interrupt, 1, 12)
[   76.331336] i8042: [75505] 24 <- i8042 (interrupt, 1, 12)
[   76.332960] i8042: [75507] ff <- i8042 (interrupt, 1, 12)
[   76.334495] i8042: [75509] 31 <- i8042 (interrupt, 1, 12)
[   76.336088] i8042: [75510] 03 <- i8042 (interrupt, 1, 12)
[   76.337661] i8042: [75512] 6a <- i8042 (interrupt, 1, 12)
[   76.339821] i8042: [75514] 54 <- i8042 (interrupt, 1, 12)
[   76.341405] i8042: [75515] 25 <- i8042 (interrupt, 1, 12)
[   76.342989] i8042: [75517] 1c <- i8042 (interrupt, 1, 12)
[   76.344529] i8042: [75519] 31 <- i8042 (interrupt, 1, 12)
[   76.346141] i8042: [75520] 03 <- i8042 (interrupt, 1, 12)
[   76.347674] i8042: [75522] 60 <- i8042 (interrupt, 1, 12)
[   76.349250] i8042: [75523] 54 <- i8042 (interrupt, 1, 12)
[   76.350832] i8042: [75525] 25 <- i8042 (interrupt, 1, 12)
[   76.352423] i8042: [75526] 35 <- i8042 (interrupt, 1, 12)
[   76.353998] i8042: [75528] 31 <- i8042 (interrupt, 1, 12)
[   76.355646] i8042: [75530] 03 <- i8042 (interrupt, 1, 12)
[   76.357265] i8042: [75531] 57 <- i8042 (interrupt, 1, 12)
[   76.358740] i8042: [75533] 44 <- i8042 (interrupt, 1, 12)
[   76.360323] i8042: [75534] 15 <- i8042 (interrupt, 1, 12)
[   76.361906] i8042: [75536] 5a <- i8042 (interrupt, 1, 12)
[   76.363490] i8042: [75538] 31 <- i8042 (interrupt, 1, 12)
[   76.365074] i8042: [75539] f3 <- i8042 (interrupt, 1, 12)
[   76.366651] i8042: [75541] 4a <- i8042 (interrupt, 1, 12)
[   76.368752] i8042: [75543] 44 <- i8042 (interrupt, 1, 12)
[   76.370325] i8042: [75544] 15 <- i8042 (interrupt, 1, 12)
[   76.371909] i8042: [75546] 71 <- i8042 (interrupt, 1, 12)
[   76.373490] i8042: [75548] 31 <- i8042 (interrupt, 1, 12)
[   76.375162] i8042: [75549] f3 <- i8042 (interrupt, 1, 12)
[   76.376708] i8042: [75551] 44 <- i8042 (interrupt, 1, 12)
[   76.378248] i8042: [75552] 54 <- i8042 (interrupt, 1, 12)
[   76.379848] i8042: [75554] 15 <- i8042 (interrupt, 1, 12)
[   76.381448] i8042: [75556] 89 <- i8042 (interrupt, 1, 12)
[   76.383034] i8042: [75557] 31 <- i8042 (interrupt, 1, 12)
[   76.384579] i8042: [75559] f3 <- i8042 (interrupt, 1, 12)
[   76.386162] i8042: [75560] 3e <- i8042 (interrupt, 1, 12)
[   76.388244] i8042: [75562] 54 <- i8042 (interrupt, 1, 12)
[   76.389828] i8042: [75564] 15 <- i8042 (interrupt, 1, 12)
[   76.391520] i8042: [75565] a3 <- i8042 (interrupt, 1, 12)
[   76.393051] i8042: [75567] 31 <- i8042 (interrupt, 1, 12)
[   76.394581] i8042: [75569] f3 <- i8042 (interrupt, 1, 12)
[   76.396159] i8042: [75570] 33 <- i8042 (interrupt, 1, 12)
[   76.397743] i8042: [75572] 54 <- i8042 (interrupt, 1, 12)
[   76.399327] i8042: [75573] 15 <- i8042 (interrupt, 1, 12)
[   76.400932] i8042: [75575] bf <- i8042 (interrupt, 1, 12)
[   76.402507] i8042: [75577] 31 <- i8042 (interrupt, 1, 12)
[   76.404177] i8042: [75578] f3 <- i8042 (interrupt, 1, 12)
[   76.405687] i8042: [75580] 25 <- i8042 (interrupt, 1, 12)
[   76.407376] i8042: [75581] 54 <- i8042 (interrupt, 1, 12)
[   76.408822] i8042: [75583] 15 <- i8042 (interrupt, 1, 12)
[   76.410415] i8042: [75584] db <- i8042 (interrupt, 1, 12)
[   76.412128] i8042: [75586] 31 <- i8042 (interrupt, 1, 12)
[   76.413624] i8042: [75588] f3 <- i8042 (interrupt, 1, 12)
[   76.415265] i8042: [75589] 19 <- i8042 (interrupt, 1, 12)
[   76.417349] i8042: [75591] 54 <- i8042 (interrupt, 1, 12)
[   76.418930] i8042: [75593] 15 <- i8042 (interrupt, 1, 12)
[   76.420543] i8042: [75595] f5 <- i8042 (interrupt, 1, 12)
[   76.421989] i8042: [75596] 31 <- i8042 (interrupt, 1, 12)
[   76.423600] i8042: [75598] f3 <- i8042 (interrupt, 1, 12)
[   76.425193] i8042: [75599] 0e <- i8042 (interrupt, 1, 12)
[   76.426736] i8042: [75601] 54 <- i8042 (interrupt, 1, 12)
[   76.428318] i8042: [75602] 16 <- i8042 (interrupt, 1, 12)
[   76.429974] i8042: [75604] 0d <- i8042 (interrupt, 1, 12)
[   76.431530] i8042: [75606] 31 <- i8042 (interrupt, 1, 12)
[   76.433112] i8042: [75607] f3 <- i8042 (interrupt, 1, 12)
[   76.434654] i8042: [75609] 06 <- i8042 (interrupt, 1, 12)
[   76.436805] i8042: [75611] 54 <- i8042 (interrupt, 1, 12)
[   76.438382] i8042: [75612] 16 <- i8042 (interrupt, 1, 12)
[   76.439999] i8042: [75614] 25 <- i8042 (interrupt, 1, 12)
[   76.441580] i8042: [75616] 31 <- i8042 (interrupt, 1, 12)
[   76.443060] i8042: [75617] f2 <- i8042 (interrupt, 1, 12)
[   76.444649] i8042: [75619] ff <- i8042 (interrupt, 1, 12)
[   76.446225] i8042: [75620] 54 <- i8042 (interrupt, 1, 12)
[   76.447843] i8042: [75622] 16 <- i8042 (interrupt, 1, 12)
[   76.449435] i8042: [75624] 3a <- i8042 (interrupt, 1, 12)
[   76.451041] i8042: [75625] 31 <- i8042 (interrupt, 1, 12)
[   76.452594] i8042: [75627] f2 <- i8042 (interrupt, 1, 12)
[   76.454203] i8042: [75628] fb <- i8042 (interrupt, 1, 12)
[   76.456289] i8042: [75630] 54 <- i8042 (interrupt, 1, 12)
[   76.457906] i8042: [75632] 16 <- i8042 (interrupt, 1, 12)
[   76.459389] i8042: [75633] 4e <- i8042 (interrupt, 1, 12)
[   76.460965] i8042: [75635] 31 <- i8042 (interrupt, 1, 12)
[   76.462550] i8042: [75637] f2 <- i8042 (interrupt, 1, 12)
[   76.464128] i8042: [75638] fa <- i8042 (interrupt, 1, 12)
[   76.465792] i8042: [75640] 54 <- i8042 (interrupt, 1, 12)
[   76.467331] i8042: [75641] 26 <- i8042 (interrupt, 1, 12)
[   76.468951] i8042: [75643] 62 <- i8042 (interrupt, 1, 12)
[   76.470538] i8042: [75645] 31 <- i8042 (interrupt, 1, 12)
[   76.472115] i8042: [75646] 02 <- i8042 (interrupt, 1, 12)
[   76.473679] i8042: [75648] fc <- i8042 (interrupt, 1, 12)
[   76.475286] i8042: [75649] 54 <- i8042 (interrupt, 1, 12)
[   76.476794] i8042: [75651] 26 <- i8042 (interrupt, 1, 12)
[   76.478379] i8042: [75652] 75 <- i8042 (interrupt, 1, 12)
[   76.480009] i8042: [75654] 31 <- i8042 (interrupt, 1, 12)
[   76.481594] i8042: [75656] 02 <- i8042 (interrupt, 1, 12)
[   76.483167] i8042: [75657] fe <- i8042 (interrupt, 1, 12)
[   76.485286] i8042: [75659] 54 <- i8042 (interrupt, 1, 12)
[   76.486869] i8042: [75661] 26 <- i8042 (interrupt, 1, 12)
[   76.488474] i8042: [75662] 87 <- i8042 (interrupt, 1, 12)
[   76.490074] i8042: [75664] 31 <- i8042 (interrupt, 1, 12)
[   76.491575] i8042: [75666] 03 <- i8042 (interrupt, 1, 12)
[   76.493131] i8042: [75667] 01 <- i8042 (interrupt, 1, 12)
[   76.494715] i8042: [75669] 54 <- i8042 (interrupt, 1, 12)
[   76.496307] i8042: [75670] 26 <- i8042 (interrupt, 1, 12)
[   76.497880] i8042: [75672] 99 <- i8042 (interrupt, 1, 12)
[   76.499481] i8042: [75674] 31 <- i8042 (interrupt, 1, 12)
[   76.501112] i8042: [75675] 03 <- i8042 (interrupt, 1, 12)
[   76.502663] i8042: [75677] 06 <- i8042 (interrupt, 1, 12)
[   76.504779] i8042: [75679] 54 <- i8042 (interrupt, 1, 12)
[   76.506363] i8042: [75680] 26 <- i8042 (interrupt, 1, 12)
[   76.507979] i8042: [75682] a7 <- i8042 (interrupt, 1, 12)
[   76.509478] i8042: [75684] 31 <- i8042 (interrupt, 1, 12)
[   76.511080] i8042: [75685] 03 <- i8042 (interrupt, 1, 12)
[   76.512660] i8042: [75687] 0c <- i8042 (interrupt, 1, 12)
[   76.514225] i8042: [75688] 44 <- i8042 (interrupt, 1, 12)
[   76.515857] i8042: [75690] 26 <- i8042 (interrupt, 1, 12)
[   76.517439] i8042: [75692] b1 <- i8042 (interrupt, 1, 12)
[   76.519020] i8042: [75693] 31 <- i8042 (interrupt, 1, 12)
[   76.520527] i8042: [75695] 03 <- i8042 (interrupt, 1, 12)
[   76.522188] i8042: [75696] 14 <- i8042 (interrupt, 1, 12)
[   76.523737] i8042: [75698] 44 <- i8042 (interrupt, 1, 12)
[   76.525359] i8042: [75699] 26 <- i8042 (interrupt, 1, 12)
[   76.526898] i8042: [75701] b9 <- i8042 (interrupt, 1, 12)
[   76.528454] i8042: [75703] 31 <- i8042 (interrupt, 1, 12)
[   76.530037] i8042: [75704] 03 <- i8042 (interrupt, 1, 12)
[   76.531640] i8042: [75706] 1d <- i8042 (interrupt, 1, 12)
[   76.533762] i8042: [75708] 44 <- i8042 (interrupt, 1, 12)
[   76.535342] i8042: [75709] 26 <- i8042 (interrupt, 1, 12)
[   76.536931] i8042: [75711] c0 <- i8042 (interrupt, 1, 12)
[   76.538563] i8042: [75713] 31 <- i8042 (interrupt, 1, 12)
[   76.540130] i8042: [75714] 03 <- i8042 (interrupt, 1, 12)
[   76.541620] i8042: [75716] 26 <- i8042 (interrupt, 1, 12)
[   76.543228] i8042: [75717] 44 <- i8042 (interrupt, 1, 12)
[   76.544810] i8042: [75719] 26 <- i8042 (interrupt, 1, 12)
[   76.546353] i8042: [75720] c4 <- i8042 (interrupt, 1, 12)
[   76.548004] i8042: [75722] 31 <- i8042 (interrupt, 1, 12)
[   76.549530] i8042: [75724] 03 <- i8042 (interrupt, 1, 12)
[   76.551175] i8042: [75725] 2e <- i8042 (interrupt, 1, 12)
[   76.553268] i8042: [75727] 44 <- i8042 (interrupt, 1, 12)
[   76.554842] i8042: [75729] 26 <- i8042 (interrupt, 1, 12)
[   76.556362] i8042: [75730] c6 <- i8042 (interrupt, 1, 12)
[   76.558043] i8042: [75732] 31 <- i8042 (interrupt, 1, 12)
[   76.559562] i8042: [75734] 03 <- i8042 (interrupt, 1, 12)
[   76.561174] i8042: [75735] 35 <- i8042 (interrupt, 1, 12)
[   76.562720] i8042: [75737] 44 <- i8042 (interrupt, 1, 12)
[   76.564271] i8042: [75738] 26 <- i8042 (interrupt, 1, 12)
[   76.565862] i8042: [75740] c7 <- i8042 (interrupt, 1, 12)
[   76.567461] i8042: [75742] 31 <- i8042 (interrupt, 1, 12)
[   76.569021] i8042: [75743] 03 <- i8042 (interrupt, 1, 12)
[   76.570612] i8042: [75745] 3d <- i8042 (interrupt, 1, 12)
[   76.572293] i8042: [75746] 44 <- i8042 (interrupt, 1, 12)
[   76.573840] i8042: [75748] 16 <- i8042 (interrupt, 1, 12)
[   76.575400] i8042: [75749] c7 <- i8042 (interrupt, 1, 12)
[   76.576979] i8042: [75751] 31 <- i8042 (interrupt, 1, 12)
[   76.578528] i8042: [75753] f3 <- i8042 (interrupt, 1, 12)
[   76.580159] i8042: [75754] 46 <- i8042 (interrupt, 1, 12)
[   76.582184] i8042: [75756] 54 <- i8042 (interrupt, 1, 12)
[   76.583773] i8042: [75758] 16 <- i8042 (interrupt, 1, 12)
[   76.585357] i8042: [75759] c5 <- i8042 (interrupt, 1, 12)
[   76.586932] i8042: [75761] 31 <- i8042 (interrupt, 1, 12)
[   76.588523] i8042: [75763] d3 <- i8042 (interrupt, 1, 12)
[   76.590170] i8042: [75764] 51 <- i8042 (interrupt, 1, 12)
[   76.591690] i8042: [75766] 54 <- i8042 (interrupt, 1, 12)
[   76.593267] i8042: [75767] 16 <- i8042 (interrupt, 1, 12)
[   76.594849] i8042: [75769] bd <- i8042 (interrupt, 1, 12)
[   76.596431] i8042: [75770] 31 <- i8042 (interrupt, 1, 12)
[   76.598013] i8042: [75772] c3 <- i8042 (interrupt, 1, 12)
[   76.599638] i8042: [75774] 5e <- i8042 (interrupt, 1, 12)
[   76.601678] i8042: [75776] 54 <- i8042 (interrupt, 1, 12)
[   76.603275] i8042: [75777] 16 <- i8042 (interrupt, 1, 12)
[   76.604862] i8042: [75779] b0 <- i8042 (interrupt, 1, 12)
[   76.606534] i8042: [75781] 31 <- i8042 (interrupt, 1, 12)
[   76.608118] i8042: [75782] c3 <- i8042 (interrupt, 1, 12)
[   76.609596] i8042: [75784] 6a <- i8042 (interrupt, 1, 12)
[   76.611216] i8042: [75785] 54 <- i8042 (interrupt, 1, 12)
[   76.612808] i8042: [75787] 16 <- i8042 (interrupt, 1, 12)
[   76.614414] i8042: [75788] 9e <- i8042 (interrupt, 1, 12)
[   76.616008] i8042: [75790] 31 <- i8042 (interrupt, 1, 12)
[   76.617554] i8042: [75792] d3 <- i8042 (interrupt, 1, 12)
[   76.619098] i8042: [75793] 74 <- i8042 (interrupt, 1, 12)
[   76.620674] i8042: [75795] 54 <- i8042 (interrupt, 1, 12)
[   76.622255] i8042: [75796] 16 <- i8042 (interrupt, 1, 12)
[   76.623909] i8042: [75798] 87 <- i8042 (interrupt, 1, 12)
[   76.625424] i8042: [75799] 31 <- i8042 (interrupt, 1, 12)
[   76.627013] i8042: [75801] d3 <- i8042 (interrupt, 1, 12)
[   76.628641] i8042: [75803] 7b <- i8042 (interrupt, 1, 12)
[   76.630674] i8042: [75805] 54 <- i8042 (interrupt, 1, 12)
[   76.632330] i8042: [75806] 16 <- i8042 (interrupt, 1, 12)
[   76.633847] i8042: [75808] 6d <- i8042 (interrupt, 1, 12)
[   76.635433] i8042: [75809] 31 <- i8042 (interrupt, 1, 12)
[   76.637007] i8042: [75811] d3 <- i8042 (interrupt, 1, 12)
[   76.638588] i8042: [75813] 80 <- i8042 (interrupt, 1, 12)
[   76.640219] i8042: [75814] 54 <- i8042 (interrupt, 1, 12)
[   76.641824] i8042: [75816] 16 <- i8042 (interrupt, 1, 12)
[   76.643407] i8042: [75817] 50 <- i8042 (interrupt, 1, 12)
[   76.644989] i8042: [75819] 31 <- i8042 (interrupt, 1, 12)
[   76.646540] i8042: [75821] d3 <- i8042 (interrupt, 1, 12)
[   76.648152] i8042: [75822] 82 <- i8042 (interrupt, 1, 12)
[   76.650208] i8042: [75824] 54 <- i8042 (interrupt, 1, 12)
[   76.651789] i8042: [75826] 16 <- i8042 (interrupt, 1, 12)
[   76.653376] i8042: [75827] 31 <- i8042 (interrupt, 1, 12)
[   76.654958] i8042: [75829] 31 <- i8042 (interrupt, 1, 12)
[   76.656571] i8042: [75831] f3 <- i8042 (interrupt, 1, 12)
[   76.658126] i8042: [75832] 80 <- i8042 (interrupt, 1, 12)
[   76.659737] i8042: [75834] 54 <- i8042 (interrupt, 1, 12)
[   76.661322] i8042: [75835] 16 <- i8042 (interrupt, 1, 12)
[   76.662850] i8042: [75837] 0f <- i8042 (interrupt, 1, 12)
[   76.664474] i8042: [75839] 31 <- i8042 (interrupt, 1, 12)
[   76.666001] i8042: [75840] f3 <- i8042 (interrupt, 1, 12)
[   76.667580] i8042: [75842] 78 <- i8042 (interrupt, 1, 12)
[   76.669165] i8042: [75843] 44 <- i8042 (interrupt, 1, 12)
[   76.670788] i8042: [75845] 15 <- i8042 (interrupt, 1, 12)
[   76.672403] i8042: [75846] e7 <- i8042 (interrupt, 1, 12)
[   76.674017] i8042: [75848] 31 <- i8042 (interrupt, 1, 12)
[   76.675498] i8042: [75850] f3 <- i8042 (interrupt, 1, 12)
[   76.677147] i8042: [75851] 6e <- i8042 (interrupt, 1, 12)
[   76.679262] i8042: [75853] 54 <- i8042 (interrupt, 1, 12)
[   76.680824] i8042: [75855] 15 <- i8042 (interrupt, 1, 12)
[   76.682330] i8042: [75856] c8 <- i8042 (interrupt, 1, 12)
[   76.683911] i8042: [75858] 31 <- i8042 (interrupt, 1, 12)
[   76.685512] i8042: [75860] f3 <- i8042 (interrupt, 1, 12)
[   76.687108] i8042: [75861] 65 <- i8042 (interrupt, 1, 12)
[   76.688713] i8042: [75863] 54 <- i8042 (interrupt, 1, 12)
[   76.690309] i8042: [75864] 15 <- i8042 (interrupt, 1, 12)
[   76.691894] i8042: [75866] a5 <- i8042 (interrupt, 1, 12)
[   76.693498] i8042: [75868] 31 <- i8042 (interrupt, 1, 12)
[   76.694998] i8042: [75869] f3 <- i8042 (interrupt, 1, 12)
[   76.696609] i8042: [75871] 5c <- i8042 (interrupt, 1, 12)
[   76.698660] i8042: [75873] 54 <- i8042 (interrupt, 1, 12)
[   76.700282] i8042: [75874] 25 <- i8042 (interrupt, 1, 12)
[   76.701860] i8042: [75876] 7f <- i8042 (interrupt, 1, 12)
[   76.703463] i8042: [75878] 31 <- i8042 (interrupt, 1, 12)
[   76.705035] i8042: [75879] 03 <- i8042 (interrupt, 1, 12)
[   76.706572] i8042: [75881] 51 <- i8042 (interrupt, 1, 12)
[   76.708273] i8042: [75882] 54 <- i8042 (interrupt, 1, 12)
[   76.709807] i8042: [75884] 25 <- i8042 (interrupt, 1, 12)
[   76.711415] i8042: [75885] 5c <- i8042 (interrupt, 1, 12)
[   76.712921] i8042: [75887] 31 <- i8042 (interrupt, 1, 12)
[   76.714485] i8042: [75889] 23 <- i8042 (interrupt, 1, 12)
[   76.716066] i8042: [75890] 46 <- i8042 (interrupt, 1, 12)
[   76.718186] i8042: [75892] 54 <- i8042 (interrupt, 1, 12)
[   76.719766] i8042: [75894] 25 <- i8042 (interrupt, 1, 12)
[   76.721359] i8042: [75895] 3f <- i8042 (interrupt, 1, 12)
[   76.722982] i8042: [75897] 31 <- i8042 (interrupt, 1, 12)
[   76.724574] i8042: [75899] 23 <- i8042 (interrupt, 1, 12)
[   76.726105] i8042: [75900] 3c <- i8042 (interrupt, 1, 12)
[   76.727730] i8042: [75902] 54 <- i8042 (interrupt, 1, 12)
[   76.729306] i8042: [75903] 25 <- i8042 (interrupt, 1, 12)
[   76.730860] i8042: [75905] 27 <- i8042 (interrupt, 1, 12)
[   76.732402] i8042: [75906] 31 <- i8042 (interrupt, 1, 12)
[   76.734019] i8042: [75908] 23 <- i8042 (interrupt, 1, 12)
[   76.735606] i8042: [75910] 30 <- i8042 (interrupt, 1, 12)
[   76.737183] i8042: [75911] 54 <- i8042 (interrupt, 1, 12)
[   76.738801] i8042: [75913] 25 <- i8042 (interrupt, 1, 12)
[   76.740413] i8042: [75914] 16 <- i8042 (interrupt, 1, 12)
[   76.741959] i8042: [75916] 31 <- i8042 (interrupt, 1, 12)
[   76.743530] i8042: [75918] 23 <- i8042 (interrupt, 1, 12)
[   76.745077] i8042: [75919] 27 <- i8042 (interrupt, 1, 12)
[   76.747144] i8042: [75921] 54 <- i8042 (interrupt, 1, 12)
[   76.748728] i8042: [75923] 25 <- i8042 (interrupt, 1, 12)
[   76.750309] i8042: [75924] 0d <- i8042 (interrupt, 1, 12)
[   76.751926] i8042: [75926] 31 <- i8042 (interrupt, 1, 12)
[   76.753486] i8042: [75928] 23 <- i8042 (interrupt, 1, 12)
[   76.755057] i8042: [75929] 21 <- i8042 (interrupt, 1, 12)
[   76.756725] i8042: [75931] 54 <- i8042 (interrupt, 1, 12)
[   76.758318] i8042: [75932] 25 <- i8042 (interrupt, 1, 12)
[   76.759817] i8042: [75934] 08 <- i8042 (interrupt, 1, 12)
[   76.761429] i8042: [75935] 31 <- i8042 (interrupt, 1, 12)
[   76.763073] i8042: [75937] 23 <- i8042 (interrupt, 1, 12)
[   76.764574] i8042: [75939] 1d <- i8042 (interrupt, 1, 12)
[   76.766674] i8042: [75941] 54 <- i8042 (interrupt, 1, 12)
[   76.768318] i8042: [75942] 25 <- i8042 (interrupt, 1, 12)
[   76.769906] i8042: [75944] 05 <- i8042 (interrupt, 1, 12)
[   76.771516] i8042: [75946] 31 <- i8042 (interrupt, 1, 12)
[   76.773036] i8042: [75947] 23 <- i8042 (interrupt, 1, 12)
[   76.774575] i8042: [75949] 1b <- i8042 (interrupt, 1, 12)
[   76.776175] i8042: [75950] 54 <- i8042 (interrupt, 1, 12)
[   76.777781] i8042: [75952] 25 <- i8042 (interrupt, 1, 12)
[   76.779342] i8042: [75953] 05 <- i8042 (interrupt, 1, 12)
[   76.780880] i8042: [75955] 31 <- i8042 (interrupt, 1, 12)
[   76.782463] i8042: [75957] 23 <- i8042 (interrupt, 1, 12)
[   76.784076] i8042: [75958] 18 <- i8042 (interrupt, 1, 12)
[   76.785661] i8042: [75960] 54 <- i8042 (interrupt, 1, 12)
[   76.787234] i8042: [75961] 25 <- i8042 (interrupt, 1, 12)
[   76.788862] i8042: [75963] 07 <- i8042 (interrupt, 1, 12)
[   76.790507] i8042: [75965] 31 <- i8042 (interrupt, 1, 12)
[   76.791992] i8042: [75966] 23 <- i8042 (interrupt, 1, 12)
[   76.793537] i8042: [75968] 15 <- i8042 (interrupt, 1, 12)
[   76.795691] i8042: [75970] 54 <- i8042 (interrupt, 1, 12)
[   76.797250] i8042: [75971] 25 <- i8042 (interrupt, 1, 12)
[   76.798793] i8042: [75973] 09 <- i8042 (interrupt, 1, 12)
[   76.800412] i8042: [75974] 31 <- i8042 (interrupt, 1, 12)
[   76.802007] i8042: [75976] 23 <- i8042 (interrupt, 1, 12)
[   76.803546] i8042: [75978] 12 <- i8042 (interrupt, 1, 12)
[   76.805201] i8042: [75979] 54 <- i8042 (interrupt, 1, 12)
[   76.806813] i8042: [75981] 25 <- i8042 (interrupt, 1, 12)
[   76.808320] i8042: [75982] 0d <- i8042 (interrupt, 1, 12)
[   76.809944] i8042: [75984] 31 <- i8042 (interrupt, 1, 12)
[   76.811527] i8042: [75986] 23 <- i8042 (interrupt, 1, 12)
[   76.813061] i8042: [75987] 10 <- i8042 (interrupt, 1, 12)
[   76.815126] i8042: [75989] 54 <- i8042 (interrupt, 1, 12)
[   76.816746] i8042: [75991] 25 <- i8042 (interrupt, 1, 12)
[   76.818335] i8042: [75992] 13 <- i8042 (interrupt, 1, 12)
[   76.819912] i8042: [75994] 31 <- i8042 (interrupt, 1, 12)
[   76.821539] i8042: [75996] 23 <- i8042 (interrupt, 1, 12)
[   76.823116] i8042: [75997] 0d <- i8042 (interrupt, 1, 12)
[   76.824704] i8042: [75999] 54 <- i8042 (interrupt, 1, 12)
[   76.826293] i8042: [76000] 25 <- i8042 (interrupt, 1, 12)
[   76.827861] i8042: [76002] 1e <- i8042 (interrupt, 1, 12)
[   76.829432] i8042: [76004] 31 <- i8042 (interrupt, 1, 12)
[   76.830952] i8042: [76005] 23 <- i8042 (interrupt, 1, 12)
[   76.832532] i8042: [76007] 0b <- i8042 (interrupt, 1, 12)
[   76.834115] i8042: [76008] 54 <- i8042 (interrupt, 1, 12)
[   76.835694] i8042: [76010] 15 <- i8042 (interrupt, 1, 12)
[   76.837274] i8042: [76011] 35 <- i8042 (interrupt, 1, 12)
[   76.838931] i8042: [76013] 31 <- i8042 (interrupt, 1, 12)
[   76.840574] i8042: [76015] a3 <- i8042 (interrupt, 1, 12)
[   76.842019] i8042: [76016] 05 <- i8042 (interrupt, 1, 12)
[   76.844189] i8042: [76018] 44 <- i8042 (interrupt, 1, 12)
[   76.845698] i8042: [76020] 15 <- i8042 (interrupt, 1, 12)
[   76.847274] i8042: [76021] 5b <- i8042 (interrupt, 1, 12)
[   76.848897] i8042: [76023] 31 <- i8042 (interrupt, 1, 12)
[   76.850563] i8042: [76025] 12 <- i8042 (interrupt, 1, 12)
[   76.852021] i8042: [76026] fd <- i8042 (interrupt, 1, 12)
[   76.853639] i8042: [76028] 44 <- i8042 (interrupt, 1, 12)
[   76.855184] i8042: [76029] 15 <- i8042 (interrupt, 1, 12)
[   76.856838] i8042: [76031] 87 <- i8042 (interrupt, 1, 12)
[   76.858383] i8042: [76032] 31 <- i8042 (interrupt, 1, 12)
[   76.859927] i8042: [76034] 12 <- i8042 (interrupt, 1, 12)
[   76.861538] i8042: [76036] fd <- i8042 (interrupt, 1, 12)
[   76.863599] i8042: [76038] 04 <- i8042 (interrupt, 1, 12)
[   76.865185] i8042: [76039] 00 <- i8042 (interrupt, 1, 12)
[   76.866762] i8042: [76041] 00 <- i8042 (interrupt, 1, 12)
[   76.868342] i8042: [76042] 10 <- i8042 (interrupt, 1, 12)
[   76.869925] i8042: [76044] 00 <- i8042 (interrupt, 1, 12)
[   76.871507] i8042: [76046] 00 <- i8042 (interrupt, 1, 12)
[   77.438851] wlan0: authenticate with c8:9e:43:94:32:f2
[   77.446795] wlan0: send auth to c8:9e:43:94:32:f2 (try 1/3)
[   77.452855] wlan0: authenticated
[   77.453502] wlan0: associate with c8:9e:43:94:32:f2 (try 1/3)
[   77.454881] wlan0: RX AssocResp from c8:9e:43:94:32:f2 (capab=0x11 status=0 aid=29)
[   77.465411] wlan0: associated
[   77.493801] wlan0: dropped frame to c8:9e:43:94:32:f2 (unauthorized port)
[   77.578514] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
Dmitry Torokhov March 5, 2024, 6:47 p.m. UTC | #7
On Mon, Mar 04, 2024 at 11:17:31AM -0600, Jonathan Denose wrote:
> I disabled the ideapad driver by rebuilding the kernel without the
> ideapad_laptop module. That does fix the suspend/resume issue!
> 
> Attached are the logs. Is there a way to make this permanent?

Could you please try the patch below? Thanks!

---

diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
index 9fbb8d31575a..2f0c143c3137 100644
--- a/drivers/input/serio/i8042.c
+++ b/drivers/input/serio/i8042.c
@@ -127,6 +127,7 @@ MODULE_PARM_DESC(unmask_kbd_data, "Unconditional enable (may reveal sensitive da
 #endif
 
 static bool i8042_present;
+static bool i8042_ready;
 static bool i8042_bypass_aux_irq_test;
 static char i8042_kbd_firmware_id[128];
 static char i8042_aux_firmware_id[128];
@@ -190,6 +191,26 @@ void i8042_unlock_chip(void)
 }
 EXPORT_SYMBOL(i8042_unlock_chip);
 
+int i8042_device_link_add(struct device *consumer)
+{
+	if (!i8042_present)
+		return -ENODEV;
+
+	if (!i8042_platform_device || !i8042_ready)
+		return -EPROBE_DEFER;
+
+	return device_link_add(consumer, &i8042_platform_device->dev,
+			       DL_FLAG_STATELESS) != NULL;
+}
+EXPORT_SYMBOL(i8042_device_link_add);
+
+void i8042_device_link_remove(struct device *consumer)
+{
+	if (i8042_platform_device)
+		device_link_remove(consumer, &i8042_platform_device->dev);
+}
+EXPORT_SYMBOL(i8042_device_link_remove);
+
 int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
 					struct serio *serio))
 {
@@ -1574,6 +1595,7 @@ static int i8042_probe(struct platform_device *dev)
  */
 	i8042_register_ports();
 
+	i8042_ready = true;
 	return 0;
 
  out_fail:
diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
index ac037540acfc..d4d1bccbe882 100644
--- a/drivers/platform/x86/ideapad-laptop.c
+++ b/drivers/platform/x86/ideapad-laptop.c
@@ -1842,6 +1842,13 @@ static int ideapad_acpi_add(struct platform_device *pdev)
 			ideapad_register_rfkill(priv, i);
 
 	ideapad_sync_rfk_state(priv);
+
+	err = i8042_device_link_add(&pdev->dev);
+	if (err) {
+		dev_err(&pdev->dev, "failed to link with 8042 controller :%d", err);
+		goto i8042_link_failed;
+	}
+
 	ideapad_sync_touchpad_state(priv, false);
 
 	err = ideapad_dytc_profile_init(priv);
@@ -1882,7 +1889,9 @@ static int ideapad_acpi_add(struct platform_device *pdev)
 
 backlight_failed:
 	ideapad_dytc_profile_exit(priv);
+	i8042_device_link_remove(&pdev->dev);
 
+i8042_link_failed:
 	for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
 		ideapad_unregister_rfkill(priv, i);
 
@@ -1909,6 +1918,7 @@ static void ideapad_acpi_remove(struct platform_device *pdev)
 
 	ideapad_backlight_exit(priv);
 	ideapad_dytc_profile_exit(priv);
+	i8042_device_link_remove(&pdev->dev);
 
 	for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
 		ideapad_unregister_rfkill(priv, i);
diff --git a/include/linux/i8042.h b/include/linux/i8042.h
index 95b07f8b77fe..ce45569f5246 100644
--- a/include/linux/i8042.h
+++ b/include/linux/i8042.h
@@ -52,12 +52,15 @@
 #define I8042_CTR_AUXDIS	0x20
 #define I8042_CTR_XLATE		0x40
 
+struct device;
 struct serio;
 
 #if defined(CONFIG_SERIO_I8042) || defined(CONFIG_SERIO_I8042_MODULE)
 
 void i8042_lock_chip(void);
 void i8042_unlock_chip(void);
+int i8042_device_link_add(struct device *dev);
+void i8042_device_link_remove(struct device *dev);
 int i8042_command(unsigned char *param, int command);
 int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
 					struct serio *serio));
@@ -74,6 +77,15 @@ static inline void i8042_unlock_chip(void)
 {
 }
 
+int i8042_device_link_add(struct device *dev)
+{
+	return -ENODEV;
+}
+
+void i8042_device_link_remove(struct device *dev)
+{
+}
+
 static inline int i8042_command(unsigned char *param, int command)
 {
 	return -ENODEV;



Thanks.
Jonathan Denose March 5, 2024, 9:48 p.m. UTC | #8
Thanks for this.

I tried the patch and unfortunately the issue still occurs. Attached
are the dmesg logs.

On Tue, Mar 5, 2024 at 12:47 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> On Mon, Mar 04, 2024 at 11:17:31AM -0600, Jonathan Denose wrote:
> > I disabled the ideapad driver by rebuilding the kernel without the
> > ideapad_laptop module. That does fix the suspend/resume issue!
> >
> > Attached are the logs. Is there a way to make this permanent?
>
> Could you please try the patch below? Thanks!
>
> ---
>
> diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
> index 9fbb8d31575a..2f0c143c3137 100644
> --- a/drivers/input/serio/i8042.c
> +++ b/drivers/input/serio/i8042.c
> @@ -127,6 +127,7 @@ MODULE_PARM_DESC(unmask_kbd_data, "Unconditional enable (may reveal sensitive da
>  #endif
>
>  static bool i8042_present;
> +static bool i8042_ready;
>  static bool i8042_bypass_aux_irq_test;
>  static char i8042_kbd_firmware_id[128];
>  static char i8042_aux_firmware_id[128];
> @@ -190,6 +191,26 @@ void i8042_unlock_chip(void)
>  }
>  EXPORT_SYMBOL(i8042_unlock_chip);
>
> +int i8042_device_link_add(struct device *consumer)
> +{
> +       if (!i8042_present)
> +               return -ENODEV;
> +
> +       if (!i8042_platform_device || !i8042_ready)
> +               return -EPROBE_DEFER;
> +
> +       return device_link_add(consumer, &i8042_platform_device->dev,
> +                              DL_FLAG_STATELESS) != NULL;
> +}
> +EXPORT_SYMBOL(i8042_device_link_add);
> +
> +void i8042_device_link_remove(struct device *consumer)
> +{
> +       if (i8042_platform_device)
> +               device_link_remove(consumer, &i8042_platform_device->dev);
> +}
> +EXPORT_SYMBOL(i8042_device_link_remove);
> +
>  int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
>                                         struct serio *serio))
>  {
> @@ -1574,6 +1595,7 @@ static int i8042_probe(struct platform_device *dev)
>   */
>         i8042_register_ports();
>
> +       i8042_ready = true;
>         return 0;
>
>   out_fail:
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index ac037540acfc..d4d1bccbe882 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -1842,6 +1842,13 @@ static int ideapad_acpi_add(struct platform_device *pdev)
>                         ideapad_register_rfkill(priv, i);
>
>         ideapad_sync_rfk_state(priv);
> +
> +       err = i8042_device_link_add(&pdev->dev);
> +       if (err) {
> +               dev_err(&pdev->dev, "failed to link with 8042 controller :%d", err);
> +               goto i8042_link_failed;
> +       }
> +
>         ideapad_sync_touchpad_state(priv, false);
>
>         err = ideapad_dytc_profile_init(priv);
> @@ -1882,7 +1889,9 @@ static int ideapad_acpi_add(struct platform_device *pdev)
>
>  backlight_failed:
>         ideapad_dytc_profile_exit(priv);
> +       i8042_device_link_remove(&pdev->dev);
>
> +i8042_link_failed:
>         for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
>                 ideapad_unregister_rfkill(priv, i);
>
> @@ -1909,6 +1918,7 @@ static void ideapad_acpi_remove(struct platform_device *pdev)
>
>         ideapad_backlight_exit(priv);
>         ideapad_dytc_profile_exit(priv);
> +       i8042_device_link_remove(&pdev->dev);
>
>         for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
>                 ideapad_unregister_rfkill(priv, i);
> diff --git a/include/linux/i8042.h b/include/linux/i8042.h
> index 95b07f8b77fe..ce45569f5246 100644
> --- a/include/linux/i8042.h
> +++ b/include/linux/i8042.h
> @@ -52,12 +52,15 @@
>  #define I8042_CTR_AUXDIS       0x20
>  #define I8042_CTR_XLATE                0x40
>
> +struct device;
>  struct serio;
>
>  #if defined(CONFIG_SERIO_I8042) || defined(CONFIG_SERIO_I8042_MODULE)
>
>  void i8042_lock_chip(void);
>  void i8042_unlock_chip(void);
> +int i8042_device_link_add(struct device *dev);
> +void i8042_device_link_remove(struct device *dev);
>  int i8042_command(unsigned char *param, int command);
>  int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
>                                         struct serio *serio));
> @@ -74,6 +77,15 @@ static inline void i8042_unlock_chip(void)
>  {
>  }
>
> +int i8042_device_link_add(struct device *dev)
> +{
> +       return -ENODEV;
> +}
> +
> +void i8042_device_link_remove(struct device *dev)
> +{
> +}
> +
>  static inline int i8042_command(unsigned char *param, int command)
>  {
>         return -ENODEV;
>
>
>
> Thanks.
>
> --
> Dmitry
[   66.319038] i8042: [65507] d4 -> i8042 (command)
[   66.319222] i8042: [65507] e6 -> i8042 (parameter)
[   66.322140] i8042: [65510] fa <- i8042 (interrupt, 1, 12)
[   66.322267] i8042: [65510] d4 -> i8042 (command)
[   66.322508] i8042: [65511] e6 -> i8042 (parameter)
[   66.325383] i8042: [65513] fa <- i8042 (interrupt, 1, 12)
[   66.325439] i8042: [65514] d4 -> i8042 (command)
[   66.325627] i8042: [65514] e6 -> i8042 (parameter)
[   66.328533] i8042: [65517] fa <- i8042 (interrupt, 1, 12)
[   66.328569] i8042: [65517] d4 -> i8042 (command)
[   66.328810] i8042: [65517] e9 -> i8042 (parameter)
[   66.331722] i8042: [65520] fa <- i8042 (interrupt, 1, 12)
[   66.333292] i8042: [65521] 3c <- i8042 (interrupt, 1, 12)
[   66.334876] i8042: [65523] 03 <- i8042 (interrupt, 1, 12)
[   66.335658] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
[   66.336459] i8042: [65525] 00 <- i8042 (interrupt, 1, 12)
[   66.336560] wlan0: dropped frame to c8:9e:43:94:32:f2 (unauthorized port)
[   66.336590] i8042: [65525] d4 -> i8042 (command)
[   66.336775] i8042: [65525] e6 -> i8042 (parameter)
[   66.339670] i8042: [65528] fa <- i8042 (interrupt, 1, 12)
[   66.339711] i8042: [65528] d4 -> i8042 (command)
[   66.339896] i8042: [65528] e8 -> i8042 (parameter)
[   66.342860] i8042: [65531] fa <- i8042 (interrupt, 1, 12)
[   66.343045] i8042: [65531] d4 -> i8042 (command)
[   66.343231] i8042: [65531] 00 -> i8042 (parameter)
[   66.346057] i8042: [65534] fa <- i8042 (interrupt, 1, 12)
[   66.346102] i8042: [65534] d4 -> i8042 (command)
[   66.346287] i8042: [65534] e8 -> i8042 (parameter)
[   66.349259] i8042: [65537] fa <- i8042 (interrupt, 1, 12)
[   66.349301] i8042: [65537] d4 -> i8042 (command)
[   66.349486] i8042: [65538] 00 -> i8042 (parameter)
[   66.352449] i8042: [65541] fa <- i8042 (interrupt, 1, 12)
[   66.352500] i8042: [65541] d4 -> i8042 (command)
[   66.352684] i8042: [65541] e8 -> i8042 (parameter)
[   66.355703] i8042: [65544] fa <- i8042 (interrupt, 1, 12)
[   66.355741] i8042: [65544] d4 -> i8042 (command)
[   66.355982] i8042: [65544] 00 -> i8042 (parameter)
[   66.358897] i8042: [65547] fa <- i8042 (interrupt, 1, 12)
[   66.358997] i8042: [65547] d4 -> i8042 (command)
[   66.359183] i8042: [65547] e8 -> i8042 (parameter)
[   66.362029] i8042: [65550] fa <- i8042 (interrupt, 1, 12)
[   66.362068] i8042: [65550] d4 -> i8042 (command)
[   66.362309] i8042: [65550] 01 -> i8042 (parameter)
[   66.365233] i8042: [65553] fa <- i8042 (interrupt, 1, 12)
[   66.365281] i8042: [65553] d4 -> i8042 (command)
[   66.365522] i8042: [65554] e9 -> i8042 (parameter)
[   66.368429] i8042: [65557] fa <- i8042 (interrupt, 1, 12)
[   66.369990] i8042: [65558] 5e <- i8042 (interrupt, 1, 12)
[   66.371582] i8042: [65560] 0f <- i8042 (interrupt, 1, 12)
[   66.373152] i8042: [65561] 01 <- i8042 (interrupt, 1, 12)
[   66.373270] i8042: [65561] d4 -> i8042 (command)
[   66.373456] i8042: [65562] f8 -> i8042 (parameter)
[   66.376362] i8042: [65564] fa <- i8042 (interrupt, 1, 12)
[   66.376418] i8042: [65565] d4 -> i8042 (command)
[   66.376603] i8042: [65565] 00 -> i8042 (parameter)
[   66.379585] i8042: [65568] fa <- i8042 (interrupt, 1, 12)
[   66.379636] i8042: [65568] d4 -> i8042 (command)
[   66.379820] i8042: [65568] f8 -> i8042 (parameter)
[   66.382748] i8042: [65571] fa <- i8042 (interrupt, 1, 12)
[   66.382808] i8042: [65571] d4 -> i8042 (command)
[   66.382993] i8042: [65571] 07 -> i8042 (parameter)
[   66.385942] i8042: [65574] fa <- i8042 (interrupt, 1, 12)
[   66.385984] i8042: [65574] d4 -> i8042 (command)
[   66.386169] i8042: [65574] f8 -> i8042 (parameter)
[   66.389138] i8042: [65577] fa <- i8042 (interrupt, 1, 12)
[   66.389176] i8042: [65577] d4 -> i8042 (command)
[   66.389361] i8042: [65577] 00 -> i8042 (parameter)
[   66.392330] i8042: [65580] fa <- i8042 (interrupt, 1, 12)
[   66.392388] i8042: [65580] d4 -> i8042 (command)
[   66.392630] i8042: [65581] f8 -> i8042 (parameter)
[   66.395520] i8042: [65584] fa <- i8042 (interrupt, 1, 12)
[   66.395560] i8042: [65584] d4 -> i8042 (command)
[   66.395800] i8042: [65584] 01 -> i8042 (parameter)
[   66.398716] i8042: [65587] fa <- i8042 (interrupt, 1, 12)
[   66.398764] i8042: [65587] d4 -> i8042 (command)
[   66.399005] i8042: [65587] e6 -> i8042 (parameter)
[   66.401988] i8042: [65590] fa <- i8042 (interrupt, 1, 12)
[   66.402053] i8042: [65590] d4 -> i8042 (command)
[   66.402294] i8042: [65590] f3 -> i8042 (parameter)
[   66.405222] i8042: [65593] fa <- i8042 (interrupt, 1, 12)
[   66.405300] i8042: [65593] d4 -> i8042 (command)
[   66.405500] i8042: [65593] 64 -> i8042 (parameter)
[   66.408385] i8042: [65596] fa <- i8042 (interrupt, 1, 12)
[   66.408519] i8042: [65597] d4 -> i8042 (command)
[   66.408713] i8042: [65597] e8 -> i8042 (parameter)
[   66.411535] i8042: [65600] fa <- i8042 (interrupt, 1, 12)
[   66.411571] i8042: [65600] d4 -> i8042 (command)
[   66.411812] i8042: [65600] 03 -> i8042 (parameter)
[   66.414717] i8042: [65603] fa <- i8042 (interrupt, 1, 12)
[   66.414761] i8042: [65603] d4 -> i8042 (command)
[   66.415002] i8042: [65603] e6 -> i8042 (parameter)
[   66.417879] i8042: [65606] fa <- i8042 (interrupt, 1, 12)
[   66.417934] i8042: [65606] d4 -> i8042 (command)
[   66.418119] i8042: [65606] f4 -> i8042 (parameter)
[   66.421133] i8042: [65609] fa <- i8042 (interrupt, 1, 12)
[   66.431715] i8042: [65620] 08 <- i8042 (interrupt, 1, 12)
[   66.433303] i8042: [65621] 00 <- i8042 (interrupt, 1, 12)
[   66.434885] i8042: [65623] 00 <- i8042 (interrupt, 1, 12)
[   66.441571] i8042: [65630] 54 <- i8042 (interrupt, 1, 12)
[   66.443091] i8042: [65631] 01 <- i8042 (interrupt, 1, 12)
[   66.444738] i8042: [65633] 00 <- i8042 (interrupt, 1, 12)
[   66.444762] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.446323] i8042: [65634] 10 <- i8042 (interrupt, 1, 12)
[   66.447845] i8042: [65636] 00 <- i8042 (interrupt, 1, 12)
[   66.449490] i8042: [65638] 00 <- i8042 (interrupt, 1, 12)
[   66.451072] i8042: [65639] 54 <- i8042 (interrupt, 1, 12)
[   66.452656] i8042: [65641] 14 <- i8042 (interrupt, 1, 12)
[   66.454238] i8042: [65642] de <- i8042 (interrupt, 1, 12)
[   66.454262] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.455819] i8042: [65644] 31 <- i8042 (interrupt, 1, 12)
[   66.457402] i8042: [65645] 00 <- i8042 (interrupt, 1, 12)
[   66.458966] i8042: [65647] 86 <- i8042 (interrupt, 1, 12)
[   66.460505] i8042: [65649] 54 <- i8042 (interrupt, 1, 12)
[   66.462134] i8042: [65650] 14 <- i8042 (interrupt, 1, 12)
[   66.463672] i8042: [65652] de <- i8042 (interrupt, 1, 12)
[   66.463696] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.465317] i8042: [65653] 31 <- i8042 (interrupt, 1, 12)
[   66.466905] i8042: [65655] 90 <- i8042 (interrupt, 1, 12)
[   66.468421] i8042: [65656] 86 <- i8042 (interrupt, 1, 12)
[   66.470079] i8042: [65658] 54 <- i8042 (interrupt, 1, 12)
[   66.471643] i8042: [65660] 14 <- i8042 (interrupt, 1, 12)
[   66.473232] i8042: [65661] de <- i8042 (interrupt, 1, 12)
[   66.473256] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.474796] i8042: [65663] 31 <- i8042 (interrupt, 1, 12)
[   66.476327] i8042: [65664] d0 <- i8042 (interrupt, 1, 12)
[   66.477970] i8042: [65666] 86 <- i8042 (interrupt, 1, 12)
[   66.479492] i8042: [65668] 54 <- i8042 (interrupt, 1, 12)
[   66.481077] i8042: [65669] 14 <- i8042 (interrupt, 1, 12)
[   66.482658] i8042: [65671] cd <- i8042 (interrupt, 1, 12)
[   66.482681] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.482689] psmouse serio1: issuing reconnect request
[   66.482710] i8042: [65671] d4 -> i8042 (command)
[   66.482894] i8042: [65671] ff -> i8042 (parameter)
[   66.485983] i8042: [65674] fa <- i8042 (interrupt, 1, 12)
[   66.586843] i8042: [65775] aa <- i8042 (interrupt, 1, 12)
[   66.588445] i8042: [65777] 00 <- i8042 (interrupt, 1, 12)
[   66.588517] i8042: [65777] d4 -> i8042 (command)
[   66.588706] i8042: [65777] f6 -> i8042 (parameter)
[   66.591704] i8042: [65780] fa <- i8042 (interrupt, 1, 12)
[   66.591785] i8042: [65780] d4 -> i8042 (command)
[   66.591974] i8042: [65780] f5 -> i8042 (parameter)
[   66.594824] i8042: [65783] fa <- i8042 (interrupt, 1, 12)
[   66.594900] i8042: [65783] d4 -> i8042 (command)
[   66.595089] i8042: [65783] e6 -> i8042 (parameter)
[   66.598049] i8042: [65786] fa <- i8042 (interrupt, 1, 12)
[   66.598107] i8042: [65786] d4 -> i8042 (command)
[   66.598295] i8042: [65786] e6 -> i8042 (parameter)
[   66.601275] i8042: [65789] fa <- i8042 (interrupt, 1, 12)
[   66.601351] i8042: [65789] d4 -> i8042 (command)
[   66.601539] i8042: [65789] e6 -> i8042 (parameter)
[   66.604496] i8042: [65793] fa <- i8042 (interrupt, 1, 12)
[   66.604569] i8042: [65793] d4 -> i8042 (command)
[   66.604757] i8042: [65793] e9 -> i8042 (parameter)
[   66.607665] i8042: [65796] fa <- i8042 (interrupt, 1, 12)
[   66.609161] i8042: [65797] 3c <- i8042 (interrupt, 1, 12)
[   66.610743] i8042: [65799] 03 <- i8042 (interrupt, 1, 12)
[   66.612336] i8042: [65800] 00 <- i8042 (interrupt, 1, 12)
[   66.612446] i8042: [65801] d4 -> i8042 (command)
[   66.612635] i8042: [65801] e6 -> i8042 (parameter)
[   66.615557] i8042: [65804] fa <- i8042 (interrupt, 1, 12)
[   66.615643] i8042: [65804] d4 -> i8042 (command)
[   66.615832] i8042: [65804] e8 -> i8042 (parameter)
[   66.618799] i8042: [65807] fa <- i8042 (interrupt, 1, 12)
[   66.618903] i8042: [65807] d4 -> i8042 (command)
[   66.619262] i8042: [65807] 00 -> i8042 (parameter)
[   66.621984] i8042: [65810] fa <- i8042 (interrupt, 1, 12)
[   66.622056] i8042: [65810] d4 -> i8042 (command)
[   66.622243] i8042: [65810] e8 -> i8042 (parameter)
[   66.625228] i8042: [65813] fa <- i8042 (interrupt, 1, 12)
[   66.625379] i8042: [65813] d4 -> i8042 (command)
[   66.625567] i8042: [65814] 00 -> i8042 (parameter)
[   66.628375] i8042: [65816] fa <- i8042 (interrupt, 1, 12)
[   66.628469] i8042: [65817] d4 -> i8042 (command)
[   66.628658] i8042: [65817] e8 -> i8042 (parameter)
[   66.631516] i8042: [65820] fa <- i8042 (interrupt, 1, 12)
[   66.631579] i8042: [65820] d4 -> i8042 (command)
[   66.631768] i8042: [65820] 00 -> i8042 (parameter)
[   66.634772] i8042: [65823] fa <- i8042 (interrupt, 1, 12)
[   66.634853] i8042: [65823] d4 -> i8042 (command)
[   66.635042] i8042: [65823] e8 -> i8042 (parameter)
[   66.637959] i8042: [65826] fa <- i8042 (interrupt, 1, 12)
[   66.638038] i8042: [65826] d4 -> i8042 (command)
[   66.638228] i8042: [65826] 01 -> i8042 (parameter)
[   66.641152] i8042: [65829] fa <- i8042 (interrupt, 1, 12)
[   66.641234] i8042: [65829] d4 -> i8042 (command)
[   66.641424] i8042: [65829] e9 -> i8042 (parameter)
[   66.644300] i8042: [65832] fa <- i8042 (interrupt, 1, 12)
[   66.645853] i8042: [65834] 5e <- i8042 (interrupt, 1, 12)
[   66.647476] i8042: [65836] 0f <- i8042 (interrupt, 1, 12)
[   66.649015] i8042: [65837] 01 <- i8042 (interrupt, 1, 12)
[   66.649080] i8042: [65837] d4 -> i8042 (command)
[   66.649270] i8042: [65837] f8 -> i8042 (parameter)
[   66.652221] i8042: [65840] fa <- i8042 (interrupt, 1, 12)
[   66.652286] i8042: [65840] d4 -> i8042 (command)
[   66.652533] i8042: [65841] 00 -> i8042 (parameter)
[   66.655507] i8042: [65844] fa <- i8042 (interrupt, 1, 12)
[   66.655615] i8042: [65844] d4 -> i8042 (command)
[   66.655861] i8042: [65844] f8 -> i8042 (parameter)
[   66.658649] i8042: [65847] fa <- i8042 (interrupt, 1, 12)
[   66.658715] i8042: [65847] d4 -> i8042 (command)
[   66.658906] i8042: [65847] 07 -> i8042 (parameter)
[   66.661912] i8042: [65850] fa <- i8042 (interrupt, 1, 12)
[   66.661997] i8042: [65850] d4 -> i8042 (command)
[   66.662186] i8042: [65850] f8 -> i8042 (parameter)
[   66.665076] i8042: [65853] fa <- i8042 (interrupt, 1, 12)
[   66.665162] i8042: [65853] d4 -> i8042 (command)
[   66.665351] i8042: [65853] 00 -> i8042 (parameter)
[   66.668319] i8042: [65856] fa <- i8042 (interrupt, 1, 12)
[   66.668461] i8042: [65857] d4 -> i8042 (command)
[   66.668651] i8042: [65857] f8 -> i8042 (parameter)
[   66.671507] i8042: [65860] fa <- i8042 (interrupt, 1, 12)
[   66.671607] i8042: [65860] d4 -> i8042 (command)
[   66.671797] i8042: [65860] 01 -> i8042 (parameter)
[   66.674624] i8042: [65863] fa <- i8042 (interrupt, 1, 12)
[   66.674725] i8042: [65863] d4 -> i8042 (command)
[   66.674915] i8042: [65863] e6 -> i8042 (parameter)
[   66.677818] i8042: [65866] fa <- i8042 (interrupt, 1, 12)
[   66.677922] i8042: [65866] d4 -> i8042 (command)
[   66.678112] i8042: [65866] f3 -> i8042 (parameter)
[   66.681010] i8042: [65869] fa <- i8042 (interrupt, 1, 12)
[   66.681094] i8042: [65869] d4 -> i8042 (command)
[   66.681283] i8042: [65869] 64 -> i8042 (parameter)
[   66.684205] i8042: [65872] fa <- i8042 (interrupt, 1, 12)
[   66.684449] i8042: [65873] d4 -> i8042 (command)
[   66.684641] i8042: [65873] e8 -> i8042 (parameter)
[   66.687366] i8042: [65875] fa <- i8042 (interrupt, 1, 12)
[   66.687474] i8042: [65876] d4 -> i8042 (command)
[   66.687665] i8042: [65876] 03 -> i8042 (parameter)
[   66.690552] i8042: [65879] fa <- i8042 (interrupt, 1, 12)
[   66.690637] i8042: [65879] d4 -> i8042 (command)
[   66.690826] i8042: [65879] e6 -> i8042 (parameter)
[   66.693759] i8042: [65882] fa <- i8042 (interrupt, 1, 12)
[   66.693825] i8042: [65882] d4 -> i8042 (command)
[   66.694071] i8042: [65882] f4 -> i8042 (parameter)
[   66.696940] i8042: [65885] fa <- i8042 (interrupt, 1, 12)
[   66.717746] i8042: [65906] 08 <- i8042 (interrupt, 1, 12)
[   66.719333] i8042: [65907] 00 <- i8042 (interrupt, 1, 12)
[   66.720884] i8042: [65909] 00 <- i8042 (interrupt, 1, 12)
[   66.726969] i8042: [65915] 54 <- i8042 (interrupt, 1, 12)
[   66.728704] i8042: [65917] 01 <- i8042 (interrupt, 1, 12)
[   66.730161] i8042: [65918] 00 <- i8042 (interrupt, 1, 12)
[   66.730194] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.731719] i8042: [65920] 10 <- i8042 (interrupt, 1, 12)
[   66.733304] i8042: [65921] 00 <- i8042 (interrupt, 1, 12)
[   66.734962] i8042: [65923] 00 <- i8042 (interrupt, 1, 12)
[   66.736510] i8042: [65925] 54 <- i8042 (interrupt, 1, 12)
[   66.738048] i8042: [65926] 13 <- i8042 (interrupt, 1, 12)
[   66.739697] i8042: [65928] 3f <- i8042 (interrupt, 1, 12)
[   66.739734] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.741287] i8042: [65929] 31 <- i8042 (interrupt, 1, 12)
[   66.742874] i8042: [65931] f1 <- i8042 (interrupt, 1, 12)
[   66.744401] i8042: [65932] 98 <- i8042 (interrupt, 1, 12)
[   66.745965] i8042: [65934] 54 <- i8042 (interrupt, 1, 12)
[   66.747593] i8042: [65936] 23 <- i8042 (interrupt, 1, 12)
[   66.749185] i8042: [65937] 3f <- i8042 (interrupt, 1, 12)
[   66.749223] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.750786] i8042: [65939] 31 <- i8042 (interrupt, 1, 12)
[   66.752372] i8042: [65940] 51 <- i8042 (interrupt, 1, 12)
[   66.753921] i8042: [65942] 98 <- i8042 (interrupt, 1, 12)
[   66.755506] i8042: [65944] 54 <- i8042 (interrupt, 1, 12)
[   66.757124] i8042: [65945] 23 <- i8042 (interrupt, 1, 12)
[   66.758699] i8042: [65947] 3f <- i8042 (interrupt, 1, 12)
[   66.758738] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.760279] i8042: [65948] 31 <- i8042 (interrupt, 1, 12)
[   66.761835] i8042: [65950] 91 <- i8042 (interrupt, 1, 12)
[   66.763434] i8042: [65952] 98 <- i8042 (interrupt, 1, 12)
[   66.765021] i8042: [65953] 54 <- i8042 (interrupt, 1, 12)
[   66.766610] i8042: [65955] 23 <- i8042 (interrupt, 1, 12)
[   66.768196] i8042: [65956] 20 <- i8042 (interrupt, 1, 12)
[   66.768232] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   66.768247] psmouse serio1: issuing reconnect request
[   66.768334] i8042: [65956] d4 -> i8042 (command)
[   66.768522] i8042: [65957] ff -> i8042 (parameter)
[   66.771406] i8042: [65960] fa <- i8042 (interrupt, 1, 12)
[   66.872336] i8042: [66060] aa <- i8042 (interrupt, 1, 12)
[   66.873978] i8042: [66062] 00 <- i8042 (interrupt, 1, 12)
[   66.874059] i8042: [66062] d4 -> i8042 (command)
[   66.874248] i8042: [66062] f6 -> i8042 (parameter)
[   66.877149] i8042: [66065] fa <- i8042 (interrupt, 1, 12)
[   66.877207] i8042: [66065] d4 -> i8042 (command)
[   66.877397] i8042: [66065] f5 -> i8042 (parameter)
[   66.880391] i8042: [66068] fa <- i8042 (interrupt, 1, 12)
[   66.880480] i8042: [66069] d4 -> i8042 (command)
[   66.880670] i8042: [66069] e6 -> i8042 (parameter)
[   66.883542] i8042: [66072] fa <- i8042 (interrupt, 1, 12)
[   66.883634] i8042: [66072] d4 -> i8042 (command)
[   66.883824] i8042: [66072] e6 -> i8042 (parameter)
[   66.886733] i8042: [66075] fa <- i8042 (interrupt, 1, 12)
[   66.886794] i8042: [66075] d4 -> i8042 (command)
[   66.886984] i8042: [66075] e6 -> i8042 (parameter)
[   66.889965] i8042: [66078] fa <- i8042 (interrupt, 1, 12)
[   66.890044] i8042: [66078] d4 -> i8042 (command)
[   66.890234] i8042: [66078] e9 -> i8042 (parameter)
[   66.893125] i8042: [66081] fa <- i8042 (interrupt, 1, 12)
[   66.894729] i8042: [66083] 3c <- i8042 (interrupt, 1, 12)
[   66.896294] i8042: [66084] 03 <- i8042 (interrupt, 1, 12)
[   66.897894] i8042: [66086] 00 <- i8042 (interrupt, 1, 12)
[   66.897975] i8042: [66086] d4 -> i8042 (command)
[   66.898164] i8042: [66086] e6 -> i8042 (parameter)
[   66.901106] i8042: [66089] fa <- i8042 (interrupt, 1, 12)
[   66.901210] i8042: [66089] d4 -> i8042 (command)
[   66.901399] i8042: [66089] e8 -> i8042 (parameter)
[   66.904297] i8042: [66092] fa <- i8042 (interrupt, 1, 12)
[   66.904373] i8042: [66092] d4 -> i8042 (command)
[   66.904561] i8042: [66093] 00 -> i8042 (parameter)
[   66.907540] i8042: [66096] fa <- i8042 (interrupt, 1, 12)
[   66.907721] i8042: [66096] d4 -> i8042 (command)
[   66.907967] i8042: [66096] e8 -> i8042 (parameter)
[   66.910734] i8042: [66099] fa <- i8042 (interrupt, 1, 12)
[   66.910823] i8042: [66099] d4 -> i8042 (command)
[   66.911013] i8042: [66099] 00 -> i8042 (parameter)
[   66.913827] i8042: [66102] fa <- i8042 (interrupt, 1, 12)
[   66.913891] i8042: [66102] d4 -> i8042 (command)
[   66.914080] i8042: [66102] e8 -> i8042 (parameter)
[   66.917078] i8042: [66105] fa <- i8042 (interrupt, 1, 12)
[   66.917157] i8042: [66105] d4 -> i8042 (command)
[   66.917346] i8042: [66105] 00 -> i8042 (parameter)
[   66.920246] i8042: [66108] fa <- i8042 (interrupt, 1, 12)
[   66.920557] i8042: [66109] d4 -> i8042 (command)
[   66.920748] i8042: [66109] e8 -> i8042 (parameter)
[   66.923430] i8042: [66112] fa <- i8042 (interrupt, 1, 12)
[   66.923544] i8042: [66112] d4 -> i8042 (command)
[   66.923734] i8042: [66112] 01 -> i8042 (parameter)
[   66.926634] i8042: [66115] fa <- i8042 (interrupt, 1, 12)
[   66.926692] i8042: [66115] d4 -> i8042 (command)
[   66.926881] i8042: [66115] e9 -> i8042 (parameter)
[   66.929797] i8042: [66118] fa <- i8042 (interrupt, 1, 12)
[   66.931365] i8042: [66119] 5e <- i8042 (interrupt, 1, 12)
[   66.932946] i8042: [66121] 0f <- i8042 (interrupt, 1, 12)
[   66.934527] i8042: [66123] 01 <- i8042 (interrupt, 1, 12)
[   66.934593] i8042: [66123] d4 -> i8042 (command)
[   66.934782] i8042: [66123] f8 -> i8042 (parameter)
[   66.937747] i8042: [66126] fa <- i8042 (interrupt, 1, 12)
[   66.937809] i8042: [66126] d4 -> i8042 (command)
[   66.937997] i8042: [66126] 00 -> i8042 (parameter)
[   66.940937] i8042: [66129] fa <- i8042 (interrupt, 1, 12)
[   66.940994] i8042: [66129] d4 -> i8042 (command)
[   66.941182] i8042: [66129] f8 -> i8042 (parameter)
[   66.944168] i8042: [66132] fa <- i8042 (interrupt, 1, 12)
[   66.944215] i8042: [66132] d4 -> i8042 (command)
[   66.944456] i8042: [66132] 07 -> i8042 (parameter)
[   66.947403] i8042: [66136] fa <- i8042 (interrupt, 1, 12)
[   66.947501] i8042: [66136] d4 -> i8042 (command)
[   66.947691] i8042: [66136] f8 -> i8042 (parameter)
[   66.950582] i8042: [66139] fa <- i8042 (interrupt, 1, 12)
[   66.950634] i8042: [66139] d4 -> i8042 (command)
[   66.950819] i8042: [66139] 00 -> i8042 (parameter)
[   66.953772] i8042: [66142] fa <- i8042 (interrupt, 1, 12)
[   66.953934] i8042: [66142] d4 -> i8042 (command)
[   66.954124] i8042: [66142] f8 -> i8042 (parameter)
[   66.956982] i8042: [66145] fa <- i8042 (interrupt, 1, 12)
[   66.957086] i8042: [66145] d4 -> i8042 (command)
[   66.957275] i8042: [66145] 01 -> i8042 (parameter)
[   66.960166] i8042: [66148] fa <- i8042 (interrupt, 1, 12)
[   66.960241] i8042: [66148] d4 -> i8042 (command)
[   66.960428] i8042: [66149] e6 -> i8042 (parameter)
[   66.963298] i8042: [66151] fa <- i8042 (interrupt, 1, 12)
[   66.963353] i8042: [66151] d4 -> i8042 (command)
[   66.963542] i8042: [66152] f3 -> i8042 (parameter)
[   66.966535] i8042: [66155] fa <- i8042 (interrupt, 1, 12)
[   66.966632] i8042: [66155] d4 -> i8042 (command)
[   66.966822] i8042: [66155] 64 -> i8042 (parameter)
[   66.969763] i8042: [66158] fa <- i8042 (interrupt, 1, 12)
[   66.969845] i8042: [66158] d4 -> i8042 (command)
[   66.970034] i8042: [66158] e8 -> i8042 (parameter)
[   66.972966] i8042: [66161] fa <- i8042 (interrupt, 1, 12)
[   66.973041] i8042: [66161] d4 -> i8042 (command)
[   66.973230] i8042: [66161] 03 -> i8042 (parameter)
[   66.976146] i8042: [66164] fa <- i8042 (interrupt, 1, 12)
[   66.976340] i8042: [66164] d4 -> i8042 (command)
[   66.976528] i8042: [66165] e6 -> i8042 (parameter)
[   66.979336] i8042: [66167] fa <- i8042 (interrupt, 1, 12)
[   66.979438] i8042: [66168] d4 -> i8042 (command)
[   66.979628] i8042: [66168] f4 -> i8042 (parameter)
[   66.982465] i8042: [66171] fa <- i8042 (interrupt, 1, 12)
[   67.003213] i8042: [66191] 08 <- i8042 (interrupt, 1, 12)
[   67.004806] i8042: [66193] 00 <- i8042 (interrupt, 1, 12)
[   67.006458] i8042: [66195] 00 <- i8042 (interrupt, 1, 12)
[   67.013038] i8042: [66201] 44 <- i8042 (interrupt, 1, 12)
[   67.014617] i8042: [66203] 01 <- i8042 (interrupt, 1, 12)
[   67.016209] i8042: [66204] 00 <- i8042 (interrupt, 1, 12)
[   67.016239] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.017788] i8042: [66206] 10 <- i8042 (interrupt, 1, 12)
[   67.019333] i8042: [66207] 00 <- i8042 (interrupt, 1, 12)
[   67.020918] i8042: [66209] 00 <- i8042 (interrupt, 1, 12)
[   67.022515] i8042: [66211] 44 <- i8042 (interrupt, 1, 12)
[   67.024197] i8042: [66212] 14 <- i8042 (interrupt, 1, 12)
[   67.025665] i8042: [66214] d9 <- i8042 (interrupt, 1, 12)
[   67.025696] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.027324] i8042: [66215] 31 <- i8042 (interrupt, 1, 12)
[   67.028904] i8042: [66217] c2 <- i8042 (interrupt, 1, 12)
[   67.030506] i8042: [66219] af <- i8042 (interrupt, 1, 12)
[   67.032042] i8042: [66220] 44 <- i8042 (interrupt, 1, 12)
[   67.033620] i8042: [66222] 24 <- i8042 (interrupt, 1, 12)
[   67.035165] i8042: [66223] d9 <- i8042 (interrupt, 1, 12)
[   67.035196] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.036748] i8042: [66225] 31 <- i8042 (interrupt, 1, 12)
[   67.038334] i8042: [66226] 02 <- i8042 (interrupt, 1, 12)
[   67.040019] i8042: [66228] af <- i8042 (interrupt, 1, 12)
[   67.041582] i8042: [66230] 54 <- i8042 (interrupt, 1, 12)
[   67.043130] i8042: [66231] 24 <- i8042 (interrupt, 1, 12)
[   67.044749] i8042: [66233] f0 <- i8042 (interrupt, 1, 12)
[   67.044784] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.046349] i8042: [66234] 31 <- i8042 (interrupt, 1, 12)
[   67.047932] i8042: [66236] 52 <- i8042 (interrupt, 1, 12)
[   67.049540] i8042: [66238] b3 <- i8042 (interrupt, 1, 12)
[   67.051002] i8042: [66239] 54 <- i8042 (interrupt, 1, 12)
[   67.052595] i8042: [66241] 25 <- i8042 (interrupt, 1, 12)
[   67.054223] i8042: [66242] 05 <- i8042 (interrupt, 1, 12)
[   67.054248] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.054256] psmouse serio1: issuing reconnect request
[   67.054305] i8042: [66242] d4 -> i8042 (command)
[   67.054490] i8042: [66242] ff -> i8042 (parameter)
[   67.057534] i8042: [66246] fa <- i8042 (interrupt, 1, 12)
[   67.158409] i8042: [66346] aa <- i8042 (interrupt, 1, 12)
[   67.159928] i8042: [66348] 00 <- i8042 (interrupt, 1, 12)
[   67.160284] i8042: [66348] d4 -> i8042 (command)
[   67.160473] i8042: [66349] f6 -> i8042 (parameter)
[   67.163206] i8042: [66351] fa <- i8042 (interrupt, 1, 12)
[   67.163264] i8042: [66351] d4 -> i8042 (command)
[   67.163497] i8042: [66352] f5 -> i8042 (parameter)
[   67.166365] i8042: [66354] fa <- i8042 (interrupt, 1, 12)
[   67.166476] i8042: [66355] d4 -> i8042 (command)
[   67.166661] i8042: [66355] e6 -> i8042 (parameter)
[   67.169539] i8042: [66358] fa <- i8042 (interrupt, 1, 12)
[   67.169575] i8042: [66358] d4 -> i8042 (command)
[   67.169759] i8042: [66358] e6 -> i8042 (parameter)
[   67.172789] i8042: [66361] fa <- i8042 (interrupt, 1, 12)
[   67.172851] i8042: [66361] d4 -> i8042 (command)
[   67.173035] i8042: [66361] e6 -> i8042 (parameter)
[   67.175926] i8042: [66364] fa <- i8042 (interrupt, 1, 12)
[   67.175984] i8042: [66364] d4 -> i8042 (command)
[   67.176173] i8042: [66364] e9 -> i8042 (parameter)
[   67.179136] i8042: [66367] fa <- i8042 (interrupt, 1, 12)
[   67.180729] i8042: [66369] 3c <- i8042 (interrupt, 1, 12)
[   67.182342] i8042: [66370] 03 <- i8042 (interrupt, 1, 12)
[   67.183924] i8042: [66372] 00 <- i8042 (interrupt, 1, 12)
[   67.184030] i8042: [66372] d4 -> i8042 (command)
[   67.184218] i8042: [66372] e6 -> i8042 (parameter)
[   67.187099] i8042: [66375] fa <- i8042 (interrupt, 1, 12)
[   67.187163] i8042: [66375] d4 -> i8042 (command)
[   67.187408] i8042: [66375] e8 -> i8042 (parameter)
[   67.190335] i8042: [66378] fa <- i8042 (interrupt, 1, 12)
[   67.190540] i8042: [66379] d4 -> i8042 (command)
[   67.190730] i8042: [66379] 00 -> i8042 (parameter)
[   67.193504] i8042: [66382] fa <- i8042 (interrupt, 1, 12)
[   67.193646] i8042: [66382] d4 -> i8042 (command)
[   67.193837] i8042: [66382] e8 -> i8042 (parameter)
[   67.196680] i8042: [66385] fa <- i8042 (interrupt, 1, 12)
[   67.196756] i8042: [66385] d4 -> i8042 (command)
[   67.197002] i8042: [66385] 00 -> i8042 (parameter)
[   67.199905] i8042: [66388] fa <- i8042 (interrupt, 1, 12)
[   67.200009] i8042: [66388] d4 -> i8042 (command)
[   67.200199] i8042: [66388] e8 -> i8042 (parameter)
[   67.203078] i8042: [66391] fa <- i8042 (interrupt, 1, 12)
[   67.203168] i8042: [66391] d4 -> i8042 (command)
[   67.203358] i8042: [66391] 00 -> i8042 (parameter)
[   67.206275] i8042: [66394] fa <- i8042 (interrupt, 1, 12)
[   67.206351] i8042: [66394] d4 -> i8042 (command)
[   67.206541] i8042: [66395] e8 -> i8042 (parameter)
[   67.209479] i8042: [66397] fa <- i8042 (interrupt, 1, 12)
[   67.209556] i8042: [66398] d4 -> i8042 (command)
[   67.209746] i8042: [66398] 01 -> i8042 (parameter)
[   67.212615] i8042: [66401] fa <- i8042 (interrupt, 1, 12)
[   67.212670] i8042: [66401] d4 -> i8042 (command)
[   67.212859] i8042: [66401] e9 -> i8042 (parameter)
[   67.215878] i8042: [66404] fa <- i8042 (interrupt, 1, 12)
[   67.217450] i8042: [66406] 5e <- i8042 (interrupt, 1, 12)
[   67.218998] i8042: [66407] 0f <- i8042 (interrupt, 1, 12)
[   67.220574] i8042: [66409] 01 <- i8042 (interrupt, 1, 12)
[   67.220642] i8042: [66409] d4 -> i8042 (command)
[   67.220832] i8042: [66409] f8 -> i8042 (parameter)
[   67.223753] i8042: [66412] fa <- i8042 (interrupt, 1, 12)
[   67.225693] i8042: [66414] d4 -> i8042 (command)
[   67.225894] i8042: [66414] 00 -> i8042 (parameter)
[   67.228487] i8042: [66417] fa <- i8042 (interrupt, 1, 12)
[   67.228527] i8042: [66417] d4 -> i8042 (command)
[   67.228712] i8042: [66417] f8 -> i8042 (parameter)
[   67.231716] i8042: [66420] fa <- i8042 (interrupt, 1, 12)
[   67.231764] i8042: [66420] d4 -> i8042 (command)
[   67.231949] i8042: [66420] 07 -> i8042 (parameter)
[   67.234896] i8042: [66423] fa <- i8042 (interrupt, 1, 12)
[   67.234979] i8042: [66423] d4 -> i8042 (command)
[   67.235168] i8042: [66423] f8 -> i8042 (parameter)
[   67.238071] i8042: [66426] fa <- i8042 (interrupt, 1, 12)
[   67.238146] i8042: [66426] d4 -> i8042 (command)
[   67.238333] i8042: [66426] 00 -> i8042 (parameter)
[   67.241232] i8042: [66429] fa <- i8042 (interrupt, 1, 12)
[   67.241274] i8042: [66429] d4 -> i8042 (command)
[   67.241516] i8042: [66430] f8 -> i8042 (parameter)
[   67.244424] i8042: [66432] fa <- i8042 (interrupt, 1, 12)
[   67.244456] i8042: [66433] d4 -> i8042 (command)
[   67.244698] i8042: [66433] 01 -> i8042 (parameter)
[   67.247683] i8042: [66436] fa <- i8042 (interrupt, 1, 12)
[   67.247739] i8042: [66436] d4 -> i8042 (command)
[   67.247980] i8042: [66436] e6 -> i8042 (parameter)
[   67.250815] i8042: [66439] fa <- i8042 (interrupt, 1, 12)
[   67.250868] i8042: [66439] d4 -> i8042 (command)
[   67.251054] i8042: [66439] f3 -> i8042 (parameter)
[   67.254011] i8042: [66442] fa <- i8042 (interrupt, 1, 12)
[   67.254052] i8042: [66442] d4 -> i8042 (command)
[   67.254295] i8042: [66442] 64 -> i8042 (parameter)
[   67.257202] i8042: [66445] fa <- i8042 (interrupt, 1, 12)
[   67.257245] i8042: [66445] d4 -> i8042 (command)
[   67.257486] i8042: [66446] e8 -> i8042 (parameter)
[   67.260407] i8042: [66449] fa <- i8042 (interrupt, 1, 12)
[   67.263382] i8042: [66451] d4 -> i8042 (command)
[   67.263576] i8042: [66452] 03 -> i8042 (parameter)
[   67.266111] i8042: [66454] fa <- i8042 (interrupt, 1, 12)
[   67.266179] i8042: [66454] d4 -> i8042 (command)
[   67.266364] i8042: [66454] e6 -> i8042 (parameter)
[   67.269303] i8042: [66457] fa <- i8042 (interrupt, 1, 12)
[   67.269341] i8042: [66457] d4 -> i8042 (command)
[   67.269526] i8042: [66458] f4 -> i8042 (parameter)
[   67.272494] i8042: [66461] fa <- i8042 (interrupt, 1, 12)
[   67.293736] i8042: [66482] 08 <- i8042 (interrupt, 1, 12)
[   67.295318] i8042: [66483] 00 <- i8042 (interrupt, 1, 12)
[   67.296908] i8042: [66485] 00 <- i8042 (interrupt, 1, 12)
[   67.303611] i8042: [66492] 54 <- i8042 (interrupt, 1, 12)
[   67.305119] i8042: [66493] 01 <- i8042 (interrupt, 1, 12)
[   67.306694] i8042: [66495] 00 <- i8042 (interrupt, 1, 12)
[   67.306714] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.308278] i8042: [66496] 10 <- i8042 (interrupt, 1, 12)
[   67.309857] i8042: [66498] 00 <- i8042 (interrupt, 1, 12)
[   67.311447] i8042: [66500] 00 <- i8042 (interrupt, 1, 12)
[   67.313023] i8042: [66501] 54 <- i8042 (interrupt, 1, 12)
[   67.314604] i8042: [66503] 25 <- i8042 (interrupt, 1, 12)
[   67.316199] i8042: [66504] e0 <- i8042 (interrupt, 1, 12)
[   67.316224] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.317773] i8042: [66506] 31 <- i8042 (interrupt, 1, 12)
[   67.319363] i8042: [66507] 01 <- i8042 (interrupt, 1, 12)
[   67.320937] i8042: [66509] 1f <- i8042 (interrupt, 1, 12)
[   67.322537] i8042: [66511] 44 <- i8042 (interrupt, 1, 12)
[   67.324164] i8042: [66512] 25 <- i8042 (interrupt, 1, 12)
[   67.325702] i8042: [66514] e0 <- i8042 (interrupt, 1, 12)
[   67.325723] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.327279] i8042: [66515] 31 <- i8042 (interrupt, 1, 12)
[   67.328959] i8042: [66517] 41 <- i8042 (interrupt, 1, 12)
[   67.330571] i8042: [66519] 1f <- i8042 (interrupt, 1, 12)
[   67.332065] i8042: [66520] 54 <- i8042 (interrupt, 1, 12)
[   67.333623] i8042: [66522] 25 <- i8042 (interrupt, 1, 12)
[   67.335321] i8042: [66523] a1 <- i8042 (interrupt, 1, 12)
[   67.335356] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.336857] i8042: [66525] 31 <- i8042 (interrupt, 1, 12)
[   67.338413] i8042: [66526] 71 <- i8042 (interrupt, 1, 12)
[   67.339997] i8042: [66528] 09 <- i8042 (interrupt, 1, 12)
[   67.341526] i8042: [66530] 54 <- i8042 (interrupt, 1, 12)
[   67.343162] i8042: [66531] 25 <- i8042 (interrupt, 1, 12)
[   67.344686] i8042: [66533] 82 <- i8042 (interrupt, 1, 12)
[   67.344718] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.344730] psmouse serio1: issuing reconnect request
[   67.344796] i8042: [66533] d4 -> i8042 (command)
[   67.344985] i8042: [66533] ff -> i8042 (parameter)
[   67.347976] i8042: [66536] fa <- i8042 (interrupt, 1, 12)
[   67.448869] i8042: [66637] aa <- i8042 (interrupt, 1, 12)
[   67.450450] i8042: [66639] 00 <- i8042 (interrupt, 1, 12)
[   67.450508] i8042: [66639] d4 -> i8042 (command)
[   67.450691] i8042: [66639] f6 -> i8042 (parameter)
[   67.453658] i8042: [66642] fa <- i8042 (interrupt, 1, 12)
[   67.453705] i8042: [66642] d4 -> i8042 (command)
[   67.453890] i8042: [66642] f5 -> i8042 (parameter)
[   67.456851] i8042: [66645] fa <- i8042 (interrupt, 1, 12)
[   67.456903] i8042: [66645] d4 -> i8042 (command)
[   67.457144] i8042: [66645] e6 -> i8042 (parameter)
[   67.460047] i8042: [66648] fa <- i8042 (interrupt, 1, 12)
[   67.460120] i8042: [66648] d4 -> i8042 (command)
[   67.460305] i8042: [66648] e6 -> i8042 (parameter)
[   67.463287] i8042: [66651] fa <- i8042 (interrupt, 1, 12)
[   67.463325] i8042: [66651] d4 -> i8042 (command)
[   67.463509] i8042: [66651] e6 -> i8042 (parameter)
[   67.466445] i8042: [66655] fa <- i8042 (interrupt, 1, 12)
[   67.466501] i8042: [66655] d4 -> i8042 (command)
[   67.466688] i8042: [66655] e9 -> i8042 (parameter)
[   67.469633] i8042: [66658] fa <- i8042 (interrupt, 1, 12)
[   67.471202] i8042: [66659] 3c <- i8042 (interrupt, 1, 12)
[   67.472774] i8042: [66661] 03 <- i8042 (interrupt, 1, 12)
[   67.474358] i8042: [66662] 00 <- i8042 (interrupt, 1, 12)
[   67.474427] i8042: [66663] d4 -> i8042 (command)
[   67.474613] i8042: [66663] e6 -> i8042 (parameter)
[   67.477610] i8042: [66666] fa <- i8042 (interrupt, 1, 12)
[   67.477670] i8042: [66666] d4 -> i8042 (command)
[   67.477911] i8042: [66666] e8 -> i8042 (parameter)
[   67.480825] i8042: [66669] fa <- i8042 (interrupt, 1, 12)
[   67.480913] i8042: [66669] d4 -> i8042 (command)
[   67.481098] i8042: [66669] 00 -> i8042 (parameter)
[   67.483969] i8042: [66672] fa <- i8042 (interrupt, 1, 12)
[   67.484025] i8042: [66672] d4 -> i8042 (command)
[   67.484210] i8042: [66672] e8 -> i8042 (parameter)
[   67.487218] i8042: [66675] fa <- i8042 (interrupt, 1, 12)
[   67.487278] i8042: [66675] d4 -> i8042 (command)
[   67.487465] i8042: [66676] 00 -> i8042 (parameter)
[   67.490350] i8042: [66678] fa <- i8042 (interrupt, 1, 12)
[   67.490437] i8042: [66678] d4 -> i8042 (command)
[   67.490623] i8042: [66679] e8 -> i8042 (parameter)
[   67.493564] i8042: [66682] fa <- i8042 (interrupt, 1, 12)
[   67.493614] i8042: [66682] d4 -> i8042 (command)
[   67.493799] i8042: [66682] 00 -> i8042 (parameter)
[   67.496738] i8042: [66685] fa <- i8042 (interrupt, 1, 12)
[   67.496787] i8042: [66685] d4 -> i8042 (command)
[   67.496972] i8042: [66685] e8 -> i8042 (parameter)
[   67.500004] i8042: [66688] fa <- i8042 (interrupt, 1, 12)
[   67.500054] i8042: [66688] d4 -> i8042 (command)
[   67.500239] i8042: [66688] 01 -> i8042 (parameter)
[   67.503186] i8042: [66691] fa <- i8042 (interrupt, 1, 12)
[   67.503248] i8042: [66691] d4 -> i8042 (command)
[   67.503432] i8042: [66691] e9 -> i8042 (parameter)
[   67.506326] i8042: [66694] fa <- i8042 (interrupt, 1, 12)
[   67.507887] i8042: [66696] 5e <- i8042 (interrupt, 1, 12)
[   67.509490] i8042: [66698] 0f <- i8042 (interrupt, 1, 12)
[   67.511123] i8042: [66699] 01 <- i8042 (interrupt, 1, 12)
[   67.511185] i8042: [66699] d4 -> i8042 (command)
[   67.511370] i8042: [66699] f8 -> i8042 (parameter)
[   67.514320] i8042: [66702] fa <- i8042 (interrupt, 1, 12)
[   67.514382] i8042: [66702] d4 -> i8042 (command)
[   67.514567] i8042: [66703] 00 -> i8042 (parameter)
[   67.517476] i8042: [66706] fa <- i8042 (interrupt, 1, 12)
[   67.517531] i8042: [66706] d4 -> i8042 (command)
[   67.517998] i8042: [66706] f8 -> i8042 (parameter)
[   67.520643] i8042: [66709] fa <- i8042 (interrupt, 1, 12)
[   67.520693] i8042: [66709] d4 -> i8042 (command)
[   67.520878] i8042: [66709] 07 -> i8042 (parameter)
[   67.523902] i8042: [66712] fa <- i8042 (interrupt, 1, 12)
[   67.524009] i8042: [66712] d4 -> i8042 (command)
[   67.524196] i8042: [66712] f8 -> i8042 (parameter)
[   67.527032] i8042: [66715] fa <- i8042 (interrupt, 1, 12)
[   67.527094] i8042: [66715] d4 -> i8042 (command)
[   67.527280] i8042: [66715] 00 -> i8042 (parameter)
[   67.530226] i8042: [66718] fa <- i8042 (interrupt, 1, 12)
[   67.530285] i8042: [66718] d4 -> i8042 (command)
[   67.530470] i8042: [66718] f8 -> i8042 (parameter)
[   67.533492] i8042: [66722] fa <- i8042 (interrupt, 1, 12)
[   67.533565] i8042: [66722] d4 -> i8042 (command)
[   67.533751] i8042: [66722] 01 -> i8042 (parameter)
[   67.536658] i8042: [66725] fa <- i8042 (interrupt, 1, 12)
[   67.536936] i8042: [66725] d4 -> i8042 (command)
[   67.537123] i8042: [66725] e6 -> i8042 (parameter)
[   67.539873] i8042: [66728] fa <- i8042 (interrupt, 1, 12)
[   67.539936] i8042: [66728] d4 -> i8042 (command)
[   67.540122] i8042: [66728] f3 -> i8042 (parameter)
[   67.543043] i8042: [66731] fa <- i8042 (interrupt, 1, 12)
[   67.543100] i8042: [66731] d4 -> i8042 (command)
[   67.543285] i8042: [66731] 64 -> i8042 (parameter)
[   67.546262] i8042: [66734] fa <- i8042 (interrupt, 1, 12)
[   67.546327] i8042: [66734] d4 -> i8042 (command)
[   67.546512] i8042: [66735] e8 -> i8042 (parameter)
[   67.549407] i8042: [66737] fa <- i8042 (interrupt, 1, 12)
[   67.549505] i8042: [66738] d4 -> i8042 (command)
[   67.549691] i8042: [66738] 03 -> i8042 (parameter)
[   67.552589] i8042: [66741] fa <- i8042 (interrupt, 1, 12)
[   67.552640] i8042: [66741] d4 -> i8042 (command)
[   67.552882] i8042: [66741] e6 -> i8042 (parameter)
[   67.555818] i8042: [66744] fa <- i8042 (interrupt, 1, 12)
[   67.555879] i8042: [66744] d4 -> i8042 (command)
[   67.556065] i8042: [66744] f4 -> i8042 (parameter)
[   67.559010] i8042: [66747] fa <- i8042 (interrupt, 1, 12)
[   67.579217] i8042: [66767] 08 <- i8042 (interrupt, 1, 12)
[   67.580843] i8042: [66769] 00 <- i8042 (interrupt, 1, 12)
[   67.582458] i8042: [66771] 00 <- i8042 (interrupt, 1, 12)
[   67.589042] i8042: [66777] 54 <- i8042 (interrupt, 1, 12)
[   67.590651] i8042: [66779] 01 <- i8042 (interrupt, 1, 12)
[   67.592216] i8042: [66780] 00 <- i8042 (interrupt, 1, 12)
[   67.592239] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.593792] i8042: [66782] 10 <- i8042 (interrupt, 1, 12)
[   67.595371] i8042: [66783] 00 <- i8042 (interrupt, 1, 12)
[   67.596923] i8042: [66785] 00 <- i8042 (interrupt, 1, 12)
[   67.598553] i8042: [66787] 54 <- i8042 (interrupt, 1, 12)
[   67.600084] i8042: [66788] 22 <- i8042 (interrupt, 1, 12)
[   67.601733] i8042: [66790] e6 <- i8042 (interrupt, 1, 12)
[   67.601760] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.603258] i8042: [66791] 31 <- i8042 (interrupt, 1, 12)
[   67.604874] i8042: [66793] 51 <- i8042 (interrupt, 1, 12)
[   67.606451] i8042: [66795] d3 <- i8042 (interrupt, 1, 12)
[   67.608036] i8042: [66796] 54 <- i8042 (interrupt, 1, 12)
[   67.609646] i8042: [66798] 22 <- i8042 (interrupt, 1, 12)
[   67.611237] i8042: [66799] e6 <- i8042 (interrupt, 1, 12)
[   67.611270] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.612772] i8042: [66801] 31 <- i8042 (interrupt, 1, 12)
[   67.614342] i8042: [66802] a1 <- i8042 (interrupt, 1, 12)
[   67.615916] i8042: [66804] d3 <- i8042 (interrupt, 1, 12)
[   67.617787] i8042: [66806] 54 <- i8042 (interrupt, 1, 12)
[   67.619123] i8042: [66807] 22 <- i8042 (interrupt, 1, 12)
[   67.620731] i8042: [66809] e6 <- i8042 (interrupt, 1, 12)
[   67.620758] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.622319] i8042: [66810] 31 <- i8042 (interrupt, 1, 12)
[   67.623898] i8042: [66812] c1 <- i8042 (interrupt, 1, 12)
[   67.625498] i8042: [66814] d3 <- i8042 (interrupt, 1, 12)
[   67.627069] i8042: [66815] 54 <- i8042 (interrupt, 1, 12)
[   67.628647] i8042: [66817] 22 <- i8042 (interrupt, 1, 12)
[   67.630201] i8042: [66818] e6 <- i8042 (interrupt, 1, 12)
[   67.630230] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.630241] psmouse serio1: issuing reconnect request
[   67.630346] i8042: [66818] d4 -> i8042 (command)
[   67.630591] i8042: [66819] ff -> i8042 (parameter)
[   67.633535] i8042: [66822] fa <- i8042 (interrupt, 1, 12)
[   67.734472] i8042: [66923] aa <- i8042 (interrupt, 1, 12)
[   67.736047] i8042: [66924] 00 <- i8042 (interrupt, 1, 12)
[   67.736129] i8042: [66924] d4 -> i8042 (command)
[   67.736318] i8042: [66924] f6 -> i8042 (parameter)
[   67.739253] i8042: [66927] fa <- i8042 (interrupt, 1, 12)
[   67.739337] i8042: [66927] d4 -> i8042 (command)
[   67.739526] i8042: [66927] f5 -> i8042 (parameter)
[   67.742456] i8042: [66931] fa <- i8042 (interrupt, 1, 12)
[   67.742567] i8042: [66931] d4 -> i8042 (command)
[   67.742814] i8042: [66931] e6 -> i8042 (parameter)
[   67.745543] i8042: [66934] fa <- i8042 (interrupt, 1, 12)
[   67.745624] i8042: [66934] d4 -> i8042 (command)
[   67.745813] i8042: [66934] e6 -> i8042 (parameter)
[   67.748836] i8042: [66937] fa <- i8042 (interrupt, 1, 12)
[   67.748917] i8042: [66937] d4 -> i8042 (command)
[   67.749107] i8042: [66937] e6 -> i8042 (parameter)
[   67.752029] i8042: [66940] fa <- i8042 (interrupt, 1, 12)
[   67.752112] i8042: [66940] d4 -> i8042 (command)
[   67.752302] i8042: [66940] e9 -> i8042 (parameter)
[   67.755227] i8042: [66943] fa <- i8042 (interrupt, 1, 12)
[   67.756796] i8042: [66945] 3c <- i8042 (interrupt, 1, 12)
[   67.758374] i8042: [66946] 03 <- i8042 (interrupt, 1, 12)
[   67.759963] i8042: [66948] 00 <- i8042 (interrupt, 1, 12)
[   67.760048] i8042: [66948] d4 -> i8042 (command)
[   67.760237] i8042: [66948] e6 -> i8042 (parameter)
[   67.763161] i8042: [66951] fa <- i8042 (interrupt, 1, 12)
[   67.763245] i8042: [66951] d4 -> i8042 (command)
[   67.763434] i8042: [66951] e8 -> i8042 (parameter)
[   67.766262] i8042: [66954] fa <- i8042 (interrupt, 1, 12)
[   67.766326] i8042: [66954] d4 -> i8042 (command)
[   67.766515] i8042: [66954] 00 -> i8042 (parameter)
[   67.769469] i8042: [66958] fa <- i8042 (interrupt, 1, 12)
[   67.769531] i8042: [66958] d4 -> i8042 (command)
[   67.769724] i8042: [66958] e8 -> i8042 (parameter)
[   67.772650] i8042: [66961] fa <- i8042 (interrupt, 1, 12)
[   67.772714] i8042: [66961] d4 -> i8042 (command)
[   67.772902] i8042: [66961] 00 -> i8042 (parameter)
[   67.775947] i8042: [66964] fa <- i8042 (interrupt, 1, 12)
[   67.776028] i8042: [66964] d4 -> i8042 (command)
[   67.776213] i8042: [66964] e8 -> i8042 (parameter)
[   67.779128] i8042: [66967] fa <- i8042 (interrupt, 1, 12)
[   67.779230] i8042: [66967] d4 -> i8042 (command)
[   67.779419] i8042: [66968] 00 -> i8042 (parameter)
[   67.782329] i8042: [66970] fa <- i8042 (interrupt, 1, 12)
[   67.782441] i8042: [66971] d4 -> i8042 (command)
[   67.782631] i8042: [66971] e8 -> i8042 (parameter)
[   67.785524] i8042: [66974] fa <- i8042 (interrupt, 1, 12)
[   67.785597] i8042: [66974] d4 -> i8042 (command)
[   67.785783] i8042: [66974] 01 -> i8042 (parameter)
[   67.788661] i8042: [66977] fa <- i8042 (interrupt, 1, 12)
[   67.788743] i8042: [66977] d4 -> i8042 (command)
[   67.788932] i8042: [66977] e9 -> i8042 (parameter)
[   67.791895] i8042: [66980] fa <- i8042 (interrupt, 1, 12)
[   67.793482] i8042: [66982] 5e <- i8042 (interrupt, 1, 12)
[   67.795062] i8042: [66983] 0f <- i8042 (interrupt, 1, 12)
[   67.796555] i8042: [66985] 01 <- i8042 (interrupt, 1, 12)
[   67.796644] i8042: [66985] d4 -> i8042 (command)
[   67.796834] i8042: [66985] f8 -> i8042 (parameter)
[   67.799873] i8042: [66988] fa <- i8042 (interrupt, 1, 12)
[   67.799981] i8042: [66988] d4 -> i8042 (command)
[   67.800171] i8042: [66988] 00 -> i8042 (parameter)
[   67.802993] i8042: [66991] fa <- i8042 (interrupt, 1, 12)
[   67.803032] i8042: [66991] d4 -> i8042 (command)
[   67.803216] i8042: [66991] f8 -> i8042 (parameter)
[   67.806255] i8042: [66994] fa <- i8042 (interrupt, 1, 12)
[   67.806384] i8042: [66994] d4 -> i8042 (command)
[   67.806573] i8042: [66995] 07 -> i8042 (parameter)
[   67.809441] i8042: [66998] fa <- i8042 (interrupt, 1, 12)
[   67.809538] i8042: [66998] d4 -> i8042 (command)
[   67.809728] i8042: [66998] f8 -> i8042 (parameter)
[   67.812557] i8042: [67001] fa <- i8042 (interrupt, 1, 12)
[   67.812650] i8042: [67001] d4 -> i8042 (command)
[   67.812838] i8042: [67001] 00 -> i8042 (parameter)
[   67.815820] i8042: [67004] fa <- i8042 (interrupt, 1, 12)
[   67.815905] i8042: [67004] d4 -> i8042 (command)
[   67.816094] i8042: [67004] f8 -> i8042 (parameter)
[   67.819023] i8042: [67007] fa <- i8042 (interrupt, 1, 12)
[   67.819105] i8042: [67007] d4 -> i8042 (command)
[   67.819295] i8042: [67007] 01 -> i8042 (parameter)
[   67.822207] i8042: [67010] fa <- i8042 (interrupt, 1, 12)
[   67.822292] i8042: [67010] d4 -> i8042 (command)
[   67.822481] i8042: [67010] e6 -> i8042 (parameter)
[   67.825373] i8042: [67013] fa <- i8042 (interrupt, 1, 12)
[   67.825481] i8042: [67014] d4 -> i8042 (command)
[   67.825670] i8042: [67014] f3 -> i8042 (parameter)
[   67.828560] i8042: [67017] fa <- i8042 (interrupt, 1, 12)
[   67.828640] i8042: [67017] d4 -> i8042 (command)
[   67.828826] i8042: [67017] 64 -> i8042 (parameter)
[   67.831686] i8042: [67020] fa <- i8042 (interrupt, 1, 12)
[   67.831736] i8042: [67020] d4 -> i8042 (command)
[   67.831921] i8042: [67020] e8 -> i8042 (parameter)
[   67.834946] i8042: [67023] fa <- i8042 (interrupt, 1, 12)
[   67.835030] i8042: [67023] d4 -> i8042 (command)
[   67.835273] i8042: [67023] 03 -> i8042 (parameter)
[   67.838137] i8042: [67026] fa <- i8042 (interrupt, 1, 12)
[   67.838219] i8042: [67026] d4 -> i8042 (command)
[   67.838404] i8042: [67027] e6 -> i8042 (parameter)
[   67.841341] i8042: [67029] fa <- i8042 (interrupt, 1, 12)
[   67.841426] i8042: [67030] d4 -> i8042 (command)
[   67.841668] i8042: [67030] f4 -> i8042 (parameter)
[   67.844542] i8042: [67033] fa <- i8042 (interrupt, 1, 12)
[   67.865329] i8042: [67053] 08 <- i8042 (interrupt, 1, 12)
[   67.866885] i8042: [67055] 00 <- i8042 (interrupt, 1, 12)
[   67.868522] i8042: [67056] 00 <- i8042 (interrupt, 1, 12)
[   67.874614] i8042: [67063] 54 <- i8042 (interrupt, 1, 12)
[   67.876191] i8042: [67064] 01 <- i8042 (interrupt, 1, 12)
[   67.877709] i8042: [67066] 00 <- i8042 (interrupt, 1, 12)
[   67.877739] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.879354] i8042: [67067] 10 <- i8042 (interrupt, 1, 12)
[   67.880939] i8042: [67069] 00 <- i8042 (interrupt, 1, 12)
[   67.882554] i8042: [67071] 00 <- i8042 (interrupt, 1, 12)
[   67.884082] i8042: [67072] 54 <- i8042 (interrupt, 1, 12)
[   67.885570] i8042: [67074] 16 <- i8042 (interrupt, 1, 12)
[   67.887162] i8042: [67075] 6b <- i8042 (interrupt, 1, 12)
[   67.887182] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.888861] i8042: [67077] 31 <- i8042 (interrupt, 1, 12)
[   67.890398] i8042: [67079] f2 <- i8042 (interrupt, 1, 12)
[   67.892022] i8042: [67080] 63 <- i8042 (interrupt, 1, 12)
[   67.893554] i8042: [67082] 64 <- i8042 (interrupt, 1, 12)
[   67.895180] i8042: [67083] 26 <- i8042 (interrupt, 1, 12)
[   67.896728] i8042: [67085] 6b <- i8042 (interrupt, 1, 12)
[   67.896769] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.898367] i8042: [67086] 31 <- i8042 (interrupt, 1, 12)
[   67.899842] i8042: [67088] 62 <- i8042 (interrupt, 1, 12)
[   67.901552] i8042: [67090] 63 <- i8042 (interrupt, 1, 12)
[   67.903090] i8042: [67091] 54 <- i8042 (interrupt, 1, 12)
[   67.904577] i8042: [67093] 26 <- i8042 (interrupt, 1, 12)
[   67.906265] i8042: [67094] a8 <- i8042 (interrupt, 1, 12)
[   67.906296] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.907840] i8042: [67096] 31 <- i8042 (interrupt, 1, 12)
[   67.909480] i8042: [67098] 62 <- i8042 (interrupt, 1, 12)
[   67.910916] i8042: [67099] 69 <- i8042 (interrupt, 1, 12)
[   67.912550] i8042: [67101] 54 <- i8042 (interrupt, 1, 12)
[   67.914167] i8042: [67102] 03 <- i8042 (interrupt, 1, 12)
[   67.915721] i8042: [67104] 00 <- i8042 (interrupt, 1, 12)
[   67.915762] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   67.915771] psmouse serio1: issuing reconnect request
[   67.915821] i8042: [67104] d4 -> i8042 (command)
[   67.916005] i8042: [67104] ff -> i8042 (parameter)
[   67.919082] i8042: [67107] fa <- i8042 (interrupt, 1, 12)
[   68.020045] i8042: [67208] aa <- i8042 (interrupt, 1, 12)
[   68.021548] i8042: [67210] 00 <- i8042 (interrupt, 1, 12)
[   68.021632] i8042: [67210] d4 -> i8042 (command)
[   68.021821] i8042: [67210] f6 -> i8042 (parameter)
[   68.024760] i8042: [67213] fa <- i8042 (interrupt, 1, 12)
[   68.024829] i8042: [67213] d4 -> i8042 (command)
[   68.025075] i8042: [67213] f5 -> i8042 (parameter)
[   68.028021] i8042: [67216] fa <- i8042 (interrupt, 1, 12)
[   68.028105] i8042: [67216] d4 -> i8042 (command)
[   68.028295] i8042: [67216] e6 -> i8042 (parameter)
[   68.031186] i8042: [67219] fa <- i8042 (interrupt, 1, 12)
[   68.031268] i8042: [67219] d4 -> i8042 (command)
[   68.031457] i8042: [67219] e6 -> i8042 (parameter)
[   68.034390] i8042: [67222] fa <- i8042 (interrupt, 1, 12)
[   68.034495] i8042: [67223] d4 -> i8042 (command)
[   68.034685] i8042: [67223] e6 -> i8042 (parameter)
[   68.037544] i8042: [67226] fa <- i8042 (interrupt, 1, 12)
[   68.037627] i8042: [67226] d4 -> i8042 (command)
[   68.037816] i8042: [67226] e9 -> i8042 (parameter)
[   68.040802] i8042: [67229] fa <- i8042 (interrupt, 1, 12)
[   68.042366] i8042: [67230] 3c <- i8042 (interrupt, 1, 12)
[   68.043942] i8042: [67232] 03 <- i8042 (interrupt, 1, 12)
[   68.045544] i8042: [67234] 00 <- i8042 (interrupt, 1, 12)
[   68.045626] i8042: [67234] d4 -> i8042 (command)
[   68.045815] i8042: [67234] e6 -> i8042 (parameter)
[   68.048823] i8042: [67237] fa <- i8042 (interrupt, 1, 12)
[   68.049314] i8042: [67237] d4 -> i8042 (command)
[   68.049562] i8042: [67238] e8 -> i8042 (parameter)
[   68.052563] i8042: [67241] fa <- i8042 (interrupt, 1, 12)
[   68.052629] i8042: [67241] d4 -> i8042 (command)
[   68.052820] i8042: [67241] 00 -> i8042 (parameter)
[   68.055576] i8042: [67244] fa <- i8042 (interrupt, 1, 12)
[   68.055645] i8042: [67244] d4 -> i8042 (command)
[   68.055836] i8042: [67244] e8 -> i8042 (parameter)
[   68.058823] i8042: [67247] fa <- i8042 (interrupt, 1, 12)
[   68.058928] i8042: [67247] d4 -> i8042 (command)
[   68.059175] i8042: [67247] 00 -> i8042 (parameter)
[   68.062027] i8042: [67250] fa <- i8042 (interrupt, 1, 12)
[   68.062134] i8042: [67250] d4 -> i8042 (command)
[   68.062380] i8042: [67250] e8 -> i8042 (parameter)
[   68.065210] i8042: [67253] fa <- i8042 (interrupt, 1, 12)
[   68.065314] i8042: [67253] d4 -> i8042 (command)
[   68.065504] i8042: [67254] 00 -> i8042 (parameter)
[   68.068407] i8042: [67256] fa <- i8042 (interrupt, 1, 12)
[   68.068510] i8042: [67257] d4 -> i8042 (command)
[   68.068700] i8042: [67257] e8 -> i8042 (parameter)
[   68.071540] i8042: [67260] fa <- i8042 (interrupt, 1, 12)
[   68.071638] i8042: [67260] d4 -> i8042 (command)
[   68.071828] i8042: [67260] 01 -> i8042 (parameter)
[   68.074797] i8042: [67263] fa <- i8042 (interrupt, 1, 12)
[   68.074906] i8042: [67263] d4 -> i8042 (command)
[   68.075095] i8042: [67263] e9 -> i8042 (parameter)
[   68.078094] i8042: [67266] fa <- i8042 (interrupt, 1, 12)
[   68.079468] i8042: [67268] 5e <- i8042 (interrupt, 1, 12)
[   68.081039] i8042: [67269] 0f <- i8042 (interrupt, 1, 12)
[   68.082620] i8042: [67271] 01 <- i8042 (interrupt, 1, 12)
[   68.083535] i8042: [67272] d4 -> i8042 (command)
[   68.083785] i8042: [67272] f8 -> i8042 (parameter)
[   68.086334] i8042: [67274] fa <- i8042 (interrupt, 1, 12)
[   68.086428] i8042: [67275] d4 -> i8042 (command)
[   68.086618] i8042: [67275] 00 -> i8042 (parameter)
[   68.089536] i8042: [67278] fa <- i8042 (interrupt, 1, 12)
[   68.089602] i8042: [67278] d4 -> i8042 (command)
[   68.089791] i8042: [67278] f8 -> i8042 (parameter)
[   68.092908] i8042: [67281] fa <- i8042 (interrupt, 1, 12)
[   68.092994] i8042: [67281] d4 -> i8042 (command)
[   68.093241] i8042: [67281] 07 -> i8042 (parameter)
[   68.095911] i8042: [67284] fa <- i8042 (interrupt, 1, 12)
[   68.095951] i8042: [67284] d4 -> i8042 (command)
[   68.096192] i8042: [67284] f8 -> i8042 (parameter)
[   68.099107] i8042: [67287] fa <- i8042 (interrupt, 1, 12)
[   68.099153] i8042: [67287] d4 -> i8042 (command)
[   68.099394] i8042: [67287] 00 -> i8042 (parameter)
[   68.102413] i8042: [67290] fa <- i8042 (interrupt, 1, 12)
[   68.102544] i8042: [67291] d4 -> i8042 (command)
[   68.102730] i8042: [67291] f8 -> i8042 (parameter)
[   68.105554] i8042: [67294] fa <- i8042 (interrupt, 1, 12)
[   68.105659] i8042: [67294] d4 -> i8042 (command)
[   68.105862] i8042: [67294] 01 -> i8042 (parameter)
[   68.108794] i8042: [67297] fa <- i8042 (interrupt, 1, 12)
[   68.108892] i8042: [67297] d4 -> i8042 (command)
[   68.109080] i8042: [67297] e6 -> i8042 (parameter)
[   68.112008] i8042: [67300] fa <- i8042 (interrupt, 1, 12)
[   68.112089] i8042: [67300] d4 -> i8042 (command)
[   68.112277] i8042: [67300] f3 -> i8042 (parameter)
[   68.115213] i8042: [67303] fa <- i8042 (interrupt, 1, 12)
[   68.115289] i8042: [67303] d4 -> i8042 (command)
[   68.115477] i8042: [67303] 64 -> i8042 (parameter)
[   68.118309] i8042: [67306] fa <- i8042 (interrupt, 1, 12)
[   68.118377] i8042: [67306] d4 -> i8042 (command)
[   68.118566] i8042: [67306] e8 -> i8042 (parameter)
[   68.121555] i8042: [67310] fa <- i8042 (interrupt, 1, 12)
[   68.121634] i8042: [67310] d4 -> i8042 (command)
[   68.121824] i8042: [67310] 03 -> i8042 (parameter)
[   68.124666] i8042: [67313] fa <- i8042 (interrupt, 1, 12)
[   68.129073] i8042: [67317] d4 -> i8042 (command)
[   68.129264] i8042: [67317] e6 -> i8042 (parameter)
[   68.132011] i8042: [67320] fa <- i8042 (interrupt, 1, 12)
[   68.132122] i8042: [67320] d4 -> i8042 (command)
[   68.132308] i8042: [67320] f4 -> i8042 (parameter)
[   68.135201] i8042: [67323] fa <- i8042 (interrupt, 1, 12)
[   68.155950] i8042: [67344] 08 <- i8042 (interrupt, 1, 12)
[   68.157513] i8042: [67346] 00 <- i8042 (interrupt, 1, 12)
[   68.159097] i8042: [67347] 00 <- i8042 (interrupt, 1, 12)
[   68.165220] i8042: [67353] 54 <- i8042 (interrupt, 1, 12)
[   68.166784] i8042: [67355] 01 <- i8042 (interrupt, 1, 12)
[   68.168377] i8042: [67356] 00 <- i8042 (interrupt, 1, 12)
[   68.168416] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.169955] i8042: [67358] 10 <- i8042 (interrupt, 1, 12)
[   68.171522] i8042: [67360] 00 <- i8042 (interrupt, 1, 12)
[   68.173121] i8042: [67361] 00 <- i8042 (interrupt, 1, 12)
[   68.174666] i8042: [67363] 54 <- i8042 (interrupt, 1, 12)
[   68.176290] i8042: [67364] 16 <- i8042 (interrupt, 1, 12)
[   68.177874] i8042: [67366] 01 <- i8042 (interrupt, 1, 12)
[   68.177913] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.179451] i8042: [67368] 31 <- i8042 (interrupt, 1, 12)
[   68.181036] i8042: [67369] d2 <- i8042 (interrupt, 1, 12)
[   68.182626] i8042: [67371] 28 <- i8042 (interrupt, 1, 12)
[   68.184189] i8042: [67372] 44 <- i8042 (interrupt, 1, 12)
[   68.185689] i8042: [67374] 26 <- i8042 (interrupt, 1, 12)
[   68.187268] i8042: [67375] 01 <- i8042 (interrupt, 1, 12)
[   68.187290] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.188847] i8042: [67377] 31 <- i8042 (interrupt, 1, 12)
[   68.190431] i8042: [67379] 22 <- i8042 (interrupt, 1, 12)
[   68.192017] i8042: [67380] 28 <- i8042 (interrupt, 1, 12)
[   68.193593] i8042: [67382] 54 <- i8042 (interrupt, 1, 12)
[   68.195178] i8042: [67383] 25 <- i8042 (interrupt, 1, 12)
[   68.196759] i8042: [67385] b5 <- i8042 (interrupt, 1, 12)
[   68.196766] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.198339] i8042: [67386] 31 <- i8042 (interrupt, 1, 12)
[   68.199996] i8042: [67388] 62 <- i8042 (interrupt, 1, 12)
[   68.201546] i8042: [67390] 30 <- i8042 (interrupt, 1, 12)
[   68.203152] i8042: [67391] 54 <- i8042 (interrupt, 1, 12)
[   68.204706] i8042: [67393] 25 <- i8042 (interrupt, 1, 12)
[   68.206300] i8042: [67394] a2 <- i8042 (interrupt, 1, 12)
[   68.206324] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.206332] psmouse serio1: issuing reconnect request
[   68.206365] i8042: [67394] d4 -> i8042 (command)
[   68.206607] i8042: [67395] ff -> i8042 (parameter)
[   68.209586] i8042: [67398] fa <- i8042 (interrupt, 1, 12)
[   68.310672] i8042: [67499] aa <- i8042 (interrupt, 1, 12)
[   68.312271] i8042: [67500] 00 <- i8042 (interrupt, 1, 12)
[   68.312366] i8042: [67500] d4 -> i8042 (command)
[   68.312554] i8042: [67501] f6 -> i8042 (parameter)
[   68.315481] i8042: [67504] fa <- i8042 (interrupt, 1, 12)
[   68.315576] i8042: [67504] d4 -> i8042 (command)
[   68.315764] i8042: [67504] f5 -> i8042 (parameter)
[   68.318677] i8042: [67507] fa <- i8042 (interrupt, 1, 12)
[   68.318772] i8042: [67507] d4 -> i8042 (command)
[   68.319016] i8042: [67507] e6 -> i8042 (parameter)
[   68.321879] i8042: [67510] fa <- i8042 (interrupt, 1, 12)
[   68.321974] i8042: [67510] d4 -> i8042 (command)
[   68.322218] i8042: [67510] e6 -> i8042 (parameter)
[   68.325068] i8042: [67513] fa <- i8042 (interrupt, 1, 12)
[   68.325165] i8042: [67513] d4 -> i8042 (command)
[   68.325352] i8042: [67513] e6 -> i8042 (parameter)
[   68.328271] i8042: [67516] fa <- i8042 (interrupt, 1, 12)
[   68.328370] i8042: [67516] d4 -> i8042 (command)
[   68.328558] i8042: [67517] e9 -> i8042 (parameter)
[   68.331462] i8042: [67520] fa <- i8042 (interrupt, 1, 12)
[   68.333011] i8042: [67521] 3c <- i8042 (interrupt, 1, 12)
[   68.334585] i8042: [67523] 03 <- i8042 (interrupt, 1, 12)
[   68.336082] i8042: [67524] 00 <- i8042 (interrupt, 1, 12)
[   68.336140] i8042: [67524] d4 -> i8042 (command)
[   68.336329] i8042: [67524] e6 -> i8042 (parameter)
[   68.339400] i8042: [67527] fa <- i8042 (interrupt, 1, 12)
[   68.339495] i8042: [67528] d4 -> i8042 (command)
[   68.339682] i8042: [67528] e8 -> i8042 (parameter)
[   68.342580] i8042: [67531] fa <- i8042 (interrupt, 1, 12)
[   68.342649] i8042: [67531] d4 -> i8042 (command)
[   68.342838] i8042: [67531] 00 -> i8042 (parameter)
[   68.345701] i8042: [67534] fa <- i8042 (interrupt, 1, 12)
[   68.345792] i8042: [67534] d4 -> i8042 (command)
[   68.345980] i8042: [67534] e8 -> i8042 (parameter)
[   68.348977] i8042: [67537] fa <- i8042 (interrupt, 1, 12)
[   68.349048] i8042: [67537] d4 -> i8042 (command)
[   68.349236] i8042: [67537] 00 -> i8042 (parameter)
[   68.352164] i8042: [67540] fa <- i8042 (interrupt, 1, 12)
[   68.352238] i8042: [67540] d4 -> i8042 (command)
[   68.352426] i8042: [67540] e8 -> i8042 (parameter)
[   68.355358] i8042: [67543] fa <- i8042 (interrupt, 1, 12)
[   68.355460] i8042: [67544] d4 -> i8042 (command)
[   68.355648] i8042: [67544] 00 -> i8042 (parameter)
[   68.358435] i8042: [67547] fa <- i8042 (interrupt, 1, 12)
[   68.358498] i8042: [67547] d4 -> i8042 (command)
[   68.358685] i8042: [67547] e8 -> i8042 (parameter)
[   68.361761] i8042: [67550] fa <- i8042 (interrupt, 1, 12)
[   68.361853] i8042: [67550] d4 -> i8042 (command)
[   68.362041] i8042: [67550] 01 -> i8042 (parameter)
[   68.364934] i8042: [67553] fa <- i8042 (interrupt, 1, 12)
[   68.365040] i8042: [67553] d4 -> i8042 (command)
[   68.365230] i8042: [67553] e9 -> i8042 (parameter)
[   68.368117] i8042: [67556] fa <- i8042 (interrupt, 1, 12)
[   68.369682] i8042: [67558] 5e <- i8042 (interrupt, 1, 12)
[   68.371253] i8042: [67559] 0f <- i8042 (interrupt, 1, 12)
[   68.372836] i8042: [67561] 01 <- i8042 (interrupt, 1, 12)
[   68.372945] i8042: [67561] d4 -> i8042 (command)
[   68.373134] i8042: [67561] f8 -> i8042 (parameter)
[   68.376063] i8042: [67564] fa <- i8042 (interrupt, 1, 12)
[   68.376172] i8042: [67564] d4 -> i8042 (command)
[   68.376362] i8042: [67564] 00 -> i8042 (parameter)
[   68.379244] i8042: [67567] fa <- i8042 (interrupt, 1, 12)
[   68.379327] i8042: [67567] d4 -> i8042 (command)
[   68.379516] i8042: [67567] f8 -> i8042 (parameter)
[   68.382451] i8042: [67571] fa <- i8042 (interrupt, 1, 12)
[   68.382560] i8042: [67571] d4 -> i8042 (command)
[   68.382749] i8042: [67571] 07 -> i8042 (parameter)
[   68.385568] i8042: [67574] fa <- i8042 (interrupt, 1, 12)
[   68.385644] i8042: [67574] d4 -> i8042 (command)
[   68.385831] i8042: [67574] f8 -> i8042 (parameter)
[   68.388801] i8042: [67577] fa <- i8042 (interrupt, 1, 12)
[   68.388863] i8042: [67577] d4 -> i8042 (command)
[   68.389048] i8042: [67577] 00 -> i8042 (parameter)
[   68.391946] i8042: [67580] fa <- i8042 (interrupt, 1, 12)
[   68.392044] i8042: [67580] d4 -> i8042 (command)
[   68.392233] i8042: [67580] f8 -> i8042 (parameter)
[   68.395109] i8042: [67583] fa <- i8042 (interrupt, 1, 12)
[   68.395176] i8042: [67583] d4 -> i8042 (command)
[   68.395366] i8042: [67583] 01 -> i8042 (parameter)
[   68.398343] i8042: [67586] fa <- i8042 (interrupt, 1, 12)
[   68.398434] i8042: [67587] d4 -> i8042 (command)
[   68.398624] i8042: [67587] e6 -> i8042 (parameter)
[   68.401536] i8042: [67590] fa <- i8042 (interrupt, 1, 12)
[   68.401657] i8042: [67590] d4 -> i8042 (command)
[   68.401848] i8042: [67590] f3 -> i8042 (parameter)
[   68.404774] i8042: [67593] fa <- i8042 (interrupt, 1, 12)
[   68.404853] i8042: [67593] d4 -> i8042 (command)
[   68.405042] i8042: [67593] 64 -> i8042 (parameter)
[   68.407955] i8042: [67596] fa <- i8042 (interrupt, 1, 12)
[   68.408061] i8042: [67596] d4 -> i8042 (command)
[   68.408251] i8042: [67596] e8 -> i8042 (parameter)
[   68.411159] i8042: [67599] fa <- i8042 (interrupt, 1, 12)
[   68.411241] i8042: [67599] d4 -> i8042 (command)
[   68.411430] i8042: [67599] 03 -> i8042 (parameter)
[   68.414344] i8042: [67602] fa <- i8042 (interrupt, 1, 12)
[   68.414457] i8042: [67602] d4 -> i8042 (command)
[   68.414646] i8042: [67603] e6 -> i8042 (parameter)
[   68.417573] i8042: [67606] fa <- i8042 (interrupt, 1, 12)
[   68.417681] i8042: [67606] d4 -> i8042 (command)
[   68.417870] i8042: [67606] f4 -> i8042 (parameter)
[   68.420748] i8042: [67609] fa <- i8042 (interrupt, 1, 12)
[   68.441440] i8042: [67630] 08 <- i8042 (interrupt, 1, 12)
[   68.443065] i8042: [67631] 00 <- i8042 (interrupt, 1, 12)
[   68.444630] i8042: [67633] 00 <- i8042 (interrupt, 1, 12)
[   68.451269] i8042: [67639] 64 <- i8042 (interrupt, 1, 12)
[   68.452879] i8042: [67641] 01 <- i8042 (interrupt, 1, 12)
[   68.454467] i8042: [67643] 00 <- i8042 (interrupt, 1, 12)
[   68.454506] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.456047] i8042: [67644] 10 <- i8042 (interrupt, 1, 12)
[   68.457636] i8042: [67646] 00 <- i8042 (interrupt, 1, 12)
[   68.459110] i8042: [67647] 00 <- i8042 (interrupt, 1, 12)
[   68.460741] i8042: [67649] 64 <- i8042 (interrupt, 1, 12)
[   68.462382] i8042: [67650] 32 <- i8042 (interrupt, 1, 12)
[   68.463955] i8042: [67652] c2 <- i8042 (interrupt, 1, 12)
[   68.463994] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.465544] i8042: [67654] 31 <- i8042 (interrupt, 1, 12)
[   68.467128] i8042: [67655] 32 <- i8042 (interrupt, 1, 12)
[   68.468657] i8042: [67657] 8c <- i8042 (interrupt, 1, 12)
[   68.470292] i8042: [67658] 64 <- i8042 (interrupt, 1, 12)
[   68.471873] i8042: [67660] 32 <- i8042 (interrupt, 1, 12)
[   68.473473] i8042: [67662] c2 <- i8042 (interrupt, 1, 12)
[   68.473514] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.475045] i8042: [67663] 31 <- i8042 (interrupt, 1, 12)
[   68.476561] i8042: [67665] 52 <- i8042 (interrupt, 1, 12)
[   68.478204] i8042: [67666] 8c <- i8042 (interrupt, 1, 12)
[   68.479791] i8042: [67668] 64 <- i8042 (interrupt, 1, 12)
[   68.481378] i8042: [67669] 32 <- i8042 (interrupt, 1, 12)
[   68.482956] i8042: [67671] c2 <- i8042 (interrupt, 1, 12)
[   68.482995] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.484522] i8042: [67673] 31 <- i8042 (interrupt, 1, 12)
[   68.486117] i8042: [67674] 82 <- i8042 (interrupt, 1, 12)
[   68.487699] i8042: [67676] 8c <- i8042 (interrupt, 1, 12)
[   68.489293] i8042: [67677] 64 <- i8042 (interrupt, 1, 12)
[   68.490865] i8042: [67679] 32 <- i8042 (interrupt, 1, 12)
[   68.492447] i8042: [67681] b3 <- i8042 (interrupt, 1, 12)
[   68.492485] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.492501] psmouse serio1: issuing reconnect request
[   68.492584] i8042: [67681] d4 -> i8042 (command)
[   68.492774] i8042: [67681] ff -> i8042 (parameter)
[   68.495659] i8042: [67684] fa <- i8042 (interrupt, 1, 12)
[   68.596686] i8042: [67785] aa <- i8042 (interrupt, 1, 12)
[   68.598220] i8042: [67786] 00 <- i8042 (interrupt, 1, 12)
[   68.598312] i8042: [67786] d4 -> i8042 (command)
[   68.598497] i8042: [67787] f6 -> i8042 (parameter)
[   68.601447] i8042: [67790] fa <- i8042 (interrupt, 1, 12)
[   68.601549] i8042: [67790] d4 -> i8042 (command)
[   68.601739] i8042: [67790] f5 -> i8042 (parameter)
[   68.604561] i8042: [67793] fa <- i8042 (interrupt, 1, 12)
[   68.604661] i8042: [67793] d4 -> i8042 (command)
[   68.604851] i8042: [67793] e6 -> i8042 (parameter)
[   68.607836] i8042: [67796] fa <- i8042 (interrupt, 1, 12)
[   68.607943] i8042: [67796] d4 -> i8042 (command)
[   68.608133] i8042: [67796] e6 -> i8042 (parameter)
[   68.611013] i8042: [67799] fa <- i8042 (interrupt, 1, 12)
[   68.611122] i8042: [67799] d4 -> i8042 (command)
[   68.611311] i8042: [67799] e6 -> i8042 (parameter)
[   68.614218] i8042: [67802] fa <- i8042 (interrupt, 1, 12)
[   68.614330] i8042: [67802] d4 -> i8042 (command)
[   68.614520] i8042: [67803] e9 -> i8042 (parameter)
[   68.617437] i8042: [67806] fa <- i8042 (interrupt, 1, 12)
[   68.618975] i8042: [67807] 3c <- i8042 (interrupt, 1, 12)
[   68.620550] i8042: [67809] 03 <- i8042 (interrupt, 1, 12)
[   68.622074] i8042: [67810] 00 <- i8042 (interrupt, 1, 12)
[   68.622133] i8042: [67810] d4 -> i8042 (command)
[   68.622322] i8042: [67810] e6 -> i8042 (parameter)
[   68.625366] i8042: [67813] fa <- i8042 (interrupt, 1, 12)
[   68.625503] i8042: [67814] d4 -> i8042 (command)
[   68.625703] i8042: [67814] e8 -> i8042 (parameter)
[   68.628556] i8042: [67817] fa <- i8042 (interrupt, 1, 12)
[   68.628662] i8042: [67817] d4 -> i8042 (command)
[   68.628852] i8042: [67817] 00 -> i8042 (parameter)
[   68.631690] i8042: [67820] fa <- i8042 (interrupt, 1, 12)
[   68.631799] i8042: [67820] d4 -> i8042 (command)
[   68.631989] i8042: [67820] e8 -> i8042 (parameter)
[   68.634951] i8042: [67823] fa <- i8042 (interrupt, 1, 12)
[   68.635057] i8042: [67823] d4 -> i8042 (command)
[   68.635247] i8042: [67823] 00 -> i8042 (parameter)
[   68.638124] i8042: [67826] fa <- i8042 (interrupt, 1, 12)
[   68.638205] i8042: [67826] d4 -> i8042 (command)
[   68.638394] i8042: [67826] e8 -> i8042 (parameter)
[   68.641320] i8042: [67829] fa <- i8042 (interrupt, 1, 12)
[   68.641440] i8042: [67830] d4 -> i8042 (command)
[   68.641631] i8042: [67830] 00 -> i8042 (parameter)
[   68.644524] i8042: [67833] fa <- i8042 (interrupt, 1, 12)
[   68.644628] i8042: [67833] d4 -> i8042 (command)
[   68.644818] i8042: [67833] e8 -> i8042 (parameter)
[   68.647658] i8042: [67836] fa <- i8042 (interrupt, 1, 12)
[   68.647754] i8042: [67836] d4 -> i8042 (command)
[   68.647943] i8042: [67836] 01 -> i8042 (parameter)
[   68.650921] i8042: [67839] fa <- i8042 (interrupt, 1, 12)
[   68.651029] i8042: [67839] d4 -> i8042 (command)
[   68.651218] i8042: [67839] e9 -> i8042 (parameter)
[   68.654108] i8042: [67842] fa <- i8042 (interrupt, 1, 12)
[   68.655578] i8042: [67844] 5e <- i8042 (interrupt, 1, 12)
[   68.657293] i8042: [67845] 0f <- i8042 (interrupt, 1, 12)
[   68.658860] i8042: [67847] 01 <- i8042 (interrupt, 1, 12)
[   68.658965] i8042: [67847] d4 -> i8042 (command)
[   68.659152] i8042: [67847] f8 -> i8042 (parameter)
[   68.662084] i8042: [67850] fa <- i8042 (interrupt, 1, 12)
[   68.662189] i8042: [67850] d4 -> i8042 (command)
[   68.662376] i8042: [67850] 00 -> i8042 (parameter)
[   68.665254] i8042: [67853] fa <- i8042 (interrupt, 1, 12)
[   68.665369] i8042: [67853] d4 -> i8042 (command)
[   68.665559] i8042: [67854] f8 -> i8042 (parameter)
[   68.668456] i8042: [67857] fa <- i8042 (interrupt, 1, 12)
[   68.668565] i8042: [67857] d4 -> i8042 (command)
[   68.668754] i8042: [67857] 07 -> i8042 (parameter)
[   68.671639] i8042: [67860] fa <- i8042 (interrupt, 1, 12)
[   68.671749] i8042: [67860] d4 -> i8042 (command)
[   68.671938] i8042: [67860] f8 -> i8042 (parameter)
[   68.674834] i8042: [67863] fa <- i8042 (interrupt, 1, 12)
[   68.674943] i8042: [67863] d4 -> i8042 (command)
[   68.675133] i8042: [67863] 00 -> i8042 (parameter)
[   68.678034] i8042: [67866] fa <- i8042 (interrupt, 1, 12)
[   68.678143] i8042: [67866] d4 -> i8042 (command)
[   68.678333] i8042: [67866] f8 -> i8042 (parameter)
[   68.681219] i8042: [67869] fa <- i8042 (interrupt, 1, 12)
[   68.681328] i8042: [67869] d4 -> i8042 (command)
[   68.681517] i8042: [67870] 01 -> i8042 (parameter)
[   68.684414] i8042: [67872] fa <- i8042 (interrupt, 1, 12)
[   68.684523] i8042: [67873] d4 -> i8042 (command)
[   68.684713] i8042: [67873] e6 -> i8042 (parameter)
[   68.687499] i8042: [67876] fa <- i8042 (interrupt, 1, 12)
[   68.687593] i8042: [67876] d4 -> i8042 (command)
[   68.687781] i8042: [67876] f3 -> i8042 (parameter)
[   68.690826] i8042: [67879] fa <- i8042 (interrupt, 1, 12)
[   68.690918] i8042: [67879] d4 -> i8042 (command)
[   68.691106] i8042: [67879] 64 -> i8042 (parameter)
[   68.694024] i8042: [67882] fa <- i8042 (interrupt, 1, 12)
[   68.694120] i8042: [67882] d4 -> i8042 (command)
[   68.694364] i8042: [67882] e8 -> i8042 (parameter)
[   68.697178] i8042: [67885] fa <- i8042 (interrupt, 1, 12)
[   68.697289] i8042: [67885] d4 -> i8042 (command)
[   68.697479] i8042: [67886] 03 -> i8042 (parameter)
[   68.700361] i8042: [67888] fa <- i8042 (interrupt, 1, 12)
[   68.700475] i8042: [67889] d4 -> i8042 (command)
[   68.700665] i8042: [67889] e6 -> i8042 (parameter)
[   68.703542] i8042: [67892] fa <- i8042 (interrupt, 1, 12)
[   68.703625] i8042: [67892] d4 -> i8042 (command)
[   68.703871] i8042: [67892] f4 -> i8042 (parameter)
[   68.706685] i8042: [67895] fa <- i8042 (interrupt, 1, 12)
[   68.726916] i8042: [67915] 08 <- i8042 (interrupt, 1, 12)
[   68.728498] i8042: [67917] 00 <- i8042 (interrupt, 1, 12)
[   68.730082] i8042: [67918] 00 <- i8042 (interrupt, 1, 12)
[   68.736785] i8042: [67925] 54 <- i8042 (interrupt, 1, 12)
[   68.738354] i8042: [67926] 01 <- i8042 (interrupt, 1, 12)
[   68.739940] i8042: [67928] 00 <- i8042 (interrupt, 1, 12)
[   68.739980] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.741525] i8042: [67930] 10 <- i8042 (interrupt, 1, 12)
[   68.743104] i8042: [67931] 00 <- i8042 (interrupt, 1, 12)
[   68.744693] i8042: [67933] 00 <- i8042 (interrupt, 1, 12)
[   68.746271] i8042: [67934] 54 <- i8042 (interrupt, 1, 12)
[   68.747854] i8042: [67936] 15 <- i8042 (interrupt, 1, 12)
[   68.749445] i8042: [67938] 2d <- i8042 (interrupt, 1, 12)
[   68.749485] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.751024] i8042: [67939] 31 <- i8042 (interrupt, 1, 12)
[   68.752610] i8042: [67941] 93 <- i8042 (interrupt, 1, 12)
[   68.754188] i8042: [67942] 57 <- i8042 (interrupt, 1, 12)
[   68.755758] i8042: [67944] 44 <- i8042 (interrupt, 1, 12)
[   68.757362] i8042: [67945] 15 <- i8042 (interrupt, 1, 12)
[   68.758946] i8042: [67947] 2d <- i8042 (interrupt, 1, 12)
[   68.758984] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.760542] i8042: [67949] 31 <- i8042 (interrupt, 1, 12)
[   68.762044] i8042: [67950] c3 <- i8042 (interrupt, 1, 12)
[   68.763693] i8042: [67952] 57 <- i8042 (interrupt, 1, 12)
[   68.765268] i8042: [67953] 44 <- i8042 (interrupt, 1, 12)
[   68.766857] i8042: [67955] 15 <- i8042 (interrupt, 1, 12)
[   68.768461] i8042: [67957] 51 <- i8042 (interrupt, 1, 12)
[   68.768498] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.769957] i8042: [67958] 31 <- i8042 (interrupt, 1, 12)
[   68.771545] i8042: [67960] d3 <- i8042 (interrupt, 1, 12)
[   68.773184] i8042: [67961] 55 <- i8042 (interrupt, 1, 12)
[   68.774668] i8042: [67963] 54 <- i8042 (interrupt, 1, 12)
[   68.776367] i8042: [67964] 15 <- i8042 (interrupt, 1, 12)
[   68.777936] i8042: [67966] 77 <- i8042 (interrupt, 1, 12)
[   68.777963] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   68.777973] psmouse serio1: issuing reconnect request
[   68.778039] i8042: [67966] d4 -> i8042 (command)
[   68.778223] i8042: [67966] ff -> i8042 (parameter)
[   68.781167] i8042: [67969] fa <- i8042 (interrupt, 1, 12)
[   68.882186] i8042: [68070] aa <- i8042 (interrupt, 1, 12)
[   68.883601] i8042: [68072] 00 <- i8042 (interrupt, 1, 12)
[   68.883743] i8042: [68072] d4 -> i8042 (command)
[   68.883928] i8042: [68072] f6 -> i8042 (parameter)
[   68.886904] i8042: [68075] fa <- i8042 (interrupt, 1, 12)
[   68.886983] i8042: [68075] d4 -> i8042 (command)
[   68.887168] i8042: [68075] f5 -> i8042 (parameter)
[   68.890126] i8042: [68078] fa <- i8042 (interrupt, 1, 12)
[   68.890250] i8042: [68078] d4 -> i8042 (command)
[   68.890440] i8042: [68079] e6 -> i8042 (parameter)
[   68.893317] i8042: [68081] fa <- i8042 (interrupt, 1, 12)
[   68.893455] i8042: [68082] d4 -> i8042 (command)
[   68.893702] i8042: [68082] e6 -> i8042 (parameter)
[   68.896533] i8042: [68085] fa <- i8042 (interrupt, 1, 12)
[   68.896611] i8042: [68085] d4 -> i8042 (command)
[   68.896796] i8042: [68085] e6 -> i8042 (parameter)
[   68.899647] i8042: [68088] fa <- i8042 (interrupt, 1, 12)
[   68.899709] i8042: [68088] d4 -> i8042 (command)
[   68.899910] i8042: [68088] e9 -> i8042 (parameter)
[   68.902790] i8042: [68091] fa <- i8042 (interrupt, 1, 12)
[   68.904456] i8042: [68093] 3c <- i8042 (interrupt, 1, 12)
[   68.905928] i8042: [68094] 03 <- i8042 (interrupt, 1, 12)
[   68.907605] i8042: [68096] 00 <- i8042 (interrupt, 1, 12)
[   68.907705] i8042: [68096] d4 -> i8042 (command)
[   68.907895] i8042: [68096] e6 -> i8042 (parameter)
[   68.910816] i8042: [68099] fa <- i8042 (interrupt, 1, 12)
[   68.910921] i8042: [68099] d4 -> i8042 (command)
[   68.911167] i8042: [68099] e8 -> i8042 (parameter)
[   68.913989] i8042: [68102] fa <- i8042 (interrupt, 1, 12)
[   68.914095] i8042: [68102] d4 -> i8042 (command)
[   68.914284] i8042: [68102] 00 -> i8042 (parameter)
[   68.917215] i8042: [68105] fa <- i8042 (interrupt, 1, 12)
[   68.917322] i8042: [68105] d4 -> i8042 (command)
[   68.917512] i8042: [68106] e8 -> i8042 (parameter)
[   68.920436] i8042: [68109] fa <- i8042 (interrupt, 1, 12)
[   68.920557] i8042: [68109] d4 -> i8042 (command)
[   68.920747] i8042: [68109] 00 -> i8042 (parameter)
[   68.923567] i8042: [68112] fa <- i8042 (interrupt, 1, 12)
[   68.923675] i8042: [68112] d4 -> i8042 (command)
[   68.923864] i8042: [68112] e8 -> i8042 (parameter)
[   68.926789] i8042: [68115] fa <- i8042 (interrupt, 1, 12)
[   68.926893] i8042: [68115] d4 -> i8042 (command)
[   68.927082] i8042: [68115] 00 -> i8042 (parameter)
[   68.929963] i8042: [68118] fa <- i8042 (interrupt, 1, 12)
[   68.930043] i8042: [68118] d4 -> i8042 (command)
[   68.930233] i8042: [68118] e8 -> i8042 (parameter)
[   68.933158] i8042: [68121] fa <- i8042 (interrupt, 1, 12)
[   68.933260] i8042: [68121] d4 -> i8042 (command)
[   68.933449] i8042: [68122] 01 -> i8042 (parameter)
[   68.936342] i8042: [68124] fa <- i8042 (interrupt, 1, 12)
[   68.936451] i8042: [68125] d4 -> i8042 (command)
[   68.936641] i8042: [68125] e9 -> i8042 (parameter)
[   68.939467] i8042: [68128] fa <- i8042 (interrupt, 1, 12)
[   68.941110] i8042: [68129] 5e <- i8042 (interrupt, 1, 12)
[   68.942659] i8042: [68131] 0f <- i8042 (interrupt, 1, 12)
[   68.944205] i8042: [68132] 01 <- i8042 (interrupt, 1, 12)
[   68.944470] i8042: [68133] d4 -> i8042 (command)
[   68.944661] i8042: [68133] f8 -> i8042 (parameter)
[   68.947503] i8042: [68136] fa <- i8042 (interrupt, 1, 12)
[   68.947651] i8042: [68136] d4 -> i8042 (command)
[   68.947841] i8042: [68136] 00 -> i8042 (parameter)
[   68.950616] i8042: [68139] fa <- i8042 (interrupt, 1, 12)
[   68.950676] i8042: [68139] d4 -> i8042 (command)
[   68.950866] i8042: [68139] f8 -> i8042 (parameter)
[   68.953889] i8042: [68142] fa <- i8042 (interrupt, 1, 12)
[   68.954000] i8042: [68142] d4 -> i8042 (command)
[   68.954189] i8042: [68142] 07 -> i8042 (parameter)
[   68.957074] i8042: [68145] fa <- i8042 (interrupt, 1, 12)
[   68.957180] i8042: [68145] d4 -> i8042 (command)
[   68.957370] i8042: [68145] f8 -> i8042 (parameter)
[   68.960232] i8042: [68148] fa <- i8042 (interrupt, 1, 12)
[   68.960306] i8042: [68148] d4 -> i8042 (command)
[   68.960553] i8042: [68149] 00 -> i8042 (parameter)
[   68.963433] i8042: [68152] fa <- i8042 (interrupt, 1, 12)
[   68.963527] i8042: [68152] d4 -> i8042 (command)
[   68.963717] i8042: [68152] f8 -> i8042 (parameter)
[   68.966629] i8042: [68155] fa <- i8042 (interrupt, 1, 12)
[   68.966728] i8042: [68155] d4 -> i8042 (command)
[   68.966918] i8042: [68155] 01 -> i8042 (parameter)
[   68.969877] i8042: [68158] fa <- i8042 (interrupt, 1, 12)
[   68.970002] i8042: [68158] d4 -> i8042 (command)
[   68.970249] i8042: [68158] e6 -> i8042 (parameter)
[   68.973071] i8042: [68161] fa <- i8042 (interrupt, 1, 12)
[   68.973182] i8042: [68161] d4 -> i8042 (command)
[   68.973429] i8042: [68162] f3 -> i8042 (parameter)
[   68.976233] i8042: [68164] fa <- i8042 (interrupt, 1, 12)
[   68.976379] i8042: [68164] d4 -> i8042 (command)
[   68.976569] i8042: [68165] 64 -> i8042 (parameter)
[   68.979361] i8042: [68167] fa <- i8042 (interrupt, 1, 12)
[   68.979510] i8042: [68168] d4 -> i8042 (command)
[   68.979696] i8042: [68168] e8 -> i8042 (parameter)
[   68.982611] i8042: [68171] fa <- i8042 (interrupt, 1, 12)
[   68.982717] i8042: [68171] d4 -> i8042 (command)
[   68.982964] i8042: [68171] 03 -> i8042 (parameter)
[   68.985821] i8042: [68174] fa <- i8042 (interrupt, 1, 12)
[   68.986059] i8042: [68174] d4 -> i8042 (command)
[   68.986251] i8042: [68174] e6 -> i8042 (parameter)
[   68.989058] i8042: [68177] fa <- i8042 (interrupt, 1, 12)
[   68.989168] i8042: [68177] d4 -> i8042 (command)
[   68.989359] i8042: [68177] f4 -> i8042 (parameter)
[   68.992242] i8042: [68180] fa <- i8042 (interrupt, 1, 12)
[   69.012967] i8042: [68201] 08 <- i8042 (interrupt, 1, 12)
[   69.014593] i8042: [68203] 00 <- i8042 (interrupt, 1, 12)
[   69.016185] i8042: [68204] 00 <- i8042 (interrupt, 1, 12)
[   69.022298] i8042: [68210] 64 <- i8042 (interrupt, 1, 12)
[   69.023887] i8042: [68212] 01 <- i8042 (interrupt, 1, 12)
[   69.025496] i8042: [68214] 00 <- i8042 (interrupt, 1, 12)
[   69.025528] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.027054] i8042: [68215] 10 <- i8042 (interrupt, 1, 12)
[   69.028643] i8042: [68217] 00 <- i8042 (interrupt, 1, 12)
[   69.030212] i8042: [68218] 00 <- i8042 (interrupt, 1, 12)
[   69.031744] i8042: [68220] 64 <- i8042 (interrupt, 1, 12)
[   69.033321] i8042: [68221] 23 <- i8042 (interrupt, 1, 12)
[   69.034876] i8042: [68223] 16 <- i8042 (interrupt, 1, 12)
[   69.034897] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.036461] i8042: [68225] 31 <- i8042 (interrupt, 1, 12)
[   69.038063] i8042: [68226] 62 <- i8042 (interrupt, 1, 12)
[   69.039658] i8042: [68228] ac <- i8042 (interrupt, 1, 12)
[   69.041276] i8042: [68229] 64 <- i8042 (interrupt, 1, 12)
[   69.042833] i8042: [68231] 23 <- i8042 (interrupt, 1, 12)
[   69.044343] i8042: [68232] 16 <- i8042 (interrupt, 1, 12)
[   69.044371] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.045982] i8042: [68234] 31 <- i8042 (interrupt, 1, 12)
[   69.047553] i8042: [68236] b2 <- i8042 (interrupt, 1, 12)
[   69.049120] i8042: [68237] ac <- i8042 (interrupt, 1, 12)
[   69.050722] i8042: [68239] 64 <- i8042 (interrupt, 1, 12)
[   69.052351] i8042: [68240] 23 <- i8042 (interrupt, 1, 12)
[   69.053864] i8042: [68242] 00 <- i8042 (interrupt, 1, 12)
[   69.053889] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.055525] i8042: [68244] 31 <- i8042 (interrupt, 1, 12)
[   69.057093] i8042: [68245] f2 <- i8042 (interrupt, 1, 12)
[   69.058683] i8042: [68247] a6 <- i8042 (interrupt, 1, 12)
[   69.060257] i8042: [68248] 64 <- i8042 (interrupt, 1, 12)
[   69.061842] i8042: [68250] 32 <- i8042 (interrupt, 1, 12)
[   69.063459] i8042: [68252] f2 <- i8042 (interrupt, 1, 12)
[   69.063494] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.063509] psmouse serio1: issuing reconnect request
[   69.063624] i8042: [68252] d4 -> i8042 (command)
[   69.063813] i8042: [68252] ff -> i8042 (parameter)
[   69.066709] i8042: [68255] fa <- i8042 (interrupt, 1, 12)
[   69.167751] i8042: [68356] aa <- i8042 (interrupt, 1, 12)
[   69.169252] i8042: [68357] 00 <- i8042 (interrupt, 1, 12)
[   69.169327] i8042: [68357] d4 -> i8042 (command)
[   69.169513] i8042: [68358] f6 -> i8042 (parameter)
[   69.172409] i8042: [68360] fa <- i8042 (interrupt, 1, 12)
[   69.172529] i8042: [68361] d4 -> i8042 (command)
[   69.172774] i8042: [68361] f5 -> i8042 (parameter)
[   69.175594] i8042: [68364] fa <- i8042 (interrupt, 1, 12)
[   69.175639] i8042: [68364] d4 -> i8042 (command)
[   69.175882] i8042: [68364] e6 -> i8042 (parameter)
[   69.178829] i8042: [68367] fa <- i8042 (interrupt, 1, 12)
[   69.178889] i8042: [68367] d4 -> i8042 (command)
[   69.179079] i8042: [68367] e6 -> i8042 (parameter)
[   69.182082] i8042: [68370] fa <- i8042 (interrupt, 1, 12)
[   69.182166] i8042: [68370] d4 -> i8042 (command)
[   69.182412] i8042: [68370] e6 -> i8042 (parameter)
[   69.185283] i8042: [68373] fa <- i8042 (interrupt, 1, 12)
[   69.185367] i8042: [68373] d4 -> i8042 (command)
[   69.185556] i8042: [68373] e9 -> i8042 (parameter)
[   69.188504] i8042: [68377] fa <- i8042 (interrupt, 1, 12)
[   69.189948] i8042: [68378] 3c <- i8042 (interrupt, 1, 12)
[   69.191538] i8042: [68380] 03 <- i8042 (interrupt, 1, 12)
[   69.193154] i8042: [68381] 00 <- i8042 (interrupt, 1, 12)
[   69.193219] i8042: [68381] d4 -> i8042 (command)
[   69.193409] i8042: [68381] e6 -> i8042 (parameter)
[   69.196443] i8042: [68385] fa <- i8042 (interrupt, 1, 12)
[   69.196551] i8042: [68385] d4 -> i8042 (command)
[   69.196741] i8042: [68385] e8 -> i8042 (parameter)
[   69.199636] i8042: [68388] fa <- i8042 (interrupt, 1, 12)
[   69.199742] i8042: [68388] d4 -> i8042 (command)
[   69.199932] i8042: [68388] 00 -> i8042 (parameter)
[   69.202870] i8042: [68391] fa <- i8042 (interrupt, 1, 12)
[   69.203033] i8042: [68391] d4 -> i8042 (command)
[   69.203221] i8042: [68391] e8 -> i8042 (parameter)
[   69.206049] i8042: [68394] fa <- i8042 (interrupt, 1, 12)
[   69.206167] i8042: [68394] d4 -> i8042 (command)
[   69.206358] i8042: [68394] 00 -> i8042 (parameter)
[   69.209219] i8042: [68397] fa <- i8042 (interrupt, 1, 12)
[   69.209328] i8042: [68397] d4 -> i8042 (command)
[   69.209575] i8042: [68398] e8 -> i8042 (parameter)
[   69.212434] i8042: [68401] fa <- i8042 (interrupt, 1, 12)
[   69.212556] i8042: [68401] d4 -> i8042 (command)
[   69.212746] i8042: [68401] 00 -> i8042 (parameter)
[   69.215545] i8042: [68404] fa <- i8042 (interrupt, 1, 12)
[   69.215644] i8042: [68404] d4 -> i8042 (command)
[   69.215834] i8042: [68404] e8 -> i8042 (parameter)
[   69.218773] i8042: [68407] fa <- i8042 (interrupt, 1, 12)
[   69.218879] i8042: [68407] d4 -> i8042 (command)
[   69.219069] i8042: [68407] 01 -> i8042 (parameter)
[   69.221991] i8042: [68410] fa <- i8042 (interrupt, 1, 12)
[   69.222100] i8042: [68410] d4 -> i8042 (command)
[   69.222290] i8042: [68410] e9 -> i8042 (parameter)
[   69.225111] i8042: [68413] fa <- i8042 (interrupt, 1, 12)
[   69.226669] i8042: [68415] 5e <- i8042 (interrupt, 1, 12)
[   69.228255] i8042: [68416] 0f <- i8042 (interrupt, 1, 12)
[   69.229843] i8042: [68418] 01 <- i8042 (interrupt, 1, 12)
[   69.229905] i8042: [68418] d4 -> i8042 (command)
[   69.230094] i8042: [68418] f8 -> i8042 (parameter)
[   69.233120] i8042: [68421] fa <- i8042 (interrupt, 1, 12)
[   69.233231] i8042: [68421] d4 -> i8042 (command)
[   69.233421] i8042: [68422] 00 -> i8042 (parameter)
[   69.236313] i8042: [68424] fa <- i8042 (interrupt, 1, 12)
[   69.236457] i8042: [68424] d4 -> i8042 (command)
[   69.236648] i8042: [68425] f8 -> i8042 (parameter)
[   69.239512] i8042: [68428] fa <- i8042 (interrupt, 1, 12)
[   69.239622] i8042: [68428] d4 -> i8042 (command)
[   69.239811] i8042: [68428] 07 -> i8042 (parameter)
[   69.242715] i8042: [68431] fa <- i8042 (interrupt, 1, 12)
[   69.242830] i8042: [68431] d4 -> i8042 (command)
[   69.243020] i8042: [68431] f8 -> i8042 (parameter)
[   69.245918] i8042: [68434] fa <- i8042 (interrupt, 1, 12)
[   69.246027] i8042: [68434] d4 -> i8042 (command)
[   69.246274] i8042: [68434] 00 -> i8042 (parameter)
[   69.249104] i8042: [68437] fa <- i8042 (interrupt, 1, 12)
[   69.249218] i8042: [68437] d4 -> i8042 (command)
[   69.249408] i8042: [68438] f8 -> i8042 (parameter)
[   69.252305] i8042: [68440] fa <- i8042 (interrupt, 1, 12)
[   69.252453] i8042: [68441] d4 -> i8042 (command)
[   69.252643] i8042: [68441] 01 -> i8042 (parameter)
[   69.255518] i8042: [68444] fa <- i8042 (interrupt, 1, 12)
[   69.255601] i8042: [68444] d4 -> i8042 (command)
[   69.255848] i8042: [68444] e6 -> i8042 (parameter)
[   69.258706] i8042: [68447] fa <- i8042 (interrupt, 1, 12)
[   69.258817] i8042: [68447] d4 -> i8042 (command)
[   69.259007] i8042: [68447] f3 -> i8042 (parameter)
[   69.261865] i8042: [68450] fa <- i8042 (interrupt, 1, 12)
[   69.261945] i8042: [68450] d4 -> i8042 (command)
[   69.262135] i8042: [68450] 64 -> i8042 (parameter)
[   69.265070] i8042: [68453] fa <- i8042 (interrupt, 1, 12)
[   69.265156] i8042: [68453] d4 -> i8042 (command)
[   69.265345] i8042: [68453] e8 -> i8042 (parameter)
[   69.268271] i8042: [68456] fa <- i8042 (interrupt, 1, 12)
[   69.268353] i8042: [68456] d4 -> i8042 (command)
[   69.268543] i8042: [68456] 03 -> i8042 (parameter)
[   69.271430] i8042: [68460] fa <- i8042 (interrupt, 1, 12)
[   69.271537] i8042: [68460] d4 -> i8042 (command)
[   69.271726] i8042: [68460] e6 -> i8042 (parameter)
[   69.274658] i8042: [68463] fa <- i8042 (interrupt, 1, 12)
[   69.274768] i8042: [68463] d4 -> i8042 (command)
[   69.274958] i8042: [68463] f4 -> i8042 (parameter)
[   69.277847] i8042: [68466] fa <- i8042 (interrupt, 1, 12)
[   69.288496] i8042: [68477] 08 <- i8042 (interrupt, 1, 12)
[   69.290061] i8042: [68478] 00 <- i8042 (interrupt, 1, 12)
[   69.291579] i8042: [68480] 00 <- i8042 (interrupt, 1, 12)
[   69.298294] i8042: [68486] 44 <- i8042 (interrupt, 1, 12)
[   69.299769] i8042: [68488] 01 <- i8042 (interrupt, 1, 12)
[   69.301465] i8042: [68490] 00 <- i8042 (interrupt, 1, 12)
[   69.301502] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.302917] i8042: [68491] 10 <- i8042 (interrupt, 1, 12)
[   69.304557] i8042: [68493] 00 <- i8042 (interrupt, 1, 12)
[   69.306181] i8042: [68494] 00 <- i8042 (interrupt, 1, 12)
[   69.307685] i8042: [68496] 44 <- i8042 (interrupt, 1, 12)
[   69.309379] i8042: [68497] 05 <- i8042 (interrupt, 1, 12)
[   69.310942] i8042: [68499] d3 <- i8042 (interrupt, 1, 12)
[   69.310982] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.312523] i8042: [68501] 31 <- i8042 (interrupt, 1, 12)
[   69.314100] i8042: [68502] c1 <- i8042 (interrupt, 1, 12)
[   69.315686] i8042: [68504] d0 <- i8042 (interrupt, 1, 12)
[   69.317261] i8042: [68505] 44 <- i8042 (interrupt, 1, 12)
[   69.318818] i8042: [68507] 15 <- i8042 (interrupt, 1, 12)
[   69.320432] i8042: [68509] d3 <- i8042 (interrupt, 1, 12)
[   69.320472] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.322020] i8042: [68510] 31 <- i8042 (interrupt, 1, 12)
[   69.323540] i8042: [68512] 31 <- i8042 (interrupt, 1, 12)
[   69.325121] i8042: [68513] d0 <- i8042 (interrupt, 1, 12)
[   69.326751] i8042: [68515] 44 <- i8042 (interrupt, 1, 12)
[   69.328340] i8042: [68516] 15 <- i8042 (interrupt, 1, 12)
[   69.329935] i8042: [68518] f2 <- i8042 (interrupt, 1, 12)
[   69.329976] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.331514] i8042: [68520] 31 <- i8042 (interrupt, 1, 12)
[   69.333087] i8042: [68521] 91 <- i8042 (interrupt, 1, 12)
[   69.334671] i8042: [68523] c0 <- i8042 (interrupt, 1, 12)
[   69.336246] i8042: [68524] 44 <- i8042 (interrupt, 1, 12)
[   69.337839] i8042: [68526] 15 <- i8042 (interrupt, 1, 12)
[   69.339415] i8042: [68527] f3 <- i8042 (interrupt, 1, 12)
[   69.339455] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.339472] psmouse serio1: issuing reconnect request
[   69.339561] i8042: [68528] d4 -> i8042 (command)
[   69.339750] i8042: [68528] ff -> i8042 (parameter)
[   69.342630] i8042: [68531] fa <- i8042 (interrupt, 1, 12)
[   69.443503] i8042: [68632] aa <- i8042 (interrupt, 1, 12)
[   69.445079] i8042: [68633] 00 <- i8042 (interrupt, 1, 12)
[   69.445143] i8042: [68633] d4 -> i8042 (command)
[   69.445332] i8042: [68633] f6 -> i8042 (parameter)
[   69.448384] i8042: [68636] fa <- i8042 (interrupt, 1, 12)
[   69.448512] i8042: [68637] d4 -> i8042 (command)
[   69.448702] i8042: [68637] f5 -> i8042 (parameter)
[   69.451583] i8042: [68640] fa <- i8042 (interrupt, 1, 12)
[   69.451691] i8042: [68640] d4 -> i8042 (command)
[   69.451881] i8042: [68640] e6 -> i8042 (parameter)
[   69.454775] i8042: [68643] fa <- i8042 (interrupt, 1, 12)
[   69.454882] i8042: [68643] d4 -> i8042 (command)
[   69.455071] i8042: [68643] e6 -> i8042 (parameter)
[   69.457966] i8042: [68646] fa <- i8042 (interrupt, 1, 12)
[   69.458074] i8042: [68646] d4 -> i8042 (command)
[   69.458264] i8042: [68646] e6 -> i8042 (parameter)
[   69.461156] i8042: [68649] fa <- i8042 (interrupt, 1, 12)
[   69.461238] i8042: [68649] d4 -> i8042 (command)
[   69.461428] i8042: [68649] e9 -> i8042 (parameter)
[   69.464352] i8042: [68652] fa <- i8042 (interrupt, 1, 12)
[   69.465923] i8042: [68654] 3c <- i8042 (interrupt, 1, 12)
[   69.467510] i8042: [68656] 03 <- i8042 (interrupt, 1, 12)
[   69.469087] i8042: [68657] 00 <- i8042 (interrupt, 1, 12)
[   69.469171] i8042: [68657] d4 -> i8042 (command)
[   69.469361] i8042: [68657] e6 -> i8042 (parameter)
[   69.472295] i8042: [68660] fa <- i8042 (interrupt, 1, 12)
[   69.472379] i8042: [68660] d4 -> i8042 (command)
[   69.472569] i8042: [68660] e8 -> i8042 (parameter)
[   69.475516] i8042: [68664] fa <- i8042 (interrupt, 1, 12)
[   69.475625] i8042: [68664] d4 -> i8042 (command)
[   69.475872] i8042: [68664] 00 -> i8042 (parameter)
[   69.478687] i8042: [68667] fa <- i8042 (interrupt, 1, 12)
[   69.478793] i8042: [68667] d4 -> i8042 (command)
[   69.478983] i8042: [68667] e8 -> i8042 (parameter)
[   69.481882] i8042: [68670] fa <- i8042 (interrupt, 1, 12)
[   69.481987] i8042: [68670] d4 -> i8042 (command)
[   69.482177] i8042: [68670] 00 -> i8042 (parameter)
[   69.485093] i8042: [68673] fa <- i8042 (interrupt, 1, 12)
[   69.485199] i8042: [68673] d4 -> i8042 (command)
[   69.485389] i8042: [68673] e8 -> i8042 (parameter)
[   69.488269] i8042: [68676] fa <- i8042 (interrupt, 1, 12)
[   69.488376] i8042: [68676] d4 -> i8042 (command)
[   69.488566] i8042: [68677] 00 -> i8042 (parameter)
[   69.491470] i8042: [68680] fa <- i8042 (interrupt, 1, 12)
[   69.491578] i8042: [68680] d4 -> i8042 (command)
[   69.491825] i8042: [68680] e8 -> i8042 (parameter)
[   69.494635] i8042: [68683] fa <- i8042 (interrupt, 1, 12)
[   69.494737] i8042: [68683] d4 -> i8042 (command)
[   69.494925] i8042: [68683] 01 -> i8042 (parameter)
[   69.497861] i8042: [68686] fa <- i8042 (interrupt, 1, 12)
[   69.497969] i8042: [68686] d4 -> i8042 (command)
[   69.498216] i8042: [68686] e9 -> i8042 (parameter)
[   69.501064] i8042: [68689] fa <- i8042 (interrupt, 1, 12)
[   69.502541] i8042: [68691] 5e <- i8042 (interrupt, 1, 12)
[   69.504207] i8042: [68692] 0f <- i8042 (interrupt, 1, 12)
[   69.505784] i8042: [68694] 01 <- i8042 (interrupt, 1, 12)
[   69.505893] i8042: [68694] d4 -> i8042 (command)
[   69.506083] i8042: [68694] f8 -> i8042 (parameter)
[   69.509007] i8042: [68697] fa <- i8042 (interrupt, 1, 12)
[   69.509116] i8042: [68697] d4 -> i8042 (command)
[   69.509306] i8042: [68697] 00 -> i8042 (parameter)
[   69.512202] i8042: [68700] fa <- i8042 (interrupt, 1, 12)
[   69.512311] i8042: [68700] d4 -> i8042 (command)
[   69.512501] i8042: [68701] f8 -> i8042 (parameter)
[   69.515395] i8042: [68703] fa <- i8042 (interrupt, 1, 12)
[   69.515502] i8042: [68704] d4 -> i8042 (command)
[   69.515692] i8042: [68704] 07 -> i8042 (parameter)
[   69.518588] i8042: [68707] fa <- i8042 (interrupt, 1, 12)
[   69.518697] i8042: [68707] d4 -> i8042 (command)
[   69.518887] i8042: [68707] f8 -> i8042 (parameter)
[   69.521779] i8042: [68710] fa <- i8042 (interrupt, 1, 12)
[   69.521887] i8042: [68710] d4 -> i8042 (command)
[   69.522077] i8042: [68710] 00 -> i8042 (parameter)
[   69.524973] i8042: [68713] fa <- i8042 (interrupt, 1, 12)
[   69.525057] i8042: [68713] d4 -> i8042 (command)
[   69.525304] i8042: [68713] f8 -> i8042 (parameter)
[   69.528183] i8042: [68716] fa <- i8042 (interrupt, 1, 12)
[   69.528292] i8042: [68716] d4 -> i8042 (command)
[   69.528481] i8042: [68717] 01 -> i8042 (parameter)
[   69.531367] i8042: [68719] fa <- i8042 (interrupt, 1, 12)
[   69.531487] i8042: [68720] d4 -> i8042 (command)
[   69.531677] i8042: [68720] e6 -> i8042 (parameter)
[   69.534544] i8042: [68723] fa <- i8042 (interrupt, 1, 12)
[   69.534629] i8042: [68723] d4 -> i8042 (command)
[   69.534818] i8042: [68723] f3 -> i8042 (parameter)
[   69.537775] i8042: [68726] fa <- i8042 (interrupt, 1, 12)
[   69.537881] i8042: [68726] d4 -> i8042 (command)
[   69.538071] i8042: [68726] 64 -> i8042 (parameter)
[   69.540951] i8042: [68729] fa <- i8042 (interrupt, 1, 12)
[   69.541061] i8042: [68729] d4 -> i8042 (command)
[   69.541251] i8042: [68729] e8 -> i8042 (parameter)
[   69.544148] i8042: [68732] fa <- i8042 (interrupt, 1, 12)
[   69.544255] i8042: [68732] d4 -> i8042 (command)
[   69.544502] i8042: [68733] 03 -> i8042 (parameter)
[   69.547337] i8042: [68735] fa <- i8042 (interrupt, 1, 12)
[   69.547455] i8042: [68736] d4 -> i8042 (command)
[   69.547645] i8042: [68736] e6 -> i8042 (parameter)
[   69.550542] i8042: [68739] fa <- i8042 (interrupt, 1, 12)
[   69.550641] i8042: [68739] d4 -> i8042 (command)
[   69.550831] i8042: [68739] f4 -> i8042 (parameter)
[   69.553736] i8042: [68742] fa <- i8042 (interrupt, 1, 12)
[   69.574475] i8042: [68763] 08 <- i8042 (interrupt, 1, 12)
[   69.576057] i8042: [68764] 00 <- i8042 (interrupt, 1, 12)
[   69.577643] i8042: [68766] 00 <- i8042 (interrupt, 1, 12)
[   69.583768] i8042: [68772] 54 <- i8042 (interrupt, 1, 12)
[   69.585353] i8042: [68773] 01 <- i8042 (interrupt, 1, 12)
[   69.586937] i8042: [68775] 00 <- i8042 (interrupt, 1, 12)
[   69.586977] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.588519] i8042: [68777] 10 <- i8042 (interrupt, 1, 12)
[   69.590101] i8042: [68778] 00 <- i8042 (interrupt, 1, 12)
[   69.591613] i8042: [68780] 00 <- i8042 (interrupt, 1, 12)
[   69.593265] i8042: [68781] 54 <- i8042 (interrupt, 1, 12)
[   69.594849] i8042: [68783] 13 <- i8042 (interrupt, 1, 12)
[   69.596442] i8042: [68785] c6 <- i8042 (interrupt, 1, 12)
[   69.596482] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.598017] i8042: [68786] 31 <- i8042 (interrupt, 1, 12)
[   69.599541] i8042: [68788] d2 <- i8042 (interrupt, 1, 12)
[   69.601123] i8042: [68789] c5 <- i8042 (interrupt, 1, 12)
[   69.602763] i8042: [68791] 54 <- i8042 (interrupt, 1, 12)
[   69.604347] i8042: [68792] 23 <- i8042 (interrupt, 1, 12)
[   69.605923] i8042: [68794] c6 <- i8042 (interrupt, 1, 12)
[   69.605963] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.607536] i8042: [68796] 31 <- i8042 (interrupt, 1, 12)
[   69.608992] i8042: [68797] 42 <- i8042 (interrupt, 1, 12)
[   69.610675] i8042: [68799] c5 <- i8042 (interrupt, 1, 12)
[   69.612257] i8042: [68800] 54 <- i8042 (interrupt, 1, 12)
[   69.613837] i8042: [68802] 23 <- i8042 (interrupt, 1, 12)
[   69.615421] i8042: [68804] c6 <- i8042 (interrupt, 1, 12)
[   69.615461] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.617003] i8042: [68805] 31 <- i8042 (interrupt, 1, 12)
[   69.618589] i8042: [68807] 92 <- i8042 (interrupt, 1, 12)
[   69.620168] i8042: [68808] c5 <- i8042 (interrupt, 1, 12)
[   69.621693] i8042: [68810] 54 <- i8042 (interrupt, 1, 12)
[   69.623334] i8042: [68811] 23 <- i8042 (interrupt, 1, 12)
[   69.624927] i8042: [68813] a0 <- i8042 (interrupt, 1, 12)
[   69.624967] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.624984] psmouse serio1: issuing reconnect request
[   69.625074] i8042: [68813] d4 -> i8042 (command)
[   69.625321] i8042: [68813] ff -> i8042 (parameter)
[   69.628135] i8042: [68816] fa <- i8042 (interrupt, 1, 12)
[   69.729056] i8042: [68917] aa <- i8042 (interrupt, 1, 12)
[   69.730629] i8042: [68919] 00 <- i8042 (interrupt, 1, 12)
[   69.730695] i8042: [68919] d4 -> i8042 (command)
[   69.730885] i8042: [68919] f6 -> i8042 (parameter)
[   69.733839] i8042: [68922] fa <- i8042 (interrupt, 1, 12)
[   69.733900] i8042: [68922] d4 -> i8042 (command)
[   69.734090] i8042: [68922] f5 -> i8042 (parameter)
[   69.737129] i8042: [68925] fa <- i8042 (interrupt, 1, 12)
[   69.737237] i8042: [68925] d4 -> i8042 (command)
[   69.737426] i8042: [68926] e6 -> i8042 (parameter)
[   69.740325] i8042: [68928] fa <- i8042 (interrupt, 1, 12)
[   69.740434] i8042: [68929] d4 -> i8042 (command)
[   69.740623] i8042: [68929] e6 -> i8042 (parameter)
[   69.743515] i8042: [68932] fa <- i8042 (interrupt, 1, 12)
[   69.743623] i8042: [68932] d4 -> i8042 (command)
[   69.743812] i8042: [68932] e6 -> i8042 (parameter)
[   69.746716] i8042: [68935] fa <- i8042 (interrupt, 1, 12)
[   69.746825] i8042: [68935] d4 -> i8042 (command)
[   69.747071] i8042: [68935] e9 -> i8042 (parameter)
[   69.749914] i8042: [68938] fa <- i8042 (interrupt, 1, 12)
[   69.751490] i8042: [68940] 3c <- i8042 (interrupt, 1, 12)
[   69.752951] i8042: [68941] 03 <- i8042 (interrupt, 1, 12)
[   69.754546] i8042: [68943] 00 <- i8042 (interrupt, 1, 12)
[   69.754624] i8042: [68943] d4 -> i8042 (command)
[   69.754813] i8042: [68943] e6 -> i8042 (parameter)
[   69.757830] i8042: [68946] fa <- i8042 (interrupt, 1, 12)
[   69.757915] i8042: [68946] d4 -> i8042 (command)
[   69.758105] i8042: [68946] e8 -> i8042 (parameter)
[   69.761028] i8042: [68949] fa <- i8042 (interrupt, 1, 12)
[   69.761110] i8042: [68949] d4 -> i8042 (command)
[   69.761300] i8042: [68949] 00 -> i8042 (parameter)
[   69.764230] i8042: [68952] fa <- i8042 (interrupt, 1, 12)
[   69.764311] i8042: [68952] d4 -> i8042 (command)
[   69.764501] i8042: [68952] e8 -> i8042 (parameter)
[   69.767318] i8042: [68955] fa <- i8042 (interrupt, 1, 12)
[   69.770240] i8042: [68958] d4 -> i8042 (command)
[   69.770443] i8042: [68959] 00 -> i8042 (parameter)
[   69.773041] i8042: [68961] fa <- i8042 (interrupt, 1, 12)
[   69.773107] i8042: [68961] d4 -> i8042 (command)
[   69.773296] i8042: [68961] e8 -> i8042 (parameter)
[   69.776255] i8042: [68964] fa <- i8042 (interrupt, 1, 12)
[   69.776353] i8042: [68964] d4 -> i8042 (command)
[   69.776539] i8042: [68965] 00 -> i8042 (parameter)
[   69.779536] i8042: [68968] fa <- i8042 (interrupt, 1, 12)
[   69.779637] i8042: [68968] d4 -> i8042 (command)
[   69.779828] i8042: [68968] e8 -> i8042 (parameter)
[   69.782703] i8042: [68971] fa <- i8042 (interrupt, 1, 12)
[   69.782809] i8042: [68971] d4 -> i8042 (command)
[   69.782999] i8042: [68971] 01 -> i8042 (parameter)
[   69.785960] i8042: [68974] fa <- i8042 (interrupt, 1, 12)
[   69.786084] i8042: [68974] d4 -> i8042 (command)
[   69.786331] i8042: [68974] e9 -> i8042 (parameter)
[   69.789116] i8042: [68977] fa <- i8042 (interrupt, 1, 12)
[   69.790664] i8042: [68979] 5e <- i8042 (interrupt, 1, 12)
[   69.792277] i8042: [68980] 0f <- i8042 (interrupt, 1, 12)
[   69.793847] i8042: [68982] 01 <- i8042 (interrupt, 1, 12)
[   69.793956] i8042: [68982] d4 -> i8042 (command)
[   69.794146] i8042: [68982] f8 -> i8042 (parameter)
[   69.797057] i8042: [68985] fa <- i8042 (interrupt, 1, 12)
[   69.797166] i8042: [68985] d4 -> i8042 (command)
[   69.797357] i8042: [68985] 00 -> i8042 (parameter)
[   69.800257] i8042: [68988] fa <- i8042 (interrupt, 1, 12)
[   69.800366] i8042: [68988] d4 -> i8042 (command)
[   69.800614] i8042: [68989] f8 -> i8042 (parameter)
[   69.803456] i8042: [68992] fa <- i8042 (interrupt, 1, 12)
[   69.803564] i8042: [68992] d4 -> i8042 (command)
[   69.803755] i8042: [68992] 07 -> i8042 (parameter)
[   69.806657] i8042: [68995] fa <- i8042 (interrupt, 1, 12)
[   69.806766] i8042: [68995] d4 -> i8042 (command)
[   69.806957] i8042: [68995] f8 -> i8042 (parameter)
[   69.809841] i8042: [68998] fa <- i8042 (interrupt, 1, 12)
[   69.809950] i8042: [68998] d4 -> i8042 (command)
[   69.810141] i8042: [68998] 00 -> i8042 (parameter)
[   69.813046] i8042: [69001] fa <- i8042 (interrupt, 1, 12)
[   69.813155] i8042: [69001] d4 -> i8042 (command)
[   69.813346] i8042: [69001] f8 -> i8042 (parameter)
[   69.816225] i8042: [69004] fa <- i8042 (interrupt, 1, 12)
[   69.816335] i8042: [69004] d4 -> i8042 (command)
[   69.816582] i8042: [69005] 01 -> i8042 (parameter)
[   69.819445] i8042: [69007] fa <- i8042 (interrupt, 1, 12)
[   69.819526] i8042: [69008] d4 -> i8042 (command)
[   69.819716] i8042: [69008] e6 -> i8042 (parameter)
[   69.822545] i8042: [69011] fa <- i8042 (interrupt, 1, 12)
[   69.822639] i8042: [69011] d4 -> i8042 (command)
[   69.822828] i8042: [69011] f3 -> i8042 (parameter)
[   69.825828] i8042: [69014] fa <- i8042 (interrupt, 1, 12)
[   69.825935] i8042: [69014] d4 -> i8042 (command)
[   69.826125] i8042: [69014] 64 -> i8042 (parameter)
[   69.829011] i8042: [69017] fa <- i8042 (interrupt, 1, 12)
[   69.829120] i8042: [69017] d4 -> i8042 (command)
[   69.829310] i8042: [69017] e8 -> i8042 (parameter)
[   69.832208] i8042: [69020] fa <- i8042 (interrupt, 1, 12)
[   69.832314] i8042: [69020] d4 -> i8042 (command)
[   69.832504] i8042: [69021] 03 -> i8042 (parameter)
[   69.835402] i8042: [69023] fa <- i8042 (interrupt, 1, 12)
[   69.835512] i8042: [69024] d4 -> i8042 (command)
[   69.835759] i8042: [69024] e6 -> i8042 (parameter)
[   69.838593] i8042: [69027] fa <- i8042 (interrupt, 1, 12)
[   69.838702] i8042: [69027] d4 -> i8042 (command)
[   69.838893] i8042: [69027] f4 -> i8042 (parameter)
[   69.841789] i8042: [69030] fa <- i8042 (interrupt, 1, 12)
[   69.852444] i8042: [69041] 08 <- i8042 (interrupt, 1, 12)
[   69.854019] i8042: [69042] 00 <- i8042 (interrupt, 1, 12)
[   69.855602] i8042: [69044] 00 <- i8042 (interrupt, 1, 12)
[   69.861738] i8042: [69050] 54 <- i8042 (interrupt, 1, 12)
[   69.863306] i8042: [69051] 01 <- i8042 (interrupt, 1, 12)
[   69.864889] i8042: [69053] 00 <- i8042 (interrupt, 1, 12)
[   69.864929] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.866477] i8042: [69055] 10 <- i8042 (interrupt, 1, 12)
[   69.868054] i8042: [69056] 00 <- i8042 (interrupt, 1, 12)
[   69.869618] i8042: [69058] 00 <- i8042 (interrupt, 1, 12)
[   69.871225] i8042: [69059] 54 <- i8042 (interrupt, 1, 12)
[   69.872804] i8042: [69061] 13 <- i8042 (interrupt, 1, 12)
[   69.874389] i8042: [69062] b4 <- i8042 (interrupt, 1, 12)
[   69.874429] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.875971] i8042: [69064] 31 <- i8042 (interrupt, 1, 12)
[   69.877566] i8042: [69066] 02 <- i8042 (interrupt, 1, 12)
[   69.879132] i8042: [69067] 38 <- i8042 (interrupt, 1, 12)
[   69.880721] i8042: [69069] 54 <- i8042 (interrupt, 1, 12)
[   69.882296] i8042: [69070] 13 <- i8042 (interrupt, 1, 12)
[   69.883900] i8042: [69072] b4 <- i8042 (interrupt, 1, 12)
[   69.883940] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.885480] i8042: [69074] 31 <- i8042 (interrupt, 1, 12)
[   69.887052] i8042: [69075] 92 <- i8042 (interrupt, 1, 12)
[   69.888647] i8042: [69077] 38 <- i8042 (interrupt, 1, 12)
[   69.890223] i8042: [69078] 54 <- i8042 (interrupt, 1, 12)
[   69.891805] i8042: [69080] 13 <- i8042 (interrupt, 1, 12)
[   69.893393] i8042: [69081] ee <- i8042 (interrupt, 1, 12)
[   69.893433] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.894967] i8042: [69083] 31 <- i8042 (interrupt, 1, 12)
[   69.896562] i8042: [69085] d1 <- i8042 (interrupt, 1, 12)
[   69.898130] i8042: [69086] fa <- i8042 (interrupt, 1, 12)
[   69.899692] i8042: [69088] 44 <- i8042 (interrupt, 1, 12)
[   69.901293] i8042: [69089] 13 <- i8042 (interrupt, 1, 12)
[   69.902877] i8042: [69091] f8 <- i8042 (interrupt, 1, 12)
[   69.902917] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   69.902934] psmouse serio1: issuing reconnect request
[   69.903024] i8042: [69091] d4 -> i8042 (command)
[   69.903214] i8042: [69091] ff -> i8042 (parameter)
[   69.906086] i8042: [69094] fa <- i8042 (interrupt, 1, 12)
[   70.007090] i8042: [69195] aa <- i8042 (interrupt, 1, 12)
[   70.008672] i8042: [69197] 00 <- i8042 (interrupt, 1, 12)
[   70.008780] i8042: [69197] d4 -> i8042 (command)
[   70.008970] i8042: [69197] f6 -> i8042 (parameter)
[   70.011877] i8042: [69200] fa <- i8042 (interrupt, 1, 12)
[   70.011986] i8042: [69200] d4 -> i8042 (command)
[   70.012177] i8042: [69200] f5 -> i8042 (parameter)
[   70.015075] i8042: [69203] fa <- i8042 (interrupt, 1, 12)
[   70.015184] i8042: [69203] d4 -> i8042 (command)
[   70.015375] i8042: [69203] e6 -> i8042 (parameter)
[   70.018270] i8042: [69206] fa <- i8042 (interrupt, 1, 12)
[   70.018380] i8042: [69206] d4 -> i8042 (command)
[   70.018571] i8042: [69207] e6 -> i8042 (parameter)
[   70.021462] i8042: [69210] fa <- i8042 (interrupt, 1, 12)
[   70.021571] i8042: [69210] d4 -> i8042 (command)
[   70.021818] i8042: [69210] e6 -> i8042 (parameter)
[   70.024607] i8042: [69213] fa <- i8042 (interrupt, 1, 12)
[   70.024717] i8042: [69213] d4 -> i8042 (command)
[   70.024908] i8042: [69213] e9 -> i8042 (parameter)
[   70.027848] i8042: [69216] fa <- i8042 (interrupt, 1, 12)
[   70.029404] i8042: [69217] 3c <- i8042 (interrupt, 1, 12)
[   70.030979] i8042: [69219] 03 <- i8042 (interrupt, 1, 12)
[   70.032584] i8042: [69221] 00 <- i8042 (interrupt, 1, 12)
[   70.032693] i8042: [69221] d4 -> i8042 (command)
[   70.032883] i8042: [69221] e6 -> i8042 (parameter)
[   70.035787] i8042: [69224] fa <- i8042 (interrupt, 1, 12)
[   70.035895] i8042: [69224] d4 -> i8042 (command)
[   70.036141] i8042: [69224] e8 -> i8042 (parameter)
[   70.038976] i8042: [69227] fa <- i8042 (interrupt, 1, 12)
[   70.039082] i8042: [69227] d4 -> i8042 (command)
[   70.039272] i8042: [69227] 00 -> i8042 (parameter)
[   70.042126] i8042: [69230] fa <- i8042 (interrupt, 1, 12)
[   70.042235] i8042: [69230] d4 -> i8042 (command)
[   70.042482] i8042: [69231] e8 -> i8042 (parameter)
[   70.045266] i8042: [69233] fa <- i8042 (interrupt, 1, 12)
[   70.045954] i8042: [69234] d4 -> i8042 (command)
[   70.046149] i8042: [69234] 00 -> i8042 (parameter)
[   70.048963] i8042: [69237] fa <- i8042 (interrupt, 1, 12)
[   70.055463] i8042: [69244] d4 -> i8042 (command)
[   70.055664] i8042: [69244] e8 -> i8042 (parameter)
[   70.058202] i8042: [69246] fa <- i8042 (interrupt, 1, 12)
[   70.058257] i8042: [69246] d4 -> i8042 (command)
[   70.058445] i8042: [69247] 00 -> i8042 (parameter)
[   70.061464] i8042: [69250] fa <- i8042 (interrupt, 1, 12)
[   70.061579] i8042: [69250] d4 -> i8042 (command)
[   70.061825] i8042: [69250] e8 -> i8042 (parameter)
[   70.064686] i8042: [69253] fa <- i8042 (interrupt, 1, 12)
[   70.064772] i8042: [69253] d4 -> i8042 (command)
[   70.064962] i8042: [69253] 01 -> i8042 (parameter)
[   70.067780] i8042: [69256] fa <- i8042 (interrupt, 1, 12)
[   70.067854] i8042: [69256] d4 -> i8042 (command)
[   70.068043] i8042: [69256] e9 -> i8042 (parameter)
[   70.071078] i8042: [69259] fa <- i8042 (interrupt, 1, 12)
[   70.072614] i8042: [69261] 5e <- i8042 (interrupt, 1, 12)
[   70.074240] i8042: [69262] 0f <- i8042 (interrupt, 1, 12)
[   70.075824] i8042: [69264] 01 <- i8042 (interrupt, 1, 12)
[   70.075934] i8042: [69264] d4 -> i8042 (command)
[   70.076124] i8042: [69264] f8 -> i8042 (parameter)
[   70.079040] i8042: [69267] fa <- i8042 (interrupt, 1, 12)
[   70.079149] i8042: [69267] d4 -> i8042 (command)
[   70.079339] i8042: [69267] 00 -> i8042 (parameter)
[   70.082215] i8042: [69270] fa <- i8042 (interrupt, 1, 12)
[   70.082324] i8042: [69270] d4 -> i8042 (command)
[   70.082514] i8042: [69271] f8 -> i8042 (parameter)
[   70.085425] i8042: [69274] fa <- i8042 (interrupt, 1, 12)
[   70.085535] i8042: [69274] d4 -> i8042 (command)
[   70.085726] i8042: [69274] 07 -> i8042 (parameter)
[   70.088574] i8042: [69277] fa <- i8042 (interrupt, 1, 12)
[   70.088683] i8042: [69277] d4 -> i8042 (command)
[   70.088872] i8042: [69277] f8 -> i8042 (parameter)
[   70.091774] i8042: [69280] fa <- i8042 (interrupt, 1, 12)
[   70.091884] i8042: [69280] d4 -> i8042 (command)
[   70.092075] i8042: [69280] 00 -> i8042 (parameter)
[   70.094946] i8042: [69283] fa <- i8042 (interrupt, 1, 12)
[   70.095033] i8042: [69283] d4 -> i8042 (command)
[   70.095222] i8042: [69283] f8 -> i8042 (parameter)
[   70.098182] i8042: [69286] fa <- i8042 (interrupt, 1, 12)
[   70.098290] i8042: [69286] d4 -> i8042 (command)
[   70.098537] i8042: [69287] 01 -> i8042 (parameter)
[   70.101376] i8042: [69289] fa <- i8042 (interrupt, 1, 12)
[   70.101490] i8042: [69290] d4 -> i8042 (command)
[   70.101682] i8042: [69290] e6 -> i8042 (parameter)
[   70.104573] i8042: [69293] fa <- i8042 (interrupt, 1, 12)
[   70.104683] i8042: [69293] d4 -> i8042 (command)
[   70.104873] i8042: [69293] f3 -> i8042 (parameter)
[   70.107766] i8042: [69296] fa <- i8042 (interrupt, 1, 12)
[   70.107872] i8042: [69296] d4 -> i8042 (command)
[   70.108118] i8042: [69296] 64 -> i8042 (parameter)
[   70.110959] i8042: [69299] fa <- i8042 (interrupt, 1, 12)
[   70.111067] i8042: [69299] d4 -> i8042 (command)
[   70.111259] i8042: [69299] e8 -> i8042 (parameter)
[   70.114154] i8042: [69302] fa <- i8042 (interrupt, 1, 12)
[   70.114259] i8042: [69302] d4 -> i8042 (command)
[   70.114449] i8042: [69303] 03 -> i8042 (parameter)
[   70.117347] i8042: [69305] fa <- i8042 (interrupt, 1, 12)
[   70.117456] i8042: [69306] d4 -> i8042 (command)
[   70.117702] i8042: [69306] e6 -> i8042 (parameter)
[   70.120561] i8042: [69309] fa <- i8042 (interrupt, 1, 12)
[   70.120686] i8042: [69309] d4 -> i8042 (command)
[   70.120932] i8042: [69309] f4 -> i8042 (parameter)
[   70.123741] i8042: [69312] fa <- i8042 (interrupt, 1, 12)
[   70.144514] i8042: [69333] 08 <- i8042 (interrupt, 1, 12)
[   70.146029] i8042: [69334] 00 <- i8042 (interrupt, 1, 12)
[   70.147565] i8042: [69336] 00 <- i8042 (interrupt, 1, 12)
[   70.154167] i8042: [69342] 44 <- i8042 (interrupt, 1, 12)
[   70.155747] i8042: [69344] 01 <- i8042 (interrupt, 1, 12)
[   70.157328] i8042: [69345] 00 <- i8042 (interrupt, 1, 12)
[   70.157344] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.158911] i8042: [69347] 10 <- i8042 (interrupt, 1, 12)
[   70.160497] i8042: [69349] 00 <- i8042 (interrupt, 1, 12)
[   70.162088] i8042: [69350] 00 <- i8042 (interrupt, 1, 12)
[   70.163660] i8042: [69352] 44 <- i8042 (interrupt, 1, 12)
[   70.165244] i8042: [69353] 15 <- i8042 (interrupt, 1, 12)
[   70.166826] i8042: [69355] 22 <- i8042 (interrupt, 1, 12)
[   70.166838] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.168413] i8042: [69357] 31 <- i8042 (interrupt, 1, 12)
[   70.169991] i8042: [69358] 90 <- i8042 (interrupt, 1, 12)
[   70.171569] i8042: [69360] d1 <- i8042 (interrupt, 1, 12)
[   70.173163] i8042: [69361] 44 <- i8042 (interrupt, 1, 12)
[   70.174735] i8042: [69363] 15 <- i8042 (interrupt, 1, 12)
[   70.176325] i8042: [69364] 22 <- i8042 (interrupt, 1, 12)
[   70.176339] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.177912] i8042: [69366] 31 <- i8042 (interrupt, 1, 12)
[   70.179483] i8042: [69368] a0 <- i8042 (interrupt, 1, 12)
[   70.181068] i8042: [69369] d1 <- i8042 (interrupt, 1, 12)
[   70.182647] i8042: [69371] 44 <- i8042 (interrupt, 1, 12)
[   70.184234] i8042: [69372] 15 <- i8042 (interrupt, 1, 12)
[   70.185815] i8042: [69374] 22 <- i8042 (interrupt, 1, 12)
[   70.185828] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.187398] i8042: [69375] 31 <- i8042 (interrupt, 1, 12)
[   70.188978] i8042: [69377] c0 <- i8042 (interrupt, 1, 12)
[   70.190565] i8042: [69379] d1 <- i8042 (interrupt, 1, 12)
[   70.192143] i8042: [69380] 44 <- i8042 (interrupt, 1, 12)
[   70.193731] i8042: [69382] 15 <- i8042 (interrupt, 1, 12)
[   70.195312] i8042: [69383] 22 <- i8042 (interrupt, 1, 12)
[   70.195326] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.195336] psmouse serio1: issuing reconnect request
[   70.195380] i8042: [69383] d4 -> i8042 (command)
[   70.195566] i8042: [69383] ff -> i8042 (parameter)
[   70.198529] i8042: [69387] fa <- i8042 (interrupt, 1, 12)
[   70.299627] i8042: [69488] aa <- i8042 (interrupt, 1, 12)
[   70.301206] i8042: [69489] 00 <- i8042 (interrupt, 1, 12)
[   70.301316] i8042: [69489] d4 -> i8042 (command)
[   70.301562] i8042: [69490] f6 -> i8042 (parameter)
[   70.304419] i8042: [69492] fa <- i8042 (interrupt, 1, 12)
[   70.304526] i8042: [69493] d4 -> i8042 (command)
[   70.304716] i8042: [69493] f5 -> i8042 (parameter)
[   70.307616] i8042: [69496] fa <- i8042 (interrupt, 1, 12)
[   70.307724] i8042: [69496] d4 -> i8042 (command)
[   70.307915] i8042: [69496] e6 -> i8042 (parameter)
[   70.310808] i8042: [69499] fa <- i8042 (interrupt, 1, 12)
[   70.310916] i8042: [69499] d4 -> i8042 (command)
[   70.311106] i8042: [69499] e6 -> i8042 (parameter)
[   70.314000] i8042: [69502] fa <- i8042 (interrupt, 1, 12)
[   70.314107] i8042: [69502] d4 -> i8042 (command)
[   70.314297] i8042: [69502] e6 -> i8042 (parameter)
[   70.317195] i8042: [69505] fa <- i8042 (interrupt, 1, 12)
[   70.317303] i8042: [69505] d4 -> i8042 (command)
[   70.317494] i8042: [69506] e9 -> i8042 (parameter)
[   70.320391] i8042: [69508] fa <- i8042 (interrupt, 1, 12)
[   70.321951] i8042: [69510] 3c <- i8042 (interrupt, 1, 12)
[   70.323528] i8042: [69512] 03 <- i8042 (interrupt, 1, 12)
[   70.325103] i8042: [69513] 00 <- i8042 (interrupt, 1, 12)
[   70.325211] i8042: [69513] d4 -> i8042 (command)
[   70.325401] i8042: [69514] e6 -> i8042 (parameter)
[   70.328325] i8042: [69516] fa <- i8042 (interrupt, 1, 12)
[   70.328431] i8042: [69517] d4 -> i8042 (command)
[   70.328677] i8042: [69517] e8 -> i8042 (parameter)
[   70.331515] i8042: [69520] fa <- i8042 (interrupt, 1, 12)
[   70.331619] i8042: [69520] d4 -> i8042 (command)
[   70.331809] i8042: [69520] 00 -> i8042 (parameter)
[   70.334704] i8042: [69523] fa <- i8042 (interrupt, 1, 12)
[   70.334811] i8042: [69523] d4 -> i8042 (command)
[   70.335058] i8042: [69523] e8 -> i8042 (parameter)
[   70.337905] i8042: [69526] fa <- i8042 (interrupt, 1, 12)
[   70.338011] i8042: [69526] d4 -> i8042 (command)
[   70.338257] i8042: [69526] 00 -> i8042 (parameter)
[   70.341098] i8042: [69529] fa <- i8042 (interrupt, 1, 12)
[   70.341205] i8042: [69529] d4 -> i8042 (command)
[   70.341396] i8042: [69529] e8 -> i8042 (parameter)
[   70.344301] i8042: [69532] fa <- i8042 (interrupt, 1, 12)
[   70.344443] i8042: [69533] d4 -> i8042 (command)
[   70.344633] i8042: [69533] 00 -> i8042 (parameter)
[   70.347490] i8042: [69536] fa <- i8042 (interrupt, 1, 12)
[   70.347596] i8042: [69536] d4 -> i8042 (command)
[   70.347786] i8042: [69536] e8 -> i8042 (parameter)
[   70.350687] i8042: [69539] fa <- i8042 (interrupt, 1, 12)
[   70.350791] i8042: [69539] d4 -> i8042 (command)
[   70.351038] i8042: [69539] 01 -> i8042 (parameter)
[   70.353873] i8042: [69542] fa <- i8042 (interrupt, 1, 12)
[   70.353980] i8042: [69542] d4 -> i8042 (command)
[   70.354170] i8042: [69542] e9 -> i8042 (parameter)
[   70.357085] i8042: [69545] fa <- i8042 (interrupt, 1, 12)
[   70.358633] i8042: [69547] 5e <- i8042 (interrupt, 1, 12)
[   70.360217] i8042: [69548] 0f <- i8042 (interrupt, 1, 12)
[   70.361764] i8042: [69550] 01 <- i8042 (interrupt, 1, 12)
[   70.361872] i8042: [69550] d4 -> i8042 (command)
[   70.362061] i8042: [69550] f8 -> i8042 (parameter)
[   70.365019] i8042: [69553] fa <- i8042 (interrupt, 1, 12)
[   70.365127] i8042: [69553] d4 -> i8042 (command)
[   70.365317] i8042: [69553] 00 -> i8042 (parameter)
[   70.368218] i8042: [69556] fa <- i8042 (interrupt, 1, 12)
[   70.368327] i8042: [69556] d4 -> i8042 (command)
[   70.368518] i8042: [69557] f8 -> i8042 (parameter)
[   70.371405] i8042: [69559] fa <- i8042 (interrupt, 1, 12)
[   70.371515] i8042: [69560] d4 -> i8042 (command)
[   70.371705] i8042: [69560] 07 -> i8042 (parameter)
[   70.374599] i8042: [69563] fa <- i8042 (interrupt, 1, 12)
[   70.374708] i8042: [69563] d4 -> i8042 (command)
[   70.374899] i8042: [69563] f8 -> i8042 (parameter)
[   70.377808] i8042: [69566] fa <- i8042 (interrupt, 1, 12)
[   70.377916] i8042: [69566] d4 -> i8042 (command)
[   70.378107] i8042: [69566] 00 -> i8042 (parameter)
[   70.380987] i8042: [69569] fa <- i8042 (interrupt, 1, 12)
[   70.381096] i8042: [69569] d4 -> i8042 (command)
[   70.381285] i8042: [69569] f8 -> i8042 (parameter)
[   70.384190] i8042: [69572] fa <- i8042 (interrupt, 1, 12)
[   70.384299] i8042: [69572] d4 -> i8042 (command)
[   70.384489] i8042: [69573] 01 -> i8042 (parameter)
[   70.387370] i8042: [69575] fa <- i8042 (interrupt, 1, 12)
[   70.387484] i8042: [69576] d4 -> i8042 (command)
[   70.387676] i8042: [69576] e6 -> i8042 (parameter)
[   70.390590] i8042: [69579] fa <- i8042 (interrupt, 1, 12)
[   70.390700] i8042: [69579] d4 -> i8042 (command)
[   70.390891] i8042: [69579] f3 -> i8042 (parameter)
[   70.393775] i8042: [69582] fa <- i8042 (interrupt, 1, 12)
[   70.393879] i8042: [69582] d4 -> i8042 (command)
[   70.394069] i8042: [69582] 64 -> i8042 (parameter)
[   70.396949] i8042: [69585] fa <- i8042 (interrupt, 1, 12)
[   70.397058] i8042: [69585] d4 -> i8042 (command)
[   70.397248] i8042: [69585] e8 -> i8042 (parameter)
[   70.400133] i8042: [69588] fa <- i8042 (interrupt, 1, 12)
[   70.400239] i8042: [69588] d4 -> i8042 (command)
[   70.400429] i8042: [69589] 03 -> i8042 (parameter)
[   70.403333] i8042: [69591] fa <- i8042 (interrupt, 1, 12)
[   70.403440] i8042: [69592] d4 -> i8042 (command)
[   70.403630] i8042: [69592] e6 -> i8042 (parameter)
[   70.406526] i8042: [69595] fa <- i8042 (interrupt, 1, 12)
[   70.406634] i8042: [69595] d4 -> i8042 (command)
[   70.406824] i8042: [69595] f4 -> i8042 (parameter)
[   70.409718] i8042: [69598] fa <- i8042 (interrupt, 1, 12)
[   70.419871] i8042: [69608] 08 <- i8042 (interrupt, 1, 12)
[   70.421445] i8042: [69610] 00 <- i8042 (interrupt, 1, 12)
[   70.423023] i8042: [69611] 00 <- i8042 (interrupt, 1, 12)
[   70.429046] i8042: [69617] 44 <- i8042 (interrupt, 1, 12)
[   70.430699] i8042: [69619] 01 <- i8042 (interrupt, 1, 12)
[   70.432284] i8042: [69620] 00 <- i8042 (interrupt, 1, 12)
[   70.432323] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.433865] i8042: [69622] 10 <- i8042 (interrupt, 1, 12)
[   70.435378] i8042: [69623] 00 <- i8042 (interrupt, 1, 12)
[   70.437000] i8042: [69625] 00 <- i8042 (interrupt, 1, 12)
[   70.438540] i8042: [69627] 44 <- i8042 (interrupt, 1, 12)
[   70.440121] i8042: [69628] 05 <- i8042 (interrupt, 1, 12)
[   70.441705] i8042: [69630] 96 <- i8042 (interrupt, 1, 12)
[   70.441723] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.443304] i8042: [69631] 31 <- i8042 (interrupt, 1, 12)
[   70.444891] i8042: [69633] c0 <- i8042 (interrupt, 1, 12)
[   70.446518] i8042: [69635] 6a <- i8042 (interrupt, 1, 12)
[   70.448176] i8042: [69636] 44 <- i8042 (interrupt, 1, 12)
[   70.449697] i8042: [69638] 15 <- i8042 (interrupt, 1, 12)
[   70.451280] i8042: [69639] 96 <- i8042 (interrupt, 1, 12)
[   70.451320] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.452904] i8042: [69641] 31 <- i8042 (interrupt, 1, 12)
[   70.454476] i8042: [69643] 30 <- i8042 (interrupt, 1, 12)
[   70.456060] i8042: [69644] 6a <- i8042 (interrupt, 1, 12)
[   70.457647] i8042: [69646] 44 <- i8042 (interrupt, 1, 12)
[   70.459236] i8042: [69647] 15 <- i8042 (interrupt, 1, 12)
[   70.460809] i8042: [69649] 96 <- i8042 (interrupt, 1, 12)
[   70.460850] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.462389] i8042: [69650] 31 <- i8042 (interrupt, 1, 12)
[   70.463978] i8042: [69652] 90 <- i8042 (interrupt, 1, 12)
[   70.465559] i8042: [69654] 6a <- i8042 (interrupt, 1, 12)
[   70.467140] i8042: [69655] 54 <- i8042 (interrupt, 1, 12)
[   70.468698] i8042: [69657] 15 <- i8042 (interrupt, 1, 12)
[   70.470302] i8042: [69658] 96 <- i8042 (interrupt, 1, 12)
[   70.470342] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.470358] psmouse serio1: issuing reconnect request
[   70.470453] i8042: [69659] d4 -> i8042 (command)
[   70.470643] i8042: [69659] ff -> i8042 (parameter)
[   70.473542] i8042: [69662] fa <- i8042 (interrupt, 1, 12)
[   70.574499] i8042: [69763] aa <- i8042 (interrupt, 1, 12)
[   70.576078] i8042: [69764] 00 <- i8042 (interrupt, 1, 12)
[   70.576187] i8042: [69764] d4 -> i8042 (command)
[   70.576433] i8042: [69765] f6 -> i8042 (parameter)
[   70.579292] i8042: [69767] fa <- i8042 (interrupt, 1, 12)
[   70.579436] i8042: [69768] d4 -> i8042 (command)
[   70.579626] i8042: [69768] f5 -> i8042 (parameter)
[   70.582478] i8042: [69771] fa <- i8042 (interrupt, 1, 12)
[   70.582587] i8042: [69771] d4 -> i8042 (command)
[   70.582776] i8042: [69771] e6 -> i8042 (parameter)
[   70.585686] i8042: [69774] fa <- i8042 (interrupt, 1, 12)
[   70.585794] i8042: [69774] d4 -> i8042 (command)
[   70.585984] i8042: [69774] e6 -> i8042 (parameter)
[   70.588867] i8042: [69777] fa <- i8042 (interrupt, 1, 12)
[   70.588975] i8042: [69777] d4 -> i8042 (command)
[   70.589165] i8042: [69777] e6 -> i8042 (parameter)
[   70.592063] i8042: [69780] fa <- i8042 (interrupt, 1, 12)
[   70.592171] i8042: [69780] d4 -> i8042 (command)
[   70.592361] i8042: [69780] e9 -> i8042 (parameter)
[   70.595275] i8042: [69783] fa <- i8042 (interrupt, 1, 12)
[   70.596838] i8042: [69785] 3c <- i8042 (interrupt, 1, 12)
[   70.598420] i8042: [69787] 03 <- i8042 (interrupt, 1, 12)
[   70.600008] i8042: [69788] 00 <- i8042 (interrupt, 1, 12)
[   70.600115] i8042: [69788] d4 -> i8042 (command)
[   70.600361] i8042: [69788] e6 -> i8042 (parameter)
[   70.603222] i8042: [69791] fa <- i8042 (interrupt, 1, 12)
[   70.603329] i8042: [69791] d4 -> i8042 (command)
[   70.603519] i8042: [69792] e8 -> i8042 (parameter)
[   70.606421] i8042: [69795] fa <- i8042 (interrupt, 1, 12)
[   70.606526] i8042: [69795] d4 -> i8042 (command)
[   70.606716] i8042: [69795] 00 -> i8042 (parameter)
[   70.609610] i8042: [69798] fa <- i8042 (interrupt, 1, 12)
[   70.609717] i8042: [69798] d4 -> i8042 (command)
[   70.609907] i8042: [69798] e8 -> i8042 (parameter)
[   70.612813] i8042: [69801] fa <- i8042 (interrupt, 1, 12)
[   70.612919] i8042: [69801] d4 -> i8042 (command)
[   70.613222] i8042: [69801] 00 -> i8042 (parameter)
[   70.616012] i8042: [69804] fa <- i8042 (interrupt, 1, 12)
[   70.616118] i8042: [69804] d4 -> i8042 (command)
[   70.616308] i8042: [69804] e8 -> i8042 (parameter)
[   70.619206] i8042: [69807] fa <- i8042 (interrupt, 1, 12)
[   70.619311] i8042: [69807] d4 -> i8042 (command)
[   70.619502] i8042: [69808] 00 -> i8042 (parameter)
[   70.622422] i8042: [69811] fa <- i8042 (interrupt, 1, 12)
[   70.622528] i8042: [69811] d4 -> i8042 (command)
[   70.622718] i8042: [69811] e8 -> i8042 (parameter)
[   70.625604] i8042: [69814] fa <- i8042 (interrupt, 1, 12)
[   70.625710] i8042: [69814] d4 -> i8042 (command)
[   70.625901] i8042: [69814] 01 -> i8042 (parameter)
[   70.628801] i8042: [69817] fa <- i8042 (interrupt, 1, 12)
[   70.628909] i8042: [69817] d4 -> i8042 (command)
[   70.629099] i8042: [69817] e9 -> i8042 (parameter)
[   70.631997] i8042: [69820] fa <- i8042 (interrupt, 1, 12)
[   70.633557] i8042: [69822] 5e <- i8042 (interrupt, 1, 12)
[   70.635144] i8042: [69823] 0f <- i8042 (interrupt, 1, 12)
[   70.636725] i8042: [69825] 01 <- i8042 (interrupt, 1, 12)
[   70.636834] i8042: [69825] d4 -> i8042 (command)
[   70.637024] i8042: [69825] f8 -> i8042 (parameter)
[   70.639943] i8042: [69828] fa <- i8042 (interrupt, 1, 12)
[   70.640052] i8042: [69828] d4 -> i8042 (command)
[   70.640243] i8042: [69828] 00 -> i8042 (parameter)
[   70.643136] i8042: [69831] fa <- i8042 (interrupt, 1, 12)
[   70.643245] i8042: [69831] d4 -> i8042 (command)
[   70.643435] i8042: [69832] f8 -> i8042 (parameter)
[   70.646337] i8042: [69834] fa <- i8042 (interrupt, 1, 12)
[   70.646446] i8042: [69835] d4 -> i8042 (command)
[   70.646637] i8042: [69835] 07 -> i8042 (parameter)
[   70.649527] i8042: [69838] fa <- i8042 (interrupt, 1, 12)
[   70.649636] i8042: [69838] d4 -> i8042 (command)
[   70.649827] i8042: [69838] f8 -> i8042 (parameter)
[   70.652719] i8042: [69841] fa <- i8042 (interrupt, 1, 12)
[   70.652828] i8042: [69841] d4 -> i8042 (command)
[   70.653017] i8042: [69841] 00 -> i8042 (parameter)
[   70.655914] i8042: [69844] fa <- i8042 (interrupt, 1, 12)
[   70.656022] i8042: [69844] d4 -> i8042 (command)
[   70.656213] i8042: [69844] f8 -> i8042 (parameter)
[   70.659111] i8042: [69847] fa <- i8042 (interrupt, 1, 12)
[   70.659220] i8042: [69847] d4 -> i8042 (command)
[   70.659467] i8042: [69848] 01 -> i8042 (parameter)
[   70.662300] i8042: [69850] fa <- i8042 (interrupt, 1, 12)
[   70.662444] i8042: [69851] d4 -> i8042 (command)
[   70.662635] i8042: [69851] e6 -> i8042 (parameter)
[   70.665497] i8042: [69854] fa <- i8042 (interrupt, 1, 12)
[   70.665608] i8042: [69854] d4 -> i8042 (command)
[   70.665798] i8042: [69854] f3 -> i8042 (parameter)
[   70.668687] i8042: [69857] fa <- i8042 (interrupt, 1, 12)
[   70.668793] i8042: [69857] d4 -> i8042 (command)
[   70.668983] i8042: [69857] 64 -> i8042 (parameter)
[   70.671890] i8042: [69860] fa <- i8042 (interrupt, 1, 12)
[   70.671998] i8042: [69860] d4 -> i8042 (command)
[   70.672189] i8042: [69860] e8 -> i8042 (parameter)
[   70.675073] i8042: [69863] fa <- i8042 (interrupt, 1, 12)
[   70.675179] i8042: [69863] d4 -> i8042 (command)
[   70.675369] i8042: [69863] 03 -> i8042 (parameter)
[   70.678281] i8042: [69866] fa <- i8042 (interrupt, 1, 12)
[   70.678390] i8042: [69866] d4 -> i8042 (command)
[   70.678637] i8042: [69867] e6 -> i8042 (parameter)
[   70.681465] i8042: [69870] fa <- i8042 (interrupt, 1, 12)
[   70.681574] i8042: [69870] d4 -> i8042 (command)
[   70.681764] i8042: [69870] f4 -> i8042 (parameter)
[   70.684654] i8042: [69873] fa <- i8042 (interrupt, 1, 12)
[   70.705376] i8042: [69893] 08 <- i8042 (interrupt, 1, 12)
[   70.706952] i8042: [69895] 00 <- i8042 (interrupt, 1, 12)
[   70.708532] i8042: [69897] 00 <- i8042 (interrupt, 1, 12)
[   70.715173] i8042: [69903] 54 <- i8042 (interrupt, 1, 12)
[   70.716725] i8042: [69905] 01 <- i8042 (interrupt, 1, 12)
[   70.718342] i8042: [69906] 00 <- i8042 (interrupt, 1, 12)
[   70.718382] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.719918] i8042: [69908] 10 <- i8042 (interrupt, 1, 12)
[   70.721478] i8042: [69910] 00 <- i8042 (interrupt, 1, 12)
[   70.723054] i8042: [69911] 00 <- i8042 (interrupt, 1, 12)
[   70.724624] i8042: [69913] 54 <- i8042 (interrupt, 1, 12)
[   70.726220] i8042: [69914] 23 <- i8042 (interrupt, 1, 12)
[   70.727743] i8042: [69916] 02 <- i8042 (interrupt, 1, 12)
[   70.727779] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.729355] i8042: [69917] 31 <- i8042 (interrupt, 1, 12)
[   70.730933] i8042: [69919] 52 <- i8042 (interrupt, 1, 12)
[   70.732520] i8042: [69921] 7a <- i8042 (interrupt, 1, 12)
[   70.734098] i8042: [69922] 54 <- i8042 (interrupt, 1, 12)
[   70.735681] i8042: [69924] 23 <- i8042 (interrupt, 1, 12)
[   70.737272] i8042: [69925] 02 <- i8042 (interrupt, 1, 12)
[   70.737310] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.738915] i8042: [69927] 31 <- i8042 (interrupt, 1, 12)
[   70.740512] i8042: [69929] a2 <- i8042 (interrupt, 1, 12)
[   70.742081] i8042: [69930] 7a <- i8042 (interrupt, 1, 12)
[   70.743634] i8042: [69932] 64 <- i8042 (interrupt, 1, 12)
[   70.745247] i8042: [69933] 23 <- i8042 (interrupt, 1, 12)
[   70.746834] i8042: [69935] 02 <- i8042 (interrupt, 1, 12)
[   70.746875] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.748413] i8042: [69936] 31 <- i8042 (interrupt, 1, 12)
[   70.749995] i8042: [69938] b2 <- i8042 (interrupt, 1, 12)
[   70.751569] i8042: [69940] 7a <- i8042 (interrupt, 1, 12)
[   70.753163] i8042: [69941] 64 <- i8042 (interrupt, 1, 12)
[   70.754730] i8042: [69943] 23 <- i8042 (interrupt, 1, 12)
[   70.756333] i8042: [69944] 0f <- i8042 (interrupt, 1, 12)
[   70.756373] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   70.756390] psmouse serio1: issuing reconnect request
[   70.756485] i8042: [69945] d4 -> i8042 (command)
[   70.756732] i8042: [69945] ff -> i8042 (parameter)
[   70.759542] i8042: [69948] fa <- i8042 (interrupt, 1, 12)
[   70.860548] i8042: [70049] aa <- i8042 (interrupt, 1, 12)
[   70.862105] i8042: [70050] 00 <- i8042 (interrupt, 1, 12)
[   70.862214] i8042: [70050] d4 -> i8042 (command)
[   70.862404] i8042: [70051] f6 -> i8042 (parameter)
[   70.865318] i8042: [70053] fa <- i8042 (interrupt, 1, 12)
[   70.865459] i8042: [70054] d4 -> i8042 (command)
[   70.865650] i8042: [70054] f5 -> i8042 (parameter)
[   70.868522] i8042: [70057] fa <- i8042 (interrupt, 1, 12)
[   70.868630] i8042: [70057] d4 -> i8042 (command)
[   70.868821] i8042: [70057] e6 -> i8042 (parameter)
[   70.871703] i8042: [70060] fa <- i8042 (interrupt, 1, 12)
[   70.871812] i8042: [70060] d4 -> i8042 (command)
[   70.872059] i8042: [70060] e6 -> i8042 (parameter)
[   70.874891] i8042: [70063] fa <- i8042 (interrupt, 1, 12)
[   70.875000] i8042: [70063] d4 -> i8042 (command)
[   70.875190] i8042: [70063] e6 -> i8042 (parameter)
[   70.878084] i8042: [70066] fa <- i8042 (interrupt, 1, 12)
[   70.878193] i8042: [70066] d4 -> i8042 (command)
[   70.878383] i8042: [70066] e9 -> i8042 (parameter)
[   70.881279] i8042: [70069] fa <- i8042 (interrupt, 1, 12)
[   70.882859] i8042: [70071] 3c <- i8042 (interrupt, 1, 12)
[   70.884439] i8042: [70073] 03 <- i8042 (interrupt, 1, 12)
[   70.886018] i8042: [70074] 00 <- i8042 (interrupt, 1, 12)
[   70.886127] i8042: [70074] d4 -> i8042 (command)
[   70.886317] i8042: [70074] e6 -> i8042 (parameter)
[   70.889234] i8042: [70077] fa <- i8042 (interrupt, 1, 12)
[   70.889342] i8042: [70077] d4 -> i8042 (command)
[   70.889532] i8042: [70078] e8 -> i8042 (parameter)
[   70.892427] i8042: [70081] fa <- i8042 (interrupt, 1, 12)
[   70.892534] i8042: [70081] d4 -> i8042 (command)
[   70.892724] i8042: [70081] 00 -> i8042 (parameter)
[   70.895639] i8042: [70084] fa <- i8042 (interrupt, 1, 12)
[   70.895747] i8042: [70084] d4 -> i8042 (command)
[   70.895994] i8042: [70084] e8 -> i8042 (parameter)
[   70.898834] i8042: [70087] fa <- i8042 (interrupt, 1, 12)
[   70.898940] i8042: [70087] d4 -> i8042 (command)
[   70.899187] i8042: [70087] 00 -> i8042 (parameter)
[   70.902028] i8042: [70090] fa <- i8042 (interrupt, 1, 12)
[   70.902136] i8042: [70090] d4 -> i8042 (command)
[   70.902327] i8042: [70090] e8 -> i8042 (parameter)
[   70.905239] i8042: [70093] fa <- i8042 (interrupt, 1, 12)
[   70.905346] i8042: [70093] d4 -> i8042 (command)
[   70.905536] i8042: [70094] 00 -> i8042 (parameter)
[   70.908424] i8042: [70097] fa <- i8042 (interrupt, 1, 12)
[   70.908532] i8042: [70097] d4 -> i8042 (command)
[   70.908722] i8042: [70097] e8 -> i8042 (parameter)
[   70.911614] i8042: [70100] fa <- i8042 (interrupt, 1, 12)
[   70.911720] i8042: [70100] d4 -> i8042 (command)
[   70.911910] i8042: [70100] 01 -> i8042 (parameter)
[   70.914813] i8042: [70103] fa <- i8042 (interrupt, 1, 12)
[   70.914922] i8042: [70103] d4 -> i8042 (command)
[   70.915111] i8042: [70103] e9 -> i8042 (parameter)
[   70.917992] i8042: [70106] fa <- i8042 (interrupt, 1, 12)
[   70.919538] i8042: [70108] 5e <- i8042 (interrupt, 1, 12)
[   70.921138] i8042: [70109] 0f <- i8042 (interrupt, 1, 12)
[   70.922703] i8042: [70111] 01 <- i8042 (interrupt, 1, 12)
[   70.922814] i8042: [70111] d4 -> i8042 (command)
[   70.923004] i8042: [70111] f8 -> i8042 (parameter)
[   70.925857] i8042: [70114] fa <- i8042 (interrupt, 1, 12)
[   70.925941] i8042: [70114] d4 -> i8042 (command)
[   70.926188] i8042: [70114] 00 -> i8042 (parameter)
[   70.929012] i8042: [70117] fa <- i8042 (interrupt, 1, 12)
[   70.930835] i8042: [70119] d4 -> i8042 (command)
[   70.931031] i8042: [70119] f8 -> i8042 (parameter)
[   70.933760] i8042: [70122] fa <- i8042 (interrupt, 1, 12)
[   70.933849] i8042: [70122] d4 -> i8042 (command)
[   70.934038] i8042: [70122] 07 -> i8042 (parameter)
[   70.936956] i8042: [70125] fa <- i8042 (interrupt, 1, 12)
[   70.937029] i8042: [70125] d4 -> i8042 (command)
[   70.937219] i8042: [70125] f8 -> i8042 (parameter)
[   70.940219] i8042: [70128] fa <- i8042 (interrupt, 1, 12)
[   70.940306] i8042: [70128] d4 -> i8042 (command)
[   70.940495] i8042: [70129] 00 -> i8042 (parameter)
[   70.943375] i8042: [70131] fa <- i8042 (interrupt, 1, 12)
[   70.943480] i8042: [70132] d4 -> i8042 (command)
[   70.943670] i8042: [70132] f8 -> i8042 (parameter)
[   70.946614] i8042: [70135] fa <- i8042 (interrupt, 1, 12)
[   70.946725] i8042: [70135] d4 -> i8042 (command)
[   70.946972] i8042: [70135] 01 -> i8042 (parameter)
[   70.949835] i8042: [70138] fa <- i8042 (interrupt, 1, 12)
[   70.949946] i8042: [70138] d4 -> i8042 (command)
[   70.950136] i8042: [70138] e6 -> i8042 (parameter)
[   70.953012] i8042: [70141] fa <- i8042 (interrupt, 1, 12)
[   70.953125] i8042: [70141] d4 -> i8042 (command)
[   70.953315] i8042: [70141] f3 -> i8042 (parameter)
[   70.956216] i8042: [70144] fa <- i8042 (interrupt, 1, 12)
[   70.956323] i8042: [70144] d4 -> i8042 (command)
[   70.956513] i8042: [70145] 64 -> i8042 (parameter)
[   70.959388] i8042: [70147] fa <- i8042 (interrupt, 1, 12)
[   70.959495] i8042: [70148] d4 -> i8042 (command)
[   70.959685] i8042: [70148] e8 -> i8042 (parameter)
[   70.962592] i8042: [70151] fa <- i8042 (interrupt, 1, 12)
[   70.962698] i8042: [70151] d4 -> i8042 (command)
[   70.962889] i8042: [70151] 03 -> i8042 (parameter)
[   70.965792] i8042: [70154] fa <- i8042 (interrupt, 1, 12)
[   70.965902] i8042: [70154] d4 -> i8042 (command)
[   70.966091] i8042: [70154] e6 -> i8042 (parameter)
[   70.968990] i8042: [70157] fa <- i8042 (interrupt, 1, 12)
[   70.969099] i8042: [70157] d4 -> i8042 (command)
[   70.969291] i8042: [70157] f4 -> i8042 (parameter)
[   70.972169] i8042: [70160] fa <- i8042 (interrupt, 1, 12)
[   70.988885] i8042: [70177] 08 <- i8042 (interrupt, 1, 12)
[   70.990465] i8042: [70179] 00 <- i8042 (interrupt, 1, 12)
[   70.992048] i8042: [70180] 00 <- i8042 (interrupt, 1, 12)
[   70.998690] i8042: [70187] 44 <- i8042 (interrupt, 1, 12)
[   71.000244] i8042: [70188] 01 <- i8042 (interrupt, 1, 12)
[   71.001839] i8042: [70190] 00 <- i8042 (interrupt, 1, 12)
[   71.001879] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.003412] i8042: [70191] 10 <- i8042 (interrupt, 1, 12)
[   71.004989] i8042: [70193] 00 <- i8042 (interrupt, 1, 12)
[   71.006537] i8042: [70195] 00 <- i8042 (interrupt, 1, 12)
[   71.008156] i8042: [70196] 44 <- i8042 (interrupt, 1, 12)
[   71.009722] i8042: [70198] 06 <- i8042 (interrupt, 1, 12)
[   71.011318] i8042: [70199] a9 <- i8042 (interrupt, 1, 12)
[   71.011358] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.012917] i8042: [70201] 31 <- i8042 (interrupt, 1, 12)
[   71.014488] i8042: [70203] e2 <- i8042 (interrupt, 1, 12)
[   71.016068] i8042: [70204] 3d <- i8042 (interrupt, 1, 12)
[   71.017594] i8042: [70206] 44 <- i8042 (interrupt, 1, 12)
[   71.019239] i8042: [70207] 16 <- i8042 (interrupt, 1, 12)
[   71.020824] i8042: [70209] a9 <- i8042 (interrupt, 1, 12)
[   71.020863] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.022403] i8042: [70210] 31 <- i8042 (interrupt, 1, 12)
[   71.023985] i8042: [70212] 72 <- i8042 (interrupt, 1, 12)
[   71.025571] i8042: [70214] 3d <- i8042 (interrupt, 1, 12)
[   71.027159] i8042: [70215] 44 <- i8042 (interrupt, 1, 12)
[   71.028704] i8042: [70217] 16 <- i8042 (interrupt, 1, 12)
[   71.030312] i8042: [70218] a9 <- i8042 (interrupt, 1, 12)
[   71.030352] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.031896] i8042: [70220] 31 <- i8042 (interrupt, 1, 12)
[   71.033481] i8042: [70222] c2 <- i8042 (interrupt, 1, 12)
[   71.035065] i8042: [70223] 3d <- i8042 (interrupt, 1, 12)
[   71.036613] i8042: [70225] 44 <- i8042 (interrupt, 1, 12)
[   71.038233] i8042: [70226] 16 <- i8042 (interrupt, 1, 12)
[   71.039777] i8042: [70228] a9 <- i8042 (interrupt, 1, 12)
[   71.039817] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.039834] psmouse serio1: issuing reconnect request
[   71.039922] i8042: [70228] d4 -> i8042 (command)
[   71.040112] i8042: [70228] ff -> i8042 (parameter)
[   71.043030] i8042: [70231] fa <- i8042 (interrupt, 1, 12)
[   71.143988] i8042: [70332] aa <- i8042 (interrupt, 1, 12)
[   71.145532] i8042: [70334] 00 <- i8042 (interrupt, 1, 12)
[   71.145631] i8042: [70334] d4 -> i8042 (command)
[   71.145877] i8042: [70334] f6 -> i8042 (parameter)
[   71.148781] i8042: [70337] fa <- i8042 (interrupt, 1, 12)
[   71.148890] i8042: [70337] d4 -> i8042 (command)
[   71.149080] i8042: [70337] f5 -> i8042 (parameter)
[   71.151979] i8042: [70340] fa <- i8042 (interrupt, 1, 12)
[   71.152088] i8042: [70340] d4 -> i8042 (command)
[   71.152279] i8042: [70340] e6 -> i8042 (parameter)
[   71.155169] i8042: [70343] fa <- i8042 (interrupt, 1, 12)
[   71.155277] i8042: [70343] d4 -> i8042 (command)
[   71.155525] i8042: [70344] e6 -> i8042 (parameter)
[   71.158362] i8042: [70346] fa <- i8042 (interrupt, 1, 12)
[   71.158472] i8042: [70347] d4 -> i8042 (command)
[   71.158664] i8042: [70347] e6 -> i8042 (parameter)
[   71.161534] i8042: [70350] fa <- i8042 (interrupt, 1, 12)
[   71.161634] i8042: [70350] d4 -> i8042 (command)
[   71.161880] i8042: [70350] e9 -> i8042 (parameter)
[   71.164752] i8042: [70353] fa <- i8042 (interrupt, 1, 12)
[   71.166317] i8042: [70354] 3c <- i8042 (interrupt, 1, 12)
[   71.167824] i8042: [70356] 03 <- i8042 (interrupt, 1, 12)
[   71.169485] i8042: [70358] 00 <- i8042 (interrupt, 1, 12)
[   71.169592] i8042: [70358] d4 -> i8042 (command)
[   71.169782] i8042: [70358] e6 -> i8042 (parameter)
[   71.172693] i8042: [70361] fa <- i8042 (interrupt, 1, 12)
[   71.172801] i8042: [70361] d4 -> i8042 (command)
[   71.172991] i8042: [70361] e8 -> i8042 (parameter)
[   71.175853] i8042: [70364] fa <- i8042 (interrupt, 1, 12)
[   71.175956] i8042: [70364] d4 -> i8042 (command)
[   71.176146] i8042: [70364] 00 -> i8042 (parameter)
[   71.179078] i8042: [70367] fa <- i8042 (interrupt, 1, 12)
[   71.179185] i8042: [70367] d4 -> i8042 (command)
[   71.179432] i8042: [70368] e8 -> i8042 (parameter)
[   71.182276] i8042: [70370] fa <- i8042 (interrupt, 1, 12)
[   71.182382] i8042: [70370] d4 -> i8042 (command)
[   71.182629] i8042: [70371] 00 -> i8042 (parameter)
[   71.185470] i8042: [70374] fa <- i8042 (interrupt, 1, 12)
[   71.185578] i8042: [70374] d4 -> i8042 (command)
[   71.185768] i8042: [70374] e8 -> i8042 (parameter)
[   71.188661] i8042: [70377] fa <- i8042 (interrupt, 1, 12)
[   71.188767] i8042: [70377] d4 -> i8042 (command)
[   71.188957] i8042: [70377] 00 -> i8042 (parameter)
[   71.191865] i8042: [70380] fa <- i8042 (interrupt, 1, 12)
[   71.191974] i8042: [70380] d4 -> i8042 (command)
[   71.192164] i8042: [70380] e8 -> i8042 (parameter)
[   71.195057] i8042: [70383] fa <- i8042 (interrupt, 1, 12)
[   71.195163] i8042: [70383] d4 -> i8042 (command)
[   71.195353] i8042: [70383] 01 -> i8042 (parameter)
[   71.198248] i8042: [70386] fa <- i8042 (interrupt, 1, 12)
[   71.198358] i8042: [70386] d4 -> i8042 (command)
[   71.198548] i8042: [70387] e9 -> i8042 (parameter)
[   71.201444] i8042: [70390] fa <- i8042 (interrupt, 1, 12)
[   71.203009] i8042: [70391] 5e <- i8042 (interrupt, 1, 12)
[   71.204532] i8042: [70393] 0f <- i8042 (interrupt, 1, 12)
[   71.206177] i8042: [70394] 01 <- i8042 (interrupt, 1, 12)
[   71.206286] i8042: [70394] d4 -> i8042 (command)
[   71.206477] i8042: [70395] f8 -> i8042 (parameter)
[   71.209386] i8042: [70397] fa <- i8042 (interrupt, 1, 12)
[   71.209496] i8042: [70398] d4 -> i8042 (command)
[   71.209686] i8042: [70398] 00 -> i8042 (parameter)
[   71.212532] i8042: [70401] fa <- i8042 (interrupt, 1, 12)
[   71.212635] i8042: [70401] d4 -> i8042 (command)
[   71.212826] i8042: [70401] f8 -> i8042 (parameter)
[   71.215768] i8042: [70404] fa <- i8042 (interrupt, 1, 12)
[   71.215878] i8042: [70404] d4 -> i8042 (command)
[   71.216069] i8042: [70404] 07 -> i8042 (parameter)
[   71.218964] i8042: [70407] fa <- i8042 (interrupt, 1, 12)
[   71.219073] i8042: [70407] d4 -> i8042 (command)
[   71.219264] i8042: [70407] f8 -> i8042 (parameter)
[   71.222157] i8042: [70410] fa <- i8042 (interrupt, 1, 12)
[   71.222266] i8042: [70410] d4 -> i8042 (command)
[   71.222457] i8042: [70411] 00 -> i8042 (parameter)
[   71.225348] i8042: [70413] fa <- i8042 (interrupt, 1, 12)
[   71.225462] i8042: [70414] d4 -> i8042 (command)
[   71.225652] i8042: [70414] f8 -> i8042 (parameter)
[   71.228537] i8042: [70417] fa <- i8042 (interrupt, 1, 12)
[   71.228640] i8042: [70417] d4 -> i8042 (command)
[   71.228831] i8042: [70417] 01 -> i8042 (parameter)
[   71.231688] i8042: [70420] fa <- i8042 (interrupt, 1, 12)
[   71.231768] i8042: [70420] d4 -> i8042 (command)
[   71.231958] i8042: [70420] e6 -> i8042 (parameter)
[   71.234874] i8042: [70423] fa <- i8042 (interrupt, 1, 12)
[   71.234936] i8042: [70423] d4 -> i8042 (command)
[   71.235124] i8042: [70423] f3 -> i8042 (parameter)
[   71.238125] i8042: [70426] fa <- i8042 (interrupt, 1, 12)
[   71.238229] i8042: [70426] d4 -> i8042 (command)
[   71.238420] i8042: [70427] 64 -> i8042 (parameter)
[   71.241321] i8042: [70429] fa <- i8042 (interrupt, 1, 12)
[   71.241462] i8042: [70430] d4 -> i8042 (command)
[   71.241653] i8042: [70430] e8 -> i8042 (parameter)
[   71.244523] i8042: [70433] fa <- i8042 (interrupt, 1, 12)
[   71.244628] i8042: [70433] d4 -> i8042 (command)
[   71.244818] i8042: [70433] 03 -> i8042 (parameter)
[   71.247705] i8042: [70436] fa <- i8042 (interrupt, 1, 12)
[   71.247814] i8042: [70436] d4 -> i8042 (command)
[   71.248061] i8042: [70436] e6 -> i8042 (parameter)
[   71.250900] i8042: [70439] fa <- i8042 (interrupt, 1, 12)
[   71.251009] i8042: [70439] d4 -> i8042 (command)
[   71.251199] i8042: [70439] f4 -> i8042 (parameter)
[   71.254090] i8042: [70442] fa <- i8042 (interrupt, 1, 12)
[   71.274822] i8042: [70463] 08 <- i8042 (interrupt, 1, 12)
[   71.276402] i8042: [70464] 00 <- i8042 (interrupt, 1, 12)
[   71.277988] i8042: [70466] 00 <- i8042 (interrupt, 1, 12)
[   71.284588] i8042: [70473] 64 <- i8042 (interrupt, 1, 12)
[   71.286171] i8042: [70474] 01 <- i8042 (interrupt, 1, 12)
[   71.287706] i8042: [70476] 00 <- i8042 (interrupt, 1, 12)
[   71.287733] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.289399] i8042: [70478] 10 <- i8042 (interrupt, 1, 12)
[   71.290941] i8042: [70479] 00 <- i8042 (interrupt, 1, 12)
[   71.292432] i8042: [70481] 00 <- i8042 (interrupt, 1, 12)
[   71.294012] i8042: [70482] 64 <- i8042 (interrupt, 1, 12)
[   71.295613] i8042: [70484] 23 <- i8042 (interrupt, 1, 12)
[   71.297295] i8042: [70485] 3b <- i8042 (interrupt, 1, 12)
[   71.297332] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.298867] i8042: [70487] 31 <- i8042 (interrupt, 1, 12)
[   71.300457] i8042: [70489] 72 <- i8042 (interrupt, 1, 12)
[   71.302075] i8042: [70490] b9 <- i8042 (interrupt, 1, 12)
[   71.303627] i8042: [70492] 64 <- i8042 (interrupt, 1, 12)
[   71.305203] i8042: [70493] 23 <- i8042 (interrupt, 1, 12)
[   71.306724] i8042: [70495] 3b <- i8042 (interrupt, 1, 12)
[   71.306751] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.308374] i8042: [70496] 31 <- i8042 (interrupt, 1, 12)
[   71.309933] i8042: [70498] b2 <- i8042 (interrupt, 1, 12)
[   71.311544] i8042: [70500] b9 <- i8042 (interrupt, 1, 12)
[   71.313126] i8042: [70501] 64 <- i8042 (interrupt, 1, 12)
[   71.314673] i8042: [70503] 33 <- i8042 (interrupt, 1, 12)
[   71.316289] i8042: [70504] 23 <- i8042 (interrupt, 1, 12)
[   71.316326] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.317852] i8042: [70506] 31 <- i8042 (interrupt, 1, 12)
[   71.319474] i8042: [70508] 02 <- i8042 (interrupt, 1, 12)
[   71.320952] i8042: [70509] b5 <- i8042 (interrupt, 1, 12)
[   71.322548] i8042: [70511] 64 <- i8042 (interrupt, 1, 12)
[   71.324106] i8042: [70512] 33 <- i8042 (interrupt, 1, 12)
[   71.325791] i8042: [70514] 0f <- i8042 (interrupt, 1, 12)
[   71.325832] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.325849] psmouse serio1: issuing reconnect request
[   71.325943] i8042: [70514] d4 -> i8042 (command)
[   71.326133] i8042: [70514] ff -> i8042 (parameter)
[   71.328971] i8042: [70517] fa <- i8042 (interrupt, 1, 12)
[   71.429890] i8042: [70618] aa <- i8042 (interrupt, 1, 12)
[   71.431507] i8042: [70620] 00 <- i8042 (interrupt, 1, 12)
[   71.431615] i8042: [70620] d4 -> i8042 (command)
[   71.431805] i8042: [70620] f6 -> i8042 (parameter)
[   71.434725] i8042: [70623] fa <- i8042 (interrupt, 1, 12)
[   71.434830] i8042: [70623] d4 -> i8042 (command)
[   71.435078] i8042: [70623] f5 -> i8042 (parameter)
[   71.437837] i8042: [70626] fa <- i8042 (interrupt, 1, 12)
[   71.439706] i8042: [70628] d4 -> i8042 (command)
[   71.439905] i8042: [70628] e6 -> i8042 (parameter)
[   71.442542] i8042: [70631] fa <- i8042 (interrupt, 1, 12)
[   71.442596] i8042: [70631] d4 -> i8042 (command)
[   71.442843] i8042: [70631] e6 -> i8042 (parameter)
[   71.445840] i8042: [70634] fa <- i8042 (interrupt, 1, 12)
[   71.445952] i8042: [70634] d4 -> i8042 (command)
[   71.446142] i8042: [70634] e6 -> i8042 (parameter)
[   71.449035] i8042: [70637] fa <- i8042 (interrupt, 1, 12)
[   71.449143] i8042: [70637] d4 -> i8042 (command)
[   71.449332] i8042: [70637] e9 -> i8042 (parameter)
[   71.452226] i8042: [70640] fa <- i8042 (interrupt, 1, 12)
[   71.453805] i8042: [70642] 3c <- i8042 (interrupt, 1, 12)
[   71.455390] i8042: [70643] 03 <- i8042 (interrupt, 1, 12)
[   71.456963] i8042: [70645] 00 <- i8042 (interrupt, 1, 12)
[   71.457069] i8042: [70645] d4 -> i8042 (command)
[   71.457316] i8042: [70645] e6 -> i8042 (parameter)
[   71.460167] i8042: [70648] fa <- i8042 (interrupt, 1, 12)
[   71.460272] i8042: [70648] d4 -> i8042 (command)
[   71.460462] i8042: [70649] e8 -> i8042 (parameter)
[   71.463366] i8042: [70651] fa <- i8042 (interrupt, 1, 12)
[   71.463472] i8042: [70652] d4 -> i8042 (command)
[   71.463721] i8042: [70652] 00 -> i8042 (parameter)
[   71.466532] i8042: [70655] fa <- i8042 (interrupt, 1, 12)
[   71.466619] i8042: [70655] d4 -> i8042 (command)
[   71.466810] i8042: [70655] e8 -> i8042 (parameter)
[   71.469751] i8042: [70658] fa <- i8042 (interrupt, 1, 12)
[   71.469856] i8042: [70658] d4 -> i8042 (command)
[   71.470046] i8042: [70658] 00 -> i8042 (parameter)
[   71.472938] i8042: [70661] fa <- i8042 (interrupt, 1, 12)
[   71.473043] i8042: [70661] d4 -> i8042 (command)
[   71.473233] i8042: [70661] e8 -> i8042 (parameter)
[   71.476142] i8042: [70664] fa <- i8042 (interrupt, 1, 12)
[   71.476231] i8042: [70664] d4 -> i8042 (command)
[   71.476478] i8042: [70665] 00 -> i8042 (parameter)
[   71.479338] i8042: [70667] fa <- i8042 (interrupt, 1, 12)
[   71.479444] i8042: [70668] d4 -> i8042 (command)
[   71.479635] i8042: [70668] e8 -> i8042 (parameter)
[   71.482533] i8042: [70671] fa <- i8042 (interrupt, 1, 12)
[   71.482640] i8042: [70671] d4 -> i8042 (command)
[   71.482829] i8042: [70671] 01 -> i8042 (parameter)
[   71.485726] i8042: [70674] fa <- i8042 (interrupt, 1, 12)
[   71.485834] i8042: [70674] d4 -> i8042 (command)
[   71.486081] i8042: [70674] e9 -> i8042 (parameter)
[   71.488919] i8042: [70677] fa <- i8042 (interrupt, 1, 12)
[   71.490489] i8042: [70679] 5e <- i8042 (interrupt, 1, 12)
[   71.492069] i8042: [70680] 0f <- i8042 (interrupt, 1, 12)
[   71.493651] i8042: [70682] 01 <- i8042 (interrupt, 1, 12)
[   71.493758] i8042: [70682] d4 -> i8042 (command)
[   71.493949] i8042: [70682] f8 -> i8042 (parameter)
[   71.496857] i8042: [70685] fa <- i8042 (interrupt, 1, 12)
[   71.496934] i8042: [70685] d4 -> i8042 (command)
[   71.497119] i8042: [70685] 00 -> i8042 (parameter)
[   71.500066] i8042: [70688] fa <- i8042 (interrupt, 1, 12)
[   71.500145] i8042: [70688] d4 -> i8042 (command)
[   71.500337] i8042: [70688] f8 -> i8042 (parameter)
[   71.503259] i8042: [70691] fa <- i8042 (interrupt, 1, 12)
[   71.503389] i8042: [70691] d4 -> i8042 (command)
[   71.503579] i8042: [70692] 07 -> i8042 (parameter)
[   71.506443] i8042: [70695] fa <- i8042 (interrupt, 1, 12)
[   71.506551] i8042: [70695] d4 -> i8042 (command)
[   71.506741] i8042: [70695] f8 -> i8042 (parameter)
[   71.509645] i8042: [70698] fa <- i8042 (interrupt, 1, 12)
[   71.509753] i8042: [70698] d4 -> i8042 (command)
[   71.509944] i8042: [70698] 00 -> i8042 (parameter)
[   71.512836] i8042: [70701] fa <- i8042 (interrupt, 1, 12)
[   71.512945] i8042: [70701] d4 -> i8042 (command)
[   71.513135] i8042: [70701] f8 -> i8042 (parameter)
[   71.516036] i8042: [70704] fa <- i8042 (interrupt, 1, 12)
[   71.516144] i8042: [70704] d4 -> i8042 (command)
[   71.516334] i8042: [70704] 01 -> i8042 (parameter)
[   71.519221] i8042: [70707] fa <- i8042 (interrupt, 1, 12)
[   71.519329] i8042: [70707] d4 -> i8042 (command)
[   71.519577] i8042: [70708] e6 -> i8042 (parameter)
[   71.522426] i8042: [70711] fa <- i8042 (interrupt, 1, 12)
[   71.522536] i8042: [70711] d4 -> i8042 (command)
[   71.522725] i8042: [70711] f3 -> i8042 (parameter)
[   71.525542] i8042: [70714] fa <- i8042 (interrupt, 1, 12)
[   71.525623] i8042: [70714] d4 -> i8042 (command)
[   71.525813] i8042: [70714] 64 -> i8042 (parameter)
[   71.528802] i8042: [70717] fa <- i8042 (interrupt, 1, 12)
[   71.528909] i8042: [70717] d4 -> i8042 (command)
[   71.529099] i8042: [70717] e8 -> i8042 (parameter)
[   71.531989] i8042: [70720] fa <- i8042 (interrupt, 1, 12)
[   71.532068] i8042: [70720] d4 -> i8042 (command)
[   71.532258] i8042: [70720] 03 -> i8042 (parameter)
[   71.535184] i8042: [70723] fa <- i8042 (interrupt, 1, 12)
[   71.535271] i8042: [70723] d4 -> i8042 (command)
[   71.535460] i8042: [70723] e6 -> i8042 (parameter)
[   71.538378] i8042: [70726] fa <- i8042 (interrupt, 1, 12)
[   71.538497] i8042: [70727] d4 -> i8042 (command)
[   71.538688] i8042: [70727] f4 -> i8042 (parameter)
[   71.541541] i8042: [70730] fa <- i8042 (interrupt, 1, 12)
[   71.553732] i8042: [70742] 08 <- i8042 (interrupt, 1, 12)
[   71.555316] i8042: [70743] 00 <- i8042 (interrupt, 1, 12)
[   71.556892] i8042: [70745] 00 <- i8042 (interrupt, 1, 12)
[   71.563523] i8042: [70752] 54 <- i8042 (interrupt, 1, 12)
[   71.565105] i8042: [70753] 01 <- i8042 (interrupt, 1, 12)
[   71.566714] i8042: [70755] 00 <- i8042 (interrupt, 1, 12)
[   71.566754] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.568279] i8042: [70756] 10 <- i8042 (interrupt, 1, 12)
[   71.569858] i8042: [70758] 00 <- i8042 (interrupt, 1, 12)
[   71.571444] i8042: [70760] 00 <- i8042 (interrupt, 1, 12)
[   71.573036] i8042: [70761] 54 <- i8042 (interrupt, 1, 12)
[   71.574624] i8042: [70763] 14 <- i8042 (interrupt, 1, 12)
[   71.576202] i8042: [70764] 4a <- i8042 (interrupt, 1, 12)
[   71.576241] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.577771] i8042: [70766] 31 <- i8042 (interrupt, 1, 12)
[   71.579364] i8042: [70767] 02 <- i8042 (interrupt, 1, 12)
[   71.580947] i8042: [70769] 1c <- i8042 (interrupt, 1, 12)
[   71.582537] i8042: [70771] 54 <- i8042 (interrupt, 1, 12)
[   71.584129] i8042: [70772] 14 <- i8042 (interrupt, 1, 12)
[   71.585672] i8042: [70774] 4a <- i8042 (interrupt, 1, 12)
[   71.585712] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.587284] i8042: [70775] 31 <- i8042 (interrupt, 1, 12)
[   71.588869] i8042: [70777] 92 <- i8042 (interrupt, 1, 12)
[   71.590457] i8042: [70779] 1c <- i8042 (interrupt, 1, 12)
[   71.592043] i8042: [70780] 54 <- i8042 (interrupt, 1, 12)
[   71.593593] i8042: [70782] 14 <- i8042 (interrupt, 1, 12)
[   71.595210] i8042: [70783] 82 <- i8042 (interrupt, 1, 12)
[   71.595251] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.596794] i8042: [70785] 31 <- i8042 (interrupt, 1, 12)
[   71.598390] i8042: [70786] d2 <- i8042 (interrupt, 1, 12)
[   71.599955] i8042: [70788] 09 <- i8042 (interrupt, 1, 12)
[   71.601526] i8042: [70790] 54 <- i8042 (interrupt, 1, 12)
[   71.603128] i8042: [70791] 14 <- i8042 (interrupt, 1, 12)
[   71.604707] i8042: [70793] 89 <- i8042 (interrupt, 1, 12)
[   71.604746] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.604764] psmouse serio1: issuing reconnect request
[   71.604853] i8042: [70793] d4 -> i8042 (command)
[   71.605043] i8042: [70793] ff -> i8042 (parameter)
[   71.607914] i8042: [70796] fa <- i8042 (interrupt, 1, 12)
[   71.708929] i8042: [70897] aa <- i8042 (interrupt, 1, 12)
[   71.710485] i8042: [70899] 00 <- i8042 (interrupt, 1, 12)
[   71.710593] i8042: [70899] d4 -> i8042 (command)
[   71.710782] i8042: [70899] f6 -> i8042 (parameter)
[   71.713694] i8042: [70902] fa <- i8042 (interrupt, 1, 12)
[   71.713800] i8042: [70902] d4 -> i8042 (command)
[   71.714047] i8042: [70902] f5 -> i8042 (parameter)
[   71.716882] i8042: [70905] fa <- i8042 (interrupt, 1, 12)
[   71.716989] i8042: [70905] d4 -> i8042 (command)
[   71.717236] i8042: [70905] e6 -> i8042 (parameter)
[   71.720063] i8042: [70908] fa <- i8042 (interrupt, 1, 12)
[   71.720145] i8042: [70908] d4 -> i8042 (command)
[   71.720335] i8042: [70908] e6 -> i8042 (parameter)
[   71.723189] i8042: [70911] fa <- i8042 (interrupt, 1, 12)
[   71.723853] i8042: [70912] d4 -> i8042 (command)
[   71.724047] i8042: [70912] e6 -> i8042 (parameter)
[   71.726963] i8042: [70915] fa <- i8042 (interrupt, 1, 12)
[   71.727048] i8042: [70915] d4 -> i8042 (command)
[   71.727237] i8042: [70915] e9 -> i8042 (parameter)
[   71.730160] i8042: [70918] fa <- i8042 (interrupt, 1, 12)
[   71.731620] i8042: [70920] 3c <- i8042 (interrupt, 1, 12)
[   71.733199] i8042: [70921] 03 <- i8042 (interrupt, 1, 12)
[   71.734781] i8042: [70923] 00 <- i8042 (interrupt, 1, 12)
[   71.737891] i8042: [70926] d4 -> i8042 (command)
[   71.738084] i8042: [70926] e6 -> i8042 (parameter)
[   71.741146] i8042: [70929] fa <- i8042 (interrupt, 1, 12)
[   71.741252] i8042: [70929] d4 -> i8042 (command)
[   71.741442] i8042: [70930] e8 -> i8042 (parameter)
[   71.744348] i8042: [70932] fa <- i8042 (interrupt, 1, 12)
[   71.744453] i8042: [70933] d4 -> i8042 (command)
[   71.744643] i8042: [70933] 00 -> i8042 (parameter)
[   71.747539] i8042: [70936] fa <- i8042 (interrupt, 1, 12)
[   71.747646] i8042: [70936] d4 -> i8042 (command)
[   71.747836] i8042: [70936] e8 -> i8042 (parameter)
[   71.750722] i8042: [70939] fa <- i8042 (interrupt, 1, 12)
[   71.750827] i8042: [70939] d4 -> i8042 (command)
[   71.751074] i8042: [70939] 00 -> i8042 (parameter)
[   71.753915] i8042: [70942] fa <- i8042 (interrupt, 1, 12)
[   71.754022] i8042: [70942] d4 -> i8042 (command)
[   71.754212] i8042: [70942] e8 -> i8042 (parameter)
[   71.757112] i8042: [70945] fa <- i8042 (interrupt, 1, 12)
[   71.757218] i8042: [70945] d4 -> i8042 (command)
[   71.757407] i8042: [70946] 00 -> i8042 (parameter)
[   71.760307] i8042: [70948] fa <- i8042 (interrupt, 1, 12)
[   71.760436] i8042: [70949] d4 -> i8042 (command)
[   71.760626] i8042: [70949] e8 -> i8042 (parameter)
[   71.763515] i8042: [70952] fa <- i8042 (interrupt, 1, 12)
[   71.763595] i8042: [70952] d4 -> i8042 (command)
[   71.763786] i8042: [70952] 01 -> i8042 (parameter)
[   71.766573] i8042: [70955] fa <- i8042 (interrupt, 1, 12)
[   71.766658] i8042: [70955] d4 -> i8042 (command)
[   71.766849] i8042: [70955] e9 -> i8042 (parameter)
[   71.769881] i8042: [70958] fa <- i8042 (interrupt, 1, 12)
[   71.771462] i8042: [70960] 5e <- i8042 (interrupt, 1, 12)
[   71.772917] i8042: [70961] 0f <- i8042 (interrupt, 1, 12)
[   71.774550] i8042: [70963] 01 <- i8042 (interrupt, 1, 12)
[   71.774658] i8042: [70963] d4 -> i8042 (command)
[   71.774848] i8042: [70963] f8 -> i8042 (parameter)
[   71.777709] i8042: [70966] fa <- i8042 (interrupt, 1, 12)
[   71.781096] i8042: [70969] d4 -> i8042 (command)
[   71.781288] i8042: [70969] 00 -> i8042 (parameter)
[   71.784033] i8042: [70972] fa <- i8042 (interrupt, 1, 12)
[   71.784118] i8042: [70972] d4 -> i8042 (command)
[   71.784308] i8042: [70972] f8 -> i8042 (parameter)
[   71.787228] i8042: [70975] fa <- i8042 (interrupt, 1, 12)
[   71.787314] i8042: [70975] d4 -> i8042 (command)
[   71.787504] i8042: [70975] 07 -> i8042 (parameter)
[   71.790456] i8042: [70979] fa <- i8042 (interrupt, 1, 12)
[   71.790566] i8042: [70979] d4 -> i8042 (command)
[   71.790756] i8042: [70979] f8 -> i8042 (parameter)
[   71.793632] i8042: [70982] fa <- i8042 (interrupt, 1, 12)
[   71.793741] i8042: [70982] d4 -> i8042 (command)
[   71.793987] i8042: [70982] 00 -> i8042 (parameter)
[   71.796812] i8042: [70985] fa <- i8042 (interrupt, 1, 12)
[   71.796919] i8042: [70985] d4 -> i8042 (command)
[   71.797110] i8042: [70985] f8 -> i8042 (parameter)
[   71.799991] i8042: [70988] fa <- i8042 (interrupt, 1, 12)
[   71.800098] i8042: [70988] d4 -> i8042 (command)
[   71.800289] i8042: [70988] 01 -> i8042 (parameter)
[   71.803188] i8042: [70991] fa <- i8042 (interrupt, 1, 12)
[   71.803301] i8042: [70991] d4 -> i8042 (command)
[   71.803547] i8042: [70992] e6 -> i8042 (parameter)
[   71.806385] i8042: [70994] fa <- i8042 (interrupt, 1, 12)
[   71.806496] i8042: [70995] d4 -> i8042 (command)
[   71.806742] i8042: [70995] f3 -> i8042 (parameter)
[   71.809541] i8042: [70998] fa <- i8042 (interrupt, 1, 12)
[   71.809621] i8042: [70998] d4 -> i8042 (command)
[   71.809811] i8042: [70998] 64 -> i8042 (parameter)
[   71.812760] i8042: [71001] fa <- i8042 (interrupt, 1, 12)
[   71.812866] i8042: [71001] d4 -> i8042 (command)
[   71.813055] i8042: [71001] e8 -> i8042 (parameter)
[   71.815979] i8042: [71004] fa <- i8042 (interrupt, 1, 12)
[   71.816059] i8042: [71004] d4 -> i8042 (command)
[   71.816249] i8042: [71004] 03 -> i8042 (parameter)
[   71.819157] i8042: [71007] fa <- i8042 (interrupt, 1, 12)
[   71.819243] i8042: [71007] d4 -> i8042 (command)
[   71.819432] i8042: [71007] e6 -> i8042 (parameter)
[   71.822325] i8042: [71010] fa <- i8042 (interrupt, 1, 12)
[   71.822450] i8042: [71011] d4 -> i8042 (command)
[   71.822640] i8042: [71011] f4 -> i8042 (parameter)
[   71.825561] i8042: [71014] fa <- i8042 (interrupt, 1, 12)
[   71.846288] i8042: [71034] 08 <- i8042 (interrupt, 1, 12)
[   71.847864] i8042: [71036] 00 <- i8042 (interrupt, 1, 12)
[   71.849450] i8042: [71038] 00 <- i8042 (interrupt, 1, 12)
[   71.855572] i8042: [71044] 64 <- i8042 (interrupt, 1, 12)
[   71.857155] i8042: [71045] 01 <- i8042 (interrupt, 1, 12)
[   71.858680] i8042: [71047] 00 <- i8042 (interrupt, 1, 12)
[   71.858718] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.860327] i8042: [71048] 10 <- i8042 (interrupt, 1, 12)
[   71.861896] i8042: [71050] 00 <- i8042 (interrupt, 1, 12)
[   71.863511] i8042: [71052] 00 <- i8042 (interrupt, 1, 12)
[   71.865006] i8042: [71053] 64 <- i8042 (interrupt, 1, 12)
[   71.866555] i8042: [71055] 23 <- i8042 (interrupt, 1, 12)
[   71.868233] i8042: [71056] 5f <- i8042 (interrupt, 1, 12)
[   71.868271] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.869854] i8042: [71058] 31 <- i8042 (interrupt, 1, 12)
[   71.871417] i8042: [71059] 43 <- i8042 (interrupt, 1, 12)
[   71.872981] i8042: [71061] 43 <- i8042 (interrupt, 1, 12)
[   71.874578] i8042: [71063] 64 <- i8042 (interrupt, 1, 12)
[   71.876151] i8042: [71064] 23 <- i8042 (interrupt, 1, 12)
[   71.877704] i8042: [71066] 5f <- i8042 (interrupt, 1, 12)
[   71.877743] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.879334] i8042: [71067] 31 <- i8042 (interrupt, 1, 12)
[   71.880867] i8042: [71069] 43 <- i8042 (interrupt, 1, 12)
[   71.882483] i8042: [71071] 43 <- i8042 (interrupt, 1, 12)
[   71.884055] i8042: [71072] 54 <- i8042 (interrupt, 1, 12)
[   71.885552] i8042: [71074] 23 <- i8042 (interrupt, 1, 12)
[   71.887226] i8042: [71075] 5f <- i8042 (interrupt, 1, 12)
[   71.887265] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.888817] i8042: [71077] 31 <- i8042 (interrupt, 1, 12)
[   71.890386] i8042: [71078] 73 <- i8042 (interrupt, 1, 12)
[   71.891976] i8042: [71080] 43 <- i8042 (interrupt, 1, 12)
[   71.893541] i8042: [71082] 54 <- i8042 (interrupt, 1, 12)
[   71.895080] i8042: [71083] 23 <- i8042 (interrupt, 1, 12)
[   71.896660] i8042: [71085] 6c <- i8042 (interrupt, 1, 12)
[   71.896699] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   71.896716] psmouse serio1: issuing reconnect request
[   71.896797] i8042: [71085] d4 -> i8042 (command)
[   71.897043] i8042: [71085] ff -> i8042 (parameter)
[   71.899946] i8042: [71088] fa <- i8042 (interrupt, 1, 12)
[   72.000925] i8042: [71189] aa <- i8042 (interrupt, 1, 12)
[   72.002500] i8042: [71191] 00 <- i8042 (interrupt, 1, 12)
[   72.002608] i8042: [71191] d4 -> i8042 (command)
[   72.002798] i8042: [71191] f6 -> i8042 (parameter)
[   72.005717] i8042: [71194] fa <- i8042 (interrupt, 1, 12)
[   72.005827] i8042: [71194] d4 -> i8042 (command)
[   72.006017] i8042: [71194] f5 -> i8042 (parameter)
[   72.008908] i8042: [71197] fa <- i8042 (interrupt, 1, 12)
[   72.009016] i8042: [71197] d4 -> i8042 (command)
[   72.009264] i8042: [71197] e6 -> i8042 (parameter)
[   72.012105] i8042: [71200] fa <- i8042 (interrupt, 1, 12)
[   72.012219] i8042: [71200] d4 -> i8042 (command)
[   72.012409] i8042: [71201] e6 -> i8042 (parameter)
[   72.015299] i8042: [71203] fa <- i8042 (interrupt, 1, 12)
[   72.015430] i8042: [71204] d4 -> i8042 (command)
[   72.015677] i8042: [71204] e6 -> i8042 (parameter)
[   72.018482] i8042: [71207] fa <- i8042 (interrupt, 1, 12)
[   72.018590] i8042: [71207] d4 -> i8042 (command)
[   72.018780] i8042: [71207] e9 -> i8042 (parameter)
[   72.021677] i8042: [71210] fa <- i8042 (interrupt, 1, 12)
[   72.023234] i8042: [71211] 3c <- i8042 (interrupt, 1, 12)
[   72.024821] i8042: [71213] 03 <- i8042 (interrupt, 1, 12)
[   72.026406] i8042: [71214] 00 <- i8042 (interrupt, 1, 12)
[   72.026518] i8042: [71215] d4 -> i8042 (command)
[   72.026707] i8042: [71215] e6 -> i8042 (parameter)
[   72.029619] i8042: [71218] fa <- i8042 (interrupt, 1, 12)
[   72.029727] i8042: [71218] d4 -> i8042 (command)
[   72.029917] i8042: [71218] e8 -> i8042 (parameter)
[   72.032816] i8042: [71221] fa <- i8042 (interrupt, 1, 12)
[   72.032921] i8042: [71221] d4 -> i8042 (command)
[   72.033112] i8042: [71221] 00 -> i8042 (parameter)
[   72.035999] i8042: [71224] fa <- i8042 (interrupt, 1, 12)
[   72.036083] i8042: [71224] d4 -> i8042 (command)
[   72.036273] i8042: [71224] e8 -> i8042 (parameter)
[   72.039161] i8042: [71227] fa <- i8042 (interrupt, 1, 12)
[   72.039241] i8042: [71227] d4 -> i8042 (command)
[   72.039431] i8042: [71228] 00 -> i8042 (parameter)
[   72.042391] i8042: [71230] fa <- i8042 (interrupt, 1, 12)
[   72.042513] i8042: [71231] d4 -> i8042 (command)
[   72.042703] i8042: [71231] e8 -> i8042 (parameter)
[   72.045610] i8042: [71234] fa <- i8042 (interrupt, 1, 12)
[   72.045683] i8042: [71234] d4 -> i8042 (command)
[   72.045872] i8042: [71234] 00 -> i8042 (parameter)
[   72.048798] i8042: [71237] fa <- i8042 (interrupt, 1, 12)
[   72.048906] i8042: [71237] d4 -> i8042 (command)
[   72.049096] i8042: [71237] e8 -> i8042 (parameter)
[   72.052007] i8042: [71240] fa <- i8042 (interrupt, 1, 12)
[   72.052113] i8042: [71240] d4 -> i8042 (command)
[   72.052303] i8042: [71240] 01 -> i8042 (parameter)
[   72.055189] i8042: [71243] fa <- i8042 (interrupt, 1, 12)
[   72.055298] i8042: [71243] d4 -> i8042 (command)
[   72.055487] i8042: [71244] e9 -> i8042 (parameter)
[   72.058397] i8042: [71246] fa <- i8042 (interrupt, 1, 12)
[   72.059943] i8042: [71248] 5e <- i8042 (interrupt, 1, 12)
[   72.061544] i8042: [71250] 0f <- i8042 (interrupt, 1, 12)
[   72.063001] i8042: [71251] 01 <- i8042 (interrupt, 1, 12)
[   72.063055] i8042: [71251] d4 -> i8042 (command)
[   72.063245] i8042: [71251] f8 -> i8042 (parameter)
[   72.066322] i8042: [71254] fa <- i8042 (interrupt, 1, 12)
[   72.066432] i8042: [71255] d4 -> i8042 (command)
[   72.066622] i8042: [71255] 00 -> i8042 (parameter)
[   72.069506] i8042: [71258] fa <- i8042 (interrupt, 1, 12)
[   72.069615] i8042: [71258] d4 -> i8042 (command)
[   72.069806] i8042: [71258] f8 -> i8042 (parameter)
[   72.072708] i8042: [71261] fa <- i8042 (interrupt, 1, 12)
[   72.072818] i8042: [71261] d4 -> i8042 (command)
[   72.073008] i8042: [71261] 07 -> i8042 (parameter)
[   72.075913] i8042: [71264] fa <- i8042 (interrupt, 1, 12)
[   72.076023] i8042: [71264] d4 -> i8042 (command)
[   72.076214] i8042: [71264] f8 -> i8042 (parameter)
[   72.079100] i8042: [71267] fa <- i8042 (interrupt, 1, 12)
[   72.079214] i8042: [71267] d4 -> i8042 (command)
[   72.079405] i8042: [71268] 00 -> i8042 (parameter)
[   72.082289] i8042: [71270] fa <- i8042 (interrupt, 1, 12)
[   72.082434] i8042: [71271] d4 -> i8042 (command)
[   72.082681] i8042: [71271] f8 -> i8042 (parameter)
[   72.085486] i8042: [71274] fa <- i8042 (interrupt, 1, 12)
[   72.085595] i8042: [71274] d4 -> i8042 (command)
[   72.085785] i8042: [71274] 01 -> i8042 (parameter)
[   72.088685] i8042: [71277] fa <- i8042 (interrupt, 1, 12)
[   72.088795] i8042: [71277] d4 -> i8042 (command)
[   72.088985] i8042: [71277] e6 -> i8042 (parameter)
[   72.091875] i8042: [71280] fa <- i8042 (interrupt, 1, 12)
[   72.091987] i8042: [71280] d4 -> i8042 (command)
[   72.092234] i8042: [71280] f3 -> i8042 (parameter)
[   72.095056] i8042: [71283] fa <- i8042 (interrupt, 1, 12)
[   72.095167] i8042: [71283] d4 -> i8042 (command)
[   72.095356] i8042: [71283] 64 -> i8042 (parameter)
[   72.098248] i8042: [71286] fa <- i8042 (interrupt, 1, 12)
[   72.098362] i8042: [71286] d4 -> i8042 (command)
[   72.098552] i8042: [71287] e8 -> i8042 (parameter)
[   72.101444] i8042: [71290] fa <- i8042 (interrupt, 1, 12)
[   72.101550] i8042: [71290] d4 -> i8042 (command)
[   72.101797] i8042: [71290] 03 -> i8042 (parameter)
[   72.104633] i8042: [71293] fa <- i8042 (interrupt, 1, 12)
[   72.104743] i8042: [71293] d4 -> i8042 (command)
[   72.104932] i8042: [71293] e6 -> i8042 (parameter)
[   72.107844] i8042: [71296] fa <- i8042 (interrupt, 1, 12)
[   72.107953] i8042: [71296] d4 -> i8042 (command)
[   72.108144] i8042: [71296] f4 -> i8042 (parameter)
[   72.111062] i8042: [71299] fa <- i8042 (interrupt, 1, 12)
[   72.131756] i8042: [71320] 08 <- i8042 (interrupt, 1, 12)
[   72.133340] i8042: [71321] 00 <- i8042 (interrupt, 1, 12)
[   72.134925] i8042: [71323] 00 <- i8042 (interrupt, 1, 12)
[   72.141556] i8042: [71330] 54 <- i8042 (interrupt, 1, 12)
[   72.143133] i8042: [71331] 01 <- i8042 (interrupt, 1, 12)
[   72.144722] i8042: [71333] 00 <- i8042 (interrupt, 1, 12)
[   72.144762] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.146302] i8042: [71334] 10 <- i8042 (interrupt, 1, 12)
[   72.147894] i8042: [71336] 00 <- i8042 (interrupt, 1, 12)
[   72.149492] i8042: [71338] 00 <- i8042 (interrupt, 1, 12)
[   72.150949] i8042: [71339] 54 <- i8042 (interrupt, 1, 12)
[   72.152640] i8042: [71341] 17 <- i8042 (interrupt, 1, 12)
[   72.154208] i8042: [71342] 08 <- i8042 (interrupt, 1, 12)
[   72.154248] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.155797] i8042: [71344] 31 <- i8042 (interrupt, 1, 12)
[   72.157373] i8042: [71345] 92 <- i8042 (interrupt, 1, 12)
[   72.158956] i8042: [71347] cd <- i8042 (interrupt, 1, 12)
[   72.160543] i8042: [71349] 44 <- i8042 (interrupt, 1, 12)
[   72.162121] i8042: [71350] 17 <- i8042 (interrupt, 1, 12)
[   72.163647] i8042: [71352] 08 <- i8042 (interrupt, 1, 12)
[   72.163686] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.165293] i8042: [71353] 31 <- i8042 (interrupt, 1, 12)
[   72.166871] i8042: [71355] d2 <- i8042 (interrupt, 1, 12)
[   72.168456] i8042: [71357] cd <- i8042 (interrupt, 1, 12)
[   72.170034] i8042: [71358] 54 <- i8042 (interrupt, 1, 12)
[   72.171620] i8042: [71360] 26 <- i8042 (interrupt, 1, 12)
[   72.173202] i8042: [71361] e2 <- i8042 (interrupt, 1, 12)
[   72.173242] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.174757] i8042: [71363] 31 <- i8042 (interrupt, 1, 12)
[   72.176363] i8042: [71364] 02 <- i8042 (interrupt, 1, 12)
[   72.177944] i8042: [71366] c2 <- i8042 (interrupt, 1, 12)
[   72.179537] i8042: [71368] 44 <- i8042 (interrupt, 1, 12)
[   72.181124] i8042: [71369] 26 <- i8042 (interrupt, 1, 12)
[   72.182653] i8042: [71371] c4 <- i8042 (interrupt, 1, 12)
[   72.182693] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.182709] psmouse serio1: issuing reconnect request
[   72.182784] i8042: [71371] d4 -> i8042 (command)
[   72.182974] i8042: [71371] ff -> i8042 (parameter)
[   72.185919] i8042: [71374] fa <- i8042 (interrupt, 1, 12)
[   72.286883] i8042: [71475] aa <- i8042 (interrupt, 1, 12)
[   72.288468] i8042: [71477] 00 <- i8042 (interrupt, 1, 12)
[   72.288571] i8042: [71477] d4 -> i8042 (command)
[   72.288761] i8042: [71477] f6 -> i8042 (parameter)
[   72.291627] i8042: [71480] fa <- i8042 (interrupt, 1, 12)
[   72.291728] i8042: [71480] d4 -> i8042 (command)
[   72.291919] i8042: [71480] f5 -> i8042 (parameter)
[   72.294872] i8042: [71483] fa <- i8042 (interrupt, 1, 12)
[   72.294980] i8042: [71483] d4 -> i8042 (command)
[   72.295226] i8042: [71483] e6 -> i8042 (parameter)
[   72.298082] i8042: [71486] fa <- i8042 (interrupt, 1, 12)
[   72.298194] i8042: [71486] d4 -> i8042 (command)
[   72.298384] i8042: [71486] e6 -> i8042 (parameter)
[   72.301297] i8042: [71489] fa <- i8042 (interrupt, 1, 12)
[   72.301438] i8042: [71490] d4 -> i8042 (command)
[   72.301629] i8042: [71490] e6 -> i8042 (parameter)
[   72.304476] i8042: [71493] fa <- i8042 (interrupt, 1, 12)
[   72.304583] i8042: [71493] d4 -> i8042 (command)
[   72.304773] i8042: [71493] e9 -> i8042 (parameter)
[   72.307660] i8042: [71496] fa <- i8042 (interrupt, 1, 12)
[   72.309224] i8042: [71497] 3c <- i8042 (interrupt, 1, 12)
[   72.310840] i8042: [71499] 03 <- i8042 (interrupt, 1, 12)
[   72.312381] i8042: [71500] 00 <- i8042 (interrupt, 1, 12)
[   72.312492] i8042: [71501] d4 -> i8042 (command)
[   72.312682] i8042: [71501] e6 -> i8042 (parameter)
[   72.315603] i8042: [71504] fa <- i8042 (interrupt, 1, 12)
[   72.315708] i8042: [71504] d4 -> i8042 (command)
[   72.315898] i8042: [71504] e8 -> i8042 (parameter)
[   72.318795] i8042: [71507] fa <- i8042 (interrupt, 1, 12)
[   72.318901] i8042: [71507] d4 -> i8042 (command)
[   72.319090] i8042: [71507] 00 -> i8042 (parameter)
[   72.321988] i8042: [71510] fa <- i8042 (interrupt, 1, 12)
[   72.322095] i8042: [71510] d4 -> i8042 (command)
[   72.322285] i8042: [71510] e8 -> i8042 (parameter)
[   72.325180] i8042: [71513] fa <- i8042 (interrupt, 1, 12)
[   72.325284] i8042: [71513] d4 -> i8042 (command)
[   72.325475] i8042: [71514] 00 -> i8042 (parameter)
[   72.328383] i8042: [71516] fa <- i8042 (interrupt, 1, 12)
[   72.328489] i8042: [71517] d4 -> i8042 (command)
[   72.328736] i8042: [71517] e8 -> i8042 (parameter)
[   72.331569] i8042: [71520] fa <- i8042 (interrupt, 1, 12)
[   72.331673] i8042: [71520] d4 -> i8042 (command)
[   72.331863] i8042: [71520] 00 -> i8042 (parameter)
[   72.334761] i8042: [71523] fa <- i8042 (interrupt, 1, 12)
[   72.334867] i8042: [71523] d4 -> i8042 (command)
[   72.335057] i8042: [71523] e8 -> i8042 (parameter)
[   72.337964] i8042: [71526] fa <- i8042 (interrupt, 1, 12)
[   72.338069] i8042: [71526] d4 -> i8042 (command)
[   72.338260] i8042: [71526] 01 -> i8042 (parameter)
[   72.341154] i8042: [71529] fa <- i8042 (interrupt, 1, 12)
[   72.341262] i8042: [71529] d4 -> i8042 (command)
[   72.341452] i8042: [71530] e9 -> i8042 (parameter)
[   72.344350] i8042: [71532] fa <- i8042 (interrupt, 1, 12)
[   72.345908] i8042: [71534] 5e <- i8042 (interrupt, 1, 12)
[   72.347497] i8042: [71536] 0f <- i8042 (interrupt, 1, 12)
[   72.349068] i8042: [71537] 01 <- i8042 (interrupt, 1, 12)
[   72.349177] i8042: [71537] d4 -> i8042 (command)
[   72.349367] i8042: [71537] f8 -> i8042 (parameter)
[   72.352282] i8042: [71540] fa <- i8042 (interrupt, 1, 12)
[   72.352395] i8042: [71540] d4 -> i8042 (command)
[   72.352585] i8042: [71541] 00 -> i8042 (parameter)
[   72.355479] i8042: [71544] fa <- i8042 (interrupt, 1, 12)
[   72.355578] i8042: [71544] d4 -> i8042 (command)
[   72.355769] i8042: [71544] f8 -> i8042 (parameter)
[   72.358596] i8042: [71547] fa <- i8042 (interrupt, 1, 12)
[   72.358685] i8042: [71547] d4 -> i8042 (command)
[   72.358875] i8042: [71547] 07 -> i8042 (parameter)
[   72.361801] i8042: [71550] fa <- i8042 (interrupt, 1, 12)
[   72.361907] i8042: [71550] d4 -> i8042 (command)
[   72.362154] i8042: [71550] f8 -> i8042 (parameter)
[   72.365070] i8042: [71553] fa <- i8042 (interrupt, 1, 12)
[   72.365179] i8042: [71553] d4 -> i8042 (command)
[   72.365369] i8042: [71553] 00 -> i8042 (parameter)
[   72.368260] i8042: [71556] fa <- i8042 (interrupt, 1, 12)
[   72.368370] i8042: [71556] d4 -> i8042 (command)
[   72.368559] i8042: [71557] f8 -> i8042 (parameter)
[   72.371459] i8042: [71560] fa <- i8042 (interrupt, 1, 12)
[   72.371567] i8042: [71560] d4 -> i8042 (command)
[   72.371758] i8042: [71560] 01 -> i8042 (parameter)
[   72.374660] i8042: [71563] fa <- i8042 (interrupt, 1, 12)
[   72.374769] i8042: [71563] d4 -> i8042 (command)
[   72.374959] i8042: [71563] e6 -> i8042 (parameter)
[   72.377854] i8042: [71566] fa <- i8042 (interrupt, 1, 12)
[   72.377963] i8042: [71566] d4 -> i8042 (command)
[   72.378210] i8042: [71566] f3 -> i8042 (parameter)
[   72.381039] i8042: [71569] fa <- i8042 (interrupt, 1, 12)
[   72.381148] i8042: [71569] d4 -> i8042 (command)
[   72.381338] i8042: [71569] 64 -> i8042 (parameter)
[   72.384234] i8042: [71572] fa <- i8042 (interrupt, 1, 12)
[   72.384347] i8042: [71572] d4 -> i8042 (command)
[   72.384538] i8042: [71573] e8 -> i8042 (parameter)
[   72.387433] i8042: [71576] fa <- i8042 (interrupt, 1, 12)
[   72.387538] i8042: [71576] d4 -> i8042 (command)
[   72.387727] i8042: [71576] 03 -> i8042 (parameter)
[   72.390629] i8042: [71579] fa <- i8042 (interrupt, 1, 12)
[   72.390736] i8042: [71579] d4 -> i8042 (command)
[   72.390983] i8042: [71579] e6 -> i8042 (parameter)
[   72.393811] i8042: [71582] fa <- i8042 (interrupt, 1, 12)
[   72.393920] i8042: [71582] d4 -> i8042 (command)
[   72.394110] i8042: [71582] f4 -> i8042 (parameter)
[   72.396995] i8042: [71585] fa <- i8042 (interrupt, 1, 12)
[   72.417722] i8042: [71606] 08 <- i8042 (interrupt, 1, 12)
[   72.419302] i8042: [71607] 00 <- i8042 (interrupt, 1, 12)
[   72.420885] i8042: [71609] 00 <- i8042 (interrupt, 1, 12)
[   72.427009] i8042: [71615] 54 <- i8042 (interrupt, 1, 12)
[   72.428541] i8042: [71617] 01 <- i8042 (interrupt, 1, 12)
[   72.430123] i8042: [71618] 00 <- i8042 (interrupt, 1, 12)
[   72.430155] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.431739] i8042: [71620] 10 <- i8042 (interrupt, 1, 12)
[   72.433336] i8042: [71621] 00 <- i8042 (interrupt, 1, 12)
[   72.434870] i8042: [71623] 00 <- i8042 (interrupt, 1, 12)
[   72.436504] i8042: [71625] 54 <- i8042 (interrupt, 1, 12)
[   72.438052] i8042: [71626] 22 <- i8042 (interrupt, 1, 12)
[   72.439581] i8042: [71628] f5 <- i8042 (interrupt, 1, 12)
[   72.439616] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.441201] i8042: [71629] 31 <- i8042 (interrupt, 1, 12)
[   72.442782] i8042: [71631] 42 <- i8042 (interrupt, 1, 12)
[   72.444367] i8042: [71632] 3d <- i8042 (interrupt, 1, 12)
[   72.446007] i8042: [71634] 54 <- i8042 (interrupt, 1, 12)
[   72.447534] i8042: [71636] 22 <- i8042 (interrupt, 1, 12)
[   72.449173] i8042: [71637] f5 <- i8042 (interrupt, 1, 12)
[   72.449213] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.450746] i8042: [71639] 31 <- i8042 (interrupt, 1, 12)
[   72.452342] i8042: [71640] 62 <- i8042 (interrupt, 1, 12)
[   72.453922] i8042: [71642] 3d <- i8042 (interrupt, 1, 12)
[   72.455512] i8042: [71644] 54 <- i8042 (interrupt, 1, 12)
[   72.457089] i8042: [71645] 23 <- i8042 (interrupt, 1, 12)
[   72.458612] i8042: [71647] 0d <- i8042 (interrupt, 1, 12)
[   72.458650] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.460254] i8042: [71648] 31 <- i8042 (interrupt, 1, 12)
[   72.461845] i8042: [71650] 62 <- i8042 (interrupt, 1, 12)
[   72.463424] i8042: [71652] 40 <- i8042 (interrupt, 1, 12)
[   72.464999] i8042: [71653] 54 <- i8042 (interrupt, 1, 12)
[   72.466535] i8042: [71655] 23 <- i8042 (interrupt, 1, 12)
[   72.468165] i8042: [71656] 2e <- i8042 (interrupt, 1, 12)
[   72.468204] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.468222] psmouse serio1: issuing reconnect request
[   72.468310] i8042: [71656] d4 -> i8042 (command)
[   72.468499] i8042: [71657] ff -> i8042 (parameter)
[   72.471376] i8042: [71659] fa <- i8042 (interrupt, 1, 12)
[   72.572360] i8042: [71760] aa <- i8042 (interrupt, 1, 12)
[   72.573938] i8042: [71762] 00 <- i8042 (interrupt, 1, 12)
[   72.574048] i8042: [71762] d4 -> i8042 (command)
[   72.574237] i8042: [71762] f6 -> i8042 (parameter)
[   72.577146] i8042: [71765] fa <- i8042 (interrupt, 1, 12)
[   72.577253] i8042: [71765] d4 -> i8042 (command)
[   72.577444] i8042: [71766] f5 -> i8042 (parameter)
[   72.580344] i8042: [71768] fa <- i8042 (interrupt, 1, 12)
[   72.580451] i8042: [71769] d4 -> i8042 (command)
[   72.580698] i8042: [71769] e6 -> i8042 (parameter)
[   72.583535] i8042: [71772] fa <- i8042 (interrupt, 1, 12)
[   72.583643] i8042: [71772] d4 -> i8042 (command)
[   72.583834] i8042: [71772] e6 -> i8042 (parameter)
[   72.586730] i8042: [71775] fa <- i8042 (interrupt, 1, 12)
[   72.586837] i8042: [71775] d4 -> i8042 (command)
[   72.587028] i8042: [71775] e6 -> i8042 (parameter)
[   72.589933] i8042: [71778] fa <- i8042 (interrupt, 1, 12)
[   72.590041] i8042: [71778] d4 -> i8042 (command)
[   72.590231] i8042: [71778] e9 -> i8042 (parameter)
[   72.593116] i8042: [71781] fa <- i8042 (interrupt, 1, 12)
[   72.594697] i8042: [71783] 3c <- i8042 (interrupt, 1, 12)
[   72.596278] i8042: [71784] 03 <- i8042 (interrupt, 1, 12)
[   72.597864] i8042: [71786] 00 <- i8042 (interrupt, 1, 12)
[   72.597971] i8042: [71786] d4 -> i8042 (command)
[   72.598161] i8042: [71786] e6 -> i8042 (parameter)
[   72.601091] i8042: [71789] fa <- i8042 (interrupt, 1, 12)
[   72.601196] i8042: [71789] d4 -> i8042 (command)
[   72.601387] i8042: [71789] e8 -> i8042 (parameter)
[   72.604279] i8042: [71792] fa <- i8042 (interrupt, 1, 12)
[   72.604385] i8042: [71792] d4 -> i8042 (command)
[   72.604575] i8042: [71793] 00 -> i8042 (parameter)
[   72.607482] i8042: [71796] fa <- i8042 (interrupt, 1, 12)
[   72.607589] i8042: [71796] d4 -> i8042 (command)
[   72.607779] i8042: [71796] e8 -> i8042 (parameter)
[   72.610663] i8042: [71799] fa <- i8042 (interrupt, 1, 12)
[   72.610767] i8042: [71799] d4 -> i8042 (command)
[   72.610958] i8042: [71799] 00 -> i8042 (parameter)
[   72.613857] i8042: [71802] fa <- i8042 (interrupt, 1, 12)
[   72.613964] i8042: [71802] d4 -> i8042 (command)
[   72.614210] i8042: [71802] e8 -> i8042 (parameter)
[   72.617049] i8042: [71805] fa <- i8042 (interrupt, 1, 12)
[   72.617154] i8042: [71805] d4 -> i8042 (command)
[   72.617344] i8042: [71805] 00 -> i8042 (parameter)
[   72.620254] i8042: [71808] fa <- i8042 (interrupt, 1, 12)
[   72.620360] i8042: [71808] d4 -> i8042 (command)
[   72.620550] i8042: [71809] e8 -> i8042 (parameter)
[   72.623437] i8042: [71812] fa <- i8042 (interrupt, 1, 12)
[   72.623543] i8042: [71812] d4 -> i8042 (command)
[   72.623733] i8042: [71812] 01 -> i8042 (parameter)
[   72.626639] i8042: [71815] fa <- i8042 (interrupt, 1, 12)
[   72.626746] i8042: [71815] d4 -> i8042 (command)
[   72.626936] i8042: [71815] e9 -> i8042 (parameter)
[   72.629823] i8042: [71818] fa <- i8042 (interrupt, 1, 12)
[   72.631393] i8042: [71819] 5e <- i8042 (interrupt, 1, 12)
[   72.632972] i8042: [71821] 0f <- i8042 (interrupt, 1, 12)
[   72.634552] i8042: [71823] 01 <- i8042 (interrupt, 1, 12)
[   72.634661] i8042: [71823] d4 -> i8042 (command)
[   72.634851] i8042: [71823] f8 -> i8042 (parameter)
[   72.637773] i8042: [71826] fa <- i8042 (interrupt, 1, 12)
[   72.637882] i8042: [71826] d4 -> i8042 (command)
[   72.638073] i8042: [71826] 00 -> i8042 (parameter)
[   72.640959] i8042: [71829] fa <- i8042 (interrupt, 1, 12)
[   72.641068] i8042: [71829] d4 -> i8042 (command)
[   72.641259] i8042: [71829] f8 -> i8042 (parameter)
[   72.644153] i8042: [71832] fa <- i8042 (interrupt, 1, 12)
[   72.644261] i8042: [71832] d4 -> i8042 (command)
[   72.644679] i8042: [71833] 07 -> i8042 (parameter)
[   72.647347] i8042: [71835] fa <- i8042 (interrupt, 1, 12)
[   72.647455] i8042: [71836] d4 -> i8042 (command)
[   72.647645] i8042: [71836] f8 -> i8042 (parameter)
[   72.650541] i8042: [71839] fa <- i8042 (interrupt, 1, 12)
[   72.650650] i8042: [71839] d4 -> i8042 (command)
[   72.650840] i8042: [71839] 00 -> i8042 (parameter)
[   72.653732] i8042: [71842] fa <- i8042 (interrupt, 1, 12)
[   72.653840] i8042: [71842] d4 -> i8042 (command)
[   72.654031] i8042: [71842] f8 -> i8042 (parameter)
[   72.656944] i8042: [71845] fa <- i8042 (interrupt, 1, 12)
[   72.657053] i8042: [71845] d4 -> i8042 (command)
[   72.657243] i8042: [71845] 01 -> i8042 (parameter)
[   72.660036] i8042: [71848] fa <- i8042 (interrupt, 1, 12)
[   72.660119] i8042: [71848] d4 -> i8042 (command)
[   72.660309] i8042: [71848] e6 -> i8042 (parameter)
[   72.663318] i8042: [71851] fa <- i8042 (interrupt, 1, 12)
[   72.663446] i8042: [71852] d4 -> i8042 (command)
[   72.663637] i8042: [71852] f3 -> i8042 (parameter)
[   72.666517] i8042: [71855] fa <- i8042 (interrupt, 1, 12)
[   72.666622] i8042: [71855] d4 -> i8042 (command)
[   72.666812] i8042: [71855] 64 -> i8042 (parameter)
[   72.669699] i8042: [71858] fa <- i8042 (interrupt, 1, 12)
[   72.669808] i8042: [71858] d4 -> i8042 (command)
[   72.669998] i8042: [71858] e8 -> i8042 (parameter)
[   72.672890] i8042: [71861] fa <- i8042 (interrupt, 1, 12)
[   72.672994] i8042: [71861] d4 -> i8042 (command)
[   72.673241] i8042: [71861] 03 -> i8042 (parameter)
[   72.676072] i8042: [71864] fa <- i8042 (interrupt, 1, 12)
[   72.676179] i8042: [71864] d4 -> i8042 (command)
[   72.676369] i8042: [71864] e6 -> i8042 (parameter)
[   72.679265] i8042: [71867] fa <- i8042 (interrupt, 1, 12)
[   72.679374] i8042: [71867] d4 -> i8042 (command)
[   72.679621] i8042: [71868] f4 -> i8042 (parameter)
[   72.682466] i8042: [71871] fa <- i8042 (interrupt, 1, 12)
[   72.703213] i8042: [71891] 08 <- i8042 (interrupt, 1, 12)
[   72.704771] i8042: [71893] 00 <- i8042 (interrupt, 1, 12)
[   72.706356] i8042: [71894] 00 <- i8042 (interrupt, 1, 12)
[   72.712988] i8042: [71901] 54 <- i8042 (interrupt, 1, 12)
[   72.714534] i8042: [71903] 01 <- i8042 (interrupt, 1, 12)
[   72.716159] i8042: [71904] 00 <- i8042 (interrupt, 1, 12)
[   72.716198] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.717717] i8042: [71906] 10 <- i8042 (interrupt, 1, 12)
[   72.719322] i8042: [71907] 00 <- i8042 (interrupt, 1, 12)
[   72.720899] i8042: [71909] 00 <- i8042 (interrupt, 1, 12)
[   72.722488] i8042: [71911] 54 <- i8042 (interrupt, 1, 12)
[   72.724002] i8042: [71912] 15 <- i8042 (interrupt, 1, 12)
[   72.725548] i8042: [71914] 9b <- i8042 (interrupt, 1, 12)
[   72.725583] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.727176] i8042: [71915] 31 <- i8042 (interrupt, 1, 12)
[   72.728752] i8042: [71917] a2 <- i8042 (interrupt, 1, 12)
[   72.730305] i8042: [71918] 8a <- i8042 (interrupt, 1, 12)
[   72.731973] i8042: [71920] 54 <- i8042 (interrupt, 1, 12)
[   72.733459] i8042: [71922] 15 <- i8042 (interrupt, 1, 12)
[   72.735033] i8042: [71923] 9b <- i8042 (interrupt, 1, 12)
[   72.735053] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.736618] i8042: [71925] 31 <- i8042 (interrupt, 1, 12)
[   72.738202] i8042: [71926] d2 <- i8042 (interrupt, 1, 12)
[   72.739783] i8042: [71928] 8a <- i8042 (interrupt, 1, 12)
[   72.741369] i8042: [71929] 54 <- i8042 (interrupt, 1, 12)
[   72.743054] i8042: [71931] 25 <- i8042 (interrupt, 1, 12)
[   72.744638] i8042: [71933] 3a <- i8042 (interrupt, 1, 12)
[   72.744677] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.746217] i8042: [71934] 31 <- i8042 (interrupt, 1, 12)
[   72.747801] i8042: [71936] 22 <- i8042 (interrupt, 1, 12)
[   72.749398] i8042: [71937] c5 <- i8042 (interrupt, 1, 12)
[   72.750972] i8042: [71939] 54 <- i8042 (interrupt, 1, 12)
[   72.752557] i8042: [71941] 25 <- i8042 (interrupt, 1, 12)
[   72.754138] i8042: [71942] 0a <- i8042 (interrupt, 1, 12)
[   72.754178] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   72.754195] psmouse serio1: issuing reconnect request
[   72.754285] i8042: [71942] d4 -> i8042 (command)
[   72.754475] i8042: [71943] ff -> i8042 (parameter)
[   72.757344] i8042: [71945] fa <- i8042 (interrupt, 1, 12)
[   72.858331] i8042: [72046] aa <- i8042 (interrupt, 1, 12)
[   72.859909] i8042: [72048] 00 <- i8042 (interrupt, 1, 12)
[   72.860019] i8042: [72048] d4 -> i8042 (command)
[   72.860208] i8042: [72048] f6 -> i8042 (parameter)
[   72.863118] i8042: [72051] fa <- i8042 (interrupt, 1, 12)
[   72.863228] i8042: [72051] d4 -> i8042 (command)
[   72.863418] i8042: [72052] f5 -> i8042 (parameter)
[   72.866321] i8042: [72054] fa <- i8042 (interrupt, 1, 12)
[   72.866436] i8042: [72055] d4 -> i8042 (command)
[   72.866684] i8042: [72055] e6 -> i8042 (parameter)
[   72.869536] i8042: [72058] fa <- i8042 (interrupt, 1, 12)
[   72.869618] i8042: [72058] d4 -> i8042 (command)
[   72.869808] i8042: [72058] e6 -> i8042 (parameter)
[   72.872608] i8042: [72061] fa <- i8042 (interrupt, 1, 12)
[   72.872693] i8042: [72061] d4 -> i8042 (command)
[   72.872878] i8042: [72061] e6 -> i8042 (parameter)
[   72.875916] i8042: [72064] fa <- i8042 (interrupt, 1, 12)
[   72.875995] i8042: [72064] d4 -> i8042 (command)
[   72.876180] i8042: [72064] e9 -> i8042 (parameter)
[   72.879088] i8042: [72067] fa <- i8042 (interrupt, 1, 12)
[   72.880597] i8042: [72069] 3c <- i8042 (interrupt, 1, 12)
[   72.882234] i8042: [72070] 03 <- i8042 (interrupt, 1, 12)
[   72.883825] i8042: [72072] 00 <- i8042 (interrupt, 1, 12)
[   72.883933] i8042: [72072] d4 -> i8042 (command)
[   72.884122] i8042: [72072] e6 -> i8042 (parameter)
[   72.887026] i8042: [72075] fa <- i8042 (interrupt, 1, 12)
[   72.887134] i8042: [72075] d4 -> i8042 (command)
[   72.887324] i8042: [72075] e8 -> i8042 (parameter)
[   72.890233] i8042: [72078] fa <- i8042 (interrupt, 1, 12)
[   72.890308] i8042: [72078] d4 -> i8042 (command)
[   72.890501] i8042: [72079] 00 -> i8042 (parameter)
[   72.893432] i8042: [72082] fa <- i8042 (interrupt, 1, 12)
[   72.893557] i8042: [72082] d4 -> i8042 (command)
[   72.893748] i8042: [72082] e8 -> i8042 (parameter)
[   72.896632] i8042: [72085] fa <- i8042 (interrupt, 1, 12)
[   72.896738] i8042: [72085] d4 -> i8042 (command)
[   72.896928] i8042: [72085] 00 -> i8042 (parameter)
[   72.899844] i8042: [72088] fa <- i8042 (interrupt, 1, 12)
[   72.899966] i8042: [72088] d4 -> i8042 (command)
[   72.900157] i8042: [72088] e8 -> i8042 (parameter)
[   72.903022] i8042: [72091] fa <- i8042 (interrupt, 1, 12)
[   72.903130] i8042: [72091] d4 -> i8042 (command)
[   72.903320] i8042: [72091] 00 -> i8042 (parameter)
[   72.906215] i8042: [72094] fa <- i8042 (interrupt, 1, 12)
[   72.906322] i8042: [72094] d4 -> i8042 (command)
[   72.906512] i8042: [72095] e8 -> i8042 (parameter)
[   72.909667] i8042: [72098] fa <- i8042 (interrupt, 1, 12)
[   72.909774] i8042: [72098] d4 -> i8042 (command)
[   72.909965] i8042: [72098] 01 -> i8042 (parameter)
[   72.912576] i8042: [72101] fa <- i8042 (interrupt, 1, 12)
[   72.912686] i8042: [72101] d4 -> i8042 (command)
[   72.912876] i8042: [72101] e9 -> i8042 (parameter)
[   72.915783] i8042: [72104] fa <- i8042 (interrupt, 1, 12)
[   72.917351] i8042: [72105] 5e <- i8042 (interrupt, 1, 12)
[   72.918929] i8042: [72107] 0f <- i8042 (interrupt, 1, 12)
[   72.920526] i8042: [72109] 01 <- i8042 (interrupt, 1, 12)
[   72.920637] i8042: [72109] d4 -> i8042 (command)
[   72.920827] i8042: [72109] f8 -> i8042 (parameter)
[   72.923692] i8042: [72112] fa <- i8042 (interrupt, 1, 12)
[   72.923801] i8042: [72112] d4 -> i8042 (command)
[   72.923992] i8042: [72112] 00 -> i8042 (parameter)
[   72.926937] i8042: [72115] fa <- i8042 (interrupt, 1, 12)
[   72.927045] i8042: [72115] d4 -> i8042 (command)
[   72.927236] i8042: [72115] f8 -> i8042 (parameter)
[   72.930122] i8042: [72118] fa <- i8042 (interrupt, 1, 12)
[   72.930232] i8042: [72118] d4 -> i8042 (command)
[   72.930423] i8042: [72118] 07 -> i8042 (parameter)
[   72.933284] i8042: [72121] fa <- i8042 (interrupt, 1, 12)
[   72.933390] i8042: [72121] d4 -> i8042 (command)
[   72.933580] i8042: [72122] f8 -> i8042 (parameter)
[   72.936481] i8042: [72125] fa <- i8042 (interrupt, 1, 12)
[   72.936578] i8042: [72125] d4 -> i8042 (command)
[   72.936768] i8042: [72125] 00 -> i8042 (parameter)
[   72.939640] i8042: [72128] fa <- i8042 (interrupt, 1, 12)
[   72.939710] i8042: [72128] d4 -> i8042 (command)
[   72.939956] i8042: [72128] f8 -> i8042 (parameter)
[   72.942801] i8042: [72131] fa <- i8042 (interrupt, 1, 12)
[   72.942995] i8042: [72131] d4 -> i8042 (command)
[   72.943186] i8042: [72131] 01 -> i8042 (parameter)
[   72.946090] i8042: [72134] fa <- i8042 (interrupt, 1, 12)
[   72.946175] i8042: [72134] d4 -> i8042 (command)
[   72.946365] i8042: [72134] e6 -> i8042 (parameter)
[   72.949286] i8042: [72137] fa <- i8042 (interrupt, 1, 12)
[   72.949373] i8042: [72137] d4 -> i8042 (command)
[   72.949620] i8042: [72137] f3 -> i8042 (parameter)
[   72.952507] i8042: [72141] fa <- i8042 (interrupt, 1, 12)
[   72.952612] i8042: [72141] d4 -> i8042 (command)
[   72.952803] i8042: [72141] 64 -> i8042 (parameter)
[   72.955578] i8042: [72144] fa <- i8042 (interrupt, 1, 12)
[   72.955659] i8042: [72144] d4 -> i8042 (command)
[   72.955849] i8042: [72144] e8 -> i8042 (parameter)
[   72.958790] i8042: [72147] fa <- i8042 (interrupt, 1, 12)
[   72.958870] i8042: [72147] d4 -> i8042 (command)
[   72.959059] i8042: [72147] 03 -> i8042 (parameter)
[   72.962062] i8042: [72150] fa <- i8042 (interrupt, 1, 12)
[   72.962170] i8042: [72150] d4 -> i8042 (command)
[   72.962359] i8042: [72150] e6 -> i8042 (parameter)
[   72.965271] i8042: [72153] fa <- i8042 (interrupt, 1, 12)
[   72.965379] i8042: [72153] d4 -> i8042 (command)
[   72.965571] i8042: [72154] f4 -> i8042 (parameter)
[   72.968464] i8042: [72157] fa <- i8042 (interrupt, 1, 12)
[   72.988697] i8042: [72177] 08 <- i8042 (interrupt, 1, 12)
[   72.990271] i8042: [72178] 00 <- i8042 (interrupt, 1, 12)
[   72.991855] i8042: [72180] 00 <- i8042 (interrupt, 1, 12)
[   72.998489] i8042: [72187] 54 <- i8042 (interrupt, 1, 12)
[   73.000064] i8042: [72188] 01 <- i8042 (interrupt, 1, 12)
[   73.001640] i8042: [72190] 00 <- i8042 (interrupt, 1, 12)
[   73.001680] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.003218] i8042: [72191] 10 <- i8042 (interrupt, 1, 12)
[   73.004800] i8042: [72193] 00 <- i8042 (interrupt, 1, 12)
[   73.006376] i8042: [72194] 00 <- i8042 (interrupt, 1, 12)
[   73.007967] i8042: [72196] 54 <- i8042 (interrupt, 1, 12)
[   73.009627] i8042: [72198] 13 <- i8042 (interrupt, 1, 12)
[   73.011027] i8042: [72199] a3 <- i8042 (interrupt, 1, 12)
[   73.011065] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.012713] i8042: [72201] 31 <- i8042 (interrupt, 1, 12)
[   73.014296] i8042: [72202] d1 <- i8042 (interrupt, 1, 12)
[   73.015879] i8042: [72204] bd <- i8042 (interrupt, 1, 12)
[   73.017459] i8042: [72206] 54 <- i8042 (interrupt, 1, 12)
[   73.019043] i8042: [72207] 23 <- i8042 (interrupt, 1, 12)
[   73.020629] i8042: [72209] a3 <- i8042 (interrupt, 1, 12)
[   73.020669] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.022206] i8042: [72210] 31 <- i8042 (interrupt, 1, 12)
[   73.023784] i8042: [72212] 01 <- i8042 (interrupt, 1, 12)
[   73.025378] i8042: [72213] bd <- i8042 (interrupt, 1, 12)
[   73.026948] i8042: [72215] 54 <- i8042 (interrupt, 1, 12)
[   73.028538] i8042: [72217] 23 <- i8042 (interrupt, 1, 12)
[   73.030121] i8042: [72218] cd <- i8042 (interrupt, 1, 12)
[   73.030160] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.031679] i8042: [72220] 31 <- i8042 (interrupt, 1, 12)
[   73.033277] i8042: [72221] 21 <- i8042 (interrupt, 1, 12)
[   73.034860] i8042: [72223] 77 <- i8042 (interrupt, 1, 12)
[   73.036455] i8042: [72225] 54 <- i8042 (interrupt, 1, 12)
[   73.038032] i8042: [72226] 23 <- i8042 (interrupt, 1, 12)
[   73.039590] i8042: [72228] cf <- i8042 (interrupt, 1, 12)
[   73.039630] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.039647] psmouse serio1: issuing reconnect request
[   73.039737] i8042: [72228] d4 -> i8042 (command)
[   73.039927] i8042: [72228] ff -> i8042 (parameter)
[   73.042828] i8042: [72231] fa <- i8042 (interrupt, 1, 12)
[   73.143813] i8042: [72332] aa <- i8042 (interrupt, 1, 12)
[   73.145389] i8042: [72333] 00 <- i8042 (interrupt, 1, 12)
[   73.145500] i8042: [72334] d4 -> i8042 (command)
[   73.145689] i8042: [72334] f6 -> i8042 (parameter)
[   73.148574] i8042: [72337] fa <- i8042 (interrupt, 1, 12)
[   73.148681] i8042: [72337] d4 -> i8042 (command)
[   73.148871] i8042: [72337] f5 -> i8042 (parameter)
[   73.151793] i8042: [72340] fa <- i8042 (interrupt, 1, 12)
[   73.151901] i8042: [72340] d4 -> i8042 (command)
[   73.152148] i8042: [72340] e6 -> i8042 (parameter)
[   73.154984] i8042: [72343] fa <- i8042 (interrupt, 1, 12)
[   73.155092] i8042: [72343] d4 -> i8042 (command)
[   73.155282] i8042: [72343] e6 -> i8042 (parameter)
[   73.158182] i8042: [72346] fa <- i8042 (interrupt, 1, 12)
[   73.158291] i8042: [72346] d4 -> i8042 (command)
[   73.158481] i8042: [72347] e6 -> i8042 (parameter)
[   73.161382] i8042: [72349] fa <- i8042 (interrupt, 1, 12)
[   73.161490] i8042: [72350] d4 -> i8042 (command)
[   73.161681] i8042: [72350] e9 -> i8042 (parameter)
[   73.164573] i8042: [72353] fa <- i8042 (interrupt, 1, 12)
[   73.166129] i8042: [72354] 3c <- i8042 (interrupt, 1, 12)
[   73.167716] i8042: [72356] 03 <- i8042 (interrupt, 1, 12)
[   73.169299] i8042: [72357] 00 <- i8042 (interrupt, 1, 12)
[   73.169443] i8042: [72358] d4 -> i8042 (command)
[   73.169633] i8042: [72358] e6 -> i8042 (parameter)
[   73.172505] i8042: [72361] fa <- i8042 (interrupt, 1, 12)
[   73.172611] i8042: [72361] d4 -> i8042 (command)
[   73.172801] i8042: [72361] e8 -> i8042 (parameter)
[   73.175676] i8042: [72364] fa <- i8042 (interrupt, 1, 12)
[   73.175782] i8042: [72364] d4 -> i8042 (command)
[   73.176029] i8042: [72364] 00 -> i8042 (parameter)
[   73.178893] i8042: [72367] fa <- i8042 (interrupt, 1, 12)
[   73.178999] i8042: [72367] d4 -> i8042 (command)
[   73.179190] i8042: [72367] e8 -> i8042 (parameter)
[   73.182084] i8042: [72370] fa <- i8042 (interrupt, 1, 12)
[   73.182189] i8042: [72370] d4 -> i8042 (command)
[   73.182436] i8042: [72371] 00 -> i8042 (parameter)
[   73.185277] i8042: [72373] fa <- i8042 (interrupt, 1, 12)
[   73.185382] i8042: [72373] d4 -> i8042 (command)
[   73.185573] i8042: [72374] e8 -> i8042 (parameter)
[   73.188469] i8042: [72377] fa <- i8042 (interrupt, 1, 12)
[   73.188574] i8042: [72377] d4 -> i8042 (command)
[   73.188821] i8042: [72377] 00 -> i8042 (parameter)
[   73.191666] i8042: [72380] fa <- i8042 (interrupt, 1, 12)
[   73.191774] i8042: [72380] d4 -> i8042 (command)
[   73.192021] i8042: [72380] e8 -> i8042 (parameter)
[   73.194869] i8042: [72383] fa <- i8042 (interrupt, 1, 12)
[   73.194974] i8042: [72383] d4 -> i8042 (command)
[   73.195164] i8042: [72383] 01 -> i8042 (parameter)
[   73.198050] i8042: [72386] fa <- i8042 (interrupt, 1, 12)
[   73.198157] i8042: [72386] d4 -> i8042 (command)
[   73.198404] i8042: [72387] e9 -> i8042 (parameter)
[   73.201262] i8042: [72389] fa <- i8042 (interrupt, 1, 12)
[   73.202811] i8042: [72391] 5e <- i8042 (interrupt, 1, 12)
[   73.204389] i8042: [72392] 0f <- i8042 (interrupt, 1, 12)
[   73.205972] i8042: [72394] 01 <- i8042 (interrupt, 1, 12)
[   73.206058] i8042: [72394] d4 -> i8042 (command)
[   73.206247] i8042: [72394] f8 -> i8042 (parameter)
[   73.209187] i8042: [72397] fa <- i8042 (interrupt, 1, 12)
[   73.209296] i8042: [72397] d4 -> i8042 (command)
[   73.209486] i8042: [72398] 00 -> i8042 (parameter)
[   73.212390] i8042: [72400] fa <- i8042 (interrupt, 1, 12)
[   73.212499] i8042: [72401] d4 -> i8042 (command)
[   73.212689] i8042: [72401] f8 -> i8042 (parameter)
[   73.215575] i8042: [72404] fa <- i8042 (interrupt, 1, 12)
[   73.215684] i8042: [72404] d4 -> i8042 (command)
[   73.215873] i8042: [72404] 07 -> i8042 (parameter)
[   73.218770] i8042: [72407] fa <- i8042 (interrupt, 1, 12)
[   73.218877] i8042: [72407] d4 -> i8042 (command)
[   73.219068] i8042: [72407] f8 -> i8042 (parameter)
[   73.221962] i8042: [72410] fa <- i8042 (interrupt, 1, 12)
[   73.222070] i8042: [72410] d4 -> i8042 (command)
[   73.222260] i8042: [72410] 00 -> i8042 (parameter)
[   73.225156] i8042: [72413] fa <- i8042 (interrupt, 1, 12)
[   73.225266] i8042: [72413] d4 -> i8042 (command)
[   73.225512] i8042: [72414] f8 -> i8042 (parameter)
[   73.228349] i8042: [72416] fa <- i8042 (interrupt, 1, 12)
[   73.228469] i8042: [72417] d4 -> i8042 (command)
[   73.228661] i8042: [72417] 01 -> i8042 (parameter)
[   73.231538] i8042: [72420] fa <- i8042 (interrupt, 1, 12)
[   73.231644] i8042: [72420] d4 -> i8042 (command)
[   73.231890] i8042: [72420] e6 -> i8042 (parameter)
[   73.234680] i8042: [72423] fa <- i8042 (interrupt, 1, 12)
[   73.234744] i8042: [72423] d4 -> i8042 (command)
[   73.234986] i8042: [72423] f3 -> i8042 (parameter)
[   73.237858] i8042: [72426] fa <- i8042 (interrupt, 1, 12)
[   73.237925] i8042: [72426] d4 -> i8042 (command)
[   73.238111] i8042: [72426] 64 -> i8042 (parameter)
[   73.241152] i8042: [72429] fa <- i8042 (interrupt, 1, 12)
[   73.241264] i8042: [72429] d4 -> i8042 (command)
[   73.241508] i8042: [72430] e8 -> i8042 (parameter)
[   73.244350] i8042: [72432] fa <- i8042 (interrupt, 1, 12)
[   73.244478] i8042: [72433] d4 -> i8042 (command)
[   73.244722] i8042: [72433] 03 -> i8042 (parameter)
[   73.247531] i8042: [72436] fa <- i8042 (interrupt, 1, 12)
[   73.247660] i8042: [72436] d4 -> i8042 (command)
[   73.247848] i8042: [72436] e6 -> i8042 (parameter)
[   73.250741] i8042: [72439] fa <- i8042 (interrupt, 1, 12)
[   73.250841] i8042: [72439] d4 -> i8042 (command)
[   73.251029] i8042: [72439] f4 -> i8042 (parameter)
[   73.253934] i8042: [72442] fa <- i8042 (interrupt, 1, 12)
[   73.274645] i8042: [72463] 08 <- i8042 (interrupt, 1, 12)
[   73.276187] i8042: [72464] 00 <- i8042 (interrupt, 1, 12)
[   73.277812] i8042: [72466] 00 <- i8042 (interrupt, 1, 12)
[   73.284445] i8042: [72473] 54 <- i8042 (interrupt, 1, 12)
[   73.286027] i8042: [72474] 01 <- i8042 (interrupt, 1, 12)
[   73.287569] i8042: [72476] 00 <- i8042 (interrupt, 1, 12)
[   73.287605] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.289193] i8042: [72477] 10 <- i8042 (interrupt, 1, 12)
[   73.290772] i8042: [72479] 00 <- i8042 (interrupt, 1, 12)
[   73.292346] i8042: [72480] 00 <- i8042 (interrupt, 1, 12)
[   73.293927] i8042: [72482] 54 <- i8042 (interrupt, 1, 12)
[   73.295517] i8042: [72484] 16 <- i8042 (interrupt, 1, 12)
[   73.297111] i8042: [72485] 8b <- i8042 (interrupt, 1, 12)
[   73.297151] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.298653] i8042: [72487] 31 <- i8042 (interrupt, 1, 12)
[   73.300260] i8042: [72488] a2 <- i8042 (interrupt, 1, 12)
[   73.301847] i8042: [72490] 0f <- i8042 (interrupt, 1, 12)
[   73.303428] i8042: [72492] 54 <- i8042 (interrupt, 1, 12)
[   73.305006] i8042: [72493] 16 <- i8042 (interrupt, 1, 12)
[   73.306565] i8042: [72495] 8b <- i8042 (interrupt, 1, 12)
[   73.306605] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.308178] i8042: [72496] 31 <- i8042 (interrupt, 1, 12)
[   73.309740] i8042: [72498] d2 <- i8042 (interrupt, 1, 12)
[   73.311340] i8042: [72499] 0f <- i8042 (interrupt, 1, 12)
[   73.312932] i8042: [72501] 54 <- i8042 (interrupt, 1, 12)
[   73.314509] i8042: [72503] 26 <- i8042 (interrupt, 1, 12)
[   73.316085] i8042: [72504] 8b <- i8042 (interrupt, 1, 12)
[   73.316125] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.317644] i8042: [72506] 31 <- i8042 (interrupt, 1, 12)
[   73.319267] i8042: [72507] 22 <- i8042 (interrupt, 1, 12)
[   73.320836] i8042: [72509] 0f <- i8042 (interrupt, 1, 12)
[   73.322425] i8042: [72511] 54 <- i8042 (interrupt, 1, 12)
[   73.323977] i8042: [72512] 26 <- i8042 (interrupt, 1, 12)
[   73.325587] i8042: [72514] 73 <- i8042 (interrupt, 1, 12)
[   73.325627] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.325644] psmouse serio1: issuing reconnect request
[   73.325733] i8042: [72514] d4 -> i8042 (command)
[   73.325923] i8042: [72514] ff -> i8042 (parameter)
[   73.328799] i8042: [72517] fa <- i8042 (interrupt, 1, 12)
[   73.429777] i8042: [72618] aa <- i8042 (interrupt, 1, 12)
[   73.431362] i8042: [72619] 00 <- i8042 (interrupt, 1, 12)
[   73.431472] i8042: [72620] d4 -> i8042 (command)
[   73.431661] i8042: [72620] f6 -> i8042 (parameter)
[   73.434530] i8042: [72623] fa <- i8042 (interrupt, 1, 12)
[   73.434634] i8042: [72623] d4 -> i8042 (command)
[   73.434824] i8042: [72623] f5 -> i8042 (parameter)
[   73.437693] i8042: [72626] fa <- i8042 (interrupt, 1, 12)
[   73.439296] i8042: [72627] d4 -> i8042 (command)
[   73.439498] i8042: [72628] e6 -> i8042 (parameter)
[   73.442359] i8042: [72630] fa <- i8042 (interrupt, 1, 12)
[   73.447621] i8042: [72636] d4 -> i8042 (command)
[   73.447821] i8042: [72636] e6 -> i8042 (parameter)
[   73.450705] i8042: [72639] fa <- i8042 (interrupt, 1, 12)
[   73.450813] i8042: [72639] d4 -> i8042 (command)
[   73.451004] i8042: [72639] e6 -> i8042 (parameter)
[   73.453911] i8042: [72642] fa <- i8042 (interrupt, 1, 12)
[   73.454019] i8042: [72642] d4 -> i8042 (command)
[   73.454210] i8042: [72642] e9 -> i8042 (parameter)
[   73.457093] i8042: [72645] fa <- i8042 (interrupt, 1, 12)
[   73.458666] i8042: [72647] 3c <- i8042 (interrupt, 1, 12)
[   73.460237] i8042: [72648] 03 <- i8042 (interrupt, 1, 12)
[   73.461830] i8042: [72650] 00 <- i8042 (interrupt, 1, 12)
[   73.461938] i8042: [72650] d4 -> i8042 (command)
[   73.462127] i8042: [72650] e6 -> i8042 (parameter)
[   73.465039] i8042: [72653] fa <- i8042 (interrupt, 1, 12)
[   73.465147] i8042: [72653] d4 -> i8042 (command)
[   73.465337] i8042: [72653] e8 -> i8042 (parameter)
[   73.468235] i8042: [72656] fa <- i8042 (interrupt, 1, 12)
[   73.468340] i8042: [72656] d4 -> i8042 (command)
[   73.468531] i8042: [72657] 00 -> i8042 (parameter)
[   73.471426] i8042: [72660] fa <- i8042 (interrupt, 1, 12)
[   73.471533] i8042: [72660] d4 -> i8042 (command)
[   73.471724] i8042: [72660] e8 -> i8042 (parameter)
[   73.474626] i8042: [72663] fa <- i8042 (interrupt, 1, 12)
[   73.474733] i8042: [72663] d4 -> i8042 (command)
[   73.474923] i8042: [72663] 00 -> i8042 (parameter)
[   73.477812] i8042: [72666] fa <- i8042 (interrupt, 1, 12)
[   73.477920] i8042: [72666] d4 -> i8042 (command)
[   73.478110] i8042: [72666] e8 -> i8042 (parameter)
[   73.481008] i8042: [72669] fa <- i8042 (interrupt, 1, 12)
[   73.481114] i8042: [72669] d4 -> i8042 (command)
[   73.481304] i8042: [72669] 00 -> i8042 (parameter)
[   73.484198] i8042: [72672] fa <- i8042 (interrupt, 1, 12)
[   73.484305] i8042: [72672] d4 -> i8042 (command)
[   73.484496] i8042: [72673] e8 -> i8042 (parameter)
[   73.487388] i8042: [72675] fa <- i8042 (interrupt, 1, 12)
[   73.487506] i8042: [72676] d4 -> i8042 (command)
[   73.487753] i8042: [72676] 01 -> i8042 (parameter)
[   73.490589] i8042: [72679] fa <- i8042 (interrupt, 1, 12)
[   73.490697] i8042: [72679] d4 -> i8042 (command)
[   73.490943] i8042: [72679] e9 -> i8042 (parameter)
[   73.493787] i8042: [72682] fa <- i8042 (interrupt, 1, 12)
[   73.495362] i8042: [72683] 5e <- i8042 (interrupt, 1, 12)
[   73.496939] i8042: [72685] 0f <- i8042 (interrupt, 1, 12)
[   73.498528] i8042: [72687] 01 <- i8042 (interrupt, 1, 12)
[   73.498638] i8042: [72687] d4 -> i8042 (command)
[   73.498829] i8042: [72687] f8 -> i8042 (parameter)
[   73.501742] i8042: [72690] fa <- i8042 (interrupt, 1, 12)
[   73.501853] i8042: [72690] d4 -> i8042 (command)
[   73.502044] i8042: [72690] 00 -> i8042 (parameter)
[   73.504937] i8042: [72693] fa <- i8042 (interrupt, 1, 12)
[   73.505047] i8042: [72693] d4 -> i8042 (command)
[   73.505238] i8042: [72693] f8 -> i8042 (parameter)
[   73.508111] i8042: [72696] fa <- i8042 (interrupt, 1, 12)
[   73.508221] i8042: [72696] d4 -> i8042 (command)
[   73.508639] i8042: [72697] 07 -> i8042 (parameter)
[   73.511319] i8042: [72699] fa <- i8042 (interrupt, 1, 12)
[   73.511450] i8042: [72700] d4 -> i8042 (command)
[   73.511640] i8042: [72700] f8 -> i8042 (parameter)
[   73.514508] i8042: [72703] fa <- i8042 (interrupt, 1, 12)
[   73.514617] i8042: [72703] d4 -> i8042 (command)
[   73.514806] i8042: [72703] 00 -> i8042 (parameter)
[   73.517666] i8042: [72706] fa <- i8042 (interrupt, 1, 12)
[   73.517775] i8042: [72706] d4 -> i8042 (command)
[   73.517966] i8042: [72706] f8 -> i8042 (parameter)
[   73.520872] i8042: [72709] fa <- i8042 (interrupt, 1, 12)
[   73.520978] i8042: [72709] d4 -> i8042 (command)
[   73.521168] i8042: [72709] 01 -> i8042 (parameter)
[   73.524095] i8042: [72712] fa <- i8042 (interrupt, 1, 12)
[   73.524205] i8042: [72712] d4 -> i8042 (command)
[   73.524396] i8042: [72712] e6 -> i8042 (parameter)
[   73.527289] i8042: [72715] fa <- i8042 (interrupt, 1, 12)
[   73.527435] i8042: [72716] d4 -> i8042 (command)
[   73.527682] i8042: [72716] f3 -> i8042 (parameter)
[   73.530477] i8042: [72719] fa <- i8042 (interrupt, 1, 12)
[   73.530583] i8042: [72719] d4 -> i8042 (command)
[   73.530773] i8042: [72719] 64 -> i8042 (parameter)
[   73.533673] i8042: [72722] fa <- i8042 (interrupt, 1, 12)
[   73.533783] i8042: [72722] d4 -> i8042 (command)
[   73.533973] i8042: [72722] e8 -> i8042 (parameter)
[   73.536870] i8042: [72725] fa <- i8042 (interrupt, 1, 12)
[   73.536976] i8042: [72725] d4 -> i8042 (command)
[   73.537166] i8042: [72725] 03 -> i8042 (parameter)
[   73.540062] i8042: [72728] fa <- i8042 (interrupt, 1, 12)
[   73.540173] i8042: [72728] d4 -> i8042 (command)
[   73.540420] i8042: [72729] e6 -> i8042 (parameter)
[   73.543270] i8042: [72731] fa <- i8042 (interrupt, 1, 12)
[   73.543380] i8042: [72731] d4 -> i8042 (command)
[   73.543571] i8042: [72732] f4 -> i8042 (parameter)
[   73.546469] i8042: [72735] fa <- i8042 (interrupt, 1, 12)
[   73.567196] i8042: [72755] 08 <- i8042 (interrupt, 1, 12)
[   73.568727] i8042: [72757] 00 <- i8042 (interrupt, 1, 12)
[   73.570351] i8042: [72758] 00 <- i8042 (interrupt, 1, 12)
[   73.576996] i8042: [72765] 54 <- i8042 (interrupt, 1, 12)
[   73.578533] i8042: [72767] 01 <- i8042 (interrupt, 1, 12)
[   73.580141] i8042: [72768] 00 <- i8042 (interrupt, 1, 12)
[   73.580181] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.581679] i8042: [72770] 10 <- i8042 (interrupt, 1, 12)
[   73.583306] i8042: [72771] 00 <- i8042 (interrupt, 1, 12)
[   73.584894] i8042: [72773] 00 <- i8042 (interrupt, 1, 12)
[   73.586473] i8042: [72775] 54 <- i8042 (interrupt, 1, 12)
[   73.588059] i8042: [72776] 22 <- i8042 (interrupt, 1, 12)
[   73.589598] i8042: [72778] 89 <- i8042 (interrupt, 1, 12)
[   73.589638] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.591215] i8042: [72779] 31 <- i8042 (interrupt, 1, 12)
[   73.592797] i8042: [72781] b1 <- i8042 (interrupt, 1, 12)
[   73.594373] i8042: [72782] 56 <- i8042 (interrupt, 1, 12)
[   73.595954] i8042: [72784] 54 <- i8042 (interrupt, 1, 12)
[   73.597527] i8042: [72786] 22 <- i8042 (interrupt, 1, 12)
[   73.599129] i8042: [72787] 89 <- i8042 (interrupt, 1, 12)
[   73.599169] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.600682] i8042: [72789] 31 <- i8042 (interrupt, 1, 12)
[   73.602283] i8042: [72790] e1 <- i8042 (interrupt, 1, 12)
[   73.603840] i8042: [72792] 56 <- i8042 (interrupt, 1, 12)
[   73.605462] i8042: [72794] 54 <- i8042 (interrupt, 1, 12)
[   73.607030] i8042: [72795] 22 <- i8042 (interrupt, 1, 12)
[   73.608582] i8042: [72797] 89 <- i8042 (interrupt, 1, 12)
[   73.608621] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.610135] i8042: [72798] 31 <- i8042 (interrupt, 1, 12)
[   73.611748] i8042: [72800] f1 <- i8042 (interrupt, 1, 12)
[   73.613360] i8042: [72801] 56 <- i8042 (interrupt, 1, 12)
[   73.614956] i8042: [72803] 54 <- i8042 (interrupt, 1, 12)
[   73.616523] i8042: [72805] 22 <- i8042 (interrupt, 1, 12)
[   73.618080] i8042: [72806] 82 <- i8042 (interrupt, 1, 12)
[   73.618119] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.618135] psmouse serio1: issuing reconnect request
[   73.618221] i8042: [72806] d4 -> i8042 (command)
[   73.618411] i8042: [72807] ff -> i8042 (parameter)
[   73.621325] i8042: [72809] fa <- i8042 (interrupt, 1, 12)
[   73.722323] i8042: [72910] aa <- i8042 (interrupt, 1, 12)
[   73.723886] i8042: [72912] 00 <- i8042 (interrupt, 1, 12)
[   73.723993] i8042: [72912] d4 -> i8042 (command)
[   73.724183] i8042: [72912] f6 -> i8042 (parameter)
[   73.727069] i8042: [72915] fa <- i8042 (interrupt, 1, 12)
[   73.727174] i8042: [72915] d4 -> i8042 (command)
[   73.727364] i8042: [72915] f5 -> i8042 (parameter)
[   73.730187] i8042: [72918] fa <- i8042 (interrupt, 1, 12)
[   73.730675] i8042: [72919] d4 -> i8042 (command)
[   73.730868] i8042: [72919] e6 -> i8042 (parameter)
[   73.733987] i8042: [72922] fa <- i8042 (interrupt, 1, 12)
[   73.734095] i8042: [72922] d4 -> i8042 (command)
[   73.734284] i8042: [72922] e6 -> i8042 (parameter)
[   73.737109] i8042: [72925] fa <- i8042 (interrupt, 1, 12)
[   73.737176] i8042: [72925] d4 -> i8042 (command)
[   73.737366] i8042: [72925] e6 -> i8042 (parameter)
[   73.740283] i8042: [72928] fa <- i8042 (interrupt, 1, 12)
[   73.742388] i8042: [72930] d4 -> i8042 (command)
[   73.742602] i8042: [72931] e9 -> i8042 (parameter)
[   73.745620] i8042: [72934] fa <- i8042 (interrupt, 1, 12)
[   73.747118] i8042: [72935] 3c <- i8042 (interrupt, 1, 12)
[   73.748707] i8042: [72937] 03 <- i8042 (interrupt, 1, 12)
[   73.750348] i8042: [72938] 00 <- i8042 (interrupt, 1, 12)
[   73.750456] i8042: [72939] d4 -> i8042 (command)
[   73.750643] i8042: [72939] e6 -> i8042 (parameter)
[   73.753587] i8042: [72942] fa <- i8042 (interrupt, 1, 12)
[   73.753690] i8042: [72942] d4 -> i8042 (command)
[   73.753877] i8042: [72942] e8 -> i8042 (parameter)
[   73.756691] i8042: [72945] fa <- i8042 (interrupt, 1, 12)
[   73.756779] i8042: [72945] d4 -> i8042 (command)
[   73.756967] i8042: [72945] 00 -> i8042 (parameter)
[   73.759934] i8042: [72948] fa <- i8042 (interrupt, 1, 12)
[   73.760027] i8042: [72948] d4 -> i8042 (command)
[   73.760271] i8042: [72948] e8 -> i8042 (parameter)
[   73.763075] i8042: [72951] fa <- i8042 (interrupt, 1, 12)
[   73.763163] i8042: [72951] d4 -> i8042 (command)
[   73.763351] i8042: [72951] 00 -> i8042 (parameter)
[   73.766268] i8042: [72954] fa <- i8042 (interrupt, 1, 12)
[   73.766353] i8042: [72954] d4 -> i8042 (command)
[   73.766540] i8042: [72955] e8 -> i8042 (parameter)
[   73.769428] i8042: [72958] fa <- i8042 (interrupt, 1, 12)
[   73.769500] i8042: [72958] d4 -> i8042 (command)
[   73.769742] i8042: [72958] 00 -> i8042 (parameter)
[   73.772672] i8042: [72961] fa <- i8042 (interrupt, 1, 12)
[   73.772777] i8042: [72961] d4 -> i8042 (command)
[   73.772962] i8042: [72961] e8 -> i8042 (parameter)
[   73.775862] i8042: [72964] fa <- i8042 (interrupt, 1, 12)
[   73.775915] i8042: [72964] d4 -> i8042 (command)
[   73.776101] i8042: [72964] 01 -> i8042 (parameter)
[   73.778975] i8042: [72967] fa <- i8042 (interrupt, 1, 12)
[   73.781844] i8042: [72970] d4 -> i8042 (command)
[   73.782036] i8042: [72970] e9 -> i8042 (parameter)
[   73.784752] i8042: [72973] fa <- i8042 (interrupt, 1, 12)
[   73.786331] i8042: [72974] 5e <- i8042 (interrupt, 1, 12)
[   73.787840] i8042: [72976] 0f <- i8042 (interrupt, 1, 12)
[   73.789490] i8042: [72978] 01 <- i8042 (interrupt, 1, 12)
[   73.789540] i8042: [72978] d4 -> i8042 (command)
[   73.789726] i8042: [72978] f8 -> i8042 (parameter)
[   73.792669] i8042: [72981] fa <- i8042 (interrupt, 1, 12)
[   73.792741] i8042: [72981] d4 -> i8042 (command)
[   73.792926] i8042: [72981] 00 -> i8042 (parameter)
[   73.795889] i8042: [72984] fa <- i8042 (interrupt, 1, 12)
[   73.795970] i8042: [72984] d4 -> i8042 (command)
[   73.796155] i8042: [72984] f8 -> i8042 (parameter)
[   73.799051] i8042: [72987] fa <- i8042 (interrupt, 1, 12)
[   73.799103] i8042: [72987] d4 -> i8042 (command)
[   73.799287] i8042: [72987] 07 -> i8042 (parameter)
[   73.802319] i8042: [72990] fa <- i8042 (interrupt, 1, 12)
[   73.802443] i8042: [72991] d4 -> i8042 (command)
[   73.802629] i8042: [72991] f8 -> i8042 (parameter)
[   73.805449] i8042: [72994] fa <- i8042 (interrupt, 1, 12)
[   73.805494] i8042: [72994] d4 -> i8042 (command)
[   73.805736] i8042: [72994] 00 -> i8042 (parameter)
[   73.808653] i8042: [72997] fa <- i8042 (interrupt, 1, 12)
[   73.808769] i8042: [72997] d4 -> i8042 (command)
[   73.809012] i8042: [72997] f8 -> i8042 (parameter)
[   73.811832] i8042: [73000] fa <- i8042 (interrupt, 1, 12)
[   73.811863] i8042: [73000] d4 -> i8042 (command)
[   73.812104] i8042: [73000] 01 -> i8042 (parameter)
[   73.815035] i8042: [73003] fa <- i8042 (interrupt, 1, 12)
[   73.815128] i8042: [73003] d4 -> i8042 (command)
[   73.815338] i8042: [73003] e6 -> i8042 (parameter)
[   73.818226] i8042: [73006] fa <- i8042 (interrupt, 1, 12)
[   73.818270] i8042: [73006] d4 -> i8042 (command)
[   73.818456] i8042: [73007] f3 -> i8042 (parameter)
[   73.821396] i8042: [73009] fa <- i8042 (interrupt, 1, 12)
[   73.821465] i8042: [73010] d4 -> i8042 (command)
[   73.821651] i8042: [73010] 64 -> i8042 (parameter)
[   73.824613] i8042: [73013] fa <- i8042 (interrupt, 1, 12)
[   73.824666] i8042: [73013] d4 -> i8042 (command)
[   73.824908] i8042: [73013] e8 -> i8042 (parameter)
[   73.827817] i8042: [73016] fa <- i8042 (interrupt, 1, 12)
[   73.827873] i8042: [73016] d4 -> i8042 (command)
[   73.828058] i8042: [73016] 03 -> i8042 (parameter)
[   73.831029] i8042: [73019] fa <- i8042 (interrupt, 1, 12)
[   73.831076] i8042: [73019] d4 -> i8042 (command)
[   73.831317] i8042: [73019] e6 -> i8042 (parameter)
[   73.834170] i8042: [73022] fa <- i8042 (interrupt, 1, 12)
[   73.834232] i8042: [73022] d4 -> i8042 (command)
[   73.834417] i8042: [73023] f4 -> i8042 (parameter)
[   73.837361] i8042: [73025] fa <- i8042 (interrupt, 1, 12)
[   73.858619] i8042: [73047] 08 <- i8042 (interrupt, 1, 12)
[   73.860222] i8042: [73048] 00 <- i8042 (interrupt, 1, 12)
[   73.861770] i8042: [73050] 00 <- i8042 (interrupt, 1, 12)
[   73.867893] i8042: [73056] 44 <- i8042 (interrupt, 1, 12)
[   73.869482] i8042: [73058] 01 <- i8042 (interrupt, 1, 12)
[   73.871057] i8042: [73059] 00 <- i8042 (interrupt, 1, 12)
[   73.871081] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.872639] i8042: [73061] 10 <- i8042 (interrupt, 1, 12)
[   73.874244] i8042: [73062] 00 <- i8042 (interrupt, 1, 12)
[   73.875806] i8042: [73064] 00 <- i8042 (interrupt, 1, 12)
[   73.877395] i8042: [73065] 44 <- i8042 (interrupt, 1, 12)
[   73.878971] i8042: [73067] 16 <- i8042 (interrupt, 1, 12)
[   73.880554] i8042: [73069] 2a <- i8042 (interrupt, 1, 12)
[   73.880573] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.882153] i8042: [73070] 31 <- i8042 (interrupt, 1, 12)
[   73.883724] i8042: [73072] 92 <- i8042 (interrupt, 1, 12)
[   73.885330] i8042: [73073] 90 <- i8042 (interrupt, 1, 12)
[   73.886968] i8042: [73075] 54 <- i8042 (interrupt, 1, 12)
[   73.888630] i8042: [73077] 16 <- i8042 (interrupt, 1, 12)
[   73.890324] i8042: [73078] 2a <- i8042 (interrupt, 1, 12)
[   73.890345] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.892044] i8042: [73080] 31 <- i8042 (interrupt, 1, 12)
[   73.893221] i8042: [73081] c2 <- i8042 (interrupt, 1, 12)
[   73.894828] i8042: [73083] 90 <- i8042 (interrupt, 1, 12)
[   73.896380] i8042: [73084] 54 <- i8042 (interrupt, 1, 12)
[   73.898303] i8042: [73086] 26 <- i8042 (interrupt, 1, 12)
[   73.899866] i8042: [73088] 2a <- i8042 (interrupt, 1, 12)
[   73.899883] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.901502] i8042: [73090] 31 <- i8042 (interrupt, 1, 12)
[   73.903097] i8042: [73091] 02 <- i8042 (interrupt, 1, 12)
[   73.904652] i8042: [73093] 90 <- i8042 (interrupt, 1, 12)
[   73.906224] i8042: [73094] 54 <- i8042 (interrupt, 1, 12)
[   73.907809] i8042: [73096] 26 <- i8042 (interrupt, 1, 12)
[   73.909367] i8042: [73097] 2a <- i8042 (interrupt, 1, 12)
[   73.909384] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   73.909392] psmouse serio1: issuing reconnect request
[   73.909429] i8042: [73097] d4 -> i8042 (command)
[   73.909969] i8042: [73098] ff -> i8042 (parameter)
[   73.913353] i8042: [73101] fa <- i8042 (interrupt, 1, 12)
[   74.014087] i8042: [73202] aa <- i8042 (interrupt, 1, 12)
[   74.015105] Lockdown: futility: raw io port access is restricted; see man kernel_lockdown.7
[   74.015591] i8042: [73204] 00 <- i8042 (interrupt, 1, 12)
[   74.015667] i8042: [73204] d4 -> i8042 (command)
[   74.015852] i8042: [73204] f6 -> i8042 (parameter)
[   74.018737] i8042: [73207] fa <- i8042 (interrupt, 1, 12)
[   74.019053] i8042: [73207] d4 -> i8042 (command)
[   74.019239] i8042: [73207] f5 -> i8042 (parameter)
[   74.021931] i8042: [73210] fa <- i8042 (interrupt, 1, 12)
[   74.021987] i8042: [73210] d4 -> i8042 (command)
[   74.022172] i8042: [73210] e6 -> i8042 (parameter)
[   74.022519] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   74.025122] i8042: [73213] fa <- i8042 (interrupt, 1, 12)
[   74.025181] i8042: [73213] d4 -> i8042 (command)
[   74.025366] i8042: [73213] e6 -> i8042 (parameter)
[   74.026019] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   74.028325] i8042: [73216] fa <- i8042 (interrupt, 1, 12)
[   74.028383] i8042: [73216] d4 -> i8042 (command)
[   74.028568] i8042: [73216] e6 -> i8042 (parameter)
[   74.031510] i8042: [73220] fa <- i8042 (interrupt, 1, 12)
[   74.031568] i8042: [73220] d4 -> i8042 (command)
[   74.031755] i8042: [73220] e9 -> i8042 (parameter)
[   74.034817] i8042: [73223] fa <- i8042 (interrupt, 1, 12)
[   74.036396] i8042: [73224] 3c <- i8042 (interrupt, 1, 12)
[   74.037981] i8042: [73226] 03 <- i8042 (interrupt, 1, 12)
[   74.039548] i8042: [73228] 00 <- i8042 (interrupt, 1, 12)
[   74.039658] i8042: [73228] d4 -> i8042 (command)
[   74.039845] i8042: [73228] e6 -> i8042 (parameter)
[   74.042730] i8042: [73231] fa <- i8042 (interrupt, 1, 12)
[   74.042798] i8042: [73231] d4 -> i8042 (command)
[   74.042984] i8042: [73231] e8 -> i8042 (parameter)
[   74.045954] i8042: [73234] fa <- i8042 (interrupt, 1, 12)
[   74.046060] i8042: [73234] d4 -> i8042 (command)
[   74.046247] i8042: [73234] 00 -> i8042 (parameter)
[   74.049151] i8042: [73237] fa <- i8042 (interrupt, 1, 12)
[   74.049237] i8042: [73237] d4 -> i8042 (command)
[   74.049424] i8042: [73237] e8 -> i8042 (parameter)
[   74.052347] i8042: [73240] fa <- i8042 (interrupt, 1, 12)
[   74.052458] i8042: [73240] d4 -> i8042 (command)
[   74.052644] i8042: [73241] 00 -> i8042 (parameter)
[   74.055546] i8042: [73244] fa <- i8042 (interrupt, 1, 12)
[   74.055654] i8042: [73244] d4 -> i8042 (command)
[   74.055841] i8042: [73244] e8 -> i8042 (parameter)
[   74.058750] i8042: [73247] fa <- i8042 (interrupt, 1, 12)
[   74.058855] i8042: [73247] d4 -> i8042 (command)
[   74.059042] i8042: [73247] 00 -> i8042 (parameter)
[   74.061937] i8042: [73250] fa <- i8042 (interrupt, 1, 12)
[   74.062045] i8042: [73250] d4 -> i8042 (command)
[   74.062232] i8042: [73250] e8 -> i8042 (parameter)
[   74.065113] i8042: [73253] fa <- i8042 (interrupt, 1, 12)
[   74.065223] i8042: [73253] d4 -> i8042 (command)
[   74.065411] i8042: [73254] 01 -> i8042 (parameter)
[   74.068323] i8042: [73256] fa <- i8042 (interrupt, 1, 12)
[   74.068431] i8042: [73257] d4 -> i8042 (command)
[   74.068618] i8042: [73257] e9 -> i8042 (parameter)
[   74.071516] i8042: [73260] fa <- i8042 (interrupt, 1, 12)
[   74.073067] i8042: [73261] 5e <- i8042 (interrupt, 1, 12)
[   74.074613] i8042: [73263] 0f <- i8042 (interrupt, 1, 12)
[   74.076231] i8042: [73264] 01 <- i8042 (interrupt, 1, 12)
[   74.076342] i8042: [73264] d4 -> i8042 (command)
[   74.076528] i8042: [73265] f8 -> i8042 (parameter)
[   74.079473] i8042: [73268] fa <- i8042 (interrupt, 1, 12)
[   74.079580] i8042: [73268] d4 -> i8042 (command)
[   74.079768] i8042: [73268] 00 -> i8042 (parameter)
[   74.082654] i8042: [73271] fa <- i8042 (interrupt, 1, 12)
[   74.082760] i8042: [73271] d4 -> i8042 (command)
[   74.082947] i8042: [73271] f8 -> i8042 (parameter)
[   74.085855] i8042: [73274] fa <- i8042 (interrupt, 1, 12)
[   74.085960] i8042: [73274] d4 -> i8042 (command)
[   74.086147] i8042: [73274] 07 -> i8042 (parameter)
[   74.089023] i8042: [73277] fa <- i8042 (interrupt, 1, 12)
[   74.089130] i8042: [73277] d4 -> i8042 (command)
[   74.089316] i8042: [73277] f8 -> i8042 (parameter)
[   74.092226] i8042: [73280] fa <- i8042 (interrupt, 1, 12)
[   74.092332] i8042: [73280] d4 -> i8042 (command)
[   74.092520] i8042: [73281] 00 -> i8042 (parameter)
[   74.095407] i8042: [73283] fa <- i8042 (interrupt, 1, 12)
[   74.095512] i8042: [73284] d4 -> i8042 (command)
[   74.095699] i8042: [73284] f8 -> i8042 (parameter)
[   74.098611] i8042: [73287] fa <- i8042 (interrupt, 1, 12)
[   74.098716] i8042: [73287] d4 -> i8042 (command)
[   74.098903] i8042: [73287] 01 -> i8042 (parameter)
[   74.101752] i8042: [73290] fa <- i8042 (interrupt, 1, 12)
[   74.101840] i8042: [73290] d4 -> i8042 (command)
[   74.102026] i8042: [73290] e6 -> i8042 (parameter)
[   74.104966] i8042: [73293] fa <- i8042 (interrupt, 1, 12)
[   74.105074] i8042: [73293] d4 -> i8042 (command)
[   74.105261] i8042: [73293] f3 -> i8042 (parameter)
[   74.108177] i8042: [73296] fa <- i8042 (interrupt, 1, 12)
[   74.108280] i8042: [73296] d4 -> i8042 (command)
[   74.108524] i8042: [73297] 64 -> i8042 (parameter)
[   74.111368] i8042: [73299] fa <- i8042 (interrupt, 1, 12)
[   74.111475] i8042: [73300] d4 -> i8042 (command)
[   74.111662] i8042: [73300] e8 -> i8042 (parameter)
[   74.114575] i8042: [73303] fa <- i8042 (interrupt, 1, 12)
[   74.114677] i8042: [73303] d4 -> i8042 (command)
[   74.114921] i8042: [73303] 03 -> i8042 (parameter)
[   74.117758] i8042: [73306] fa <- i8042 (interrupt, 1, 12)
[   74.117863] i8042: [73306] d4 -> i8042 (command)
[   74.118049] i8042: [73306] e6 -> i8042 (parameter)
[   74.120952] i8042: [73309] fa <- i8042 (interrupt, 1, 12)
[   74.121058] i8042: [73309] d4 -> i8042 (command)
[   74.121245] i8042: [73309] f4 -> i8042 (parameter)
[   74.124161] i8042: [73312] fa <- i8042 (interrupt, 1, 12)
[   74.145391] i8042: [73333] 08 <- i8042 (interrupt, 1, 12)
[   74.146921] i8042: [73335] 00 <- i8042 (interrupt, 1, 12)
[   74.148539] i8042: [73337] 00 <- i8042 (interrupt, 1, 12)
[   74.154670] i8042: [73343] 64 <- i8042 (interrupt, 1, 12)
[   74.156252] i8042: [73344] 01 <- i8042 (interrupt, 1, 12)
[   74.157829] i8042: [73346] 00 <- i8042 (interrupt, 1, 12)
[   74.157869] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.159413] i8042: [73347] 10 <- i8042 (interrupt, 1, 12)
[   74.160994] i8042: [73349] 00 <- i8042 (interrupt, 1, 12)
[   74.162582] i8042: [73351] 00 <- i8042 (interrupt, 1, 12)
[   74.164166] i8042: [73352] 64 <- i8042 (interrupt, 1, 12)
[   74.165718] i8042: [73354] 23 <- i8042 (interrupt, 1, 12)
[   74.167328] i8042: [73355] 03 <- i8042 (interrupt, 1, 12)
[   74.167368] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.168922] i8042: [73357] 31 <- i8042 (interrupt, 1, 12)
[   74.170495] i8042: [73359] 61 <- i8042 (interrupt, 1, 12)
[   74.172073] i8042: [73360] c4 <- i8042 (interrupt, 1, 12)
[   74.173631] i8042: [73362] 64 <- i8042 (interrupt, 1, 12)
[   74.175234] i8042: [73363] 23 <- i8042 (interrupt, 1, 12)
[   74.176821] i8042: [73365] 03 <- i8042 (interrupt, 1, 12)
[   74.176860] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.178399] i8042: [73366] 31 <- i8042 (interrupt, 1, 12)
[   74.180007] i8042: [73368] b1 <- i8042 (interrupt, 1, 12)
[   74.181568] i8042: [73370] c4 <- i8042 (interrupt, 1, 12)
[   74.183152] i8042: [73371] 64 <- i8042 (interrupt, 1, 12)
[   74.184733] i8042: [73373] 23 <- i8042 (interrupt, 1, 12)
[   74.186320] i8042: [73374] 03 <- i8042 (interrupt, 1, 12)
[   74.186360] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.187903] i8042: [73376] 31 <- i8042 (interrupt, 1, 12)
[   74.189482] i8042: [73378] f1 <- i8042 (interrupt, 1, 12)
[   74.191063] i8042: [73379] c4 <- i8042 (interrupt, 1, 12)
[   74.192623] i8042: [73381] 64 <- i8042 (interrupt, 1, 12)
[   74.194226] i8042: [73382] 22 <- i8042 (interrupt, 1, 12)
[   74.195806] i8042: [73384] f1 <- i8042 (interrupt, 1, 12)
[   74.195846] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.195862] psmouse serio1: issuing reconnect request
[   74.195953] i8042: [73384] d4 -> i8042 (command)
[   74.196142] i8042: [73384] ff -> i8042 (parameter)
[   74.199021] i8042: [73387] fa <- i8042 (interrupt, 1, 12)
[   74.300036] i8042: [73488] aa <- i8042 (interrupt, 1, 12)
[   74.301575] i8042: [73490] 00 <- i8042 (interrupt, 1, 12)
[   74.301682] i8042: [73490] d4 -> i8042 (command)
[   74.301929] i8042: [73490] f6 -> i8042 (parameter)
[   74.304804] i8042: [73493] fa <- i8042 (interrupt, 1, 12)
[   74.304912] i8042: [73493] d4 -> i8042 (command)
[   74.305103] i8042: [73493] f5 -> i8042 (parameter)
[   74.307999] i8042: [73496] fa <- i8042 (interrupt, 1, 12)
[   74.308108] i8042: [73496] d4 -> i8042 (command)
[   74.308299] i8042: [73496] e6 -> i8042 (parameter)
[   74.311204] i8042: [73499] fa <- i8042 (interrupt, 1, 12)
[   74.311312] i8042: [73499] d4 -> i8042 (command)
[   74.311502] i8042: [73500] e6 -> i8042 (parameter)
[   74.314387] i8042: [73502] fa <- i8042 (interrupt, 1, 12)
[   74.314497] i8042: [73503] d4 -> i8042 (command)
[   74.314743] i8042: [73503] e6 -> i8042 (parameter)
[   74.317577] i8042: [73506] fa <- i8042 (interrupt, 1, 12)
[   74.317684] i8042: [73506] d4 -> i8042 (command)
[   74.317874] i8042: [73506] e9 -> i8042 (parameter)
[   74.320693] i8042: [73509] fa <- i8042 (interrupt, 1, 12)
[   74.322320] i8042: [73510] 3c <- i8042 (interrupt, 1, 12)
[   74.323908] i8042: [73512] 03 <- i8042 (interrupt, 1, 12)
[   74.325468] i8042: [73514] 00 <- i8042 (interrupt, 1, 12)
[   74.326520] i8042: [73515] d4 -> i8042 (command)
[   74.326717] i8042: [73515] e6 -> i8042 (parameter)
[   74.329602] i8042: [73518] fa <- i8042 (interrupt, 1, 12)
[   74.329755] i8042: [73518] d4 -> i8042 (command)
[   74.329939] i8042: [73518] e8 -> i8042 (parameter)
[   74.332820] i8042: [73521] fa <- i8042 (interrupt, 1, 12)
[   74.332950] i8042: [73521] d4 -> i8042 (command)
[   74.333135] i8042: [73521] 00 -> i8042 (parameter)
[   74.336142] i8042: [73524] fa <- i8042 (interrupt, 1, 12)
[   74.336390] i8042: [73524] d4 -> i8042 (command)
[   74.336576] i8042: [73525] e8 -> i8042 (parameter)
[   74.339180] i8042: [73527] fa <- i8042 (interrupt, 1, 12)
[   74.339305] i8042: [73527] d4 -> i8042 (command)
[   74.339491] i8042: [73528] 00 -> i8042 (parameter)
[   74.342537] i8042: [73531] fa <- i8042 (interrupt, 1, 12)
[   74.342660] i8042: [73531] d4 -> i8042 (command)
[   74.342850] i8042: [73531] e8 -> i8042 (parameter)
[   74.345692] i8042: [73534] fa <- i8042 (interrupt, 1, 12)
[   74.345798] i8042: [73534] d4 -> i8042 (command)
[   74.345989] i8042: [73534] 00 -> i8042 (parameter)
[   74.348910] i8042: [73537] fa <- i8042 (interrupt, 1, 12)
[   74.349032] i8042: [73537] d4 -> i8042 (command)
[   74.349223] i8042: [73537] e8 -> i8042 (parameter)
[   74.352088] i8042: [73540] fa <- i8042 (interrupt, 1, 12)
[   74.352194] i8042: [73540] d4 -> i8042 (command)
[   74.352384] i8042: [73540] 01 -> i8042 (parameter)
[   74.355195] i8042: [73543] fa <- i8042 (interrupt, 1, 12)
[   74.355383] i8042: [73543] d4 -> i8042 (command)
[   74.355632] i8042: [73544] e9 -> i8042 (parameter)
[   74.358346] i8042: [73546] fa <- i8042 (interrupt, 1, 12)
[   74.360019] i8042: [73548] 5e <- i8042 (interrupt, 1, 12)
[   74.361610] i8042: [73550] 0f <- i8042 (interrupt, 1, 12)
[   74.363137] i8042: [73551] 01 <- i8042 (interrupt, 1, 12)
[   74.363269] i8042: [73551] d4 -> i8042 (command)
[   74.363469] i8042: [73552] f8 -> i8042 (parameter)
[   74.366439] i8042: [73555] fa <- i8042 (interrupt, 1, 12)
[   74.366564] i8042: [73555] d4 -> i8042 (command)
[   74.366754] i8042: [73555] 00 -> i8042 (parameter)
[   74.369591] i8042: [73558] fa <- i8042 (interrupt, 1, 12)
[   74.369700] i8042: [73558] d4 -> i8042 (command)
[   74.369948] i8042: [73558] f8 -> i8042 (parameter)
[   74.372787] i8042: [73561] fa <- i8042 (interrupt, 1, 12)
[   74.372897] i8042: [73561] d4 -> i8042 (command)
[   74.373088] i8042: [73561] 07 -> i8042 (parameter)
[   74.375969] i8042: [73564] fa <- i8042 (interrupt, 1, 12)
[   74.376079] i8042: [73564] d4 -> i8042 (command)
[   74.376269] i8042: [73564] f8 -> i8042 (parameter)
[   74.379165] i8042: [73567] fa <- i8042 (interrupt, 1, 12)
[   74.379275] i8042: [73567] d4 -> i8042 (command)
[   74.379522] i8042: [73568] 00 -> i8042 (parameter)
[   74.382358] i8042: [73570] fa <- i8042 (interrupt, 1, 12)
[   74.382474] i8042: [73571] d4 -> i8042 (command)
[   74.382666] i8042: [73571] f8 -> i8042 (parameter)
[   74.385566] i8042: [73574] fa <- i8042 (interrupt, 1, 12)
[   74.385663] i8042: [73574] d4 -> i8042 (command)
[   74.385863] i8042: [73574] 01 -> i8042 (parameter)
[   74.388795] i8042: [73577] fa <- i8042 (interrupt, 1, 12)
[   74.388921] i8042: [73577] d4 -> i8042 (command)
[   74.389111] i8042: [73577] e6 -> i8042 (parameter)
[   74.391961] i8042: [73580] fa <- i8042 (interrupt, 1, 12)
[   74.392073] i8042: [73580] d4 -> i8042 (command)
[   74.392264] i8042: [73580] f3 -> i8042 (parameter)
[   74.395174] i8042: [73583] fa <- i8042 (interrupt, 1, 12)
[   74.395295] i8042: [73583] d4 -> i8042 (command)
[   74.395542] i8042: [73584] 64 -> i8042 (parameter)
[   74.398335] i8042: [73586] fa <- i8042 (interrupt, 1, 12)
[   74.398444] i8042: [73587] d4 -> i8042 (command)
[   74.398634] i8042: [73587] e8 -> i8042 (parameter)
[   74.401521] i8042: [73590] fa <- i8042 (interrupt, 1, 12)
[   74.401627] i8042: [73590] d4 -> i8042 (command)
[   74.401874] i8042: [73590] 03 -> i8042 (parameter)
[   74.404658] i8042: [73593] fa <- i8042 (interrupt, 1, 12)
[   74.404743] i8042: [73593] d4 -> i8042 (command)
[   74.404932] i8042: [73593] e6 -> i8042 (parameter)
[   74.407911] i8042: [73596] fa <- i8042 (interrupt, 1, 12)
[   74.407997] i8042: [73596] d4 -> i8042 (command)
[   74.408187] i8042: [73596] f4 -> i8042 (parameter)
[   74.411099] i8042: [73599] fa <- i8042 (interrupt, 1, 12)
[   74.431735] i8042: [73620] 08 <- i8042 (interrupt, 1, 12)
[   74.433320] i8042: [73621] 00 <- i8042 (interrupt, 1, 12)
[   74.434902] i8042: [73623] 00 <- i8042 (interrupt, 1, 12)
[   74.441570] i8042: [73630] 54 <- i8042 (interrupt, 1, 12)
[   74.443127] i8042: [73631] 01 <- i8042 (interrupt, 1, 12)
[   74.444771] i8042: [73633] 00 <- i8042 (interrupt, 1, 12)
[   74.444798] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.446345] i8042: [73634] 10 <- i8042 (interrupt, 1, 12)
[   74.447927] i8042: [73636] 00 <- i8042 (interrupt, 1, 12)
[   74.449453] i8042: [73638] 00 <- i8042 (interrupt, 1, 12)
[   74.451053] i8042: [73639] 54 <- i8042 (interrupt, 1, 12)
[   74.452637] i8042: [73641] 15 <- i8042 (interrupt, 1, 12)
[   74.454290] i8042: [73642] b7 <- i8042 (interrupt, 1, 12)
[   74.454332] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.455878] i8042: [73644] 31 <- i8042 (interrupt, 1, 12)
[   74.457503] i8042: [73646] a3 <- i8042 (interrupt, 1, 12)
[   74.458939] i8042: [73647] 16 <- i8042 (interrupt, 1, 12)
[   74.460555] i8042: [73649] 54 <- i8042 (interrupt, 1, 12)
[   74.462169] i8042: [73650] 15 <- i8042 (interrupt, 1, 12)
[   74.463749] i8042: [73652] b7 <- i8042 (interrupt, 1, 12)
[   74.463774] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.465368] i8042: [73653] 31 <- i8042 (interrupt, 1, 12)
[   74.466952] i8042: [73655] d3 <- i8042 (interrupt, 1, 12)
[   74.468558] i8042: [73657] 16 <- i8042 (interrupt, 1, 12)
[   74.470012] i8042: [73658] 54 <- i8042 (interrupt, 1, 12)
[   74.471682] i8042: [73660] 25 <- i8042 (interrupt, 1, 12)
[   74.473285] i8042: [73661] b7 <- i8042 (interrupt, 1, 12)
[   74.473331] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.474871] i8042: [73663] 31 <- i8042 (interrupt, 1, 12)
[   74.476487] i8042: [73665] 03 <- i8042 (interrupt, 1, 12)
[   74.478085] i8042: [73666] 16 <- i8042 (interrupt, 1, 12)
[   74.479598] i8042: [73668] 54 <- i8042 (interrupt, 1, 12)
[   74.481215] i8042: [73669] 25 <- i8042 (interrupt, 1, 12)
[   74.482744] i8042: [73671] d7 <- i8042 (interrupt, 1, 12)
[   74.482778] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.482792] psmouse serio1: issuing reconnect request
[   74.482871] i8042: [73671] d4 -> i8042 (command)
[   74.483058] i8042: [73671] ff -> i8042 (parameter)
[   74.485953] i8042: [73674] fa <- i8042 (interrupt, 1, 12)
[   74.586972] i8042: [73775] aa <- i8042 (interrupt, 1, 12)
[   74.588552] i8042: [73777] 00 <- i8042 (interrupt, 1, 12)
[   74.588651] i8042: [73777] d4 -> i8042 (command)
[   74.588839] i8042: [73777] f6 -> i8042 (parameter)
[   74.591752] i8042: [73780] fa <- i8042 (interrupt, 1, 12)
[   74.591862] i8042: [73780] d4 -> i8042 (command)
[   74.592052] i8042: [73780] f5 -> i8042 (parameter)
[   74.594976] i8042: [73783] fa <- i8042 (interrupt, 1, 12)
[   74.595084] i8042: [73783] d4 -> i8042 (command)
[   74.595275] i8042: [73783] e6 -> i8042 (parameter)
[   74.598157] i8042: [73786] fa <- i8042 (interrupt, 1, 12)
[   74.598266] i8042: [73786] d4 -> i8042 (command)
[   74.598456] i8042: [73787] e6 -> i8042 (parameter)
[   74.601349] i8042: [73789] fa <- i8042 (interrupt, 1, 12)
[   74.601457] i8042: [73790] d4 -> i8042 (command)
[   74.601647] i8042: [73790] e6 -> i8042 (parameter)
[   74.604556] i8042: [73793] fa <- i8042 (interrupt, 1, 12)
[   74.604663] i8042: [73793] d4 -> i8042 (command)
[   74.604910] i8042: [73793] e9 -> i8042 (parameter)
[   74.607737] i8042: [73796] fa <- i8042 (interrupt, 1, 12)
[   74.609290] i8042: [73797] 3c <- i8042 (interrupt, 1, 12)
[   74.610882] i8042: [73799] 03 <- i8042 (interrupt, 1, 12)
[   74.612466] i8042: [73801] 00 <- i8042 (interrupt, 1, 12)
[   74.612564] i8042: [73801] d4 -> i8042 (command)
[   74.612810] i8042: [73801] e6 -> i8042 (parameter)
[   74.615681] i8042: [73804] fa <- i8042 (interrupt, 1, 12)
[   74.615789] i8042: [73804] d4 -> i8042 (command)
[   74.615979] i8042: [73804] e8 -> i8042 (parameter)
[   74.618890] i8042: [73807] fa <- i8042 (interrupt, 1, 12)
[   74.618995] i8042: [73807] d4 -> i8042 (command)
[   74.619185] i8042: [73807] 00 -> i8042 (parameter)
[   74.622068] i8042: [73810] fa <- i8042 (interrupt, 1, 12)
[   74.622175] i8042: [73810] d4 -> i8042 (command)
[   74.622365] i8042: [73810] e8 -> i8042 (parameter)
[   74.625262] i8042: [73813] fa <- i8042 (interrupt, 1, 12)
[   74.625368] i8042: [73813] d4 -> i8042 (command)
[   74.625558] i8042: [73814] 00 -> i8042 (parameter)
[   74.628471] i8042: [73817] fa <- i8042 (interrupt, 1, 12)
[   74.628578] i8042: [73817] d4 -> i8042 (command)
[   74.628768] i8042: [73817] e8 -> i8042 (parameter)
[   74.631656] i8042: [73820] fa <- i8042 (interrupt, 1, 12)
[   74.631761] i8042: [73820] d4 -> i8042 (command)
[   74.631951] i8042: [73820] 00 -> i8042 (parameter)
[   74.634850] i8042: [73823] fa <- i8042 (interrupt, 1, 12)
[   74.634957] i8042: [73823] d4 -> i8042 (command)
[   74.635147] i8042: [73823] e8 -> i8042 (parameter)
[   74.638024] i8042: [73826] fa <- i8042 (interrupt, 1, 12)
[   74.638130] i8042: [73826] d4 -> i8042 (command)
[   74.638320] i8042: [73826] 01 -> i8042 (parameter)
[   74.641237] i8042: [73829] fa <- i8042 (interrupt, 1, 12)
[   74.641346] i8042: [73829] d4 -> i8042 (command)
[   74.641594] i8042: [73830] e9 -> i8042 (parameter)
[   74.644444] i8042: [73833] fa <- i8042 (interrupt, 1, 12)
[   74.645992] i8042: [73834] 5e <- i8042 (interrupt, 1, 12)
[   74.647574] i8042: [73836] 0f <- i8042 (interrupt, 1, 12)
[   74.649161] i8042: [73837] 01 <- i8042 (interrupt, 1, 12)
[   74.649270] i8042: [73837] d4 -> i8042 (command)
[   74.649460] i8042: [73838] f8 -> i8042 (parameter)
[   74.652371] i8042: [73840] fa <- i8042 (interrupt, 1, 12)
[   74.652481] i8042: [73841] d4 -> i8042 (command)
[   74.652672] i8042: [73841] 00 -> i8042 (parameter)
[   74.655573] i8042: [73844] fa <- i8042 (interrupt, 1, 12)
[   74.655680] i8042: [73844] d4 -> i8042 (command)
[   74.655871] i8042: [73844] f8 -> i8042 (parameter)
[   74.658761] i8042: [73847] fa <- i8042 (interrupt, 1, 12)
[   74.658870] i8042: [73847] d4 -> i8042 (command)
[   74.659062] i8042: [73847] 07 -> i8042 (parameter)
[   74.661962] i8042: [73850] fa <- i8042 (interrupt, 1, 12)
[   74.662071] i8042: [73850] d4 -> i8042 (command)
[   74.662262] i8042: [73850] f8 -> i8042 (parameter)
[   74.665148] i8042: [73853] fa <- i8042 (interrupt, 1, 12)
[   74.665257] i8042: [73853] d4 -> i8042 (command)
[   74.665447] i8042: [73854] 00 -> i8042 (parameter)
[   74.668340] i8042: [73856] fa <- i8042 (interrupt, 1, 12)
[   74.668450] i8042: [73857] d4 -> i8042 (command)
[   74.668641] i8042: [73857] f8 -> i8042 (parameter)
[   74.671531] i8042: [73860] fa <- i8042 (interrupt, 1, 12)
[   74.671640] i8042: [73860] d4 -> i8042 (command)
[   74.671831] i8042: [73860] 01 -> i8042 (parameter)
[   74.674723] i8042: [73863] fa <- i8042 (interrupt, 1, 12)
[   74.674832] i8042: [73863] d4 -> i8042 (command)
[   74.675023] i8042: [73863] e6 -> i8042 (parameter)
[   74.677915] i8042: [73866] fa <- i8042 (interrupt, 1, 12)
[   74.678025] i8042: [73866] d4 -> i8042 (command)
[   74.678216] i8042: [73866] f3 -> i8042 (parameter)
[   74.681116] i8042: [73869] fa <- i8042 (interrupt, 1, 12)
[   74.681221] i8042: [73869] d4 -> i8042 (command)
[   74.681411] i8042: [73870] 64 -> i8042 (parameter)
[   74.684308] i8042: [73872] fa <- i8042 (interrupt, 1, 12)
[   74.684450] i8042: [73873] d4 -> i8042 (command)
[   74.684640] i8042: [73873] e8 -> i8042 (parameter)
[   74.687497] i8042: [73876] fa <- i8042 (interrupt, 1, 12)
[   74.687602] i8042: [73876] d4 -> i8042 (command)
[   74.687793] i8042: [73876] 03 -> i8042 (parameter)
[   74.690694] i8042: [73879] fa <- i8042 (interrupt, 1, 12)
[   74.690803] i8042: [73879] d4 -> i8042 (command)
[   74.690993] i8042: [73879] e6 -> i8042 (parameter)
[   74.693897] i8042: [73882] fa <- i8042 (interrupt, 1, 12)
[   74.694003] i8042: [73882] d4 -> i8042 (command)
[   74.694194] i8042: [73882] f4 -> i8042 (parameter)
[   74.697061] i8042: [73885] fa <- i8042 (interrupt, 1, 12)
[   74.707708] i8042: [73896] 08 <- i8042 (interrupt, 1, 12)
[   74.709280] i8042: [73897] 00 <- i8042 (interrupt, 1, 12)
[   74.710864] i8042: [73899] 00 <- i8042 (interrupt, 1, 12)
[   74.717503] i8042: [73906] 54 <- i8042 (interrupt, 1, 12)
[   74.719078] i8042: [73907] 01 <- i8042 (interrupt, 1, 12)
[   74.720602] i8042: [73909] 00 <- i8042 (interrupt, 1, 12)
[   74.720641] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.722251] i8042: [73910] 10 <- i8042 (interrupt, 1, 12)
[   74.723827] i8042: [73912] 00 <- i8042 (interrupt, 1, 12)
[   74.725414] i8042: [73913] 00 <- i8042 (interrupt, 1, 12)
[   74.726967] i8042: [73915] 54 <- i8042 (interrupt, 1, 12)
[   74.728479] i8042: [73917] 13 <- i8042 (interrupt, 1, 12)
[   74.730180] i8042: [73918] 3b <- i8042 (interrupt, 1, 12)
[   74.730219] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.731640] i8042: [73920] 31 <- i8042 (interrupt, 1, 12)
[   74.733323] i8042: [73921] 91 <- i8042 (interrupt, 1, 12)
[   74.734907] i8042: [73923] 10 <- i8042 (interrupt, 1, 12)
[   74.736506] i8042: [73925] 54 <- i8042 (interrupt, 1, 12)
[   74.738002] i8042: [73926] 23 <- i8042 (interrupt, 1, 12)
[   74.739599] i8042: [73928] 3b <- i8042 (interrupt, 1, 12)
[   74.739625] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.741171] i8042: [73929] 31 <- i8042 (interrupt, 1, 12)
[   74.742751] i8042: [73931] 41 <- i8042 (interrupt, 1, 12)
[   74.744338] i8042: [73932] 10 <- i8042 (interrupt, 1, 12)
[   74.745978] i8042: [73934] 54 <- i8042 (interrupt, 1, 12)
[   74.747566] i8042: [73936] 23 <- i8042 (interrupt, 1, 12)
[   74.749143] i8042: [73937] 3b <- i8042 (interrupt, 1, 12)
[   74.749183] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.750739] i8042: [73939] 31 <- i8042 (interrupt, 1, 12)
[   74.752314] i8042: [73940] 91 <- i8042 (interrupt, 1, 12)
[   74.753908] i8042: [73942] 10 <- i8042 (interrupt, 1, 12)
[   74.755479] i8042: [73944] 64 <- i8042 (interrupt, 1, 12)
[   74.757059] i8042: [73945] 23 <- i8042 (interrupt, 1, 12)
[   74.758620] i8042: [73947] 3b <- i8042 (interrupt, 1, 12)
[   74.758661] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   74.758678] psmouse serio1: issuing reconnect request
[   74.758767] i8042: [73947] d4 -> i8042 (command)
[   74.758956] i8042: [73947] ff -> i8042 (parameter)
[   74.761857] i8042: [73950] fa <- i8042 (interrupt, 1, 12)
[   74.862839] i8042: [74051] aa <- i8042 (interrupt, 1, 12)
[   74.864415] i8042: [74052] 00 <- i8042 (interrupt, 1, 12)
[   74.864538] i8042: [74053] d4 -> i8042 (command)
[   74.864729] i8042: [74053] f6 -> i8042 (parameter)
[   74.867543] i8042: [74056] fa <- i8042 (interrupt, 1, 12)
[   74.867646] i8042: [74056] d4 -> i8042 (command)
[   74.867836] i8042: [74056] f5 -> i8042 (parameter)
[   74.870826] i8042: [74059] fa <- i8042 (interrupt, 1, 12)
[   74.870911] i8042: [74059] d4 -> i8042 (command)
[   74.871101] i8042: [74059] e6 -> i8042 (parameter)
[   74.874022] i8042: [74062] fa <- i8042 (interrupt, 1, 12)
[   74.874107] i8042: [74062] d4 -> i8042 (command)
[   74.874297] i8042: [74062] e6 -> i8042 (parameter)
[   74.877221] i8042: [74065] fa <- i8042 (interrupt, 1, 12)
[   74.877329] i8042: [74065] d4 -> i8042 (command)
[   74.877520] i8042: [74066] e6 -> i8042 (parameter)
[   74.880406] i8042: [74068] fa <- i8042 (interrupt, 1, 12)
[   74.880517] i8042: [74069] d4 -> i8042 (command)
[   74.880707] i8042: [74069] e9 -> i8042 (parameter)
[   74.883541] i8042: [74072] fa <- i8042 (interrupt, 1, 12)
[   74.885153] i8042: [74073] 3c <- i8042 (interrupt, 1, 12)
[   74.886742] i8042: [74075] 03 <- i8042 (interrupt, 1, 12)
[   74.888334] i8042: [74076] 00 <- i8042 (interrupt, 1, 12)
[   74.888454] i8042: [74077] d4 -> i8042 (command)
[   74.888644] i8042: [74077] e6 -> i8042 (parameter)
[   74.891560] i8042: [74080] fa <- i8042 (interrupt, 1, 12)
[   74.891668] i8042: [74080] d4 -> i8042 (command)
[   74.891859] i8042: [74080] e8 -> i8042 (parameter)
[   74.894745] i8042: [74083] fa <- i8042 (interrupt, 1, 12)
[   74.894850] i8042: [74083] d4 -> i8042 (command)
[   74.895040] i8042: [74083] 00 -> i8042 (parameter)
[   74.897905] i8042: [74086] fa <- i8042 (interrupt, 1, 12)
[   74.898012] i8042: [74086] d4 -> i8042 (command)
[   74.898202] i8042: [74086] e8 -> i8042 (parameter)
[   74.901133] i8042: [74089] fa <- i8042 (interrupt, 1, 12)
[   74.901238] i8042: [74089] d4 -> i8042 (command)
[   74.901428] i8042: [74090] 00 -> i8042 (parameter)
[   74.904321] i8042: [74092] fa <- i8042 (interrupt, 1, 12)
[   74.904457] i8042: [74093] d4 -> i8042 (command)
[   74.904648] i8042: [74093] e8 -> i8042 (parameter)
[   74.907518] i8042: [74096] fa <- i8042 (interrupt, 1, 12)
[   74.907624] i8042: [74096] d4 -> i8042 (command)
[   74.907814] i8042: [74096] 00 -> i8042 (parameter)
[   74.910721] i8042: [74099] fa <- i8042 (interrupt, 1, 12)
[   74.910827] i8042: [74099] d4 -> i8042 (command)
[   74.911017] i8042: [74099] e8 -> i8042 (parameter)
[   74.913920] i8042: [74102] fa <- i8042 (interrupt, 1, 12)
[   74.914024] i8042: [74102] d4 -> i8042 (command)
[   74.914214] i8042: [74102] 01 -> i8042 (parameter)
[   74.917117] i8042: [74105] fa <- i8042 (interrupt, 1, 12)
[   74.917226] i8042: [74105] d4 -> i8042 (command)
[   74.917416] i8042: [74106] e9 -> i8042 (parameter)
[   74.920293] i8042: [74108] fa <- i8042 (interrupt, 1, 12)
[   74.921861] i8042: [74110] 5e <- i8042 (interrupt, 1, 12)
[   74.923473] i8042: [74112] 0f <- i8042 (interrupt, 1, 12)
[   74.925006] i8042: [74113] 01 <- i8042 (interrupt, 1, 12)
[   74.925092] i8042: [74113] d4 -> i8042 (command)
[   74.925282] i8042: [74113] f8 -> i8042 (parameter)
[   74.928237] i8042: [74116] fa <- i8042 (interrupt, 1, 12)
[   74.928323] i8042: [74116] d4 -> i8042 (command)
[   74.928569] i8042: [74116] 00 -> i8042 (parameter)
[   74.931462] i8042: [74120] fa <- i8042 (interrupt, 1, 12)
[   74.931544] i8042: [74120] d4 -> i8042 (command)
[   74.931734] i8042: [74120] f8 -> i8042 (parameter)
[   74.934524] i8042: [74123] fa <- i8042 (interrupt, 1, 12)
[   74.934647] i8042: [74123] d4 -> i8042 (command)
[   74.934838] i8042: [74123] 07 -> i8042 (parameter)
[   74.937718] i8042: [74126] fa <- i8042 (interrupt, 1, 12)
[   74.939912] i8042: [74128] d4 -> i8042 (command)
[   74.940172] i8042: [74128] f8 -> i8042 (parameter)
[   74.942926] i8042: [74131] fa <- i8042 (interrupt, 1, 12)
[   74.943502] i8042: [74132] d4 -> i8042 (command)
[   74.943700] i8042: [74132] 00 -> i8042 (parameter)
[   74.946700] i8042: [74135] fa <- i8042 (interrupt, 1, 12)
[   74.946783] i8042: [74135] d4 -> i8042 (command)
[   74.946972] i8042: [74135] f8 -> i8042 (parameter)
[   74.949934] i8042: [74138] fa <- i8042 (interrupt, 1, 12)
[   74.950044] i8042: [74138] d4 -> i8042 (command)
[   74.950235] i8042: [74138] 01 -> i8042 (parameter)
[   74.953117] i8042: [74141] fa <- i8042 (interrupt, 1, 12)
[   74.953227] i8042: [74141] d4 -> i8042 (command)
[   74.953475] i8042: [74142] e6 -> i8042 (parameter)
[   74.956308] i8042: [74144] fa <- i8042 (interrupt, 1, 12)
[   74.956452] i8042: [74145] d4 -> i8042 (command)
[   74.956643] i8042: [74145] f3 -> i8042 (parameter)
[   74.959399] i8042: [74148] fa <- i8042 (interrupt, 1, 12)
[   74.959484] i8042: [74148] d4 -> i8042 (command)
[   74.959674] i8042: [74148] 64 -> i8042 (parameter)
[   74.962697] i8042: [74151] fa <- i8042 (interrupt, 1, 12)
[   74.962806] i8042: [74151] d4 -> i8042 (command)
[   74.962995] i8042: [74151] e8 -> i8042 (parameter)
[   74.965899] i8042: [74154] fa <- i8042 (interrupt, 1, 12)
[   74.966005] i8042: [74154] d4 -> i8042 (command)
[   74.966195] i8042: [74154] 03 -> i8042 (parameter)
[   74.969083] i8042: [74157] fa <- i8042 (interrupt, 1, 12)
[   74.969192] i8042: [74157] d4 -> i8042 (command)
[   74.969383] i8042: [74157] e6 -> i8042 (parameter)
[   74.972268] i8042: [74160] fa <- i8042 (interrupt, 1, 12)
[   74.972377] i8042: [74160] d4 -> i8042 (command)
[   74.972568] i8042: [74161] f4 -> i8042 (parameter)
[   74.975412] i8042: [74164] fa <- i8042 (interrupt, 1, 12)
[   74.996203] i8042: [74184] 08 <- i8042 (interrupt, 1, 12)
[   74.997775] i8042: [74186] 00 <- i8042 (interrupt, 1, 12)
[   74.999362] i8042: [74187] 00 <- i8042 (interrupt, 1, 12)
[   75.006001] i8042: [74194] 54 <- i8042 (interrupt, 1, 12)
[   75.007587] i8042: [74196] 01 <- i8042 (interrupt, 1, 12)
[   75.009165] i8042: [74197] 00 <- i8042 (interrupt, 1, 12)
[   75.009205] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   75.010722] i8042: [74199] 10 <- i8042 (interrupt, 1, 12)
[   75.012332] i8042: [74200] 00 <- i8042 (interrupt, 1, 12)
[   75.013907] i8042: [74202] 00 <- i8042 (interrupt, 1, 12)
[   75.015507] i8042: [74204] 54 <- i8042 (interrupt, 1, 12)
[   75.017080] i8042: [74205] 16 <- i8042 (interrupt, 1, 12)
[   75.018663] i8042: [74207] 95 <- i8042 (interrupt, 1, 12)
[   75.018703] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   75.020247] i8042: [74208] 31 <- i8042 (interrupt, 1, 12)
[   75.021842] i8042: [74210] 31 <- i8042 (interrupt, 1, 12)
[   75.023413] i8042: [74211] 97 <- i8042 (interrupt, 1, 12)
[   75.024994] i8042: [74213] 44 <- i8042 (interrupt, 1, 12)
[   75.026570] i8042: [74215] 16 <- i8042 (interrupt, 1, 12)
[   75.028166] i8042: [74216] 95 <- i8042 (interrupt, 1, 12)
[   75.028206] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   75.029748] i8042: [74218] 31 <- i8042 (interrupt, 1, 12)
[   75.031331] i8042: [74219] 71 <- i8042 (interrupt, 1, 12)
[   75.032913] i8042: [74221] 97 <- i8042 (interrupt, 1, 12)
[   75.034494] i8042: [74223] 44 <- i8042 (interrupt, 1, 12)
[   75.036078] i8042: [74224] 16 <- i8042 (interrupt, 1, 12)
[   75.037629] i8042: [74226] 94 <- i8042 (interrupt, 1, 12)
[   75.037669] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   75.039244] i8042: [74227] 31 <- i8042 (interrupt, 1, 12)
[   75.040828] i8042: [74229] 91 <- i8042 (interrupt, 1, 12)
[   75.042405] i8042: [74230] 4e <- i8042 (interrupt, 1, 12)
[   75.043993] i8042: [74232] 54 <- i8042 (interrupt, 1, 12)
[   75.045573] i8042: [74234] 16 <- i8042 (interrupt, 1, 12)
[   75.047151] i8042: [74235] 91 <- i8042 (interrupt, 1, 12)
[   75.047191] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   75.047208] psmouse serio1: issuing reconnect request
[   75.047294] i8042: [74235] d4 -> i8042 (command)
[   75.047484] i8042: [74236] ff -> i8042 (parameter)
[   75.050370] i8042: [74238] fa <- i8042 (interrupt, 1, 12)
[   75.151377] i8042: [74339] aa <- i8042 (interrupt, 1, 12)
[   75.152928] i8042: [74341] 00 <- i8042 (interrupt, 1, 12)
[   75.153038] i8042: [74341] d4 -> i8042 (command)
[   75.153227] i8042: [74341] f6 -> i8042 (parameter)
[   75.156153] i8042: [74344] fa <- i8042 (interrupt, 1, 12)
[   75.156277] i8042: [74344] d4 -> i8042 (command)
[   75.156468] i8042: [74345] f5 -> i8042 (parameter)
[   75.159344] i8042: [74347] fa <- i8042 (interrupt, 1, 12)
[   75.159453] i8042: [74348] d4 -> i8042 (command)
[   75.159644] i8042: [74348] e6 -> i8042 (parameter)
[   75.162524] i8042: [74351] fa <- i8042 (interrupt, 1, 12)
[   75.162633] i8042: [74351] d4 -> i8042 (command)
[   75.162879] i8042: [74351] e6 -> i8042 (parameter)
[   75.165688] i8042: [74354] fa <- i8042 (interrupt, 1, 12)
[   75.165798] i8042: [74354] d4 -> i8042 (command)
[   75.165989] i8042: [74354] e6 -> i8042 (parameter)
[   75.168916] i8042: [74357] fa <- i8042 (interrupt, 1, 12)
[   75.169026] i8042: [74357] d4 -> i8042 (command)
[   75.169216] i8042: [74357] e9 -> i8042 (parameter)
[   75.172102] i8042: [74360] fa <- i8042 (interrupt, 1, 12)
[   75.173643] i8042: [74362] 3c <- i8042 (interrupt, 1, 12)
[   75.175254] i8042: [74363] 03 <- i8042 (interrupt, 1, 12)
[   75.176809] i8042: [74365] 00 <- i8042 (interrupt, 1, 12)
[   75.176914] i8042: [74365] d4 -> i8042 (command)
[   75.177161] i8042: [74365] e6 -> i8042 (parameter)
[   75.180048] i8042: [74368] fa <- i8042 (interrupt, 1, 12)
[   75.180155] i8042: [74368] d4 -> i8042 (command)
[   75.180345] i8042: [74368] e8 -> i8042 (parameter)
[   75.183239] i8042: [74371] fa <- i8042 (interrupt, 1, 12)
[   75.183346] i8042: [74371] d4 -> i8042 (command)
[   75.183536] i8042: [74372] 00 -> i8042 (parameter)
[   75.186437] i8042: [74375] fa <- i8042 (interrupt, 1, 12)
[   75.186545] i8042: [74375] d4 -> i8042 (command)
[   75.186791] i8042: [74375] e8 -> i8042 (parameter)
[   75.189597] i8042: [74378] fa <- i8042 (interrupt, 1, 12)
[   75.189703] i8042: [74378] d4 -> i8042 (command)
[   75.189893] i8042: [74378] 00 -> i8042 (parameter)
[   75.192821] i8042: [74381] fa <- i8042 (interrupt, 1, 12)
[   75.192929] i8042: [74381] d4 -> i8042 (command)
[   75.193120] i8042: [74381] e8 -> i8042 (parameter)
[   75.196025] i8042: [74384] fa <- i8042 (interrupt, 1, 12)
[   75.196132] i8042: [74384] d4 -> i8042 (command)
[   75.196322] i8042: [74384] 00 -> i8042 (parameter)
[   75.199177] i8042: [74387] fa <- i8042 (interrupt, 1, 12)
[   75.199282] i8042: [74387] d4 -> i8042 (command)
[   75.199471] i8042: [74388] e8 -> i8042 (parameter)
[   75.202412] i8042: [74390] fa <- i8042 (interrupt, 1, 12)
[   75.202515] i8042: [74391] d4 -> i8042 (command)
[   75.202704] i8042: [74391] 01 -> i8042 (parameter)
[   75.205567] i8042: [74394] fa <- i8042 (interrupt, 1, 12)
[   75.205676] i8042: [74394] d4 -> i8042 (command)
[   75.205866] i8042: [74394] e9 -> i8042 (parameter)
[   75.208788] i8042: [74397] fa <- i8042 (interrupt, 1, 12)
[   75.210369] i8042: [74398] 5e <- i8042 (interrupt, 1, 12)
[   75.211944] i8042: [74400] 0f <- i8042 (interrupt, 1, 12)
[   75.213533] i8042: [74402] 01 <- i8042 (interrupt, 1, 12)
[   75.213640] i8042: [74402] d4 -> i8042 (command)
[   75.213829] i8042: [74402] f8 -> i8042 (parameter)
[   75.216702] i8042: [74405] fa <- i8042 (interrupt, 1, 12)
[   75.216812] i8042: [74405] d4 -> i8042 (command)
[   75.217058] i8042: [74405] 00 -> i8042 (parameter)
[   75.219890] i8042: [74408] fa <- i8042 (interrupt, 1, 12)
[   75.220001] i8042: [74408] d4 -> i8042 (command)
[   75.220191] i8042: [74408] f8 -> i8042 (parameter)
[   75.223121] i8042: [74411] fa <- i8042 (interrupt, 1, 12)
[   75.223231] i8042: [74411] d4 -> i8042 (command)
[   75.223421] i8042: [74411] 07 -> i8042 (parameter)
[   75.226320] i8042: [74414] fa <- i8042 (interrupt, 1, 12)
[   75.226458] i8042: [74414] d4 -> i8042 (command)
[   75.226649] i8042: [74415] f8 -> i8042 (parameter)
[   75.229476] i8042: [74418] fa <- i8042 (interrupt, 1, 12)
[   75.229582] i8042: [74418] d4 -> i8042 (command)
[   75.229771] i8042: [74418] 00 -> i8042 (parameter)
[   75.232671] i8042: [74421] fa <- i8042 (interrupt, 1, 12)
[   75.232781] i8042: [74421] d4 -> i8042 (command)
[   75.232971] i8042: [74421] f8 -> i8042 (parameter)
[   75.235860] i8042: [74424] fa <- i8042 (interrupt, 1, 12)
[   75.235968] i8042: [74424] d4 -> i8042 (command)
[   75.236158] i8042: [74424] 01 -> i8042 (parameter)
[   75.239019] i8042: [74427] fa <- i8042 (interrupt, 1, 12)
[   75.239102] i8042: [74427] d4 -> i8042 (command)
[   75.239293] i8042: [74427] e6 -> i8042 (parameter)
[   75.242224] i8042: [74430] fa <- i8042 (interrupt, 1, 12)
[   75.242279] i8042: [74430] d4 -> i8042 (command)
[   75.242468] i8042: [74431] f3 -> i8042 (parameter)
[   75.242816] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   75.243067] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   75.245397] i8042: [74434] fa <- i8042 (interrupt, 1, 12)
[   75.245464] i8042: [74434] d4 -> i8042 (command)
[   75.245654] i8042: [74434] 64 -> i8042 (parameter)
[   75.248628] i8042: [74437] fa <- i8042 (interrupt, 1, 12)
[   75.248738] i8042: [74437] d4 -> i8042 (command)
[   75.248928] i8042: [74437] e8 -> i8042 (parameter)
[   75.251862] i8042: [74440] fa <- i8042 (interrupt, 1, 12)
[   75.251968] i8042: [74440] d4 -> i8042 (command)
[   75.252214] i8042: [74440] 03 -> i8042 (parameter)
[   75.255046] i8042: [74443] fa <- i8042 (interrupt, 1, 12)
[   75.255157] i8042: [74443] d4 -> i8042 (command)
[   75.255347] i8042: [74443] e6 -> i8042 (parameter)
[   75.258245] i8042: [74446] fa <- i8042 (interrupt, 1, 12)
[   75.258355] i8042: [74446] d4 -> i8042 (command)
[   75.258546] i8042: [74447] f4 -> i8042 (parameter)
[   75.261450] i8042: [74450] fa <- i8042 (interrupt, 1, 12)
Dmitry Torokhov March 5, 2024, 11:17 p.m. UTC | #9
On Tue, Mar 05, 2024 at 03:48:29PM -0600, Jonathan Denose wrote:
> Thanks for this.
> 
> I tried the patch and unfortunately the issue still occurs. Attached
> are the dmesg logs.

So this is without going through suspend/resume, but straight up boot?
Could you please post the whole dmesg, not only data from 8042?

Thanks.
Jonathan Denose March 6, 2024, 4:43 p.m. UTC | #10
Sorry about that, I didn't realize logs were getting cut off.

I think what's attached should have everything. This is through boot
and with one suspend/resume cycle wherein the touchpad fails after
resume.

On Tue, Mar 5, 2024 at 5:17 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> On Tue, Mar 05, 2024 at 03:48:29PM -0600, Jonathan Denose wrote:
> > Thanks for this.
> >
> > I tried the patch and unfortunately the issue still occurs. Attached
> > are the dmesg logs.
>
> So this is without going through suspend/resume, but straight up boot?
> Could you please post the whole dmesg, not only data from 8042?
>
> Thanks.
>
> --
> Dmitry
[    0.000000] microcode: microcode updated early to revision 0x48, date = 2021-11-16
[    0.000000] Linux version 5.15.148-21834-g3215cdfa7675-dirty (cros-kernel@chromium.org) (Chromium OS 18.0_pre510928-r70 clang version 18.0.0 (/mnt/host/source/src/third_party/llvm-project 82e851a407c52d65ce65e7aa58453127e67d42a0), LLD 18.0.0) #1 SMP PREEMPT Tue, 20 Feb 2024 14:02:38 +0000
[    0.000000] Kernel is locked down from Kernel configuration; see man kernel_lockdown.7
[    0.000000] Command line: BOOT_IMAGE=/syslinux/vmlinuz.A init=/sbin/init rootwait ro noresume loglevel=7 noinitrd console= kvm-intel.vmentry_l1d_flush=always log_buf_len=4M i8042.debug=1 i915.modeset=1 cros_efi cros_debug root=PARTUUID=0900B526-550D-2046-AB39-21EFAD70A9F8
[    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 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[3]:  576, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  640, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
[    0.000000] ------------[ cut here ]------------
[    0.000000] unexpected static_call insn opcode 0xf at kvm_vcpu_reload_apic_access_page+0x15/0x32
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/static_call.c:88 __static_call_validate+0x8f/0x93
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.15.148-21834-g3215cdfa7675-dirty #1 110f80ebd7f94e6a6ffa760eff1d745a5f7fea91
[    0.000000] RIP: 0010:__static_call_validate+0x8f/0x93
[    0.000000] Code: 3d dd d1 0e 02 00 74 09 5b 41 5e 5d e9 31 65 6c 00 c6 05 cb d1 0e 02 01 48 c7 c7 ab a8 ca ab 44 89 f6 48 89 da e8 74 da aa ff <0f> 0b eb da 0f 1f 44 00 00 55 48 89 e5 53 48 83 ec 10 65 48 8b 04
[    0.000000] RSP: 0000:ffffffffac403e30 EFLAGS: 00010046 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: ffffffffa9fc2c40 RCX: 0000000000000000
[    0.000000] RDX: ffffffffac403be8 RSI: 00000000ffffdfff RDI: 0000000000000001
[    0.000000] RBP: ffffffffac403e40 R08: 0000000000000000 R09: ffffffffac403be0
[    0.000000] R10: 00000000ffffdfff R11: ffffffffac48f7f0 R12: 0000000000000000
[    0.000000] R13: 0000000000000001 R14: 000000000000000f R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffffac8cf000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff888000060000 CR3: 0000000112b5c000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  <TASK>
[    0.000000]  ? __warn+0xa3/0x131
[    0.000000]  ? __static_call_validate+0x8f/0x93
[    0.000000]  ? report_bug+0x97/0xfa
[    0.000000]  ? search_bpf_extables+0x5e/0x68
[    0.000000]  ? early_fixup_exception+0x57/0x9f
[    0.000000]  ? kvm_vcpu_reload_apic_access_page+0x15/0x32
[    0.000000]  ? early_idt_handler_common+0x30/0x3b
[    0.000000]  ? kvm_vcpu_reload_apic_access_page+0x15/0x32
[    0.000000]  ? __static_call_validate+0x8f/0x93
[    0.000000]  ? kvm_vcpu_reload_apic_access_page+0x15/0x32
[    0.000000]  ? arch_static_call_transform+0x64/0x91
[    0.000000]  ? __static_call_init+0x205/0x23d
[    0.000000]  ? static_call_init+0x39/0x7a
[    0.000000]  ? setup_arch+0x3d/0x524
[    0.000000]  ? start_kernel+0x6f/0x3ef
[    0.000000]  ? secondary_startup_64_no_verify+0xb1/0xbb
[    0.000000]  </TASK>
[    0.000000] ---[ end trace fadcf3579ddd4606 ]---
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008c000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000010000000-0x0000000012150fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000012151000-0x00000000757c5fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000757c6000-0x00000000763a2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000763a3000-0x0000000076492fff] type 20
[    0.000000] BIOS-e820: [mem 0x0000000076493000-0x00000000792cdfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000792ce000-0x00000000792e1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000792e2000-0x00000000792e2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000792e3000-0x00000000792f0fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000792f1000-0x00000000792f1fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000792f2000-0x000000007932dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007932e000-0x000000007936dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007936e000-0x000000007a678fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a679000-0x000000007a679fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007a67a000-0x000000007a6a3fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a6a4000-0x000000007a6fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a700000-0x000000007a71ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a720000-0x000000007affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007b000000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000017fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.50 by Phoenix Technologies Ltd.
[    0.000000] efi: TPMFinalLog=0x79326000 SMBIOS=0x76199000 SMBIOS 3.0=0x76196000 ACPI=0x7936d000 ACPI 2.0=0x7936d014 ESRT=0x75a26000 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: LENOVO 81AF/LNVNB161216, BIOS 6HCN15WW 05/27/2017
[    0.000000] tsc: Detected 1094.400 MHz processor
[    0.002175] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002187] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002222] last_pfn = 0x180000 max_arch_pfn = 0x400000000
[    0.002284] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002622] last_pfn = 0x7b000 max_arch_pfn = 0x400000000
[    0.011476] esrt: Reserving ESRT space from 0x0000000075a26000 to 0x0000000075a26038.
[    0.011600] Using GB pages for direct mapping
[    0.021592] printk: log_buf_len: 4194304 bytes
[    0.021602] printk: early log buf free: 255856(97%)
[    0.021608] Secure boot disabled
[    0.021615] ACPI: Early table checksum verification disabled
[    0.021625] ACPI: RSDP 0x000000007936D014 000024 (v02 LENOVO)
[    0.021641] ACPI: XSDT 0x000000007934D188 0000FC (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021659] ACPI: FACP 0x0000000079365000 00010C (v05 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021674] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/16 (20210730/tbfadt-564)
[    0.021686] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 16, using default 32 (20210730/tbfadt-669)
[    0.021697] ACPI: DSDT 0x0000000079355000 0080C2 (v02 LENOVO EDK2     00000003 BRXT 0100000D)
[    0.021710] ACPI: FACS 0x0000000079317000 000040
[    0.021719] ACPI: SSDT 0x000000007936B000 0003CC (v02 LENOVO Tpm2Tabl 00001000 INTL 20150818)
[    0.021730] ACPI: TPM2 0x000000007936A000 000034 (v03 LENOVO CB-01    00000000 PTEC 00000002)
[    0.021741] ACPI: UEFI 0x000000007931B000 000042 (v01 LENOVO CB-01    00000002 PTEC 00000002)
[    0.021751] ACPI: BDAT 0x0000000079369000 000030 (v02 LENOVO CB-01    00000000 PTEC 00000002)
[    0.021762] ACPI: DBG2 0x0000000079368000 000072 (v00 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021772] ACPI: DBGP 0x0000000079367000 000034 (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021783] ACPI: HPET 0x0000000079364000 000038 (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021793] ACPI: LPIT 0x0000000079363000 00005C (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021803] ACPI: APIC 0x0000000079362000 000084 (v03 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021814] ACPI: MCFG 0x0000000079361000 00003C (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021824] ACPI: NPKT 0x0000000079360000 000065 (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021835] ACPI: PRAM 0x000000007935F000 000030 (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021845] ACPI: WSMT 0x000000007935E000 000028 (v01 LENOVO CB-01    00000003 PTEC 00000002)
[    0.021856] ACPI: SSDT 0x0000000079353000 001301 (v02 LENOVO DptfTab  00000003 BRXT 0100000D)
[    0.021866] ACPI: SSDT 0x0000000079352000 0002E9 (v01 LENOVO Platform 00001000 INTL 20150818)
[    0.021877] ACPI: BATB 0x0000000079351000 00004A (v02 LENOVO CB-01    00000000 PTEC 00000002)
[    0.021888] ACPI: SSDT 0x0000000079350000 00039D (v02 LENOVO Cpu0Ist  00003000 INTL 20150818)
[    0.021899] ACPI: SSDT 0x000000007934F000 00072B (v02 LENOVO CpuSsdt  00003000 INTL 20150818)
[    0.021909] ACPI: SSDT 0x000000007934E000 00032D (v02 LENOVO Cpu0Tst  00003000 INTL 20150818)
[    0.021920] ACPI: SSDT 0x000000007936C000 00017C (v02 LENOVO ApTst    00003000 INTL 20150818)
[    0.021931] ACPI: MSDM 0x000000007934C000 000055 (v03 LENOVO CB-01    00000000 PTEC 00000002)
[    0.021941] ACPI: SSDT 0x0000000079349000 002760 (v02 LENOVO SaSsdt   00003000 INTL 20150818)
[    0.021952] ACPI: FPDT 0x0000000079348000 000044 (v01 LENOVO CB-01    00000002 PTEC 00000002)
[    0.021963] ACPI: BGRT 0x0000000079347000 000038 (v01 LENOVO CB-01    00000002 PTEC 00000002)
[    0.021973] ACPI: WDAT 0x0000000079366000 000104 (v01 LENOVO CB-01    00000000 PTEC 00000002)
[    0.021983] ACPI: UEFI 0x0000000079312000 00017A (v01 LENOVO CB-01    00000001 PTEC 00000002)
[    0.021993] ACPI: Reserving FACP table memory at [mem 0x79365000-0x7936510b]
[    0.022000] ACPI: Reserving DSDT table memory at [mem 0x79355000-0x7935d0c1]
[    0.022005] ACPI: Reserving FACS table memory at [mem 0x79317000-0x7931703f]
[    0.022010] ACPI: Reserving SSDT table memory at [mem 0x7936b000-0x7936b3cb]
[    0.022014] ACPI: Reserving TPM2 table memory at [mem 0x7936a000-0x7936a033]
[    0.022019] ACPI: Reserving UEFI table memory at [mem 0x7931b000-0x7931b041]
[    0.022023] ACPI: Reserving BDAT table memory at [mem 0x79369000-0x7936902f]
[    0.022028] ACPI: Reserving DBG2 table memory at [mem 0x79368000-0x79368071]
[    0.022033] ACPI: Reserving DBGP table memory at [mem 0x79367000-0x79367033]
[    0.022037] ACPI: Reserving HPET table memory at [mem 0x79364000-0x79364037]
[    0.022042] ACPI: Reserving LPIT table memory at [mem 0x79363000-0x7936305b]
[    0.022046] ACPI: Reserving APIC table memory at [mem 0x79362000-0x79362083]
[    0.022051] ACPI: Reserving MCFG table memory at [mem 0x79361000-0x7936103b]
[    0.022056] ACPI: Reserving NPKT table memory at [mem 0x79360000-0x79360064]
[    0.022060] ACPI: Reserving PRAM table memory at [mem 0x7935f000-0x7935f02f]
[    0.022065] ACPI: Reserving WSMT table memory at [mem 0x7935e000-0x7935e027]
[    0.022069] ACPI: Reserving SSDT table memory at [mem 0x79353000-0x79354300]
[    0.022074] ACPI: Reserving SSDT table memory at [mem 0x79352000-0x793522e8]
[    0.022079] ACPI: Reserving BATB table memory at [mem 0x79351000-0x79351049]
[    0.022084] ACPI: Reserving SSDT table memory at [mem 0x79350000-0x7935039c]
[    0.022088] ACPI: Reserving SSDT table memory at [mem 0x7934f000-0x7934f72a]
[    0.022093] ACPI: Reserving SSDT table memory at [mem 0x7934e000-0x7934e32c]
[    0.022097] ACPI: Reserving SSDT table memory at [mem 0x7936c000-0x7936c17b]
[    0.022102] ACPI: Reserving MSDM table memory at [mem 0x7934c000-0x7934c054]
[    0.022107] ACPI: Reserving SSDT table memory at [mem 0x79349000-0x7934b75f]
[    0.022112] ACPI: Reserving FPDT table memory at [mem 0x79348000-0x79348043]
[    0.022116] ACPI: Reserving BGRT table memory at [mem 0x79347000-0x79347037]
[    0.022121] ACPI: Reserving WDAT table memory at [mem 0x79366000-0x79366103]
[    0.022126] ACPI: Reserving UEFI table memory at [mem 0x79312000-0x79312179]
[    0.022209] Zone ranges:
[    0.022219]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.022227]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.022234]   Normal   [mem 0x0000000100000000-0x000000017fffffff]
[    0.022240] Movable zone start for each node
[    0.022243] Early memory node ranges
[    0.022246]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.022252]   node   0: [mem 0x0000000000059000-0x000000000008bfff]
[    0.022256]   node   0: [mem 0x0000000000100000-0x000000000fffffff]
[    0.022261]   node   0: [mem 0x0000000012151000-0x00000000757c5fff]
[    0.022265]   node   0: [mem 0x000000007936e000-0x000000007a678fff]
[    0.022270]   node   0: [mem 0x000000007a6a4000-0x000000007a6fffff]
[    0.022274]   node   0: [mem 0x000000007a720000-0x000000007affffff]
[    0.022278]   node   0: [mem 0x0000000100000000-0x000000017fffffff]
[    0.022284] Initmem setup node 0 [mem 0x0000000000001000-0x000000017fffffff]
[    0.022300] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.022305] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.022417] On node 0, zone DMA: 116 pages in unavailable ranges
[    0.035303] On node 0, zone DMA32: 8529 pages in unavailable ranges
[    0.035816] On node 0, zone DMA32: 15272 pages in unavailable ranges
[    0.035824] On node 0, zone DMA32: 43 pages in unavailable ranges
[    0.035891] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.050579] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.050616] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
[    0.050926] ACPI: PM-Timer IO Port: 0x408
[    0.050949] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[    0.050958] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[    0.050963] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[    0.050967] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[    0.051013] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119
[    0.051022] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.051030] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.051044] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.051049] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.051065] TSC deadline timer available
[    0.051070] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.051155] [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.051166] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.064175] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.065027] percpu: Embedded 54 pages/cpu s180504 r8192 d32488 u524288
[    0.065053] pcpu-alloc: s180504 r8192 d32488 u524288 alloc=1*2097152
[    0.065062] pcpu-alloc: [0] 0 1 2 3 
[    0.065133] Built 1 zonelists, mobility grouping on.  Total pages: 988257
[    0.065148] Kernel command line: BOOT_IMAGE=/syslinux/vmlinuz.A init=/sbin/init rootwait ro noresume loglevel=7 noinitrd console= kvm-intel.vmentry_l1d_flush=always log_buf_len=4M i8042.debug=1 i915.modeset=1 cros_efi cros_debug root=PARTUUID=0900B526-550D-2046-AB39-21EFAD70A9F8
[    0.065676] Unknown kernel command line parameters "noresume cros_efi cros_debug BOOT_IMAGE=/syslinux/vmlinuz.A", will be passed to user space.
[    0.066822] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.067409] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.068099] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.134228] Memory: 3728572K/4016408K available (14348K kernel code, 2365K rwdata, 20960K rodata, 1792K init, 1440K bss, 287576K reserved, 0K cma-reserved)
[    0.135587] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.135734] ftrace: allocating 46222 entries in 181 pages
[    0.181331] ftrace: allocated 181 pages with 5 groups
[    0.181760] rcu: Preemptible hierarchical RCU implementation.
[    0.181773] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.181778] 	Trampoline variant of Tasks RCU enabled.
[    0.181781] 	Rude variant of Tasks RCU enabled.
[    0.181784] 	Tracing variant of Tasks RCU enabled.
[    0.181788] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.181792] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.193550] NR_IRQS: 4352, nr_irqs: 1024, preallocated irqs: 16
[    0.193910] rcu: 	Note: kernel parameter 'rcu_nocbs=', 'nohz_full', or 'isolcpus=' contains nonexistent CPUs.
[    0.193917] rcu: 	Offload RCU callbacks from CPUs: 0-3.
[    0.194186] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.194238] random: crng init done
[    0.194316] ACPI: Core revision 20210730
[    0.194840] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
[    0.194949] APIC: Switch to symmetric I/O mode setup
[    0.199539] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203897] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
[    0.203917] Calibrating delay loop (skipped), value calculated using timer frequency.. 2188.80 BogoMIPS (lpj=1094400)
[    0.203972] x86/cpu: VMX (outside TXT) disabled by BIOS
[    0.203995] CPU0: Thermal monitoring enabled (TM1)
[    0.204149] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.204154] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.204170] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.204181] Spectre V2 : Mitigation: Retpolines
[    0.204185] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.204188] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.204191] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.204200] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.235606] Freeing SMP alternatives memory: 36K
[    0.235628] pid_max: default: 32768 minimum: 301
[    0.243979] LSM: Security Framework initializing
[    0.244033] landlock: Up and running.
[    0.244037] Yama: becoming mindful.
[    0.244054] LoadPin: ready to pin (currently enforcing)
[    0.244069] Chromium OS LSM: enabled
[    0.244072] SELinux:  Initializing.
[    0.244185] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.244212] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.245193] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 2048
[    0.245228] smpboot: CPU0: Intel(R) Celeron(R) CPU N3450 @ 1.10GHz (family: 0x6, model: 0x5c, stepping: 0x9)
[    0.245909] Performance Events: PEBS fmt3+, Goldmont events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.245909] ... version:                4
[    0.245909] ... bit width:              48
[    0.245909] ... generic registers:      4
[    0.245909] ... value mask:             0000ffffffffffff
[    0.245909] ... max period:             00007fffffffffff
[    0.245909] ... fixed-purpose events:   3
[    0.245909] ... event mask:             000000070000000f
[    0.245909] signal: max sigframe size: 2032
[    0.245980] rcu: Hierarchical SRCU implementation.
[    0.246858] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.247103] smp: Bringing up secondary CPUs ...
[    0.247569] x86: Booting SMP configuration:
[    0.247576] .... node  #0, CPUs:      #1 #2 #3
[    0.251360] smp: Brought up 1 node, 4 CPUs
[    0.251360] smpboot: Max logical packages: 1
[    0.251360] smpboot: Total of 4 processors activated (8755.20 BogoMIPS)
[    0.252453] devtmpfs: initialized
[    0.253643] ACPI: PM: Registering ACPI NVS region [mem 0x792ce000-0x792e1fff] (81920 bytes)
[    0.253656] ACPI: PM: Registering ACPI NVS region [mem 0x792e3000-0x792f0fff] (57344 bytes)
[    0.253664] ACPI: PM: Registering ACPI NVS region [mem 0x792f2000-0x7932dfff] (245760 bytes)
[    0.253680] ACPI: PM: Registering ACPI NVS region [mem 0x7a679000-0x7a679fff] (4096 bytes)
[    0.253816] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.253849] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.254006] pinctrl core: initialized pinctrl subsystem
[    0.254271] PM: RTC time: 16:37:30, date: 2024-03-06
[    0.254679] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.255179] audit: initializing netlink subsys (disabled)
[    0.255343] audit: type=2000 audit(1709743050.057:1): state=initialized audit_enabled=0 res=1
[    0.255576] thermal_sys: Registered thermal governor 'bang_bang'
[    0.255582] thermal_sys: Registered thermal governor 'step_wise'
[    0.255586] thermal_sys: Registered thermal governor 'user_space'
[    0.255631] cpuidle: using governor ladder
[    0.255652] cpuidle: using governor menu
[    0.256033] ACPI: bus type PCI registered
[    0.256033] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.256149] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.256196] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[    0.256239] PCI: Using configuration type 1 for base access
[    0.264033] cryptd: max_cpu_qlen set to 1000
[    0.266107] ACPI: Added _OSI(Module Device)
[    0.266119] ACPI: Added _OSI(Processor Device)
[    0.266123] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.266127] ACPI: Added _OSI(Processor Aggregator Device)
[    0.266132] ACPI: Added _OSI(Linux-Dell-Video)
[    0.266137] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.266142] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.282751] ACPI: 9 ACPI AML tables successfully acquired and loaded
[    0.287513] ACPI: Dynamic OEM Table Load:
[    0.287543] ACPI: SSDT 0xFFFFA17280A0D800 000102 (v02 PmRef  Cpu0Cst  00003001 INTL 20150818)
[    0.289343] ACPI: Dynamic OEM Table Load:
[    0.289366] ACPI: SSDT 0xFFFFA17280A0D400 00015F (v02 PmRef  ApIst    00003000 INTL 20150818)
[    0.290698] ACPI: Dynamic OEM Table Load:
[    0.290719] ACPI: SSDT 0xFFFFA172808DDB40 00008D (v02 PmRef  ApCst    00003000 INTL 20150818)
[    0.293764] ACPI: EC: EC started
[    0.293771] ACPI: EC: interrupt blocked
[    0.398044] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.398055] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
[    0.398062] ACPI: Interpreter enabled
[    0.398118] ACPI: PM: (supports S0 S3 S5)
[    0.398124] ACPI: Using IOAPIC for interrupt routing
[    0.398213] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.398995] ACPI: Enabled 9 GPEs in block 00 to 7F
[    0.442648] ACPI: PM: Power Resource [FN00]
[    0.443948] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.443970] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.445619] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[    0.445631] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.446738] PCI host bridge to bus 0000:00
[    0.446747] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.446755] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.446762] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.446768] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.446774] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.446781] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.446787] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.446793] pci_bus 0000:00: root bus resource [mem 0x7c000001-0x7fffffff window]
[    0.446800] pci_bus 0000:00: root bus resource [mem 0x7b800001-0x7bffffff window]
[    0.446806] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    0.446812] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window]
[    0.446819] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.447610] pci 0000:00:00.0: [8086:5af0] type 00 class 0x060000
[    0.448665] pci 0000:00:00.1: [8086:5a8c] type 00 class 0x118000
[    0.448711] pci 0000:00:00.1: reg 0x10: [mem 0x91310000-0x91317fff 64bit]
[    0.449796] pci 0000:00:02.0: [8086:5a85] type 00 class 0x030000
[    0.449824] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x90ffffff 64bit]
[    0.449842] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref]
[    0.449856] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x103f]
[    0.449897] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.451129] pci 0000:00:0e.0: [8086:5a98] type 00 class 0x040300
[    0.451162] pci 0000:00:0e.0: reg 0x10: [mem 0x91318000-0x9131bfff 64bit]
[    0.451222] pci 0000:00:0e.0: reg 0x20: [mem 0x91000000-0x910fffff 64bit]
[    0.451310] pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
[    0.452276] pci 0000:00:0f.0: [8086:5a9a] type 00 class 0x078000
[    0.452324] pci 0000:00:0f.0: reg 0x10: [mem 0x9131e000-0x9131efff 64bit]
[    0.452482] pci 0000:00:0f.0: PME# supported from D3hot
[    0.453779] pci 0000:00:12.0: [8086:5ae3] type 00 class 0x010601
[    0.453808] pci 0000:00:12.0: reg 0x10: [mem 0x9131c000-0x9131dfff]
[    0.453827] pci 0000:00:12.0: reg 0x14: [mem 0x9132f000-0x9132f0ff]
[    0.453842] pci 0000:00:12.0: reg 0x18: [io  0x1080-0x1087]
[    0.453859] pci 0000:00:12.0: reg 0x1c: [io  0x1088-0x108b]
[    0.453878] pci 0000:00:12.0: reg 0x20: [io  0x1060-0x107f]
[    0.453909] pci 0000:00:12.0: reg 0x24: [mem 0x9132d000-0x9132d7ff]
[    0.453978] pci 0000:00:12.0: PME# supported from D3hot
[    0.454916] pci 0000:00:14.0: [8086:5ad6] type 01 class 0x060400
[    0.455041] pci 0000:00:14.0: PME# supported from D0 D3hot D3cold
[    0.456023] pci 0000:00:14.1: [8086:5ad7] type 01 class 0x060400
[    0.456143] pci 0000:00:14.1: PME# supported from D0 D3hot D3cold
[    0.457155] pci 0000:00:15.0: [8086:5aa8] type 00 class 0x0c0330
[    0.457192] pci 0000:00:15.0: reg 0x10: [mem 0x91300000-0x9130ffff 64bit]
[    0.457291] pci 0000:00:15.0: PME# supported from D3hot D3cold
[    0.458277] pci 0000:00:16.0: [8086:5aac] type 00 class 0x118000
[    0.458315] pci 0000:00:16.0: reg 0x10: [mem 0x91321000-0x91321fff 64bit]
[    0.458335] pci 0000:00:16.0: reg 0x18: [mem 0x91322000-0x91322fff 64bit]
[    0.459344] pci 0000:00:16.3: [8086:5ab2] type 00 class 0x118000
[    0.459382] pci 0000:00:16.3: reg 0x10: [mem 0x91323000-0x91323fff 64bit]
[    0.459405] pci 0000:00:16.3: reg 0x18: [mem 0x91324000-0x91324fff 64bit]
[    0.460426] pci 0000:00:17.0: [8086:5ab4] type 00 class 0x118000
[    0.460464] pci 0000:00:17.0: reg 0x10: [mem 0x91325000-0x91325fff 64bit]
[    0.460485] pci 0000:00:17.0: reg 0x18: [mem 0x91326000-0x91326fff 64bit]
[    0.461504] pci 0000:00:17.1: [8086:5ab6] type 00 class 0x118000
[    0.461540] pci 0000:00:17.1: reg 0x10: [mem 0x91327000-0x91327fff 64bit]
[    0.461561] pci 0000:00:17.1: reg 0x18: [mem 0x91328000-0x91328fff 64bit]
[    0.462599] pci 0000:00:1c.0: [8086:5acc] type 00 class 0x080501
[    0.462631] pci 0000:00:1c.0: reg 0x10: [mem 0x9132b000-0x9132bfff 64bit]
[    0.462651] pci 0000:00:1c.0: reg 0x18: [mem 0x9132c000-0x9132cfff 64bit]
[    0.463842] pci 0000:00:1f.0: [8086:5ae8] type 00 class 0x060100
[    0.464586] pci 0000:00:1f.1: [8086:5ad4] type 00 class 0x0c0500
[    0.464662] pci 0000:00:1f.1: reg 0x10: [mem 0x9132e000-0x9132e0ff 64bit]
[    0.464750] pci 0000:00:1f.1: reg 0x20: [io  0x1040-0x105f]
[    0.465508] pci 0000:01:00.0: [10ec:5229] type 00 class 0xff0000
[    0.465571] pci 0000:01:00.0: reg 0x10: [mem 0x91200000-0x91200fff]
[    0.465667] pci 0000:01:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 256)
[    0.465683] pci 0000:01:00.0: Max Payload Size set to 128 (was 128, max 128)
[    0.465879] pci 0000:01:00.0: supports D1 D2
[    0.465885] pci 0000:01:00.0: PME# supported from D1 D2 D3hot
[    0.466228] pci 0000:00:14.0: PCI bridge to [bus 01]
[    0.466243] pci 0000:00:14.0:   bridge window [mem 0x91200000-0x912fffff]
[    0.466698] pci 0000:02:00.0: [8086:24fd] type 00 class 0x028000
[    0.466890] pci 0000:02:00.0: reg 0x10: [mem 0x91100000-0x91101fff 64bit]
[    0.467235] pci 0000:02:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 256)
[    0.467344] pci 0000:02:00.0: Max Payload Size set to 128 (was 128, max 128)
[    0.467970] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.469116] pci 0000:00:14.1: PCI bridge to [bus 02]
[    0.469129] pci 0000:00:14.1:   bridge window [mem 0x91100000-0x911fffff]
[    0.469156] pci_bus 0000:00: on NUMA node 0
[    0.492665] ACPI: PCI: Interrupt link LNKA configured for IRQ 15
[    0.492677] ACPI: PCI: Interrupt link LNKA disabled
[    0.492821] ACPI: PCI: Interrupt link LNKB configured for IRQ 15
[    0.492828] ACPI: PCI: Interrupt link LNKB disabled
[    0.492974] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    0.492981] ACPI: PCI: Interrupt link LNKC disabled
[    0.493120] ACPI: PCI: Interrupt link LNKD configured for IRQ 15
[    0.493127] ACPI: PCI: Interrupt link LNKD disabled
[    0.493266] ACPI: PCI: Interrupt link LNKE configured for IRQ 15
[    0.493272] ACPI: PCI: Interrupt link LNKE disabled
[    0.493415] ACPI: PCI: Interrupt link LNKF configured for IRQ 15
[    0.493422] ACPI: PCI: Interrupt link LNKF disabled
[    0.493563] ACPI: PCI: Interrupt link LNKG configured for IRQ 15
[    0.493570] ACPI: PCI: Interrupt link LNKG disabled
[    0.493710] ACPI: PCI: Interrupt link LNKH configured for IRQ 15
[    0.493717] ACPI: PCI: Interrupt link LNKH disabled
[    0.494536] gpiochip_find_base: found new base at 946
[    0.494996] gpio gpiochip0: (INT3452:00): created GPIO range 0->31 ==> INT3452:00 PIN 0->31
[    0.495006] gpio gpiochip0: (INT3452:00): created GPIO range 32->63 ==> INT3452:00 PIN 32->63
[    0.495012] gpio gpiochip0: (INT3452:00): created GPIO range 64->77 ==> INT3452:00 PIN 64->77
[    0.495160] gpio gpiochip0: (INT3452:00): added GPIO chardev (254:0)
[    0.495160] gpio gpiochip0: registered GPIOs 946 to 1023 on INT3452:00
[    0.495380] gpiochip_find_base: found new base at 869
[    0.496097] gpio gpiochip1: (INT3452:01): created GPIO range 0->31 ==> INT3452:01 PIN 0->31
[    0.496106] gpio gpiochip1: (INT3452:01): created GPIO range 32->63 ==> INT3452:01 PIN 32->63
[    0.496112] gpio gpiochip1: (INT3452:01): created GPIO range 64->76 ==> INT3452:01 PIN 64->76
[    0.496184] gpio gpiochip1: (INT3452:01): added GPIO chardev (254:1)
[    0.496184] gpio gpiochip1: registered GPIOs 869 to 945 on INT3452:01
[    0.496375] gpiochip_find_base: found new base at 822
[    0.496594] gpio gpiochip2: (INT3452:02): created GPIO range 0->31 ==> INT3452:02 PIN 0->31
[    0.496603] gpio gpiochip2: (INT3452:02): created GPIO range 32->46 ==> INT3452:02 PIN 32->46
[    0.496973] gpio gpiochip2: (INT3452:02): added GPIO chardev (254:2)
[    0.496973] gpio gpiochip2: registered GPIOs 822 to 868 on INT3452:02
[    0.497337] gpiochip_find_base: found new base at 779
[    0.497585] gpio gpiochip3: (INT3452:03): created GPIO range 0->31 ==> INT3452:03 PIN 0->31
[    0.497593] gpio gpiochip3: (INT3452:03): created GPIO range 32->42 ==> INT3452:03 PIN 32->42
[    0.497928] gpio gpiochip3: (INT3452:03): added GPIO chardev (254:3)
[    0.497968] gpio gpiochip3: registered GPIOs 779 to 821 on INT3452:03
[    0.501722] ACPI: EC: interrupt unblocked
[    0.501734] ACPI: EC: event unblocked
[    0.501762] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.501767] ACPI: EC: GPE=0x3f
[    0.501773] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
[    0.501781] ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
[    0.502003] iommu: Default domain type: Translated 
[    0.502003] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.502218] SCSI subsystem initialized
[    0.502240] libata version 3.00 loaded.
[    0.502240] ACPI: bus type USB registered
[    0.502240] usbcore: registered new interface driver usbfs
[    0.502240] usbcore: registered new interface driver hub
[    0.502240] usbcore: registered new device driver usb
[    0.502240] mc: Linux media interface: v0.10
[    0.502240] videodev: Linux video capture interface: v2.00
[    0.502244] pps_core: LinuxPPS API ver. 1 registered
[    0.502248] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.502258] PTP clock support registered
[    0.502989] Registered efivars operations
[    0.503225] chromeos_acpi: installed
[    0.503296] Advanced Linux Sound Architecture Driver Initialized.
[    0.503663] PCI: Using ACPI for IRQ routing
[    0.510916] PCI: pci_cache_line_size set to 64 bytes
[    0.511152] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.511159] e820: reserve RAM buffer [mem 0x0008c000-0x0008ffff]
[    0.511163] e820: reserve RAM buffer [mem 0x757c6000-0x77ffffff]
[    0.511167] e820: reserve RAM buffer [mem 0x7a679000-0x7bffffff]
[    0.511172] e820: reserve RAM buffer [mem 0x7a700000-0x7bffffff]
[    0.511175] e820: reserve RAM buffer [mem 0x7b000000-0x7bffffff]
[    0.511540] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.511565] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
[    0.512998] clocksource: Switched to clocksource tsc-early
[    0.547364] VFS: Disk quotas dquot_6.6.0
[    0.547419] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.547583] pnp: PnP ACPI init
[    0.570129] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.570144] system 00:00: [io  0x0400-0x047f] has been reserved
[    0.570151] system 00:00: [io  0x0500-0x05fe] has been reserved
[    0.570158] system 00:00: [io  0x0600-0x061f] has been reserved
[    0.570165] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.570848] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.570872] system 00:03: [mem 0xfea00000-0xfeafffff] has been reserved
[    0.570880] system 00:03: [mem 0xfed01000-0xfed01fff] has been reserved
[    0.570887] system 00:03: [mem 0xfed03000-0xfed03fff] has been reserved
[    0.570894] system 00:03: [mem 0xfed06000-0xfed06fff] has been reserved
[    0.570901] system 00:03: [mem 0xfed08000-0xfed09fff] has been reserved
[    0.570907] system 00:03: [mem 0xfed80000-0xfedbffff] has been reserved
[    0.570914] system 00:03: [mem 0xfed1c000-0xfed1cfff] has been reserved
[    0.570920] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.571830] pnp: PnP ACPI: found 5 devices
[    0.577252] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.577512] NET: Registered PF_INET protocol family
[    0.577714] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.579498] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.579646] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.579726] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.580110] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.580470] TCP: Hash tables configured (established 32768 bind 32768)
[    0.580611] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.580704] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.580924] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.580986] pci 0000:00:14.0: PCI bridge to [bus 01]
[    0.581005] pci 0000:00:14.0:   bridge window [mem 0x91200000-0x912fffff]
[    0.581020] pci 0000:00:14.1: PCI bridge to [bus 02]
[    0.581029] pci 0000:00:14.1:   bridge window [mem 0x91100000-0x911fffff]
[    0.581044] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.581051] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.581057] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.581064] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.581070] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.581076] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.581083] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.581089] pci_bus 0000:00: resource 11 [mem 0x7c000001-0x7fffffff window]
[    0.581095] pci_bus 0000:00: resource 12 [mem 0x7b800001-0x7bffffff window]
[    0.581102] pci_bus 0000:00: resource 13 [mem 0x80000000-0xcfffffff window]
[    0.581108] pci_bus 0000:00: resource 14 [mem 0xe0000000-0xefffffff window]
[    0.581116] pci_bus 0000:01: resource 1 [mem 0x91200000-0x912fffff]
[    0.581123] pci_bus 0000:02: resource 1 [mem 0x91100000-0x911fffff]
[    0.582145] PCI: CLS 64 bytes, default 64
[    0.582170] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.582175] software IO TLB: mapped [mem 0x000000006e499000-0x0000000072499000] (64MB)
[    0.582623] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    0.582630] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    0.582635] RAPL PMU: hw unit of domain package 2^-14 Joules
[    0.582639] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    0.582643] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    0.582879] kvm: disabled by bios
[    0.582886] has_svm: not amd or hygon
[    0.582890] kvm: no hardware support
[    0.582899] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
[    0.582946] clocksource: Switched to clocksource tsc
[    0.585710] Initialise system trusted keyrings
[    0.585887] workingset: timestamp_bits=62 max_order=20 bucket_order=0
[    0.589916] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.590153] Registering esdfs 0.2
[    0.590278] alt_syscall: table 'read_write_test' available.
[    0.590324] alt_syscall: table 'android' available.
[    0.590355] alt_syscall: table 'android_permissive' available.
[    0.590382] alt_syscall: table 'third_party' available.
[    0.590406] alt_syscall: table 'third_party_permissive' available.
[    0.590440] alt_syscall: table 'complete' available.
[    0.590463] alt_syscall: table 'complete_permissive' available.
[    0.620065] Key type asymmetric registered
[    0.620076] Asymmetric key parser 'x509' registered
[    0.620144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    0.620258] io scheduler mq-deadline registered
[    0.620265] io scheduler kyber registered
[    0.620380] io scheduler bfq registered
[    0.620740] pci 0000:00:14.0: attach allowed to drvr pcieport [internal device]
[    0.621295] pcieport 0000:00:14.0: PME: Signaling with IRQ 120
[    0.621438] pci 0000:00:14.1: attach allowed to drvr pcieport [internal device]
[    0.621807] pcieport 0000:00:14.1: PME: Signaling with IRQ 121
[    0.624725] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.624960] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C09:00/PNP0C0D:00/input/input0
[    0.626122] ACPI: button: Lid Switch [LID0]
[    0.626289] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.626347] ACPI: button: Power Button [PWRB]
[    0.626449] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.628091] ACPI: button: Power Button [PWRF]
[    0.633148] thermal LNXTHERM:00: registered as thermal_zone0
[    0.633169] ACPI: thermal: Thermal Zone [TZ01] (40 C)
[    0.634154] Non-volatile memory driver v1.3
[    0.634491] acpi MSFT0101:00: GPIO: looking up 0 in _CRS
[    0.647908] ACPI: bus type drm_connector registered
[    0.648169] usbcore: registered new interface driver udl
[    0.652496] loop: module loaded
[    0.652706] lkdtm: No crash points registered, enable through debugfs
[    0.652836] pci 0000:00:1f.0: attach allowed to drvr lpc_ich [internal device]
[    0.652909] lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized
[    0.653098] pci 0000:00:16.0: attach allowed to drvr intel-lpss [internal device]
[    0.653751] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    0.713709] i2c_designware i2c_designware.0: GPIO lookup for consumer scl
[    0.713725] i2c_designware i2c_designware.0: using ACPI for GPIO lookup
[    0.713732] acpi device:32: GPIO: looking up scl-gpios
[    0.713739] acpi device:32: GPIO: looking up scl-gpio
[    0.713743] i2c_designware i2c_designware.0: using lookup tables for GPIO lookup
[    0.713748] i2c_designware i2c_designware.0: No GPIO consumer scl found
[    0.714461] pci 0000:00:16.3: attach allowed to drvr intel-lpss [internal device]
[    0.715099] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    0.741843] i2c_designware i2c_designware.1: GPIO lookup for consumer scl
[    0.741868] i2c_designware i2c_designware.1: using ACPI for GPIO lookup
[    0.741876] acpi device:35: GPIO: looking up scl-gpios
[    0.741882] acpi device:35: GPIO: looking up scl-gpio
[    0.741886] i2c_designware i2c_designware.1: using lookup tables for GPIO lookup
[    0.741891] i2c_designware i2c_designware.1: No GPIO consumer scl found
[    0.742590] pci 0000:00:17.0: attach allowed to drvr intel-lpss [internal device]
[    0.743267] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    0.769949] i2c_designware i2c_designware.2: GPIO lookup for consumer scl
[    0.769964] i2c_designware i2c_designware.2: using ACPI for GPIO lookup
[    0.769971] acpi device:36: GPIO: looking up scl-gpios
[    0.769977] acpi device:36: GPIO: looking up scl-gpio
[    0.769981] i2c_designware i2c_designware.2: using lookup tables for GPIO lookup
[    0.769986] i2c_designware i2c_designware.2: No GPIO consumer scl found
[    0.770540] pci 0000:00:17.1: attach allowed to drvr intel-lpss [internal device]
[    0.771178] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    0.797764] i2c_designware i2c_designware.3: GPIO lookup for consumer scl
[    0.797780] i2c_designware i2c_designware.3: using ACPI for GPIO lookup
[    0.797787] acpi device:37: GPIO: looking up scl-gpios
[    0.797794] acpi device:37: GPIO: looking up scl-gpio
[    0.797798] i2c_designware i2c_designware.3: using lookup tables for GPIO lookup
[    0.797803] i2c_designware i2c_designware.3: No GPIO consumer scl found
[    0.800470] pci 0000:00:12.0: attach allowed to drvr ahci [internal device]
[    0.800524] ahci 0000:00:12.0: version 3.0
[    0.801078] ahci 0000:00:12.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.801092] ahci 0000:00:12.0: flags: 64bit ncq sntf pm clo only pmp pio slum part deso sadm sds apst 
[    0.802490] scsi host0: ahci
[    0.803520] scsi host1: ahci
[    0.803697] ata1: SATA max UDMA/133 abar m2048@0x9132d000 port 0x9132d100 irq 122
[    0.803708] ata2: SATA max UDMA/133 abar m2048@0x9132d000 port 0x9132d180 irq 122
[    0.804239] mdio_bus fixed-0: GPIO lookup for consumer reset
[    0.804248] mdio_bus fixed-0: using lookup tables for GPIO lookup
[    0.804252] mdio_bus fixed-0: No GPIO consumer reset found
[    0.804269] PPP generic driver version 2.4.2
[    0.804520] PPP MPPE Compression module registered
[    0.804752] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.804762] ehci-pci: EHCI PCI platform driver
[    0.804796] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.804810] ohci-pci: OHCI PCI platform driver
[    0.804839] uhci_hcd: USB Universal Host Controller Interface driver
[    0.804930] pci 0000:00:15.0: attach allowed to drvr xhci_hcd [internal device]
[    0.805367] xhci_hcd 0000:00:15.0: xHCI Host Controller
[    0.805621] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
[    0.806764] xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[    0.807356] xhci_hcd 0000:00:15.0: xHCI Host Controller
[    0.807582] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
[    0.807600] xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
[    0.807730] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    0.807741] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.807747] usb usb1: Product: xHCI Host Controller
[    0.807753] usb usb1: Manufacturer: Linux 5.15.148-21834-g3215cdfa7675-dirty xhci-hcd
[    0.807759] usb usb1: SerialNumber: 0000:00:15.0
[    0.808211] hub 1-0:1.0: USB hub found
[    0.808249] hub 1-0:1.0: 8 ports detected
[    0.812038] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    0.812051] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.812057] usb usb2: Product: xHCI Host Controller
[    0.812063] usb usb2: Manufacturer: Linux 5.15.148-21834-g3215cdfa7675-dirty xhci-hcd
[    0.812068] usb usb2: SerialNumber: 0000:00:15.0
[    0.812451] hub 2-0:1.0: USB hub found
[    0.812485] hub 2-0:1.0: 7 ports detected
[    0.814285] usb: port power management may be unreliable
[    0.816882] usbcore: registered new interface driver cdc_acm
[    0.816891] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    0.816941] usbcore: registered new interface driver usb-storage
[    0.816966] usbcore: registered new interface driver ums-realtek
[    0.817077] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.817205] i8042: [0] 20 -> i8042 (command)
[    0.817229] i8042: [0] 67 <- i8042 (return)
[    0.817290] i8042: [0] 20 -> i8042 (command)
[    0.817310] i8042: [0] 67 <- i8042 (return)
[    0.817325] i8042: [0] 60 -> i8042 (command)
[    0.817508] i8042: [0] 76 -> i8042 (parameter)
[    0.817649] i8042: [0] d3 -> i8042 (command)
[    0.817860] i8042: [0] 5a -> i8042 (parameter)
[    0.817860] i8042: [0] 5a <- i8042 (return)
[    0.818295] i8042: [1] a7 -> i8042 (command)
[    0.818481] i8042: [1] 20 -> i8042 (command)
[    0.818503] i8042: [1] 76 <- i8042 (return)
[    0.818513] i8042: [1] a8 -> i8042 (command)
[    0.818747] i8042: [1] 20 -> i8042 (command)
[    0.818768] i8042: [1] 56 <- i8042 (return)
[    0.818817] i8042: [1] 60 -> i8042 (command)
[    0.818946] i8042: [2] 56 -> i8042 (parameter)
[    0.818949] ACPI: battery: Slot [BAT1] (battery present)
[    0.819082] i8042: [2] d3 -> i8042 (command)
[    0.819439] i8042: [2] a5 -> i8042 (parameter)
[    0.819575] i8042: [2] a5 <- i8042 (aux_test_irq, aux)
[    0.819609] i8042: [2] 60 -> i8042 (command)
[    0.819740] i8042: [2] 74 -> i8042 (parameter)
[    0.819846] i8042: [2] d3 -> i8042 (command)
[    0.820592] i8042: [3] f0 -> i8042 (parameter)
[    0.820592] i8042: [3] f0 <- i8042 (return)
[    0.821156] i8042: [4] d3 -> i8042 (command)
[    0.821797] i8042: [4] 56 -> i8042 (parameter)
[    0.821938] i8042: [4] 56 <- i8042 (return)
[    0.821952] i8042: [5] d3 -> i8042 (command)
[    0.822423] i8042: [5] a4 -> i8042 (parameter)
[    0.822563] i8042: [5] a4 <- i8042 (return)
[    0.822593] i8042: [5] 60 -> i8042 (command)
[    0.822734] i8042: [5] 56 -> i8042 (parameter)
[    0.822884] i8042: [5] 60 -> i8042 (command)
[    0.822943] i8042: [5] 47 -> i8042 (parameter)
[    0.823029] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.823138] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.823992] i8042: [7] ed -> i8042 (kbd-data)
[    0.824197] rtc_cmos 00:04: RTC can wake from S4
[    0.825265] rtc_cmos 00:04: registered as rtc0
[    0.825287] rtc_cmos 00:04: GPIO lookup for consumer wp
[    0.825292] rtc_cmos 00:04: using ACPI for GPIO lookup
[    0.825299] acpi PNP0B00:00: GPIO: looking up wp-gpios
[    0.825305] acpi PNP0B00:00: GPIO: looking up wp-gpio
[    0.825309] rtc_cmos 00:04: using lookup tables for GPIO lookup
[    0.825313] rtc_cmos 00:04: No GPIO consumer wp found
[    0.825371] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
[    0.825385] i8042: [8] fa <- i8042 (interrupt, 0, 1)
[    0.825435] i8042: [8] 00 -> i8042 (kbd-data)
[    0.825458] i2c_dev: i2c /dev entries driver
[    0.826045] pci 0000:00:1f.1: attach allowed to drvr i801_smbus [internal device]
[    0.826587] i801_smbus 0000:00:1f.1: SPD Write Disable is set
[    0.826669] i801_smbus 0000:00:1f.1: SMBus using PCI interrupt
[    0.826733] i8042: [9] fa <- i8042 (interrupt, 0, 1)
[    0.826770] i8042: [9] ed -> i8042 (kbd-data)
[    0.827012] i2c i2c-4: 4/4 memory slots populated (from DMI)
[    0.828113] i8042: [11] fa <- i8042 (interrupt, 0, 1)
[    0.828171] i8042: [11] 00 -> i8042 (kbd-data)
[    0.828611] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.828942] device-mapper: verity-chromeos: dm-verity-chromeos registered
[    0.829017] intel_pstate: Intel P-state driver initializing
[    0.829485] i8042: [12] fa <- i8042 (interrupt, 0, 1)
[    0.829527] i8042: [12] f3 -> i8042 (kbd-data)
[    0.829779] sdhci: Secure Digital Host Controller Interface driver
[    0.829786] sdhci: Copyright(c) Pierre Ossman
[    0.829829] pci 0000:00:1c.0: attach allowed to drvr sdhci-pci [internal device]
[    0.830205] sdhci-pci 0000:00:1c.0: SDHCI controller found [8086:5acc] (rev b)
[    0.830422] hid: raw HID events driver (C) Jiri Kosina
[    0.830614] usbcore: registered new interface driver usbhid
[    0.830619] usbhid: USB HID core driver
[    0.830887] i8042: [14] fa <- i8042 (interrupt, 0, 1)
[    0.830940] i8042: [14] 00 -> i8042 (kbd-data)
[    0.830961] ashmem: initialized
[    0.831195] acpi WCOM5120:00: GPIO: looking up 0 in _CRS
[    0.831228] acpi WCOM5120:00: GPIO: looking up 1 in _CRS
[    0.831305] gpio gpiochip0: Persistence not supported for GPIO 21
[    0.831359] mmc0: SDHCI controller on PCI [0000:00:1c.0] using ADMA 64-bit
[    0.831773] acpi ITE8350:00: GPIO: looking up 0 in _CRS
[    0.831976] gpio gpiochip0: Persistence not supported for GPIO 28
[    0.832237] i8042: [15] fa <- i8042 (interrupt, 0, 1)
[    0.832337] i8042: [15] f4 -> i8042 (kbd-data)
[    0.832509] cros_ec_lpcs: unsupported system.
[    0.832701] intel_rapl_common: Found RAPL domain package
[    0.832708] intel_rapl_common: Found RAPL domain core
[    0.832712] intel_rapl_common: Found RAPL domain uncore
[    0.832716] intel_rapl_common: Found RAPL domain dram
[    0.833636] GACT probability NOT on
[    0.833639] i8042: [16] fa <- i8042 (interrupt, 0, 1)
[    0.833741] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.834000] i8042: [17] d4 -> i8042 (command)
[    0.834187] i8042: [17] f2 -> i8042 (parameter)
[    0.834380] xt_time: kernel timezone is -0000
[    0.834493] Initializing XFRM netlink socket
[    0.834678] NET: Registered PF_INET6 protocol family
[    0.835459] Segment Routing with IPv6
[    0.835473] In-situ OAM (IOAM) with IPv6
[    0.835534] NET: Registered PF_PACKET protocol family
[    0.835542] NET: Registered PF_KEY protocol family
[    0.835717] NET: Registered PF_VSOCK protocol family
[    0.837115] microcode: sig=0x506c9, pf=0x1, revision=0x48
[    0.837141] i8042: [20] fa <- i8042 (interrupt, 1, 12)
[    0.837257] microcode: Microcode Update Driver: v2.2.
[    0.837270] IPI shorthand broadcast: enabled
[    0.837291] SSE version of gcm_enc/dec engaged.
[    0.838697] i8042: [21] 00 <- i8042 (interrupt, 1, 12)
[    0.838771] i8042: [21] 60 -> i8042 (command)
[    0.838901] i8042: [22] 45 -> i8042 (parameter)
[    0.839033] i8042: [22] 60 -> i8042 (command)
[    0.839161] i8042: [22] 47 -> i8042 (parameter)
[    0.843104] sched_clock: Marking stable (839193729, 3853088)->(849615288, -6568471)
[    0.843736] registered taskstats version 1
[    0.843752] Loading compiled-in X.509 certificates
[    0.846958] Loaded X.509 cert 'Build time autogenerated kernel key: 9e8ff06097bc1d764820ac4dc6069e5aa9bfc9a7'
[    0.847878] Key type .fscrypt registered
[    0.847891] Key type fscrypt-provisioning registered
[    0.849290] Key type encrypted registered
[    0.849600] PM:   Magic number: 0:709:640
[    0.849918] ALSA device list:
[    0.849923]   No soundcards found.
[    0.849956] Warning: unable to open an initial console.
[    0.981938] hid-generic 0018:048D:8350.0001: hidraw0: I2C HID v1.00 Device [ITE8350:00 048D:8350] on i2c-ITE8350:00
[    0.995827] input: WCOM5120:00 056A:5120 Touchscreen as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input5
[    0.996163] input: WCOM5120:00 056A:5120 as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input6
[    0.996424] input: WCOM5120:00 056A:5120 as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input7
[    0.996680] input: WCOM5120:00 056A:5120 as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input8
[    0.997029] input: WCOM5120:00 056A:5120 Mouse as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input9
[    0.997274] hid-generic 0018:056A:5120.0002: input,hidraw1: I2C HID v1.00 Mouse [WCOM5120:00 056A:5120] on i2c-WCOM5120:00
[    1.026031] mmc0: new HS200 MMC card at address 0001
[    1.026577] mmcblk0: mmc0:0001 DF4128 116 GiB 
[    1.031771]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12
[    1.033137] mmcblk0boot0: mmc0:0001 DF4128 4.00 MiB 
[    1.033802] mmcblk0boot1: mmc0:0001 DF4128 4.00 MiB 
[    1.034363] mmcblk0rpmb: mmc0:0001 DF4128 4.00 MiB, chardev (242:0)
[    1.049058] usb 1-7: new full-speed USB device number 2 using xhci_hcd
[    1.117074] ata1: SATA link down (SStatus 4 SControl 300)
[    1.118086] ata2: SATA link down (SStatus 4 SControl 300)
[    1.143392] EXT4-fs (mmcblk0p3): mounting ext2 file system using the ext4 subsystem
[    1.146717] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode: none.
[    1.146760] VFS: Mounted root (ext2 filesystem) readonly on device 179:3.
[    1.148273] devtmpfs: mounted
[    1.150665] Freeing unused kernel image (initmem) memory: 1792K
[    1.150690] Write protecting the kernel read-only data: 38912k
[    1.152167] Freeing unused kernel image (text/rodata gap) memory: 2032K
[    1.153061] Freeing unused kernel image (rodata/data gap) memory: 1568K
[    1.153090] Run /sbin/init as init process
[    1.153093]   with arguments:
[    1.153095]     /sbin/init
[    1.153097]     noresume
[    1.153099]     cros_efi
[    1.153100]     cros_debug
[    1.153101]   with environment:
[    1.153103]     HOME=/
[    1.153105]     TERM=linux
[    1.153107]     BOOT_IMAGE=/syslinux/vmlinuz.A
[    1.176294] usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[    1.176317] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.245279] audit: type=1404 audit(1709743051.046:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[    1.268627] SELinux:  Class infiniband_pkey not defined in policy.
[    1.268646] SELinux:  Class infiniband_endport not defined in policy.
[    1.268651] SELinux:  Class xdp_socket not defined in policy.
[    1.268654] SELinux:  Class mctp_socket not defined in policy.
[    1.268658] SELinux:  Class perf_event not defined in policy.
[    1.268661] SELinux:  Class lockdown not defined in policy.
[    1.268664] SELinux:  Class anon_inode not defined in policy.
[    1.268667] SELinux: the above unknown classes and permissions will be denied
[    1.272589] SELinux:  policy capability network_peer_controls=0
[    1.272606] SELinux:  policy capability open_perms=0
[    1.272610] SELinux:  policy capability extended_socket_class=0
[    1.272613] SELinux:  policy capability always_check_network=0
[    1.272616] SELinux:  policy capability cgroup_seclabel=0
[    1.272620] SELinux:  policy capability nnp_nosuid_transition=1
[    1.272623] SELinux:  policy capability genfs_seclabel_symlinks=0
[    1.272626] SELinux:  policy capability ioctl_skip_cloexec=0
[    1.291544] audit: type=1403 audit(1709743051.092:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    1.291897] usb 1-8: new high-speed USB device number 3 using xhci_hcd
[    1.482275] usb 1-8: New USB device found, idVendor=04f2, idProduct=b5a2, bcdDevice=10.34
[    1.482304] usb 1-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.482314] usb 1-8: Product: Lenovo EasyCamera
[    1.482322] usb 1-8: Manufacturer: Chicony Electronics Co.,Ltd.
[    1.482330] usb 1-8: SerialNumber: 0001
[    1.691581] SELinux:  Context u:object_r:storage_file:s0 is not valid (left unmapped).
[    1.697690] audit: type=1400 audit(1709743051.498:4): avc:  granted  { execute } for  pid=161 comm="sh" name="crash_reporter" dev="mmcblk0p3" ino=13508 scontext=u:r:cros_init_scripts:s0 tcontext=u:object_r:cros_crash_reporter_exec:s0 tclass=file
[    2.149359] init: early-failure main process (164) terminated with status 124
[    2.202838] loop0: detected capacity change from 0 to 8
[    2.373224] WARNING chromeos_startup: [security_manager.cc(203)] Unable to setup trusted DLC verity digests: Invalid argument (22)
[    2.373270] WARNING chromeos_startup: [chromeos_startup.cc(374)] Failed to setup LoadPin verity digests.
[    2.379459] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.565510] LoadPin: mmcblk0p3 (179:3): writable
[    2.565536] LoadPin: enforcement can be disabled.
[    2.565559] LoadPin: kernel-module pinned obj="/lib/modules/5.15.148-21834-g3215cdfa7675-dirty/kernel/drivers/hid/hid-sensor-hub.ko.gz" pid=196 cmdline="udevd --daemon"
[    2.704616] input: Wacom HID 5120 Pen as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input10
[    2.705218] input: Wacom HID 5120 Finger as /devices/pci0000:00/0000:00:16.3/i2c_designware.1/i2c-1/i2c-WCOM5120:00/0018:056A:5120.0002/input/input11
[    2.706113] wacom 0018:056A:5120.0002: hidraw0: I2C HID v1.00 Mouse [WCOM5120:00 056A:5120] on i2c-WCOM5120:00
[    2.976542] EXT4-fs (mmcblk0p1): recovery complete
[    2.977142] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: commit=600,discard. Quota mode: journalled.
[    2.986980] EXT4-fs (mmcblk0p8): orphan cleanup on readonly fs
[    2.987052] EXT4-fs (mmcblk0p8): mounted filesystem with ordered data mode. Opts: . Quota mode: none.
[    2.987549] WARNING chromeos_startup: [chromeos_startup.cc(963)] Failed to get boot information from crossystem
[    3.019627] pci 0000:00:02.0: attach allowed to drvr i915 [internal device]
[    3.024013] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/bxt_dmc_ver1_07.bin (v1.7)
[    3.030410] EXT4-fs (mmcblk0p1): re-mounted. Opts: . Quota mode: journalled.
[    3.067177] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    3.068886] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.069592] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input13
[    3.314901] loop1: detected capacity change from 0 to 66681032
[    3.413085] frecon[482]: Frecon using drm driver i915, version 1.6, date(20201103), desc(Intel Graphics) using atomic
[    3.600304] frecon[482]: Frecon using drm driver i915, version 1.6, date(20201103), desc(Intel Graphics) using atomic
[    3.656483] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: discard,commit=600. Quota mode: journalled.
[    3.666692] ERROR chromeos_startup: [safe_fd.cc(704)] unlinkat failed for "mount_encrypted_failed": No such file or directory (2)
[    3.666776] ERROR chromeos_startup: [safe_fd.cc(704)] unlinkat failed for "version_pcr_extend_failed": No such file or directory (2)
[    3.773723] audit: type=1400 audit(1709743053.574:5): avc:  granted  { execute } for  pid=521 comm="chromeos_startu" name="crash_reporter" dev="mmcblk0p3" ino=13508 scontext=u:r:chromeos_startup:s0 tcontext=u:object_r:cros_crash_reporter_exec:s0 tclass=file
[    3.812942] WARNING chromeos_startup: [chromeos_startup.cc(882)] Unable to collect early logs and crashes.
[    3.855851] SELinux:  Context u:object_r:cros_var_log_modemloggerd:s0 is not valid (left unmapped).
[    3.885063] SELinux:  Context u:object_r:cros_var_lib_modemloggerd:s0 is not valid (left unmapped).
[    4.301078] FAT-fs (mmcblk0p12): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    4.402326] Lockdown: frecon: debugfs access is restricted; see man kernel_lockdown.7
[    4.402363] frecon[482]: Unable to open drm_master_relax.
[    4.402379] frecon[482]: Unable to send display ownership DBus message to Chrome DisplayService: DBus not initialized
[    4.559010] WARNING chromeos_startup: [stateful_mount.cc(562)] Failed to read from /mnt/stateful_partition/.update_available: No such file or directory (2)
[    4.559178] EXT4-fs (mmcblk0p1): re-mounted. Opts: . Quota mode: journalled.
[    4.655112] audit: type=1400 audit(1709743054.454:6): avc:  denied  { search } for  pid=552 comm="rsyslogd" name="hosts.d" dev="mmcblk0p3" ino=10247 scontext=u:r:cros_rsyslogd:s0 tcontext=u:object_r:cros_run_crosdns:s0 tclass=dir permissive=0
[    4.655132] audit: type=1400 audit(1709743054.454:7): avc:  denied  { create } for  pid=552 comm="rsyslogd" scontext=u:r:cros_rsyslogd:s0 tcontext=u:r:cros_rsyslogd:s0 tclass=udp_socket permissive=0
[    4.658552] audit: type=1400 audit(1709743054.459:8): avc:  denied  { read } for  pid=552 comm="rsyslogd" name="ngroups_max" dev="proc" ino=14341 scontext=u:r:cros_rsyslogd:s0 tcontext=u:object_r:proc_sys_kernel:s0 tclass=file permissive=0
[    4.767416] init: cgroups main process (545) terminated with status 2
[    4.846230] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[    4.849156] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[    4.851786] init: vpd-log main process (546) terminated with status 1
[    5.238681] frecon[482]: DBUS initialized.
[    6.028291] Bluetooth: bt_init() Core ver 2.22
[    6.028382] NET: Registered PF_BLUETOOTH protocol family
[    6.028386] Bluetooth: bt_init() HCI device and connection manager initialized
[    6.028397] Bluetooth: hci_sock_init() HCI socket layer initialized
[    6.028402] Bluetooth: l2cap_init_sockets() L2CAP socket layer initialized
[    6.028414] Bluetooth: sco_init() SCO socket layer initialized
[    6.207765] Intel(R) Wireless WiFi driver for Linux
[    6.207840] pci 0000:02:00.0: attach allowed to drvr iwlwifi [internal device]
[    6.208052] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    6.469596] iwlwifi 0000:02:00.0: loaded firmware version 36.212c8d87.0 8265-36.ucode op_mode iwlmvm
[    6.978269] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
[    6.988472] thermal thermal_zone2: failed to read out thermal zone (-61)
[    7.043633] iwlwifi 0000:02:00.0: base HW address: f8:34:41:00:2a:17
[    7.081999] loop2: detected capacity change from 0 to 195288
[    7.118272] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    8.699713] init: failsafe-delay main process (690) killed by TERM signal
[    8.903100] fuse: init (API version 7.34)
[    9.251593] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[    9.252406] init: update-engine post-start process (1914) terminated with status 1
[    9.589481] pci 0000:00:0f.0: attach allowed to drvr mei_me [internal device]
[    9.681978] pci 0000:00:0e.0: attach allowed to drvr snd_hda_intel [internal device]
[    9.702060] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[    9.851966] snd_hda_intel 0000:00:0e.0: attach allowed to drvr snd_soc_skl [internal device]
[    9.951976] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input14
[    9.952265] ideapad_acpi VPC2004:00: Keyboard backlight control not available
[    9.955215] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    9.955233] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.955238] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    9.955242] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    9.955244] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    9.955247] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    9.955251] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    9.973067] ideapad_acpi VPC2004:00: failed to link with 8042 controller :1
[    9.989976] ideapad_acpi: probe of VPC2004:00 failed with error 1
[   10.029549] pci 0000:01:00.0: attach allowed to drvr rtsx_pci [internal device]
[   10.029640] rtsx_pci 0000:01:00.0: enabling device (0000 -> 0002)
[   10.167949] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input15
[   10.168109] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:0e.0/sound/card0/input16
[   10.173900] loop3: detected capacity change from 0 to 16384
[   10.182171] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input17
[   10.211826] device-mapper: verity: sha256 using implementation "sha256-ni"
[   10.224396] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input18
[   10.241669] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input19
[   10.242848] snd_hda_intel 0000:00:0e.0: attach allowed to drvr sof-audio-pci-intel-apl [internal device]
[   10.286640] loop4: detected capacity change from 0 to 12856
[   10.327340] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input20
[   10.391338] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input21
[   10.730001] i8042: [9913] d4 -> i8042 (command)
[   10.730194] i8042: [9913] f2 -> i8042 (parameter)
[   10.733075] i8042: [9916] fa <- i8042 (interrupt, 1, 12)
[   10.734646] i8042: [9917] 00 <- i8042 (interrupt, 1, 12)
[   10.737430] i8042: [9920] d4 -> i8042 (command)
[   10.737625] i8042: [9920] f6 -> i8042 (parameter)
[   10.740377] i8042: [9923] fa <- i8042 (interrupt, 1, 12)
[   10.740428] i8042: [9923] d4 -> i8042 (command)
[   10.740615] i8042: [9923] f3 -> i8042 (parameter)
[   10.743568] i8042: [9926] fa <- i8042 (interrupt, 1, 12)
[   10.743607] i8042: [9926] d4 -> i8042 (command)
[   10.743793] i8042: [9926] 0a -> i8042 (parameter)
[   10.746759] i8042: [9929] fa <- i8042 (interrupt, 1, 12)
[   10.746799] i8042: [9929] d4 -> i8042 (command)
[   10.746986] i8042: [9930] e8 -> i8042 (parameter)
[   10.749954] i8042: [9933] fa <- i8042 (interrupt, 1, 12)
[   10.751745] i8042: [9934] d4 -> i8042 (command)
[   10.751936] i8042: [9935] 00 -> i8042 (parameter)
[   10.754664] i8042: [9937] fa <- i8042 (interrupt, 1, 12)
[   10.754709] i8042: [9937] d4 -> i8042 (command)
[   10.754952] i8042: [9938] f3 -> i8042 (parameter)
[   10.757856] i8042: [9940] fa <- i8042 (interrupt, 1, 12)
[   10.757896] i8042: [9941] d4 -> i8042 (command)
[   10.758082] i8042: [9941] 14 -> i8042 (parameter)
[   10.761049] i8042: [9944] fa <- i8042 (interrupt, 1, 12)
[   10.761976] i8042: [9945] d4 -> i8042 (command)
[   10.762166] i8042: [9945] f3 -> i8042 (parameter)
[   10.764744] i8042: [9947] fa <- i8042 (interrupt, 1, 12)
[   10.764887] i8042: [9948] d4 -> i8042 (command)
[   10.765073] i8042: [9948] 3c -> i8042 (parameter)
[   10.767937] i8042: [9951] fa <- i8042 (interrupt, 1, 12)
[   10.768949] i8042: [9952] d4 -> i8042 (command)
[   10.769143] i8042: [9952] f3 -> i8042 (parameter)
[   10.772138] i8042: [9955] fa <- i8042 (interrupt, 1, 12)
[   10.772185] i8042: [9955] d4 -> i8042 (command)
[   10.772425] i8042: [9955] 28 -> i8042 (parameter)
[   10.775333] i8042: [9958] fa <- i8042 (interrupt, 1, 12)
[   10.775379] i8042: [9958] d4 -> i8042 (command)
[   10.775622] i8042: [9958] f3 -> i8042 (parameter)
[   10.778532] i8042: [9961] fa <- i8042 (interrupt, 1, 12)
[   10.779997] i8042: [9963] d4 -> i8042 (command)
[   10.780244] i8042: [9963] 14 -> i8042 (parameter)
[   10.783232] i8042: [9966] fa <- i8042 (interrupt, 1, 12)
[   10.783277] i8042: [9966] d4 -> i8042 (command)
[   10.783462] i8042: [9966] f3 -> i8042 (parameter)
[   10.786427] i8042: [9969] fa <- i8042 (interrupt, 1, 12)
[   10.789184] i8042: [9972] d4 -> i8042 (command)
[   10.789378] i8042: [9972] 14 -> i8042 (parameter)
[   10.792148] i8042: [9975] fa <- i8042 (interrupt, 1, 12)
[   10.792660] i8042: [9975] d4 -> i8042 (command)
[   10.792907] i8042: [9976] f3 -> i8042 (parameter)
[   10.795849] i8042: [9978] fa <- i8042 (interrupt, 1, 12)
[   10.795889] i8042: [9979] d4 -> i8042 (command)
[   10.796128] i8042: [9979] 3c -> i8042 (parameter)
[   10.799044] i8042: [9982] fa <- i8042 (interrupt, 1, 12)
[   10.799086] i8042: [9982] d4 -> i8042 (command)
[   10.799329] i8042: [9982] f3 -> i8042 (parameter)
[   10.802233] i8042: [9985] fa <- i8042 (interrupt, 1, 12)
[   10.805394] i8042: [9988] d4 -> i8042 (command)
[   10.805586] i8042: [9988] 28 -> i8042 (parameter)
[   10.808455] i8042: [9991] fa <- i8042 (interrupt, 1, 12)
[   10.808496] i8042: [9991] d4 -> i8042 (command)
[   10.808681] i8042: [9991] f3 -> i8042 (parameter)
[   10.811649] i8042: [9994] fa <- i8042 (interrupt, 1, 12)
[   10.811726] i8042: [9994] d4 -> i8042 (command)
[   10.811970] i8042: [9995] 14 -> i8042 (parameter)
[   10.814844] i8042: [9997] fa <- i8042 (interrupt, 1, 12)
[   10.814890] i8042: [9998] d4 -> i8042 (command)
[   10.815133] i8042: [9998] f3 -> i8042 (parameter)
[   10.818044] i8042: [10001] fa <- i8042 (interrupt, 1, 12)
[   10.818088] i8042: [10001] d4 -> i8042 (command)
[   10.818330] i8042: [10001] 14 -> i8042 (parameter)
[   10.821239] i8042: [10004] fa <- i8042 (interrupt, 1, 12)
[   10.821730] i8042: [10004] d4 -> i8042 (command)
[   10.821925] i8042: [10005] f2 -> i8042 (parameter)
[   10.824934] i8042: [10008] fa <- i8042 (interrupt, 1, 12)
[   10.826505] i8042: [10009] 00 <- i8042 (interrupt, 1, 12)
[   10.826694] i8042: [10009] d4 -> i8042 (command)
[   10.826881] i8042: [10010] e8 -> i8042 (parameter)
[   10.829713] i8042: [10012] fa <- i8042 (interrupt, 1, 12)
[   10.830263] i8042: [10013] d4 -> i8042 (command)
[   10.830451] i8042: [10013] 00 -> i8042 (parameter)
[   10.833406] i8042: [10016] fa <- i8042 (interrupt, 1, 12)
[   10.833448] i8042: [10016] d4 -> i8042 (command)
[   10.833635] i8042: [10016] e8 -> i8042 (parameter)
[   10.836599] i8042: [10019] fa <- i8042 (interrupt, 1, 12)
[   10.838244] i8042: [10021] d4 -> i8042 (command)
[   10.838490] i8042: [10021] 00 -> i8042 (parameter)
[   10.841307] i8042: [10024] fa <- i8042 (interrupt, 1, 12)
[   10.841385] i8042: [10024] d4 -> i8042 (command)
[   10.841625] i8042: [10024] e8 -> i8042 (parameter)
[   10.844503] i8042: [10027] fa <- i8042 (interrupt, 1, 12)
[   10.844543] i8042: [10027] d4 -> i8042 (command)
[   10.844785] i8042: [10027] 00 -> i8042 (parameter)
[   10.847694] i8042: [10030] fa <- i8042 (interrupt, 1, 12)
[   10.847891] i8042: [10031] d4 -> i8042 (command)
[   10.848134] i8042: [10031] e8 -> i8042 (parameter)
[   10.850889] i8042: [10034] fa <- i8042 (interrupt, 1, 12)
[   10.850928] i8042: [10034] d4 -> i8042 (command)
[   10.851172] i8042: [10034] 00 -> i8042 (parameter)
[   10.854082] i8042: [10037] fa <- i8042 (interrupt, 1, 12)
[   10.854135] i8042: [10037] d4 -> i8042 (command)
[   10.854377] i8042: [10037] e9 -> i8042 (parameter)
[   10.857276] i8042: [10040] fa <- i8042 (interrupt, 1, 12)
[   10.858864] i8042: [10042] 3c <- i8042 (interrupt, 1, 12)
[   10.860425] i8042: [10043] 04 <- i8042 (interrupt, 1, 12)
[   10.862011] i8042: [10045] 00 <- i8042 (interrupt, 1, 12)
[   10.862063] i8042: [10045] d4 -> i8042 (command)
[   10.862305] i8042: [10045] f6 -> i8042 (parameter)
[   10.865221] i8042: [10048] fa <- i8042 (interrupt, 1, 12)
[   10.865268] i8042: [10048] d4 -> i8042 (command)
[   10.865453] i8042: [10048] e8 -> i8042 (parameter)
[   10.868417] i8042: [10051] fa <- i8042 (interrupt, 1, 12)
[   10.868457] i8042: [10051] d4 -> i8042 (command)
[   10.868644] i8042: [10051] 00 -> i8042 (parameter)
[   10.871617] i8042: [10054] fa <- i8042 (interrupt, 1, 12)
[   10.871675] i8042: [10054] d4 -> i8042 (command)
[   10.871861] i8042: [10055] e6 -> i8042 (parameter)
[   10.874805] i8042: [10057] fa <- i8042 (interrupt, 1, 12)
[   10.874891] i8042: [10058] d4 -> i8042 (command)
[   10.875131] i8042: [10058] e6 -> i8042 (parameter)
[   10.878009] i8042: [10061] fa <- i8042 (interrupt, 1, 12)
[   10.878054] i8042: [10061] d4 -> i8042 (command)
[   10.878241] i8042: [10061] e6 -> i8042 (parameter)
[   10.881192] i8042: [10064] fa <- i8042 (interrupt, 1, 12)
[   10.881711] i8042: [10064] d4 -> i8042 (command)
[   10.881904] i8042: [10065] e9 -> i8042 (parameter)
[   10.884889] i8042: [10068] fa <- i8042 (interrupt, 1, 12)
[   10.886465] i8042: [10069] 3c <- i8042 (interrupt, 1, 12)
[   10.888037] i8042: [10071] 03 <- i8042 (interrupt, 1, 12)
[   10.889622] i8042: [10072] 00 <- i8042 (interrupt, 1, 12)
[   10.889683] i8042: [10072] d4 -> i8042 (command)
[   10.889870] i8042: [10073] f6 -> i8042 (parameter)
[   10.892849] i8042: [10075] fa <- i8042 (interrupt, 1, 12)
[   10.892891] i8042: [10076] d4 -> i8042 (command)
[   10.893077] i8042: [10076] f5 -> i8042 (parameter)
[   10.896020] i8042: [10079] fa <- i8042 (interrupt, 1, 12)
[   10.896061] i8042: [10079] d4 -> i8042 (command)
[   10.896246] i8042: [10079] e6 -> i8042 (parameter)
[   10.899215] i8042: [10082] fa <- i8042 (interrupt, 1, 12)
[   10.901891] i8042: [10085] d4 -> i8042 (command)
[   10.902084] i8042: [10085] e6 -> i8042 (parameter)
[   10.904937] i8042: [10088] fa <- i8042 (interrupt, 1, 12)
[   10.904986] i8042: [10088] d4 -> i8042 (command)
[   10.905226] i8042: [10088] e6 -> i8042 (parameter)
[   10.908132] i8042: [10091] fa <- i8042 (interrupt, 1, 12)
[   10.908472] i8042: [10091] d4 -> i8042 (command)
[   10.908658] i8042: [10091] e9 -> i8042 (parameter)
[   10.911325] i8042: [10094] fa <- i8042 (interrupt, 1, 12)
[   10.912896] i8042: [10096] 3c <- i8042 (interrupt, 1, 12)
[   10.914473] i8042: [10097] 03 <- i8042 (interrupt, 1, 12)
[   10.916061] i8042: [10099] 00 <- i8042 (interrupt, 1, 12)
[   10.916103] i8042: [10099] d4 -> i8042 (command)
[   10.916287] i8042: [10099] e6 -> i8042 (parameter)
[   10.919283] i8042: [10102] fa <- i8042 (interrupt, 1, 12)
[   10.919486] i8042: [10102] d4 -> i8042 (command)
[   10.919728] i8042: [10102] e8 -> i8042 (parameter)
[   10.922469] i8042: [10105] fa <- i8042 (interrupt, 1, 12)
[   10.922509] i8042: [10105] d4 -> i8042 (command)
[   10.922696] i8042: [10105] 00 -> i8042 (parameter)
[   10.925660] i8042: [10108] fa <- i8042 (interrupt, 1, 12)
[   10.925700] i8042: [10108] d4 -> i8042 (command)
[   10.925887] i8042: [10109] e8 -> i8042 (parameter)
[   10.928852] i8042: [10111] fa <- i8042 (interrupt, 1, 12)
[   10.928891] i8042: [10112] d4 -> i8042 (command)
[   10.929133] i8042: [10112] 00 -> i8042 (parameter)
[   10.932046] i8042: [10115] fa <- i8042 (interrupt, 1, 12)
[   10.932097] i8042: [10115] d4 -> i8042 (command)
[   10.932336] i8042: [10115] e8 -> i8042 (parameter)
[   10.935239] i8042: [10118] fa <- i8042 (interrupt, 1, 12)
[   10.935290] i8042: [10118] d4 -> i8042 (command)
[   10.935532] i8042: [10118] 00 -> i8042 (parameter)
[   10.938447] i8042: [10121] fa <- i8042 (interrupt, 1, 12)
[   10.938572] i8042: [10121] d4 -> i8042 (command)
[   10.938811] i8042: [10121] e8 -> i8042 (parameter)
[   10.941629] i8042: [10124] fa <- i8042 (interrupt, 1, 12)
[   10.941689] i8042: [10124] d4 -> i8042 (command)
[   10.941875] i8042: [10125] 01 -> i8042 (parameter)
[   10.944819] i8042: [10127] fa <- i8042 (interrupt, 1, 12)
[   10.945916] i8042: [10129] d4 -> i8042 (command)
[   10.946109] i8042: [10129] e9 -> i8042 (parameter)
[   10.949044] i8042: [10132] fa <- i8042 (interrupt, 1, 12)
[   10.950594] i8042: [10133] 5e <- i8042 (interrupt, 1, 12)
[   10.952177] i8042: [10135] 0f <- i8042 (interrupt, 1, 12)
[   10.953759] i8042: [10136] 01 <- i8042 (interrupt, 1, 12)
[   10.955438] i8042: [10138] d4 -> i8042 (command)
[   10.955633] i8042: [10138] ff -> i8042 (parameter)
[   10.958488] i8042: [10141] fa <- i8042 (interrupt, 1, 12)
[   11.059472] i8042: [10242] aa <- i8042 (interrupt, 1, 12)
[   11.061047] i8042: [10244] 00 <- i8042 (interrupt, 1, 12)
[   11.061092] i8042: [10244] d4 -> i8042 (command)
[   11.061278] i8042: [10244] e6 -> i8042 (parameter)
[   11.064255] i8042: [10247] fa <- i8042 (interrupt, 1, 12)
[   11.064447] i8042: [10247] d4 -> i8042 (command)
[   11.064634] i8042: [10247] e8 -> i8042 (parameter)
[   11.067449] i8042: [10250] fa <- i8042 (interrupt, 1, 12)
[   11.067505] i8042: [10250] d4 -> i8042 (command)
[   11.067692] i8042: [10250] 00 -> i8042 (parameter)
[   11.070642] i8042: [10253] fa <- i8042 (interrupt, 1, 12)
[   11.072890] i8042: [10256] d4 -> i8042 (command)
[   11.073136] i8042: [10256] e8 -> i8042 (parameter)
[   11.075862] i8042: [10259] fa <- i8042 (interrupt, 1, 12)
[   11.075901] i8042: [10259] d4 -> i8042 (command)
[   11.076142] i8042: [10259] 00 -> i8042 (parameter)
[   11.079058] i8042: [10262] fa <- i8042 (interrupt, 1, 12)
[   11.080102] i8042: [10263] d4 -> i8042 (command)
[   11.080292] i8042: [10263] e8 -> i8042 (parameter)
[   11.083248] i8042: [10266] fa <- i8042 (interrupt, 1, 12)
[   11.083741] i8042: [10266] d4 -> i8042 (command)
[   11.083935] i8042: [10267] 00 -> i8042 (parameter)
[   11.086442] i8042: [10269] fa <- i8042 (interrupt, 1, 12)
[   11.086488] i8042: [10269] d4 -> i8042 (command)
[   11.086675] i8042: [10269] e8 -> i8042 (parameter)
[   11.089633] i8042: [10272] fa <- i8042 (interrupt, 1, 12)
[   11.089677] i8042: [10272] d4 -> i8042 (command)
[   11.089862] i8042: [10273] 01 -> i8042 (parameter)
[   11.092827] i8042: [10275] fa <- i8042 (interrupt, 1, 12)
[   11.095131] i8042: [10278] d4 -> i8042 (command)
[   11.095320] i8042: [10278] e9 -> i8042 (parameter)
[   11.098039] i8042: [10281] fa <- i8042 (interrupt, 1, 12)
[   11.099604] i8042: [10282] 5e <- i8042 (interrupt, 1, 12)
[   11.101191] i8042: [10284] 0f <- i8042 (interrupt, 1, 12)
[   11.102769] i8042: [10285] 01 <- i8042 (interrupt, 1, 12)
[   11.102808] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x5e0f01)
[   11.102827] i8042: [10285] d4 -> i8042 (command)
[   11.103010] i8042: [10286] f8 -> i8042 (parameter)
[   11.105980] i8042: [10289] fa <- i8042 (interrupt, 1, 12)
[   11.106150] i8042: [10289] d4 -> i8042 (command)
[   11.106337] i8042: [10289] 02 -> i8042 (parameter)
[   11.109167] i8042: [10292] fa <- i8042 (interrupt, 1, 12)
[   11.109213] i8042: [10292] d4 -> i8042 (command)
[   11.109456] i8042: [10292] e9 -> i8042 (parameter)
[   11.112361] i8042: [10295] fa <- i8042 (interrupt, 1, 12)
[   11.113928] i8042: [10297] 41 <- i8042 (interrupt, 1, 12)
[   11.115509] i8042: [10298] 12 <- i8042 (interrupt, 1, 12)
[   11.117091] i8042: [10300] 09 <- i8042 (interrupt, 1, 12)
[   11.117125] psmouse serio1: elantech: Synaptics capabilities query result 0x41, 0x12, 0x09.
[   11.117142] i8042: [10300] d4 -> i8042 (command)
[   11.117381] i8042: [10300] f8 -> i8042 (parameter)
[   11.120302] i8042: [10303] fa <- i8042 (interrupt, 1, 12)
[   11.120345] i8042: [10303] d4 -> i8042 (command)
[   11.120532] i8042: [10303] 03 -> i8042 (parameter)
[   11.123506] i8042: [10306] fa <- i8042 (interrupt, 1, 12)
[   11.123725] i8042: [10306] d4 -> i8042 (command)
[   11.123913] i8042: [10307] e9 -> i8042 (parameter)
[   11.126683] i8042: [10309] fa <- i8042 (interrupt, 1, 12)
[   11.128253] i8042: [10311] 06 <- i8042 (interrupt, 1, 12)
[   11.129836] i8042: [10312] 4e <- i8042 (interrupt, 1, 12)
[   11.131415] i8042: [10314] 97 <- i8042 (interrupt, 1, 12)
[   11.132074] psmouse serio1: elantech: Elan sample query result 06, 4e, 97
[   11.132099] i8042: [10315] d4 -> i8042 (command)
[   11.132284] i8042: [10315] f8 -> i8042 (parameter)
[   11.135127] i8042: [10318] fa <- i8042 (interrupt, 1, 12)
[   11.135883] i8042: [10319] d4 -> i8042 (command)
[   11.136075] i8042: [10319] 04 -> i8042 (parameter)
[   11.138829] i8042: [10321] fa <- i8042 (interrupt, 1, 12)
[   11.138909] i8042: [10322] d4 -> i8042 (command)
[   11.139096] i8042: [10322] e9 -> i8042 (parameter)
[   11.142018] i8042: [10325] fa <- i8042 (interrupt, 1, 12)
[   11.143586] i8042: [10326] 06 <- i8042 (interrupt, 1, 12)
[   11.145165] i8042: [10328] 11 <- i8042 (interrupt, 1, 12)
[   11.146748] i8042: [10329] 00 <- i8042 (interrupt, 1, 12)
[   11.146786] i8042: [10329] d4 -> i8042 (command)
[   11.147027] i8042: [10330] f8 -> i8042 (parameter)
[   11.149957] i8042: [10333] fa <- i8042 (interrupt, 1, 12)
[   11.150002] i8042: [10333] d4 -> i8042 (command)
[   11.150188] i8042: [10333] 00 -> i8042 (parameter)
[   11.153156] i8042: [10336] fa <- i8042 (interrupt, 1, 12)
[   11.155259] i8042: [10338] d4 -> i8042 (command)
[   11.155449] i8042: [10338] e9 -> i8042 (parameter)
[   11.158367] i8042: [10341] fa <- i8042 (interrupt, 1, 12)
[   11.159929] i8042: [10343] 4a <- i8042 (interrupt, 1, 12)
[   11.161511] i8042: [10344] 0e <- i8042 (interrupt, 1, 12)
[   11.163090] i8042: [10346] da <- i8042 (interrupt, 1, 12)
[   11.163185] i8042: [10346] d4 -> i8042 (command)
[   11.163370] i8042: [10346] f8 -> i8042 (parameter)
[   11.166300] i8042: [10349] fa <- i8042 (interrupt, 1, 12)
[   11.166342] i8042: [10349] d4 -> i8042 (command)
[   11.166585] i8042: [10349] 00 -> i8042 (parameter)
[   11.169491] i8042: [10352] fa <- i8042 (interrupt, 1, 12)
[   11.169535] i8042: [10352] d4 -> i8042 (command)
[   11.169775] i8042: [10352] f8 -> i8042 (parameter)
[   11.172692] i8042: [10355] fa <- i8042 (interrupt, 1, 12)
[   11.172742] i8042: [10355] d4 -> i8042 (command)
[   11.172985] i8042: [10356] 07 -> i8042 (parameter)
[   11.175885] i8042: [10359] fa <- i8042 (interrupt, 1, 12)
[   11.175930] i8042: [10359] d4 -> i8042 (command)
[   11.176172] i8042: [10359] f8 -> i8042 (parameter)
[   11.179070] i8042: [10362] fa <- i8042 (interrupt, 1, 12)
[   11.179110] i8042: [10362] d4 -> i8042 (command)
[   11.179352] i8042: [10362] 00 -> i8042 (parameter)
[   11.182262] i8042: [10365] fa <- i8042 (interrupt, 1, 12)
[   11.182304] i8042: [10365] d4 -> i8042 (command)
[   11.182545] i8042: [10365] f8 -> i8042 (parameter)
[   11.185467] i8042: [10368] fa <- i8042 (interrupt, 1, 12)
[   11.186065] i8042: [10369] d4 -> i8042 (command)
[   11.186310] i8042: [10369] 01 -> i8042 (parameter)
[   11.189152] i8042: [10372] fa <- i8042 (interrupt, 1, 12)
[   11.190985] i8042: [10374] d4 -> i8042 (command)
[   11.191175] i8042: [10374] e6 -> i8042 (parameter)
[   11.193860] i8042: [10377] fa <- i8042 (interrupt, 1, 12)
[   11.230454] i8042: [10413] d4 -> i8042 (command)
[   11.230647] i8042: [10413] f3 -> i8042 (parameter)
[   11.233385] i8042: [10416] fa <- i8042 (interrupt, 1, 12)
[   11.233423] i8042: [10416] d4 -> i8042 (command)
[   11.233610] i8042: [10416] 64 -> i8042 (parameter)
[   11.236577] i8042: [10419] fa <- i8042 (interrupt, 1, 12)
[   11.236633] i8042: [10419] d4 -> i8042 (command)
[   11.236876] i8042: [10420] e8 -> i8042 (parameter)
[   11.239770] i8042: [10422] fa <- i8042 (interrupt, 1, 12)
[   11.239939] i8042: [10423] d4 -> i8042 (command)
[   11.240023] wlan0: authenticate with c8:9e:43:94:32:f2
[   11.240125] i8042: [10423] 03 -> i8042 (parameter)
[   11.242963] i8042: [10426] fa <- i8042 (interrupt, 1, 12)
[   11.243376] i8042: [10426] d4 -> i8042 (command)
[   11.243569] i8042: [10426] e6 -> i8042 (parameter)
[   11.246154] i8042: [10429] fa <- i8042 (interrupt, 1, 12)
[   11.247176] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input22
[   11.249685] wlan0: send auth to c8:9e:43:94:32:f2 (try 1/3)
[   11.254892] i8042: [10438] d4 -> i8042 (command)
[   11.255142] i8042: [10438] f4 -> i8042 (parameter)
[   11.257932] i8042: [10441] fa <- i8042 (interrupt, 1, 12)
[   11.257954] wlan0: authenticated
[   11.258892] wlan0: associate with c8:9e:43:94:32:f2 (try 1/3)
[   11.260331] wlan0: RX AssocResp from c8:9e:43:94:32:f2 (capab=0x11 status=0 aid=29)
[   11.277992] wlan0: associated
[   11.675762] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
[   11.774730] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   11.777963] wlan0: dropped frame to c8:9e:43:94:32:f2 (unauthorized port)
[   11.854439] usb 1-7: GPIO lookup for consumer reset
[   11.854451] usb 1-7: using ACPI for GPIO lookup
[   11.854455] acpi device:19: GPIO: looking up reset-gpios
[   11.854459] acpi device:19: GPIO: looking up reset-gpio
[   11.854461] usb 1-7: using lookup tables for GPIO lookup
[   11.854464] usb 1-7: No GPIO consumer reset found
[   11.858754] Bluetooth: btintel_version_info() hci0: Firmware revision 0.1 build 197 week 12 2021
[   11.859788] usbcore: registered new interface driver btusb
[   11.876997] Bluetooth: btintel_read_debug_features() hci0: Reading supported features failed (-16)
[   11.877016] Bluetooth: btintel_register_devcoredump_support() hci0: Error reading debug features
[   11.901952] 8021q: 802.1Q VLAN Support v1.8
[   12.003482] usb 1-8: GPIO lookup for consumer privacy
[   12.003494] usb 1-8: using ACPI for GPIO lookup
[   12.003499] acpi device:1a: GPIO: looking up privacy-gpios
[   12.003503] acpi device:1a: GPIO: looking up privacy-gpio
[   12.003505] usb 1-8: using lookup tables for GPIO lookup
[   12.003508] usb 1-8: No GPIO consumer privacy found
[   12.003511] usb 1-8: Found UVC 1.00 device Lenovo EasyCamera (04f2:b5a2)
[   12.010837] NET: Registered PF_ALG protocol family
[   12.103517] usbcore: registered new interface driver uvcvideo
[   12.190271] Bluetooth: rfcomm_init_sockets() RFCOMM socket layer initialized
[   12.190351] Bluetooth: rfcomm_init() RFCOMM ver 1.11
[   12.305957] IPv6: ADDRCONF(NETDEV_CHANGE): arc_ns0: link becomes ready
[   12.306092] IPv6: ADDRCONF(NETDEV_CHANGE): veth0: link becomes ready
[   12.335109] loop5: detected capacity change from 0 to 34640
[   12.377119] device-mapper: verity: sha256 using implementation "sha256-ni"
[   12.690109] IPv6: ADDRCONF(NETDEV_CHANGE): veth1: link becomes ready
[   13.454001] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   13.485383] init: send-boot-elog-metrics main process (3464) terminated with status 1
[   13.493097] loop6: detected capacity change from 0 to 14400
[   13.550594] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   13.663216] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   14.000042] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.055372] zram: Added device: zram0
[   14.161536] zram0: detected capacity change from 0 to 15258992
[   14.165496] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.188771] Adding 7629492k swap on /dev/zram0.  Priority:-2 extents:1 across:7629492k SS
[   14.194760] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.217763] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.240960] Lockdown: ectool: raw io port access is restricted; see man kernel_lockdown.7
[   14.252505] Lockdown: cbmem: /dev/mem,kmem,port is restricted; see man kernel_lockdown.7
[   14.262632] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   14.422265] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   14.422373] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   15.330839] i8042: [14513] ** <- i8042 (interrupt, 0, 1)
[   15.409870] i8042: [14592] ** <- i8042 (interrupt, 0, 1)
[   15.491296] i8042: [14674] ** <- i8042 (interrupt, 0, 1)
[   15.588625] i8042: [14771] ** <- i8042 (interrupt, 0, 1)
[   16.276438] i8042: [15459] ** <- i8042 (interrupt, 0, 1)
[   16.345590] i8042: [15528] ** <- i8042 (interrupt, 0, 1)
[   16.396836] i8042: [15579] ** <- i8042 (interrupt, 0, 1)
[   16.414462] i8042: [15597] ** <- i8042 (interrupt, 0, 1)
[   16.452347] i8042: [15635] ** <- i8042 (interrupt, 0, 1)
[   16.508255] i8042: [15691] ** <- i8042 (interrupt, 0, 1)
[   16.573003] i8042: [15756] ** <- i8042 (interrupt, 0, 1)
[   16.623786] i8042: [15806] ** <- i8042 (interrupt, 0, 1)
[   16.679859] i8042: [15862] ** <- i8042 (interrupt, 0, 1)
[   16.735078] i8042: [15918] ** <- i8042 (interrupt, 0, 1)
[   16.780563] i8042: [15963] ** <- i8042 (interrupt, 0, 1)
[   16.841047] i8042: [16024] ** <- i8042 (interrupt, 0, 1)
[   17.327484] i8042: [16510] ** <- i8042 (interrupt, 0, 1)
[   17.397157] i8042: [16580] ** <- i8042 (interrupt, 0, 1)
[   17.457373] i8042: [16640] ** <- i8042 (interrupt, 0, 1)
[   17.540986] i8042: [16724] ** <- i8042 (interrupt, 0, 1)
[   18.740281] i8042: [17923] 44 <- i8042 (interrupt, 1, 12)
[   18.741851] i8042: [17924] 01 <- i8042 (interrupt, 1, 12)
[   18.743438] i8042: [17926] 00 <- i8042 (interrupt, 1, 12)
[   18.745022] i8042: [17928] 10 <- i8042 (interrupt, 1, 12)
[   18.746617] i8042: [17929] 00 <- i8042 (interrupt, 1, 12)
[   18.748188] i8042: [17931] 00 <- i8042 (interrupt, 1, 12)
[   18.749769] i8042: [17932] 44 <- i8042 (interrupt, 1, 12)
[   18.751099] i8042: [17934] 07 <- i8042 (interrupt, 1, 12)
[   18.752933] i8042: [17936] 5f <- i8042 (interrupt, 1, 12)
[   18.754326] i8042: [17937] 31 <- i8042 (interrupt, 1, 12)
[   18.756104] i8042: [17939] 82 <- i8042 (interrupt, 1, 12)
[   18.757680] i8042: [17940] b6 <- i8042 (interrupt, 1, 12)
[   18.759272] i8042: [17942] 44 <- i8042 (interrupt, 1, 12)
[   18.760852] i8042: [17943] 07 <- i8042 (interrupt, 1, 12)
[   18.762443] i8042: [17945] 5f <- i8042 (interrupt, 1, 12)
[   18.764015] i8042: [17947] 31 <- i8042 (interrupt, 1, 12)
[   18.765414] i8042: [17948] 82 <- i8042 (interrupt, 1, 12)
[   18.767034] i8042: [17950] b6 <- i8042 (interrupt, 1, 12)
[   18.768516] i8042: [17951] 44 <- i8042 (interrupt, 1, 12)
[   18.770354] i8042: [17953] 17 <- i8042 (interrupt, 1, 12)
[   18.771935] i8042: [17955] 5f <- i8042 (interrupt, 1, 12)
[   18.773527] i8042: [17956] 31 <- i8042 (interrupt, 1, 12)
[   18.775101] i8042: [17958] 12 <- i8042 (interrupt, 1, 12)
[   18.776680] i8042: [17959] b6 <- i8042 (interrupt, 1, 12)
[   18.778263] i8042: [17961] 44 <- i8042 (interrupt, 1, 12)
[   18.779673] i8042: [17962] 17 <- i8042 (interrupt, 1, 12)
[   18.781235] i8042: [17964] 5f <- i8042 (interrupt, 1, 12)
[   18.782839] i8042: [17965] 31 <- i8042 (interrupt, 1, 12)
[   18.784597] i8042: [17967] 32 <- i8042 (interrupt, 1, 12)
[   18.786178] i8042: [17969] b6 <- i8042 (interrupt, 1, 12)
[   18.787762] i8042: [17970] 44 <- i8042 (interrupt, 1, 12)
[   18.789350] i8042: [17972] 17 <- i8042 (interrupt, 1, 12)
[   18.790928] i8042: [17974] 5f <- i8042 (interrupt, 1, 12)
[   18.792510] i8042: [17975] 31 <- i8042 (interrupt, 1, 12)
[   18.793927] i8042: [17977] 52 <- i8042 (interrupt, 1, 12)
[   18.795680] i8042: [17978] b6 <- i8042 (interrupt, 1, 12)
[   18.797274] i8042: [17980] 44 <- i8042 (interrupt, 1, 12)
[   18.798665] i8042: [17981] 17 <- i8042 (interrupt, 1, 12)
[   18.800426] i8042: [17983] 51 <- i8042 (interrupt, 1, 12)
[   18.801837] i8042: [17984] 31 <- i8042 (interrupt, 1, 12)
[   18.803591] i8042: [17986] 72 <- i8042 (interrupt, 1, 12)
[   18.805008] i8042: [17988] b8 <- i8042 (interrupt, 1, 12)
[   18.806462] i8042: [17989] 44 <- i8042 (interrupt, 1, 12)
[   18.808116] i8042: [17991] 17 <- i8042 (interrupt, 1, 12)
[   18.809678] i8042: [17992] 4b <- i8042 (interrupt, 1, 12)
[   18.811274] i8042: [17994] 31 <- i8042 (interrupt, 1, 12)
[   18.812859] i8042: [17995] 72 <- i8042 (interrupt, 1, 12)
[   18.814374] i8042: [17997] b7 <- i8042 (interrupt, 1, 12)
[   18.815996] i8042: [17999] 44 <- i8042 (interrupt, 1, 12)
[   18.817542] i8042: [18000] 17 <- i8042 (interrupt, 1, 12)
[   18.819190] i8042: [18002] 45 <- i8042 (interrupt, 1, 12)
[   18.820752] i8042: [18003] 31 <- i8042 (interrupt, 1, 12)
[   18.822324] i8042: [18005] 72 <- i8042 (interrupt, 1, 12)
[   18.823912] i8042: [18007] b7 <- i8042 (interrupt, 1, 12)
[   18.825454] i8042: [18008] 44 <- i8042 (interrupt, 1, 12)
[   18.827034] i8042: [18010] 17 <- i8042 (interrupt, 1, 12)
[   18.828681] i8042: [18011] 3e <- i8042 (interrupt, 1, 12)
[   18.830230] i8042: [18013] 31 <- i8042 (interrupt, 1, 12)
[   18.831826] i8042: [18014] 72 <- i8042 (interrupt, 1, 12)
[   18.833393] i8042: [18016] b8 <- i8042 (interrupt, 1, 12)
[   18.834957] i8042: [18018] 44 <- i8042 (interrupt, 1, 12)
[   18.836561] i8042: [18019] 17 <- i8042 (interrupt, 1, 12)
[   18.838144] i8042: [18021] 37 <- i8042 (interrupt, 1, 12)
[   18.839729] i8042: [18022] 31 <- i8042 (interrupt, 1, 12)
[   18.841309] i8042: [18024] 92 <- i8042 (interrupt, 1, 12)
[   18.842909] i8042: [18026] b8 <- i8042 (interrupt, 1, 12)
[   18.844480] i8042: [18027] 44 <- i8042 (interrupt, 1, 12)
[   18.846066] i8042: [18029] 17 <- i8042 (interrupt, 1, 12)
[   18.847645] i8042: [18030] 2f <- i8042 (interrupt, 1, 12)
[   18.849230] i8042: [18032] 31 <- i8042 (interrupt, 1, 12)
[   18.850827] i8042: [18033] 92 <- i8042 (interrupt, 1, 12)
[   18.852365] i8042: [18035] b9 <- i8042 (interrupt, 1, 12)
[   18.853945] i8042: [18037] 54 <- i8042 (interrupt, 1, 12)
[   18.855525] i8042: [18038] 17 <- i8042 (interrupt, 1, 12)
[   18.857122] i8042: [18040] 29 <- i8042 (interrupt, 1, 12)
[   18.858693] i8042: [18041] 31 <- i8042 (interrupt, 1, 12)
[   18.860271] i8042: [18043] 92 <- i8042 (interrupt, 1, 12)
[   18.861854] i8042: [18044] ba <- i8042 (interrupt, 1, 12)
[   18.863439] i8042: [18046] 44 <- i8042 (interrupt, 1, 12)
[   18.865020] i8042: [18048] 17 <- i8042 (interrupt, 1, 12)
[   18.866605] i8042: [18049] 20 <- i8042 (interrupt, 1, 12)
[   18.868194] i8042: [18051] 31 <- i8042 (interrupt, 1, 12)
[   18.869768] i8042: [18052] 92 <- i8042 (interrupt, 1, 12)
[   18.871353] i8042: [18054] bb <- i8042 (interrupt, 1, 12)
[   18.872955] i8042: [18056] 44 <- i8042 (interrupt, 1, 12)
[   18.874523] i8042: [18057] 17 <- i8042 (interrupt, 1, 12)
[   18.876129] i8042: [18059] 15 <- i8042 (interrupt, 1, 12)
[   18.877721] i8042: [18060] 31 <- i8042 (interrupt, 1, 12)
[   18.879374] i8042: [18062] 92 <- i8042 (interrupt, 1, 12)
[   18.880986] i8042: [18064] ba <- i8042 (interrupt, 1, 12)
[   18.882478] i8042: [18065] 44 <- i8042 (interrupt, 1, 12)
[   18.884068] i8042: [18067] 17 <- i8042 (interrupt, 1, 12)
[   18.885716] i8042: [18068] 07 <- i8042 (interrupt, 1, 12)
[   18.887306] i8042: [18070] 31 <- i8042 (interrupt, 1, 12)
[   18.888889] i8042: [18072] 92 <- i8042 (interrupt, 1, 12)
[   18.890358] i8042: [18073] b7 <- i8042 (interrupt, 1, 12)
[   18.891986] i8042: [18075] 44 <- i8042 (interrupt, 1, 12)
[   18.893649] i8042: [18076] 16 <- i8042 (interrupt, 1, 12)
[   18.895144] i8042: [18078] f9 <- i8042 (interrupt, 1, 12)
[   18.896794] i8042: [18079] 31 <- i8042 (interrupt, 1, 12)
[   18.898309] i8042: [18081] 92 <- i8042 (interrupt, 1, 12)
[   18.899970] i8042: [18083] b4 <- i8042 (interrupt, 1, 12)
[   18.901508] i8042: [18084] 44 <- i8042 (interrupt, 1, 12)
[   18.903061] i8042: [18086] 16 <- i8042 (interrupt, 1, 12)
[   18.904710] i8042: [18087] ef <- i8042 (interrupt, 1, 12)
[   18.906265] i8042: [18089] 31 <- i8042 (interrupt, 1, 12)
[   18.907882] i8042: [18091] a2 <- i8042 (interrupt, 1, 12)
[   18.909456] i8042: [18092] b3 <- i8042 (interrupt, 1, 12)
[   18.910970] i8042: [18094] 44 <- i8042 (interrupt, 1, 12)
[   18.912587] i8042: [18095] 16 <- i8042 (interrupt, 1, 12)
[   18.914174] i8042: [18097] e5 <- i8042 (interrupt, 1, 12)
[   18.915792] i8042: [18098] 31 <- i8042 (interrupt, 1, 12)
[   18.917371] i8042: [18100] a2 <- i8042 (interrupt, 1, 12)
[   18.918966] i8042: [18102] b1 <- i8042 (interrupt, 1, 12)
[   18.920499] i8042: [18103] 44 <- i8042 (interrupt, 1, 12)
[   18.922015] i8042: [18105] 16 <- i8042 (interrupt, 1, 12)
[   18.923674] i8042: [18106] dc <- i8042 (interrupt, 1, 12)
[   18.925280] i8042: [18108] 31 <- i8042 (interrupt, 1, 12)
[   18.926884] i8042: [18110] a2 <- i8042 (interrupt, 1, 12)
[   18.928449] i8042: [18111] ae <- i8042 (interrupt, 1, 12)
[   18.929924] i8042: [18112] 44 <- i8042 (interrupt, 1, 12)
[   18.931585] i8042: [18114] 16 <- i8042 (interrupt, 1, 12)
[   18.933169] i8042: [18116] d3 <- i8042 (interrupt, 1, 12)
[   18.934781] i8042: [18117] 31 <- i8042 (interrupt, 1, 12)
[   18.936365] i8042: [18119] a2 <- i8042 (interrupt, 1, 12)
[   18.937947] i8042: [18121] ac <- i8042 (interrupt, 1, 12)
[   18.939418] i8042: [18122] 44 <- i8042 (interrupt, 1, 12)
[   18.941013] i8042: [18124] 16 <- i8042 (interrupt, 1, 12)
[   18.942655] i8042: [18125] ca <- i8042 (interrupt, 1, 12)
[   18.944284] i8042: [18127] 31 <- i8042 (interrupt, 1, 12)
[   18.945863] i8042: [18128] a2 <- i8042 (interrupt, 1, 12)
[   18.947459] i8042: [18130] aa <- i8042 (interrupt, 1, 12)
[   18.948914] i8042: [18132] 44 <- i8042 (interrupt, 1, 12)
[   18.950577] i8042: [18133] 16 <- i8042 (interrupt, 1, 12)
[   18.952119] i8042: [18135] c2 <- i8042 (interrupt, 1, 12)
[   18.953772] i8042: [18136] 31 <- i8042 (interrupt, 1, 12)
[   18.955351] i8042: [18138] a2 <- i8042 (interrupt, 1, 12)
[   18.956962] i8042: [18140] a8 <- i8042 (interrupt, 1, 12)
[   18.958411] i8042: [18141] 44 <- i8042 (interrupt, 1, 12)
[   18.960015] i8042: [18143] 16 <- i8042 (interrupt, 1, 12)
[   18.961688] i8042: [18144] bb <- i8042 (interrupt, 1, 12)
[   18.963194] i8042: [18146] 31 <- i8042 (interrupt, 1, 12)
[   18.964790] i8042: [18147] a2 <- i8042 (interrupt, 1, 12)
[   18.966375] i8042: [18149] a5 <- i8042 (interrupt, 1, 12)
[   18.967930] i8042: [18151] 44 <- i8042 (interrupt, 1, 12)
[   18.969489] i8042: [18152] 16 <- i8042 (interrupt, 1, 12)
[   18.971109] i8042: [18154] b4 <- i8042 (interrupt, 1, 12)
[   18.972657] i8042: [18155] 31 <- i8042 (interrupt, 1, 12)
[   18.974243] i8042: [18157] a2 <- i8042 (interrupt, 1, 12)
[   18.975827] i8042: [18158] a2 <- i8042 (interrupt, 1, 12)
[   18.977480] i8042: [18160] 44 <- i8042 (interrupt, 1, 12)
[   18.979028] i8042: [18162] 16 <- i8042 (interrupt, 1, 12)
[   18.980647] i8042: [18163] ad <- i8042 (interrupt, 1, 12)
[   18.982243] i8042: [18165] 31 <- i8042 (interrupt, 1, 12)
[   18.983850] i8042: [18166] a2 <- i8042 (interrupt, 1, 12)
[   18.985421] i8042: [18168] a0 <- i8042 (interrupt, 1, 12)
[   18.986974] i8042: [18170] 44 <- i8042 (interrupt, 1, 12)
[   18.988535] i8042: [18171] 16 <- i8042 (interrupt, 1, 12)
[   18.990121] i8042: [18173] a7 <- i8042 (interrupt, 1, 12)
[   18.991767] i8042: [18174] 31 <- i8042 (interrupt, 1, 12)
[   18.993350] i8042: [18176] a2 <- i8042 (interrupt, 1, 12)
[   18.994831] i8042: [18177] 9e <- i8042 (interrupt, 1, 12)
[   18.996479] i8042: [18179] 44 <- i8042 (interrupt, 1, 12)
[   18.998106] i8042: [18181] 16 <- i8042 (interrupt, 1, 12)
[   18.999685] i8042: [18182] a0 <- i8042 (interrupt, 1, 12)
[   19.001285] i8042: [18184] 31 <- i8042 (interrupt, 1, 12)
[   19.002853] i8042: [18185] 92 <- i8042 (interrupt, 1, 12)
[   19.004432] i8042: [18187] 9d <- i8042 (interrupt, 1, 12)
[   19.005969] i8042: [18189] 44 <- i8042 (interrupt, 1, 12)
[   19.007599] i8042: [18190] 16 <- i8042 (interrupt, 1, 12)
[   19.009122] i8042: [18192] 9b <- i8042 (interrupt, 1, 12)
[   19.010767] i8042: [18193] 31 <- i8042 (interrupt, 1, 12)
[   19.012344] i8042: [18195] 92 <- i8042 (interrupt, 1, 12)
[   19.013905] i8042: [18197] 99 <- i8042 (interrupt, 1, 12)
[   19.015475] i8042: [18198] 44 <- i8042 (interrupt, 1, 12)
[   19.017027] i8042: [18200] 16 <- i8042 (interrupt, 1, 12)
[   19.018680] i8042: [18201] 96 <- i8042 (interrupt, 1, 12)
[   19.020268] i8042: [18203] 31 <- i8042 (interrupt, 1, 12)
[   19.021853] i8042: [18204] 92 <- i8042 (interrupt, 1, 12)
[   19.023432] i8042: [18206] 96 <- i8042 (interrupt, 1, 12)
[   19.024943] i8042: [18208] 54 <- i8042 (interrupt, 1, 12)
[   19.026599] i8042: [18209] 16 <- i8042 (interrupt, 1, 12)
[   19.028187] i8042: [18211] 91 <- i8042 (interrupt, 1, 12)
[   19.029762] i8042: [18212] 31 <- i8042 (interrupt, 1, 12)
[   19.031364] i8042: [18214] 92 <- i8042 (interrupt, 1, 12)
[   19.032934] i8042: [18216] 94 <- i8042 (interrupt, 1, 12)
[   19.034399] i8042: [18217] 54 <- i8042 (interrupt, 1, 12)
[   19.036099] i8042: [18219] 16 <- i8042 (interrupt, 1, 12)
[   19.037678] i8042: [18220] 8b <- i8042 (interrupt, 1, 12)
[   19.039261] i8042: [18222] 31 <- i8042 (interrupt, 1, 12)
[   19.040844] i8042: [18223] 92 <- i8042 (interrupt, 1, 12)
[   19.042428] i8042: [18225] 92 <- i8042 (interrupt, 1, 12)
[   19.043901] i8042: [18227] 54 <- i8042 (interrupt, 1, 12)
[   19.045527] i8042: [18228] 16 <- i8042 (interrupt, 1, 12)
[   19.047072] i8042: [18230] 84 <- i8042 (interrupt, 1, 12)
[   19.048758] i8042: [18231] 31 <- i8042 (interrupt, 1, 12)
[   19.050344] i8042: [18233] 92 <- i8042 (interrupt, 1, 12)
[   19.051929] i8042: [18235] 90 <- i8042 (interrupt, 1, 12)
[   19.053397] i8042: [18236] 54 <- i8042 (interrupt, 1, 12)
[   19.055013] i8042: [18238] 16 <- i8042 (interrupt, 1, 12)
[   19.056655] i8042: [18239] 7b <- i8042 (interrupt, 1, 12)
[   19.058257] i8042: [18241] 31 <- i8042 (interrupt, 1, 12)
[   19.059848] i8042: [18242] a2 <- i8042 (interrupt, 1, 12)
[   19.061421] i8042: [18244] 8f <- i8042 (interrupt, 1, 12)
[   19.062904] i8042: [18246] 54 <- i8042 (interrupt, 1, 12)
[   19.064531] i8042: [18247] 16 <- i8042 (interrupt, 1, 12)
[   19.066071] i8042: [18249] 74 <- i8042 (interrupt, 1, 12)
[   19.067748] i8042: [18250] 31 <- i8042 (interrupt, 1, 12)
[   19.069337] i8042: [18252] a2 <- i8042 (interrupt, 1, 12)
[   19.070921] i8042: [18254] 8e <- i8042 (interrupt, 1, 12)
[   19.072445] i8042: [18255] 44 <- i8042 (interrupt, 1, 12)
[   19.074015] i8042: [18257] 16 <- i8042 (interrupt, 1, 12)
[   19.075648] i8042: [18258] 6e <- i8042 (interrupt, 1, 12)
[   19.077250] i8042: [18260] 31 <- i8042 (interrupt, 1, 12)
[   19.078842] i8042: [18261] a2 <- i8042 (interrupt, 1, 12)
[   19.080419] i8042: [18263] 8d <- i8042 (interrupt, 1, 12)
[   19.081900] i8042: [18265] 44 <- i8042 (interrupt, 1, 12)
[   19.083514] i8042: [18266] 16 <- i8042 (interrupt, 1, 12)
[   19.085172] i8042: [18268] 67 <- i8042 (interrupt, 1, 12)
[   19.086751] i8042: [18269] 31 <- i8042 (interrupt, 1, 12)
[   19.088337] i8042: [18271] a2 <- i8042 (interrupt, 1, 12)
[   19.089926] i8042: [18273] 8b <- i8042 (interrupt, 1, 12)
[   19.091438] i8042: [18274] 44 <- i8042 (interrupt, 1, 12)
[   19.093013] i8042: [18276] 16 <- i8042 (interrupt, 1, 12)
[   19.094647] i8042: [18277] 60 <- i8042 (interrupt, 1, 12)
[   19.096249] i8042: [18279] 31 <- i8042 (interrupt, 1, 12)
[   19.097830] i8042: [18280] a2 <- i8042 (interrupt, 1, 12)
[   19.099419] i8042: [18282] 89 <- i8042 (interrupt, 1, 12)
[   19.100944] i8042: [18284] 44 <- i8042 (interrupt, 1, 12)
[   19.102581] i8042: [18285] 16 <- i8042 (interrupt, 1, 12)
[   19.104165] i8042: [18287] 5d <- i8042 (interrupt, 1, 12)
[   19.105749] i8042: [18288] 31 <- i8042 (interrupt, 1, 12)
[   19.107350] i8042: [18290] a2 <- i8042 (interrupt, 1, 12)
[   19.108917] i8042: [18292] 88 <- i8042 (interrupt, 1, 12)
[   19.110433] i8042: [18293] 54 <- i8042 (interrupt, 1, 12)
[   19.112013] i8042: [18295] 16 <- i8042 (interrupt, 1, 12)
[   19.113629] i8042: [18296] 5b <- i8042 (interrupt, 1, 12)
[   19.115246] i8042: [18298] 31 <- i8042 (interrupt, 1, 12)
[   19.116828] i8042: [18299] a2 <- i8042 (interrupt, 1, 12)
[   19.118410] i8042: [18301] 86 <- i8042 (interrupt, 1, 12)
[   19.119941] i8042: [18303] 44 <- i8042 (interrupt, 1, 12)
[   19.121581] i8042: [18304] 16 <- i8042 (interrupt, 1, 12)
[   19.123154] i8042: [18306] 5a <- i8042 (interrupt, 1, 12)
[   19.124738] i8042: [18307] 31 <- i8042 (interrupt, 1, 12)
[   19.126324] i8042: [18309] a2 <- i8042 (interrupt, 1, 12)
[   19.127909] i8042: [18311] 84 <- i8042 (interrupt, 1, 12)
[   19.129417] i8042: [18312] 44 <- i8042 (interrupt, 1, 12)
[   19.131074] i8042: [18314] 16 <- i8042 (interrupt, 1, 12)
[   19.132654] i8042: [18315] 59 <- i8042 (interrupt, 1, 12)
[   19.134217] i8042: [18317] 31 <- i8042 (interrupt, 1, 12)
[   19.135818] i8042: [18318] a2 <- i8042 (interrupt, 1, 12)
[   19.137407] i8042: [18320] 84 <- i8042 (interrupt, 1, 12)
[   19.138966] i8042: [18322] 44 <- i8042 (interrupt, 1, 12)
[   19.140572] i8042: [18323] 16 <- i8042 (interrupt, 1, 12)
[   19.142079] i8042: [18325] 59 <- i8042 (interrupt, 1, 12)
[   19.143735] i8042: [18326] 31 <- i8042 (interrupt, 1, 12)
[   19.145315] i8042: [18328] 92 <- i8042 (interrupt, 1, 12)
[   19.146903] i8042: [18330] 84 <- i8042 (interrupt, 1, 12)
[   19.148477] i8042: [18331] 44 <- i8042 (interrupt, 1, 12)
[   19.150065] i8042: [18333] 16 <- i8042 (interrupt, 1, 12)
[   19.151649] i8042: [18334] 59 <- i8042 (interrupt, 1, 12)
[   19.153230] i8042: [18336] 31 <- i8042 (interrupt, 1, 12)
[   19.154808] i8042: [18337] 92 <- i8042 (interrupt, 1, 12)
[   19.156390] i8042: [18339] 84 <- i8042 (interrupt, 1, 12)
[   19.157987] i8042: [18341] 44 <- i8042 (interrupt, 1, 12)
[   19.159560] i8042: [18342] 16 <- i8042 (interrupt, 1, 12)
[   19.161069] i8042: [18344] 58 <- i8042 (interrupt, 1, 12)
[   19.162727] i8042: [18345] 31 <- i8042 (interrupt, 1, 12)
[   19.164319] i8042: [18347] 92 <- i8042 (interrupt, 1, 12)
[   19.165890] i8042: [18349] 82 <- i8042 (interrupt, 1, 12)
[   19.167400] i8042: [18350] 44 <- i8042 (interrupt, 1, 12)
[   19.169055] i8042: [18352] 16 <- i8042 (interrupt, 1, 12)
[   19.170643] i8042: [18353] 58 <- i8042 (interrupt, 1, 12)
[   19.172160] i8042: [18355] 31 <- i8042 (interrupt, 1, 12)
[   19.173803] i8042: [18356] 72 <- i8042 (interrupt, 1, 12)
[   19.175384] i8042: [18358] 82 <- i8042 (interrupt, 1, 12)
[   19.177468] i8042: [18360] 44 <- i8042 (interrupt, 1, 12)
[   19.179005] i8042: [18362] 16 <- i8042 (interrupt, 1, 12)
[   19.180634] i8042: [18363] 58 <- i8042 (interrupt, 1, 12)
[   19.182189] i8042: [18365] 31 <- i8042 (interrupt, 1, 12)
[   19.183795] i8042: [18366] 52 <- i8042 (interrupt, 1, 12)
[   19.185395] i8042: [18368] 82 <- i8042 (interrupt, 1, 12)
[   19.186968] i8042: [18370] 44 <- i8042 (interrupt, 1, 12)
[   19.188435] i8042: [18371] 16 <- i8042 (interrupt, 1, 12)
[   19.190016] i8042: [18373] 5a <- i8042 (interrupt, 1, 12)
[   19.191705] i8042: [18374] 31 <- i8042 (interrupt, 1, 12)
[   19.193222] i8042: [18376] 12 <- i8042 (interrupt, 1, 12)
[   19.194873] i8042: [18377] 80 <- i8042 (interrupt, 1, 12)
[   19.196393] i8042: [18379] 44 <- i8042 (interrupt, 1, 12)
[   19.198005] i8042: [18381] 16 <- i8042 (interrupt, 1, 12)
[   19.199617] i8042: [18382] 5a <- i8042 (interrupt, 1, 12)
[   19.201206] i8042: [18384] 31 <- i8042 (interrupt, 1, 12)
[   19.202789] i8042: [18385] 12 <- i8042 (interrupt, 1, 12)
[   19.204374] i8042: [18387] 80 <- i8042 (interrupt, 1, 12)
[   19.206456] i8042: [18389] 04 <- i8042 (interrupt, 1, 12)
[   19.208041] i8042: [18391] 00 <- i8042 (interrupt, 1, 12)
[   19.209620] i8042: [18392] 00 <- i8042 (interrupt, 1, 12)
[   19.211134] i8042: [18394] 10 <- i8042 (interrupt, 1, 12)
[   19.212785] i8042: [18395] 00 <- i8042 (interrupt, 1, 12)
[   19.214380] i8042: [18397] 00 <- i8042 (interrupt, 1, 12)
[   19.825707] i8042: [19008] ** <- i8042 (interrupt, 0, 1)
[   19.890538] i8042: [19073] ** <- i8042 (interrupt, 0, 1)
[   20.394737] fscrypt: AES-256-CTS-CBC using implementation "cts-cbc-aes-aesni"
[   20.499388] fscrypt: AES-256-XTS using implementation "xts-aes-aesni"
[   20.819048] init: vm_concierge main process (3977) terminated with status 251
[   20.819092] init: vm_concierge main process ended, respawning
[   23.667045] loop7: detected capacity change from 0 to 245760
[   24.104435] device-mapper: verity: sha256 using implementation "sha256-ni"
[   25.018440] i8042: [24201] 44 <- i8042 (interrupt, 1, 12)
[   25.019990] i8042: [24203] 01 <- i8042 (interrupt, 1, 12)
[   25.021578] i8042: [24204] 00 <- i8042 (interrupt, 1, 12)
[   25.023197] i8042: [24206] 10 <- i8042 (interrupt, 1, 12)
[   25.024803] i8042: [24207] 00 <- i8042 (interrupt, 1, 12)
[   25.026330] i8042: [24209] 00 <- i8042 (interrupt, 1, 12)
[   25.027910] i8042: [24211] 44 <- i8042 (interrupt, 1, 12)
[   25.029492] i8042: [24212] 16 <- i8042 (interrupt, 1, 12)
[   25.031076] i8042: [24214] 58 <- i8042 (interrupt, 1, 12)
[   25.032666] i8042: [24215] 31 <- i8042 (interrupt, 1, 12)
[   25.034245] i8042: [24217] 32 <- i8042 (interrupt, 1, 12)
[   25.035824] i8042: [24218] 58 <- i8042 (interrupt, 1, 12)
[   25.037410] i8042: [24220] 44 <- i8042 (interrupt, 1, 12)
[   25.038996] i8042: [24222] 16 <- i8042 (interrupt, 1, 12)
[   25.040605] i8042: [24223] 58 <- i8042 (interrupt, 1, 12)
[   25.042169] i8042: [24225] 31 <- i8042 (interrupt, 1, 12)
[   25.043747] i8042: [24226] 32 <- i8042 (interrupt, 1, 12)
[   25.045321] i8042: [24228] 58 <- i8042 (interrupt, 1, 12)
[   25.046903] i8042: [24230] 54 <- i8042 (interrupt, 1, 12)
[   25.048486] i8042: [24231] 16 <- i8042 (interrupt, 1, 12)
[   25.050071] i8042: [24233] 58 <- i8042 (interrupt, 1, 12)
[   25.051655] i8042: [24234] 31 <- i8042 (interrupt, 1, 12)
[   25.053238] i8042: [24236] f2 <- i8042 (interrupt, 1, 12)
[   25.054823] i8042: [24237] 58 <- i8042 (interrupt, 1, 12)
[   25.056401] i8042: [24239] 54 <- i8042 (interrupt, 1, 12)
[   25.057984] i8042: [24241] 26 <- i8042 (interrupt, 1, 12)
[   25.059567] i8042: [24242] 58 <- i8042 (interrupt, 1, 12)
[   25.061150] i8042: [24244] 31 <- i8042 (interrupt, 1, 12)
[   25.062732] i8042: [24245] 42 <- i8042 (interrupt, 1, 12)
[   25.064323] i8042: [24247] 58 <- i8042 (interrupt, 1, 12)
[   25.065918] i8042: [24249] 54 <- i8042 (interrupt, 1, 12)
[   25.067488] i8042: [24250] 26 <- i8042 (interrupt, 1, 12)
[   25.069075] i8042: [24252] 58 <- i8042 (interrupt, 1, 12)
[   25.070653] i8042: [24253] 31 <- i8042 (interrupt, 1, 12)
[   25.072235] i8042: [24255] 62 <- i8042 (interrupt, 1, 12)
[   25.073817] i8042: [24256] 58 <- i8042 (interrupt, 1, 12)
[   25.075417] i8042: [24258] 54 <- i8042 (interrupt, 1, 12)
[   25.077101] i8042: [24260] 26 <- i8042 (interrupt, 1, 12)
[   25.078570] i8042: [24261] 58 <- i8042 (interrupt, 1, 12)
[   25.080151] i8042: [24263] 31 <- i8042 (interrupt, 1, 12)
[   25.081736] i8042: [24264] 72 <- i8042 (interrupt, 1, 12)
[   25.083317] i8042: [24266] 58 <- i8042 (interrupt, 1, 12)
[   25.084918] i8042: [24268] 54 <- i8042 (interrupt, 1, 12)
[   25.086507] i8042: [24269] 26 <- i8042 (interrupt, 1, 12)
[   25.088083] i8042: [24271] 60 <- i8042 (interrupt, 1, 12)
[   25.089649] i8042: [24272] 31 <- i8042 (interrupt, 1, 12)
[   25.091251] i8042: [24274] 72 <- i8042 (interrupt, 1, 12)
[   25.092819] i8042: [24275] 4f <- i8042 (interrupt, 1, 12)
[   25.094409] i8042: [24277] 54 <- i8042 (interrupt, 1, 12)
[   25.095997] i8042: [24279] 26 <- i8042 (interrupt, 1, 12)
[   25.097569] i8042: [24280] 61 <- i8042 (interrupt, 1, 12)
[   25.099152] i8042: [24282] 31 <- i8042 (interrupt, 1, 12)
[   25.100740] i8042: [24283] 72 <- i8042 (interrupt, 1, 12)
[   25.102346] i8042: [24285] 4e <- i8042 (interrupt, 1, 12)
[   25.103901] i8042: [24287] 54 <- i8042 (interrupt, 1, 12)
[   25.105483] i8042: [24288] 26 <- i8042 (interrupt, 1, 12)
[   25.107077] i8042: [24290] 62 <- i8042 (interrupt, 1, 12)
[   25.108654] i8042: [24291] 31 <- i8042 (interrupt, 1, 12)
[   25.110241] i8042: [24293] 92 <- i8042 (interrupt, 1, 12)
[   25.111819] i8042: [24294] 4d <- i8042 (interrupt, 1, 12)
[   25.113400] i8042: [24296] 54 <- i8042 (interrupt, 1, 12)
[   25.114981] i8042: [24298] 26 <- i8042 (interrupt, 1, 12)
[   25.116565] i8042: [24299] 62 <- i8042 (interrupt, 1, 12)
[   25.118145] i8042: [24301] 31 <- i8042 (interrupt, 1, 12)
[   25.119728] i8042: [24302] 92 <- i8042 (interrupt, 1, 12)
[   25.121312] i8042: [24304] 4d <- i8042 (interrupt, 1, 12)
[   25.122892] i8042: [24306] 54 <- i8042 (interrupt, 1, 12)
[   25.124524] i8042: [24307] 26 <- i8042 (interrupt, 1, 12)
[   25.126055] i8042: [24309] 62 <- i8042 (interrupt, 1, 12)
[   25.127640] i8042: [24310] 31 <- i8042 (interrupt, 1, 12)
[   25.129224] i8042: [24312] 72 <- i8042 (interrupt, 1, 12)
[   25.130807] i8042: [24313] 4f <- i8042 (interrupt, 1, 12)
[   25.132386] i8042: [24315] 54 <- i8042 (interrupt, 1, 12)
[   25.133979] i8042: [24317] 26 <- i8042 (interrupt, 1, 12)
[   25.135558] i8042: [24318] 63 <- i8042 (interrupt, 1, 12)
[   25.137137] i8042: [24320] 31 <- i8042 (interrupt, 1, 12)
[   25.138754] i8042: [24321] 62 <- i8042 (interrupt, 1, 12)
[   25.140305] i8042: [24323] 50 <- i8042 (interrupt, 1, 12)
[   25.141888] i8042: [24325] 54 <- i8042 (interrupt, 1, 12)
[   25.143473] i8042: [24326] 26 <- i8042 (interrupt, 1, 12)
[   25.145065] i8042: [24328] 65 <- i8042 (interrupt, 1, 12)
[   25.146690] i8042: [24329] 31 <- i8042 (interrupt, 1, 12)
[   25.148222] i8042: [24331] 62 <- i8042 (interrupt, 1, 12)
[   25.149807] i8042: [24332] 52 <- i8042 (interrupt, 1, 12)
[   25.151388] i8042: [24334] 54 <- i8042 (interrupt, 1, 12)
[   25.152983] i8042: [24336] 26 <- i8042 (interrupt, 1, 12)
[   25.154551] i8042: [24337] 69 <- i8042 (interrupt, 1, 12)
[   25.156147] i8042: [24339] 31 <- i8042 (interrupt, 1, 12)
[   25.157718] i8042: [24340] 52 <- i8042 (interrupt, 1, 12)
[   25.159298] i8042: [24342] 55 <- i8042 (interrupt, 1, 12)
[   25.160894] i8042: [24344] 54 <- i8042 (interrupt, 1, 12)
[   25.162462] i8042: [24345] 26 <- i8042 (interrupt, 1, 12)
[   25.164045] i8042: [24347] 6b <- i8042 (interrupt, 1, 12)
[   25.165646] i8042: [24348] 31 <- i8042 (interrupt, 1, 12)
[   25.167209] i8042: [24350] 52 <- i8042 (interrupt, 1, 12)
[   25.168808] i8042: [24351] 56 <- i8042 (interrupt, 1, 12)
[   25.170373] i8042: [24353] 54 <- i8042 (interrupt, 1, 12)
[   25.171957] i8042: [24355] 26 <- i8042 (interrupt, 1, 12)
[   25.173541] i8042: [24356] 71 <- i8042 (interrupt, 1, 12)
[   25.175125] i8042: [24358] 31 <- i8042 (interrupt, 1, 12)
[   25.176712] i8042: [24359] 52 <- i8042 (interrupt, 1, 12)
[   25.178287] i8042: [24361] 57 <- i8042 (interrupt, 1, 12)
[   25.179868] i8042: [24363] 54 <- i8042 (interrupt, 1, 12)
[   25.181455] i8042: [24364] 26 <- i8042 (interrupt, 1, 12)
[   25.183032] i8042: [24366] 79 <- i8042 (interrupt, 1, 12)
[   25.184616] i8042: [24367] 31 <- i8042 (interrupt, 1, 12)
[   25.186205] i8042: [24369] 52 <- i8042 (interrupt, 1, 12)
[   25.187780] i8042: [24370] 57 <- i8042 (interrupt, 1, 12)
[   25.189371] i8042: [24372] 54 <- i8042 (interrupt, 1, 12)
[   25.190943] i8042: [24374] 26 <- i8042 (interrupt, 1, 12)
[   25.192529] i8042: [24375] 82 <- i8042 (interrupt, 1, 12)
[   25.194107] i8042: [24377] 31 <- i8042 (interrupt, 1, 12)
[   25.195740] i8042: [24378] 52 <- i8042 (interrupt, 1, 12)
[   25.197278] i8042: [24380] 57 <- i8042 (interrupt, 1, 12)
[   25.198855] i8042: [24381] 54 <- i8042 (interrupt, 1, 12)
[   25.200443] i8042: [24383] 26 <- i8042 (interrupt, 1, 12)
[   25.202020] i8042: [24385] 8b <- i8042 (interrupt, 1, 12)
[   25.203599] i8042: [24386] 31 <- i8042 (interrupt, 1, 12)
[   25.205181] i8042: [24388] 42 <- i8042 (interrupt, 1, 12)
[   25.206767] i8042: [24389] 57 <- i8042 (interrupt, 1, 12)
[   25.208370] i8042: [24391] 54 <- i8042 (interrupt, 1, 12)
[   25.209940] i8042: [24393] 26 <- i8042 (interrupt, 1, 12)
[   25.211512] i8042: [24394] 94 <- i8042 (interrupt, 1, 12)
[   25.213095] i8042: [24396] 31 <- i8042 (interrupt, 1, 12)
[   25.214686] i8042: [24397] 42 <- i8042 (interrupt, 1, 12)
[   25.216266] i8042: [24399] 57 <- i8042 (interrupt, 1, 12)
[   25.217842] i8042: [24400] 54 <- i8042 (interrupt, 1, 12)
[   25.219432] i8042: [24402] 26 <- i8042 (interrupt, 1, 12)
[   25.221050] i8042: [24404] 9c <- i8042 (interrupt, 1, 12)
[   25.222593] i8042: [24405] 31 <- i8042 (interrupt, 1, 12)
[   25.224185] i8042: [24407] 42 <- i8042 (interrupt, 1, 12)
[   25.225756] i8042: [24408] 58 <- i8042 (interrupt, 1, 12)
[   25.227341] i8042: [24410] 54 <- i8042 (interrupt, 1, 12)
[   25.228925] i8042: [24412] 26 <- i8042 (interrupt, 1, 12)
[   25.230558] i8042: [24413] a3 <- i8042 (interrupt, 1, 12)
[   25.232123] i8042: [24415] 31 <- i8042 (interrupt, 1, 12)
[   25.233709] i8042: [24416] 42 <- i8042 (interrupt, 1, 12)
[   25.235288] i8042: [24418] 5b <- i8042 (interrupt, 1, 12)
[   25.236874] i8042: [24420] 54 <- i8042 (interrupt, 1, 12)
[   25.238421] i8042: [24421] 26 <- i8042 (interrupt, 1, 12)
[   25.240004] i8042: [24423] aa <- i8042 (interrupt, 1, 12)
[   25.241595] i8042: [24424] 31 <- i8042 (interrupt, 1, 12)
[   25.243167] i8042: [24426] 42 <- i8042 (interrupt, 1, 12)
[   25.244749] i8042: [24427] 5c <- i8042 (interrupt, 1, 12)
[   25.246333] i8042: [24429] 54 <- i8042 (interrupt, 1, 12)
[   25.247913] i8042: [24431] 26 <- i8042 (interrupt, 1, 12)
[   25.249497] i8042: [24432] b0 <- i8042 (interrupt, 1, 12)
[   25.251093] i8042: [24434] 31 <- i8042 (interrupt, 1, 12)
[   25.252695] i8042: [24435] 42 <- i8042 (interrupt, 1, 12)
[   25.254247] i8042: [24437] 5d <- i8042 (interrupt, 1, 12)
[   25.255836] i8042: [24438] 54 <- i8042 (interrupt, 1, 12)
[   25.257415] i8042: [24440] 26 <- i8042 (interrupt, 1, 12)
[   25.258996] i8042: [24442] b4 <- i8042 (interrupt, 1, 12)
[   25.260581] i8042: [24443] 31 <- i8042 (interrupt, 1, 12)
[   25.262196] i8042: [24445] 42 <- i8042 (interrupt, 1, 12)
[   25.263746] i8042: [24446] 5e <- i8042 (interrupt, 1, 12)
[   25.265365] i8042: [24448] 54 <- i8042 (interrupt, 1, 12)
[   25.266926] i8042: [24450] 26 <- i8042 (interrupt, 1, 12)
[   25.268498] i8042: [24451] b8 <- i8042 (interrupt, 1, 12)
[   25.270085] i8042: [24453] 31 <- i8042 (interrupt, 1, 12)
[   25.271660] i8042: [24454] 42 <- i8042 (interrupt, 1, 12)
[   25.273240] i8042: [24456] 5e <- i8042 (interrupt, 1, 12)
[   25.274827] i8042: [24457] 54 <- i8042 (interrupt, 1, 12)
[   25.276411] i8042: [24459] 26 <- i8042 (interrupt, 1, 12)
[   25.278048] i8042: [24461] bc <- i8042 (interrupt, 1, 12)
[   25.279636] i8042: [24462] 31 <- i8042 (interrupt, 1, 12)
[   25.281164] i8042: [24464] 42 <- i8042 (interrupt, 1, 12)
[   25.282737] i8042: [24465] 5f <- i8042 (interrupt, 1, 12)
[   25.284338] i8042: [24467] 54 <- i8042 (interrupt, 1, 12)
[   25.285902] i8042: [24469] 26 <- i8042 (interrupt, 1, 12)
[   25.287524] i8042: [24470] bf <- i8042 (interrupt, 1, 12)
[   25.289064] i8042: [24472] 31 <- i8042 (interrupt, 1, 12)
[   25.290650] i8042: [24473] 42 <- i8042 (interrupt, 1, 12)
[   25.292232] i8042: [24475] 5f <- i8042 (interrupt, 1, 12)
[   25.293816] i8042: [24476] 54 <- i8042 (interrupt, 1, 12)
[   25.295398] i8042: [24478] 26 <- i8042 (interrupt, 1, 12)
[   25.296990] i8042: [24480] c1 <- i8042 (interrupt, 1, 12)
[   25.298563] i8042: [24481] 31 <- i8042 (interrupt, 1, 12)
[   25.300233] i8042: [24483] 42 <- i8042 (interrupt, 1, 12)
[   25.301729] i8042: [24484] 61 <- i8042 (interrupt, 1, 12)
[   25.303309] i8042: [24486] 54 <- i8042 (interrupt, 1, 12)
[   25.304897] i8042: [24488] 26 <- i8042 (interrupt, 1, 12)
[   25.306481] i8042: [24489] c3 <- i8042 (interrupt, 1, 12)
[   25.308060] i8042: [24491] 31 <- i8042 (interrupt, 1, 12)
[   25.309646] i8042: [24492] 42 <- i8042 (interrupt, 1, 12)
[   25.311227] i8042: [24494] 62 <- i8042 (interrupt, 1, 12)
[   25.312809] i8042: [24495] 54 <- i8042 (interrupt, 1, 12)
[   25.314393] i8042: [24497] 26 <- i8042 (interrupt, 1, 12)
[   25.315991] i8042: [24499] c5 <- i8042 (interrupt, 1, 12)
[   25.317563] i8042: [24500] 31 <- i8042 (interrupt, 1, 12)
[   25.319145] i8042: [24502] 42 <- i8042 (interrupt, 1, 12)
[   25.320726] i8042: [24503] 64 <- i8042 (interrupt, 1, 12)
[   25.322309] i8042: [24505] 54 <- i8042 (interrupt, 1, 12)
[   25.323898] i8042: [24507] 26 <- i8042 (interrupt, 1, 12)
[   25.325474] i8042: [24508] c7 <- i8042 (interrupt, 1, 12)
[   25.327060] i8042: [24510] 31 <- i8042 (interrupt, 1, 12)
[   25.328635] i8042: [24511] 42 <- i8042 (interrupt, 1, 12)
[   25.330218] i8042: [24513] 64 <- i8042 (interrupt, 1, 12)
[   25.331805] i8042: [24514] 54 <- i8042 (interrupt, 1, 12)
[   25.333384] i8042: [24516] 26 <- i8042 (interrupt, 1, 12)
[   25.334967] i8042: [24518] c9 <- i8042 (interrupt, 1, 12)
[   25.336554] i8042: [24519] 31 <- i8042 (interrupt, 1, 12)
[   25.338175] i8042: [24521] 42 <- i8042 (interrupt, 1, 12)
[   25.339727] i8042: [24522] 65 <- i8042 (interrupt, 1, 12)
[   25.341311] i8042: [24524] 54 <- i8042 (interrupt, 1, 12)
[   25.342891] i8042: [24526] 26 <- i8042 (interrupt, 1, 12)
[   25.344470] i8042: [24527] ca <- i8042 (interrupt, 1, 12)
[   25.346054] i8042: [24529] 31 <- i8042 (interrupt, 1, 12)
[   25.347634] i8042: [24530] 42 <- i8042 (interrupt, 1, 12)
[   25.349215] i8042: [24532] 65 <- i8042 (interrupt, 1, 12)
[   25.350796] i8042: [24533] 54 <- i8042 (interrupt, 1, 12)
[   25.352381] i8042: [24535] 26 <- i8042 (interrupt, 1, 12)
[   25.353963] i8042: [24537] ca <- i8042 (interrupt, 1, 12)
[   25.355546] i8042: [24538] 31 <- i8042 (interrupt, 1, 12)
[   25.357132] i8042: [24540] 42 <- i8042 (interrupt, 1, 12)
[   25.358710] i8042: [24541] 65 <- i8042 (interrupt, 1, 12)
[   25.360292] i8042: [24543] 54 <- i8042 (interrupt, 1, 12)
[   25.361892] i8042: [24545] 26 <- i8042 (interrupt, 1, 12)
[   25.363459] i8042: [24546] ca <- i8042 (interrupt, 1, 12)
[   25.365039] i8042: [24548] 31 <- i8042 (interrupt, 1, 12)
[   25.366621] i8042: [24549] 52 <- i8042 (interrupt, 1, 12)
[   25.368213] i8042: [24551] 62 <- i8042 (interrupt, 1, 12)
[   25.369790] i8042: [24552] 54 <- i8042 (interrupt, 1, 12)
[   25.371374] i8042: [24554] 26 <- i8042 (interrupt, 1, 12)
[   25.372957] i8042: [24556] ca <- i8042 (interrupt, 1, 12)
[   25.374541] i8042: [24557] 31 <- i8042 (interrupt, 1, 12)
[   25.376126] i8042: [24559] 52 <- i8042 (interrupt, 1, 12)
[   25.377708] i8042: [24560] 62 <- i8042 (interrupt, 1, 12)
[   25.379297] i8042: [24562] 54 <- i8042 (interrupt, 1, 12)
[   25.380888] i8042: [24564] 26 <- i8042 (interrupt, 1, 12)
[   25.382451] i8042: [24565] cd <- i8042 (interrupt, 1, 12)
[   25.384036] i8042: [24567] 31 <- i8042 (interrupt, 1, 12)
[   25.385620] i8042: [24568] 52 <- i8042 (interrupt, 1, 12)
[   25.387220] i8042: [24570] 61 <- i8042 (interrupt, 1, 12)
[   25.388790] i8042: [24571] 54 <- i8042 (interrupt, 1, 12)
[   25.390373] i8042: [24573] 26 <- i8042 (interrupt, 1, 12)
[   25.391956] i8042: [24575] d2 <- i8042 (interrupt, 1, 12)
[   25.393541] i8042: [24576] 31 <- i8042 (interrupt, 1, 12)
[   25.395125] i8042: [24578] 52 <- i8042 (interrupt, 1, 12)
[   25.396726] i8042: [24579] 60 <- i8042 (interrupt, 1, 12)
[   25.398288] i8042: [24581] 54 <- i8042 (interrupt, 1, 12)
[   25.399891] i8042: [24583] 26 <- i8042 (interrupt, 1, 12)
[   25.401460] i8042: [24584] dc <- i8042 (interrupt, 1, 12)
[   25.403038] i8042: [24586] 31 <- i8042 (interrupt, 1, 12)
[   25.404629] i8042: [24587] 52 <- i8042 (interrupt, 1, 12)
[   25.406210] i8042: [24589] 61 <- i8042 (interrupt, 1, 12)
[   25.407788] i8042: [24590] 54 <- i8042 (interrupt, 1, 12)
[   25.409382] i8042: [24592] 26 <- i8042 (interrupt, 1, 12)
[   25.410959] i8042: [24594] e2 <- i8042 (interrupt, 1, 12)
[   25.412538] i8042: [24595] 31 <- i8042 (interrupt, 1, 12)
[   25.414132] i8042: [24597] 52 <- i8042 (interrupt, 1, 12)
[   25.415702] i8042: [24598] 62 <- i8042 (interrupt, 1, 12)
[   25.417293] i8042: [24600] 54 <- i8042 (interrupt, 1, 12)
[   25.418866] i8042: [24601] 26 <- i8042 (interrupt, 1, 12)
[   25.420452] i8042: [24603] e9 <- i8042 (interrupt, 1, 12)
[   25.422031] i8042: [24605] 31 <- i8042 (interrupt, 1, 12)
[   25.423616] i8042: [24606] 52 <- i8042 (interrupt, 1, 12)
[   25.425202] i8042: [24608] 63 <- i8042 (interrupt, 1, 12)
[   25.426784] i8042: [24609] 54 <- i8042 (interrupt, 1, 12)
[   25.428374] i8042: [24611] 26 <- i8042 (interrupt, 1, 12)
[   25.429952] i8042: [24613] f1 <- i8042 (interrupt, 1, 12)
[   25.431533] i8042: [24614] 31 <- i8042 (interrupt, 1, 12)
[   25.433122] i8042: [24616] 52 <- i8042 (interrupt, 1, 12)
[   25.434730] i8042: [24617] 64 <- i8042 (interrupt, 1, 12)
[   25.436281] i8042: [24619] 54 <- i8042 (interrupt, 1, 12)
[   25.437886] i8042: [24621] 26 <- i8042 (interrupt, 1, 12)
[   25.439447] i8042: [24622] fb <- i8042 (interrupt, 1, 12)
[   25.441031] i8042: [24624] 31 <- i8042 (interrupt, 1, 12)
[   25.442615] i8042: [24625] 52 <- i8042 (interrupt, 1, 12)
[   25.444196] i8042: [24627] 64 <- i8042 (interrupt, 1, 12)
[   25.445822] i8042: [24628] 54 <- i8042 (interrupt, 1, 12)
[   25.447426] i8042: [24630] 27 <- i8042 (interrupt, 1, 12)
[   25.448961] i8042: [24632] 06 <- i8042 (interrupt, 1, 12)
[   25.450534] i8042: [24633] 31 <- i8042 (interrupt, 1, 12)
[   25.452113] i8042: [24635] 52 <- i8042 (interrupt, 1, 12)
[   25.453707] i8042: [24636] 65 <- i8042 (interrupt, 1, 12)
[   25.455285] i8042: [24638] 54 <- i8042 (interrupt, 1, 12)
[   25.456863] i8042: [24639] 27 <- i8042 (interrupt, 1, 12)
[   25.458441] i8042: [24641] 11 <- i8042 (interrupt, 1, 12)
[   25.460031] i8042: [24643] 31 <- i8042 (interrupt, 1, 12)
[   25.461608] i8042: [24644] 52 <- i8042 (interrupt, 1, 12)
[   25.463191] i8042: [24646] 68 <- i8042 (interrupt, 1, 12)
[   25.464800] i8042: [24647] 54 <- i8042 (interrupt, 1, 12)
[   25.466354] i8042: [24649] 27 <- i8042 (interrupt, 1, 12)
[   25.467943] i8042: [24651] 1f <- i8042 (interrupt, 1, 12)
[   25.469518] i8042: [24652] 31 <- i8042 (interrupt, 1, 12)
[   25.471115] i8042: [24654] 52 <- i8042 (interrupt, 1, 12)
[   25.472691] i8042: [24655] 6b <- i8042 (interrupt, 1, 12)
[   25.474276] i8042: [24657] 54 <- i8042 (interrupt, 1, 12)
[   25.475855] i8042: [24658] 27 <- i8042 (interrupt, 1, 12)
[   25.477439] i8042: [24660] 2d <- i8042 (interrupt, 1, 12)
[   25.479061] i8042: [24662] 31 <- i8042 (interrupt, 1, 12)
[   25.480611] i8042: [24663] 52 <- i8042 (interrupt, 1, 12)
[   25.482196] i8042: [24665] 6f <- i8042 (interrupt, 1, 12)
[   25.483778] i8042: [24666] 54 <- i8042 (interrupt, 1, 12)
[   25.485357] i8042: [24668] 27 <- i8042 (interrupt, 1, 12)
[   25.486939] i8042: [24670] 3c <- i8042 (interrupt, 1, 12)
[   25.488522] i8042: [24671] 31 <- i8042 (interrupt, 1, 12)
[   25.490111] i8042: [24673] 52 <- i8042 (interrupt, 1, 12)
[   25.491700] i8042: [24674] 75 <- i8042 (interrupt, 1, 12)
[   25.493289] i8042: [24676] 54 <- i8042 (interrupt, 1, 12)
[   25.494867] i8042: [24677] 27 <- i8042 (interrupt, 1, 12)
[   25.496447] i8042: [24679] 4c <- i8042 (interrupt, 1, 12)
[   25.498027] i8042: [24681] 31 <- i8042 (interrupt, 1, 12)
[   25.499833] i8042: [24682] 52 <- i8042 (interrupt, 1, 12)
[   25.501198] i8042: [24684] 7b <- i8042 (interrupt, 1, 12)
[   25.502781] i8042: [24685] 54 <- i8042 (interrupt, 1, 12)
[   25.504400] i8042: [24687] 27 <- i8042 (interrupt, 1, 12)
[   25.505985] i8042: [24689] 5c <- i8042 (interrupt, 1, 12)
[   25.507568] i8042: [24690] 31 <- i8042 (interrupt, 1, 12)
[   25.509143] i8042: [24692] 52 <- i8042 (interrupt, 1, 12)
[   25.510695] i8042: [24693] 81 <- i8042 (interrupt, 1, 12)
[   25.512310] i8042: [24695] 54 <- i8042 (interrupt, 1, 12)
[   25.513863] i8042: [24696] 27 <- i8042 (interrupt, 1, 12)
[   25.515466] i8042: [24698] 6e <- i8042 (interrupt, 1, 12)
[   25.517064] i8042: [24700] 31 <- i8042 (interrupt, 1, 12)
[   25.518609] i8042: [24701] 42 <- i8042 (interrupt, 1, 12)
[   25.520253] i8042: [24703] 88 <- i8042 (interrupt, 1, 12)
[   25.522367] i8042: [24705] 54 <- i8042 (interrupt, 1, 12)
[   25.523899] i8042: [24707] 27 <- i8042 (interrupt, 1, 12)
[   25.525448] i8042: [24708] 7f <- i8042 (interrupt, 1, 12)
[   25.527074] i8042: [24710] 31 <- i8042 (interrupt, 1, 12)
[   25.528643] i8042: [24711] 22 <- i8042 (interrupt, 1, 12)
[   25.530196] i8042: [24713] 90 <- i8042 (interrupt, 1, 12)
[   25.531785] i8042: [24714] 54 <- i8042 (interrupt, 1, 12)
[   25.533362] i8042: [24716] 27 <- i8042 (interrupt, 1, 12)
[   25.534988] i8042: [24718] 8f <- i8042 (interrupt, 1, 12)
[   25.536528] i8042: [24719] 31 <- i8042 (interrupt, 1, 12)
[   25.538155] i8042: [24721] 22 <- i8042 (interrupt, 1, 12)
[   25.539811] i8042: [24722] 9a <- i8042 (interrupt, 1, 12)
[   25.541396] i8042: [24724] 54 <- i8042 (interrupt, 1, 12)
[   25.542864] i8042: [24725] 27 <- i8042 (interrupt, 1, 12)
[   25.544446] i8042: [24727] 9f <- i8042 (interrupt, 1, 12)
[   25.546049] i8042: [24729] 31 <- i8042 (interrupt, 1, 12)
[   25.547605] i8042: [24730] 22 <- i8042 (interrupt, 1, 12)
[   25.549185] i8042: [24732] a3 <- i8042 (interrupt, 1, 12)
[   25.551309] i8042: [24734] 44 <- i8042 (interrupt, 1, 12)
[   25.552896] i8042: [24736] 27 <- i8042 (interrupt, 1, 12)
[   25.554448] i8042: [24737] b2 <- i8042 (interrupt, 1, 12)
[   25.556066] i8042: [24739] 31 <- i8042 (interrupt, 1, 12)
[   25.557602] i8042: [24740] 22 <- i8042 (interrupt, 1, 12)
[   25.559182] i8042: [24742] aa <- i8042 (interrupt, 1, 12)
[   25.560767] i8042: [24743] 44 <- i8042 (interrupt, 1, 12)
[   25.562350] i8042: [24745] 27 <- i8042 (interrupt, 1, 12)
[   25.563930] i8042: [24747] c0 <- i8042 (interrupt, 1, 12)
[   25.565534] i8042: [24748] 31 <- i8042 (interrupt, 1, 12)
[   25.567110] i8042: [24750] 22 <- i8042 (interrupt, 1, 12)
[   25.568679] i8042: [24751] ae <- i8042 (interrupt, 1, 12)
[   25.570304] i8042: [24753] 44 <- i8042 (interrupt, 1, 12)
[   25.571844] i8042: [24754] 27 <- i8042 (interrupt, 1, 12)
[   25.573427] i8042: [24756] cc <- i8042 (interrupt, 1, 12)
[   25.575017] i8042: [24758] 31 <- i8042 (interrupt, 1, 12)
[   25.576595] i8042: [24759] 22 <- i8042 (interrupt, 1, 12)
[   25.578172] i8042: [24761] b3 <- i8042 (interrupt, 1, 12)
[   25.580261] i8042: [24763] 44 <- i8042 (interrupt, 1, 12)
[   25.581853] i8042: [24764] 27 <- i8042 (interrupt, 1, 12)
[   25.583458] i8042: [24766] d5 <- i8042 (interrupt, 1, 12)
[   25.585006] i8042: [24768] 31 <- i8042 (interrupt, 1, 12)
[   25.586630] i8042: [24769] 22 <- i8042 (interrupt, 1, 12)
[   25.588171] i8042: [24771] b6 <- i8042 (interrupt, 1, 12)
[   25.589757] i8042: [24772] 44 <- i8042 (interrupt, 1, 12)
[   25.591338] i8042: [24774] 27 <- i8042 (interrupt, 1, 12)
[   25.592937] i8042: [24776] dc <- i8042 (interrupt, 1, 12)
[   25.594505] i8042: [24777] 31 <- i8042 (interrupt, 1, 12)
[   25.596096] i8042: [24779] 02 <- i8042 (interrupt, 1, 12)
[   25.597670] i8042: [24780] ba <- i8042 (interrupt, 1, 12)
[   25.599752] i8042: [24782] 54 <- i8042 (interrupt, 1, 12)
[   25.601343] i8042: [24784] 27 <- i8042 (interrupt, 1, 12)
[   25.602931] i8042: [24786] e3 <- i8042 (interrupt, 1, 12)
[   25.604505] i8042: [24787] 31 <- i8042 (interrupt, 1, 12)
[   25.606085] i8042: [24789] 02 <- i8042 (interrupt, 1, 12)
[   25.607664] i8042: [24790] bd <- i8042 (interrupt, 1, 12)
[   25.609249] i8042: [24792] 54 <- i8042 (interrupt, 1, 12)
[   25.610831] i8042: [24793] 27 <- i8042 (interrupt, 1, 12)
[   25.612412] i8042: [24795] ed <- i8042 (interrupt, 1, 12)
[   25.614039] i8042: [24797] 31 <- i8042 (interrupt, 1, 12)
[   25.615577] i8042: [24798] 02 <- i8042 (interrupt, 1, 12)
[   25.617169] i8042: [24800] bf <- i8042 (interrupt, 1, 12)
[   25.618746] i8042: [24801] 54 <- i8042 (interrupt, 1, 12)
[   25.620358] i8042: [24803] 27 <- i8042 (interrupt, 1, 12)
[   25.621914] i8042: [24805] f7 <- i8042 (interrupt, 1, 12)
[   25.623498] i8042: [24806] 31 <- i8042 (interrupt, 1, 12)
[   25.625073] i8042: [24808] 02 <- i8042 (interrupt, 1, 12)
[   25.626719] i8042: [24809] bf <- i8042 (interrupt, 1, 12)
[   25.628741] i8042: [24811] 54 <- i8042 (interrupt, 1, 12)
[   25.630355] i8042: [24813] 28 <- i8042 (interrupt, 1, 12)
[   25.631916] i8042: [24815] 01 <- i8042 (interrupt, 1, 12)
[   25.633488] i8042: [24816] 31 <- i8042 (interrupt, 1, 12)
[   25.635073] i8042: [24818] 02 <- i8042 (interrupt, 1, 12)
[   25.636669] i8042: [24819] c0 <- i8042 (interrupt, 1, 12)
[   25.638243] i8042: [24821] 54 <- i8042 (interrupt, 1, 12)
[   25.639828] i8042: [24822] 28 <- i8042 (interrupt, 1, 12)
[   25.641441] i8042: [24824] 09 <- i8042 (interrupt, 1, 12)
[   25.642989] i8042: [24826] 31 <- i8042 (interrupt, 1, 12)
[   25.644605] i8042: [24827] 02 <- i8042 (interrupt, 1, 12)
[   25.646191] i8042: [24829] c1 <- i8042 (interrupt, 1, 12)
[   25.647749] i8042: [24830] 54 <- i8042 (interrupt, 1, 12)
[   25.649320] i8042: [24832] 28 <- i8042 (interrupt, 1, 12)
[   25.650935] i8042: [24834] 0f <- i8042 (interrupt, 1, 12)
[   25.652493] i8042: [24835] 31 <- i8042 (interrupt, 1, 12)
[   25.654069] i8042: [24837] 02 <- i8042 (interrupt, 1, 12)
[   25.655654] i8042: [24838] c1 <- i8042 (interrupt, 1, 12)
[   25.657740] i8042: [24840] 54 <- i8042 (interrupt, 1, 12)
[   25.659352] i8042: [24842] 28 <- i8042 (interrupt, 1, 12)
[   25.660920] i8042: [24844] 14 <- i8042 (interrupt, 1, 12)
[   25.662497] i8042: [24845] 31 <- i8042 (interrupt, 1, 12)
[   25.664080] i8042: [24847] 02 <- i8042 (interrupt, 1, 12)
[   25.665689] i8042: [24848] c2 <- i8042 (interrupt, 1, 12)
[   25.667271] i8042: [24850] 54 <- i8042 (interrupt, 1, 12)
[   25.668817] i8042: [24851] 28 <- i8042 (interrupt, 1, 12)
[   25.670401] i8042: [24853] 18 <- i8042 (interrupt, 1, 12)
[   25.671988] i8042: [24855] 31 <- i8042 (interrupt, 1, 12)
[   25.673573] i8042: [24856] 22 <- i8042 (interrupt, 1, 12)
[   25.675167] i8042: [24858] c4 <- i8042 (interrupt, 1, 12)
[   25.677275] i8042: [24860] 54 <- i8042 (interrupt, 1, 12)
[   25.678861] i8042: [24861] 28 <- i8042 (interrupt, 1, 12)
[   25.680439] i8042: [24863] 1c <- i8042 (interrupt, 1, 12)
[   25.681988] i8042: [24865] 31 <- i8042 (interrupt, 1, 12)
[   25.683604] i8042: [24866] 22 <- i8042 (interrupt, 1, 12)
[   25.685156] i8042: [24868] c5 <- i8042 (interrupt, 1, 12)
[   25.686736] i8042: [24869] 54 <- i8042 (interrupt, 1, 12)
[   25.688326] i8042: [24871] 28 <- i8042 (interrupt, 1, 12)
[   25.689905] i8042: [24873] 20 <- i8042 (interrupt, 1, 12)
[   25.691520] i8042: [24874] 31 <- i8042 (interrupt, 1, 12)
[   25.693106] i8042: [24876] 22 <- i8042 (interrupt, 1, 12)
[   25.694694] i8042: [24877] c5 <- i8042 (interrupt, 1, 12)
[   25.696248] i8042: [24879] 54 <- i8042 (interrupt, 1, 12)
[   25.697890] i8042: [24881] 28 <- i8042 (interrupt, 1, 12)
[   25.699451] i8042: [24882] 23 <- i8042 (interrupt, 1, 12)
[   25.701032] i8042: [24884] 31 <- i8042 (interrupt, 1, 12)
[   25.702638] i8042: [24885] 22 <- i8042 (interrupt, 1, 12)
[   25.704197] i8042: [24887] c4 <- i8042 (interrupt, 1, 12)
[   25.706275] i8042: [24889] 54 <- i8042 (interrupt, 1, 12)
[   25.707862] i8042: [24890] 28 <- i8042 (interrupt, 1, 12)
[   25.709470] i8042: [24892] 26 <- i8042 (interrupt, 1, 12)
[   25.711027] i8042: [24894] 31 <- i8042 (interrupt, 1, 12)
[   25.712610] i8042: [24895] 22 <- i8042 (interrupt, 1, 12)
[   25.714190] i8042: [24897] c5 <- i8042 (interrupt, 1, 12)
[   25.715782] i8042: [24898] 54 <- i8042 (interrupt, 1, 12)
[   25.717353] i8042: [24900] 28 <- i8042 (interrupt, 1, 12)
[   25.718944] i8042: [24902] 28 <- i8042 (interrupt, 1, 12)
[   25.720530] i8042: [24903] 31 <- i8042 (interrupt, 1, 12)
[   25.722133] i8042: [24905] 02 <- i8042 (interrupt, 1, 12)
[   25.723717] i8042: [24906] c4 <- i8042 (interrupt, 1, 12)
[   25.725236] i8042: [24908] 54 <- i8042 (interrupt, 1, 12)
[   25.726839] i8042: [24909] 28 <- i8042 (interrupt, 1, 12)
[   25.728432] i8042: [24911] 29 <- i8042 (interrupt, 1, 12)
[   25.730052] i8042: [24913] 31 <- i8042 (interrupt, 1, 12)
[   25.731633] i8042: [24914] 02 <- i8042 (interrupt, 1, 12)
[   25.733215] i8042: [24916] c3 <- i8042 (interrupt, 1, 12)
[   25.735302] i8042: [24918] 54 <- i8042 (interrupt, 1, 12)
[   25.736823] i8042: [24919] 18 <- i8042 (interrupt, 1, 12)
[   25.738404] i8042: [24921] 2a <- i8042 (interrupt, 1, 12)
[   25.740056] i8042: [24923] 31 <- i8042 (interrupt, 1, 12)
[   25.741632] i8042: [24924] f2 <- i8042 (interrupt, 1, 12)
[   25.743212] i8042: [24926] c3 <- i8042 (interrupt, 1, 12)
[   25.744794] i8042: [24927] 44 <- i8042 (interrupt, 1, 12)
[   25.746372] i8042: [24929] 18 <- i8042 (interrupt, 1, 12)
[   25.747905] i8042: [24931] 2c <- i8042 (interrupt, 1, 12)
[   25.749529] i8042: [24932] 31 <- i8042 (interrupt, 1, 12)
[   25.751123] i8042: [24934] 32 <- i8042 (interrupt, 1, 12)
[   25.752643] i8042: [24935] c3 <- i8042 (interrupt, 1, 12)
[   25.754792] i8042: [24937] 44 <- i8042 (interrupt, 1, 12)
[   25.756313] i8042: [24939] 18 <- i8042 (interrupt, 1, 12)
[   25.757920] i8042: [24941] 2c <- i8042 (interrupt, 1, 12)
[   25.759504] i8042: [24942] 31 <- i8042 (interrupt, 1, 12)
[   25.761091] i8042: [24944] 32 <- i8042 (interrupt, 1, 12)
[   25.762674] i8042: [24945] c3 <- i8042 (interrupt, 1, 12)
[   25.764275] i8042: [24947] 04 <- i8042 (interrupt, 1, 12)
[   25.765843] i8042: [24948] 00 <- i8042 (interrupt, 1, 12)
[   25.767382] i8042: [24950] 00 <- i8042 (interrupt, 1, 12)
[   25.768999] i8042: [24952] 10 <- i8042 (interrupt, 1, 12)
[   25.770548] i8042: [24953] 00 <- i8042 (interrupt, 1, 12)
[   25.772162] i8042: [24955] 00 <- i8042 (interrupt, 1, 12)
[   28.504742] i8042: [27687] f4 <- i8042 (interrupt, 1, 12)
[   28.506320] i8042: [27689] 01 <- i8042 (interrupt, 1, 12)
[   28.507904] i8042: [27691] 00 <- i8042 (interrupt, 1, 12)
[   28.509569] i8042: [27692] 10 <- i8042 (interrupt, 1, 12)
[   28.511381] i8042: [27694] 00 <- i8042 (interrupt, 1, 12)
[   28.512964] i8042: [27696] 00 <- i8042 (interrupt, 1, 12)
[   28.514545] i8042: [27697] f4 <- i8042 (interrupt, 1, 12)
[   28.516141] i8042: [27699] a4 <- i8042 (interrupt, 1, 12)
[   28.517541] i8042: [27700] f7 <- i8042 (interrupt, 1, 12)
[   28.519112] i8042: [27702] 31 <- i8042 (interrupt, 1, 12)
[   28.520702] i8042: [27703] d2 <- i8042 (interrupt, 1, 12)
[   28.522211] i8042: [27705] 70 <- i8042 (interrupt, 1, 12)
[   28.523852] i8042: [27706] f4 <- i8042 (interrupt, 1, 12)
[   28.525427] i8042: [27708] a4 <- i8042 (interrupt, 1, 12)
[   28.527015] i8042: [27710] f7 <- i8042 (interrupt, 1, 12)
[   28.528606] i8042: [27711] 31 <- i8042 (interrupt, 1, 12)
[   28.530133] i8042: [27713] d2 <- i8042 (interrupt, 1, 12)
[   28.531941] i8042: [27715] 70 <- i8042 (interrupt, 1, 12)
[   28.533524] i8042: [27716] f4 <- i8042 (interrupt, 1, 12)
[   28.535111] i8042: [27718] a4 <- i8042 (interrupt, 1, 12)
[   28.536516] i8042: [27719] f7 <- i8042 (interrupt, 1, 12)
[   28.538025] i8042: [27721] 31 <- i8042 (interrupt, 1, 12)
[   28.539872] i8042: [27722] d2 <- i8042 (interrupt, 1, 12)
[   28.541445] i8042: [27724] 70 <- i8042 (interrupt, 1, 12)
[   28.542848] i8042: [27725] f4 <- i8042 (interrupt, 1, 12)
[   28.544606] i8042: [27727] a4 <- i8042 (interrupt, 1, 12)
[   28.546191] i8042: [27729] f7 <- i8042 (interrupt, 1, 12)
[   28.547774] i8042: [27730] 31 <- i8042 (interrupt, 1, 12)
[   28.549356] i8042: [27732] d2 <- i8042 (interrupt, 1, 12)
[   28.550941] i8042: [27734] 70 <- i8042 (interrupt, 1, 12)
[   28.552326] i8042: [27735] f4 <- i8042 (interrupt, 1, 12)
[   28.554106] i8042: [27737] a4 <- i8042 (interrupt, 1, 12)
[   28.555684] i8042: [27738] f7 <- i8042 (interrupt, 1, 12)
[   28.557055] i8042: [27740] 31 <- i8042 (interrupt, 1, 12)
[   28.558842] i8042: [27741] d2 <- i8042 (interrupt, 1, 12)
[   28.560172] i8042: [27743] 70 <- i8042 (interrupt, 1, 12)
[   28.562012] i8042: [27745] f4 <- i8042 (interrupt, 1, 12)
[   28.563592] i8042: [27746] a4 <- i8042 (interrupt, 1, 12)
[   28.565005] i8042: [27748] f7 <- i8042 (interrupt, 1, 12)
[   28.566771] i8042: [27749] 31 <- i8042 (interrupt, 1, 12)
[   28.568084] i8042: [27751] d2 <- i8042 (interrupt, 1, 12)
[   28.569935] i8042: [27753] 70 <- i8042 (interrupt, 1, 12)
[   28.571506] i8042: [27754] f4 <- i8042 (interrupt, 1, 12)
[   28.572936] i8042: [27756] a4 <- i8042 (interrupt, 1, 12)
[   28.574671] i8042: [27757] f7 <- i8042 (interrupt, 1, 12)
[   28.576020] i8042: [27759] 31 <- i8042 (interrupt, 1, 12)
[   28.577835] i8042: [27760] d2 <- i8042 (interrupt, 1, 12)
[   28.579420] i8042: [27762] 70 <- i8042 (interrupt, 1, 12)
[   28.580826] i8042: [27763] f4 <- i8042 (interrupt, 1, 12)
[   28.582583] i8042: [27765] a4 <- i8042 (interrupt, 1, 12)
[   28.584171] i8042: [27767] f7 <- i8042 (interrupt, 1, 12)
[   28.585745] i8042: [27768] 31 <- i8042 (interrupt, 1, 12)
[   28.587329] i8042: [27770] d2 <- i8042 (interrupt, 1, 12)
[   28.588736] i8042: [27771] 70 <- i8042 (interrupt, 1, 12)
[   28.590306] i8042: [27773] f4 <- i8042 (interrupt, 1, 12)
[   28.592085] i8042: [27775] a4 <- i8042 (interrupt, 1, 12)
[   28.593663] i8042: [27776] f7 <- i8042 (interrupt, 1, 12)
[   28.595247] i8042: [27778] 31 <- i8042 (interrupt, 1, 12)
[   28.596826] i8042: [27779] d2 <- i8042 (interrupt, 1, 12)
[   28.598604] i8042: [27781] 70 <- i8042 (interrupt, 1, 12)
[   28.599822] i8042: [27782] f4 <- i8042 (interrupt, 1, 12)
[   28.601411] i8042: [27784] a4 <- i8042 (interrupt, 1, 12)
[   28.602996] i8042: [27786] f7 <- i8042 (interrupt, 1, 12)
[   28.604578] i8042: [27787] 31 <- i8042 (interrupt, 1, 12)
[   28.606326] i8042: [27789] d2 <- i8042 (interrupt, 1, 12)
[   28.607915] i8042: [27791] 70 <- i8042 (interrupt, 1, 12)
[   28.609495] i8042: [27792] f4 <- i8042 (interrupt, 1, 12)
[   28.611078] i8042: [27794] a4 <- i8042 (interrupt, 1, 12)
[   28.612659] i8042: [27795] f7 <- i8042 (interrupt, 1, 12)
[   28.614021] i8042: [27797] 31 <- i8042 (interrupt, 1, 12)
[   28.615823] i8042: [27798] d2 <- i8042 (interrupt, 1, 12)
[   28.617187] i8042: [27800] 70 <- i8042 (interrupt, 1, 12)
[   28.618994] i8042: [27802] f4 <- i8042 (interrupt, 1, 12)
[   28.620566] i8042: [27803] a4 <- i8042 (interrupt, 1, 12)
[   28.622158] i8042: [27805] f7 <- i8042 (interrupt, 1, 12)
[   28.623735] i8042: [27806] 31 <- i8042 (interrupt, 1, 12)
[   28.625332] i8042: [27808] d2 <- i8042 (interrupt, 1, 12)
[   28.626726] i8042: [27809] 70 <- i8042 (interrupt, 1, 12)
[   28.628297] i8042: [27811] f4 <- i8042 (interrupt, 1, 12)
[   28.630091] i8042: [27813] a4 <- i8042 (interrupt, 1, 12)
[   28.631476] i8042: [27814] f7 <- i8042 (interrupt, 1, 12)
[   28.633041] i8042: [27816] 31 <- i8042 (interrupt, 1, 12)
[   28.634633] i8042: [27817] d2 <- i8042 (interrupt, 1, 12)
[   28.636215] i8042: [27819] 70 <- i8042 (interrupt, 1, 12)
[   28.637798] i8042: [27820] f4 <- i8042 (interrupt, 1, 12)
[   28.639376] i8042: [27822] a4 <- i8042 (interrupt, 1, 12)
[   28.640964] i8042: [27824] f7 <- i8042 (interrupt, 1, 12)
[   28.642550] i8042: [27825] 31 <- i8042 (interrupt, 1, 12)
[   28.644097] i8042: [27827] e2 <- i8042 (interrupt, 1, 12)
[   28.645706] i8042: [27828] 70 <- i8042 (interrupt, 1, 12)
[   28.647284] i8042: [27830] f4 <- i8042 (interrupt, 1, 12)
[   28.648866] i8042: [27831] a4 <- i8042 (interrupt, 1, 12)
[   28.650458] i8042: [27833] f7 <- i8042 (interrupt, 1, 12)
[   28.652039] i8042: [27835] 31 <- i8042 (interrupt, 1, 12)
[   28.653622] i8042: [27836] e2 <- i8042 (interrupt, 1, 12)
[   28.655135] i8042: [27838] 70 <- i8042 (interrupt, 1, 12)
[   28.656789] i8042: [27839] f4 <- i8042 (interrupt, 1, 12)
[   28.658370] i8042: [27841] a4 <- i8042 (interrupt, 1, 12)
[   28.659954] i8042: [27843] f7 <- i8042 (interrupt, 1, 12)
[   28.661544] i8042: [27844] 31 <- i8042 (interrupt, 1, 12)
[   28.663120] i8042: [27846] e2 <- i8042 (interrupt, 1, 12)
[   28.664697] i8042: [27847] 70 <- i8042 (interrupt, 1, 12)
[   28.666280] i8042: [27849] f4 <- i8042 (interrupt, 1, 12)
[   28.667859] i8042: [27850] a4 <- i8042 (interrupt, 1, 12)
[   28.669450] i8042: [27852] f7 <- i8042 (interrupt, 1, 12)
[   28.671039] i8042: [27854] 31 <- i8042 (interrupt, 1, 12)
[   28.672609] i8042: [27855] e2 <- i8042 (interrupt, 1, 12)
[   28.674190] i8042: [27857] 70 <- i8042 (interrupt, 1, 12)
[   28.675774] i8042: [27858] f4 <- i8042 (interrupt, 1, 12)
[   28.677349] i8042: [27860] a4 <- i8042 (interrupt, 1, 12)
[   28.678937] i8042: [27862] f7 <- i8042 (interrupt, 1, 12)
[   28.680515] i8042: [27863] 31 <- i8042 (interrupt, 1, 12)
[   28.682034] i8042: [27865] e2 <- i8042 (interrupt, 1, 12)
[   28.683690] i8042: [27866] 70 <- i8042 (interrupt, 1, 12)
[   28.685251] i8042: [27868] f4 <- i8042 (interrupt, 1, 12)
[   28.686859] i8042: [27869] a4 <- i8042 (interrupt, 1, 12)
[   28.688443] i8042: [27871] f7 <- i8042 (interrupt, 1, 12)
[   28.690038] i8042: [27873] 31 <- i8042 (interrupt, 1, 12)
[   28.691604] i8042: [27874] e2 <- i8042 (interrupt, 1, 12)
[   28.693198] i8042: [27876] 70 <- i8042 (interrupt, 1, 12)
[   28.694777] i8042: [27877] f4 <- i8042 (interrupt, 1, 12)
[   28.696360] i8042: [27879] a4 <- i8042 (interrupt, 1, 12)
[   28.697943] i8042: [27881] f7 <- i8042 (interrupt, 1, 12)
[   28.699518] i8042: [27882] 31 <- i8042 (interrupt, 1, 12)
[   28.701067] i8042: [27884] e2 <- i8042 (interrupt, 1, 12)
[   28.702685] i8042: [27885] 70 <- i8042 (interrupt, 1, 12)
[   28.704255] i8042: [27887] f4 <- i8042 (interrupt, 1, 12)
[   28.705849] i8042: [27888] a4 <- i8042 (interrupt, 1, 12)
[   28.707428] i8042: [27890] f7 <- i8042 (interrupt, 1, 12)
[   28.709020] i8042: [27892] 31 <- i8042 (interrupt, 1, 12)
[   28.710610] i8042: [27893] e2 <- i8042 (interrupt, 1, 12)
[   28.712124] i8042: [27895] 70 <- i8042 (interrupt, 1, 12)
[   28.713763] i8042: [27896] f4 <- i8042 (interrupt, 1, 12)
[   28.715355] i8042: [27898] a4 <- i8042 (interrupt, 1, 12)
[   28.716942] i8042: [27900] f7 <- i8042 (interrupt, 1, 12)
[   28.718518] i8042: [27901] 31 <- i8042 (interrupt, 1, 12)
[   28.720099] i8042: [27903] e2 <- i8042 (interrupt, 1, 12)
[   28.721682] i8042: [27904] 70 <- i8042 (interrupt, 1, 12)
[   28.723268] i8042: [27906] f4 <- i8042 (interrupt, 1, 12)
[   28.724844] i8042: [27907] a4 <- i8042 (interrupt, 1, 12)
[   28.726431] i8042: [27909] f7 <- i8042 (interrupt, 1, 12)
[   28.728033] i8042: [27911] 31 <- i8042 (interrupt, 1, 12)
[   28.729598] i8042: [27912] e2 <- i8042 (interrupt, 1, 12)
[   28.731112] i8042: [27914] 70 <- i8042 (interrupt, 1, 12)
[   28.732757] i8042: [27915] f4 <- i8042 (interrupt, 1, 12)
[   28.734341] i8042: [27917] a4 <- i8042 (interrupt, 1, 12)
[   28.735923] i8042: [27919] f4 <- i8042 (interrupt, 1, 12)
[   28.737499] i8042: [27920] 31 <- i8042 (interrupt, 1, 12)
[   28.739049] i8042: [27922] e2 <- i8042 (interrupt, 1, 12)
[   28.740670] i8042: [27923] 70 <- i8042 (interrupt, 1, 12)
[   28.742265] i8042: [27925] f4 <- i8042 (interrupt, 1, 12)
[   28.743849] i8042: [27926] a4 <- i8042 (interrupt, 1, 12)
[   28.745423] i8042: [27928] f4 <- i8042 (interrupt, 1, 12)
[   28.747016] i8042: [27930] 31 <- i8042 (interrupt, 1, 12)
[   28.748591] i8042: [27931] e2 <- i8042 (interrupt, 1, 12)
[   28.750133] i8042: [27933] 70 <- i8042 (interrupt, 1, 12)
[   28.751754] i8042: [27934] f4 <- i8042 (interrupt, 1, 12)
[   28.753338] i8042: [27936] a4 <- i8042 (interrupt, 1, 12)
[   28.754917] i8042: [27938] f4 <- i8042 (interrupt, 1, 12)
[   28.756517] i8042: [27939] 31 <- i8042 (interrupt, 1, 12)
[   28.758012] i8042: [27941] e2 <- i8042 (interrupt, 1, 12)
[   28.759667] i8042: [27942] 70 <- i8042 (interrupt, 1, 12)
[   28.761246] i8042: [27944] f4 <- i8042 (interrupt, 1, 12)
[   28.762827] i8042: [27945] a4 <- i8042 (interrupt, 1, 12)
[   28.764409] i8042: [27947] f4 <- i8042 (interrupt, 1, 12)
[   28.765991] i8042: [27949] 31 <- i8042 (interrupt, 1, 12)
[   28.767581] i8042: [27950] e2 <- i8042 (interrupt, 1, 12)
[   28.769157] i8042: [27952] 70 <- i8042 (interrupt, 1, 12)
[   28.770746] i8042: [27953] f4 <- i8042 (interrupt, 1, 12)
[   28.772321] i8042: [27955] a4 <- i8042 (interrupt, 1, 12)
[   28.773905] i8042: [27957] f4 <- i8042 (interrupt, 1, 12)
[   28.775491] i8042: [27958] 31 <- i8042 (interrupt, 1, 12)
[   28.777071] i8042: [27960] e2 <- i8042 (interrupt, 1, 12)
[   28.778648] i8042: [27961] 70 <- i8042 (interrupt, 1, 12)
[   28.780250] i8042: [27963] f4 <- i8042 (interrupt, 1, 12)
[   28.781815] i8042: [27964] a4 <- i8042 (interrupt, 1, 12)
[   28.783397] i8042: [27966] f4 <- i8042 (interrupt, 1, 12)
[   28.784984] i8042: [27968] 31 <- i8042 (interrupt, 1, 12)
[   28.786559] i8042: [27969] e2 <- i8042 (interrupt, 1, 12)
[   28.788147] i8042: [27971] 70 <- i8042 (interrupt, 1, 12)
[   28.789727] i8042: [27972] f4 <- i8042 (interrupt, 1, 12)
[   28.791327] i8042: [27974] a4 <- i8042 (interrupt, 1, 12)
[   28.792903] i8042: [27976] f4 <- i8042 (interrupt, 1, 12)
[   28.794475] i8042: [27977] 31 <- i8042 (interrupt, 1, 12)
[   28.796058] i8042: [27979] e2 <- i8042 (interrupt, 1, 12)
[   28.797646] i8042: [27980] 70 <- i8042 (interrupt, 1, 12)
[   28.799159] i8042: [27982] f4 <- i8042 (interrupt, 1, 12)
[   28.800810] i8042: [27983] a4 <- i8042 (interrupt, 1, 12)
[   28.802389] i8042: [27985] f4 <- i8042 (interrupt, 1, 12)
[   28.802900] i8042: [27986] ** <- i8042 (interrupt, 0, 1)
[   28.804407] i8042: [27987] 31 <- i8042 (interrupt, 1, 12)
[   28.805055] i8042: [27988] ** <- i8042 (interrupt, 0, 1)
[   28.805089] atkbd serio0: Unknown key pressed (translated set 2, code 0xbf on isa0060/serio0).
[   28.805108] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   28.806006] i8042: [27989] ** <- i8042 (interrupt, 0, 1)
[   28.808074] i8042: [27991] e2 <- i8042 (interrupt, 1, 12)
[   28.808598] i8042: [27991] ** <- i8042 (interrupt, 0, 1)
[   28.808634] atkbd serio0: Unknown key released (translated set 2, code 0xbf on isa0060/serio0).
[   28.808654] atkbd serio0: Use 'setkeycodes e03f <keycode>' to make it known.
[   28.810067] i8042: [27993] 70 <- i8042 (interrupt, 1, 12)
[   28.811745] i8042: [27994] f4 <- i8042 (interrupt, 1, 12)
[   28.813331] i8042: [27996] a4 <- i8042 (interrupt, 1, 12)
[   28.814914] i8042: [27998] f4 <- i8042 (interrupt, 1, 12)
[   28.816502] i8042: [27999] 31 <- i8042 (interrupt, 1, 12)
[   28.818080] i8042: [28001] e2 <- i8042 (interrupt, 1, 12)
[   28.819655] i8042: [28002] 70 <- i8042 (interrupt, 1, 12)
[   28.821227] i8042: [28004] f4 <- i8042 (interrupt, 1, 12)
[   28.822829] i8042: [28005] a4 <- i8042 (interrupt, 1, 12)
[   28.824403] i8042: [28007] f4 <- i8042 (interrupt, 1, 12)
[   28.825988] i8042: [28009] 31 <- i8042 (interrupt, 1, 12)
[   28.827569] i8042: [28010] e2 <- i8042 (interrupt, 1, 12)
[   28.829155] i8042: [28012] 70 <- i8042 (interrupt, 1, 12)
[   28.830732] i8042: [28013] f4 <- i8042 (interrupt, 1, 12)
[   28.832319] i8042: [28015] a4 <- i8042 (interrupt, 1, 12)
[   28.833913] i8042: [28017] f4 <- i8042 (interrupt, 1, 12)
[   28.835453] i8042: [28018] 31 <- i8042 (interrupt, 1, 12)
[   28.837005] i8042: [28020] e2 <- i8042 (interrupt, 1, 12)
[   28.838652] i8042: [28021] 70 <- i8042 (interrupt, 1, 12)
[   28.840220] i8042: [28023] f4 <- i8042 (interrupt, 1, 12)
[   28.841821] i8042: [28024] a4 <- i8042 (interrupt, 1, 12)
[   28.843402] i8042: [28026] f4 <- i8042 (interrupt, 1, 12)
[   28.845001] i8042: [28028] 31 <- i8042 (interrupt, 1, 12)
[   28.846553] i8042: [28029] e2 <- i8042 (interrupt, 1, 12)
[   28.848164] i8042: [28031] 70 <- i8042 (interrupt, 1, 12)
[   28.849735] i8042: [28032] f4 <- i8042 (interrupt, 1, 12)
[   28.851315] i8042: [28034] a4 <- i8042 (interrupt, 1, 12)
[   28.852895] i8042: [28036] f4 <- i8042 (interrupt, 1, 12)
[   28.854479] i8042: [28037] 31 <- i8042 (interrupt, 1, 12)
[   28.856064] i8042: [28039] e2 <- i8042 (interrupt, 1, 12)
[   28.857656] i8042: [28040] 70 <- i8042 (interrupt, 1, 12)
[   28.859236] i8042: [28042] f4 <- i8042 (interrupt, 1, 12)
[   28.860807] i8042: [28043] a4 <- i8042 (interrupt, 1, 12)
[   28.862390] i8042: [28045] f4 <- i8042 (interrupt, 1, 12)
[   28.863982] i8042: [28047] 31 <- i8042 (interrupt, 1, 12)
[   28.865576] i8042: [28048] e2 <- i8042 (interrupt, 1, 12)
[   28.867144] i8042: [28050] 70 <- i8042 (interrupt, 1, 12)
[   28.868728] i8042: [28051] f4 <- i8042 (interrupt, 1, 12)
[   28.870309] i8042: [28053] a4 <- i8042 (interrupt, 1, 12)
[   28.871901] i8042: [28055] f4 <- i8042 (interrupt, 1, 12)
[   28.873435] i8042: [28056] 31 <- i8042 (interrupt, 1, 12)
[   28.875048] i8042: [28058] e2 <- i8042 (interrupt, 1, 12)
[   28.876631] i8042: [28059] 70 <- i8042 (interrupt, 1, 12)
[   28.878208] i8042: [28061] f4 <- i8042 (interrupt, 1, 12)
[   28.879695] i8042: [28062] a4 <- i8042 (interrupt, 1, 12)
[   28.881280] i8042: [28064] f4 <- i8042 (interrupt, 1, 12)
[   28.882854] i8042: [28065] 31 <- i8042 (interrupt, 1, 12)
[   28.884441] i8042: [28067] e2 <- i8042 (interrupt, 1, 12)
[   28.886024] i8042: [28069] 70 <- i8042 (interrupt, 1, 12)
[   28.887604] i8042: [28070] f4 <- i8042 (interrupt, 1, 12)
[   28.889316] i8042: [28072] a4 <- i8042 (interrupt, 1, 12)
[   28.890929] i8042: [28074] f4 <- i8042 (interrupt, 1, 12)
[   28.892422] i8042: [28075] 31 <- i8042 (interrupt, 1, 12)
[   28.894041] i8042: [28077] e2 <- i8042 (interrupt, 1, 12)
[   28.895589] i8042: [28078] 70 <- i8042 (interrupt, 1, 12)
[   28.897156] i8042: [28080] f4 <- i8042 (interrupt, 1, 12)
[   28.898805] i8042: [28081] a4 <- i8042 (interrupt, 1, 12)
[   28.900393] i8042: [28083] f4 <- i8042 (interrupt, 1, 12)
[   28.902002] i8042: [28085] 31 <- i8042 (interrupt, 1, 12)
[   28.903495] i8042: [28086] e2 <- i8042 (interrupt, 1, 12)
[   28.905024] i8042: [28088] 70 <- i8042 (interrupt, 1, 12)
[   28.906720] i8042: [28089] f4 <- i8042 (interrupt, 1, 12)
[   28.908296] i8042: [28091] a4 <- i8042 (interrupt, 1, 12)
[   28.909876] i8042: [28092] f4 <- i8042 (interrupt, 1, 12)
[   28.911386] i8042: [28094] 31 <- i8042 (interrupt, 1, 12)
[   28.912938] i8042: [28096] e2 <- i8042 (interrupt, 1, 12)
[   28.914581] i8042: [28097] 70 <- i8042 (interrupt, 1, 12)
[   28.916134] i8042: [28099] f4 <- i8042 (interrupt, 1, 12)
[   28.917767] i8042: [28100] a4 <- i8042 (interrupt, 1, 12)
[   28.919325] i8042: [28102] f4 <- i8042 (interrupt, 1, 12)
[   28.920998] i8042: [28104] 31 <- i8042 (interrupt, 1, 12)
[   28.922616] i8042: [28105] e2 <- i8042 (interrupt, 1, 12)
[   28.924077] i8042: [28107] 70 <- i8042 (interrupt, 1, 12)
[   28.925699] i8042: [28108] f4 <- i8042 (interrupt, 1, 12)
[   28.927295] i8042: [28110] a4 <- i8042 (interrupt, 1, 12)
[   28.928859] i8042: [28111] f4 <- i8042 (interrupt, 1, 12)
[   28.930448] i8042: [28113] 31 <- i8042 (interrupt, 1, 12)
[   28.932044] i8042: [28115] e2 <- i8042 (interrupt, 1, 12)
[   28.933643] i8042: [28116] 70 <- i8042 (interrupt, 1, 12)
[   28.935227] i8042: [28118] f4 <- i8042 (interrupt, 1, 12)
[   28.936785] i8042: [28119] a4 <- i8042 (interrupt, 1, 12)
[   28.938363] i8042: [28121] f2 <- i8042 (interrupt, 1, 12)
[   28.939952] i8042: [28123] 31 <- i8042 (interrupt, 1, 12)
[   28.941521] i8042: [28124] e2 <- i8042 (interrupt, 1, 12)
[   28.943067] i8042: [28126] 70 <- i8042 (interrupt, 1, 12)
[   28.944676] i8042: [28127] f4 <- i8042 (interrupt, 1, 12)
[   28.946285] i8042: [28129] a4 <- i8042 (interrupt, 1, 12)
[   28.947859] i8042: [28130] f2 <- i8042 (interrupt, 1, 12)
[   28.949443] i8042: [28132] 31 <- i8042 (interrupt, 1, 12)
[   28.951040] i8042: [28134] e2 <- i8042 (interrupt, 1, 12)
[   28.952611] i8042: [28135] 70 <- i8042 (interrupt, 1, 12)
[   28.954157] i8042: [28137] f4 <- i8042 (interrupt, 1, 12)
[   28.955767] i8042: [28138] a4 <- i8042 (interrupt, 1, 12)
[   28.957349] i8042: [28140] f2 <- i8042 (interrupt, 1, 12)
[   28.958948] i8042: [28142] 31 <- i8042 (interrupt, 1, 12)
[   28.960520] i8042: [28143] e2 <- i8042 (interrupt, 1, 12)
[   28.962107] i8042: [28145] 70 <- i8042 (interrupt, 1, 12)
[   28.963680] i8042: [28146] f4 <- i8042 (interrupt, 1, 12)
[   28.965277] i8042: [28148] a4 <- i8042 (interrupt, 1, 12)
[   28.966843] i8042: [28149] f2 <- i8042 (interrupt, 1, 12)
[   28.968426] i8042: [28151] 31 <- i8042 (interrupt, 1, 12)
[   28.970000] i8042: [28153] e2 <- i8042 (interrupt, 1, 12)
[   28.971587] i8042: [28154] 70 <- i8042 (interrupt, 1, 12)
[   28.973180] i8042: [28156] f4 <- i8042 (interrupt, 1, 12)
[   28.974761] i8042: [28157] a4 <- i8042 (interrupt, 1, 12)
[   28.976343] i8042: [28159] f2 <- i8042 (interrupt, 1, 12)
[   28.977941] i8042: [28161] 31 <- i8042 (interrupt, 1, 12)
[   28.979513] i8042: [28162] e2 <- i8042 (interrupt, 1, 12)
[   28.981055] i8042: [28164] 70 <- i8042 (interrupt, 1, 12)
[   28.982642] i8042: [28165] f4 <- i8042 (interrupt, 1, 12)
[   28.984223] i8042: [28167] a4 <- i8042 (interrupt, 1, 12)
[   28.985839] i8042: [28168] f2 <- i8042 (interrupt, 1, 12)
[   28.987421] i8042: [28170] 31 <- i8042 (interrupt, 1, 12)
[   28.988993] i8042: [28172] e2 <- i8042 (interrupt, 1, 12)
[   28.990592] i8042: [28173] 70 <- i8042 (interrupt, 1, 12)
[   28.992097] i8042: [28175] f4 <- i8042 (interrupt, 1, 12)
[   28.993713] i8042: [28176] a4 <- i8042 (interrupt, 1, 12)
[   28.995334] i8042: [28178] f2 <- i8042 (interrupt, 1, 12)
[   28.996927] i8042: [28180] 31 <- i8042 (interrupt, 1, 12)
[   28.998500] i8042: [28181] e2 <- i8042 (interrupt, 1, 12)
[   29.000080] i8042: [28183] 70 <- i8042 (interrupt, 1, 12)
[   29.001655] i8042: [28184] f4 <- i8042 (interrupt, 1, 12)
[   29.003213] i8042: [28186] a4 <- i8042 (interrupt, 1, 12)
[   29.004827] i8042: [28187] f2 <- i8042 (interrupt, 1, 12)
[   29.006408] i8042: [28189] 31 <- i8042 (interrupt, 1, 12)
[   29.007996] i8042: [28191] e2 <- i8042 (interrupt, 1, 12)
[   29.009539] i8042: [28192] 70 <- i8042 (interrupt, 1, 12)
[   29.011127] i8042: [28194] f4 <- i8042 (interrupt, 1, 12)
[   29.012709] i8042: [28195] a4 <- i8042 (interrupt, 1, 12)
[   29.014291] i8042: [28197] f2 <- i8042 (interrupt, 1, 12)
[   29.015882] i8042: [28199] 31 <- i8042 (interrupt, 1, 12)
[   29.017455] i8042: [28200] e2 <- i8042 (interrupt, 1, 12)
[   29.019038] i8042: [28202] 70 <- i8042 (interrupt, 1, 12)
[   29.020659] i8042: [28203] f4 <- i8042 (interrupt, 1, 12)
[   29.022220] i8042: [28205] a4 <- i8042 (interrupt, 1, 12)
[   29.023819] i8042: [28206] f2 <- i8042 (interrupt, 1, 12)
[   29.025413] i8042: [28208] 31 <- i8042 (interrupt, 1, 12)
[   29.026993] i8042: [28210] d2 <- i8042 (interrupt, 1, 12)
[   29.028574] i8042: [28211] 70 <- i8042 (interrupt, 1, 12)
[   29.030133] i8042: [28213] f4 <- i8042 (interrupt, 1, 12)
[   29.031739] i8042: [28214] a4 <- i8042 (interrupt, 1, 12)
[   29.033318] i8042: [28216] f2 <- i8042 (interrupt, 1, 12)
[   29.034903] i8042: [28218] 31 <- i8042 (interrupt, 1, 12)
[   29.036480] i8042: [28219] d2 <- i8042 (interrupt, 1, 12)
[   29.038038] i8042: [28221] 70 <- i8042 (interrupt, 1, 12)
[   29.039652] i8042: [28222] f4 <- i8042 (interrupt, 1, 12)
[   29.041236] i8042: [28224] a4 <- i8042 (interrupt, 1, 12)
[   29.042814] i8042: [28225] f2 <- i8042 (interrupt, 1, 12)
[   29.044401] i8042: [28227] 31 <- i8042 (interrupt, 1, 12)
[   29.045982] i8042: [28229] d2 <- i8042 (interrupt, 1, 12)
[   29.047571] i8042: [28230] 70 <- i8042 (interrupt, 1, 12)
[   29.049108] i8042: [28232] f4 <- i8042 (interrupt, 1, 12)
[   29.050726] i8042: [28233] a4 <- i8042 (interrupt, 1, 12)
[   29.052314] i8042: [28235] f2 <- i8042 (interrupt, 1, 12)
[   29.053903] i8042: [28237] 31 <- i8042 (interrupt, 1, 12)
[   29.055476] i8042: [28238] d2 <- i8042 (interrupt, 1, 12)
[   29.057058] i8042: [28240] 70 <- i8042 (interrupt, 1, 12)
[   29.058635] i8042: [28241] f4 <- i8042 (interrupt, 1, 12)
[   29.060232] i8042: [28243] a4 <- i8042 (interrupt, 1, 12)
[   29.061805] i8042: [28244] f2 <- i8042 (interrupt, 1, 12)
[   29.063383] i8042: [28246] 31 <- i8042 (interrupt, 1, 12)
[   29.064975] i8042: [28248] d2 <- i8042 (interrupt, 1, 12)
[   29.066555] i8042: [28249] 70 <- i8042 (interrupt, 1, 12)
[   29.068151] i8042: [28251] f4 <- i8042 (interrupt, 1, 12)
[   29.069720] i8042: [28252] a4 <- i8042 (interrupt, 1, 12)
[   29.071304] i8042: [28254] f2 <- i8042 (interrupt, 1, 12)
[   29.072825] i8042: [28255] 31 <- i8042 (interrupt, 1, 12)
[   29.074464] i8042: [28257] d2 <- i8042 (interrupt, 1, 12)
[   29.076013] i8042: [28259] 70 <- i8042 (interrupt, 1, 12)
[   29.077561] i8042: [28260] f4 <- i8042 (interrupt, 1, 12)
[   29.079190] i8042: [28262] a4 <- i8042 (interrupt, 1, 12)
[   29.080742] i8042: [28263] f2 <- i8042 (interrupt, 1, 12)
[   29.082381] i8042: [28265] 31 <- i8042 (interrupt, 1, 12)
[   29.083970] i8042: [28267] d2 <- i8042 (interrupt, 1, 12)
[   29.085541] i8042: [28268] 70 <- i8042 (interrupt, 1, 12)
[   29.087059] i8042: [28270] f4 <- i8042 (interrupt, 1, 12)
[   29.088711] i8042: [28271] a4 <- i8042 (interrupt, 1, 12)
[   29.090290] i8042: [28273] f2 <- i8042 (interrupt, 1, 12)
[   29.091870] i8042: [28274] 31 <- i8042 (interrupt, 1, 12)
[   29.093457] i8042: [28276] d2 <- i8042 (interrupt, 1, 12)
[   29.095011] i8042: [28278] 70 <- i8042 (interrupt, 1, 12)
[   29.096619] i8042: [28279] f4 <- i8042 (interrupt, 1, 12)
[   29.098207] i8042: [28281] a4 <- i8042 (interrupt, 1, 12)
[   29.099800] i8042: [28282] f2 <- i8042 (interrupt, 1, 12)
[   29.101373] i8042: [28284] 31 <- i8042 (interrupt, 1, 12)
[   29.102962] i8042: [28286] d2 <- i8042 (interrupt, 1, 12)
[   29.104548] i8042: [28287] 70 <- i8042 (interrupt, 1, 12)
[   29.106131] i8042: [28289] f4 <- i8042 (interrupt, 1, 12)
[   29.107719] i8042: [28290] a4 <- i8042 (interrupt, 1, 12)
[   29.109296] i8042: [28292] f4 <- i8042 (interrupt, 1, 12)
[   29.110874] i8042: [28293] 31 <- i8042 (interrupt, 1, 12)
[   29.112452] i8042: [28295] d2 <- i8042 (interrupt, 1, 12)
[   29.114041] i8042: [28297] 71 <- i8042 (interrupt, 1, 12)
[   29.115623] i8042: [28298] f4 <- i8042 (interrupt, 1, 12)
[   29.117131] i8042: [28300] a4 <- i8042 (interrupt, 1, 12)
[   29.118785] i8042: [28301] f4 <- i8042 (interrupt, 1, 12)
[   29.120367] i8042: [28303] 31 <- i8042 (interrupt, 1, 12)
[   29.121956] i8042: [28305] d2 <- i8042 (interrupt, 1, 12)
[   29.123524] i8042: [28306] 71 <- i8042 (interrupt, 1, 12)
[   29.125048] i8042: [28308] f4 <- i8042 (interrupt, 1, 12)
[   29.126700] i8042: [28309] a4 <- i8042 (interrupt, 1, 12)
[   29.128285] i8042: [28311] f4 <- i8042 (interrupt, 1, 12)
[   29.129867] i8042: [28312] 31 <- i8042 (interrupt, 1, 12)
[   29.131453] i8042: [28314] d2 <- i8042 (interrupt, 1, 12)
[   29.133005] i8042: [28316] 71 <- i8042 (interrupt, 1, 12)
[   29.135121] i8042: [28318] f4 <- i8042 (interrupt, 1, 12)
[   29.136696] i8042: [28319] a4 <- i8042 (interrupt, 1, 12)
[   29.138290] i8042: [28321] f4 <- i8042 (interrupt, 1, 12)
[   29.139839] i8042: [28322] 31 <- i8042 (interrupt, 1, 12)
[   29.141415] i8042: [28324] d2 <- i8042 (interrupt, 1, 12)
[   29.142969] i8042: [28326] 71 <- i8042 (interrupt, 1, 12)
[   29.144541] i8042: [28327] f4 <- i8042 (interrupt, 1, 12)
[   29.146139] i8042: [28329] a4 <- i8042 (interrupt, 1, 12)
[   29.147755] i8042: [28330] f4 <- i8042 (interrupt, 1, 12)
[   29.149351] i8042: [28332] 31 <- i8042 (interrupt, 1, 12)
[   29.150966] i8042: [28334] d2 <- i8042 (interrupt, 1, 12)
[   29.152462] i8042: [28335] 71 <- i8042 (interrupt, 1, 12)
[   29.154014] i8042: [28337] f4 <- i8042 (interrupt, 1, 12)
[   29.155618] i8042: [28338] a4 <- i8042 (interrupt, 1, 12)
[   29.157233] i8042: [28340] f4 <- i8042 (interrupt, 1, 12)
[   29.158852] i8042: [28341] 31 <- i8042 (interrupt, 1, 12)
[   29.160434] i8042: [28343] d2 <- i8042 (interrupt, 1, 12)
[   29.161970] i8042: [28345] 71 <- i8042 (interrupt, 1, 12)
[   29.164040] i8042: [28347] f4 <- i8042 (interrupt, 1, 12)
[   29.165654] i8042: [28348] a4 <- i8042 (interrupt, 1, 12)
[   29.167164] i8042: [28350] f4 <- i8042 (interrupt, 1, 12)
[   29.168817] i8042: [28351] 31 <- i8042 (interrupt, 1, 12)
[   29.170369] i8042: [28353] d2 <- i8042 (interrupt, 1, 12)
[   29.171974] i8042: [28355] 71 <- i8042 (interrupt, 1, 12)
[   29.173567] i8042: [28356] f4 <- i8042 (interrupt, 1, 12)
[   29.175152] i8042: [28358] a4 <- i8042 (interrupt, 1, 12)
[   29.176738] i8042: [28359] f4 <- i8042 (interrupt, 1, 12)
[   29.178247] i8042: [28361] 31 <- i8042 (interrupt, 1, 12)
[   29.179924] i8042: [28363] d2 <- i8042 (interrupt, 1, 12)
[   29.181450] i8042: [28364] 71 <- i8042 (interrupt, 1, 12)
[   29.183028] i8042: [28366] f4 <- i8042 (interrupt, 1, 12)
[   29.184649] i8042: [28367] a4 <- i8042 (interrupt, 1, 12)
[   29.186226] i8042: [28369] f4 <- i8042 (interrupt, 1, 12)
[   29.187825] i8042: [28370] 31 <- i8042 (interrupt, 1, 12)
[   29.189397] i8042: [28372] d2 <- i8042 (interrupt, 1, 12)
[   29.190901] i8042: [28374] 71 <- i8042 (interrupt, 1, 12)
[   29.192986] i8042: [28376] f4 <- i8042 (interrupt, 1, 12)
[   29.194570] i8042: [28377] a4 <- i8042 (interrupt, 1, 12)
[   29.196154] i8042: [28379] f4 <- i8042 (interrupt, 1, 12)
[   29.197888] i8042: [28381] 31 <- i8042 (interrupt, 1, 12)
[   29.199319] i8042: [28382] d2 <- i8042 (interrupt, 1, 12)
[   29.200903] i8042: [28384] 71 <- i8042 (interrupt, 1, 12)
[   29.202485] i8042: [28385] f4 <- i8042 (interrupt, 1, 12)
[   29.204064] i8042: [28387] a4 <- i8042 (interrupt, 1, 12)
[   29.205651] i8042: [28388] f4 <- i8042 (interrupt, 1, 12)
[   29.207232] i8042: [28390] 31 <- i8042 (interrupt, 1, 12)
[   29.208813] i8042: [28391] d2 <- i8042 (interrupt, 1, 12)
[   29.210395] i8042: [28393] 71 <- i8042 (interrupt, 1, 12)
[   29.212483] i8042: [28395] f4 <- i8042 (interrupt, 1, 12)
[   29.214143] i8042: [28397] a4 <- i8042 (interrupt, 1, 12)
[   29.215662] i8042: [28398] f4 <- i8042 (interrupt, 1, 12)
[   29.217236] i8042: [28400] 31 <- i8042 (interrupt, 1, 12)
[   29.218817] i8042: [28401] d2 <- i8042 (interrupt, 1, 12)
[   29.220394] i8042: [28403] 71 <- i8042 (interrupt, 1, 12)
[   29.221978] i8042: [28405] f4 <- i8042 (interrupt, 1, 12)
[   29.223558] i8042: [28406] a4 <- i8042 (interrupt, 1, 12)
[   29.225141] i8042: [28408] f4 <- i8042 (interrupt, 1, 12)
[   29.226724] i8042: [28409] 31 <- i8042 (interrupt, 1, 12)
[   29.228315] i8042: [28411] d2 <- i8042 (interrupt, 1, 12)
[   29.229887] i8042: [28413] 71 <- i8042 (interrupt, 1, 12)
[   29.231499] i8042: [28414] f4 <- i8042 (interrupt, 1, 12)
[   29.233054] i8042: [28416] a4 <- i8042 (interrupt, 1, 12)
[   29.234691] i8042: [28417] f4 <- i8042 (interrupt, 1, 12)
[   29.236224] i8042: [28419] 31 <- i8042 (interrupt, 1, 12)
[   29.237807] i8042: [28420] d2 <- i8042 (interrupt, 1, 12)
[   29.239417] i8042: [28422] 71 <- i8042 (interrupt, 1, 12)
[   29.241512] i8042: [28424] f4 <- i8042 (interrupt, 1, 12)
[   29.243106] i8042: [28426] a4 <- i8042 (interrupt, 1, 12)
[   29.244764] i8042: [28427] f4 <- i8042 (interrupt, 1, 12)
[   29.246246] i8042: [28429] 31 <- i8042 (interrupt, 1, 12)
[   29.247827] i8042: [28430] d2 <- i8042 (interrupt, 1, 12)
[   29.249440] i8042: [28432] 71 <- i8042 (interrupt, 1, 12)
[   29.250997] i8042: [28434] f4 <- i8042 (interrupt, 1, 12)
[   29.252616] i8042: [28435] a4 <- i8042 (interrupt, 1, 12)
[   29.254163] i8042: [28437] f4 <- i8042 (interrupt, 1, 12)
[   29.255744] i8042: [28438] 31 <- i8042 (interrupt, 1, 12)
[   29.257318] i8042: [28440] d2 <- i8042 (interrupt, 1, 12)
[   29.259034] i8042: [28442] 71 <- i8042 (interrupt, 1, 12)
[   29.261024] i8042: [28444] f4 <- i8042 (interrupt, 1, 12)
[   29.262577] i8042: [28445] a4 <- i8042 (interrupt, 1, 12)
[   29.264162] i8042: [28447] f4 <- i8042 (interrupt, 1, 12)
[   29.265707] i8042: [28448] 31 <- i8042 (interrupt, 1, 12)
[   29.267287] i8042: [28450] d2 <- i8042 (interrupt, 1, 12)
[   29.268877] i8042: [28452] 71 <- i8042 (interrupt, 1, 12)
[   29.270453] i8042: [28453] f4 <- i8042 (interrupt, 1, 12)
[   29.272048] i8042: [28455] a4 <- i8042 (interrupt, 1, 12)
[   29.273633] i8042: [28456] f4 <- i8042 (interrupt, 1, 12)
[   29.275206] i8042: [28458] 31 <- i8042 (interrupt, 1, 12)
[   29.276789] i8042: [28459] d2 <- i8042 (interrupt, 1, 12)
[   29.278409] i8042: [28461] 71 <- i8042 (interrupt, 1, 12)
[   29.279990] i8042: [28463] f4 <- i8042 (interrupt, 1, 12)
[   29.281571] i8042: [28464] a4 <- i8042 (interrupt, 1, 12)
[   29.283158] i8042: [28466] f4 <- i8042 (interrupt, 1, 12)
[   29.284731] i8042: [28467] 31 <- i8042 (interrupt, 1, 12)
[   29.286377] i8042: [28469] d2 <- i8042 (interrupt, 1, 12)
[   29.288196] i8042: [28471] 71 <- i8042 (interrupt, 1, 12)
[   29.290102] i8042: [28473] f4 <- i8042 (interrupt, 1, 12)
[   29.291680] i8042: [28474] a4 <- i8042 (interrupt, 1, 12)
[   29.293212] i8042: [28476] f4 <- i8042 (interrupt, 1, 12)
[   29.294844] i8042: [28477] 31 <- i8042 (interrupt, 1, 12)
[   29.296393] i8042: [28479] d2 <- i8042 (interrupt, 1, 12)
[   29.298046] i8042: [28481] 71 <- i8042 (interrupt, 1, 12)
[   29.299518] i8042: [28482] f4 <- i8042 (interrupt, 1, 12)
[   29.301343] i8042: [28484] a4 <- i8042 (interrupt, 1, 12)
[   29.302929] i8042: [28486] f4 <- i8042 (interrupt, 1, 12)
[   29.304310] i8042: [28487] 31 <- i8042 (interrupt, 1, 12)
[   29.305952] i8042: [28489] d2 <- i8042 (interrupt, 1, 12)
[   29.307472] i8042: [28490] 71 <- i8042 (interrupt, 1, 12)
[   29.309101] i8042: [28492] f4 <- i8042 (interrupt, 1, 12)
[   29.310679] i8042: [28493] a4 <- i8042 (interrupt, 1, 12)
[   29.312194] i8042: [28495] f4 <- i8042 (interrupt, 1, 12)
[   29.313832] i8042: [28496] 31 <- i8042 (interrupt, 1, 12)
[   29.315397] i8042: [28498] d2 <- i8042 (interrupt, 1, 12)
[   29.317163] i8042: [28500] 71 <- i8042 (interrupt, 1, 12)
[   29.319249] i8042: [28502] f4 <- i8042 (interrupt, 1, 12)
[   29.320831] i8042: [28503] a4 <- i8042 (interrupt, 1, 12)
[   29.322189] i8042: [28505] f4 <- i8042 (interrupt, 1, 12)
[   29.323820] i8042: [28506] 31 <- i8042 (interrupt, 1, 12)
[   29.325390] i8042: [28508] d2 <- i8042 (interrupt, 1, 12)
[   29.327004] i8042: [28510] 71 <- i8042 (interrupt, 1, 12)
[   29.328564] i8042: [28511] f4 <- i8042 (interrupt, 1, 12)
[   29.330108] i8042: [28513] a4 <- i8042 (interrupt, 1, 12)
[   29.331729] i8042: [28514] f4 <- i8042 (interrupt, 1, 12)
[   29.333301] i8042: [28516] 31 <- i8042 (interrupt, 1, 12)
[   29.334889] i8042: [28518] d2 <- i8042 (interrupt, 1, 12)
[   29.336465] i8042: [28519] 71 <- i8042 (interrupt, 1, 12)
[   29.338556] i8042: [28521] f4 <- i8042 (interrupt, 1, 12)
[   29.340101] i8042: [28523] a4 <- i8042 (interrupt, 1, 12)
[   29.341716] i8042: [28524] f4 <- i8042 (interrupt, 1, 12)
[   29.343303] i8042: [28526] 31 <- i8042 (interrupt, 1, 12)
[   29.344890] i8042: [28528] d2 <- i8042 (interrupt, 1, 12)
[   29.346466] i8042: [28529] 71 <- i8042 (interrupt, 1, 12)
[   29.348012] i8042: [28531] f4 <- i8042 (interrupt, 1, 12)
[   29.349599] i8042: [28532] a4 <- i8042 (interrupt, 1, 12)
[   29.351178] i8042: [28534] f4 <- i8042 (interrupt, 1, 12)
[   29.352762] i8042: [28535] 31 <- i8042 (interrupt, 1, 12)
[   29.354351] i8042: [28537] d2 <- i8042 (interrupt, 1, 12)
[   29.355965] i8042: [28539] 71 <- i8042 (interrupt, 1, 12)
[   29.357549] i8042: [28540] f4 <- i8042 (interrupt, 1, 12)
[   29.359133] i8042: [28542] a4 <- i8042 (interrupt, 1, 12)
[   29.360707] i8042: [28543] f4 <- i8042 (interrupt, 1, 12)
[   29.362301] i8042: [28545] 31 <- i8042 (interrupt, 1, 12)
[   29.363883] i8042: [28547] d2 <- i8042 (interrupt, 1, 12)
[   29.365462] i8042: [28548] 71 <- i8042 (interrupt, 1, 12)
[   29.367548] i8042: [28550] f4 <- i8042 (interrupt, 1, 12)
[   29.369133] i8042: [28552] a4 <- i8042 (interrupt, 1, 12)
[   29.370722] i8042: [28553] f4 <- i8042 (interrupt, 1, 12)
[   29.372298] i8042: [28555] 31 <- i8042 (interrupt, 1, 12)
[   29.373886] i8042: [28557] d2 <- i8042 (interrupt, 1, 12)
[   29.375463] i8042: [28558] 71 <- i8042 (interrupt, 1, 12)
[   29.377043] i8042: [28560] f4 <- i8042 (interrupt, 1, 12)
[   29.378626] i8042: [28561] a4 <- i8042 (interrupt, 1, 12)
[   29.380178] i8042: [28563] f4 <- i8042 (interrupt, 1, 12)
[   29.381790] i8042: [28564] 31 <- i8042 (interrupt, 1, 12)
[   29.383369] i8042: [28566] d2 <- i8042 (interrupt, 1, 12)
[   29.384961] i8042: [28568] 71 <- i8042 (interrupt, 1, 12)
[   29.387040] i8042: [28570] f4 <- i8042 (interrupt, 1, 12)
[   29.388620] i8042: [28571] a4 <- i8042 (interrupt, 1, 12)
[   29.390209] i8042: [28573] f4 <- i8042 (interrupt, 1, 12)
[   29.391789] i8042: [28574] 31 <- i8042 (interrupt, 1, 12)
[   29.393382] i8042: [28576] d2 <- i8042 (interrupt, 1, 12)
[   29.394952] i8042: [28578] 71 <- i8042 (interrupt, 1, 12)
[   29.396532] i8042: [28579] f4 <- i8042 (interrupt, 1, 12)
[   29.398125] i8042: [28581] a4 <- i8042 (interrupt, 1, 12)
[   29.399695] i8042: [28582] f4 <- i8042 (interrupt, 1, 12)
[   29.401282] i8042: [28584] 31 <- i8042 (interrupt, 1, 12)
[   29.402872] i8042: [28585] d2 <- i8042 (interrupt, 1, 12)
[   29.404440] i8042: [28587] 71 <- i8042 (interrupt, 1, 12)
[   29.406030] i8042: [28589] f4 <- i8042 (interrupt, 1, 12)
[   29.407609] i8042: [28590] a4 <- i8042 (interrupt, 1, 12)
[   29.409191] i8042: [28592] f4 <- i8042 (interrupt, 1, 12)
[   29.410766] i8042: [28593] 31 <- i8042 (interrupt, 1, 12)
[   29.412357] i8042: [28595] d2 <- i8042 (interrupt, 1, 12)
[   29.413936] i8042: [28597] 71 <- i8042 (interrupt, 1, 12)
[   29.416026] i8042: [28599] f4 <- i8042 (interrupt, 1, 12)
[   29.417606] i8042: [28600] a4 <- i8042 (interrupt, 1, 12)
[   29.419151] i8042: [28602] f4 <- i8042 (interrupt, 1, 12)
[   29.420773] i8042: [28603] 31 <- i8042 (interrupt, 1, 12)
[   29.422321] i8042: [28605] d2 <- i8042 (interrupt, 1, 12)
[   29.423955] i8042: [28607] 71 <- i8042 (interrupt, 1, 12)
[   29.425525] i8042: [28608] f4 <- i8042 (interrupt, 1, 12)
[   29.427071] i8042: [28610] a4 <- i8042 (interrupt, 1, 12)
[   29.428709] i8042: [28611] f4 <- i8042 (interrupt, 1, 12)
[   29.430243] i8042: [28613] 31 <- i8042 (interrupt, 1, 12)
[   29.431862] i8042: [28614] d2 <- i8042 (interrupt, 1, 12)
[   29.433447] i8042: [28616] 71 <- i8042 (interrupt, 1, 12)
[   29.435037] i8042: [28618] f4 <- i8042 (interrupt, 1, 12)
[   29.436620] i8042: [28619] a4 <- i8042 (interrupt, 1, 12)
[   29.438192] i8042: [28621] f4 <- i8042 (interrupt, 1, 12)
[   29.439767] i8042: [28622] 31 <- i8042 (interrupt, 1, 12)
[   29.441350] i8042: [28624] d2 <- i8042 (interrupt, 1, 12)
[   29.442942] i8042: [28626] 71 <- i8042 (interrupt, 1, 12)
[   29.445024] i8042: [28628] f4 <- i8042 (interrupt, 1, 12)
[   29.446598] i8042: [28629] a4 <- i8042 (interrupt, 1, 12)
[   29.448154] i8042: [28631] f4 <- i8042 (interrupt, 1, 12)
[   29.449767] i8042: [28632] 31 <- i8042 (interrupt, 1, 12)
[   29.451359] i8042: [28634] d2 <- i8042 (interrupt, 1, 12)
[   29.452954] i8042: [28636] 71 <- i8042 (interrupt, 1, 12)
[   29.454532] i8042: [28637] f4 <- i8042 (interrupt, 1, 12)
[   29.456087] i8042: [28639] a4 <- i8042 (interrupt, 1, 12)
[   29.457697] i8042: [28640] f4 <- i8042 (interrupt, 1, 12)
[   29.459292] i8042: [28642] 31 <- i8042 (interrupt, 1, 12)
[   29.460859] i8042: [28643] d2 <- i8042 (interrupt, 1, 12)
[   29.462440] i8042: [28645] 71 <- i8042 (interrupt, 1, 12)
[   29.464540] i8042: [28647] f4 <- i8042 (interrupt, 1, 12)
[   29.466074] i8042: [28649] a4 <- i8042 (interrupt, 1, 12)
[   29.467654] i8042: [28650] f4 <- i8042 (interrupt, 1, 12)
[   29.469293] i8042: [28652] 31 <- i8042 (interrupt, 1, 12)
[   29.470861] i8042: [28653] d2 <- i8042 (interrupt, 1, 12)
[   29.472445] i8042: [28655] 71 <- i8042 (interrupt, 1, 12)
[   29.474026] i8042: [28657] f4 <- i8042 (interrupt, 1, 12)
[   29.475607] i8042: [28658] a4 <- i8042 (interrupt, 1, 12)
[   29.477192] i8042: [28660] f4 <- i8042 (interrupt, 1, 12)
[   29.478774] i8042: [28661] 31 <- i8042 (interrupt, 1, 12)
[   29.480349] i8042: [28663] d2 <- i8042 (interrupt, 1, 12)
[   29.481937] i8042: [28665] 71 <- i8042 (interrupt, 1, 12)
[   29.483526] i8042: [28666] f4 <- i8042 (interrupt, 1, 12)
[   29.485105] i8042: [28668] a4 <- i8042 (interrupt, 1, 12)
[   29.486620] i8042: [28669] f4 <- i8042 (interrupt, 1, 12)
[   29.488210] i8042: [28671] 31 <- i8042 (interrupt, 1, 12)
[   29.489864] i8042: [28672] d2 <- i8042 (interrupt, 1, 12)
[   29.491420] i8042: [28674] 71 <- i8042 (interrupt, 1, 12)
[   29.493558] i8042: [28676] f4 <- i8042 (interrupt, 1, 12)
[   29.495022] i8042: [28678] a4 <- i8042 (interrupt, 1, 12)
[   29.496672] i8042: [28679] f4 <- i8042 (interrupt, 1, 12)
[   29.498198] i8042: [28681] 31 <- i8042 (interrupt, 1, 12)
[   29.499862] i8042: [28682] d2 <- i8042 (interrupt, 1, 12)
[   29.501417] i8042: [28684] 71 <- i8042 (interrupt, 1, 12)
[   29.503006] i8042: [28686] f4 <- i8042 (interrupt, 1, 12)
[   29.504599] i8042: [28687] a4 <- i8042 (interrupt, 1, 12)
[   29.506122] i8042: [28689] f4 <- i8042 (interrupt, 1, 12)
[   29.507762] i8042: [28690] 31 <- i8042 (interrupt, 1, 12)
[   29.509336] i8042: [28692] d2 <- i8042 (interrupt, 1, 12)
[   29.510886] i8042: [28694] 71 <- i8042 (interrupt, 1, 12)
[   29.512955] i8042: [28696] f4 <- i8042 (interrupt, 1, 12)
[   29.514607] i8042: [28697] a4 <- i8042 (interrupt, 1, 12)
[   29.516139] i8042: [28699] f4 <- i8042 (interrupt, 1, 12)
[   29.517768] i8042: [28700] 31 <- i8042 (interrupt, 1, 12)
[   29.519338] i8042: [28702] d2 <- i8042 (interrupt, 1, 12)
[   29.520965] i8042: [28704] 71 <- i8042 (interrupt, 1, 12)
[   29.522519] i8042: [28705] f4 <- i8042 (interrupt, 1, 12)
[   29.524050] i8042: [28707] a4 <- i8042 (interrupt, 1, 12)
[   29.525686] i8042: [28708] f4 <- i8042 (interrupt, 1, 12)
[   29.527221] i8042: [28710] 31 <- i8042 (interrupt, 1, 12)
[   29.528847] i8042: [28711] d2 <- i8042 (interrupt, 1, 12)
[   29.530413] i8042: [28713] 71 <- i8042 (interrupt, 1, 12)
[   29.532000] i8042: [28715] f4 <- i8042 (interrupt, 1, 12)
[   29.533601] i8042: [28716] a4 <- i8042 (interrupt, 1, 12)
[   29.535115] i8042: [28718] f4 <- i8042 (interrupt, 1, 12)
[   29.536775] i8042: [28719] 31 <- i8042 (interrupt, 1, 12)
[   29.538317] i8042: [28721] d2 <- i8042 (interrupt, 1, 12)
[   29.539965] i8042: [28723] 71 <- i8042 (interrupt, 1, 12)
[   29.542049] i8042: [28725] f4 <- i8042 (interrupt, 1, 12)
[   29.543617] i8042: [28726] a4 <- i8042 (interrupt, 1, 12)
[   29.545123] i8042: [28728] f4 <- i8042 (interrupt, 1, 12)
[   29.546693] i8042: [28729] 31 <- i8042 (interrupt, 1, 12)
[   29.548264] i8042: [28731] d2 <- i8042 (interrupt, 1, 12)
[   29.549854] i8042: [28732] 71 <- i8042 (interrupt, 1, 12)
[   29.551402] i8042: [28734] f4 <- i8042 (interrupt, 1, 12)
[   29.552985] i8042: [28736] a4 <- i8042 (interrupt, 1, 12)
[   29.554603] i8042: [28737] f4 <- i8042 (interrupt, 1, 12)
[   29.556147] i8042: [28739] 31 <- i8042 (interrupt, 1, 12)
[   29.557729] i8042: [28740] d2 <- i8042 (interrupt, 1, 12)
[   29.559313] i8042: [28742] 71 <- i8042 (interrupt, 1, 12)
[   29.560898] i8042: [28744] f4 <- i8042 (interrupt, 1, 12)
[   29.562553] i8042: [28745] a4 <- i8042 (interrupt, 1, 12)
[   29.564112] i8042: [28747] f4 <- i8042 (interrupt, 1, 12)
[   29.565764] i8042: [28748] 31 <- i8042 (interrupt, 1, 12)
[   29.567338] i8042: [28750] d2 <- i8042 (interrupt, 1, 12)
[   29.568950] i8042: [28752] 71 <- i8042 (interrupt, 1, 12)
[   29.571016] i8042: [28754] f4 <- i8042 (interrupt, 1, 12)
[   29.572558] i8042: [28755] a4 <- i8042 (interrupt, 1, 12)
[   29.574082] i8042: [28757] f4 <- i8042 (interrupt, 1, 12)
[   29.575658] i8042: [28758] 31 <- i8042 (interrupt, 1, 12)
[   29.577232] i8042: [28760] d2 <- i8042 (interrupt, 1, 12)
[   29.578805] i8042: [28761] 71 <- i8042 (interrupt, 1, 12)
[   29.580389] i8042: [28763] f4 <- i8042 (interrupt, 1, 12)
[   29.582016] i8042: [28765] a4 <- i8042 (interrupt, 1, 12)
[   29.583586] i8042: [28766] f4 <- i8042 (interrupt, 1, 12)
[   29.585136] i8042: [28768] 31 <- i8042 (interrupt, 1, 12)
[   29.586794] i8042: [28769] d2 <- i8042 (interrupt, 1, 12)
[   29.588381] i8042: [28771] 71 <- i8042 (interrupt, 1, 12)
[   29.590454] i8042: [28773] f4 <- i8042 (interrupt, 1, 12)
[   29.591994] i8042: [28775] a4 <- i8042 (interrupt, 1, 12)
[   29.593627] i8042: [28776] f4 <- i8042 (interrupt, 1, 12)
[   29.595202] i8042: [28778] 31 <- i8042 (interrupt, 1, 12)
[   29.596784] i8042: [28779] d2 <- i8042 (interrupt, 1, 12)
[   29.598378] i8042: [28781] 71 <- i8042 (interrupt, 1, 12)
[   29.599967] i8042: [28783] f4 <- i8042 (interrupt, 1, 12)
[   29.601551] i8042: [28784] a4 <- i8042 (interrupt, 1, 12)
[   29.603130] i8042: [28786] f4 <- i8042 (interrupt, 1, 12)
[   29.604719] i8042: [28787] 31 <- i8042 (interrupt, 1, 12)
[   29.606296] i8042: [28789] d2 <- i8042 (interrupt, 1, 12)
[   29.607885] i8042: [28791] 71 <- i8042 (interrupt, 1, 12)
[   29.609464] i8042: [28792] f4 <- i8042 (interrupt, 1, 12)
[   29.611049] i8042: [28794] a4 <- i8042 (interrupt, 1, 12)
[   29.612625] i8042: [28795] f6 <- i8042 (interrupt, 1, 12)
[   29.614208] i8042: [28797] 31 <- i8042 (interrupt, 1, 12)
[   29.615726] i8042: [28798] d2 <- i8042 (interrupt, 1, 12)
[   29.617294] i8042: [28800] 71 <- i8042 (interrupt, 1, 12)
[   29.619404] i8042: [28802] f4 <- i8042 (interrupt, 1, 12)
[   29.621032] i8042: [28804] a4 <- i8042 (interrupt, 1, 12)
[   29.622611] i8042: [28805] f6 <- i8042 (interrupt, 1, 12)
[   29.624193] i8042: [28807] 31 <- i8042 (interrupt, 1, 12)
[   29.625777] i8042: [28808] d2 <- i8042 (interrupt, 1, 12)
[   29.627360] i8042: [28810] 71 <- i8042 (interrupt, 1, 12)
[   29.628977] i8042: [28812] f4 <- i8042 (interrupt, 1, 12)
[   29.630538] i8042: [28813] a4 <- i8042 (interrupt, 1, 12)
[   29.632063] i8042: [28815] f6 <- i8042 (interrupt, 1, 12)
[   29.633702] i8042: [28816] 31 <- i8042 (interrupt, 1, 12)
[   29.635286] i8042: [28818] d2 <- i8042 (interrupt, 1, 12)
[   29.636874] i8042: [28819] 71 <- i8042 (interrupt, 1, 12)
[   29.638459] i8042: [28821] f4 <- i8042 (interrupt, 1, 12)
[   29.639977] i8042: [28823] a4 <- i8042 (interrupt, 1, 12)
[   29.641627] i8042: [28824] f6 <- i8042 (interrupt, 1, 12)
[   29.643135] i8042: [28826] 31 <- i8042 (interrupt, 1, 12)
[   29.644713] i8042: [28827] d2 <- i8042 (interrupt, 1, 12)
[   29.646356] i8042: [28829] 71 <- i8042 (interrupt, 1, 12)
[   29.648433] i8042: [28831] f4 <- i8042 (interrupt, 1, 12)
[   29.649987] i8042: [28833] a4 <- i8042 (interrupt, 1, 12)
[   29.651543] i8042: [28834] f6 <- i8042 (interrupt, 1, 12)
[   29.653131] i8042: [28836] 31 <- i8042 (interrupt, 1, 12)
[   29.654751] i8042: [28837] d2 <- i8042 (interrupt, 1, 12)
[   29.656357] i8042: [28839] 71 <- i8042 (interrupt, 1, 12)
[   29.657957] i8042: [28841] f4 <- i8042 (interrupt, 1, 12)
[   29.659535] i8042: [28842] a4 <- i8042 (interrupt, 1, 12)
[   29.661091] i8042: [28844] f6 <- i8042 (interrupt, 1, 12)
[   29.662757] i8042: [28845] 31 <- i8042 (interrupt, 1, 12)
[   29.664266] i8042: [28847] d2 <- i8042 (interrupt, 1, 12)
[   29.665804] i8042: [28848] 71 <- i8042 (interrupt, 1, 12)
[   29.667894] i8042: [28851] f4 <- i8042 (interrupt, 1, 12)
[   29.669477] i8042: [28852] a4 <- i8042 (interrupt, 1, 12)
[   29.671132] i8042: [28854] f6 <- i8042 (interrupt, 1, 12)
[   29.672769] i8042: [28855] 31 <- i8042 (interrupt, 1, 12)
[   29.674360] i8042: [28857] d2 <- i8042 (interrupt, 1, 12)
[   29.675939] i8042: [28859] 71 <- i8042 (interrupt, 1, 12)
[   29.677520] i8042: [28860] f4 <- i8042 (interrupt, 1, 12)
[   29.679103] i8042: [28862] a4 <- i8042 (interrupt, 1, 12)
[   29.680685] i8042: [28863] f6 <- i8042 (interrupt, 1, 12)
[   29.682136] i8042: [28865] 31 <- i8042 (interrupt, 1, 12)
[   29.683750] i8042: [28866] d2 <- i8042 (interrupt, 1, 12)
[   29.685336] i8042: [28868] 71 <- i8042 (interrupt, 1, 12)
[   29.686949] i8042: [28870] f4 <- i8042 (interrupt, 1, 12)
[   29.688477] i8042: [28871] a4 <- i8042 (interrupt, 1, 12)
[   29.690052] i8042: [28873] f6 <- i8042 (interrupt, 1, 12)
[   29.691783] i8042: [28874] 31 <- i8042 (interrupt, 1, 12)
[   29.693355] i8042: [28876] d2 <- i8042 (interrupt, 1, 12)
[   29.694842] i8042: [28877] 71 <- i8042 (interrupt, 1, 12)
[   29.697017] i8042: [28880] f4 <- i8042 (interrupt, 1, 12)
[   29.698595] i8042: [28881] a4 <- i8042 (interrupt, 1, 12)
[   29.700069] i8042: [28883] f6 <- i8042 (interrupt, 1, 12)
[   29.701632] i8042: [28884] 31 <- i8042 (interrupt, 1, 12)
[   29.703275] i8042: [28886] d2 <- i8042 (interrupt, 1, 12)
[   29.704848] i8042: [28887] 71 <- i8042 (interrupt, 1, 12)
[   29.706376] i8042: [28889] f4 <- i8042 (interrupt, 1, 12)
[   29.707996] i8042: [28891] a4 <- i8042 (interrupt, 1, 12)
[   29.709618] i8042: [28892] f6 <- i8042 (interrupt, 1, 12)
[   29.711194] i8042: [28894] 31 <- i8042 (interrupt, 1, 12)
[   29.712795] i8042: [28895] d2 <- i8042 (interrupt, 1, 12)
[   29.714410] i8042: [28897] 71 <- i8042 (interrupt, 1, 12)
[   29.716465] i8042: [28899] f4 <- i8042 (interrupt, 1, 12)
[   29.717961] i8042: [28901] a4 <- i8042 (interrupt, 1, 12)
[   29.719542] i8042: [28902] f6 <- i8042 (interrupt, 1, 12)
[   29.721119] i8042: [28904] 31 <- i8042 (interrupt, 1, 12)
[   29.722711] i8042: [28905] d2 <- i8042 (interrupt, 1, 12)
[   29.724290] i8042: [28907] 71 <- i8042 (interrupt, 1, 12)
[   29.725876] i8042: [28909] f4 <- i8042 (interrupt, 1, 12)
[   29.727455] i8042: [28910] a4 <- i8042 (interrupt, 1, 12)
[   29.729069] i8042: [28912] f6 <- i8042 (interrupt, 1, 12)
[   29.730670] i8042: [28913] 31 <- i8042 (interrupt, 1, 12)
[   29.732240] i8042: [28915] d2 <- i8042 (interrupt, 1, 12)
[   29.733824] i8042: [28916] 71 <- i8042 (interrupt, 1, 12)
[   29.735377] i8042: [28918] f4 <- i8042 (interrupt, 1, 12)
[   29.736950] i8042: [28920] a4 <- i8042 (interrupt, 1, 12)
[   29.738668] i8042: [28921] f6 <- i8042 (interrupt, 1, 12)
[   29.740164] i8042: [28923] 31 <- i8042 (interrupt, 1, 12)
[   29.741817] i8042: [28924] d2 <- i8042 (interrupt, 1, 12)
[   29.743378] i8042: [28926] 71 <- i8042 (interrupt, 1, 12)
[   29.745474] i8042: [28928] f4 <- i8042 (interrupt, 1, 12)
[   29.746990] i8042: [28930] a4 <- i8042 (interrupt, 1, 12)
[   29.748589] i8042: [28931] f6 <- i8042 (interrupt, 1, 12)
[   29.750180] i8042: [28933] 31 <- i8042 (interrupt, 1, 12)
[   29.751763] i8042: [28934] d2 <- i8042 (interrupt, 1, 12)
[   29.753344] i8042: [28936] 71 <- i8042 (interrupt, 1, 12)
[   29.754943] i8042: [28938] f4 <- i8042 (interrupt, 1, 12)
[   29.756528] i8042: [28939] a4 <- i8042 (interrupt, 1, 12)
[   29.758092] i8042: [28941] f6 <- i8042 (interrupt, 1, 12)
[   29.759688] i8042: [28942] 31 <- i8042 (interrupt, 1, 12)
[   29.761261] i8042: [28944] d2 <- i8042 (interrupt, 1, 12)
[   29.762844] i8042: [28945] 71 <- i8042 (interrupt, 1, 12)
[   29.764424] i8042: [28947] f4 <- i8042 (interrupt, 1, 12)
[   29.766007] i8042: [28949] a4 <- i8042 (interrupt, 1, 12)
[   29.767590] i8042: [28950] f6 <- i8042 (interrupt, 1, 12)
[   29.769172] i8042: [28952] 31 <- i8042 (interrupt, 1, 12)
[   29.770762] i8042: [28953] d2 <- i8042 (interrupt, 1, 12)
[   29.772335] i8042: [28955] 71 <- i8042 (interrupt, 1, 12)
[   29.774434] i8042: [28957] f4 <- i8042 (interrupt, 1, 12)
[   29.775981] i8042: [28959] a4 <- i8042 (interrupt, 1, 12)
[   29.777561] i8042: [28960] f6 <- i8042 (interrupt, 1, 12)
[   29.779171] i8042: [28962] 31 <- i8042 (interrupt, 1, 12)
[   29.780725] i8042: [28963] d2 <- i8042 (interrupt, 1, 12)
[   29.782337] i8042: [28965] 71 <- i8042 (interrupt, 1, 12)
[   29.783937] i8042: [28967] f4 <- i8042 (interrupt, 1, 12)
[   29.785471] i8042: [28968] a4 <- i8042 (interrupt, 1, 12)
[   29.787056] i8042: [28970] f6 <- i8042 (interrupt, 1, 12)
[   29.788662] i8042: [28971] 31 <- i8042 (interrupt, 1, 12)
[   29.790186] i8042: [28973] d2 <- i8042 (interrupt, 1, 12)
[   29.791769] i8042: [28974] 71 <- i8042 (interrupt, 1, 12)
[   29.793935] i8042: [28977] f4 <- i8042 (interrupt, 1, 12)
[   29.795499] i8042: [28978] a4 <- i8042 (interrupt, 1, 12)
[   29.797079] i8042: [28980] f6 <- i8042 (interrupt, 1, 12)
[   29.798628] i8042: [28981] 31 <- i8042 (interrupt, 1, 12)
[   29.800186] i8042: [28983] d2 <- i8042 (interrupt, 1, 12)
[   29.801826] i8042: [28984] 71 <- i8042 (interrupt, 1, 12)
[   29.803412] i8042: [28986] f4 <- i8042 (interrupt, 1, 12)
[   29.804956] i8042: [28988] a4 <- i8042 (interrupt, 1, 12)
[   29.806549] i8042: [28989] f6 <- i8042 (interrupt, 1, 12)
[   29.808160] i8042: [28991] 31 <- i8042 (interrupt, 1, 12)
[   29.809746] i8042: [28992] d2 <- i8042 (interrupt, 1, 12)
[   29.811329] i8042: [28994] 71 <- i8042 (interrupt, 1, 12)
[   29.812886] i8042: [28996] f4 <- i8042 (interrupt, 1, 12)
[   29.814497] i8042: [28997] a4 <- i8042 (interrupt, 1, 12)
[   29.816007] i8042: [28999] f6 <- i8042 (interrupt, 1, 12)
[   29.817653] i8042: [29000] 31 <- i8042 (interrupt, 1, 12)
[   29.819173] i8042: [29002] d2 <- i8042 (interrupt, 1, 12)
[   29.820755] i8042: [29003] 71 <- i8042 (interrupt, 1, 12)
[   29.822908] i8042: [29006] f4 <- i8042 (interrupt, 1, 12)
[   29.824485] i8042: [29007] a4 <- i8042 (interrupt, 1, 12)
[   29.826078] i8042: [29009] f6 <- i8042 (interrupt, 1, 12)
[   29.827634] i8042: [29010] 31 <- i8042 (interrupt, 1, 12)
[   29.829230] i8042: [29012] d2 <- i8042 (interrupt, 1, 12)
[   29.830810] i8042: [29013] 71 <- i8042 (interrupt, 1, 12)
[   29.832376] i8042: [29015] f4 <- i8042 (interrupt, 1, 12)
[   29.833917] i8042: [29017] a4 <- i8042 (interrupt, 1, 12)
[   29.835500] i8042: [29018] f6 <- i8042 (interrupt, 1, 12)
[   29.837145] i8042: [29020] 31 <- i8042 (interrupt, 1, 12)
[   29.838722] i8042: [29021] d2 <- i8042 (interrupt, 1, 12)
[   29.840244] i8042: [29023] 71 <- i8042 (interrupt, 1, 12)
[   29.842395] i8042: [29025] f4 <- i8042 (interrupt, 1, 12)
[   29.843955] i8042: [29027] a4 <- i8042 (interrupt, 1, 12)
[   29.845493] i8042: [29028] f6 <- i8042 (interrupt, 1, 12)
[   29.847074] i8042: [29030] 31 <- i8042 (interrupt, 1, 12)
[   29.848698] i8042: [29031] d2 <- i8042 (interrupt, 1, 12)
[   29.850315] i8042: [29033] 71 <- i8042 (interrupt, 1, 12)
[   29.851918] i8042: [29035] f4 <- i8042 (interrupt, 1, 12)
[   29.853420] i8042: [29036] a4 <- i8042 (interrupt, 1, 12)
[   29.855038] i8042: [29038] f6 <- i8042 (interrupt, 1, 12)
[   29.856571] i8042: [29039] 31 <- i8042 (interrupt, 1, 12)
[   29.858191] i8042: [29041] d2 <- i8042 (interrupt, 1, 12)
[   29.859768] i8042: [29042] 71 <- i8042 (interrupt, 1, 12)
[   29.861346] i8042: [29044] f4 <- i8042 (interrupt, 1, 12)
[   29.862935] i8042: [29046] a4 <- i8042 (interrupt, 1, 12)
[   29.864554] i8042: [29047] f6 <- i8042 (interrupt, 1, 12)
[   29.866138] i8042: [29049] 31 <- i8042 (interrupt, 1, 12)
[   29.867717] i8042: [29050] d2 <- i8042 (interrupt, 1, 12)
[   29.869312] i8042: [29052] 71 <- i8042 (interrupt, 1, 12)
[   29.871394] i8042: [29054] f4 <- i8042 (interrupt, 1, 12)
[   29.872955] i8042: [29056] a4 <- i8042 (interrupt, 1, 12)
[   29.874518] i8042: [29057] f6 <- i8042 (interrupt, 1, 12)
[   29.876118] i8042: [29059] 31 <- i8042 (interrupt, 1, 12)
[   29.877694] i8042: [29060] d2 <- i8042 (interrupt, 1, 12)
[   29.879231] i8042: [29062] 71 <- i8042 (interrupt, 1, 12)
[   29.880852] i8042: [29063] f4 <- i8042 (interrupt, 1, 12)
[   29.882444] i8042: [29065] a4 <- i8042 (interrupt, 1, 12)
[   29.884018] i8042: [29067] f6 <- i8042 (interrupt, 1, 12)
[   29.885608] i8042: [29068] 31 <- i8042 (interrupt, 1, 12)
[   29.887182] i8042: [29070] d2 <- i8042 (interrupt, 1, 12)
[   29.888767] i8042: [29071] 71 <- i8042 (interrupt, 1, 12)
[   29.890354] i8042: [29073] f4 <- i8042 (interrupt, 1, 12)
[   29.891916] i8042: [29075] a4 <- i8042 (interrupt, 1, 12)
[   29.893549] i8042: [29076] f6 <- i8042 (interrupt, 1, 12)
[   29.895131] i8042: [29078] 31 <- i8042 (interrupt, 1, 12)
[   29.896711] i8042: [29079] d2 <- i8042 (interrupt, 1, 12)
[   29.898294] i8042: [29081] 71 <- i8042 (interrupt, 1, 12)
[   29.900379] i8042: [29083] f4 <- i8042 (interrupt, 1, 12)
[   29.901957] i8042: [29085] a4 <- i8042 (interrupt, 1, 12)
[   29.903554] i8042: [29086] f6 <- i8042 (interrupt, 1, 12)
[   29.905124] i8042: [29088] 31 <- i8042 (interrupt, 1, 12)
[   29.906707] i8042: [29089] d2 <- i8042 (interrupt, 1, 12)
[   29.908294] i8042: [29091] 71 <- i8042 (interrupt, 1, 12)
[   29.909968] i8042: [29093] f4 <- i8042 (interrupt, 1, 12)
[   29.911423] i8042: [29094] a4 <- i8042 (interrupt, 1, 12)
[   29.913046] i8042: [29096] f6 <- i8042 (interrupt, 1, 12)
[   29.914661] i8042: [29097] 31 <- i8042 (interrupt, 1, 12)
[   29.916186] i8042: [29099] d2 <- i8042 (interrupt, 1, 12)
[   29.917850] i8042: [29100] 71 <- i8042 (interrupt, 1, 12)
[   29.919974] i8042: [29103] f4 <- i8042 (interrupt, 1, 12)
[   29.921421] i8042: [29104] a4 <- i8042 (interrupt, 1, 12)
[   29.923040] i8042: [29106] f6 <- i8042 (interrupt, 1, 12)
[   29.924656] i8042: [29107] 31 <- i8042 (interrupt, 1, 12)
[   29.926188] i8042: [29109] d2 <- i8042 (interrupt, 1, 12)
[   29.927858] i8042: [29110] 71 <- i8042 (interrupt, 1, 12)
[   29.929409] i8042: [29112] f4 <- i8042 (interrupt, 1, 12)
[   29.930966] i8042: [29114] a4 <- i8042 (interrupt, 1, 12)
[   29.932567] i8042: [29115] f6 <- i8042 (interrupt, 1, 12)
[   29.934106] i8042: [29117] 31 <- i8042 (interrupt, 1, 12)
[   29.935774] i8042: [29118] d2 <- i8042 (interrupt, 1, 12)
[   29.937314] i8042: [29120] 71 <- i8042 (interrupt, 1, 12)
[   29.938973] i8042: [29122] f4 <- i8042 (interrupt, 1, 12)
[   29.940417] i8042: [29123] a4 <- i8042 (interrupt, 1, 12)
[   29.942079] i8042: [29125] f6 <- i8042 (interrupt, 1, 12)
[   29.943657] i8042: [29126] 31 <- i8042 (interrupt, 1, 12)
[   29.945442] i8042: [29128] d2 <- i8042 (interrupt, 1, 12)
[   29.946859] i8042: [29129] 71 <- i8042 (interrupt, 1, 12)
[   29.948976] i8042: [29132] f4 <- i8042 (interrupt, 1, 12)
[   29.950416] i8042: [29133] a4 <- i8042 (interrupt, 1, 12)
[   29.952045] i8042: [29135] f6 <- i8042 (interrupt, 1, 12)
[   29.953619] i8042: [29136] 31 <- i8042 (interrupt, 1, 12)
[   29.955199] i8042: [29138] d2 <- i8042 (interrupt, 1, 12)
[   29.957016] i8042: [29140] 71 <- i8042 (interrupt, 1, 12)
[   29.958596] i8042: [29141] f4 <- i8042 (interrupt, 1, 12)
[   29.960179] i8042: [29143] a4 <- i8042 (interrupt, 1, 12)
[   29.961762] i8042: [29144] f6 <- i8042 (interrupt, 1, 12)
[   29.963356] i8042: [29146] 31 <- i8042 (interrupt, 1, 12)
[   29.964753] i8042: [29147] d2 <- i8042 (interrupt, 1, 12)
[   29.966323] i8042: [29149] 71 <- i8042 (interrupt, 1, 12)
[   29.968594] i8042: [29151] f4 <- i8042 (interrupt, 1, 12)
[   29.970012] i8042: [29153] a4 <- i8042 (interrupt, 1, 12)
[   29.971755] i8042: [29154] f6 <- i8042 (interrupt, 1, 12)
[   29.973066] i8042: [29156] 31 <- i8042 (interrupt, 1, 12)
[   29.974928] i8042: [29158] d2 <- i8042 (interrupt, 1, 12)
[   29.976279] i8042: [29159] 71 <- i8042 (interrupt, 1, 12)
[   29.977855] i8042: [29160] f4 <- i8042 (interrupt, 1, 12)
[   29.979446] i8042: [29162] a4 <- i8042 (interrupt, 1, 12)
[   29.981033] i8042: [29164] f6 <- i8042 (interrupt, 1, 12)
[   29.982629] i8042: [29165] 31 <- i8042 (interrupt, 1, 12)
[   29.984161] i8042: [29167] d2 <- i8042 (interrupt, 1, 12)
[   29.985819] i8042: [29168] 71 <- i8042 (interrupt, 1, 12)
[   29.987399] i8042: [29170] f4 <- i8042 (interrupt, 1, 12)
[   29.989004] i8042: [29172] a4 <- i8042 (interrupt, 1, 12)
[   29.990566] i8042: [29173] f6 <- i8042 (interrupt, 1, 12)
[   29.992031] i8042: [29175] 31 <- i8042 (interrupt, 1, 12)
[   29.993642] i8042: [29176] d2 <- i8042 (interrupt, 1, 12)
[   29.995261] i8042: [29178] 71 <- i8042 (interrupt, 1, 12)
[   29.997382] i8042: [29180] f4 <- i8042 (interrupt, 1, 12)
[   29.999000] i8042: [29182] a4 <- i8042 (interrupt, 1, 12)
[   30.000568] i8042: [29183] f6 <- i8042 (interrupt, 1, 12)
[   30.002095] i8042: [29185] 31 <- i8042 (interrupt, 1, 12)
[   30.003730] i8042: [29186] d2 <- i8042 (interrupt, 1, 12)
[   30.005266] i8042: [29188] 71 <- i8042 (interrupt, 1, 12)
[   30.006857] i8042: [29189] f4 <- i8042 (interrupt, 1, 12)
[   30.008439] i8042: [29191] a4 <- i8042 (interrupt, 1, 12)
[   30.009985] i8042: [29193] f6 <- i8042 (interrupt, 1, 12)
[   30.011592] i8042: [29194] 31 <- i8042 (interrupt, 1, 12)
[   30.013173] i8042: [29196] d2 <- i8042 (interrupt, 1, 12)
[   30.014684] i8042: [29197] 71 <- i8042 (interrupt, 1, 12)
[   30.016283] i8042: [29199] f4 <- i8042 (interrupt, 1, 12)
[   30.017851] i8042: [29200] a4 <- i8042 (interrupt, 1, 12)
[   30.019432] i8042: [29202] f6 <- i8042 (interrupt, 1, 12)
[   30.021053] i8042: [29204] 31 <- i8042 (interrupt, 1, 12)
[   30.022631] i8042: [29205] d2 <- i8042 (interrupt, 1, 12)
[   30.024248] i8042: [29207] 71 <- i8042 (interrupt, 1, 12)
[   30.026300] i8042: [29209] f4 <- i8042 (interrupt, 1, 12)
[   30.027928] i8042: [29211] a4 <- i8042 (interrupt, 1, 12)
[   30.029257] PM: suspend entry (deep)
[   30.029436] i8042: [29212] f6 <- i8042 (interrupt, 1, 12)
[   30.031041] i8042: [29214] 31 <- i8042 (interrupt, 1, 12)
[   30.032662] i8042: [29215] d2 <- i8042 (interrupt, 1, 12)
[   30.034276] i8042: [29217] 71 <- i8042 (interrupt, 1, 12)
[   30.035876] i8042: [29218] f4 <- i8042 (interrupt, 1, 12)
[   30.037461] i8042: [29220] a4 <- i8042 (interrupt, 1, 12)
[   30.039020] i8042: [29222] f6 <- i8042 (interrupt, 1, 12)
[   30.040580] i8042: [29223] 31 <- i8042 (interrupt, 1, 12)
[   30.042124] i8042: [29225] d2 <- i8042 (interrupt, 1, 12)
[   30.043785] i8042: [29226] 71 <- i8042 (interrupt, 1, 12)
[   30.045884] i8042: [29229] f4 <- i8042 (interrupt, 1, 12)
[   30.047459] i8042: [29230] a4 <- i8042 (interrupt, 1, 12)
[   30.049047] i8042: [29232] f6 <- i8042 (interrupt, 1, 12)
[   30.050502] i8042: [29233] 31 <- i8042 (interrupt, 1, 12)
[   30.052079] i8042: [29235] d2 <- i8042 (interrupt, 1, 12)
[   30.053665] i8042: [29236] 71 <- i8042 (interrupt, 1, 12)
[   30.055306] i8042: [29238] f4 <- i8042 (interrupt, 1, 12)
[   30.056836] i8042: [29239] a4 <- i8042 (interrupt, 1, 12)
[   30.058483] i8042: [29241] f6 <- i8042 (interrupt, 1, 12)
[   30.060065] i8042: [29243] 31 <- i8042 (interrupt, 1, 12)
[   30.061677] i8042: [29244] d2 <- i8042 (interrupt, 1, 12)
[   30.063162] i8042: [29246] 71 <- i8042 (interrupt, 1, 12)
[   30.064779] i8042: [29247] f4 <- i8042 (interrupt, 1, 12)
[   30.066386] i8042: [29249] a4 <- i8042 (interrupt, 1, 12)
[   30.067976] i8042: [29251] f6 <- i8042 (interrupt, 1, 12)
[   30.069508] i8042: [29252] 31 <- i8042 (interrupt, 1, 12)
[   30.071078] i8042: [29254] d2 <- i8042 (interrupt, 1, 12)
[   30.072681] i8042: [29255] 71 <- i8042 (interrupt, 1, 12)
[   30.073400] Filesystems sync: 0.044 seconds
[   30.073417] PM: Preparing system for sleep (deep)
[   30.074747] i8042: [29257] f4 <- i8042 (interrupt, 1, 12)
[   30.076371] i8042: [29259] a4 <- i8042 (interrupt, 1, 12)
[   30.076918] Freezing user space processes ... 
[   30.078019] i8042: [29261] f6 <- i8042 (interrupt, 1, 12)
[   30.079552] i8042: [29262] 31 <- i8042 (interrupt, 1, 12)
[   30.081131] i8042: [29264] d2 <- i8042 (interrupt, 1, 12)
[   30.082793] i8042: [29265] 71 <- i8042 (interrupt, 1, 12)
[   30.084320] i8042: [29267] f4 <- i8042 (interrupt, 1, 12)
[   30.085955] i8042: [29269] a4 <- i8042 (interrupt, 1, 12)
[   30.087505] i8042: [29270] f4 <- i8042 (interrupt, 1, 12)
[   30.089054] i8042: [29272] 31 <- i8042 (interrupt, 1, 12)
[   30.090679] i8042: [29273] d2 <- i8042 (interrupt, 1, 12)
[   30.092208] i8042: [29275] 71 <- i8042 (interrupt, 1, 12)
[   30.094336] i8042: [29277] f4 <- i8042 (interrupt, 1, 12)
[   30.095971] i8042: [29278] a4 <- i8042 (interrupt, 1, 12)
[   30.097522] i8042: [29280] f4 <- i8042 (interrupt, 1, 12)
[   30.099051] i8042: [29282] 31 <- i8042 (interrupt, 1, 12)
[   30.100667] i8042: [29283] d2 <- i8042 (interrupt, 1, 12)
[   30.102251] i8042: [29285] 71 <- i8042 (interrupt, 1, 12)
[   30.103846] i8042: [29286] f4 <- i8042 (interrupt, 1, 12)
[   30.105427] i8042: [29288] a4 <- i8042 (interrupt, 1, 12)
[   30.107019] i8042: [29290] f4 <- i8042 (interrupt, 1, 12)
[   30.108628] i8042: [29291] 31 <- i8042 (interrupt, 1, 12)
[   30.110105] i8042: [29293] d2 <- i8042 (interrupt, 1, 12)
[   30.111755] i8042: [29294] 71 <- i8042 (interrupt, 1, 12)
[   30.113335] i8042: [29296] f4 <- i8042 (interrupt, 1, 12)
[   30.114960] i8042: [29298] a4 <- i8042 (interrupt, 1, 12)
[   30.116505] i8042: [29299] f4 <- i8042 (interrupt, 1, 12)
[   30.118087] i8042: [29301] 31 <- i8042 (interrupt, 1, 12)
[   30.119679] i8042: [29302] d2 <- i8042 (interrupt, 1, 12)
[   30.121253] i8042: [29304] 71 <- i8042 (interrupt, 1, 12)
[   30.123336] i8042: [29306] f4 <- i8042 (interrupt, 1, 12)
[   30.124926] i8042: [29308] a4 <- i8042 (interrupt, 1, 12)
[   30.126482] i8042: [29309] f4 <- i8042 (interrupt, 1, 12)
[   30.128086] i8042: [29311] 31 <- i8042 (interrupt, 1, 12)
[   30.129666] i8042: [29312] d2 <- i8042 (interrupt, 1, 12)
[   30.131251] i8042: [29314] 71 <- i8042 (interrupt, 1, 12)
[   30.132832] i8042: [29315] f4 <- i8042 (interrupt, 1, 12)
[   30.134381] i8042: [29317] a4 <- i8042 (interrupt, 1, 12)
[   30.136006] i8042: [29319] f4 <- i8042 (interrupt, 1, 12)
[   30.137568] i8042: [29320] 31 <- i8042 (interrupt, 1, 12)
[   30.139099] i8042: [29322] d2 <- i8042 (interrupt, 1, 12)
[   30.140734] i8042: [29323] 71 <- i8042 (interrupt, 1, 12)
[   30.142820] i8042: [29325] f4 <- i8042 (interrupt, 1, 12)
[   30.144404] i8042: [29327] a4 <- i8042 (interrupt, 1, 12)
[   30.146010] i8042: [29329] f4 <- i8042 (interrupt, 1, 12)
[   30.147565] i8042: [29330] 31 <- i8042 (interrupt, 1, 12)
[   30.149051] i8042: [29332] d2 <- i8042 (interrupt, 1, 12)
[   30.150700] i8042: [29333] 71 <- i8042 (interrupt, 1, 12)
[   30.152323] i8042: [29335] f4 <- i8042 (interrupt, 1, 12)
[   30.153914] i8042: [29337] a4 <- i8042 (interrupt, 1, 12)
[   30.155492] i8042: [29338] f4 <- i8042 (interrupt, 1, 12)
[   30.157074] i8042: [29340] 31 <- i8042 (interrupt, 1, 12)
[   30.158659] i8042: [29341] d2 <- i8042 (interrupt, 1, 12)
[   30.160213] i8042: [29343] 71 <- i8042 (interrupt, 1, 12)
[   30.161752] i8042: [29344] f4 <- i8042 (interrupt, 1, 12)
[   30.163408] i8042: [29346] a4 <- i8042 (interrupt, 1, 12)
[   30.164982] i8042: [29348] f4 <- i8042 (interrupt, 1, 12)
[   30.166564] i8042: [29349] 31 <- i8042 (interrupt, 1, 12)
[   30.168146] i8042: [29351] d2 <- i8042 (interrupt, 1, 12)
[   30.169745] i8042: [29352] 71 <- i8042 (interrupt, 1, 12)
[   30.171816] i8042: [29354] f4 <- i8042 (interrupt, 1, 12)
[   30.173396] i8042: [29356] a4 <- i8042 (interrupt, 1, 12)
[   30.174982] i8042: [29358] f4 <- i8042 (interrupt, 1, 12)
[   30.176564] i8042: [29359] 31 <- i8042 (interrupt, 1, 12)
[   30.178146] i8042: [29361] d2 <- i8042 (interrupt, 1, 12)
[   30.179735] i8042: [29362] 71 <- i8042 (interrupt, 1, 12)
[   30.181313] i8042: [29364] f4 <- i8042 (interrupt, 1, 12)
[   30.182904] i8042: [29366] a4 <- i8042 (interrupt, 1, 12)
[   30.184483] i8042: [29367] f4 <- i8042 (interrupt, 1, 12)
[   30.186036] i8042: [29369] 31 <- i8042 (interrupt, 1, 12)
[   30.187655] i8042: [29370] d2 <- i8042 (interrupt, 1, 12)
[   30.189218] i8042: [29372] 71 <- i8042 (interrupt, 1, 12)
[   30.190811] i8042: [29373] f4 <- i8042 (interrupt, 1, 12)
[   30.192392] i8042: [29375] a4 <- i8042 (interrupt, 1, 12)
[   30.193987] i8042: [29377] f4 <- i8042 (interrupt, 1, 12)
[   30.195561] i8042: [29378] 31 <- i8042 (interrupt, 1, 12)
[   30.197144] i8042: [29380] d2 <- i8042 (interrupt, 1, 12)
[   30.198724] i8042: [29381] 71 <- i8042 (interrupt, 1, 12)
[   30.200814] i8042: [29383] f4 <- i8042 (interrupt, 1, 12)
[   30.202398] i8042: [29385] a4 <- i8042 (interrupt, 1, 12)
[   30.203978] i8042: [29387] f4 <- i8042 (interrupt, 1, 12)
[   30.205557] i8042: [29388] 31 <- i8042 (interrupt, 1, 12)
[   30.207149] i8042: [29390] d2 <- i8042 (interrupt, 1, 12)
[   30.208720] i8042: [29391] 71 <- i8042 (interrupt, 1, 12)
[   30.210265] i8042: [29393] f4 <- i8042 (interrupt, 1, 12)
[   30.211885] i8042: [29395] a4 <- i8042 (interrupt, 1, 12)
[   30.213470] i8042: [29396] f4 <- i8042 (interrupt, 1, 12)
[   30.215055] i8042: [29398] 31 <- i8042 (interrupt, 1, 12)
[   30.216598] i8042: [29399] d2 <- i8042 (interrupt, 1, 12)
[   30.218217] i8042: [29401] 71 <- i8042 (interrupt, 1, 12)
[   30.220305] i8042: [29403] f4 <- i8042 (interrupt, 1, 12)
[   30.221890] i8042: [29405] a4 <- i8042 (interrupt, 1, 12)
[   30.223472] i8042: [29406] f4 <- i8042 (interrupt, 1, 12)
[   30.225051] i8042: [29408] 31 <- i8042 (interrupt, 1, 12)
[   30.226641] i8042: [29409] d2 <- i8042 (interrupt, 1, 12)
[   30.228182] i8042: [29411] 71 <- i8042 (interrupt, 1, 12)
[   30.229802] i8042: [29412] f4 <- i8042 (interrupt, 1, 12)
[   30.231390] i8042: [29414] a4 <- i8042 (interrupt, 1, 12)
[   30.232961] i8042: [29416] f4 <- i8042 (interrupt, 1, 12)
[   30.234544] i8042: [29417] 31 <- i8042 (interrupt, 1, 12)
[   30.236090] i8042: [29419] d2 <- i8042 (interrupt, 1, 12)
[   30.237720] i8042: [29420] 71 <- i8042 (interrupt, 1, 12)
[   30.239292] i8042: [29422] f4 <- i8042 (interrupt, 1, 12)
[   30.240879] i8042: [29423] a4 <- i8042 (interrupt, 1, 12)
[   30.242462] i8042: [29425] f4 <- i8042 (interrupt, 1, 12)
[   30.244045] i8042: [29427] 31 <- i8042 (interrupt, 1, 12)
[   30.245622] i8042: [29428] d2 <- i8042 (interrupt, 1, 12)
[   30.247192] i8042: [29430] 71 <- i8042 (interrupt, 1, 12)
[   30.249294] i8042: [29432] f4 <- i8042 (interrupt, 1, 12)
[   30.250873] i8042: [29433] a4 <- i8042 (interrupt, 1, 12)
[   30.252459] i8042: [29435] f4 <- i8042 (interrupt, 1, 12)
[   30.254010] i8042: [29437] 31 <- i8042 (interrupt, 1, 12)
[   30.255616] i8042: [29438] d2 <- i8042 (interrupt, 1, 12)
[   30.257134] i8042: [29440] 71 <- i8042 (interrupt, 1, 12)
[   30.258797] i8042: [29441] f4 <- i8042 (interrupt, 1, 12)
[   30.260383] i8042: [29443] a4 <- i8042 (interrupt, 1, 12)
[   30.261930] i8042: [29445] f4 <- i8042 (interrupt, 1, 12)
[   30.263539] i8042: [29446] 31 <- i8042 (interrupt, 1, 12)
[   30.265120] i8042: [29448] d2 <- i8042 (interrupt, 1, 12)
[   30.266702] i8042: [29449] 71 <- i8042 (interrupt, 1, 12)
[   30.268786] i8042: [29451] f4 <- i8042 (interrupt, 1, 12)
[   30.270331] i8042: [29453] a4 <- i8042 (interrupt, 1, 12)
[   30.271956] i8042: [29455] f4 <- i8042 (interrupt, 1, 12)
[   30.273539] i8042: [29456] 31 <- i8042 (interrupt, 1, 12)
[   30.275088] i8042: [29458] d2 <- i8042 (interrupt, 1, 12)
[   30.276695] i8042: [29459] 71 <- i8042 (interrupt, 1, 12)
[   30.278171] i8042: [29461] f4 <- i8042 (interrupt, 1, 12)
[   30.279860] i8042: [29462] a4 <- i8042 (interrupt, 1, 12)
[   30.281442] i8042: [29464] f4 <- i8042 (interrupt, 1, 12)
[   30.283037] i8042: [29466] 31 <- i8042 (interrupt, 1, 12)
[   30.284610] i8042: [29467] d2 <- i8042 (interrupt, 1, 12)
[   30.286192] i8042: [29469] 71 <- i8042 (interrupt, 1, 12)
[   30.287773] i8042: [29470] f4 <- i8042 (interrupt, 1, 12)
[   30.289364] i8042: [29472] a4 <- i8042 (interrupt, 1, 12)
[   30.290939] i8042: [29474] f4 <- i8042 (interrupt, 1, 12)
[   30.292520] i8042: [29475] 31 <- i8042 (interrupt, 1, 12)
[   30.294103] i8042: [29477] d2 <- i8042 (interrupt, 1, 12)
[   30.295642] i8042: [29478] 71 <- i8042 (interrupt, 1, 12)
[   30.297771] i8042: [29480] f4 <- i8042 (interrupt, 1, 12)
[   30.299353] i8042: [29482] a4 <- i8042 (interrupt, 1, 12)
[   30.300940] i8042: [29484] f4 <- i8042 (interrupt, 1, 12)
[   30.302536] i8042: [29485] 31 <- i8042 (interrupt, 1, 12)
[   30.304063] i8042: [29487] d2 <- i8042 (interrupt, 1, 12)
[   30.305687] i8042: [29488] 71 <- i8042 (interrupt, 1, 12)
[   30.307266] i8042: [29490] f4 <- i8042 (interrupt, 1, 12)
[   30.308841] i8042: [29491] a4 <- i8042 (interrupt, 1, 12)
[   30.310435] i8042: [29493] f4 <- i8042 (interrupt, 1, 12)
[   30.312016] i8042: [29495] 31 <- i8042 (interrupt, 1, 12)
[   30.313588] i8042: [29496] d2 <- i8042 (interrupt, 1, 12)
[   30.315145] i8042: [29498] 71 <- i8042 (interrupt, 1, 12)
[   30.316730] i8042: [29499] f4 <- i8042 (interrupt, 1, 12)
[   30.318341] i8042: [29501] a4 <- i8042 (interrupt, 1, 12)
[   30.319931] i8042: [29503] f4 <- i8042 (interrupt, 1, 12)
[   30.321473] i8042: [29504] 31 <- i8042 (interrupt, 1, 12)
[   30.323093] i8042: [29506] d2 <- i8042 (interrupt, 1, 12)
[   30.324680] i8042: [29507] 71 <- i8042 (interrupt, 1, 12)
[   30.326766] i8042: [29509] f4 <- i8042 (interrupt, 1, 12)
[   30.328346] i8042: [29511] a4 <- i8042 (interrupt, 1, 12)
[   30.329892] i8042: [29513] f4 <- i8042 (interrupt, 1, 12)
[   30.331521] i8042: [29514] 31 <- i8042 (interrupt, 1, 12)
[   30.333106] i8042: [29516] d2 <- i8042 (interrupt, 1, 12)
[   30.334684] i8042: [29517] 71 <- i8042 (interrupt, 1, 12)
[   30.336270] i8042: [29519] f4 <- i8042 (interrupt, 1, 12)
[   30.337849] i8042: [29520] a4 <- i8042 (interrupt, 1, 12)
[   30.339432] i8042: [29522] f4 <- i8042 (interrupt, 1, 12)
[   30.341021] i8042: [29524] 31 <- i8042 (interrupt, 1, 12)
[   30.342600] i8042: [29525] d2 <- i8042 (interrupt, 1, 12)
[   30.344182] i8042: [29527] 71 <- i8042 (interrupt, 1, 12)
[   30.346268] i8042: [29529] f4 <- i8042 (interrupt, 1, 12)
[   30.347852] i8042: [29530] a4 <- i8042 (interrupt, 1, 12)
[   30.349433] i8042: [29532] f4 <- i8042 (interrupt, 1, 12)
[   30.351015] i8042: [29534] 31 <- i8042 (interrupt, 1, 12)
[   30.352603] i8042: [29535] d2 <- i8042 (interrupt, 1, 12)
[   30.354179] i8042: [29537] 71 <- i8042 (interrupt, 1, 12)
[   30.355721] i8042: [29538] f4 <- i8042 (interrupt, 1, 12)
[   30.357338] i8042: [29540] a4 <- i8042 (interrupt, 1, 12)
[   30.358820] i8042: [29541] f4 <- i8042 (interrupt, 1, 12)
[   30.360504] i8042: [29543] 31 <- i8042 (interrupt, 1, 12)
[   30.362052] i8042: [29545] d2 <- i8042 (interrupt, 1, 12)
[   30.363668] i8042: [29546] 71 <- i8042 (interrupt, 1, 12)
[   30.364453] (elapsed 0.287 seconds) done.
[   30.364488] OOM killer disabled.
[   30.364493] Freezing remaining freezable tasks ... 
[   30.365276] i8042: [29548] f4 <- i8042 (interrupt, 1, 12)
[   30.366444] (elapsed 0.001 seconds) done.
[   30.366471] PM: Suspending system (deep)
[   30.366797] i8042: [29549] a4 <- i8042 (interrupt, 1, 12)
[   30.368442] i8042: [29551] f4 <- i8042 (interrupt, 1, 12)
[   30.370032] i8042: [29553] 31 <- i8042 (interrupt, 1, 12)
[   30.371613] i8042: [29554] d2 <- i8042 (interrupt, 1, 12)
[   30.373198] i8042: [29556] 71 <- i8042 (interrupt, 1, 12)
[   30.375242] i8042: [29558] f4 <- i8042 (interrupt, 1, 12)
[   30.375851] rfkill rfkill3: PM: calling rfkill_suspend+0x0/0x21 @ 4438, parent: hci0
[   30.375914] rfkill rfkill3: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   30.375933] input input22: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: serio1
[   30.375942] input input22: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   30.375950] input input21: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.375955] input input21: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.375961] input input20: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.375966] input input20: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.375972] input input19: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.375977] input input19: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.375984] input input18: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.375989] input input18: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.375995] input input17: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.376000] input input17: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376007] input input16: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.376012] input input16: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376018] input input15: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: card0
[   30.376023] input input15: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376030] sound pcmC0D10p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376039] sound pcmC0D10p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376046] sound pcmC0D9p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376052] sound pcmC0D9p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376058] sound pcmC0D8p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376064] sound pcmC0D8p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376071] sound pcmC0D7p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376077] sound pcmC0D7p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376101] sound pcmC0D3p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376107] sound pcmC0D3p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376113] sound pcmC0D0c: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376118] sound pcmC0D0c: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376124] sound pcmC0D0p: PM: calling do_pcm_suspend+0x0/0x27 @ 4438, parent: card0
[   30.376130] sound pcmC0D0p: PM: do_pcm_suspend+0x0/0x27 returned 0 after 0 usecs
[   30.376142] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:01:00.0
[   30.376149] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376158] platform VPC2004:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: PNP0C09:00
[   30.376163] platform VPC2004:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376200] rfkill rfkill0: PM: calling rfkill_suspend+0x0/0x21 @ 4438, parent: phy0
[   30.376206] rfkill rfkill0: PM: rfkill_suspend+0x0/0x21 returned 0 after 0 usecs
[   30.376213] leds phy0-led: PM: calling led_suspend+0x0/0x3f @ 4438, parent: 0000:02:00.0
[   30.376221] leds phy0-led: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   30.376230] platform regulatory.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.376235] platform regulatory.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376245] input input13: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: LNXVIDEO:00
[   30.376251] input input13: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376260] backlight intel_backlight: PM: calling backlight_suspend+0x0/0x7a [backlight] @ 4438, parent: card0-eDP-1
[   30.376271] backlight intel_backlight: PM: backlight_suspend+0x0/0x7a [backlight] returned 0 after 0 usecs
[   30.376295] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] @ 9, parent: 0000:00:0e.0
[   30.376447] ieee80211 phy0: PM: calling wiphy_suspend+0x0/0x124 [cfg80211] @ 109, parent: 0000:02:00.0
[   30.376506] wlan0: deauthenticating from c8:9e:43:94:32:f2 by local choice (Reason: 3=DEAUTH_LEAVING)
[   30.376596] input input11: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: 0018:056A:5120.0002
[   30.376611] input input11: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   30.376619] input input10: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: 0018:056A:5120.0002
[   30.376624] input input10: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376632] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0018:048D:8350.0001
[   30.376639] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376646] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0018:048D:8350.0001
[   30.376652] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376659] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0018:048D:8350.0001
[   30.376664] platform HID-SENSOR-200001.2.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376670] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0018:048D:8350.0001
[   30.376675] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376723] platform microcode: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.376728] platform microcode: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376726] usb 1-8: PM: calling usb_dev_suspend+0x0/0x14 @ 106, parent: usb1
[   30.376741] leds input3::scrolllock: PM: calling led_suspend+0x0/0x3f @ 4438, parent: input3
[   30.376749] leds input3::scrolllock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   30.376754] usb 1-8: PM: usb_dev_suspend+0x0/0x14 returned 0 after 1 usecs
[   30.376750] usb 1-7: PM: calling usb_dev_suspend+0x0/0x14 @ 11, parent: usb1
[   30.376757] leds input3::capslock: PM: calling led_suspend+0x0/0x3f @ 4438, parent: input3
[   30.376765] leds input3::capslock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   30.376771] i8042: [29559] a4 <- i8042 (interrupt, 1, 12)
[   30.376772] leds input3::numlock: PM: calling led_suspend+0x0/0x3f @ 4438, parent: input3
[   30.376772] mmcblk mmc0:0001: PM: calling mmc_bus_suspend+0x0/0x56 @ 106, parent: mmc0
[   30.376778] leds input3::numlock: PM: led_suspend+0x0/0x3f returned 0 after 0 usecs
[   30.376787] input input3: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: serio0
[   30.376792] input input3: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.376799] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.376804] snd-soc-dummy snd-soc-dummy: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376828] platform coretemp.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.376834] platform coretemp.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376843] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: rtc0
[   30.376849] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.376872] psmouse serio1: PM: calling serio_suspend+0x0/0x1d @ 4438, parent: i8042
[   30.376890] i8042: [29560] d4 -> i8042 (command)
[   30.377062] usb 1-7: PM: usb_dev_suspend+0x0/0x14 returned 0 after 300 usecs
[   30.377145] i8042: [29560] f5 -> i8042 (parameter)
[   30.379961] i8042: [29563] fa <- i8042 (interrupt, 1, 12)
[   30.380080] i8042: [29563] d4 -> i8042 (command)
[   30.380273] i8042: [29563] f6 -> i8042 (parameter)
[   30.383209] i8042: [29566] fa <- i8042 (interrupt, 1, 12)
[   30.383316] i8042: [29566] d4 -> i8042 (command)
[   30.383512] i8042: [29566] f4 -> i8042 (parameter)
[   30.386412] i8042: [29569] fa <- i8042 (interrupt, 1, 12)
[   30.386605] psmouse serio1: PM: serio_suspend+0x0/0x1d returned 0 after 9719 usecs
[   30.386641] atkbd serio0: PM: calling serio_suspend+0x0/0x1d @ 4438, parent: i8042
[   30.386655] i8042: [29569] f6 -> i8042 (kbd-data)
[   30.387955] i8042: [29571] ** <- i8042 (interrupt, 0, 1)
[   30.388041] atkbd serio0: PM: serio_suspend+0x0/0x1d returned 0 after 1391 usecs
[   30.388075] i8042 i8042: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.388112] i8042: [29571] 60 -> i8042 (command)
[   30.388240] i8042: [29571] 74 -> i8042 (parameter)
[   30.388394] i8042: [29571] aa -> i8042 (command)
[   30.388642] i8042: [29571] 55 <- i8042 (return)
[   30.388650] i8042: [29571] 60 -> i8042 (command)
[   30.388833] i8042: [29571] 67 -> i8042 (parameter)
[   30.388861] i8042 i8042: PM: platform_pm_suspend+0x0/0x4a returned 0 after 777 usecs
[   30.388897] platform intel_xhci_usb_sw: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:15.0
[   30.388903] platform intel_xhci_usb_sw: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.388913] platform Fixed MDIO bus.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.388918] platform Fixed MDIO bus.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.388953] idma64 idma64.3: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:17.1
[   30.388986] usb usb2: PM: calling usb_dev_suspend+0x0/0x14 @ 4439, parent: 0000:00:15.0
[   30.389043] usb usb1: PM: calling usb_dev_suspend+0x0/0x14 @ 11, parent: 0000:00:15.0
[   30.389238]  ata2: PM: calling ata_port_pm_suspend+0x0/0x3e @ 110, parent: 0000:00:12.0
[   30.389352]  ata2: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 104 usecs
[   30.389371] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 110, parent: i2c-3
[   30.389382]  ata1: PM: calling ata_port_pm_suspend+0x0/0x3e @ 4440, parent: 0000:00:12.0
[   30.389460] idma64 idma64.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 500 usecs
[   30.389462]  ata1: PM: ata_port_pm_suspend+0x0/0x3e returned 0 after 57 usecs
[   30.389474] idma64 idma64.2: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:17.0
[   30.389638] i2c_designware i2c_designware.2: PM: calling platform_pm_suspend+0x0/0x4a @ 4442, parent: 0000:00:17.0
[   30.389649] i2c_designware i2c_designware.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.389846] idma64 idma64.2: PM: platform_pm_suspend+0x0/0x4a returned 0 after 365 usecs
[   30.389874] idma64 idma64.1: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:16.3
[   30.389889] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4442, parent: i2c-1
[   30.389949] idma64 idma64.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 69 usecs
[   30.389960] idma64 idma64.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:16.0
[   30.390164] i2c_designware i2c_designware.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4445, parent: 0000:00:16.0
[   30.390175] i2c_designware i2c_designware.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390219] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_suspend+0x0/0x19 [snd_hda_codec] returned 0 after 13890 usecs
[   30.390256] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend+0x0/0x1da @ 98, parent: pci0000:00
[   30.390328] idma64 idma64.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 363 usecs
[   30.390336] platform intel-spi: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:1f.0
[   30.390342] platform intel-spi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390376] input input2: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: LNXPWRBN:00
[   30.390384] input input2: PM: input_dev_suspend+0x0/0x47 returned 0 after 1 usecs
[   30.390390] input input1: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: PNP0C0C:00
[   30.390396] input input1: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.390403] input input0: PM: calling input_dev_suspend+0x0/0x47 @ 4438, parent: PNP0C0D:00
[   30.390408] input input0: PM: input_dev_suspend+0x0/0x47 returned 0 after 0 usecs
[   30.390447] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390453] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390472] rtc_cmos 00:04: PM: calling pnp_bus_suspend+0x0/0x14 @ 4438, parent: pnp0
[   30.390608] rtc_cmos 00:04: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 129 usecs
[   30.390614] system 00:03: PM: calling pnp_bus_suspend+0x0/0x14 @ 4438, parent: pnp0
[   30.390620] system 00:03: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   30.390626] i8042 aux 00:02: PM: calling pnp_bus_suspend+0x0/0x14 @ 4438, parent: pnp0
[   30.390631] i8042 aux 00:02: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   30.390637] i8042 kbd 00:01: PM: calling pnp_bus_suspend+0x0/0x14 @ 4438, parent: pnp0
[   30.390642] i8042 kbd 00:01: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   30.390648] system 00:00: PM: calling pnp_bus_suspend+0x0/0x14 @ 4438, parent: pnp0
[   30.390653] system 00:00: PM: pnp_bus_suspend+0x0/0x14 returned 0 after 0 usecs
[   30.390663] platform chromeos_acpi: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390668] platform chromeos_acpi: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390674] platform efivars.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390679] platform efivars.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390685] platform rtc-efi.0: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390689] platform rtc-efi.0: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390697] button LNXPWRBN:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4438, parent: LNXSYSTM:00
[   30.390704] button LNXPWRBN:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   30.390713] acpi-fan PNP0C0B:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390718] acpi-fan PNP0C0B:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390724] platform MSFT0101:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390729] platform MSFT0101:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390735] platform INT33A1:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390740] platform INT33A1:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390748] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4438, parent: platform
[   30.390756] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   30.390765] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4438, parent: platform
[   30.390771] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   30.390779] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4438, parent: platform
[   30.390785] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   30.390795] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend+0x0/0x55 @ 4438, parent: platform
[   30.390800] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 0 usecs
[   30.390808] platform PNP0103:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390812] platform PNP0103:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390818] platform PNP0C0C:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390823] platform PNP0C0C:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390829] platform ACPI0003:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: platform
[   30.390834] platform ACPI0003:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390840] platform PNP0C0D:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: PNP0C09:00
[   30.390845] platform PNP0C0D:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390851] platform INT33D3:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: PNP0C09:00
[   30.390865] platform INT33D3:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390873] platform PNP0C0A:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: PNP0C09:00
[   30.390877] platform PNP0C0A:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390883] platform PNP0C09:00: PM: calling platform_pm_suspend+0x0/0x4a @ 4438, parent: 0000:00:1f.0
[   30.390888] platform PNP0C09:00: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.390915] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 9, parent: 0000:00:14.0
[   30.390920] thermal LNXTHERM:00: PM: calling acpi_thermal_suspend+0x0/0x1d @ 4438, parent: LNXSYBUS:01
[   30.390930] thermal LNXTHERM:00: PM: acpi_thermal_suspend+0x0/0x1d returned 0 after 2 usecs
[   30.390940] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 14 usecs
[   30.390944] tpm_crb MSFT0101:00: PM: calling tpm_pm_suspend+0x0/0xcc @ 4438, parent: LNXSYBUS:00
[   30.390952] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend+0x0/0x1da @ 9, parent: pci0000:00
[   30.390955] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 689 usecs
[   30.390970] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 98, parent: pci0000:00
[   30.390977] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   30.391027] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 68 usecs
[   30.391046] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4446, parent: pci0000:00
[   30.391061] intel-lpss 0000:00:17.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   30.391107] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4447, parent: pci0000:00
[   30.391117] intel-lpss 0000:00:16.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   30.391264] pcieport 0000:00:14.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4449, parent: pci0000:00
[   30.391278] pcieport 0000:00:14.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 4 usecs
[   30.391288] ahci 0000:00:12.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4449, parent: pci0000:00
[   30.391298] ahci 0000:00:12.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 4 usecs
[   30.391312] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4449, parent: pci0000:00
[   30.391793] mei_me 0000:00:0f.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 474 usecs
[   30.391812] i915 0000:00:02.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4449, parent: pci0000:00
[   30.391827] pci 0000:00:00.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4450, parent: pci0000:00
[   30.391839] pci 0000:00:00.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   30.391849] pci 0000:00:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4450, parent: pci0000:00
[   30.391865] pci 0000:00:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 0 usecs
[   30.392583] i915 0000:00:02.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 763 usecs
[   30.398928] usb usb1: PM: usb_dev_suspend+0x0/0x14 returned 0 after 9865 usecs
[   30.400498] mmcblk mmc0:0001: PM: mmc_bus_suspend+0x0/0x56 returned 0 after 23674 usecs
[   30.400589] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend+0x0/0x1da @ 98, parent: pci0000:00
[   30.400735] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 132 usecs
[   30.401291] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 11901 usecs
[   30.401498] i2c_designware i2c_designware.3: PM: calling platform_pm_suspend+0x0/0x4a @ 4441, parent: 0000:00:17.1
[   30.401523] i2c_designware i2c_designware.3: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.401544] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend+0x0/0x1da @ 9, parent: pci0000:00
[   30.401556] intel-lpss 0000:00:17.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   30.403345] i2c_hid_acpi i2c-WCOM5120:00: failed to change power setting.
[   30.403366] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend+0x0/0x55 returned 0 after 13465 usecs
[   30.403555] i2c_designware i2c_designware.1: PM: calling platform_pm_suspend+0x0/0x4a @ 4444, parent: 0000:00:16.3
[   30.403580] i2c_designware i2c_designware.1: PM: platform_pm_suspend+0x0/0x4a returned 0 after 0 usecs
[   30.403640] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend+0x0/0x1da @ 4446, parent: pci0000:00
[   30.403656] intel-lpss 0000:00:16.3: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   30.411276] usb usb2: PM: usb_dev_suspend+0x0/0x14 returned 0 after 22259 usecs
[   30.411413] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4447, parent: pci0000:00
[   30.411557] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 117 usecs
[   30.431164] ieee80211 phy0: PM: wiphy_suspend+0x0/0x124 [cfg80211] returned 0 after 54658 usecs
[   30.431287] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend+0x0/0x1da @ 4445, parent: 0000:00:14.1
[   30.431304] iwlwifi 0000:02:00.0: PM: pci_pm_suspend+0x0/0x1da returned 0 after 2 usecs
[   30.431325] pcieport 0000:00:14.1: PM: calling pci_pm_suspend+0x0/0x1da @ 4448, parent: pci0000:00
[   30.431337] pcieport 0000:00:14.1: PM: pci_pm_suspend+0x0/0x1da returned 0 after 5 usecs
[   30.694701] tpm_crb MSFT0101:00: PM: tpm_pm_suspend+0x0/0xcc returned 0 after 303745 usecs
[   30.694747] button PNP0C0C:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4438, parent: LNXSYBUS:00
[   30.694756] button PNP0C0C:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   30.694849] button PNP0C0D:00: PM: calling acpi_button_suspend+0x0/0x19 @ 4438, parent: PNP0C09:00
[   30.694871] button PNP0C0D:00: PM: acpi_button_suspend+0x0/0x19 returned 0 after 0 usecs
[   30.694885] ec PNP0C09:00: PM: calling acpi_ec_suspend+0x0/0x7d @ 4438, parent: device:01
[   30.694892] ec PNP0C09:00: PM: acpi_ec_suspend+0x0/0x7d returned 0 after 0 usecs
[   30.694941] PM: suspend of devices complete after 319.159 msecs
[   30.694946] PM: start suspend of devices complete after 328.348 msecs
[   30.695091] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4450, parent: pci0000:00
[   30.695105] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   30.695333] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4445, parent: i2c-3
[   30.695360] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 1 usecs
[   30.695379] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4445, parent: i2c-1
[   30.695425] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4438, parent: platform
[   30.695439] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 1 usecs
[   30.695448] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4438, parent: platform
[   30.695454] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   30.695461] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 74 usecs
[   30.695463] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4438, parent: platform
[   30.695468] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   30.695478] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_late+0x0/0x52 @ 4438, parent: platform
[   30.695481] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 4450, parent: 0000:00:17.1
[   30.695496] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_late+0x0/0x52 returned 0 after 0 usecs
[   30.695503] i2c_designware i2c_designware.3: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 7 usecs
[   30.695517] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4450, parent: 0000:00:14.1
[   30.695524] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: 0000:00:14.0
[   30.695525] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   30.695532] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695549] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695556] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695582] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_suspend+0x0/0x40 @ 4445, parent: 0000:00:16.3
[   30.695604] i2c_designware i2c_designware.1: PM: dw_i2c_plat_suspend+0x0/0x40 returned 0 after 8 usecs
[   30.695619] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695627] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 1 usecs
[   30.695636] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695642] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695648] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695652] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695658] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695668] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695702] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 41 usecs
[   30.695713] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 39 usecs
[   30.695717] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695724] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695726] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695733] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695734] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695741] pcieport 0000:00:14.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695745] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695751] ahci 0000:00:12.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695752] pcieport 0000:00:14.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695760] ahci 0000:00:12.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695765] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695770] i915 0000:00:02.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4447, parent: pci0000:00
[   30.695773] mei_me 0000:00:0f.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695784] pci 0000:00:00.1: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695790] pci 0000:00:00.1: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.695799] pci 0000:00:00.0: PM: calling pci_pm_suspend_late+0x0/0x3a @ 4445, parent: pci0000:00
[   30.695805] pci 0000:00:00.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 0 usecs
[   30.710027] i915 0000:00:02.0: PM: pci_pm_suspend_late+0x0/0x3a returned 0 after 14242 usecs
[   30.710242] PM: late suspend of devices complete after 15.290 msecs
[   30.710593] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4445, parent: pci0000:00
[   30.710787] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4450, parent: i2c-3
[   30.710802] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   30.710815] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4450, parent: i2c-1
[   30.710822] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 0 usecs
[   30.710905] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4438, parent: platform
[   30.711860] broxton-pinctrl INT3452:03: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 937 usecs
[   30.711870] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4438, parent: platform
[   30.712724] broxton-pinctrl INT3452:02: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 847 usecs
[   30.712733] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4438, parent: platform
[   30.714129] broxton-pinctrl INT3452:01: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1390 usecs
[   30.714139] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_suspend_noirq+0x0/0x49 @ 4438, parent: platform
[   30.715845] broxton-pinctrl INT3452:00: PM: acpi_subsys_suspend_noirq+0x0/0x49 returned 0 after 1699 usecs
[   30.715877] iwlwifi 0000:02:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4450, parent: 0000:00:14.1
[   30.715986] ec PNP0C09:00: PM: calling acpi_ec_suspend_noirq+0x0/0x4c @ 4438, parent: device:01
[   30.715996] ACPI: EC: interrupt blocked
[   30.715998] ec PNP0C09:00: PM: acpi_ec_suspend_noirq+0x0/0x4c returned 0 after 2 usecs
[   30.716054] rtsx_pci 0000:01:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4447, parent: 0000:00:14.0
[   30.716106] i801_smbus 0000:00:1f.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4448, parent: pci0000:00
[   30.716157] lpc_ich 0000:00:1f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 109, parent: pci0000:00
[   30.716817] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4439, parent: pci0000:00
[   30.716835] intel-lpss 0000:00:17.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4446, parent: pci0000:00
[   30.716871] i801_smbus 0000:00:1f.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 752 usecs
[   30.716877] lpc_ich 0000:00:1f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 710 usecs
[   30.716890] intel-lpss 0000:00:16.3: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 109, parent: pci0000:00
[   30.716890] intel-lpss 0000:00:17.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4448, parent: pci0000:00
[   30.716897] intel-lpss 0000:00:17.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   30.716908] intel-lpss 0000:00:16.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4448, parent: pci0000:00
[   30.716914] intel-lpss 0000:00:16.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   30.716919] xhci_hcd 0000:00:15.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4444, parent: pci0000:00
[   30.716963] mei_me 0000:00:0f.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 9, parent: pci0000:00
[   30.717127] pci 0000:00:00.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 110, parent: pci0000:00
[   30.717188] ahci 0000:00:12.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4442, parent: pci0000:00
[   30.717194] pci 0000:00:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 58 usecs
[   30.717211] pci 0000:00:00.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4440, parent: pci0000:00
[   30.717260] pci 0000:00:00.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 42 usecs
[   30.721911] snd_hda_intel 0000:00:0e.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11292 usecs
[   30.721930] i915 0000:00:02.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4441, parent: pci0000:00
[   30.721940] i915 0000:00:02.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 0 usecs
[   30.728095] iwlwifi 0000:02:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12208 usecs
[   30.728119] pcieport 0000:00:14.1: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4448, parent: pci0000:00
[   30.728875] intel-lpss 0000:00:16.3: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11976 usecs
[   30.728877] mei_me 0000:00:0f.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11906 usecs
[   30.728901] ahci 0000:00:12.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11705 usecs
[   30.729112] xhci_hcd 0000:00:15.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12183 usecs
[   30.729511] sdhci-pci 0000:00:1c.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 12684 usecs
[   30.729921] intel-lpss 0000:00:17.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13077 usecs
[   30.729994] rtsx_pci 0000:01:00.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 13932 usecs
[   30.730014] pcieport 0000:00:14.0: PM: calling pci_pm_suspend_noirq+0x0/0x20a @ 4443, parent: pci0000:00
[   30.739871] pcieport 0000:00:14.1: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11742 usecs
[   30.741865] pcieport 0000:00:14.0: PM: pci_pm_suspend_noirq+0x0/0x20a returned 0 after 11842 usecs
[   30.741892] PM: noirq suspend of devices complete after 31.406 msecs
[   30.742044] ACPI: PM: Preparing to enter system sleep state S3
[   30.742442] ACPI: EC: event blocked
[   30.742446] ACPI: EC: EC stopped
[   30.742448] ACPI: PM: Saving platform NVS memory
[   30.742458] Disabling non-boot CPUs ...
[   30.744630] smpboot: CPU 1 is now offline
[   30.747123] smpboot: CPU 2 is now offline
[   30.749628] smpboot: CPU 3 is now offline
[   30.750291] PM: Checking wakeup interrupts
[   30.750300] PM: Calling mce_syscore_suspend+0x0/0x16
[   30.750312] PM: Calling timekeeping_suspend+0x0/0x285
[   30.750427] PM: Calling save_ioapic_entries+0x0/0xb0
[   30.751731] PM: Calling i8259A_suspend+0x0/0x2d
[   30.751745] PM: Calling fw_suspend+0x0/0x1b
[   30.751750] PM: Calling acpi_save_bm_rld+0x0/0x22
[   30.751759] PM: Calling lapic_suspend+0x0/0x20e
[   30.756718] TSC at resume: 699437607
[   30.756758] ACPI: PM: Low-level resume complete
[   30.756920] ACPI: EC: EC started
[   30.756929] ACPI: PM: Restoring platform NVS memory
[   30.756951] PM: Calling init_counter_refs+0x0/0x6d
[   30.756989] PM: Calling lapic_resume+0x0/0x31a
[   30.757063] PM: Calling acpi_restore_bm_rld+0x0/0x65
[   30.757089] PM: Calling irqrouter_resume+0x0/0x48
[   30.757114] PM: Calling i8259A_resume+0x0/0x32
[   30.757324] PM: Calling ioapic_resume+0x0/0xcd
[   30.757655] PM: Calling irq_pm_syscore_resume+0x0/0x17
[   30.757769] PM: Calling timekeeping_resume+0x0/0x21d
[   30.757924] PM: Timekeeping suspended for 9.501 seconds
[   30.757996] PM: Calling mce_syscore_resume+0x0/0x28
[   30.758128] PM: Calling microcode_bsp_resume+0x0/0x50
[   30.758212] Enabling non-boot CPUs ...
[   30.759125] x86: Booting SMP configuration:
[   30.759141] smpboot: Booting Node 0 Processor 1 APIC 0x2
[   30.763855] CPU1 is up
[   30.764521] smpboot: Booting Node 0 Processor 2 APIC 0x4
[   30.774181] CPU2 is up
[   30.774776] smpboot: Booting Node 0 Processor 3 APIC 0x6
[   30.779994] CPU3 is up
[   30.780624] ACPI: PM: Waking up from system sleep state S3
[   30.784666] ec PNP0C09:00: PM: calling acpi_ec_resume_noirq+0x0/0x49 @ 4438, parent: device:01
[   30.784677] i915 0000:00:02.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 98, parent: pci0000:00
[   30.784672] pci 0000:00:00.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4448, parent: pci0000:00
[   30.784706] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4447, parent: pci0000:00
[   30.784738] ahci 0000:00:12.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4446, parent: pci0000:00
[   30.784960] pci 0000:00:00.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 242 usecs
[   30.785004] pcieport 0000:00:14.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4448, parent: pci0000:00
[   30.785033] mei_me 0000:00:0f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 275 usecs
[   30.785071] pcieport 0000:00:14.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4447, parent: pci0000:00
[   30.785092] i915 0000:00:02.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 355 usecs
[   30.785102] ahci 0000:00:12.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 329 usecs
[   30.785130] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 98, parent: pci0000:00
[   30.785141] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4446, parent: pci0000:00
[   30.785290] pcieport 0000:00:14.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 259 usecs
[   30.785323] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4448, parent: pci0000:00
[   30.785392] intel-lpss 0000:00:16.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 222 usecs
[   30.785429] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4446, parent: pci0000:00
[   30.785451] pcieport 0000:00:14.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 352 usecs
[   30.785488] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4447, parent: pci0000:00
[   30.785600] intel-lpss 0000:00:16.3: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 252 usecs
[   30.785617] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 458 usecs
[   30.785635] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4448, parent: pci0000:00
[   30.785658] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 98, parent: pci0000:00
[   30.785679] intel-lpss 0000:00:17.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 225 usecs
[   30.785702] intel-lpss 0000:00:17.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 189 usecs
[   30.785711] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4446, parent: pci0000:00
[   30.785726] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4443, parent: pci0000:00
[   30.785735] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4447, parent: 0000:00:14.0
[   30.785791] ACPI: EC: interrupt unblocked
[   30.785791] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4439, parent: 0000:00:14.1
[   30.785805] ec PNP0C09:00: PM: acpi_ec_resume_noirq+0x0/0x49 returned 0 after 12 usecs
[   30.785852] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 116 usecs
[   30.785935] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4444, parent: i2c-3
[   30.785967] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4446, parent: i2c-1
[   30.785981] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1 usecs
[   30.786001] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 0 usecs
[   30.786012] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 328 usecs
[   30.786044] pci 0000:00:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 286 usecs
[   30.786150] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_noirq+0x0/0xff @ 4446, parent: pci0000:00
[   30.786189] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4438, parent: platform
[   30.787165] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 990 usecs
[   30.788764] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 3003 usecs
[   30.790311] iwlwifi 0000:02:00.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 4490 usecs
[   30.790339] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_noirq+0x0/0xff returned 0 after 4678 usecs
[   30.790640] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 4422 usecs
[   30.790669] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4438, parent: platform
[   30.792098] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 1407 usecs
[   30.792124] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4438, parent: platform
[   30.793007] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 862 usecs
[   30.793033] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_noirq+0x0/0x29 @ 4438, parent: platform
[   30.794003] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_noirq+0x0/0x29 returned 0 after 949 usecs
[   30.794139] i8042 i8042: PM: calling i8042_pm_resume_noirq+0x0/0x21 @ 4438, parent: platform
[   30.794160] i8042 i8042: PM: i8042_pm_resume_noirq+0x0/0x21 returned 0 after 0 usecs
[   30.794347] PM: noirq resume of devices complete after 10.037 msecs
[   30.794647] pci 0000:00:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   30.794675] pci 0000:00:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.794698] pci 0000:00:00.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   30.794717] pci 0000:00:00.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.794740] i915 0000:00:02.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 9, parent: pci0000:00
[   30.794781] mei_me 0000:00:0f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: pci0000:00
[   30.794811] mei_me 0000:00:0f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   30.794836] ahci 0000:00:12.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: pci0000:00
[   30.794856] ahci 0000:00:12.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.794864] pcieport 0000:00:14.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4443, parent: pci0000:00
[   30.794886] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: pci0000:00
[   30.794887] pcieport 0000:00:14.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4448, parent: pci0000:00
[   30.794895] pcieport 0000:00:14.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   30.794907] xhci_hcd 0000:00:15.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.794918] pcieport 0000:00:14.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.794918] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4443, parent: pci0000:00
[   30.794931] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: pci0000:00
[   30.794942] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4448, parent: pci0000:00
[   30.794956] intel-lpss 0000:00:16.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   30.794965] intel-lpss 0000:00:16.3: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   30.794976] intel-lpss 0000:00:17.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   30.794981] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4443, parent: pci0000:00
[   30.794990] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: pci0000:00
[   30.795001] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4448, parent: pci0000:00
[   30.795012] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.795015] intel-lpss 0000:00:17.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 11 usecs
[   30.795023] lpc_ich 0000:00:1f.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.795036] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume_early+0x0/0x29 @ 4443, parent: pci0000:00
[   30.795041] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 98, parent: 0000:00:14.0
[   30.795052] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4448, parent: 0000:00:14.1
[   30.795063] i801_smbus 0000:00:1f.1: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.795069] rtsx_pci 0000:01:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.795074] iwlwifi 0000:02:00.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 0 usecs
[   30.795125] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 4448, parent: 0000:00:16.3
[   30.795144] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4438, parent: platform
[   30.795147] i2c_designware i2c_designware.3: PM: calling dw_i2c_plat_resume+0x0/0x46 @ 4444, parent: 0000:00:17.1
[   30.795160] i2c_designware i2c_designware.1: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 12 usecs
[   30.795170] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.795174] i2c_designware i2c_designware.3: PM: dw_i2c_plat_resume+0x0/0x46 returned 0 after 8 usecs
[   30.795192] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4438, parent: platform
[   30.795211] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.795231] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4438, parent: platform
[   30.795257] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 98, parent: i2c-1
[   30.795279] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.795291] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4439, parent: i2c-3
[   30.795310] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.795315] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.795333] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume_early+0x0/0x6b @ 4438, parent: platform
[   30.795352] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume_early+0x0/0x6b returned 0 after 0 usecs
[   30.797775] i915 0000:00:02.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 3014 usecs
[   30.797940] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume_early+0x0/0x29 @ 4439, parent: pci0000:00
[   30.797989] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume_early+0x0/0x29 returned 0 after 1 usecs
[   30.798147] PM: early resume of devices complete after 3.673 msecs
[   30.798410] ec PNP0C09:00: PM: calling acpi_ec_resume+0x0/0x1a @ 4438, parent: device:01
[   30.798409] pci 0000:00:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4444, parent: pci0000:00
[   30.798440] ACPI: EC: event unblocked
[   30.798431] pci 0000:00:00.1: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   30.798461] pci 0000:00:00.1: PM: pci_pm_resume+0x0/0xed returned 0 after 3 usecs
[   30.798464] pci 0000:00:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 2 usecs
[   30.798469] ec PNP0C09:00: PM: acpi_ec_resume+0x0/0x1a returned 0 after 29 usecs
[   30.798485] i915 0000:00:02.0: PM: calling pci_pm_resume+0x0/0xed @ 4444, parent: pci0000:00
[   30.798487] battery PNP0C0A:00: PM: calling acpi_battery_resume+0x0/0x3b @ 4438, parent: PNP0C09:00
[   30.798499] mei_me 0000:00:0f.0: PM: calling pci_pm_resume+0x0/0xed @ 98, parent: pci0000:00
[   30.798701] ahci 0000:00:12.0: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: pci0000:00
[   30.798759] ahci 0000:00:12.0: PM: pci_pm_resume+0x0/0xed returned 0 after 33 usecs
[   30.798784] pcieport 0000:00:14.1: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: pci0000:00
[   30.798781] pcieport 0000:00:14.0: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: pci0000:00
[   30.798843] pcieport 0000:00:14.1: PM: pci_pm_resume+0x0/0xed returned 0 after 41 usecs
[   30.798858] xhci_hcd 0000:00:15.0: PM: calling pci_pm_resume+0x0/0xed @ 4442, parent: pci0000:00
[   30.798865] pcieport 0000:00:14.0: PM: pci_pm_resume+0x0/0xed returned 0 after 50 usecs
[   30.798868] intel-lpss 0000:00:16.0: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: pci0000:00
[   30.798884] intel-lpss 0000:00:16.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   30.798890] intel-lpss 0000:00:16.3: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: pci0000:00
[   30.798906] intel-lpss 0000:00:17.0: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: pci0000:00
[   30.798912] intel-lpss 0000:00:16.3: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   30.798925] intel-lpss 0000:00:17.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   30.798935] intel-lpss 0000:00:17.1: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: pci0000:00
[   30.798946] sdhci-pci 0000:00:1c.0: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: pci0000:00
[   30.798954] intel-lpss 0000:00:17.1: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   30.798976] lpc_ich 0000:00:1f.0: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: pci0000:00
[   30.798994] lpc_ich 0000:00:1f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1 usecs
[   30.799012] i801_smbus 0000:00:1f.1: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: pci0000:00
[   30.799048] i801_smbus 0000:00:1f.1: PM: pci_pm_resume+0x0/0xed returned 0 after 19 usecs
[   30.799068] rtsx_pci 0000:01:00.0: PM: calling pci_pm_resume+0x0/0xed @ 9, parent: 0000:00:14.0
[   30.799334] sdhci-pci 0000:00:1c.0: PM: pci_pm_resume+0x0/0xed returned 0 after 369 usecs
[   30.799399] iwlwifi 0000:02:00.0: PM: calling pci_pm_resume+0x0/0xed @ 4439, parent: 0000:00:14.1
[   30.799530] iwlwifi 0000:02:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 109 usecs
[   30.799560] i2c_designware i2c_designware.0: PM: calling platform_pm_resume+0x0/0x41 @ 4439, parent: 0000:00:16.0
[   30.799578] i2c_designware i2c_designware.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.799599] i2c_designware i2c_designware.1: PM: calling platform_pm_resume+0x0/0x41 @ 4448, parent: 0000:00:16.3
[   30.799598] xhci_hcd 0000:00:15.0: PM: pci_pm_resume+0x0/0xed returned 0 after 706 usecs
[   30.799625] i2c_designware i2c_designware.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.799650] i2c_designware i2c_designware.3: PM: calling platform_pm_resume+0x0/0x41 @ 4448, parent: 0000:00:17.1
[   30.799649] i2c_designware i2c_designware.2: PM: calling platform_pm_resume+0x0/0x41 @ 4447, parent: 0000:00:17.0
[   30.799667] i2c_designware i2c_designware.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.799674] i2c_designware i2c_designware.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.799688] i2c_hid_acpi i2c-ITE8350:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4448, parent: i2c-3
[   30.799695]  ata1: PM: calling ata_port_pm_resume+0x0/0x56 @ 4447, parent: 0000:00:12.0
[   30.799744]  ata2: PM: calling ata_port_pm_resume+0x0/0x56 @ 4439, parent: 0000:00:12.0
[   30.799794]  ata2: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 15 usecs
[   30.799795]  ata1: PM: ata_port_pm_resume+0x0/0x56 returned 0 after 79 usecs
[   30.799826] usb usb1: PM: calling usb_dev_resume+0x0/0x14 @ 4439, parent: 0000:00:15.0
[   30.799834] i2c_hid_acpi i2c-WCOM5120:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4442, parent: i2c-1
[   30.800339] rtsx_pci 0000:01:00.0: PM: pci_pm_resume+0x0/0xed returned 0 after 1248 usecs
[   30.800553] usb usb2: PM: calling usb_dev_resume+0x0/0x14 @ 110, parent: 0000:00:15.0
[   30.800870] mei_me 0000:00:0f.0: PM: pci_pm_resume+0x0/0xed returned 0 after 2348 usecs
[   30.802280] mmcblk mmc0:0001: PM: calling mmc_bus_resume+0x0/0x53 @ 4458, parent: mmc0
[   30.802337] mmcblk mmc0:0001: PM: mmc_bus_resume+0x0/0x53 returned 0 after 12 usecs
[   30.803026] ieee80211 phy0: PM: calling wiphy_resume+0x0/0x158 [cfg80211] @ 4461, parent: 0000:02:00.0
[   30.815606] i915 0000:00:02.0: PM: pci_pm_resume+0x0/0xed returned 0 after 17097 usecs
[   30.815758] snd_hda_intel 0000:00:0e.0: PM: calling pci_pm_resume+0x0/0xed @ 4462, parent: pci0000:00
[   30.821932] battery PNP0C0A:00: PM: acpi_battery_resume+0x0/0x3b returned 0 after 23423 usecs
[   30.821980] button PNP0C0D:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4438, parent: PNP0C09:00
[   30.822530] usb usb2: PM: usb_dev_resume+0x0/0x14 returned 0 after 21949 usecs
[   30.824939] button PNP0C0D:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 2937 usecs
[   30.825049] ac ACPI0003:00: PM: calling acpi_ac_resume+0x0/0x59 @ 4438, parent: LNXSYBUS:00
[   30.826398] ac ACPI0003:00: PM: acpi_ac_resume+0x0/0x59 returned 0 after 1328 usecs
[   30.826440] button PNP0C0C:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4438, parent: LNXSYBUS:00
[   30.826454] button PNP0C0C:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   30.826473] tpm_crb MSFT0101:00: PM: calling tpm_pm_resume+0x0/0x30 @ 4438, parent: LNXSYBUS:00
[   30.826487] tpm_crb MSFT0101:00: PM: tpm_pm_resume+0x0/0x30 returned 0 after 0 usecs
[   30.826505] thermal LNXTHERM:00: PM: calling acpi_thermal_resume+0x0/0x11e @ 4438, parent: LNXSYBUS:01
[   30.826592] thermal LNXTHERM:00: PM: acpi_thermal_resume+0x0/0x11e returned 0 after 72 usecs
[   30.826638] platform PNP0C09:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:1f.0
[   30.826652] platform PNP0C09:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826664] platform PNP0C0A:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: PNP0C09:00
[   30.826674] platform PNP0C0A:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826685] platform INT33D3:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: PNP0C09:00
[   30.826695] platform INT33D3:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826706] platform PNP0C0D:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: PNP0C09:00
[   30.826715] platform PNP0C0D:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826727] platform ACPI0003:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826737] platform ACPI0003:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826749] platform PNP0C0C:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826758] platform PNP0C0C:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826769] platform PNP0103:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826778] platform PNP0103:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826789] broxton-pinctrl INT3452:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4438, parent: platform
[   30.826805] broxton-pinctrl INT3452:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 2 usecs
[   30.826819] broxton-pinctrl INT3452:01: PM: calling acpi_subsys_resume+0x0/0x5d @ 4438, parent: platform
[   30.826831] broxton-pinctrl INT3452:01: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   30.826846] broxton-pinctrl INT3452:02: PM: calling acpi_subsys_resume+0x0/0x5d @ 4438, parent: platform
[   30.826858] broxton-pinctrl INT3452:02: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   30.826873] broxton-pinctrl INT3452:03: PM: calling acpi_subsys_resume+0x0/0x5d @ 4438, parent: platform
[   30.826885] broxton-pinctrl INT3452:03: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 0 usecs
[   30.826900] platform INT33A1:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826910] platform INT33A1:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826921] platform MSFT0101:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826931] platform MSFT0101:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.826942] acpi-fan PNP0C0B:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.826953] acpi-fan PNP0C0B:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   30.826966] button LNXPWRBN:00: PM: calling acpi_button_resume+0x0/0xa9 @ 4438, parent: LNXSYSTM:00
[   30.826978] button LNXPWRBN:00: PM: acpi_button_resume+0x0/0xa9 returned 0 after 0 usecs
[   30.826990] platform rtc-efi.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827000] platform rtc-efi.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827012] platform efivars.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827021] platform efivars.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827032] platform chromeos_acpi: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827042] platform chromeos_acpi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827057] system 00:00: PM: calling pnp_bus_resume+0x0/0x9d @ 4438, parent: pnp0
[   30.827070] system 00:00: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   30.827082] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4438, parent: pnp0
[   30.827092] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   30.827103] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4438, parent: pnp0
[   30.827113] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   30.827138] system 00:03: PM: calling pnp_bus_resume+0x0/0x9d @ 4438, parent: pnp0
[   30.827147] system 00:03: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
[   30.827158] rtc_cmos 00:04: PM: calling pnp_bus_resume+0x0/0x9d @ 4438, parent: pnp0
[   30.827168] rtc_cmos 00:04: PM: pnp_bus_resume+0x0/0x9d returned 0 after 1 usecs
[   30.827185] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827195] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827225] input input0: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: PNP0C0D:00
[   30.827237] input input0: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   30.827247] input input1: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: PNP0C0C:00
[   30.827256] input input1: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   30.827266] input input2: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: LNXPWRBN:00
[   30.827275] input input2: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   30.827305] platform intel-spi: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:1f.0
[   30.827314] platform intel-spi: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827325] idma64 idma64.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:16.0
[   30.827336] idma64 idma64.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   30.827348] idma64 idma64.1: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:16.3
[   30.827370] idma64 idma64.1: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827384] idma64 idma64.2: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:17.0
[   30.827394] idma64 idma64.2: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   30.827406] idma64 idma64.3: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:17.1
[   30.827415] idma64 idma64.3: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827441] platform Fixed MDIO bus.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827450] platform Fixed MDIO bus.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827463] platform intel_xhci_usb_sw: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:00:15.0
[   30.827472] platform intel_xhci_usb_sw: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.827490] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.827566] i8042: [30003] 55 <- i8042 (flush, kbd)
[   30.827583] i8042: [30003] aa -> i8042 (command)
[   30.827772] i8042: [30003] d2 <- i8042 (return)
[   30.827775] i8042: [30003] i8042 controller selftest: 0xd2 != 0x55
[   30.829229] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 13424 usecs
[   30.829289] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4463, parent: 0000:00:0e.0
[   30.847503] snd_hda_codec_realtek hdaudioC0D0: PM: hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] returned 0 after 18177 usecs
[   30.862474] i2c_hid_acpi i2c-ITE8350:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 62758 usecs
[   30.879507] i8042: [30055] aa -> i8042 (command)
[   30.879542] i8042: [30055] 55 <- i8042 (return)
[   30.879779] i8042: [30055] 60 -> i8042 (command)
[   30.879908] i8042: [30055] 74 -> i8042 (parameter)
[   30.880037] i8042: [30055] 60 -> i8042 (command)
[   30.880165] i8042: [30055] 56 -> i8042 (parameter)
[   30.880293] i8042: [30055] 60 -> i8042 (command)
[   30.880421] i8042: [30055] 47 -> i8042 (parameter)
[   30.880456] i8042: [30056] ** <- i8042 (interrupt, 0, 0)
[   30.880471] i8042 i8042: PM: platform_pm_resume+0x0/0x41 returned 0 after 52968 usecs
[   30.880504] atkbd serio0: PM: calling serio_resume+0x0/0x94 @ 4438, parent: i8042
[   30.880586] i8042: [30056] ed -> i8042 (kbd-data)
[   30.880608] atkbd serio0: PM: serio_resume+0x0/0x94 returned 0 after 90 usecs
[   30.880622] psmouse serio1: PM: calling serio_resume+0x0/0x94 @ 4438, parent: i8042
[   30.880648] psmouse serio1: PM: serio_resume+0x0/0x94 returned 0 after 15 usecs
[   30.880665] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: rtc0
[   30.880677] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 1 usecs
[   30.880692] platform coretemp.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.880701] platform coretemp.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.880722] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.880731] snd-soc-dummy snd-soc-dummy: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.880743] input input3: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: serio0
[   30.880767] input input3: PM: input_dev_resume+0x0/0x42 returned 0 after 13 usecs
[   30.880781] leds input3::numlock: PM: calling led_resume+0x0/0x20 @ 4438, parent: input3
[   30.880795] leds input3::numlock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   30.880807] leds input3::capslock: PM: calling led_resume+0x0/0x20 @ 4438, parent: input3
[   30.880818] leds input3::capslock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   30.880830] leds input3::scrolllock: PM: calling led_resume+0x0/0x20 @ 4438, parent: input3
[   30.880841] leds input3::scrolllock: PM: led_resume+0x0/0x20 returned 0 after 0 usecs
[   30.880856] platform microcode: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.880866] platform microcode: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.880899] platform HID-SENSOR-ff830080.1.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0018:048D:8350.0001
[   30.880909] platform HID-SENSOR-ff830080.1.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.880920] platform HID-SENSOR-200001.2.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0018:048D:8350.0001
[   30.880929] platform HID-SENSOR-200001.2.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.880940] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0018:048D:8350.0001
[   30.880956] hid_sensor_accel_3d HID-SENSOR-200073.3.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 5 usecs
[   30.881016] platform HID-SENSOR-2000e1.4.auto: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0018:048D:8350.0001
[   30.881026] platform HID-SENSOR-2000e1.4.auto: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.881904] i8042: [30057] ** <- i8042 (interrupt, 0, 1)
[   30.881986] i8042: [30057] 00 -> i8042 (kbd-data)
[   30.883342] i8042: [30058] ** <- i8042 (interrupt, 0, 1)
[   30.883504] i8042: [30059] ed -> i8042 (kbd-data)
[   30.884780] i8042: [30060] ** <- i8042 (interrupt, 0, 1)
[   30.884913] i8042: [30060] 00 -> i8042 (kbd-data)
[   30.886178] i8042: [30061] ** <- i8042 (interrupt, 0, 1)
[   30.886313] i8042: [30061] f3 -> i8042 (kbd-data)
[   30.888163] i8042: [30063] ** <- i8042 (interrupt, 0, 1)
[   30.888305] i8042: [30063] 00 -> i8042 (kbd-data)
[   30.889569] i8042: [30065] ** <- i8042 (interrupt, 0, 1)
[   30.889694] i8042: [30065] f4 -> i8042 (kbd-data)
[   30.890973] i8042: [30066] ** <- i8042 (interrupt, 0, 1)
[   30.891147] i8042: [30066] d4 -> i8042 (command)
[   30.891346] i8042: [30066] ff -> i8042 (parameter)
[   30.894661] i8042: [30070] fa <- i8042 (interrupt, 1, 12)
[   30.894988] i2c_hid_acpi i2c-WCOM5120:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 95128 usecs
[   30.895219] input input10: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: 0018:056A:5120.0002
[   30.895254] input input10: PM: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[   30.895271] input input11: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: 0018:056A:5120.0002
[   30.895281] input input11: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   30.895306] backlight intel_backlight: PM: calling backlight_resume+0x0/0x7a [backlight] @ 4438, parent: card0-eDP-1
[   30.895324] backlight intel_backlight: PM: backlight_resume+0x0/0x7a [backlight] returned 0 after 1 usecs
[   30.895340] input input13: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: LNXVIDEO:00
[   30.895349] input input13: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   30.895390] platform regulatory.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: platform
[   30.895403] platform regulatory.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   30.895418] leds phy0-led: PM: calling led_resume+0x0/0x20 @ 4438, parent: 0000:02:00.0
[   30.895433] leds phy0-led: PM: led_resume+0x0/0x20 returned 0 after 1 usecs
[   30.917588] usb usb1: PM: usb_dev_resume+0x0/0x14 returned 0 after 117733 usecs
[   30.917667] usb 1-8: PM: calling usb_dev_resume+0x0/0x14 @ 4460, parent: usb1
[   30.917681] usb 1-8: PM: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[   30.917736] usb 1-7: PM: calling usb_dev_resume+0x0/0x14 @ 4458, parent: usb1
[   30.917756] usb 1-7: PM: usb_dev_resume+0x0/0x14 returned 0 after 0 usecs
[   30.995722] i8042: [30171] aa <- i8042 (interrupt, 1, 12)
[   30.997351] i8042: [30172] 00 <- i8042 (interrupt, 1, 12)
[   30.997519] i8042: [30173] d4 -> i8042 (command)
[   30.997719] i8042: [30173] f6 -> i8042 (parameter)
[   31.000535] i8042: [30176] fa <- i8042 (interrupt, 1, 12)
[   31.000709] i8042: [30176] ed -> i8042 (kbd-data)
[   31.002172] i8042: [30177] ** <- i8042 (interrupt, 0, 1)
[   31.002313] i8042: [30177] 00 -> i8042 (kbd-data)
[   31.003715] i8042: [30179] ** <- i8042 (interrupt, 0, 1)
[   31.003880] i8042: [30179] f3 -> i8042 (kbd-data)
[   31.005300] i8042: [30180] ** <- i8042 (interrupt, 0, 1)
[   31.005451] i8042: [30181] 00 -> i8042 (kbd-data)
[   31.006892] i8042: [30182] ** <- i8042 (interrupt, 0, 1)
[   31.007058] i8042: [30182] d4 -> i8042 (command)
[   31.007256] i8042: [30182] f5 -> i8042 (parameter)
[   31.010306] i8042: [30185] fa <- i8042 (interrupt, 1, 12)
[   31.010475] i8042: [30186] d4 -> i8042 (command)
[   31.010674] i8042: [30186] e6 -> i8042 (parameter)
[   31.013516] i8042: [30189] fa <- i8042 (interrupt, 1, 12)
[   31.013585] i8042: [30189] d4 -> i8042 (command)
[   31.013782] i8042: [30189] e6 -> i8042 (parameter)
[   31.016621] i8042: [30192] fa <- i8042 (interrupt, 1, 12)
[   31.016721] i8042: [30192] d4 -> i8042 (command)
[   31.016919] i8042: [30192] e6 -> i8042 (parameter)
[   31.019817] i8042: [30195] fa <- i8042 (interrupt, 1, 12)
[   31.019974] i8042: [30195] d4 -> i8042 (command)
[   31.020172] i8042: [30195] e9 -> i8042 (parameter)
[   31.022938] i8042: [30198] fa <- i8042 (interrupt, 1, 12)
[   31.024518] i8042: [30200] 3c <- i8042 (interrupt, 1, 12)
[   31.026094] i8042: [30201] 03 <- i8042 (interrupt, 1, 12)
[   31.027690] i8042: [30203] 00 <- i8042 (interrupt, 1, 12)
[   31.027741] i8042: [30203] d4 -> i8042 (command)
[   31.027938] i8042: [30203] e6 -> i8042 (parameter)
[   31.030885] i8042: [30206] fa <- i8042 (interrupt, 1, 12)
[   31.031023] i8042: [30206] d4 -> i8042 (command)
[   31.031220] i8042: [30206] e8 -> i8042 (parameter)
[   31.034134] i8042: [30209] fa <- i8042 (interrupt, 1, 12)
[   31.034278] i8042: [30209] d4 -> i8042 (command)
[   31.034474] i8042: [30210] 00 -> i8042 (parameter)
[   31.037261] i8042: [30212] fa <- i8042 (interrupt, 1, 12)
[   31.037418] i8042: [30213] d4 -> i8042 (command)
[   31.037432] ieee80211 phy0: PM: wiphy_resume+0x0/0x158 [cfg80211] returned 0 after 234278 usecs
[   31.037547] rfkill rfkill0: PM: calling rfkill_resume+0x0/0x67 @ 4438, parent: phy0
[   31.037576] rfkill rfkill0: PM: rfkill_resume+0x0/0x67 returned 0 after 11 usecs
[   31.037605] platform VPC2004:00: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: PNP0C09:00
[   31.037617] platform VPC2004:00: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   31.037630] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: calling platform_pm_resume+0x0/0x41 @ 4438, parent: 0000:01:00.0
[   31.037640] rtsx_pci_sdmmc rtsx_pci_sdmmc.0: PM: platform_pm_resume+0x0/0x41 returned 0 after 0 usecs
[   31.037668] i8042: [30213] e8 -> i8042 (parameter)
[   31.037671] input input15: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037686] input input15: PM: input_dev_resume+0x0/0x42 returned 0 after 1 usecs
[   31.037697] input input16: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037705] input input16: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037716] input input17: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037725] input input17: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037735] input input18: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037743] input input18: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037755] input input19: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037764] input input19: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037774] input input20: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037783] input input20: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037793] input input21: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: card0
[   31.037802] input input21: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037814] input input22: PM: calling input_dev_resume+0x0/0x42 @ 4438, parent: serio1
[   31.037823] input input22: PM: input_dev_resume+0x0/0x42 returned 0 after 0 usecs
[   31.037837] rfkill rfkill3: PM: calling rfkill_resume+0x0/0x67 @ 4438, parent: hci0
[   31.037850] rfkill rfkill3: PM: rfkill_resume+0x0/0x67 returned 0 after 2 usecs
[   31.037974] PM: resume of devices complete after 239.803 msecs
[   31.038512] PM: Finishing wakeup.
[   31.038523] OOM killer enabled.
[   31.038529] Restarting tasks ... 
[   31.040568] i8042: [30216] fa <- i8042 (interrupt, 1, 12)
[   31.041673] done.
[   31.041939] usb 1-7: USB disconnect, device number 2
[   31.042184] i8042: [30217] d4 -> i8042 (command)
[   31.042423] i8042: [30218] 00 -> i8042 (parameter)
[   31.045158] i8042: [30220] fa <- i8042 (interrupt, 1, 12)
[   31.045215] i8042: [30220] d4 -> i8042 (command)
[   31.045461] i8042: [30221] e8 -> i8042 (parameter)
[   31.048587] i8042: [30224] fa <- i8042 (interrupt, 1, 12)
[   31.048635] i8042: [30224] d4 -> i8042 (command)
[   31.048828] i8042: [30224] 00 -> i8042 (parameter)
[   31.051541] i8042: [30227] fa <- i8042 (interrupt, 1, 12)
[   31.051587] i8042: [30227] d4 -> i8042 (command)
[   31.051836] i8042: [30227] e8 -> i8042 (parameter)
[   31.054893] i8042: [30230] fa <- i8042 (interrupt, 1, 12)
[   31.054940] i8042: [30230] d4 -> i8042 (command)
[   31.055132] i8042: [30230] 01 -> i8042 (parameter)
[   31.057970] i8042: [30233] fa <- i8042 (interrupt, 1, 12)
[   31.058025] i8042: [30233] d4 -> i8042 (command)
[   31.058276] i8042: [30233] e9 -> i8042 (parameter)
[   31.061120] i8042: [30236] fa <- i8042 (interrupt, 1, 12)
[   31.062684] i8042: [30238] 5e <- i8042 (interrupt, 1, 12)
[   31.064422] i8042: [30240] 0f <- i8042 (interrupt, 1, 12)
[   31.065851] i8042: [30241] 01 <- i8042 (interrupt, 1, 12)
[   31.065908] i8042: [30241] d4 -> i8042 (command)
[   31.066158] i8042: [30241] f8 -> i8042 (parameter)
[   31.069055] i8042: [30244] fa <- i8042 (interrupt, 1, 12)
[   31.069102] i8042: [30244] d4 -> i8042 (command)
[   31.069351] i8042: [30244] 00 -> i8042 (parameter)
[   31.072247] i8042: [30247] fa <- i8042 (interrupt, 1, 12)
[   31.072304] i8042: [30247] d4 -> i8042 (command)
[   31.072498] i8042: [30248] f8 -> i8042 (parameter)
[   31.075439] i8042: [30251] fa <- i8042 (interrupt, 1, 12)
[   31.075494] i8042: [30251] d4 -> i8042 (command)
[   31.075689] i8042: [30251] 07 -> i8042 (parameter)
[   31.078633] i8042: [30254] fa <- i8042 (interrupt, 1, 12)
[   31.078690] i8042: [30254] d4 -> i8042 (command)
[   31.078884] i8042: [30254] f8 -> i8042 (parameter)
[   31.081828] i8042: [30257] fa <- i8042 (interrupt, 1, 12)
[   31.081878] i8042: [30257] d4 -> i8042 (command)
[   31.082070] i8042: [30257] 00 -> i8042 (parameter)
[   31.085019] i8042: [30260] fa <- i8042 (interrupt, 1, 12)
[   31.085067] i8042: [30260] d4 -> i8042 (command)
[   31.085263] i8042: [30260] f8 -> i8042 (parameter)
[   31.088210] i8042: [30263] fa <- i8042 (interrupt, 1, 12)
[   31.088257] i8042: [30263] d4 -> i8042 (command)
[   31.088450] i8042: [30264] 01 -> i8042 (parameter)
[   31.091412] i8042: [30267] fa <- i8042 (interrupt, 1, 12)
[   31.091463] i8042: [30267] d4 -> i8042 (command)
[   31.091710] i8042: [30267] e6 -> i8042 (parameter)
[   31.094594] i8042: [30270] fa <- i8042 (interrupt, 1, 12)
[   31.094638] i8042: [30270] d4 -> i8042 (command)
[   31.094833] i8042: [30270] f3 -> i8042 (parameter)
[   31.097790] i8042: [30273] fa <- i8042 (interrupt, 1, 12)
[   31.100420] i8042: [30276] d4 -> i8042 (command)
[   31.100616] i8042: [30276] 64 -> i8042 (parameter)
[   31.103503] i8042: [30279] fa <- i8042 (interrupt, 1, 12)
[   31.103555] i8042: [30279] d4 -> i8042 (command)
[   31.103807] i8042: [30279] e8 -> i8042 (parameter)
[   31.106698] i8042: [30282] fa <- i8042 (interrupt, 1, 12)
[   31.106751] i8042: [30282] d4 -> i8042 (command)
[   31.106944] i8042: [30282] 03 -> i8042 (parameter)
[   31.107601] ata1: SATA link down (SStatus 4 SControl 300)
[   31.109886] i8042: [30285] fa <- i8042 (interrupt, 1, 12)
[   31.109937] i8042: [30285] d4 -> i8042 (command)
[   31.110132] i8042: [30285] e6 -> i8042 (parameter)
[   31.110553] ata2: SATA link down (SStatus 4 SControl 300)
[   31.113081] i8042: [30288] fa <- i8042 (interrupt, 1, 12)
[   31.113282] i8042: [30288] d4 -> i8042 (command)
[   31.113477] i8042: [30289] f4 -> i8042 (parameter)
[   31.116397] i8042: [30292] fa <- i8042 (interrupt, 1, 12)
[   31.172229] Resume cause unknown
[   31.172251] PM: suspend exit
[   31.243833] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   31.275873] i8042: [30451] ed -> i8042 (kbd-data)
[   31.277157] i8042: [30452] ** <- i8042 (interrupt, 0, 1)
[   31.277330] i8042: [30452] 00 -> i8042 (kbd-data)
[   31.278776] i8042: [30454] ** <- i8042 (interrupt, 0, 1)
[   31.278818] i8042: [30454] f3 -> i8042 (kbd-data)
[   31.280099] i8042: [30455] ** <- i8042 (interrupt, 0, 1)
[   31.280211] i8042: [30455] 00 -> i8042 (kbd-data)
[   31.281512] i8042: [30457] ** <- i8042 (interrupt, 0, 1)
[   31.293395] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[   31.420530] usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[   31.420546] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   31.422533] usb 1-7: GPIO lookup for consumer reset
[   31.422544] usb 1-7: using ACPI for GPIO lookup
[   31.422549] acpi device:19: GPIO: looking up reset-gpios
[   31.422553] acpi device:19: GPIO: looking up reset-gpio
[   31.422555] usb 1-7: using lookup tables for GPIO lookup
[   31.422557] usb 1-7: No GPIO consumer reset found
[   31.423277] usb 1-8: USB disconnect, device number 3
[   31.423413] Bluetooth: btintel_version_info() hci0: Bootloader revision 0.0 build 26 week 38 2015
[   31.424427] Bluetooth: btintel_read_boot_params() hci0: Device revision is 16
[   31.424442] Bluetooth: btintel_read_boot_params() hci0: Secure boot is enabled
[   31.424445] Bluetooth: btintel_read_boot_params() hci0: OTP lock is enabled
[   31.424448] Bluetooth: btintel_read_boot_params() hci0: API lock is enabled
[   31.424450] Bluetooth: btintel_read_boot_params() hci0: Debug lock is disabled
[   31.424452] Bluetooth: btintel_read_boot_params() hci0: Minimum firmware build 1 week 10 2014
[   31.450850] Bluetooth: btintel_download_fw() hci0: Found device firmware: intel/ibt-12-16.sfi
[   31.551385] usb 1-8: new high-speed USB device number 5 using xhci_hcd
[   31.740827] usb 1-8: New USB device found, idVendor=04f2, idProduct=b5a2, bcdDevice=10.34
[   31.740844] usb 1-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[   31.740848] usb 1-8: Product: Lenovo EasyCamera
[   31.740851] usb 1-8: Manufacturer: Chicony Electronics Co.,Ltd.
[   31.740854] usb 1-8: SerialNumber: 0001
[   31.747716] usb 1-8: GPIO lookup for consumer privacy
[   31.747728] usb 1-8: using ACPI for GPIO lookup
[   31.747732] acpi device:1a: GPIO: looking up privacy-gpios
[   31.747736] acpi device:1a: GPIO: looking up privacy-gpio
[   31.747739] usb 1-8: using lookup tables for GPIO lookup
[   31.747741] usb 1-8: No GPIO consumer privacy found
[   31.747744] usb 1-8: Found UVC 1.00 device Lenovo EasyCamera (04f2:b5a2)
[   32.733980] i8042: [31909] 08 <- i8042 (interrupt, 1, 12)
[   32.735559] i8042: [31911] 00 <- i8042 (interrupt, 1, 12)
[   32.737182] i8042: [31912] 00 <- i8042 (interrupt, 1, 12)
[   32.743805] i8042: [31919] 54 <- i8042 (interrupt, 1, 12)
[   32.745359] i8042: [31920] 01 <- i8042 (interrupt, 1, 12)
[   32.746973] i8042: [31922] 00 <- i8042 (interrupt, 1, 12)
[   32.747011] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   32.748519] i8042: [31924] 10 <- i8042 (interrupt, 1, 12)
[   32.750125] i8042: [31925] 00 <- i8042 (interrupt, 1, 12)
[   32.751824] i8042: [31927] 00 <- i8042 (interrupt, 1, 12)
[   32.753266] i8042: [31928] 54 <- i8042 (interrupt, 1, 12)
[   32.754848] i8042: [31930] 16 <- i8042 (interrupt, 1, 12)
[   32.756458] i8042: [31932] 20 <- i8042 (interrupt, 1, 12)
[   32.756492] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   32.758018] i8042: [31933] 31 <- i8042 (interrupt, 1, 12)
[   32.759598] i8042: [31935] a1 <- i8042 (interrupt, 1, 12)
[   32.761211] i8042: [31936] 79 <- i8042 (interrupt, 1, 12)
[   32.762775] i8042: [31938] 54 <- i8042 (interrupt, 1, 12)
[   32.764347] i8042: [31939] 26 <- i8042 (interrupt, 1, 12)
[   32.765994] i8042: [31941] 20 <- i8042 (interrupt, 1, 12)
[   32.766031] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   32.767529] i8042: [31943] 31 <- i8042 (interrupt, 1, 12)
[   32.769113] i8042: [31944] 01 <- i8042 (interrupt, 1, 12)
[   32.770689] i8042: [31946] 79 <- i8042 (interrupt, 1, 12)
[   32.772263] i8042: [31947] 54 <- i8042 (interrupt, 1, 12)
[   32.773846] i8042: [31949] 26 <- i8042 (interrupt, 1, 12)
[   32.775430] i8042: [31951] 20 <- i8042 (interrupt, 1, 12)
[   32.775460] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   32.777016] i8042: [31952] 31 <- i8042 (interrupt, 1, 12)
[   32.778600] i8042: [31954] 61 <- i8042 (interrupt, 1, 12)
[   32.780212] i8042: [31955] 79 <- i8042 (interrupt, 1, 12)
[   32.781756] i8042: [31957] 54 <- i8042 (interrupt, 1, 12)
[   32.783391] i8042: [31958] 26 <- i8042 (interrupt, 1, 12)
[   32.784957] i8042: [31960] 11 <- i8042 (interrupt, 1, 12)
[   32.784989] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   32.785002] psmouse serio1: issuing reconnect request
[   32.785040] i8042: [31960] d4 -> i8042 (command)
[   32.785228] i8042: [31960] ff -> i8042 (parameter)
[   32.788137] i8042: [31963] fa <- i8042 (interrupt, 1, 12)
[   32.889200] i8042: [32064] aa <- i8042 (interrupt, 1, 12)
[   32.890772] i8042: [32066] 00 <- i8042 (interrupt, 1, 12)
[   32.890845] i8042: [32066] d4 -> i8042 (command)
[   32.891035] i8042: [32066] f6 -> i8042 (parameter)
[   32.893918] i8042: [32069] fa <- i8042 (interrupt, 1, 12)
[   32.893982] i8042: [32069] d4 -> i8042 (command)
[   32.894228] i8042: [32069] f5 -> i8042 (parameter)
[   32.897174] i8042: [32072] fa <- i8042 (interrupt, 1, 12)
[   32.897236] i8042: [32072] d4 -> i8042 (command)
[   32.897426] i8042: [32072] e6 -> i8042 (parameter)
[   32.900307] i8042: [32075] fa <- i8042 (interrupt, 1, 12)
[   32.900392] i8042: [32076] d4 -> i8042 (command)
[   32.900584] i8042: [32076] e6 -> i8042 (parameter)
[   32.903556] i8042: [32079] fa <- i8042 (interrupt, 1, 12)
[   32.903626] i8042: [32079] d4 -> i8042 (command)
[   32.903815] i8042: [32079] e6 -> i8042 (parameter)
[   32.906740] i8042: [32082] fa <- i8042 (interrupt, 1, 12)
[   32.906803] i8042: [32082] d4 -> i8042 (command)
[   32.906992] i8042: [32082] e9 -> i8042 (parameter)
[   32.909890] i8042: [32085] fa <- i8042 (interrupt, 1, 12)
[   32.911465] i8042: [32087] 3c <- i8042 (interrupt, 1, 12)
[   32.913074] i8042: [32088] 03 <- i8042 (interrupt, 1, 12)
[   32.914675] i8042: [32090] 00 <- i8042 (interrupt, 1, 12)
[   32.914761] i8042: [32090] d4 -> i8042 (command)
[   32.914951] i8042: [32090] e6 -> i8042 (parameter)
[   32.917976] i8042: [32093] fa <- i8042 (interrupt, 1, 12)
[   32.918075] i8042: [32093] d4 -> i8042 (command)
[   32.918264] i8042: [32093] e8 -> i8042 (parameter)
[   32.921077] i8042: [32096] fa <- i8042 (interrupt, 1, 12)
[   32.921139] i8042: [32096] d4 -> i8042 (command)
[   32.921329] i8042: [32096] 00 -> i8042 (parameter)
[   32.924283] i8042: [32099] fa <- i8042 (interrupt, 1, 12)
[   32.924475] i8042: [32100] d4 -> i8042 (command)
[   32.924665] i8042: [32100] e8 -> i8042 (parameter)
[   32.927478] i8042: [32103] fa <- i8042 (interrupt, 1, 12)
[   32.927557] i8042: [32103] d4 -> i8042 (command)
[   32.927746] i8042: [32103] 00 -> i8042 (parameter)
[   32.930733] i8042: [32106] fa <- i8042 (interrupt, 1, 12)
[   32.930830] i8042: [32106] d4 -> i8042 (command)
[   32.931077] i8042: [32106] e8 -> i8042 (parameter)
[   32.933813] i8042: [32109] fa <- i8042 (interrupt, 1, 12)
[   32.933941] i8042: [32109] d4 -> i8042 (command)
[   32.934131] i8042: [32109] 00 -> i8042 (parameter)
[   32.937062] i8042: [32112] fa <- i8042 (interrupt, 1, 12)
[   32.937142] i8042: [32112] d4 -> i8042 (command)
[   32.937332] i8042: [32112] e8 -> i8042 (parameter)
[   32.940245] i8042: [32115] fa <- i8042 (interrupt, 1, 12)
[   32.940302] i8042: [32115] d4 -> i8042 (command)
[   32.940490] i8042: [32115] 01 -> i8042 (parameter)
[   32.943418] i8042: [32119] fa <- i8042 (interrupt, 1, 12)
[   32.943506] i8042: [32119] d4 -> i8042 (command)
[   32.943752] i8042: [32119] e9 -> i8042 (parameter)
[   32.946571] i8042: [32122] fa <- i8042 (interrupt, 1, 12)
[   32.948137] i8042: [32123] 5e <- i8042 (interrupt, 1, 12)
[   32.949757] i8042: [32125] 0f <- i8042 (interrupt, 1, 12)
[   32.951304] i8042: [32126] 01 <- i8042 (interrupt, 1, 12)
[   32.951358] i8042: [32126] d4 -> i8042 (command)
[   32.951547] i8042: [32127] f8 -> i8042 (parameter)
[   32.954554] i8042: [32130] fa <- i8042 (interrupt, 1, 12)
[   32.954627] i8042: [32130] d4 -> i8042 (command)
[   32.954816] i8042: [32130] 00 -> i8042 (parameter)
[   32.957749] i8042: [32133] fa <- i8042 (interrupt, 1, 12)
[   32.957818] i8042: [32133] d4 -> i8042 (command)
[   32.958064] i8042: [32133] f8 -> i8042 (parameter)
[   32.960902] i8042: [32136] fa <- i8042 (interrupt, 1, 12)
[   32.960969] i8042: [32136] d4 -> i8042 (command)
[   32.961214] i8042: [32136] 07 -> i8042 (parameter)
[   32.964132] i8042: [32139] fa <- i8042 (interrupt, 1, 12)
[   32.964254] i8042: [32139] d4 -> i8042 (command)
[   32.964444] i8042: [32139] f8 -> i8042 (parameter)
[   32.967347] i8042: [32142] fa <- i8042 (interrupt, 1, 12)
[   32.967458] i8042: [32143] d4 -> i8042 (command)
[   32.967648] i8042: [32143] 00 -> i8042 (parameter)
[   32.970483] i8042: [32146] fa <- i8042 (interrupt, 1, 12)
[   32.970601] i8042: [32146] d4 -> i8042 (command)
[   32.970791] i8042: [32146] f8 -> i8042 (parameter)
[   32.973734] i8042: [32149] fa <- i8042 (interrupt, 1, 12)
[   32.973798] i8042: [32149] d4 -> i8042 (command)
[   32.973988] i8042: [32149] 01 -> i8042 (parameter)
[   32.976954] i8042: [32152] fa <- i8042 (interrupt, 1, 12)
[   32.977037] i8042: [32152] d4 -> i8042 (command)
[   32.977224] i8042: [32152] e6 -> i8042 (parameter)
[   32.980069] i8042: [32155] fa <- i8042 (interrupt, 1, 12)
[   32.980135] i8042: [32155] d4 -> i8042 (command)
[   32.980322] i8042: [32155] f3 -> i8042 (parameter)
[   32.983324] i8042: [32158] fa <- i8042 (interrupt, 1, 12)
[   32.983452] i8042: [32159] d4 -> i8042 (command)
[   32.983640] i8042: [32159] 64 -> i8042 (parameter)
[   32.986459] i8042: [32162] fa <- i8042 (interrupt, 1, 12)
[   32.986539] i8042: [32162] d4 -> i8042 (command)
[   32.986726] i8042: [32162] e8 -> i8042 (parameter)
[   32.989708] i8042: [32165] fa <- i8042 (interrupt, 1, 12)
[   32.989799] i8042: [32165] d4 -> i8042 (command)
[   32.989989] i8042: [32165] 03 -> i8042 (parameter)
[   32.992877] i8042: [32168] fa <- i8042 (interrupt, 1, 12)
[   32.992968] i8042: [32168] d4 -> i8042 (command)
[   32.993179] i8042: [32168] e6 -> i8042 (parameter)
[   32.996117] i8042: [32171] fa <- i8042 (interrupt, 1, 12)
[   32.996188] i8042: [32171] d4 -> i8042 (command)
[   32.996377] i8042: [32171] f4 -> i8042 (parameter)
[   32.999274] i8042: [32174] fa <- i8042 (interrupt, 1, 12)
[   33.009917] i8042: [32185] 08 <- i8042 (interrupt, 1, 12)
[   33.011506] i8042: [32187] 00 <- i8042 (interrupt, 1, 12)
[   33.013068] i8042: [32188] 00 <- i8042 (interrupt, 1, 12)
[   33.019674] i8042: [32195] 54 <- i8042 (interrupt, 1, 12)
[   33.021329] i8042: [32196] 01 <- i8042 (interrupt, 1, 12)
[   33.022946] i8042: [32198] 00 <- i8042 (interrupt, 1, 12)
[   33.022983] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.024493] i8042: [32200] 10 <- i8042 (interrupt, 1, 12)
[   33.026009] i8042: [32201] 00 <- i8042 (interrupt, 1, 12)
[   33.027589] i8042: [32203] 00 <- i8042 (interrupt, 1, 12)
[   33.029203] i8042: [32204] 54 <- i8042 (interrupt, 1, 12)
[   33.030760] i8042: [32206] 13 <- i8042 (interrupt, 1, 12)
[   33.032338] i8042: [32207] a2 <- i8042 (interrupt, 1, 12)
[   33.032362] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.033931] i8042: [32209] 31 <- i8042 (interrupt, 1, 12)
[   33.035513] i8042: [32211] 71 <- i8042 (interrupt, 1, 12)
[   33.037162] i8042: [32212] 48 <- i8042 (interrupt, 1, 12)
[   33.038736] i8042: [32214] 54 <- i8042 (interrupt, 1, 12)
[   33.040288] i8042: [32215] 23 <- i8042 (interrupt, 1, 12)
[   33.041835] i8042: [32217] a2 <- i8042 (interrupt, 1, 12)
[   33.041866] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.043418] i8042: [32219] 31 <- i8042 (interrupt, 1, 12)
[   33.044997] i8042: [32220] 21 <- i8042 (interrupt, 1, 12)
[   33.046585] i8042: [32222] 48 <- i8042 (interrupt, 1, 12)
[   33.048159] i8042: [32223] 54 <- i8042 (interrupt, 1, 12)
[   33.049749] i8042: [32225] 23 <- i8042 (interrupt, 1, 12)
[   33.051329] i8042: [32226] a2 <- i8042 (interrupt, 1, 12)
[   33.051360] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.052959] i8042: [32228] 31 <- i8042 (interrupt, 1, 12)
[   33.054557] i8042: [32230] a1 <- i8042 (interrupt, 1, 12)
[   33.056081] i8042: [32231] 48 <- i8042 (interrupt, 1, 12)
[   33.057694] i8042: [32233] 54 <- i8042 (interrupt, 1, 12)
[   33.059346] i8042: [32234] 23 <- i8042 (interrupt, 1, 12)
[   33.060864] i8042: [32236] a2 <- i8042 (interrupt, 1, 12)
[   33.060902] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.060918] psmouse serio1: issuing reconnect request
[   33.061041] i8042: [32236] d4 -> i8042 (command)
[   33.061232] i8042: [32236] ff -> i8042 (parameter)
[   33.064079] i8042: [32239] fa <- i8042 (interrupt, 1, 12)
[   33.165012] i8042: [32340] aa <- i8042 (interrupt, 1, 12)
[   33.166660] i8042: [32342] 00 <- i8042 (interrupt, 1, 12)
[   33.166719] i8042: [32342] d4 -> i8042 (command)
[   33.166907] i8042: [32342] f6 -> i8042 (parameter)
[   33.169843] i8042: [32345] fa <- i8042 (interrupt, 1, 12)
[   33.169900] i8042: [32345] d4 -> i8042 (command)
[   33.170088] i8042: [32345] f5 -> i8042 (parameter)
[   33.173001] i8042: [32348] fa <- i8042 (interrupt, 1, 12)
[   33.173125] i8042: [32348] d4 -> i8042 (command)
[   33.173315] i8042: [32348] e6 -> i8042 (parameter)
[   33.176197] i8042: [32351] fa <- i8042 (interrupt, 1, 12)
[   33.176276] i8042: [32351] d4 -> i8042 (command)
[   33.176523] i8042: [32352] e6 -> i8042 (parameter)
[   33.179473] i8042: [32355] fa <- i8042 (interrupt, 1, 12)
[   33.179590] i8042: [32355] d4 -> i8042 (command)
[   33.179837] i8042: [32355] e6 -> i8042 (parameter)
[   33.182602] i8042: [32358] fa <- i8042 (interrupt, 1, 12)
[   33.182667] i8042: [32358] d4 -> i8042 (command)
[   33.182856] i8042: [32358] e9 -> i8042 (parameter)
[   33.185793] i8042: [32361] fa <- i8042 (interrupt, 1, 12)
[   33.187403] i8042: [32363] 3c <- i8042 (interrupt, 1, 12)
[   33.188935] i8042: [32364] 03 <- i8042 (interrupt, 1, 12)
[   33.190504] i8042: [32366] 00 <- i8042 (interrupt, 1, 12)
[   33.190561] i8042: [32366] d4 -> i8042 (command)
[   33.190750] i8042: [32366] e6 -> i8042 (parameter)
[   33.193751] i8042: [32369] fa <- i8042 (interrupt, 1, 12)
[   33.193814] i8042: [32369] d4 -> i8042 (command)
[   33.194003] i8042: [32369] e8 -> i8042 (parameter)
[   33.196979] i8042: [32372] fa <- i8042 (interrupt, 1, 12)
[   33.197098] i8042: [32372] d4 -> i8042 (command)
[   33.197287] i8042: [32372] 00 -> i8042 (parameter)
[   33.200096] i8042: [32375] fa <- i8042 (interrupt, 1, 12)
[   33.200167] i8042: [32375] d4 -> i8042 (command)
[   33.200356] i8042: [32375] e8 -> i8042 (parameter)
[   33.203304] i8042: [32378] fa <- i8042 (interrupt, 1, 12)
[   33.203354] i8042: [32378] d4 -> i8042 (command)
[   33.203543] i8042: [32379] 00 -> i8042 (parameter)
[   33.206498] i8042: [32382] fa <- i8042 (interrupt, 1, 12)
[   33.206596] i8042: [32382] d4 -> i8042 (command)
[   33.206787] i8042: [32382] e8 -> i8042 (parameter)
[   33.209723] i8042: [32385] fa <- i8042 (interrupt, 1, 12)
[   33.209781] i8042: [32385] d4 -> i8042 (command)
[   33.209970] i8042: [32385] 00 -> i8042 (parameter)
[   33.212947] i8042: [32388] fa <- i8042 (interrupt, 1, 12)
[   33.213029] i8042: [32388] d4 -> i8042 (command)
[   33.213332] i8042: [32388] e8 -> i8042 (parameter)
[   33.216132] i8042: [32391] fa <- i8042 (interrupt, 1, 12)
[   33.216219] i8042: [32391] d4 -> i8042 (command)
[   33.216409] i8042: [32392] 01 -> i8042 (parameter)
[   33.219338] i8042: [32394] fa <- i8042 (interrupt, 1, 12)
[   33.219577] i8042: [32395] d4 -> i8042 (command)
[   33.219768] i8042: [32395] e9 -> i8042 (parameter)
[   33.222453] i8042: [32398] fa <- i8042 (interrupt, 1, 12)
[   33.224023] i8042: [32399] 5e <- i8042 (interrupt, 1, 12)
[   33.225603] i8042: [32401] 0f <- i8042 (interrupt, 1, 12)
[   33.227185] i8042: [32402] 01 <- i8042 (interrupt, 1, 12)
[   33.227246] i8042: [32402] d4 -> i8042 (command)
[   33.227435] i8042: [32403] f8 -> i8042 (parameter)
[   33.230400] i8042: [32406] fa <- i8042 (interrupt, 1, 12)
[   33.230462] i8042: [32406] d4 -> i8042 (command)
[   33.230652] i8042: [32406] 00 -> i8042 (parameter)
[   33.233585] i8042: [32409] fa <- i8042 (interrupt, 1, 12)
[   33.233695] i8042: [32409] d4 -> i8042 (command)
[   33.233886] i8042: [32409] f8 -> i8042 (parameter)
[   33.236799] i8042: [32412] fa <- i8042 (interrupt, 1, 12)
[   33.236895] i8042: [32412] d4 -> i8042 (command)
[   33.237142] i8042: [32412] 07 -> i8042 (parameter)
[   33.239982] i8042: [32415] fa <- i8042 (interrupt, 1, 12)
[   33.240046] i8042: [32415] d4 -> i8042 (command)
[   33.240236] i8042: [32415] f8 -> i8042 (parameter)
[   33.243217] i8042: [32418] fa <- i8042 (interrupt, 1, 12)
[   33.243276] i8042: [32418] d4 -> i8042 (command)
[   33.243466] i8042: [32419] 00 -> i8042 (parameter)
[   33.246362] i8042: [32421] fa <- i8042 (interrupt, 1, 12)
[   33.246472] i8042: [32422] d4 -> i8042 (command)
[   33.246662] i8042: [32422] f8 -> i8042 (parameter)
[   33.249552] i8042: [32425] fa <- i8042 (interrupt, 1, 12)
[   33.249611] i8042: [32425] d4 -> i8042 (command)
[   33.249800] i8042: [32425] 01 -> i8042 (parameter)
[   33.252782] i8042: [32428] fa <- i8042 (interrupt, 1, 12)
[   33.252838] i8042: [32428] d4 -> i8042 (command)
[   33.253027] i8042: [32428] e6 -> i8042 (parameter)
[   33.255978] i8042: [32431] fa <- i8042 (interrupt, 1, 12)
[   33.256058] i8042: [32431] d4 -> i8042 (command)
[   33.256247] i8042: [32431] f3 -> i8042 (parameter)
[   33.259174] i8042: [32434] fa <- i8042 (interrupt, 1, 12)
[   33.259237] i8042: [32434] d4 -> i8042 (command)
[   33.259425] i8042: [32435] 64 -> i8042 (parameter)
[   33.262423] i8042: [32438] fa <- i8042 (interrupt, 1, 12)
[   33.262513] i8042: [32438] d4 -> i8042 (command)
[   33.262759] i8042: [32438] e8 -> i8042 (parameter)
[   33.265616] i8042: [32441] fa <- i8042 (interrupt, 1, 12)
[   33.265730] i8042: [32441] d4 -> i8042 (command)
[   33.265919] i8042: [32441] 03 -> i8042 (parameter)
[   33.268732] i8042: [32444] fa <- i8042 (interrupt, 1, 12)
[   33.268913] i8042: [32444] d4 -> i8042 (command)
[   33.269161] i8042: [32444] e6 -> i8042 (parameter)
[   33.271909] i8042: [32447] fa <- i8042 (interrupt, 1, 12)
[   33.271998] i8042: [32447] d4 -> i8042 (command)
[   33.272187] i8042: [32447] f4 -> i8042 (parameter)
[   33.275103] i8042: [32450] fa <- i8042 (interrupt, 1, 12)
[   33.286256] i8042: [32461] 08 <- i8042 (interrupt, 1, 12)
[   33.287934] i8042: [32463] 00 <- i8042 (interrupt, 1, 12)
[   33.289416] i8042: [32465] 00 <- i8042 (interrupt, 1, 12)
[   33.296119] i8042: [32471] 54 <- i8042 (interrupt, 1, 12)
[   33.297701] i8042: [32473] 01 <- i8042 (interrupt, 1, 12)
[   33.299215] i8042: [32474] 00 <- i8042 (interrupt, 1, 12)
[   33.299249] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.300869] i8042: [32476] 10 <- i8042 (interrupt, 1, 12)
[   33.302392] i8042: [32478] 00 <- i8042 (interrupt, 1, 12)
[   33.303963] i8042: [32479] 00 <- i8042 (interrupt, 1, 12)
[   33.305560] i8042: [32481] 54 <- i8042 (interrupt, 1, 12)
[   33.307129] i8042: [32482] 16 <- i8042 (interrupt, 1, 12)
[   33.308732] i8042: [32484] 2d <- i8042 (interrupt, 1, 12)
[   33.308766] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.310300] i8042: [32485] 31 <- i8042 (interrupt, 1, 12)
[   33.311880] i8042: [32487] 51 <- i8042 (interrupt, 1, 12)
[   33.313471] i8042: [32489] 63 <- i8042 (interrupt, 1, 12)
[   33.315067] i8042: [32490] 54 <- i8042 (interrupt, 1, 12)
[   33.316633] i8042: [32492] 16 <- i8042 (interrupt, 1, 12)
[   33.318219] i8042: [32493] 2d <- i8042 (interrupt, 1, 12)
[   33.318255] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.319828] i8042: [32495] 31 <- i8042 (interrupt, 1, 12)
[   33.321449] i8042: [32497] f1 <- i8042 (interrupt, 1, 12)
[   33.323039] i8042: [32498] 63 <- i8042 (interrupt, 1, 12)
[   33.324626] i8042: [32500] 54 <- i8042 (interrupt, 1, 12)
[   33.326195] i8042: [32501] 25 <- i8042 (interrupt, 1, 12)
[   33.327723] i8042: [32503] dc <- i8042 (interrupt, 1, 12)
[   33.327756] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.329360] i8042: [32504] 31 <- i8042 (interrupt, 1, 12)
[   33.330943] i8042: [32506] 61 <- i8042 (interrupt, 1, 12)
[   33.332460] i8042: [32508] 6a <- i8042 (interrupt, 1, 12)
[   33.334091] i8042: [32509] 54 <- i8042 (interrupt, 1, 12)
[   33.335689] i8042: [32511] 25 <- i8042 (interrupt, 1, 12)
[   33.337204] i8042: [32512] d1 <- i8042 (interrupt, 1, 12)
[   33.337236] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
[   33.337249] psmouse serio1: issuing reconnect request
[   33.337314] i8042: [32512] d4 -> i8042 (command)
[   33.337502] i8042: [32513] ff -> i8042 (parameter)
[   33.340425] i8042: [32516] fa <- i8042 (interrupt, 1, 12)
[   33.395309] Bluetooth: btintel_download_wait() hci0: Waiting for firmware download to complete
[   33.395583] Bluetooth: btintel_download_wait() hci0: Firmware loaded in 1899133 usecs
[   33.395824] Bluetooth: btintel_boot_wait() hci0: Waiting for device to boot
[   33.408500] Bluetooth: btintel_boot_wait() hci0: Device booted in 12458 usecs
[   33.408517] Bluetooth: msft_skb_pull() hci0: Malformed MSFT vendor event: 0x02
[   33.431115] Bluetooth: btintel_load_ddc_config() hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[   33.434571] Bluetooth: btintel_load_ddc_config() hci0: Applying Intel DDC parameters completed
[   33.435594] Bluetooth: btintel_version_info() hci0: Firmware revision 0.1 build 197 week 12 2021
[   33.437669] Bluetooth: btintel_read_debug_features() hci0: Reading supported features failed (-16)
[   33.437699] Bluetooth: btintel_register_devcoredump_support() hci0: Error reading debug features
[   33.441410] i8042: [32617] aa <- i8042 (interrupt, 1, 12)
[   33.443021] i8042: [32618] 00 <- i8042 (interrupt, 1, 12)
[   33.443101] i8042: [32618] d4 -> i8042 (command)
[   33.443290] i8042: [32618] f6 -> i8042 (parameter)
[   33.446185] i8042: [32621] fa <- i8042 (interrupt, 1, 12)
[   33.446247] i8042: [32621] d4 -> i8042 (command)
[   33.446436] i8042: [32622] f5 -> i8042 (parameter)
[   33.449394] i8042: [32625] fa <- i8042 (interrupt, 1, 12)
[   33.449496] i8042: [32625] d4 -> i8042 (command)
[   33.449686] i8042: [32625] e6 -> i8042 (parameter)
[   33.452574] i8042: [32628] fa <- i8042 (interrupt, 1, 12)
[   33.452631] i8042: [32628] d4 -> i8042 (command)
[   33.452821] i8042: [32628] e6 -> i8042 (parameter)
[   33.455768] i8042: [32631] fa <- i8042 (interrupt, 1, 12)
[   33.455829] i8042: [32631] d4 -> i8042 (command)
[   33.456075] i8042: [32631] e6 -> i8042 (parameter)
[   33.458959] i8042: [32634] fa <- i8042 (interrupt, 1, 12)
[   33.459021] i8042: [32634] d4 -> i8042 (command)
[   33.459210] i8042: [32634] e9 -> i8042 (parameter)
[   33.462199] i8042: [32637] fa <- i8042 (interrupt, 1, 12)
[   33.463756] i8042: [32639] 3c <- i8042 (interrupt, 1, 12)
[   33.465301] i8042: [32640] 03 <- i8042 (interrupt, 1, 12)
[   33.466882] i8042: [32642] 00 <- i8042 (interrupt, 1, 12)
[   33.466939] i8042: [32642] d4 -> i8042 (command)
[   33.467129] i8042: [32642] e6 -> i8042 (parameter)
[   33.470168] i8042: [32645] fa <- i8042 (interrupt, 1, 12)
[   33.470247] i8042: [32645] d4 -> i8042 (command)
[   33.470435] i8042: [32645] e8 -> i8042 (parameter)
[   33.473325] i8042: [32648] fa <- i8042 (interrupt, 1, 12)
[   33.473453] i8042: [32649] d4 -> i8042 (command)
[   33.473700] i8042: [32649] 00 -> i8042 (parameter)
[   33.476494] i8042: [32652] fa <- i8042 (interrupt, 1, 12)
[   33.476630] i8042: [32652] d4 -> i8042 (command)
[   33.476821] i8042: [32652] e8 -> i8042 (parameter)
[   33.479699] i8042: [32655] fa <- i8042 (interrupt, 1, 12)
[   33.479763] i8042: [32655] d4 -> i8042 (command)
[   33.479952] i8042: [32655] 00 -> i8042 (parameter)
[   33.482958] i8042: [32658] fa <- i8042 (interrupt, 1, 12)
[   33.483048] i8042: [32658] d4 -> i8042 (command)
[   33.483238] i8042: [32658] e8 -> i8042 (parameter)
[   33.486130] i8042: [32661] fa <- i8042 (interrupt, 1, 12)
[   33.486218] i8042: [32661] d4 -> i8042 (command)
[   33.486408] i8042: [32662] 00 -> i8042 (parameter)
[   33.489250] i8042: [32664] fa <- i8042 (interrupt, 1, 12)
[   33.493828] i8042: [32669] d4 -> i8042 (command)
[   33.494030] i8042: [32669] e8 -> i8042 (parameter)
[   33.496987] i8042: [32672] fa <- i8042 (interrupt, 1, 12)
[   33.497042] i8042: [32672] d4 -> i8042 (command)
[   33.497231] i8042: [32672] 01 -> i8042 (parameter)
[   33.500177] i8042: [32675] fa <- i8042 (interrupt, 1, 12)
[   33.500506] i8042: [32676] d4 -> i8042 (command)
[   33.500698] i8042: [32676] e9 -> i8042 (parameter)
[   33.503408] i8042: [32679] fa <- i8042 (interrupt, 1, 12)
[   33.504945] i8042: [32680] 5e <- i8042 (interrupt, 1, 12)
[   33.506527] i8042: [32682] 0f <- i8042 (interrupt, 1, 12)
[   33.508146] i8042: [32683] 01 <- i8042 (interrupt, 1, 12)
[   33.508205] i8042: [32683] d4 -> i8042 (command)
[   33.508393] i8042: [32683] f8 -> i8042 (parameter)
[   33.511352] i8042: [32686] fa <- i8042 (interrupt, 1, 12)
[   33.511445] i8042: [32687] d4 -> i8042 (command)
[   33.511634] i8042: [32687] 00 -> i8042 (parameter)
[   33.514558] i8042: [32690] fa <- i8042 (interrupt, 1, 12)
[   33.514626] i8042: [32690] d4 -> i8042 (command)
[   33.514814] i8042: [32690] f8 -> i8042 (parameter)
[   33.517786] i8042: [32693] fa <- i8042 (interrupt, 1, 12)
[   33.517871] i8042: [32693] d4 -> i8042 (command)
[   33.518062] i8042: [32693] 07 -> i8042 (parameter)
[   33.520893] i8042: [32696] fa <- i8042 (interrupt, 1, 12)
[   33.520959] i8042: [32696] d4 -> i8042 (command)
[   33.521149] i8042: [32696] f8 -> i8042 (parameter)
[   33.524087] i8042: [32699] fa <- i8042 (interrupt, 1, 12)
[   33.524149] i8042: [32699] d4 -> i8042 (command)
[   33.524337] i8042: [32699] 00 -> i8042 (parameter)
[   33.527280] i8042: [32702] fa <- i8042 (interrupt, 1, 12)
[   33.527339] i8042: [32702] d4 -> i8042 (command)
[   33.527527] i8042: [32703] f8 -> i8042 (parameter)
[   33.530509] i8042: [32706] fa <- i8042 (interrupt, 1, 12)
[   33.530557] i8042: [32706] d4 -> i8042 (command)
[   33.530802] i8042: [32706] 01 -> i8042 (parameter)
[   33.533678] i8042: [32709] fa <- i8042 (interrupt, 1, 12)
[   33.533729] i8042: [32709] d4 -> i8042 (command)
[   33.533918] i8042: [32709] e6 -> i8042 (parameter)
[   33.536865] i8042: [32712] fa <- i8042 (interrupt, 1, 12)
[   33.536918] i8042: [32712] d4 -> i8042 (command)
[   33.537107] i8042: [32712] f3 -> i8042 (parameter)
[   33.540101] i8042: [32715] fa <- i8042 (interrupt, 1, 12)
[   33.540179] i8042: [32715] d4 -> i8042 (command)
[   33.540425] i8042: [32716] 64 -> i8042 (parameter)
[   33.543275] i8042: [32718] fa <- i8042 (interrupt, 1, 12)
[   33.543334] i8042: [32718] d4 -> i8042 (command)
[   33.543524] i8042: [32719] e8 -> i8042 (parameter)
[   33.546431] i8042: [32722] fa <- i8042 (interrupt, 1, 12)
[   33.546478] i8042: [32722] d4 -> i8042 (command)
[   33.546667] i8042: [32722] 03 -> i8042 (parameter)
[   33.549662] i8042: [32725] fa <- i8042 (interrupt, 1, 12)
[   33.549892] i8042: [32725] d4 -> i8042 (command)
[   33.550083] i8042: [32725] e6 -> i8042 (parameter)
[   33.552821] i8042: [32728] fa <- i8042 (interrupt, 1, 12)
[   33.552872] i8042: [32728] d4 -> i8042 (command)
[   33.553118] i8042: [32728] f4 -> i8042 (parameter)
[   33.556059] i8042: [32731] fa <- i8042 (interrupt, 1, 12)
[   34.201758] wlan0: authenticate with c8:9e:43:94:32:f2
[   34.210019] wlan0: send auth to c8:9e:43:94:32:f2 (try 1/3)
[   34.217572] wlan0: authenticated
[   34.218392] wlan0: associate with c8:9e:43:94:32:f2 (try 1/3)
[   34.219813] wlan0: RX AssocResp from c8:9e:43:94:32:f2 (capab=0x11 status=0 aid=27)
[   34.231411] wlan0: associated
[   34.261626] wlan0: dropped frame to c8:9e:43:94:32:f2 (unauthorized port)
[   34.339084] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by c8:9e:43:94:32:f2
[   73.492344] Lockdown: futility: raw io port access is restricted; see man kernel_lockdown.7
[   73.499552] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   73.502893] Lockdown: flashrom: raw io port access is restricted; see man kernel_lockdown.7
[   74.462841] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
[   74.463095] Lockdown: debugd: debugfs access is restricted; see man kernel_lockdown.7
Dmitry Torokhov March 7, 2024, 6:29 p.m. UTC | #11
On Mon, Mar 04, 2024 at 11:17:31AM -0600, Jonathan Denose wrote:
> I disabled the ideapad driver by rebuilding the kernel without the
> ideapad_laptop module. That does fix the suspend/resume issue!
> 
> Attached are the logs. Is there a way to make this permanent?
> 
> On Thu, Feb 29, 2024 at 12:23 PM Dmitry Torokhov
> <dmitry.torokhov@gmail.com> wrote:
> >
> > On Mon, Feb 12, 2024 at 02:57:08PM -0600, Jonathan Denose wrote:
> > ...
> > > [   50.241235] ideapad_acpi VPC2004:00: PM: calling acpi_subsys_resume+0x0/0x5d @ 4492, parent: PNP0C09:00
> > > [   50.242055] snd_hda_intel 0000:00:0e.0: PM: pci_pm_resume+0x0/0xed returned 0 after 13511 usecs
> > > [   50.242120] snd_hda_codec_realtek hdaudioC0D0: PM: calling hda_codec_pm_resume+0x0/0x19 [snd_hda_codec] @ 4518, parent: 0000:00:0e.0
> > > [   50.247406] i8042: [49434] a8 -> i8042 (command)
> > > [   50.247468] ideapad_acpi VPC2004:00: PM: acpi_subsys_resume+0x0/0x5d returned 0 after 6220 usecs
> > ...
> > > [   50.247883] i8042 kbd 00:01: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> > > [   50.247894] i8042 kbd 00:01: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
> > > [   50.247906] i8042 aux 00:02: PM: calling pnp_bus_resume+0x0/0x9d @ 4492, parent: pnp0
> > > [   50.247916] i8042 aux 00:02: PM: pnp_bus_resume+0x0/0x9d returned 0 after 0 usecs
> > ...
> > > [   50.248301] i8042 i8042: PM: calling platform_pm_resume+0x0/0x41 @ 4492, parent: platform
> > > [   50.248377] i8042: [49434] 55 <- i8042 (flush, kbd)
> > > [   50.248407] i8042: [49435] aa -> i8042 (command)
> > > [   50.248601] i8042: [49435] 00 <- i8042 (return)
> > > [   50.248604] i8042: [49435] i8042 controller selftest: 0x0 != 0x55
> >
> > So here I see the ideapad-laptop driver trying to access i8042 before it
> > even starts resuming. I wonder, does it help if you disable
> > (temporarily) the ideapad driver?

OK, so I tried to cook up a patch that would allow ideapad-laptop driver
to establish device link with i8042 so that the resume will be processed
after i8042 resumes, but the longer I think about it, the more I think
that ideapad driver should not be messing with the touchpad state
directly. The disable event may come up in a middle of the touchpad
resume transition, or when we decide to change touchpad mode for one
reason or another. It also does not respect inhibit/uninhibit controls
for input devices. I think that the proper way for ideapad driver to
handle this is to only send KEY_TOUCHPAD_OFF/KEY_TOUCHPAD_ON to
userspace and let userspace deal with toggling touchpad input (via
inhibit or by other means).

CC-ing ideapad maintainers for their thoughts.

Thanks.
diff mbox series

Patch

diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c
index a0aac76b1e41d..3c6eefcb9582f 100644
--- a/drivers/input/mouse/psmouse-base.c
+++ b/drivers/input/mouse/psmouse-base.c
@@ -12,6 +12,7 @@ 
 
 #include <linux/bitops.h>
 #include <linux/delay.h>
+#include <linux/dmi.h>
 #include <linux/module.h>
 #include <linux/slab.h>
 #include <linux/interrupt.h>
@@ -105,6 +106,16 @@  static struct attribute *psmouse_dev_attrs[] = {
 
 ATTRIBUTE_GROUPS(psmouse_dev);
 
+static const struct dmi_system_id resync_on_resume[] = {
+	{
+		.ident = "Lenovo N24",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+			DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo N24"),
+		},
+	}
+};
+
 /*
  * psmouse_mutex protects all operations changing state of mouse
  * (connecting, disconnecting, changing rate or resolution via
@@ -285,6 +296,12 @@  static int psmouse_handle_byte(struct psmouse *psmouse)
 				     "%s at %s lost sync at byte %d\n",
 				     psmouse->name, psmouse->phys,
 				     psmouse->pktcnt);
+			if (dmi_check_system(resync_on_resume)) {
+				psmouse_notice(psmouse, "issuing resync request");
+				__psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
+				psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
+				return -EIO;
+			}
 			if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
 				__psmouse_set_state(psmouse, PSMOUSE_IGNORE);
 				psmouse_notice(psmouse,