Commit 95f38fd4 authored by Stefan Brüns's avatar Stefan Brüns Committed by Darren Hart (VMware)
Browse files

platform/x86: intel-vbtn: Support separate press/release events



Currently all key events use autorelease, but this forbids use as a
modifier key.

As all event codes come in even/odd pairs, we can lookup the key type
(KE_KEY/KE_IGNORE) for the key up event corresponding to the currently
handled key down event. If the key up is ignored, we keep setting the
autorelease flag for the key down.

Signed-off-by: default avatarStefan Brüns <stefan.bruens@rwth-aachen.de>
Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
parent 1c828496
Loading
Loading
Loading
Loading
+15 −2
Original line number Diff line number Diff line
@@ -76,13 +76,26 @@ static void notify_handler(acpi_handle handle, u32 event, void *context)
{
	struct platform_device *device = context;
	struct intel_vbtn_priv *priv = dev_get_drvdata(&device->dev);
	const struct key_entry *ke_rel;
	bool autorelease;

	if (priv->wakeup_mode) {
		if (sparse_keymap_entry_from_scancode(priv->input_dev, event)) {
			pm_wakeup_hard_event(&device->dev);
			return;
		}
	} else if (sparse_keymap_report_event(priv->input_dev, event, 1, true)) {
	} else {
		/* Use the fact press/release come in even/odd pairs */
		if ((event & 1) && sparse_keymap_report_event(priv->input_dev,
							      event, 0, false))
			return;

		ke_rel = sparse_keymap_entry_from_scancode(priv->input_dev,
							   event | 1);
		autorelease = !ke_rel || ke_rel->type == KE_IGNORE;

		if (sparse_keymap_report_event(priv->input_dev, event, 1,
					       autorelease))
			return;
	}
	dev_dbg(&device->dev, "unknown event index 0x%x\n", event);