Re: [PATCH 4/6] si4713 : HID blacklist Si4713 USB development board

2013-08-30 Thread Jiri Kosina
On Fri, 30 Aug 2013, Dinesh Ram wrote: The Si4713 development board contains a Si4713 FM transmitter chip and is handled by the radio-usb-si4713 driver. The board reports itself as (10c4:8244) Cygnal Integrated Products, Inc. and misidentifies itself as a HID device in its USB interface

[PATCH] HID: roccat: Added support for KonePureOptical v2

2013-08-30 Thread Stefan Achatz
KonePureOptical is a KonePure with different sensor. Signed-off-by: Stefan Achatz erazor...@users.sourceforge.net --- drivers/hid/hid-core.c|1 + drivers/hid/hid-ids.h |1 + drivers/hid/hid-roccat-konepure.c |3 ++- 3 files changed, 4 insertions(+), 1

Re: [PATCH 02/14] HID: provide a helper for validating hid reports

2013-08-30 Thread Benjamin Tissoires
On Thu, Aug 29, 2013 at 9:51 PM, Kees Cook keesc...@chromium.org wrote: On Thu, Aug 29, 2013 at 2:35 AM, Benjamin Tissoires benjamin.tissoi...@gmail.com wrote: Hi Kees, On Wed, Aug 28, 2013 at 10:30 PM, Jiri Kosina jkos...@suse.cz wrote: From: Kees Cook keesc...@chromium.org Many drivers

Re: [PATCH 04/14] HID: sony: validate HID output report details

2013-08-30 Thread Benjamin Tissoires
On Thu, Aug 29, 2013 at 9:58 PM, Kees Cook keesc...@chromium.org wrote: On Thu, Aug 29, 2013 at 7:50 AM, Benjamin Tissoires benjamin.tissoi...@gmail.com wrote: On Thu, Aug 29, 2013 at 4:40 PM, Kees Cook keesc...@chromium.org wrote: On Thu, Aug 29, 2013 at 2:48 AM, Benjamin Tissoires

Re: [PATCH 11/14] HID: multitouch: validate feature report details

2013-08-30 Thread Benjamin Tissoires
On Thu, Aug 29, 2013 at 9:41 PM, Kees Cook keesc...@chromium.org wrote: On Thu, Aug 29, 2013 at 1:59 AM, Benjamin Tissoires benjamin.tissoi...@redhat.com wrote: Hi Kees, I would be curious to have the HID report descriptors (maybe off list) to understand how things can be that bad.

Re: [PATCH 11/14] HID: multitouch: validate feature report details

2013-08-30 Thread Kees Cook
On Fri, Aug 30, 2013 at 8:27 AM, Benjamin Tissoires benjamin.tissoi...@gmail.com wrote: On Thu, Aug 29, 2013 at 9:41 PM, Kees Cook keesc...@chromium.org wrote: On Thu, Aug 29, 2013 at 1:59 AM, Benjamin Tissoires benjamin.tissoi...@redhat.com wrote: Hi Kees, I would be curious to have the HID

Re: hid: egalax 0x0eef:0x0001 no longer detected by hid-multitouch

2013-08-30 Thread Forest Bond
Hi Sebastian, On Fri, Aug 30, 2013 at 07:59:46PM +0200, Sebastian Dalfuß wrote: In 3.6.x the egalax touch panel (Vendor: 0eef, Dev: 0001) worked perfectly well with hid-multitouch, right out of the box. In 3.9 and 3.10 it doesn't; the panel doesn't show up in /proc/bus/input/devices . If

[PATCH] HID: usbhid: quirk for N-Trig DuoSense Touch Screen

2013-08-30 Thread Vasily Titskiy
The DuoSense touchscreen device causes a 10 second timeout. This fix removes the delay. Signed-off-by: Vasily Titskiy qeh...@gmail.com --- drivers/hid/hid-ids.h |2 ++ drivers/hid/usbhid/hid-quirks.c |3 +++ 2 files changed, 5 insertions(+) diff --git a/drivers/hid/hid-ids.h

Re: [PATCH] HID: usbhid: quirk for N-Trig DuoSense Touch Screen

2013-08-30 Thread Benjamin Tissoires
Hi, first, for the next submission, do not forget to add Jiri (the HID maintainer) in CC, otherwise there are huge chances that he will miss your patch. On Fri, Aug 30, 2013 at 8:47 PM, Vasily Titskiy qeh...@gmail.com wrote: The DuoSense touchscreen device causes a 10 second timeout. This fix

Re: [PATCH] HID: usbhid: quirk for N-Trig DuoSense Touch Screen

2013-08-30 Thread Vasily Titskiy
Hi, I've re-tested it with HID_QUIRK_NO_INIT_REPORTS parameter. Looks fine, still no delays. Shoud I re-format re-submit the patch? Vasily Titskiy On Fri, Aug 30, 2013 at 3:18 PM, Benjamin Tissoires benjamin.tissoi...@gmail.com wrote: Hi, first, for the next submission, do not forget to

[PATCH v2 0/2] new USB eBeam input driver

2013-08-30 Thread Yann Cantin
Hi, New USB input driver for eBeam devices. Currently supported (tested) : - Luidia eBeam classic projection and edge projection models - Nec interactive solution NP01Wi1 NP01Wi2 accessories. From basic usb point of view, all these devices are indistinguishable : they have the same usb ids

[PATCH v2 2/2] input: misc: New USB eBeam input driver

2013-08-30 Thread Yann Cantin
Signed-off-by: Yann Cantin yann.can...@laposte.net --- Documentation/ABI/testing/sysfs-driver-ebeam | 53 ++ drivers/input/misc/Kconfig | 22 + drivers/input/misc/Makefile | 1 + drivers/input/misc/ebeam.c | 759 +++

Re: [PATCH] HID: usbhid: quirk for N-Trig DuoSense Touch Screen

2013-08-30 Thread Benjamin Tissoires
On Fri, Aug 30, 2013 at 9:34 PM, Vasily Titskiy qeh...@gmail.com wrote: Hi, I've re-tested it with HID_QUIRK_NO_INIT_REPORTS parameter. Looks fine, still no delays. Yes please. Send a v2 so that Jiri can take it through his tree. Cheers, Benjamin On Fri, Aug 30, 2013 at 3:18 PM,

[PATCH v2] HID: usbhid: quirk for N-Trig DuoSense Touch Screen

2013-08-30 Thread Vasily Titskiy
The DuoSense touchscreen device causes a 10 second timeout. This fix removes the delay. Signed-off-by: Vasily Titskiy qeh...@gmail.com --- drivers/hid/hid-ids.h |1 + drivers/hid/usbhid/hid-quirks.c |1 + 2 files changed, 2 insertions(+) diff --git a/drivers/hid/hid-ids.h

Re: hid: egalax 0x0eef:0x0001 no longer detected by hid-multitouch

2013-08-30 Thread Sebastian Dalfuß
Hi Forest, On Fri, Aug 30, 2013 at 02:45:02PM -0400, Forest Bond wrote: For now look at hid_ignore in hid-core.c. You can probably set HID_QUIRK_NO_IGNORE to work around the problem. You'll probably also want to blacklist usbtouchscreen. That helped indeed. Changing case