linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] HID: logitech: Add MX Master 3 Mouse
@ 2019-10-25 20:59 Adrian Freund
  2019-10-27 17:51 ` Mazin Rezk
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Freund @ 2019-10-25 20:59 UTC (permalink / raw)
  To: linux-input; +Cc: Benjamin Tissoires, Adrian Freund

This patch adds support for the Logitech MX Master 3 Mouse using the
Logitech Unifying Receiver and Bluetooth LE.

Signed-off-by: Adrian Freund <adrian@freund.io>
---
v3:
  - rebased on top of https://patchwork.kernel.org/project/linux-input/list/?series=190445
  - Added bluetooth id

v2:
  - added Signed-off-by line
---
 drivers/hid/hid-logitech-hidpp.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c
index 23baf9b09c48..74f2517d88d5 100644
--- a/drivers/hid/hid-logitech-hidpp.c
+++ b/drivers/hid/hid-logitech-hidpp.c
@@ -3793,6 +3793,8 @@ static const struct hid_device_id hidpp_devices[] = {
 	{ LDJ_DEVICE(0x4071), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
 	{ /* Mouse Logitech MX Master 2S */
 	  LDJ_DEVICE(0x4069), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
+	{ /* Mouse Logitech MX Master 3 */
+	  LDJ_DEVICE(0x4082), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
 	{ /* Mouse Logitech Performance MX */
 	  LDJ_DEVICE(0x101a), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_1P0 },
 	{ /* Keyboard logitech K400 */
@@ -3854,6 +3856,9 @@ static const struct hid_device_id hidpp_devices[] = {
 	  .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01e),
 	  .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
+	{ /* MX Master 3 mouse over Bluetooth */
+	  HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb023),
+	  .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
 	{}
 };
 
-- 
2.23.0


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

* Re: [PATCH v3] HID: logitech: Add MX Master 3 Mouse
  2019-10-25 20:59 [PATCH v3] HID: logitech: Add MX Master 3 Mouse Adrian Freund
@ 2019-10-27 17:51 ` Mazin Rezk
  2019-12-18 15:51   ` Benjamin Tissoires
  0 siblings, 1 reply; 3+ messages in thread
From: Mazin Rezk @ 2019-10-27 17:51 UTC (permalink / raw)
  To: Adrian Freund; +Cc: linux-input, Benjamin Tissoires, mnrzk

On Friday, October 25, 2019 4:59 PM, Adrian Freund <adrian@freund.io> wrote:

> This patch adds support for the Logitech MX Master 3 Mouse using the
> Logitech Unifying Receiver and Bluetooth LE.
>
> Signed-off-by: Adrian Freund adrian@freund.io
>
> v3:
>
> -   rebased on top of https://patchwork.kernel.org/project/linux-input/list/?series=190445

I have updated this series over here:
https://patchwork.kernel.org/project/linux-input/list/?series=194201

However, the update only squashed two commits within the series so nothing
needs to be done here.

Thanks,
Mazin

> -   Added bluetooth id
>
>     v2:
>
> -   added Signed-off-by line
>
> drivers/hid/hid-logitech-hidpp.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c
> index 23baf9b09c48..74f2517d88d5 100644
> --- a/drivers/hid/hid-logitech-hidpp.c
> +++ b/drivers/hid/hid-logitech-hidpp.c
> @@ -3793,6 +3793,8 @@ static const struct hid_device_id hidpp_devices[] = {
> { LDJ_DEVICE(0x4071), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> { /* Mouse Logitech MX Master 2S */
> LDJ_DEVICE(0x4069), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
>
> -   { /* Mouse Logitech MX Master 3 */
> -       LDJ_DEVICE(0x4082), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
>
>
>     { /* Mouse Logitech Performance MX/
>     LDJ_DEVICE(0x101a), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_1P0 },
>     { / Keyboard logitech K400 */@@ -3854,6 +3856,9 @@ static const struct hid_device_id hidpp_devices[] = {
>     .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
>     { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01e),
>     .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
>
> -   { /* MX Master 3 mouse over Bluetooth */
> -       HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb023),
>
>
> -       .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
>
>
>     {}
>     };
>
>     --
>     2.23.0
>



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

* Re: [PATCH v3] HID: logitech: Add MX Master 3 Mouse
  2019-10-27 17:51 ` Mazin Rezk
@ 2019-12-18 15:51   ` Benjamin Tissoires
  0 siblings, 0 replies; 3+ messages in thread
From: Benjamin Tissoires @ 2019-12-18 15:51 UTC (permalink / raw)
  To: Mazin Rezk; +Cc: Adrian Freund, linux-input

On Sun, Oct 27, 2019 at 6:51 PM Mazin Rezk <mnrzk@protonmail.com> wrote:
>
> On Friday, October 25, 2019 4:59 PM, Adrian Freund <adrian@freund.io> wrote:
>
> > This patch adds support for the Logitech MX Master 3 Mouse using the
> > Logitech Unifying Receiver and Bluetooth LE.
> >
> > Signed-off-by: Adrian Freund adrian@freund.io
> >
> > v3:
> >
> > -   rebased on top of https://patchwork.kernel.org/project/linux-input/list/?series=190445
>
> I have updated this series over here:
> https://patchwork.kernel.org/project/linux-input/list/?series=194201
>
> However, the update only squashed two commits within the series so nothing
> needs to be done here.

Yep, thanks both of you.

Applied to for-5.6/logitech, sorry for the delay.

Cheers,
Benjamin

>
> Thanks,
> Mazin
>
> > -   Added bluetooth id
> >
> >     v2:
> >
> > -   added Signed-off-by line
> >
> > drivers/hid/hid-logitech-hidpp.c | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
> > diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c
> > index 23baf9b09c48..74f2517d88d5 100644
> > --- a/drivers/hid/hid-logitech-hidpp.c
> > +++ b/drivers/hid/hid-logitech-hidpp.c
> > @@ -3793,6 +3793,8 @@ static const struct hid_device_id hidpp_devices[] = {
> > { LDJ_DEVICE(0x4071), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> > { /* Mouse Logitech MX Master 2S */
> > LDJ_DEVICE(0x4069), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> >
> > -   { /* Mouse Logitech MX Master 3 */
> > -       LDJ_DEVICE(0x4082), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> >
> >
> >     { /* Mouse Logitech Performance MX/
> >     LDJ_DEVICE(0x101a), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_1P0 },
> >     { / Keyboard logitech K400 */@@ -3854,6 +3856,9 @@ static const struct hid_device_id hidpp_devices[] = {
> >     .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> >     { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01e),
> >     .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> >
> > -   { /* MX Master 3 mouse over Bluetooth */
> > -       HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb023),
> >
> >
> > -       .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
> >
> >
> >     {}
> >     };
> >
> >     --
> >     2.23.0
> >
>
>


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

end of thread, other threads:[~2019-12-18 15:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-25 20:59 [PATCH v3] HID: logitech: Add MX Master 3 Mouse Adrian Freund
2019-10-27 17:51 ` Mazin Rezk
2019-12-18 15:51   ` Benjamin Tissoires

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).