All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel
@ 2023-01-27 22:03 Walt Holman
  2023-01-27 22:06 ` Walt Holman
  0 siblings, 1 reply; 4+ messages in thread
From: Walt Holman @ 2023-01-27 22:03 UTC (permalink / raw)
  To: linux-input, linux-kernel, Mattijs Korpershoek

Hello,

This patch adds support for the Logitech G923 Xbox edition steering
wheel.

-Walt

diff -uprN linux-master-source/drivers/hid/hid-ids.h linux-master-target/drivers/hid/hid-ids.h
--- linux-master-source/drivers/hid/hid-ids.h	2023-01-27 15:18:14.000000000 -0600
+++ linux-master-target/drivers/hid/hid-ids.h	2023-01-27 15:50:24.077639994 -0600
@@ -819,6 +819,7 @@
  #define USB_DEVICE_ID_LOGITECH_G510_USB_AUDIO	0xc22e
  #define USB_DEVICE_ID_LOGITECH_G29_WHEEL	0xc24f
  #define USB_DEVICE_ID_LOGITECH_G920_WHEEL	0xc262
+#define USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL	0xc26e
  #define USB_DEVICE_ID_LOGITECH_WINGMAN_F3D	0xc283
  #define USB_DEVICE_ID_LOGITECH_FORCE3D_PRO	0xc286
  #define USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940	0xc287
diff -uprN linux-master-source/drivers/hid/hid-logitech-hidpp.c linux-master-target/drivers/hid/hid-logitech-hidpp.c
--- linux-master-source/drivers/hid/hid-logitech-hidpp.c	2023-01-27 15:18:14.000000000 -0600
+++ linux-master-target/drivers/hid/hid-logitech-hidpp.c	2023-01-27 15:50:24.077639994 -0600
@@ -4347,6 +4347,9 @@ static const struct hid_device_id hidpp_
  	{ /* Logitech G920 Wheel over USB */
  	  HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL),
  		.driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS},
+	{ /* Logitech G923 Wheel (Xbox version) over USB */
+	  HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL),
+		.driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS },
  	{ /* Logitech G Pro Gaming Mouse over USB */
  	  HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel
  2023-01-27 22:03 [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel Walt Holman
@ 2023-01-27 22:06 ` Walt Holman
  2023-02-06  9:51   ` Benjamin Tissoires
  0 siblings, 1 reply; 4+ messages in thread
From: Walt Holman @ 2023-01-27 22:06 UTC (permalink / raw)
  To: linux-input, linux-kernel, Mattijs Korpershoek

On 1/27/23 16:03, Walt Holman wrote:
> Hello,
> 
> This patch adds support for the Logitech G923 Xbox edition steering
> wheel.
> 
> -Walt
> 
> diff -uprN linux-master-source/drivers/hid/hid-ids.h linux-master-target/drivers/hid/hid-ids.h
> --- linux-master-source/drivers/hid/hid-ids.h    2023-01-27 15:18:14.000000000 -0600
> +++ linux-master-target/drivers/hid/hid-ids.h    2023-01-27 15:50:24.077639994 -0600
> @@ -819,6 +819,7 @@
>   #define USB_DEVICE_ID_LOGITECH_G510_USB_AUDIO    0xc22e
>   #define USB_DEVICE_ID_LOGITECH_G29_WHEEL    0xc24f
>   #define USB_DEVICE_ID_LOGITECH_G920_WHEEL    0xc262
> +#define USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL    0xc26e
>   #define USB_DEVICE_ID_LOGITECH_WINGMAN_F3D    0xc283
>   #define USB_DEVICE_ID_LOGITECH_FORCE3D_PRO    0xc286
>   #define USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940    0xc287
> diff -uprN linux-master-source/drivers/hid/hid-logitech-hidpp.c linux-master-target/drivers/hid/hid-logitech-hidpp.c
> --- linux-master-source/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:18:14.000000000 -0600
> +++ linux-master-target/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:50:24.077639994 -0600
> @@ -4347,6 +4347,9 @@ static const struct hid_device_id hidpp_
>       { /* Logitech G920 Wheel over USB */
>         HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL),
>           .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS},
> +    { /* Logitech G923 Wheel (Xbox version) over USB */
> +      HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL),
> +        .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS },
>       { /* Logitech G Pro Gaming Mouse over USB */
>         HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
> 
Signed off by: Walt Holman (waltholman09@gmail.com)


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel
  2023-01-27 22:06 ` Walt Holman
@ 2023-02-06  9:51   ` Benjamin Tissoires
  2023-02-07 21:42     ` Walt Holman
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Tissoires @ 2023-02-06  9:51 UTC (permalink / raw)
  To: Walt Holman; +Cc: linux-input, linux-kernel, Mattijs Korpershoek

Hi Walt,

On Jan 27 2023, Walt Holman wrote:
> On 1/27/23 16:03, Walt Holman wrote:
> > Hello,
> > 
> > This patch adds support for the Logitech G923 Xbox edition steering
> > wheel.
> > 
> > -Walt
> > 
> > diff -uprN linux-master-source/drivers/hid/hid-ids.h linux-master-target/drivers/hid/hid-ids.h
> > --- linux-master-source/drivers/hid/hid-ids.h    2023-01-27 15:18:14.000000000 -0600
> > +++ linux-master-target/drivers/hid/hid-ids.h    2023-01-27 15:50:24.077639994 -0600
> > @@ -819,6 +819,7 @@
> >   #define USB_DEVICE_ID_LOGITECH_G510_USB_AUDIO    0xc22e
> >   #define USB_DEVICE_ID_LOGITECH_G29_WHEEL    0xc24f
> >   #define USB_DEVICE_ID_LOGITECH_G920_WHEEL    0xc262
> > +#define USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL    0xc26e
> >   #define USB_DEVICE_ID_LOGITECH_WINGMAN_F3D    0xc283
> >   #define USB_DEVICE_ID_LOGITECH_FORCE3D_PRO    0xc286
> >   #define USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940    0xc287
> > diff -uprN linux-master-source/drivers/hid/hid-logitech-hidpp.c linux-master-target/drivers/hid/hid-logitech-hidpp.c
> > --- linux-master-source/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:18:14.000000000 -0600
> > +++ linux-master-target/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:50:24.077639994 -0600
> > @@ -4347,6 +4347,9 @@ static const struct hid_device_id hidpp_
> >       { /* Logitech G920 Wheel over USB */
> >         HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL),
> >           .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS},
> > +    { /* Logitech G923 Wheel (Xbox version) over USB */
> > +      HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL),
> > +        .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS },
> >       { /* Logitech G Pro Gaming Mouse over USB */
> >         HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
> > 
> Signed off by: Walt Holman (waltholman09@gmail.com)
> 

Thanks a lot for your submission. I wanted to quickly include it in the
kernel, but it seems that the patch is not following the standards:
- "git am" on your patch refuses to take it, saying it is corrupted
  (please use "git format-patch" to generate the proper patch format)
- your patch doesn't have a proper commit description:
  please add a description like "adds support for the Logitech G923 Xbox
  edition steering wheel in hid-logitech-hidpp. We get the same level
  of features than the regular G920". Or anything else as long as we get
  a sensible commit description.

As a general rule of thumb, please follow the doc at [1] to submit your
patches.

Cheers,
Benjamin

[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel
  2023-02-06  9:51   ` Benjamin Tissoires
@ 2023-02-07 21:42     ` Walt Holman
  0 siblings, 0 replies; 4+ messages in thread
From: Walt Holman @ 2023-02-07 21:42 UTC (permalink / raw)
  To: Benjamin Tissoires; +Cc: linux-input, linux-kernel, Mattijs Korpershoek

On 2/6/23 03:51, Benjamin Tissoires wrote:
> Hi Walt,
> 
> On Jan 27 2023, Walt Holman wrote:
>> On 1/27/23 16:03, Walt Holman wrote:
>>> Hello,
>>>
>>> This patch adds support for the Logitech G923 Xbox edition steering
>>> wheel.
>>>
>>> -Walt
>>>
>>> diff -uprN linux-master-source/drivers/hid/hid-ids.h linux-master-target/drivers/hid/hid-ids.h
>>> --- linux-master-source/drivers/hid/hid-ids.h    2023-01-27 15:18:14.000000000 -0600
>>> +++ linux-master-target/drivers/hid/hid-ids.h    2023-01-27 15:50:24.077639994 -0600
>>> @@ -819,6 +819,7 @@
>>>    #define USB_DEVICE_ID_LOGITECH_G510_USB_AUDIO    0xc22e
>>>    #define USB_DEVICE_ID_LOGITECH_G29_WHEEL    0xc24f
>>>    #define USB_DEVICE_ID_LOGITECH_G920_WHEEL    0xc262
>>> +#define USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL    0xc26e
>>>    #define USB_DEVICE_ID_LOGITECH_WINGMAN_F3D    0xc283
>>>    #define USB_DEVICE_ID_LOGITECH_FORCE3D_PRO    0xc286
>>>    #define USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940    0xc287
>>> diff -uprN linux-master-source/drivers/hid/hid-logitech-hidpp.c linux-master-target/drivers/hid/hid-logitech-hidpp.c
>>> --- linux-master-source/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:18:14.000000000 -0600
>>> +++ linux-master-target/drivers/hid/hid-logitech-hidpp.c    2023-01-27 15:50:24.077639994 -0600
>>> @@ -4347,6 +4347,9 @@ static const struct hid_device_id hidpp_
>>>        { /* Logitech G920 Wheel over USB */
>>>          HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL),
>>>            .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS},
>>> +    { /* Logitech G923 Wheel (Xbox version) over USB */
>>> +      HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL),
>>> +        .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS },
>>>        { /* Logitech G Pro Gaming Mouse over USB */
>>>          HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
>>>
>> Signed off by: Walt Holman (waltholman09@gmail.com)
>>
> 
> Thanks a lot for your submission. I wanted to quickly include it in the
> kernel, but it seems that the patch is not following the standards:
> - "git am" on your patch refuses to take it, saying it is corrupted
>    (please use "git format-patch" to generate the proper patch format)
> - your patch doesn't have a proper commit description:
>    please add a description like "adds support for the Logitech G923 Xbox
>    edition steering wheel in hid-logitech-hidpp. We get the same level
>    of features than the regular G920". Or anything else as long as we get
>    a sensible commit description.
> 
> As a general rule of thumb, please follow the doc at [1] to submit your
> patches.
> 
> Cheers,
> Benjamin
> 
> [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst
> 
Hello Benjamin. Sorry about the malformed patch. I used Thunderbird and evidently it mangled it. I've since setup a proper git environment and re-sent the patch just recently from git send-email. Hopefully that is clean and ready to apply. Thanks!

-Walt


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-07 21:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-27 22:03 [PATCH] HID: quirks: Add quirk for Logitech G923 Xbox steering wheel Walt Holman
2023-01-27 22:06 ` Walt Holman
2023-02-06  9:51   ` Benjamin Tissoires
2023-02-07 21:42     ` Walt Holman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.