The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: "Derek J. Clark" <derekjohn.clark@gmail.com>
To: Jiri Kosina <jikos@kernel.org>
Cc: Benjamin Tissoires <bentiss@kernel.org>,
	Mario Limonciello <mario.limonciello@amd.com>,
	Zhixin Zhang <zhangzx36@lenovo.com>,
	Mia Shao <shaohz1@lenovo.com>,
	Mark Pearson <mpearson-lenovo@squebb.ca>,
	"Pierre-Loup A . Griffais" <pgriffais@valvesoftware.com>,
	linux-input@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 02/16] HID: hid-lenovo-go: Add Lenovo Legion Go Series HID Driver
Date: Mon, 12 Jan 2026 09:40:09 -0800	[thread overview]
Message-ID: <6BB4F74A-F440-4F21-B094-62CFD18C599A@gmail.com> (raw)
In-Reply-To: <0on4p9s6-7512-9408-49no-3292o86113r3@xreary.bet>

On January 12, 2026 4:12:43 AM PST, Jiri Kosina <jikos@kernel.org> wrote:
>On Mon, 29 Dec 2025, Derek J. Clark wrote:
>
>> Adds initial framework for a new HID driver, hid-lenovo-go, along with
>> attributes that report the firmware and hardware version for each
>> component of the HID device, of which there are 4 parts: The MCU, the
>> transmission dongle, the left "handle" controller half, and the right
>> "handle" controller half. Each of these devices are provided an attribute
>> group to contain its device specific attributes. Additionally, the touchpad
>> device attributes are logically separated from the other components in
>> another attribute group.
>> 
>> This driver primarily provides access to the configurable settings of the
>> Lenovo Legion Go and Lenovo Legion Go 2 controllers running the latest
>> firmware. As previously noted, the Legion Go controllers recently had a
>> firmware update[1] which switched from the original "SepentiaUSB" protocol
>> to a brand new protocol for the Go 2, primarily to ensure backwards and
>> forwards compatibility between the Go and Go 2 devices. As part of that
>> update the PIDs for the controllers were changed, so there is no risk of
>> this driver attaching to controller firmware that it doesn't support.
>> 
>> Signed-off-by: Derek J. Clark <derekjohn.clark@gmail.com>
>> ---
>>  MAINTAINERS                 |   6 +
>>  drivers/hid/Kconfig         |  12 +
>>  drivers/hid/Makefile        |   1 +
>>  drivers/hid/hid-ids.h       |   3 +
>>  drivers/hid/hid-lenovo-go.c | 734 ++++++++++++++++++++++++++++++++++++
>>  5 files changed, 756 insertions(+)
>>  create mode 100644 drivers/hid/hid-lenovo-go.c
>> 
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 9ed6d11a7746..b5ad29d24e3e 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -14135,6 +14135,12 @@ L:	platform-driver-x86@vger.kernel.org
>>  S:	Maintained
>>  F:	drivers/platform/x86/lenovo/wmi-hotkey-utilities.c
>>  
>> +LENOVO HID drivers
>> +M:	Derek J. Clark <derekjohn.clark@gmail.com>
>> +L:	linux-input@vger.kernel.org
>> +S:	Maintained
>> +F:	drivers/hid/hid-lenovo-go.c
>
>Hi Derek,
>
>thanks for working on this.
>
>I am now almost finished with reviewing this pile and am planning to queue 
>it in hid.git shortly, but I have a question regarding the MAINTAINERS 
>entry above.
>
>The title claims support for all of Lenovo HID, but there is much more to 
>it than drivers/hid/hid-lenovo-go.c, specifically in hid-lenovo.c.
>
>So either please make the title more specific (or claim the ownership of 
>the whole Lenovo HID landscape indeed, fine by me, but the please reflect 
>that in F: :) ).
>
>Thanks,
>

Hi Jiri

Sure, I've debated using LENOVO LEGION GO HID drivers and LENOVO GO HID drivers. Do you have a preference? The other drivers are pretty old and I don't have any hardware that would use them so I'd prefer to keep them separate (though I'll acknowledge that they don't seem to have a MAINTAINERS entry)

I also need to fix the ABI docs, I accidentally added an extra + character to every line in the patch for both. I'll update that too when I fix this.

Thanks,
Derek

  reply	other threads:[~2026-01-12 17:40 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-29  3:17 [PATCH v2 00/16] HID: Add Legion Go and Go S Drivers Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 01/16] include: device.h: Add named device attributes Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 02/16] HID: hid-lenovo-go: Add Lenovo Legion Go Series HID Driver Derek J. Clark
2026-01-12 12:12   ` Jiri Kosina
2026-01-12 17:40     ` Derek J. Clark [this message]
2026-01-12 18:20       ` Mark Pearson
2026-01-21  9:08         ` Jiri Kosina
2026-01-21 13:16           ` Derek J. Clark
2026-01-21 16:44             ` Mark Pearson
2025-12-29  3:17 ` [PATCH v2 03/16] HID: hid-lenovo-go: Add Feature Status Attributes Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 04/16] HID: hid-lenovo-go: Add Rumble and Haptic Settings Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 05/16] HID: hid-lenovo-go: Add FPS Mode DPI settings Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 06/16] HID: hid-lenovo-go: Add RGB LED control interface Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 07/16] HID: hid-lenovo-go: Add Calibration Settings Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 08/16] HID: hid-lenovo-go: Add OS Mode Toggle Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 09/16] HID: Include firmware version in the uevent Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 10/16] HID: hid-lenovo-go-s: Add Lenovo Legion Go S Series HID Driver Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 11/16] HID: hid-lenovo-go-s: Add MCU ID Attribute Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 12/16] HID: hid-lenovo-go-s: Add Feature Status Attributes Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 13/16] HID: hid-lenovo-go-s: Add Touchpad Mode Attributes Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 14/16] HID: hid-lenovo-go-s: Add RGB LED control interface Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 15/16] HID: hid-lenovo-go-s: Add IMU and Touchpad RO Attributes Derek J. Clark
2025-12-29  3:17 ` [PATCH v2 16/16] HID: Add documentation for Lenovo Legion Go drivers Derek J. Clark

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=6BB4F74A-F440-4F21-B094-62CFD18C599A@gmail.com \
    --to=derekjohn.clark@gmail.com \
    --cc=bentiss@kernel.org \
    --cc=jikos@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=mpearson-lenovo@squebb.ca \
    --cc=pgriffais@valvesoftware.com \
    --cc=shaohz1@lenovo.com \
    --cc=zhangzx36@lenovo.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