Received: by 10.192.165.156 with SMTP id m28csp510001imm; Wed, 11 Apr 2018 02:54:33 -0700 (PDT) X-Google-Smtp-Source: AIpwx48i4X0evqVFdfHzXgfMAwVPf66NY8wYXmzMYdrYbCWtadM6TmY/raJxw/wXHYMuww8mKz/b X-Received: by 2002:a17:902:d882:: with SMTP id b2-v6mr4393419plz.197.1523440473358; Wed, 11 Apr 2018 02:54:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523440473; cv=none; d=google.com; s=arc-20160816; b=c3MuvnfRA0pK3kfhhDlI9jaPnrFJCPJJnf3qhlOkmsW8+WX047i/sgvNypTl4HzOQY HiFE/EYkLP5cLafsY8jf5VTifbqNChP43N7RUkYVXnwScYtYu8yi0kAwTXpOM3XIxDsU Ufif4rBmUT9o/4/RAPFUDOWOvFg8hD2G7Hvu3ukTKT+SYVP0OnbZFdZu1Geq0KqB9u8D rk5hTTJtQ4v/y0ehJ666RqYHEJW4SddsdaNLCWmkT1SZkTk5D/fOa8pcjdEls6R7JtkA xlG9eckehE2+GDIUnbFzd0lCqPj6AWpNwKDiaf2rN4CkxuTNY8aWpnwbuiito3cacht/ FAWg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from :arc-authentication-results; bh=z75j3PJkG82Q1CjcOXqRrplE6zkFZ5XpjVvIloyPNjA=; b=ZapoRJiLSfSGt1lVuogwLKESr8/rEEu4GiDGvXI1kMiavSeEa9+dhKPFAZffD6wj0m StGcqP7Gf81cJtk6pIM88v4UIBDag20TeG3UH7nkA8CisXcFV6/N+6OgdsIh7V1IY+iA rObRZ7UqxCgNHC/vZNe5KJ240DpGPsJPuiPUjPdQ4hznDza5cR72FOXmdyT2AAv5y3FI h4+x8Z46sv6lo6l12n0n4wdPDvn5VwTZNT4b5YaRFnNhxF6/glDDMa5USCPGr9KDpaGT JlrDv2WGXoEpNKmQpIaVJR+ttuhmMtplKME6sBHq939cWI74nB02M6hw55gzqAldkmLm H1xQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f8si486702pgt.243.2018.04.11.02.53.56; Wed, 11 Apr 2018 02:54:33 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752574AbeDKJuL (ORCPT + 99 others); Wed, 11 Apr 2018 05:50:11 -0400 Received: from hermes.apache.org ([140.211.11.3]:21300 "HELO mail.apache.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751883AbeDKJuJ (ORCPT ); Wed, 11 Apr 2018 05:50:09 -0400 Received: (qmail 62321 invoked by uid 99); 11 Apr 2018 09:50:09 -0000 Received: from mail-relay.apache.org (HELO mailrelay2-lw-us.apache.org) (207.244.88.137) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Apr 2018 09:50:09 +0000 Received: from rombert.corp.adobe.com (unknown [109.103.80.27]) by mailrelay2-lw-us.apache.org (ASF Mail Server at mailrelay2-lw-us.apache.org) with ESMTPSA id 5201C1D57; Wed, 11 Apr 2018 09:50:06 +0000 (UTC) From: Robert Munteanu To: Jiri Kosina , Benjamin Tissoires Cc: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, Robert Munteanu Subject: [PATCH v5] Fix modifier keys for Redragon Asura Keyboard Date: Wed, 11 Apr 2018 12:49:53 +0300 Message-Id: <20180411094953.12053-1-rombert@apache.org> X-Mailer: git-send-email 2.16.3 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Changelog: - v2: modifier keys work, some combinations are still troublesome - v3: style cleanup, rebase on top of 4.14 - v4: remove most debugging calls, make init info useful for user, rebased on top of 4.15 - v5: fix the HID descriptor as suggested by Benjamin Tissoires, use existing USB vendor id, update comment style, add SPDX license identifier, rename to hid-redragon, stop registering two input devices, rebased on top of 4.16 Signed-off-by: Robert Munteanu --- drivers/hid/Kconfig | 7 ++++ drivers/hid/Makefile | 1 + drivers/hid/hid-ids.h | 1 + drivers/hid/hid-quirks.c | 3 ++ drivers/hid/hid-redragon.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 101 insertions(+) create mode 100644 drivers/hid/hid-redragon.c diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 19c499f5623d..1125e4813716 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -560,6 +560,13 @@ config HID_MAYFLASH Say Y here if you have HJZ Mayflash PS3 game controller adapters and want to enable force feedback support. +config HID_REDRAGON + tristate "Redragon keyboards" + depends on HID + default !EXPERT + ---help--- + Support for Redragon keyboards that need fix-ups to work properly. + config HID_MICROSOFT tristate "Microsoft non-fully HID-compliant devices" depends on HID diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index eb13b9e92d85..a36f3f40ba63 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -84,6 +84,7 @@ hid-picolcd-$(CONFIG_DEBUG_FS) += hid-picolcd_debugfs.o obj-$(CONFIG_HID_PLANTRONICS) += hid-plantronics.o obj-$(CONFIG_HID_PRIMAX) += hid-primax.o +obj-$(CONFIG_HID_REDRAGON) += hid-redragon.o obj-$(CONFIG_HID_RETRODE) += hid-retrode.o obj-$(CONFIG_HID_ROCCAT) += hid-roccat.o hid-roccat-common.o \ hid-roccat-arvo.o hid-roccat-isku.o hid-roccat-kone.o \ diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 9454ac134ce2..41a64d0e91f9 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -599,6 +599,7 @@ #define USB_VENDOR_ID_JESS 0x0c45 #define USB_DEVICE_ID_JESS_YUREX 0x1010 #define USB_DEVICE_ID_ASUS_MD_5112 0x5112 +#define USB_DEVICE_ID_REDRAGON_ASURA 0x760b #define USB_VENDOR_ID_JESS2 0x0f30 #define USB_DEVICE_ID_JESS2_COLOR_RUMBLE_PAD 0x0111 diff --git a/drivers/hid/hid-quirks.c b/drivers/hid/hid-quirks.c index e92b77fa574a..5f1253f1739a 100644 --- a/drivers/hid/hid-quirks.c +++ b/drivers/hid/hid-quirks.c @@ -557,6 +557,9 @@ static const struct hid_device_id hid_have_special_driver[] = { #if IS_ENABLED(CONFIG_HID_PRODIKEYS) { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_PRODIKEYS_PCMIDI) }, #endif +#if IS_ENABLED(CONFIG_HID_REDRAGON) + { HID_USB_DEVICE(USB_VENDOR_ID_JESS, USB_DEVICE_ID_REDRAGON_ASURA) }, +#endif #if IS_ENABLED(CONFIG_HID_RETRODE) { HID_USB_DEVICE(USB_VENDOR_ID_FUTURE_TECHNOLOGY, USB_DEVICE_ID_RETRODE2) }, #endif diff --git a/drivers/hid/hid-redragon.c b/drivers/hid/hid-redragon.c new file mode 100644 index 000000000000..ff98a5dbb8e2 --- /dev/null +++ b/drivers/hid/hid-redragon.c @@ -0,0 +1,89 @@ +/* + * HID driver for Redragon keyboards + * + * Copyright (c) 2017 Robert Munteanu + * SPDX-License-Identifier: GPL-2.0 + */ + +/* + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 2 of the License, or (at your option) + * any later version. + */ + +#include +#include +#include +#include +#include +#include + +#include "hid-ids.h" + + +/* + * The Redragon Asura keyboard sends an incorrect HID descriptor. + * At byte 100 it contains + * + * 0x81, 0x00 + * + * which is Input (Data, Arr, Abs), but it should be + * + * 0x81, 0x02 + * + * which is Input (Data, Var, Abs), which is consistent with the way + * key codes are generated. + */ + +static __u8 *redragon_report_fixup(struct hid_device *hdev, __u8 *rdesc, + unsigned int *rsize) +{ + if (*rsize >= 102 && rdesc[100] == 0x81 && rdesc[101] == 0x00) { + dev_info(&hdev->dev, "Fixing Redragon ASURA report descriptor.\n"); + rdesc[101] = 0x02; + } + + return rdesc; +} + +static int redragon_probe(struct hid_device *dev, + const struct hid_device_id *id) +{ + int ret; + + ret = hid_parse(dev); + if (ret) { + hid_err(dev, "parse failed\n"); + return ret; + } + + /* do not register unused input device */ + if (dev->maxapplication == 1) + return 0; + + ret = hid_hw_start(dev, HID_CONNECT_DEFAULT); + if (ret) { + hid_err(dev, "hw start failed\n"); + return ret; + } + + return 0; +} +static const struct hid_device_id redragon_devices[] = { + {HID_USB_DEVICE(USB_VENDOR_ID_JESS, USB_DEVICE_ID_REDRAGON_ASURA)}, + {} +}; + +MODULE_DEVICE_TABLE(hid, redragon_devices); + +static struct hid_driver redragon_driver = { + .name = "redragon", + .id_table = redragon_devices, + .report_fixup = redragon_report_fixup, + .probe = redragon_probe +}; + +module_hid_driver(redragon_driver); + +MODULE_LICENSE("GPL"); -- 2.16.3