Linux Input/HID development
 help / color / mirror / Atom feed
* Re: [RFC PATCH v3 2/5] mfd: add driver for Marvell 88PM886 PMIC
From: Karel Balej @ 2024-03-05 18:53 UTC (permalink / raw)
  To: Lee Jones
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Dmitry Torokhov,
	Liam Girdwood, Mark Brown, devicetree, linux-kernel, linux-input,
	Duje Mihanović, ~postmarketos/upstreaming, phone-devel
In-Reply-To: <20240305114418.GB86322@google.com>

Lee Jones, 2024-03-05T11:44:18+00:00:
> > +static struct mfd_cell pm886_devs[] = {
> > +	{
> > +		.name = "88pm886-onkey",
> > +		.num_resources = ARRAY_SIZE(pm886_onkey_resources),
> > +		.resources = pm886_onkey_resources,
> > +	},
> > +	{
> > +		.name = "88pm886-regulator",
> > +		.id = PM886_REGULATOR_ID_LDO2,
>
> Why doesn't PLATFORM_DEVID_AUTO work for this device?

Because I am using the IDs in the regulator driver to determine which
regulator data to use/which regulator to register.

> > +static int pm886_initialize_subregmaps(struct pm886_chip *chip)
> > +{
> > +	struct device *dev = &chip->client->dev;
> > +	struct i2c_client *page;
> > +	struct regmap *regmap;
> > +	int err;
> > +
> > +	/* regulators page */
> > +	page = devm_i2c_new_dummy_device(dev, chip->client->adapter,
> > +				chip->client->addr + PM886_PAGE_OFFSET_REGULATORS);
> > +	if (IS_ERR(page)) {
> > +		err = PTR_ERR(page);
> > +		dev_err(dev, "Failed to initialize regulators client: %d\n", err);
> > +		return err;
> > +	}
> > +	regmap = devm_regmap_init_i2c(page, &pm886_i2c_regmap);
> > +	if (IS_ERR(regmap)) {
> > +		err = PTR_ERR(regmap);
> > +		dev_err(dev, "Failed to initialize regulators regmap: %d\n", err);
> > +		return err;
> > +	}
> > +	chip->regmaps[PM886_REGMAP_REGULATORS] = regmap;
>
> Except for the regulator driver, where else is the regulators regmap used?

Nowhere, at least as of now. So you are saying that I should initialize
the regmap in the regulator driver?

Thank you,
K. B.

^ permalink raw reply

* [PATCH] input: make input_class constant
From: Ricardo B. Marliere @ 2024-03-05 19:42 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-input, linux-kernel, Greg Kroah-Hartman,
	Ricardo B. Marliere

Since commit 43a7206b0963 ("driver core: class: make class_register() take
a const *"), the driver core allows for struct class to be in read-only
memory, so move the input_class structure to be declared at build time
placing it into read-only memory, instead of having to be dynamically
allocated at boot time.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
---
 drivers/input/input.c | 2 +-
 include/linux/input.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/input.c b/drivers/input/input.c
index de7884a5be39..711485437567 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -1918,7 +1918,7 @@ static char *input_devnode(const struct device *dev, umode_t *mode)
 	return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev));
 }
 
-struct class input_class = {
+const struct class input_class = {
 	.name		= "input",
 	.devnode	= input_devnode,
 };
diff --git a/include/linux/input.h b/include/linux/input.h
index de6503c0edb8..c22ac465254b 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -514,7 +514,7 @@ void input_enable_softrepeat(struct input_dev *dev, int delay, int period);
 
 bool input_device_enabled(struct input_dev *dev);
 
-extern struct class input_class;
+extern const struct class input_class;
 
 /**
  * struct ff_device - force-feedback part of an input device

---
base-commit: b0f3f9ab419c243389da6c0dd6a9db0eea560146
change-id: 20240305-class_cleanup-input-f85c876bee8c

Best regards,
-- 
Ricardo B. Marliere <ricardo@marliere.net>


^ permalink raw reply related

* Re: [PATCH v8 3/5] mfd: cs40l50: Add support for CS40L50 core driver
From: James Ogletree @ 2024-03-05 20:55 UTC (permalink / raw)
  To: Charles Keepax
  Cc: Lee Jones, James Ogletree, Dmitry Torokhov, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Mark Brown, Jeff LaBundy,
	open list:CIRRUS LOGIC HAPTIC DRIVERS,
	linux-sound@vger.kernel.org, linux-input@vger.kernel.org,
	devicetree@vger.kernel.org
In-Reply-To: <ZebyByQnYkaRiudv@ediswmail9.ad.cirrus.com>



> On Mar 5, 2024, at 4:20 AM, Charles Keepax <ckeepax@opensource.cirrus.com> wrote:
> 
> On Tue, Mar 05, 2024 at 09:58:18AM +0000, Lee Jones wrote:
>> On Fri, 01 Mar 2024, James Ogletree wrote:
>>>>> +static const struct cs_dsp_client_ops cs40l50_client_ops;
>>>> 
>>>> What's this for?  Where is it used?
>>>> 
>>>> In general, I'm not a fan of empty struct definitions like this.
>>> 
>>> From the same cs_dsp module as mentioned above, it is a structure containing
>>> callbacks that gives the client driver an opportunity to respond to certain events
>>> during the DSP's lifecycle. It just so happens that this driver does not need to do
>>> anything. However, no struct definition will result in a null pointer dereference by
>>> cs_dsp when it checks for the callbacks.
>> 
>> Then check for NULL before dereferencing it?
> 
> It would probably make sense to move the cs40l50_stop_core writes
> into the pre_run callback, and the CLOCK_ENABLE /
> cs40l50_configure_dsp stuff into the post_run callback. Which is
> probably a slightly more idiomatic way to use the API of cs_dsp
> and would mean some of the callbacks are initialised, thus
> dodging this problem.
> 
> We could check for there being no client_ops in the cs_dsp core,
> but it feels kinda redundant since there really should generally
> be client ops.

I will adopt the first solution here from Charles for v9.

Best,
James



^ permalink raw reply

* Re: [PATCH] Input: psmouse - add resync_on_resume dmi check
From: Jonathan Denose @ 2024-03-05 21:48 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: LKML, jefferymiller, Jonathan Denose, Raul Rangel, linux-input
In-Reply-To: <ZedotW8Yu6tJ2yYL@google.com>

[-- Attachment #1: Type: text/plain, Size: 4751 bytes --]

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

[-- Attachment #2: ideapad_laptoppatch_dmesg.txt --]
[-- Type: text/plain, Size: 258307 bytes --]

[   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)

^ permalink raw reply

* Re: [PATCH] Input: psmouse - add resync_on_resume dmi check
From: Dmitry Torokhov @ 2024-03-05 23:17 UTC (permalink / raw)
  To: Jonathan Denose
  Cc: LKML, jefferymiller, Jonathan Denose, Raul Rangel, linux-input
In-Reply-To: <CALNJtpWHxk8yWVSbX56JC3KThCZxFpUQMkikE9kc7hrawPdH4g@mail.gmail.com>

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

^ permalink raw reply

* [PATCH] HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized dev->devc
From: Zhang, Lixu @ 2024-03-06  0:44 UTC (permalink / raw)
  To: linux-input, srinivas.pandruvada, jikos, benjamin.tissoires

From: Zhang Lixu <lixu.zhang@intel.com>

The variable dev->devc in ish_dev_init was utilized by dev_err before it
was properly assigned. To rectify this, the assignment of dev->devc has
been moved to immediately follow memory allocation.

Without this change "(NULL device *)" is printed for device information.

Fixes: 8ae2f2b0a284 ("HID: intel-ish-hid: ipc: Fix potential use-after-free in work function")
Fixes: ae02e5d40d5f ("HID: intel-ish-hid: ipc layer")
Signed-off-by: Zhang Lixu <lixu.zhang@intel.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/hid/intel-ish-hid/ipc/ipc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/intel-ish-hid/ipc/ipc.c b/drivers/hid/intel-ish-hid/ipc/ipc.c
index 7cc412798fdf..adce30f8ebff 100644
--- a/drivers/hid/intel-ish-hid/ipc/ipc.c
+++ b/drivers/hid/intel-ish-hid/ipc/ipc.c
@@ -948,6 +948,7 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
 	if (!dev)
 		return NULL;
 
+	dev->devc = &pdev->dev;
 	ishtp_device_init(dev);
 
 	init_waitqueue_head(&dev->wait_hw_ready);
@@ -983,7 +984,6 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
 	}
 
 	dev->ops = &ish_hw_ops;
-	dev->devc = &pdev->dev;
 	dev->mtu = IPC_PAYLOAD_SIZE - sizeof(struct ishtp_msg_hdr);
 	return dev;
 }
-- 
2.40.1


^ permalink raw reply related

* Re: [PATCH] HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized dev->devc
From: srinivas pandruvada @ 2024-03-06  0:53 UTC (permalink / raw)
  To: Zhang, Lixu, linux-input, jikos, benjamin.tissoires
In-Reply-To: <20240306004404.2770417-1-lixu.zhang@intel.com>

On Wed, 2024-03-06 at 00:44 +0000, Zhang, Lixu wrote:
> From: Zhang Lixu <lixu.zhang@intel.com>
> 
> The variable dev->devc in ish_dev_init was utilized by dev_err before
> it
> was properly assigned. To rectify this, the assignment of dev->devc
> has
> been moved to immediately follow memory allocation.
> 
> Without this change "(NULL device *)" is printed for device
> information.
> 
> Fixes: 8ae2f2b0a284 ("HID: intel-ish-hid: ipc: Fix potential use-
> after-free in work function")
> Fixes: ae02e5d40d5f ("HID: intel-ish-hid: ipc layer")
> Signed-off-by: Zhang Lixu <lixu.zhang@intel.com>
> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
> ---
This is not an important change to submit to rc cycle.
This is just a logging issue.

Thanks,
Srinivas

>  drivers/hid/intel-ish-hid/ipc/ipc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hid/intel-ish-hid/ipc/ipc.c b/drivers/hid/intel-
> ish-hid/ipc/ipc.c
> index 7cc412798fdf..adce30f8ebff 100644
> --- a/drivers/hid/intel-ish-hid/ipc/ipc.c
> +++ b/drivers/hid/intel-ish-hid/ipc/ipc.c
> @@ -948,6 +948,7 @@ struct ishtp_device *ish_dev_init(struct pci_dev
> *pdev)
>         if (!dev)
>                 return NULL;
>  
> +       dev->devc = &pdev->dev;
>         ishtp_device_init(dev);
>  
>         init_waitqueue_head(&dev->wait_hw_ready);
> @@ -983,7 +984,6 @@ struct ishtp_device *ish_dev_init(struct pci_dev
> *pdev)
>         }
>  
>         dev->ops = &ish_hw_ops;
> -       dev->devc = &pdev->dev;
>         dev->mtu = IPC_PAYLOAD_SIZE - sizeof(struct ishtp_msg_hdr);
>         return dev;
>  }


^ permalink raw reply

* [PATCH 0/2] HID: intel-ish-hid: ipc: Use PCI_VDEVICE() and add Lunar Lake-M PCI device ID
From: Zhang, Lixu @ 2024-03-06  0:56 UTC (permalink / raw)
  To: linux-input, srinivas.pandruvada, jikos, benjamin.tissoires

This patch series consists of two patches. The first patch simplifies
the device table by using the PCI_VDEVICE() macro and renames the device
ID macros to follow the pattern PCI_DEVICE_ID_INTEL_*. The second patch
adds the device ID of Lunar Lake-M to the ISHTP support list.

Zhang Lixu (1):
  HID: intel-ish-hid: ipc: Add Lunar Lake-M PCI device ID

Zhang, Lixu (1):
  HID: intel-ish-hid: Use PCI_VDEVICE() and rename device ID macros

 drivers/hid/intel-ish-hid/ipc/hw-ish.h  | 45 ++++++++++---------
 drivers/hid/intel-ish-hid/ipc/ipc.c     | 14 +++---
 drivers/hid/intel-ish-hid/ipc/pci-ish.c | 59 +++++++++++++------------
 3 files changed, 60 insertions(+), 58 deletions(-)

-- 
2.40.1


^ permalink raw reply

* [PATCH 1/2] HID: intel-ish-hid: Use PCI_VDEVICE() and rename device ID macros
From: Zhang, Lixu @ 2024-03-06  0:56 UTC (permalink / raw)
  To: linux-input, srinivas.pandruvada, jikos, benjamin.tissoires
In-Reply-To: <20240306005638.2781839-1-lixu.zhang@intel.com>

Use PCI_VDEVICE() to simplify the device table, and rename these IDs to
follow the pattern PCI_DEVICE_ID_INTEL_*;

Suggested-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: Zhang, Lixu <lixu.zhang@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/hid/intel-ish-hid/ipc/hw-ish.h  | 44 +++++++++----------
 drivers/hid/intel-ish-hid/ipc/ipc.c     | 14 +++---
 drivers/hid/intel-ish-hid/ipc/pci-ish.c | 58 ++++++++++++-------------
 3 files changed, 58 insertions(+), 58 deletions(-)

diff --git a/drivers/hid/intel-ish-hid/ipc/hw-ish.h b/drivers/hid/intel-ish-hid/ipc/hw-ish.h
index f89b300417d7..a4484f3ba2be 100644
--- a/drivers/hid/intel-ish-hid/ipc/hw-ish.h
+++ b/drivers/hid/intel-ish-hid/ipc/hw-ish.h
@@ -13,28 +13,28 @@
 #include "hw-ish-regs.h"
 #include "ishtp-dev.h"
 
-#define CHV_DEVICE_ID		0x22D8
-#define BXT_Ax_DEVICE_ID	0x0AA2
-#define BXT_Bx_DEVICE_ID	0x1AA2
-#define APL_Ax_DEVICE_ID	0x5AA2
-#define SPT_Ax_DEVICE_ID	0x9D35
-#define CNL_Ax_DEVICE_ID	0x9DFC
-#define GLK_Ax_DEVICE_ID	0x31A2
-#define CNL_H_DEVICE_ID		0xA37C
-#define ICL_MOBILE_DEVICE_ID	0x34FC
-#define SPT_H_DEVICE_ID		0xA135
-#define CML_LP_DEVICE_ID	0x02FC
-#define CMP_H_DEVICE_ID		0x06FC
-#define EHL_Ax_DEVICE_ID	0x4BB3
-#define TGL_LP_DEVICE_ID	0xA0FC
-#define TGL_H_DEVICE_ID		0x43FC
-#define ADL_S_DEVICE_ID		0x7AF8
-#define ADL_P_DEVICE_ID		0x51FC
-#define ADL_N_DEVICE_ID		0x54FC
-#define RPL_S_DEVICE_ID		0x7A78
-#define MTL_P_DEVICE_ID		0x7E45
-#define ARL_H_DEVICE_ID		0x7745
-#define ARL_S_DEVICE_ID		0x7F78
+#define PCI_DEVICE_ID_INTEL_ISH_CHV		0x22D8
+#define PCI_DEVICE_ID_INTEL_ISH_BXT_Ax		0x0AA2
+#define PCI_DEVICE_ID_INTEL_ISH_BXT_Bx		0x1AA2
+#define PCI_DEVICE_ID_INTEL_ISH_APL_Ax		0x5AA2
+#define PCI_DEVICE_ID_INTEL_ISH_SPT_Ax		0x9D35
+#define PCI_DEVICE_ID_INTEL_ISH_CNL_Ax		0x9DFC
+#define PCI_DEVICE_ID_INTEL_ISH_GLK_Ax		0x31A2
+#define PCI_DEVICE_ID_INTEL_ISH_CNL_H		0xA37C
+#define PCI_DEVICE_ID_INTEL_ISH_ICL_MOBILE	0x34FC
+#define PCI_DEVICE_ID_INTEL_ISH_SPT_H		0xA135
+#define PCI_DEVICE_ID_INTEL_ISH_CML_LP		0x02FC
+#define PCI_DEVICE_ID_INTEL_ISH_CMP_H		0x06FC
+#define PCI_DEVICE_ID_INTEL_ISH_EHL_Ax		0x4BB3
+#define PCI_DEVICE_ID_INTEL_ISH_TGL_LP		0xA0FC
+#define PCI_DEVICE_ID_INTEL_ISH_TGL_H		0x43FC
+#define PCI_DEVICE_ID_INTEL_ISH_ADL_S		0x7AF8
+#define PCI_DEVICE_ID_INTEL_ISH_ADL_P		0x51FC
+#define PCI_DEVICE_ID_INTEL_ISH_ADL_N		0x54FC
+#define PCI_DEVICE_ID_INTEL_ISH_RPL_S		0x7A78
+#define PCI_DEVICE_ID_INTEL_ISH_MTL_P		0x7E45
+#define PCI_DEVICE_ID_INTEL_ISH_ARL_H		0x7745
+#define PCI_DEVICE_ID_INTEL_ISH_ARL_S		0x7F78
 
 #define	REVISION_ID_CHT_A0	0x6
 #define	REVISION_ID_CHT_Ax_SI	0x0
diff --git a/drivers/hid/intel-ish-hid/ipc/ipc.c b/drivers/hid/intel-ish-hid/ipc/ipc.c
index a49c6affd7c4..7cc412798fdf 100644
--- a/drivers/hid/intel-ish-hid/ipc/ipc.c
+++ b/drivers/hid/intel-ish-hid/ipc/ipc.c
@@ -78,7 +78,7 @@ static bool check_generated_interrupt(struct ishtp_device *dev)
 	bool interrupt_generated = true;
 	uint32_t pisr_val = 0;
 
-	if (dev->pdev->device == CHV_DEVICE_ID) {
+	if (dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_CHV) {
 		pisr_val = ish_reg_read(dev, IPC_REG_PISR_CHV_AB);
 		interrupt_generated =
 			IPC_INT_FROM_ISH_TO_HOST_CHV_AB(pisr_val);
@@ -117,7 +117,7 @@ static bool ish_is_input_ready(struct ishtp_device *dev)
  */
 static void set_host_ready(struct ishtp_device *dev)
 {
-	if (dev->pdev->device == CHV_DEVICE_ID) {
+	if (dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_CHV) {
 		if (dev->pdev->revision == REVISION_ID_CHT_A0 ||
 				(dev->pdev->revision & REVISION_ID_SI_MASK) ==
 				REVISION_ID_CHT_Ax_SI)
@@ -909,11 +909,11 @@ static uint32_t ish_ipc_get_header(struct ishtp_device *dev, int length,
  */
 static bool _dma_no_cache_snooping(struct ishtp_device *dev)
 {
-	return (dev->pdev->device == EHL_Ax_DEVICE_ID ||
-		dev->pdev->device == TGL_LP_DEVICE_ID ||
-		dev->pdev->device == TGL_H_DEVICE_ID ||
-		dev->pdev->device == ADL_S_DEVICE_ID ||
-		dev->pdev->device == ADL_P_DEVICE_ID);
+	return (dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_EHL_Ax ||
+		dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_TGL_LP ||
+		dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_TGL_H ||
+		dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_ADL_S ||
+		dev->pdev->device == PCI_DEVICE_ID_INTEL_ISH_ADL_P);
 }
 
 static const struct ishtp_hw_ops ish_hw_ops = {
diff --git a/drivers/hid/intel-ish-hid/ipc/pci-ish.c b/drivers/hid/intel-ish-hid/ipc/pci-ish.c
index 56bd4f02f319..330916ed5bfd 100644
--- a/drivers/hid/intel-ish-hid/ipc/pci-ish.c
+++ b/drivers/hid/intel-ish-hid/ipc/pci-ish.c
@@ -24,29 +24,29 @@
 #include "hw-ish.h"
 
 static const struct pci_device_id ish_pci_tbl[] = {
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, CHV_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, BXT_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, BXT_Bx_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, APL_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, SPT_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, CNL_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, GLK_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, CNL_H_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ICL_MOBILE_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, SPT_H_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, CML_LP_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, CMP_H_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, EHL_Ax_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, TGL_LP_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, TGL_H_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ADL_S_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ADL_P_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ADL_N_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, RPL_S_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, MTL_P_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ARL_H_DEVICE_ID)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, ARL_S_DEVICE_ID)},
-	{0, }
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_CHV)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_BXT_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_BXT_Bx)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_APL_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_SPT_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_CNL_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_GLK_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_CNL_H)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ICL_MOBILE)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_SPT_H)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_CML_LP)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_CMP_H)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_EHL_Ax)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_TGL_LP)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_TGL_H)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ADL_S)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ADL_P)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ADL_N)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_RPL_S)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_MTL_P)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ARL_H)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ARL_S)},
+	{}
 };
 MODULE_DEVICE_TABLE(pci, ish_pci_tbl);
 
@@ -105,19 +105,19 @@ static int ish_init(struct ishtp_device *dev)
 
 static const struct pci_device_id ish_invalid_pci_ids[] = {
 	/* Mehlow platform special pci ids */
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xA309)},
-	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xA30A)},
+	{PCI_VDEVICE(INTEL, 0xA309)},
+	{PCI_VDEVICE(INTEL, 0xA30A)},
 	{}
 };
 
 static inline bool ish_should_enter_d0i3(struct pci_dev *pdev)
 {
-	return !pm_suspend_via_firmware() || pdev->device == CHV_DEVICE_ID;
+	return !pm_suspend_via_firmware() || pdev->device == PCI_DEVICE_ID_INTEL_ISH_CHV;
 }
 
 static inline bool ish_should_leave_d0i3(struct pci_dev *pdev)
 {
-	return !pm_resume_via_firmware() || pdev->device == CHV_DEVICE_ID;
+	return !pm_resume_via_firmware() || pdev->device == PCI_DEVICE_ID_INTEL_ISH_CHV;
 }
 
 /**
@@ -189,7 +189,7 @@ static int ish_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 	init_waitqueue_head(&ishtp->resume_wait);
 
 	/* Enable PME for EHL */
-	if (pdev->device == EHL_Ax_DEVICE_ID)
+	if (pdev->device == PCI_DEVICE_ID_INTEL_ISH_EHL_Ax)
 		device_init_wakeup(dev, true);
 
 	ret = ish_init(ishtp);
@@ -222,7 +222,7 @@ static void ish_remove(struct pci_dev *pdev)
  */
 static void ish_shutdown(struct pci_dev *pdev)
 {
-	if (pdev->device == EHL_Ax_DEVICE_ID)
+	if (pdev->device == PCI_DEVICE_ID_INTEL_ISH_EHL_Ax)
 		pci_prepare_to_sleep(pdev);
 }
 
-- 
2.40.1


^ permalink raw reply related

* [PATCH 2/2] HID: intel-ish-hid: ipc: Add Lunar Lake-M PCI device ID
From: Zhang, Lixu @ 2024-03-06  0:56 UTC (permalink / raw)
  To: linux-input, srinivas.pandruvada, jikos, benjamin.tissoires
In-Reply-To: <20240306005638.2781839-1-lixu.zhang@intel.com>

From: Zhang Lixu <lixu.zhang@intel.com>

Add device ID of Lunar Lake-M into ishtp support list.

Signed-off-by: Zhang Lixu <lixu.zhang@intel.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/hid/intel-ish-hid/ipc/hw-ish.h  | 1 +
 drivers/hid/intel-ish-hid/ipc/pci-ish.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/hid/intel-ish-hid/ipc/hw-ish.h b/drivers/hid/intel-ish-hid/ipc/hw-ish.h
index a4484f3ba2be..cdd80c653918 100644
--- a/drivers/hid/intel-ish-hid/ipc/hw-ish.h
+++ b/drivers/hid/intel-ish-hid/ipc/hw-ish.h
@@ -35,6 +35,7 @@
 #define PCI_DEVICE_ID_INTEL_ISH_MTL_P		0x7E45
 #define PCI_DEVICE_ID_INTEL_ISH_ARL_H		0x7745
 #define PCI_DEVICE_ID_INTEL_ISH_ARL_S		0x7F78
+#define PCI_DEVICE_ID_INTEL_ISH_LNL_M		0xA845
 
 #define	REVISION_ID_CHT_A0	0x6
 #define	REVISION_ID_CHT_Ax_SI	0x0
diff --git a/drivers/hid/intel-ish-hid/ipc/pci-ish.c b/drivers/hid/intel-ish-hid/ipc/pci-ish.c
index 330916ed5bfd..e79d72f7db2a 100644
--- a/drivers/hid/intel-ish-hid/ipc/pci-ish.c
+++ b/drivers/hid/intel-ish-hid/ipc/pci-ish.c
@@ -46,6 +46,7 @@ static const struct pci_device_id ish_pci_tbl[] = {
 	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_MTL_P)},
 	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ARL_H)},
 	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_ARL_S)},
+	{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ISH_LNL_M)},
 	{}
 };
 MODULE_DEVICE_TABLE(pci, ish_pci_tbl);
-- 
2.40.1


^ permalink raw reply related

* Re: [PATCH v9 0/3] Input: Add TouchNetix axiom touchscreen driver
From: Kamel BOUHARA @ 2024-03-06  9:40 UTC (permalink / raw)
  To: Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Henrik Rydberg, linux-input, linux-kernel, devicetree,
	Marco Felsch, Jeff LaBundy
  Cc: catalin.popescu, mark.satterthwaite, Thomas Petazzoni,
	Gregory Clement, bsp-development.geo
In-Reply-To: <20240301103909.167923-1-kamel.bouhara@bootlin.com>

Le 2024-03-01 11:39, Kamel Bouhara a écrit :
> Add a new driver for the TouchNetix's axiom family of touchscreen
> controller. This driver only support i2c and can be later adapted for
> SPI and USB support.
> 

Hello,

Now that all the comments are addressed, do you think there is a chance 
that this driver could be merged for 6.9?

Regards,
--
Kamel Bouhara, Bootlin
Embedded Linux and kernel engineering
https://bootlin.com

^ permalink raw reply

* [dtor-input:for-linus] BUILD SUCCESS 963465a33141d0d52338e77f80fe543d2c9dc053
From: kernel test robot @ 2024-03-06 14:17 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input

tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus
branch HEAD: 963465a33141d0d52338e77f80fe543d2c9dc053  Input: gpio_keys_polled - suppress deferred probe error for gpio

elapsed time: 1243m

configs tested: 157
configs skipped: 5

The following configs have been built successfully.
More configs may be tested in the coming days.

tested configs:
alpha                             allnoconfig   gcc  
alpha                            allyesconfig   gcc  
alpha                               defconfig   gcc  
arc                              allmodconfig   gcc  
arc                               allnoconfig   gcc  
arc                              allyesconfig   gcc  
arc                                 defconfig   gcc  
arc                   randconfig-001-20240306   gcc  
arc                   randconfig-002-20240306   gcc  
arm                              allmodconfig   gcc  
arm                               allnoconfig   clang
arm                              allyesconfig   gcc  
arm                                 defconfig   clang
arm                   randconfig-001-20240306   gcc  
arm                           tegra_defconfig   gcc  
arm64                            allmodconfig   clang
arm64                             allnoconfig   gcc  
arm64                            allyesconfig   clang
arm64                               defconfig   gcc  
arm64                 randconfig-001-20240306   gcc  
arm64                 randconfig-003-20240306   gcc  
csky                             allmodconfig   gcc  
csky                              allnoconfig   gcc  
csky                             allyesconfig   gcc  
csky                                defconfig   gcc  
csky                  randconfig-001-20240306   gcc  
csky                  randconfig-002-20240306   gcc  
hexagon                          allmodconfig   clang
hexagon                           allnoconfig   clang
hexagon                          allyesconfig   clang
hexagon                             defconfig   clang
i386                             alldefconfig   gcc  
i386                             allmodconfig   gcc  
i386                              allnoconfig   gcc  
i386                             allyesconfig   gcc  
i386         buildonly-randconfig-001-20240306   clang
i386         buildonly-randconfig-002-20240306   clang
i386         buildonly-randconfig-004-20240306   clang
i386         buildonly-randconfig-005-20240306   clang
i386                                defconfig   clang
i386                  randconfig-002-20240306   clang
i386                  randconfig-003-20240306   clang
i386                  randconfig-004-20240306   clang
i386                  randconfig-006-20240306   clang
i386                  randconfig-011-20240306   clang
i386                  randconfig-012-20240306   clang
i386                  randconfig-015-20240306   clang
i386                  randconfig-016-20240306   clang
loongarch                        allmodconfig   gcc  
loongarch                         allnoconfig   gcc  
loongarch                        allyesconfig   gcc  
loongarch                           defconfig   gcc  
loongarch             randconfig-001-20240306   gcc  
loongarch             randconfig-002-20240306   gcc  
m68k                             allmodconfig   gcc  
m68k                              allnoconfig   gcc  
m68k                             allyesconfig   gcc  
m68k                       bvme6000_defconfig   gcc  
m68k                                defconfig   gcc  
m68k                       m5275evb_defconfig   gcc  
m68k                        mvme16x_defconfig   gcc  
microblaze                       allmodconfig   gcc  
microblaze                        allnoconfig   gcc  
microblaze                       allyesconfig   gcc  
microblaze                          defconfig   gcc  
mips                             allmodconfig   gcc  
mips                              allnoconfig   gcc  
mips                             allyesconfig   gcc  
nios2                            allmodconfig   gcc  
nios2                             allnoconfig   gcc  
nios2                            allyesconfig   gcc  
nios2                               defconfig   gcc  
nios2                 randconfig-001-20240306   gcc  
nios2                 randconfig-002-20240306   gcc  
openrisc                         allmodconfig   gcc  
openrisc                          allnoconfig   gcc  
openrisc                         allyesconfig   gcc  
openrisc                            defconfig   gcc  
parisc                           allmodconfig   gcc  
parisc                            allnoconfig   gcc  
parisc                           allyesconfig   gcc  
parisc                              defconfig   gcc  
parisc                generic-64bit_defconfig   gcc  
parisc                randconfig-001-20240306   gcc  
parisc                randconfig-002-20240306   gcc  
parisc64                            defconfig   gcc  
powerpc                          allmodconfig   gcc  
powerpc                           allnoconfig   gcc  
powerpc                          allyesconfig   clang
powerpc               randconfig-001-20240306   gcc  
powerpc               randconfig-002-20240306   gcc  
powerpc64             randconfig-001-20240306   gcc  
riscv                            allmodconfig   clang
riscv                             allnoconfig   gcc  
riscv                            allyesconfig   clang
riscv                               defconfig   clang
riscv                 randconfig-002-20240306   gcc  
riscv                          rv32_defconfig   clang
s390                             allmodconfig   clang
s390                              allnoconfig   clang
s390                             allyesconfig   gcc  
s390                                defconfig   clang
s390                  randconfig-002-20240306   gcc  
sh                               allmodconfig   gcc  
sh                                allnoconfig   gcc  
sh                               allyesconfig   gcc  
sh                                  defconfig   gcc  
sh                        dreamcast_defconfig   gcc  
sh                        edosk7705_defconfig   gcc  
sh                          lboxre2_defconfig   gcc  
sh                    randconfig-001-20240306   gcc  
sh                    randconfig-002-20240306   gcc  
sh                              ul2_defconfig   gcc  
sparc                            allmodconfig   gcc  
sparc                             allnoconfig   gcc  
sparc                            allyesconfig   gcc  
sparc                               defconfig   gcc  
sparc64                          allmodconfig   gcc  
sparc64                          allyesconfig   gcc  
sparc64                             defconfig   gcc  
sparc64               randconfig-001-20240306   gcc  
sparc64               randconfig-002-20240306   gcc  
um                               allmodconfig   clang
um                                allnoconfig   clang
um                               allyesconfig   gcc  
um                                  defconfig   clang
um                             i386_defconfig   gcc  
um                    randconfig-001-20240306   gcc  
um                           x86_64_defconfig   clang
x86_64                            allnoconfig   clang
x86_64                           allyesconfig   clang
x86_64       buildonly-randconfig-001-20240306   clang
x86_64       buildonly-randconfig-002-20240306   clang
x86_64       buildonly-randconfig-003-20240306   clang
x86_64       buildonly-randconfig-004-20240306   clang
x86_64       buildonly-randconfig-006-20240306   clang
x86_64                              defconfig   gcc  
x86_64                randconfig-001-20240306   clang
x86_64                randconfig-002-20240306   clang
x86_64                randconfig-005-20240306   clang
x86_64                randconfig-006-20240306   clang
x86_64                randconfig-011-20240306   clang
x86_64                randconfig-012-20240306   clang
x86_64                randconfig-013-20240306   clang
x86_64                randconfig-015-20240306   clang
x86_64                randconfig-071-20240306   clang
x86_64                randconfig-072-20240306   clang
x86_64                randconfig-073-20240306   clang
x86_64                randconfig-074-20240306   clang
x86_64                randconfig-075-20240306   clang
x86_64                randconfig-076-20240306   clang
x86_64                          rhel-8.3-rust   clang
x86_64                               rhel-8.3   gcc  
xtensa                            allnoconfig   gcc  
xtensa                           allyesconfig   gcc  
xtensa                randconfig-001-20240306   gcc  
xtensa                randconfig-002-20240306   gcc  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply

* [dtor-input:next] BUILD SUCCESS b0f3f9ab419c243389da6c0dd6a9db0eea560146
From: kernel test robot @ 2024-03-06 14:17 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input

tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
branch HEAD: b0f3f9ab419c243389da6c0dd6a9db0eea560146  dt-bindings: input: allwinner,sun4i-a10-lrad: drop redundant type from label

elapsed time: 1172m

configs tested: 157
configs skipped: 3

The following configs have been built successfully.
More configs may be tested in the coming days.

tested configs:
alpha                             allnoconfig   gcc  
alpha                            allyesconfig   gcc  
alpha                               defconfig   gcc  
arc                              allmodconfig   gcc  
arc                               allnoconfig   gcc  
arc                              allyesconfig   gcc  
arc                                 defconfig   gcc  
arc                   randconfig-001-20240306   gcc  
arc                   randconfig-002-20240306   gcc  
arm                              allmodconfig   gcc  
arm                               allnoconfig   clang
arm                              allyesconfig   gcc  
arm                                 defconfig   clang
arm                   randconfig-001-20240306   gcc  
arm                           tegra_defconfig   gcc  
arm64                            allmodconfig   clang
arm64                             allnoconfig   gcc  
arm64                            allyesconfig   clang
arm64                               defconfig   gcc  
arm64                 randconfig-001-20240306   gcc  
arm64                 randconfig-003-20240306   gcc  
csky                             allmodconfig   gcc  
csky                              allnoconfig   gcc  
csky                             allyesconfig   gcc  
csky                                defconfig   gcc  
csky                  randconfig-001-20240306   gcc  
csky                  randconfig-002-20240306   gcc  
hexagon                          allmodconfig   clang
hexagon                           allnoconfig   clang
hexagon                          allyesconfig   clang
hexagon                             defconfig   clang
i386                             alldefconfig   gcc  
i386                             allmodconfig   gcc  
i386                              allnoconfig   gcc  
i386                             allyesconfig   gcc  
i386         buildonly-randconfig-001-20240306   clang
i386         buildonly-randconfig-002-20240306   clang
i386         buildonly-randconfig-004-20240306   clang
i386         buildonly-randconfig-005-20240306   clang
i386                                defconfig   clang
i386                  randconfig-002-20240306   clang
i386                  randconfig-003-20240306   clang
i386                  randconfig-004-20240306   clang
i386                  randconfig-006-20240306   clang
i386                  randconfig-011-20240306   clang
i386                  randconfig-012-20240306   clang
i386                  randconfig-015-20240306   clang
i386                  randconfig-016-20240306   clang
loongarch                        allmodconfig   gcc  
loongarch                         allnoconfig   gcc  
loongarch                        allyesconfig   gcc  
loongarch                           defconfig   gcc  
loongarch             randconfig-001-20240306   gcc  
loongarch             randconfig-002-20240306   gcc  
m68k                             allmodconfig   gcc  
m68k                              allnoconfig   gcc  
m68k                             allyesconfig   gcc  
m68k                       bvme6000_defconfig   gcc  
m68k                                defconfig   gcc  
m68k                       m5275evb_defconfig   gcc  
m68k                        mvme16x_defconfig   gcc  
microblaze                       allmodconfig   gcc  
microblaze                        allnoconfig   gcc  
microblaze                       allyesconfig   gcc  
microblaze                          defconfig   gcc  
mips                             allmodconfig   gcc  
mips                              allnoconfig   gcc  
mips                             allyesconfig   gcc  
nios2                            allmodconfig   gcc  
nios2                             allnoconfig   gcc  
nios2                            allyesconfig   gcc  
nios2                               defconfig   gcc  
nios2                 randconfig-001-20240306   gcc  
nios2                 randconfig-002-20240306   gcc  
openrisc                         allmodconfig   gcc  
openrisc                          allnoconfig   gcc  
openrisc                         allyesconfig   gcc  
openrisc                            defconfig   gcc  
parisc                           allmodconfig   gcc  
parisc                            allnoconfig   gcc  
parisc                           allyesconfig   gcc  
parisc                              defconfig   gcc  
parisc                generic-64bit_defconfig   gcc  
parisc                randconfig-001-20240306   gcc  
parisc                randconfig-002-20240306   gcc  
parisc64                            defconfig   gcc  
powerpc                          allmodconfig   gcc  
powerpc                           allnoconfig   gcc  
powerpc                          allyesconfig   clang
powerpc               randconfig-001-20240306   gcc  
powerpc               randconfig-002-20240306   gcc  
powerpc64             randconfig-001-20240306   gcc  
riscv                            allmodconfig   clang
riscv                             allnoconfig   gcc  
riscv                            allyesconfig   clang
riscv                               defconfig   clang
riscv                 randconfig-002-20240306   gcc  
riscv                          rv32_defconfig   clang
s390                             allmodconfig   clang
s390                              allnoconfig   clang
s390                             allyesconfig   gcc  
s390                                defconfig   clang
s390                  randconfig-002-20240306   gcc  
sh                               allmodconfig   gcc  
sh                                allnoconfig   gcc  
sh                               allyesconfig   gcc  
sh                                  defconfig   gcc  
sh                        dreamcast_defconfig   gcc  
sh                        edosk7705_defconfig   gcc  
sh                          lboxre2_defconfig   gcc  
sh                    randconfig-001-20240306   gcc  
sh                    randconfig-002-20240306   gcc  
sh                              ul2_defconfig   gcc  
sparc                            allmodconfig   gcc  
sparc                             allnoconfig   gcc  
sparc                            allyesconfig   gcc  
sparc                               defconfig   gcc  
sparc64                          allmodconfig   gcc  
sparc64                          allyesconfig   gcc  
sparc64                             defconfig   gcc  
sparc64               randconfig-001-20240306   gcc  
sparc64               randconfig-002-20240306   gcc  
um                               allmodconfig   clang
um                                allnoconfig   clang
um                               allyesconfig   gcc  
um                                  defconfig   clang
um                             i386_defconfig   gcc  
um                    randconfig-001-20240306   gcc  
um                           x86_64_defconfig   clang
x86_64                            allnoconfig   clang
x86_64                           allyesconfig   clang
x86_64       buildonly-randconfig-001-20240306   clang
x86_64       buildonly-randconfig-002-20240306   clang
x86_64       buildonly-randconfig-003-20240306   clang
x86_64       buildonly-randconfig-004-20240306   clang
x86_64       buildonly-randconfig-006-20240306   clang
x86_64                              defconfig   gcc  
x86_64                randconfig-001-20240306   clang
x86_64                randconfig-002-20240306   clang
x86_64                randconfig-005-20240306   clang
x86_64                randconfig-006-20240306   clang
x86_64                randconfig-011-20240306   clang
x86_64                randconfig-012-20240306   clang
x86_64                randconfig-013-20240306   clang
x86_64                randconfig-015-20240306   clang
x86_64                randconfig-071-20240306   clang
x86_64                randconfig-072-20240306   clang
x86_64                randconfig-073-20240306   clang
x86_64                randconfig-074-20240306   clang
x86_64                randconfig-075-20240306   clang
x86_64                randconfig-076-20240306   clang
x86_64                          rhel-8.3-rust   clang
x86_64                               rhel-8.3   gcc  
xtensa                            allnoconfig   gcc  
xtensa                           allyesconfig   gcc  
xtensa                randconfig-001-20240306   gcc  
xtensa                randconfig-002-20240306   gcc  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply

* [PATCH v3 1/3] input: touchscreen: imagis: use FIELD_GET where applicable
From: Duje Mihanović @ 2024-03-06 14:40 UTC (permalink / raw)
  To: Markuss Broks, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Karel Balej, ~postmarketos/upstreaming, phone-devel, devicetree,
	linux-input, linux-kernel, Duje Mihanović
In-Reply-To: <20240306-b4-imagis-keys-v3-0-2c429afa8420@skole.hr>

Instead of manually extracting certain bits from registers with binary
ANDs and shifts, the FIELD_GET macro can be used. With this in mind, the
*_SHIFT macros can be dropped.

Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
---
 drivers/input/touchscreen/imagis.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/drivers/input/touchscreen/imagis.c b/drivers/input/touchscreen/imagis.c
index e1fafa561ee3..4eae98771bd2 100644
--- a/drivers/input/touchscreen/imagis.c
+++ b/drivers/input/touchscreen/imagis.c
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-only
 
+#include <linux/bitfield.h>
 #include <linux/bits.h>
 #include <linux/delay.h>
 #include <linux/i2c.h>
@@ -29,12 +30,9 @@
 #define IST3038C_I2C_RETRY_COUNT	3
 #define IST3038C_MAX_FINGER_NUM		10
 #define IST3038C_X_MASK			GENMASK(23, 12)
-#define IST3038C_X_SHIFT		12
 #define IST3038C_Y_MASK			GENMASK(11, 0)
 #define IST3038C_AREA_MASK		GENMASK(27, 24)
-#define IST3038C_AREA_SHIFT		24
 #define IST3038C_FINGER_COUNT_MASK	GENMASK(15, 12)
-#define IST3038C_FINGER_COUNT_SHIFT	12
 #define IST3038C_FINGER_STATUS_MASK	GENMASK(9, 0)
 
 struct imagis_properties {
@@ -106,8 +104,7 @@ static irqreturn_t imagis_interrupt(int irq, void *dev_id)
 		goto out;
 	}
 
-	finger_count = (intr_message & IST3038C_FINGER_COUNT_MASK) >>
-				IST3038C_FINGER_COUNT_SHIFT;
+	finger_count = FIELD_GET(IST3038C_FINGER_COUNT_MASK, intr_message);
 	if (finger_count > IST3038C_MAX_FINGER_NUM) {
 		dev_err(&ts->client->dev,
 			"finger count %d is more than maximum supported\n",
@@ -115,7 +112,7 @@ static irqreturn_t imagis_interrupt(int irq, void *dev_id)
 		goto out;
 	}
 
-	finger_pressed = intr_message & IST3038C_FINGER_STATUS_MASK;
+	finger_pressed = FIELD_GET(IST3038C_FINGER_STATUS_MASK, intr_message);
 
 	for (i = 0; i < finger_count; i++) {
 		if (ts->tdata->protocol_b)
@@ -136,12 +133,10 @@ static irqreturn_t imagis_interrupt(int irq, void *dev_id)
 		input_mt_report_slot_state(ts->input_dev, MT_TOOL_FINGER,
 					   finger_pressed & BIT(i));
 		touchscreen_report_pos(ts->input_dev, &ts->prop,
-				       (finger_status & IST3038C_X_MASK) >>
-						IST3038C_X_SHIFT,
-				       finger_status & IST3038C_Y_MASK, 1);
+				       FIELD_GET(IST3038C_X_MASK, finger_status),
+				       FIELD_GET(IST3038C_Y_MASK, finger_status), 1);
 		input_report_abs(ts->input_dev, ABS_MT_TOUCH_MAJOR,
-				 (finger_status & IST3038C_AREA_MASK) >>
-					IST3038C_AREA_SHIFT);
+				       FIELD_GET(IST3038C_AREA_MASK, finger_status));
 	}
 
 	input_mt_sync_frame(ts->input_dev);

-- 
2.44.0



^ permalink raw reply related

* [PATCH v3 3/3] input: touchscreen: imagis: Add touch key support
From: Duje Mihanović @ 2024-03-06 14:40 UTC (permalink / raw)
  To: Markuss Broks, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Karel Balej, ~postmarketos/upstreaming, phone-devel, devicetree,
	linux-input, linux-kernel, Duje Mihanović
In-Reply-To: <20240306-b4-imagis-keys-v3-0-2c429afa8420@skole.hr>

IST3032C (and possibly some other models) has touch keys. Add support
for them to the imagis driver.

Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
---
 drivers/input/touchscreen/imagis.c | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/drivers/input/touchscreen/imagis.c b/drivers/input/touchscreen/imagis.c
index 4eae98771bd2..625d9287eabe 100644
--- a/drivers/input/touchscreen/imagis.c
+++ b/drivers/input/touchscreen/imagis.c
@@ -34,6 +34,7 @@
 #define IST3038C_AREA_MASK		GENMASK(27, 24)
 #define IST3038C_FINGER_COUNT_MASK	GENMASK(15, 12)
 #define IST3038C_FINGER_STATUS_MASK	GENMASK(9, 0)
+#define IST3032C_KEY_STATUS_MASK	GENMASK(20, 16)
 
 struct imagis_properties {
 	unsigned int interrupt_msg_cmd;
@@ -41,6 +42,7 @@ struct imagis_properties {
 	unsigned int whoami_cmd;
 	unsigned int whoami_val;
 	bool protocol_b;
+	bool touch_keys_supported;
 };
 
 struct imagis_ts {
@@ -49,6 +51,8 @@ struct imagis_ts {
 	struct input_dev *input_dev;
 	struct touchscreen_properties prop;
 	struct regulator_bulk_data supplies[2];
+	u32 keycodes[5];
+	int num_keycodes;
 };
 
 static int imagis_i2c_read_reg(struct imagis_ts *ts,
@@ -93,7 +97,7 @@ static irqreturn_t imagis_interrupt(int irq, void *dev_id)
 {
 	struct imagis_ts *ts = dev_id;
 	u32 intr_message, finger_status;
-	unsigned int finger_count, finger_pressed;
+	unsigned int finger_count, finger_pressed, key_pressed;
 	int i;
 	int error;
 
@@ -139,6 +143,11 @@ static irqreturn_t imagis_interrupt(int irq, void *dev_id)
 				       FIELD_GET(IST3038C_AREA_MASK, finger_status));
 	}
 
+	key_pressed = FIELD_GET(IST3032C_KEY_STATUS_MASK, intr_message);
+
+	for (int i = 0; i < ts->num_keycodes; i++)
+		input_report_key(ts->input_dev, ts->keycodes[i], (key_pressed & BIT(i)));
+
 	input_mt_sync_frame(ts->input_dev);
 	input_sync(ts->input_dev);
 
@@ -224,6 +233,23 @@ static int imagis_init_input_dev(struct imagis_ts *ts)
 	input_set_capability(input_dev, EV_ABS, ABS_MT_POSITION_X);
 	input_set_capability(input_dev, EV_ABS, ABS_MT_POSITION_Y);
 	input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, 16, 0, 0);
+	if (ts->tdata->touch_keys_supported) {
+		ts->num_keycodes = of_property_read_variable_u32_array(
+				ts->client->dev.of_node, "linux,keycodes",
+				ts->keycodes, 0, ARRAY_SIZE(ts->keycodes));
+		if (ts->num_keycodes <= 0) {
+			ts->keycodes[0] = KEY_APPSELECT;
+			ts->keycodes[1] = KEY_BACK;
+			ts->num_keycodes = 2;
+		}
+
+		input_dev->keycodemax = ts->num_keycodes;
+		input_dev->keycodesize = sizeof(ts->keycodes[0]);
+		input_dev->keycode = ts->keycodes;
+	}
+
+	for (int i = 0; i < ts->num_keycodes; i++)
+		input_set_capability(input_dev, EV_KEY, ts->keycodes[i]);
 
 	touchscreen_parse_properties(input_dev, true, &ts->prop);
 	if (!ts->prop.max_x || !ts->prop.max_y) {
@@ -365,6 +391,7 @@ static const struct imagis_properties imagis_3032c_data = {
 	.touch_coord_cmd = IST3038C_REG_TOUCH_COORD,
 	.whoami_cmd = IST3038C_REG_CHIPID,
 	.whoami_val = IST3032C_WHOAMI,
+	.touch_keys_supported = true,
 };
 
 static const struct imagis_properties imagis_3038b_data = {

-- 
2.44.0



^ permalink raw reply related

* [PATCH v3 0/3] Imagis touch keys and FIELD_GET cleanup
From: Duje Mihanović @ 2024-03-06 14:40 UTC (permalink / raw)
  To: Markuss Broks, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Karel Balej, ~postmarketos/upstreaming, phone-devel, devicetree,
	linux-input, linux-kernel, Duje Mihanović

Tiny series to clean up the field extraction and add touch key support.
This version is based on the next branch of Dmitry's input tree.

Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
---
Changes in v3:
- Rebase on input/next
- Add changelog to binding patch
- Fix binding constraint
- Allow changing keycodes in userspace as in 872e57abd171 ("Input:
  tm2-touchkey - allow changing keycodes from userspace")
- Allow up to 5 keycodes (the key status field has 5 bits)
- Link to v2: https://lore.kernel.org/r/20240120-b4-imagis-keys-v2-0-d7fc16f2e106@skole.hr

Changes in v2:
- Fix compile error
- Add FIELD_GET patch
- Allow specifying custom keycodes
- Link to v1: https://lore.kernel.org/20231112194124.24916-1-duje.mihanovic@skole.hr

---
Duje Mihanović (3):
      input: touchscreen: imagis: use FIELD_GET where applicable
      dt-bindings: input: imagis: Document touch keys
      input: touchscreen: imagis: Add touch key support

 .../input/touchscreen/imagis,ist3038c.yaml         | 19 +++++++--
 drivers/input/touchscreen/imagis.c                 | 46 ++++++++++++++++------
 2 files changed, 50 insertions(+), 15 deletions(-)
---
base-commit: b0f3f9ab419c243389da6c0dd6a9db0eea560146
change-id: 20240120-b4-imagis-keys-a0a9f2b31740

Best regards,
-- 
Duje Mihanović <duje.mihanovic@skole.hr>



^ permalink raw reply

* [PATCH v3 2/3] dt-bindings: input: imagis: Document touch keys
From: Duje Mihanović @ 2024-03-06 14:40 UTC (permalink / raw)
  To: Markuss Broks, Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Karel Balej, ~postmarketos/upstreaming, phone-devel, devicetree,
	linux-input, linux-kernel, Duje Mihanović
In-Reply-To: <20240306-b4-imagis-keys-v3-0-2c429afa8420@skole.hr>

IST3032C (and possibly some other models) has touch keys. Document this.

Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
---
Changes in v3:
- Move allOf under additionalProperties and move if under allOf
- Properly define linux,keycodes
- Fix linux,keycodes constraint
- Change maximum number of keycodes to 5 in accordance with the size of
  the key status field

Changes in v2:
- Allow specifying custom keycodes and document this in binding
---
 .../bindings/input/touchscreen/imagis,ist3038c.yaml   | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml b/Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
index 2af71cbcc97d..77ba280b3bdc 100644
--- a/Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
+++ b/Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
@@ -9,9 +9,6 @@ title: Imagis IST30XXC family touchscreen controller
 maintainers:
   - Markuss Broks <markuss.broks@gmail.com>
 
-allOf:
-  - $ref: touchscreen.yaml#
-
 properties:
   $nodename:
     pattern: "^touchscreen@[0-9a-f]+$"
@@ -34,6 +31,10 @@ properties:
   vddio-supply:
     description: Power supply regulator for the I2C bus
 
+  linux,keycodes:
+    description: Keycodes for the touch keys
+    maxItems: 5
+
   touchscreen-size-x: true
   touchscreen-size-y: true
   touchscreen-fuzz-x: true
@@ -44,6 +45,18 @@ properties:
 
 additionalProperties: false
 
+allOf:
+  - $ref: touchscreen.yaml#
+  - if:
+      not:
+        properties:
+          compatible:
+            contains:
+              const: imagis,ist3032c
+    then:
+      properties:
+        linux,keycodes: false
+
 required:
   - compatible
   - reg

-- 
2.44.0



^ permalink raw reply related

* Re: [PATCH] Input: psmouse - add resync_on_resume dmi check
From: Jonathan Denose @ 2024-03-06 16:43 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: LKML, jefferymiller, Jonathan Denose, Raul Rangel, linux-input
In-Reply-To: <ZeeoBeUwz0__lVLM@google.com>

[-- Attachment #1: Type: text/plain, Size: 674 bytes --]

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

[-- Attachment #2: ideapad_patch_complete.txt --]
[-- Type: text/plain, Size: 313986 bytes --]

[    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

^ permalink raw reply

* [PATCH 1/3] HID: google: hammer: Convert to platform remove callback returning void
From: Uwe Kleine-König @ 2024-03-06 17:50 UTC (permalink / raw)
  To: Jiri Kosina, Benjamin Tissoires; +Cc: linux-input, kernel
In-Reply-To: <cover.1709747164.git.u.kleine-koenig@pengutronix.de>

The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is ignored (apart
from emitting a warning) and this typically results in resource leaks.

To improve here there is a quest to make the remove callback return
void. In the first step of this quest all drivers are converted to
.remove_new(), which already returns void. Eventually after all drivers
are converted, .remove_new() will be renamed to .remove().

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/hid/hid-google-hammer.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/hid/hid-google-hammer.c b/drivers/hid/hid-google-hammer.c
index c6bdb9c4ef3e..25331695ae32 100644
--- a/drivers/hid/hid-google-hammer.c
+++ b/drivers/hid/hid-google-hammer.c
@@ -255,7 +255,7 @@ static int cbas_ec_probe(struct platform_device *pdev)
 	return retval;
 }
 
-static int cbas_ec_remove(struct platform_device *pdev)
+static void cbas_ec_remove(struct platform_device *pdev)
 {
 	struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
 
@@ -266,7 +266,6 @@ static int cbas_ec_remove(struct platform_device *pdev)
 	cbas_ec_set_input(NULL);
 
 	mutex_unlock(&cbas_ec_reglock);
-	return 0;
 }
 
 static const struct acpi_device_id cbas_ec_acpi_ids[] = {
@@ -285,7 +284,7 @@ MODULE_DEVICE_TABLE(of, cbas_ec_of_match);
 
 static struct platform_driver cbas_ec_driver = {
 	.probe = cbas_ec_probe,
-	.remove = cbas_ec_remove,
+	.remove_new = cbas_ec_remove,
 	.driver = {
 		.name = "cbas_ec",
 		.acpi_match_table = ACPI_PTR(cbas_ec_acpi_ids),
-- 
2.43.0


^ permalink raw reply related

* [PATCH 3/3] HID: surface-hid: kbd: Convert to platform remove callback returning void
From: Uwe Kleine-König @ 2024-03-06 17:50 UTC (permalink / raw)
  To: Jiri Kosina, Benjamin Tissoires
  Cc: Maximilian Luz, linux-input, platform-driver-x86, kernel
In-Reply-To: <cover.1709747164.git.u.kleine-koenig@pengutronix.de>

The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is ignored (apart
from emitting a warning) and this typically results in resource leaks.

To improve here there is a quest to make the remove callback return
void. In the first step of this quest all drivers are converted to
.remove_new(), which already returns void. Eventually after all drivers
are converted, .remove_new() will be renamed to .remove().

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/hid/surface-hid/surface_kbd.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/hid/surface-hid/surface_kbd.c b/drivers/hid/surface-hid/surface_kbd.c
index 4fbce201db6a..8c0cbb2deb11 100644
--- a/drivers/hid/surface-hid/surface_kbd.c
+++ b/drivers/hid/surface-hid/surface_kbd.c
@@ -271,10 +271,9 @@ static int surface_kbd_probe(struct platform_device *pdev)
 	return surface_hid_device_add(shid);
 }
 
-static int surface_kbd_remove(struct platform_device *pdev)
+static void surface_kbd_remove(struct platform_device *pdev)
 {
 	surface_hid_device_destroy(platform_get_drvdata(pdev));
-	return 0;
 }
 
 static const struct acpi_device_id surface_kbd_match[] = {
@@ -285,7 +284,7 @@ MODULE_DEVICE_TABLE(acpi, surface_kbd_match);
 
 static struct platform_driver surface_kbd_driver = {
 	.probe = surface_kbd_probe,
-	.remove = surface_kbd_remove,
+	.remove_new = surface_kbd_remove,
 	.driver = {
 		.name = "surface_keyboard",
 		.acpi_match_table = surface_kbd_match,
-- 
2.43.0


^ permalink raw reply related

* [PATCH 0/3] HID: Convert to platform remove callback returning void
From: Uwe Kleine-König @ 2024-03-06 17:50 UTC (permalink / raw)
  To: Jiri Kosina, Benjamin Tissoires
  Cc: linux-input, kernel, Jonathan Cameron, Srinivas Pandruvada,
	linux-iio, Maximilian Luz, platform-driver-x86

Hello,

this series converts all platform drivers below drivers/hid to use
struct platform_driver::remove_new(). See commit 5c5a7680e67b
("platform: Provide a remove callback that returns no value") for an
extended explanation and the eventual goal.

All conversations are trivial, because their .remove() callbacks
returned zero unconditionally.

There are no interdependencies between these patches, so they could be
picked up individually. But I'd hope that they get picked up all
together.

Best regards
Uwe

Uwe Kleine-König (3):
  HID: google: hammer: Convert to platform remove callback returning void
  HID: hid-sensor-custom: Convert to platform remove callback returning void
  HID: surface-hid: kbd: Convert to platform remove callback returning void

 drivers/hid/hid-google-hammer.c       | 5 ++---
 drivers/hid/hid-sensor-custom.c       | 8 +++-----
 drivers/hid/surface-hid/surface_kbd.c | 5 ++---
 3 files changed, 7 insertions(+), 11 deletions(-)

base-commit: 11afac187274a6177a7ac82997f8691c0f469e41
-- 
2.43.0


^ permalink raw reply

* [PATCH 2/3] HID: hid-sensor-custom: Convert to platform remove callback returning void
From: Uwe Kleine-König @ 2024-03-06 17:50 UTC (permalink / raw)
  To: Jiri Kosina, Benjamin Tissoires
  Cc: Jonathan Cameron, Srinivas Pandruvada, linux-input, linux-iio,
	kernel
In-Reply-To: <cover.1709747164.git.u.kleine-koenig@pengutronix.de>

The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is ignored (apart
from emitting a warning) and this typically results in resource leaks.

To improve here there is a quest to make the remove callback return
void. In the first step of this quest all drivers are converted to
.remove_new(), which already returns void. Eventually after all drivers
are converted, .remove_new() will be renamed to .remove().

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/hid/hid-sensor-custom.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid-sensor-custom.c
index d85398721659..de7287f3af61 100644
--- a/drivers/hid/hid-sensor-custom.c
+++ b/drivers/hid/hid-sensor-custom.c
@@ -1032,14 +1032,14 @@ static int hid_sensor_custom_probe(struct platform_device *pdev)
 	return ret;
 }
 
-static int hid_sensor_custom_remove(struct platform_device *pdev)
+static void hid_sensor_custom_remove(struct platform_device *pdev)
 {
 	struct hid_sensor_custom *sensor_inst = platform_get_drvdata(pdev);
 	struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
 
 	if (sensor_inst->custom_pdev) {
 		platform_device_unregister(sensor_inst->custom_pdev);
-		return 0;
+		return;
 	}
 
 	hid_sensor_custom_dev_if_remove(sensor_inst);
@@ -1047,8 +1047,6 @@ static int hid_sensor_custom_remove(struct platform_device *pdev)
 	sysfs_remove_group(&sensor_inst->pdev->dev.kobj,
 			   &enable_sensor_attr_group);
 	sensor_hub_remove_callback(hsdev, hsdev->usage);
-
-	return 0;
 }
 
 static const struct platform_device_id hid_sensor_custom_ids[] = {
@@ -1068,7 +1066,7 @@ static struct platform_driver hid_sensor_custom_platform_driver = {
 		.name	= KBUILD_MODNAME,
 	},
 	.probe		= hid_sensor_custom_probe,
-	.remove		= hid_sensor_custom_remove,
+	.remove_new	= hid_sensor_custom_remove,
 };
 module_platform_driver(hid_sensor_custom_platform_driver);
 
-- 
2.43.0


^ permalink raw reply related

* Re: [PATCH 2/3] HID: hid-sensor-custom: Convert to platform remove callback returning void
From: srinivas pandruvada @ 2024-03-06 18:40 UTC (permalink / raw)
  To: Uwe Kleine-König, Jiri Kosina, Benjamin Tissoires
  Cc: Jonathan Cameron, linux-input, linux-iio, kernel
In-Reply-To: <f4c8334ea1548d911862ede881ab0d90a408c156.1709747164.git.u.kleine-koenig@pengutronix.de>

On Wed, 2024-03-06 at 18:50 +0100, Uwe Kleine-König wrote:
> The .remove() callback for a platform driver returns an int which
> makes
> many driver authors wrongly assume it's possible to do error handling
> by
> returning an error code. However the value returned is ignored (apart
> from emitting a warning) and this typically results in resource
> leaks.
> 
> To improve here there is a quest to make the remove callback return
> void. In the first step of this quest all drivers are converted to
> .remove_new(), which already returns void. Eventually after all
> drivers
> are converted, .remove_new() will be renamed to .remove().
> 
> Trivially convert this driver from always returning zero in the
> remove
> callback to the void returning variant.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>


> ---
>  drivers/hid/hid-sensor-custom.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid-
> sensor-custom.c
> index d85398721659..de7287f3af61 100644
> --- a/drivers/hid/hid-sensor-custom.c
> +++ b/drivers/hid/hid-sensor-custom.c
> @@ -1032,14 +1032,14 @@ static int hid_sensor_custom_probe(struct
> platform_device *pdev)
>         return ret;
>  }
>  
> -static int hid_sensor_custom_remove(struct platform_device *pdev)
> +static void hid_sensor_custom_remove(struct platform_device *pdev)
>  {
>         struct hid_sensor_custom *sensor_inst =
> platform_get_drvdata(pdev);
>         struct hid_sensor_hub_device *hsdev = pdev-
> >dev.platform_data;
>  
>         if (sensor_inst->custom_pdev) {
>                 platform_device_unregister(sensor_inst->custom_pdev);
> -               return 0;
> +               return;
>         }
>  
>         hid_sensor_custom_dev_if_remove(sensor_inst);
> @@ -1047,8 +1047,6 @@ static int hid_sensor_custom_remove(struct
> platform_device *pdev)
>         sysfs_remove_group(&sensor_inst->pdev->dev.kobj,
>                            &enable_sensor_attr_group);
>         sensor_hub_remove_callback(hsdev, hsdev->usage);
> -
> -       return 0;
>  }
>  
>  static const struct platform_device_id hid_sensor_custom_ids[] = {
> @@ -1068,7 +1066,7 @@ static struct platform_driver
> hid_sensor_custom_platform_driver = {
>                 .name   = KBUILD_MODNAME,
>         },
>         .probe          = hid_sensor_custom_probe,
> -       .remove         = hid_sensor_custom_remove,
> +       .remove_new     = hid_sensor_custom_remove,
>  };
>  module_platform_driver(hid_sensor_custom_platform_driver);
>  


^ permalink raw reply

* [RESEND] Input: iqs7222 - add support for IQS7222D v1.1 and v1.2
From: Jeff LaBundy @ 2024-03-07  5:40 UTC (permalink / raw)
  To: jeff, dmitry.torokhov; +Cc: linux-input, jeff

The vendor has introduced two new revisions with slightly different
memory maps; update the driver to support them.

Fixes: dd24e202ac72 ("Input: iqs7222 - add support for Azoteq IQS7222D")
Signed-off-by: Jeff LaBundy <jeff@labundy.com>
---
 drivers/input/misc/iqs7222.c | 112 +++++++++++++++++++++++++++++++++++
 1 file changed, 112 insertions(+)

diff --git a/drivers/input/misc/iqs7222.c b/drivers/input/misc/iqs7222.c
index 36aeeae77611..9ca5a743f19f 100644
--- a/drivers/input/misc/iqs7222.c
+++ b/drivers/input/misc/iqs7222.c
@@ -620,6 +620,118 @@ static const struct iqs7222_dev_desc iqs7222_devs[] = {
 			},
 		},
 	},
+	{
+		.prod_num = IQS7222_PROD_NUM_D,
+		.fw_major = 1,
+		.fw_minor = 2,
+		.touch_link = 1770,
+		.allow_offset = 9,
+		.event_offset = 10,
+		.comms_offset = 11,
+		.reg_grps = {
+			[IQS7222_REG_GRP_STAT] = {
+				.base = IQS7222_SYS_STATUS,
+				.num_row = 1,
+				.num_col = 7,
+			},
+			[IQS7222_REG_GRP_CYCLE] = {
+				.base = 0x8000,
+				.num_row = 7,
+				.num_col = 2,
+			},
+			[IQS7222_REG_GRP_GLBL] = {
+				.base = 0x8700,
+				.num_row = 1,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_BTN] = {
+				.base = 0x9000,
+				.num_row = 14,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_CHAN] = {
+				.base = 0xA000,
+				.num_row = 14,
+				.num_col = 4,
+			},
+			[IQS7222_REG_GRP_FILT] = {
+				.base = 0xAE00,
+				.num_row = 1,
+				.num_col = 2,
+			},
+			[IQS7222_REG_GRP_TPAD] = {
+				.base = 0xB000,
+				.num_row = 1,
+				.num_col = 24,
+			},
+			[IQS7222_REG_GRP_GPIO] = {
+				.base = 0xC000,
+				.num_row = 3,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_SYS] = {
+				.base = IQS7222_SYS_SETUP,
+				.num_row = 1,
+				.num_col = 12,
+			},
+		},
+	},
+	{
+		.prod_num = IQS7222_PROD_NUM_D,
+		.fw_major = 1,
+		.fw_minor = 1,
+		.touch_link = 1774,
+		.allow_offset = 9,
+		.event_offset = 10,
+		.comms_offset = 11,
+		.reg_grps = {
+			[IQS7222_REG_GRP_STAT] = {
+				.base = IQS7222_SYS_STATUS,
+				.num_row = 1,
+				.num_col = 7,
+			},
+			[IQS7222_REG_GRP_CYCLE] = {
+				.base = 0x8000,
+				.num_row = 7,
+				.num_col = 2,
+			},
+			[IQS7222_REG_GRP_GLBL] = {
+				.base = 0x8700,
+				.num_row = 1,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_BTN] = {
+				.base = 0x9000,
+				.num_row = 14,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_CHAN] = {
+				.base = 0xA000,
+				.num_row = 14,
+				.num_col = 4,
+			},
+			[IQS7222_REG_GRP_FILT] = {
+				.base = 0xAE00,
+				.num_row = 1,
+				.num_col = 2,
+			},
+			[IQS7222_REG_GRP_TPAD] = {
+				.base = 0xB000,
+				.num_row = 1,
+				.num_col = 24,
+			},
+			[IQS7222_REG_GRP_GPIO] = {
+				.base = 0xC000,
+				.num_row = 3,
+				.num_col = 3,
+			},
+			[IQS7222_REG_GRP_SYS] = {
+				.base = IQS7222_SYS_SETUP,
+				.num_row = 1,
+				.num_col = 12,
+			},
+		},
+	},
 	{
 		.prod_num = IQS7222_PROD_NUM_D,
 		.fw_major = 0,
-- 
2.34.1


^ permalink raw reply related

* Re: [PATCH v3 2/3] dt-bindings: input: imagis: Document touch keys
From: Krzysztof Kozlowski @ 2024-03-07  8:11 UTC (permalink / raw)
  To: Duje Mihanović, Markuss Broks, Dmitry Torokhov, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Karel Balej, ~postmarketos/upstreaming, phone-devel, devicetree,
	linux-input, linux-kernel
In-Reply-To: <20240306-b4-imagis-keys-v3-2-2c429afa8420@skole.hr>

On 06/03/2024 15:40, Duje Mihanović wrote:
> IST3032C (and possibly some other models) has touch keys. Document this.
> 
> Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
> ---

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox