From patchwork Sun Mar 4 22:14:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florent Flament X-Patchwork-Id: 10257853 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B8D7260467 for ; Sun, 4 Mar 2018 22:21:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A0E8D2883A for ; Sun, 4 Mar 2018 22:21:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9557028848; Sun, 4 Mar 2018 22:21:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0480C28841 for ; Sun, 4 Mar 2018 22:21:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932083AbeCDWVW (ORCPT ); Sun, 4 Mar 2018 17:21:22 -0500 Received: from 3.mo7.mail-out.ovh.net ([46.105.34.113]:41085 "EHLO 3.mo7.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752067AbeCDWVT (ORCPT ); Sun, 4 Mar 2018 17:21:19 -0500 X-Greylist: delayed 17117 seconds by postgrey-1.27 at vger.kernel.org; Sun, 04 Mar 2018 17:21:19 EST Received: from player793.ha.ovh.net (unknown [10.109.122.11]) by mo7.mail-out.ovh.net (Postfix) with ESMTP id DB597912A9 for ; Sun, 4 Mar 2018 23:15:06 +0100 (CET) Received: from localhost.localdomain (206.81.15.93.rev.sfr.net [93.15.81.206]) (Authenticated sender: contact@florentflament.com) by player793.ha.ovh.net (Postfix) with ESMTPSA id 906D64009E; Sun, 4 Mar 2018 23:15:00 +0100 (CET) From: Florent Flament To: andy.shevchenko@gmail.com Cc: jikos@kernel.org, benjamin.tissoires@redhat.com, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, Florent Flament Subject: [PATCH v2 1/1] HID: Logitech K290: Add driver for the Logitech K290 USB keyboard Date: Sun, 4 Mar 2018 23:14:25 +0100 Message-Id: <20180304221425.28611-2-contact@florentflament.com> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20180304221425.28611-1-contact@florentflament.com> References: <20180304170004.26553-1-contact@florentflament.com> <20180304221425.28611-1-contact@florentflament.com> X-Ovh-Tracer-Id: 8064258084115348127 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedtfedrjeehgdduheekucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecufedttdenuc Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP With the generic HID driver, K290 keyboards' F1 to F12 keys send multimedia events by default, and standard keycodes when the function key is pressed. This driver allows to configure K290 keyboards, so that F1 to F12 have a standard behavior and send multimedia events when the function key is pressed. The keyboard mode is set through the fn_mode module parameter: when set to 1 (default setting) the keyboard behaves as with the generic HID driver, when set to 0 the keyboard is configured to work as standard keyboards. Signed-off-by: Florent Flament --- drivers/hid/Kconfig | 18 ++++++++ drivers/hid/Makefile | 1 + drivers/hid/hid-ids.h | 1 + drivers/hid/hid-logitech-k290.c | 100 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 120 insertions(+) create mode 100644 drivers/hid/hid-logitech-k290.c diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 19c499f5623d..6686da8daac6 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -488,6 +488,24 @@ config HID_LOGITECH_HIDPP T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar Keyboard). +config HID_LOGITECH_K290 + tristate "Logitech K290 Keyboard support" + depends on USB_HID + ---help--- + This enhances support of Logitech K290 keyboards. + + With the generic HID driver, K290 keyboards' F1 to F12 keys + send multimedia events by default, and standard keycodes when + the function key is pressed. This driver allows to configure + K290 keyboards, so that F1 to F12 have a standard behavior and + send multimedia events when the function key is pressed. The + keyboard mode is set through the fn_mode module parameter: + when set to 1 (default setting) the keyboard behaves as with + the generic HID driver, when set to 0 the keyboard is + configured to work as standard keyboards. + + Say Y if you have a Logitech K290 keyboard. + config LOGITECH_FF bool "Logitech force feedback support" depends on HID_LOGITECH diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index eb13b9e92d85..78079d3a5d58 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -61,6 +61,7 @@ obj-$(CONFIG_HID_LENOVO) += hid-lenovo.o obj-$(CONFIG_HID_LOGITECH) += hid-logitech.o obj-$(CONFIG_HID_LOGITECH_DJ) += hid-logitech-dj.o obj-$(CONFIG_HID_LOGITECH_HIDPP) += hid-logitech-hidpp.o +obj-$(CONFIG_HID_LOGITECH_K290) += hid-logitech-k290.o obj-$(CONFIG_HID_MAGICMOUSE) += hid-magicmouse.o obj-$(CONFIG_HID_MAYFLASH) += hid-mf.o obj-$(CONFIG_HID_MICROSOFT) += hid-microsoft.o diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 9454ac134ce2..68caba7e666c 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -693,6 +693,7 @@ #define USB_DEVICE_ID_LOGITECH_HARMONY_LAST 0xc14f #define USB_DEVICE_ID_LOGITECH_HARMONY_PS3 0x0306 #define USB_DEVICE_ID_LOGITECH_KEYBOARD_G710_PLUS 0xc24d +#define USB_DEVICE_ID_LOGITECH_KEYBOARD_K290 0xc31f #define USB_DEVICE_ID_LOGITECH_MOUSE_C01A 0xc01a #define USB_DEVICE_ID_LOGITECH_MOUSE_C05A 0xc05a #define USB_DEVICE_ID_LOGITECH_MOUSE_C06A 0xc06a diff --git a/drivers/hid/hid-logitech-k290.c b/drivers/hid/hid-logitech-k290.c new file mode 100644 index 000000000000..36fdb5838842 --- /dev/null +++ b/drivers/hid/hid-logitech-k290.c @@ -0,0 +1,100 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * HID driver for Logitech K290 keyboard + * + * Copyright (c) 2018 Florent Flament + * + * This drivers allows to configure the K290 keyboard's function key + * behaviour (whether function mode is activated or not by default). + * + * Logitech custom commands taken from Marcus Ilgner k290-fnkeyctl + * (https://github.com/milgner/k290-fnkeyctl): + * K290_SET_FUNCTION_CMD + * K290_SET_FUNCTION_VAL + * K290_SET_FUNCTION_OFF + * K290_SET_FUNCTION_ON + * + * Based on hid-accutouch.c and hid-elo.c + */ + +#include +#include +#include +#include +#include +#include + +#include "hid-ids.h" +#include "usbhid/usbhid.h" + +// Logitech K290 custom USB command and value to setup function key +#define K290_SET_FUNCTION_CMD 0x02 +#define K290_SET_FUNCTION_VAL 0x001a + +// Have function mode turned off (as with standard keyboards) +#define K290_SET_FUNCTION_OFF 0x0001 +// Have function mode turned on (default k290 behavior) +#define K290_SET_FUNCTION_ON 0x0000 + +// Function key default mode is set at module load time for every K290 +// keyboards plugged on the machine. By default fn_mode = 1, i.e +// sending K290_SET_FUNCTION_ON (default K290 behavior). +static bool fn_mode = 1; +module_param(fn_mode, bool, 0444); +MODULE_PARM_DESC(fn_mode, "Logitech K290 function key mode (default = 1)"); + +static void k290_set_function(struct usb_device *dev, uint16_t function_mode) +{ + int ret; + + ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), + K290_SET_FUNCTION_CMD, + USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, + K290_SET_FUNCTION_VAL, + function_mode, 0, 0, USB_CTRL_SET_TIMEOUT); + + if (ret < 0) + dev_err(&dev->dev, + "Failed to setup K290 function key, error %d\n", ret); +} + +static int k290_set_function_hid_device(struct hid_device *hid) +{ + struct usb_device *usb_dev = hid_to_usb_dev(hid); + + k290_set_function(usb_dev, + fn_mode ? K290_SET_FUNCTION_ON : K290_SET_FUNCTION_OFF); + return 0; +} + +static int k290_input_configured(struct hid_device *hid, + struct hid_input *hidinput) +{ + return k290_set_function_hid_device(hid); +} + +static int k290_resume(struct hid_device *hid) +{ + return k290_set_function_hid_device(hid); +} + +static const struct hid_device_id k290_devices[] = { + { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, + USB_DEVICE_ID_LOGITECH_KEYBOARD_K290) }, + { } +}; +MODULE_DEVICE_TABLE(hid, k290_devices); + +static struct hid_driver k290_driver = { + .name = "hid-logitech-k290", + .id_table = k290_devices, + .input_configured = k290_input_configured, + .resume = k290_resume, + .reset_resume = k290_resume, +}; + +module_hid_driver(k290_driver); + +MODULE_AUTHOR("Florent Flament "); +MODULE_DESCRIPTION("Logitech K290 keyboard driver"); +MODULE_LICENSE("GPL v2");