From: Hans de Goede <hdegoede@redhat.com>
To: "Mark Pearson" <mpearson-lenovo@squebb.ca>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Andy Shevchenko" <andy@kernel.org>,
"Henrique de Moraes Holschuh" <hmh@hmh.eng.br>
Cc: Vishnu Sankar <vishnuocv@gmail.com>,
Nitin Joshi1 <njoshi1@lenovo.com>,
ibm-acpi-devel@lists.sourceforge.net,
"platform-driver-x86@vger.kernel.org"
<platform-driver-x86@vger.kernel.org>
Subject: Re: [PATCH 08/24] platform/x86: thinkpad_acpi: Move adaptive kbd event handling to tpacpi_driver_event()
Date: Tue, 23 Apr 2024 15:53:13 +0200 [thread overview]
Message-ID: <e3375639-a315-4e0e-b43e-a5003cc7d6fb@redhat.com> (raw)
In-Reply-To: <be2db1e4-159f-4b69-a07e-70e8e04fb5c3@app.fastmail.com>
Hi Mark,
On 4/23/24 2:15 PM, Mark Pearson wrote:
> Hi Hans
>
> On Tue, Apr 23, 2024, at 4:35 AM, Hans de Goede wrote:
>> Hi Mark,
>>
>> On 4/22/24 9:27 PM, Mark Pearson wrote:
>>> Hi Hans,
>>>
>>> On Sun, Apr 21, 2024, at 11:45 AM, Hans de Goede wrote:
>>>> Factor out the adaptive kbd non hotkey event handling into
>>>> adaptive_keyboard_change_row() and adaptive_keyboard_s_quickview_row()
>>>> helpers and move the handling of TP_HKEY_EV_DFR_CHANGE_ROW and
>>>> TP_HKEY_EV_DFR_S_QUICKVIEW_ROW to tpacpi_driver_event().
>>>>
>>>> This groups all the handling of hotkey events which do not emit
>>>> a key press event together in tpacpi_driver_event().
>>>>
>>>> This is a preparation patch for moving to sparse-keymaps.
>>>>
>>>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>>>> ---
>>>> drivers/platform/x86/thinkpad_acpi.c | 85 +++++++++++++++-------------
>>>> 1 file changed, 45 insertions(+), 40 deletions(-)
>>>>
>>>> diff --git a/drivers/platform/x86/thinkpad_acpi.c
>>>> b/drivers/platform/x86/thinkpad_acpi.c
>>>> index 0bbc462d604c..e8d30f4af126 100644
>>>> --- a/drivers/platform/x86/thinkpad_acpi.c
>>>> +++ b/drivers/platform/x86/thinkpad_acpi.c
>>>> @@ -3677,51 +3677,50 @@ static int adaptive_keyboard_get_next_mode(int
>>>> mode)
>>>> return adaptive_keyboard_modes[i];
>>>> }
>>>>
>>>> +static void adaptive_keyboard_change_row(void)
>>>> +{
>>>> + int mode;
>>>> +
>>>> + if (adaptive_keyboard_mode_is_saved) {
>>>> + mode = adaptive_keyboard_prev_mode;
>>>> + adaptive_keyboard_mode_is_saved = false;
>>>> + } else {
>>>> + mode = adaptive_keyboard_get_mode();
>>>> + if (mode < 0)
>>>> + return;
>>>> + mode = adaptive_keyboard_get_next_mode(mode);
>>>> + }
>>>> +
>>>> + adaptive_keyboard_set_mode(mode);
>>>> +}
>>>> +
>>>> +static void adaptive_keyboard_s_quickview_row(void)
>>>> +{
>>>> + int mode = adaptive_keyboard_get_mode();
>>>> +
>>>> + if (mode < 0)
>>>> + return;
>>>> +
>>>> + adaptive_keyboard_prev_mode = mode;
>>>> + adaptive_keyboard_mode_is_saved = true;
>>>> +
>>>> + adaptive_keyboard_set_mode(FUNCTION_MODE);
>>>> +}
>>>> +
>>>> static bool adaptive_keyboard_hotkey_notify_hotkey(const u32 hkey)
>>>> {
>>>> - int current_mode = 0;
>>>> - int new_mode = 0;
>>>> -
>>>> - switch (hkey) {
>>>> - case TP_HKEY_EV_DFR_CHANGE_ROW:
>>>> - if (adaptive_keyboard_mode_is_saved) {
>>>> - new_mode = adaptive_keyboard_prev_mode;
>>>> - adaptive_keyboard_mode_is_saved = false;
>>>> - } else {
>>>> - current_mode = adaptive_keyboard_get_mode();
>>>> - if (current_mode < 0)
>>>> - return false;
>>>> - new_mode = adaptive_keyboard_get_next_mode(
>>>> - current_mode);
>>>> - }
>>>> -
>>>> - if (adaptive_keyboard_set_mode(new_mode) < 0)
>>>> - return false;
>>>> -
>>>> + if (tpacpi_driver_event(hkey))
>>>> return true;
>>>>
>>>> - case TP_HKEY_EV_DFR_S_QUICKVIEW_ROW:
>>>> - current_mode = adaptive_keyboard_get_mode();
>>>> - if (current_mode < 0)
>>>> - return false;
>>>> -
>>>> - adaptive_keyboard_prev_mode = current_mode;
>>>> - adaptive_keyboard_mode_is_saved = true;
>>>> -
>>>> - if (adaptive_keyboard_set_mode (FUNCTION_MODE) < 0)
>>>> - return false;
>>>> - return true;
>>>> -
>>>> - default:
>>>> - if (hkey < TP_HKEY_EV_ADAPTIVE_KEY_START ||
>>>> - hkey > TP_HKEY_EV_ADAPTIVE_KEY_END) {
>>>> - pr_info("Unhandled adaptive keyboard key: 0x%x\n", hkey);
>>>> - return false;
>>>> - }
>>>> - tpacpi_input_send_key(hkey - TP_HKEY_EV_ADAPTIVE_KEY_START +
>>>> - TP_ACPI_HOTKEYSCAN_ADAPTIVE_START);
>>>> - return true;
>>>> + if (hkey < TP_HKEY_EV_ADAPTIVE_KEY_START ||
>>>> + hkey > TP_HKEY_EV_ADAPTIVE_KEY_END) {
>>>> + pr_info("Unhandled adaptive keyboard key: 0x%x\n", hkey);
>>>> + return false;
>>>> }
>>>> +
>>>> + tpacpi_input_send_key(hkey - TP_HKEY_EV_ADAPTIVE_KEY_START +
>>>> + TP_ACPI_HOTKEYSCAN_ADAPTIVE_START);
>>>> + return true;
>>>> }
>>>>
>>>> static bool hotkey_notify_extended_hotkey(const u32 hkey)
>>>> @@ -11117,6 +11116,12 @@ static bool tpacpi_driver_event(const unsigned
>>>> int hkey_event)
>>>> }
>>>> /* Key events are suppressed by default hotkey_user_mask */
>>>> return false;
>>>> + case TP_HKEY_EV_DFR_CHANGE_ROW:
>>>> + adaptive_keyboard_change_row();
>>>> + return true;
>>>> + case TP_HKEY_EV_DFR_S_QUICKVIEW_ROW:
>>>> + adaptive_keyboard_s_quickview_row();
>>>
>>> Was there a reason to get rid of error handling that was previously done with adaptive_keyboard_set_mode and is now not used here?
>>
>> The error handling consisted of returning false instead of true
>> (for known_ev), causing an unknown event message to get logged on
>> top of the error already logged by adaptive_keyboard_get_mode() /
>> adaptive_keyboard_set_mode().
>>
>> This second unknown event error is consfusin / not helpful so
>> I've dropped the "return false" on error behavior, note that
>> the new helpers do still return early if get_mode() fails just
>> as before.
>>
>> I'll add a note about this to the commit message for v2 of
>> the series.
>>
> Thanks for the explanation - makes sense.
>
> Reviwed-by: Mark Pearson <mpearson-lenovo@squebb.ca>
>
> As a note - I've been working my way thru the patches. Is it OK to send one Reviewed-by at the end for all the patches for which I had no questions, or is it better to ack each one individually?
One Reviewed-by for the series when you're done (with possible
exception for some patches you have outstanding remarks for)
is fine.
Regards,
Hans
next prev parent reply other threads:[~2024-04-23 13:53 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-21 15:44 [PATCH 00/24] platform/x86: thinkpad_acpi: Refactor hotkey handling and add support for some new hotkeys Hans de Goede
2024-04-21 15:44 ` [PATCH 01/24] platform/x86: thinkpad_acpi: Take hotkey_mutex during hotkey_exit() Hans de Goede
2024-04-21 15:44 ` [PATCH 02/24] platform/x86: thinkpad_acpi: Provide hotkey_poll_stop_sync() dummy Hans de Goede
2024-04-21 15:44 ` [PATCH 03/24] platform/x86: thinkpad_acpi: Drop setting send_/ignore_acpi_ev defaults twice Hans de Goede
2024-04-22 8:07 ` Ilpo Järvinen
2024-04-22 8:11 ` Andy Shevchenko
2024-04-22 8:24 ` Ilpo Järvinen
2024-04-23 14:00 ` Hans de Goede
2024-04-21 15:45 ` [PATCH 04/24] platform/x86: thinkpad_acpi: Drop ignore_acpi_ev Hans de Goede
2024-04-21 15:45 ` [PATCH 05/24] platform/x86: thinkpad_acpi: Use tpacpi_input_send_key() in adaptive kbd code Hans de Goede
2024-04-22 8:11 ` Ilpo Järvinen
2024-04-21 15:45 ` [PATCH 06/24] platform/x86: thinkpad_acpi: Do hkey to scancode translation later Hans de Goede
2024-04-21 15:45 ` [PATCH 07/24] platform/x86: thinkpad_acpi: Make tpacpi_driver_event() return if it handled the event Hans de Goede
2024-04-21 15:45 ` [PATCH 08/24] platform/x86: thinkpad_acpi: Move adaptive kbd event handling to tpacpi_driver_event() Hans de Goede
2024-04-22 8:29 ` Ilpo Järvinen
2024-04-22 11:35 ` Andy Shevchenko
2024-04-23 14:03 ` Hans de Goede
2024-04-22 19:27 ` Mark Pearson
2024-04-23 8:35 ` Hans de Goede
2024-04-23 12:15 ` Mark Pearson
2024-04-23 13:53 ` Hans de Goede [this message]
2024-04-21 15:45 ` [PATCH 09/24] platform/x86: thinkpad_acpi: Move special original hotkeys handling out of switch-case Hans de Goede
2024-04-21 15:45 ` [PATCH 10/24] platform/x86: thinkpad_acpi: Move hotkey_user_mask check to tpacpi_input_send_key() Hans de Goede
2024-04-21 15:45 ` [PATCH 11/24] platform/x86: thinkpad_acpi: Always call tpacpi_driver_event() for hotkeys Hans de Goede
2024-04-21 15:45 ` [PATCH 12/24] platform/x86: thinkpad_acpi: Drop tpacpi_input_send_key_masked() and hotkey_driver_event() Hans de Goede
2024-04-21 15:45 ` [PATCH 13/24] platform/x86: thinkpad_acpi: Move hkey > scancode mapping to tpacpi_input_send_key() Hans de Goede
2024-04-21 15:45 ` [PATCH 14/24] platform/x86: thinkpad_acpi: Move tpacpi_driver_event() call " Hans de Goede
2024-04-21 15:45 ` [PATCH 15/24] platform/x86: thinkpad_acpi: Do not send ACPI netlink events for unknown hotkeys Hans de Goede
2024-04-21 15:45 ` [PATCH 16/24] platform/x86: thinkpad_acpi: Change hotkey_reserved_mask initialization Hans de Goede
2024-04-21 15:45 ` [PATCH 17/24] platform/x86: thinkpad_acpi: Use correct keycodes for volume and brightness keys Hans de Goede
2024-04-21 19:11 ` Andy Shevchenko
2024-04-23 14:06 ` Hans de Goede
2024-04-21 15:45 ` [PATCH 18/24] platform/x86: thinkpad_acpi: Drop KEY_RESERVED special handling Hans de Goede
2024-04-21 15:45 ` [PATCH 19/24] platform/x86: thinkpad_acpi: Switch to using sparse-keymap helpers Hans de Goede
2024-04-21 15:45 ` [PATCH 20/24] platform/x86: thinkpad_acpi: Add mappings for adaptive kbd clipping-tool and cloud keys Hans de Goede
2024-04-21 15:45 ` [PATCH 21/24] platform/x86: thinkpad_acpi: Simplify known_ev handling Hans de Goede
2024-04-21 15:45 ` [PATCH 22/24] platform/x86: thinkpad_acpi: Support for trackpoint doubletap Hans de Goede
2024-04-21 15:45 ` [PATCH 23/24] platform/x86: thinkpad_acpi: Support for system debug info hotkey Hans de Goede
2024-04-21 15:45 ` [PATCH 24/24] platform/x86: thinkpad_acpi: Support hotkey to disable trackpoint doubletap Hans de Goede
2024-04-21 17:17 ` [PATCH 00/24] platform/x86: thinkpad_acpi: Refactor hotkey handling and add support for some new hotkeys Mark Pearson
2024-04-22 0:36 ` [ibm-acpi-devel] " Mark Pearson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e3375639-a315-4e0e-b43e-a5003cc7d6fb@redhat.com \
--to=hdegoede@redhat.com \
--cc=andy@kernel.org \
--cc=hmh@hmh.eng.br \
--cc=ibm-acpi-devel@lists.sourceforge.net \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=mpearson-lenovo@squebb.ca \
--cc=njoshi1@lenovo.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=vishnuocv@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox