Re: [PATCH] input: twl4030-vibra: Fix ERROR: Bad of_node_put() warning

2015-07-23 Thread Dmitry Torokhov
On Thu, Jul 23, 2015 at 10:38:34PM +0200, Marek Belisko wrote: Fix following: [8.862274] ERROR: Bad of_node_put() on /ocp/i2c@4807/twl@48/audio [8.869293] CPU: 0 PID: 1003 Comm: modprobe Not tainted 4.2.0-rc2-letux+ #1175 [8.876922] Hardware name: Generic OMAP36xx (Flattened

Re: [PATCH] Input: LEDs - skip unnamed LEDs

2015-07-23 Thread Pavel Machek
On Thu 2015-07-23 13:57:13, Dmitry Torokhov wrote: On Thu, Jul 23, 2015 at 08:19:13AM +0200, Pavel Machek wrote: On Wed 2015-07-22 15:02:02, Dmitry Torokhov wrote: Devices may declare more LEDs than what is known to input-leds (HID does this for some devices). Instead of showing ugly

Re: [PATCH] hid: sony: Drop invalid Sixaxis input reports

2015-07-23 Thread simon
When connected via Bluetooth the sixaxis periodically sends reports with an ID of 1, the second byte 0xff and the rest zeroed. These reports are not related to the controller state and must be dropped to avoid generating false input events. These 'problem reports' were reported (*) over the

Re: [PATCH 1/1] Avoid unresponsive TSC-30 touch screen

2015-07-23 Thread Dmitry Torokhov
On Thu, Jul 23, 2015 at 05:01:31PM +0200, Bernhard Bender wrote: From: Bernhard Bender bernhard.ben...@bytecmed.com This patch fixes a problem in the usbtouchscreen driver for DMC TSC-30 touch screen. Due to a missing delay between the RESET and SET_RATE commands, the touch screen may

Re: [PATCH 2/2] CHROMIUM: elants_i2c.c: Disable idle mode before firmware upgrade procedure.

2015-07-23 Thread Dmitry Torokhov
Hi James, On Tue, Jul 21, 2015 at 10:10:25AM +0800, james.chen wrote: From: james.chen james.c...@emc.com.tw This patch is disable idle mode before firmware upgrade procedure. BUG=chrome-os-partner:39373 TEST= Test Elan touchscreen on cyan project(kernel 3.18) without problems.

Re: [PATCH] Input: LEDs - skip unnamed LEDs

2015-07-23 Thread Dmitry Torokhov
On Thu, Jul 23, 2015 at 11:22:54PM +0200, Pavel Machek wrote: On Thu 2015-07-23 13:57:13, Dmitry Torokhov wrote: On Thu, Jul 23, 2015 at 08:19:13AM +0200, Pavel Machek wrote: On Wed 2015-07-22 15:02:02, Dmitry Torokhov wrote: Devices may declare more LEDs than what is known to input-leds

Re: [PATCH] Input: LEDs - skip unnamed LEDs

2015-07-23 Thread Dmitry Torokhov
On Thu, Jul 23, 2015 at 08:19:13AM +0200, Pavel Machek wrote: On Wed 2015-07-22 15:02:02, Dmitry Torokhov wrote: Devices may declare more LEDs than what is known to input-leds (HID does this for some devices). Instead of showing ugly warnings on connect and, even worse, oopsing on

[PATCH] hid: sony: Drop invalid Sixaxis input reports

2015-07-23 Thread Frank Praznik
When connected via Bluetooth the sixaxis periodically sends reports with an ID of 1, the second byte 0xff and the rest zeroed. These reports are not related to the controller state and must be dropped to avoid generating false input events. Signed-off-by: Frank Praznik frank.praz...@oh.rr.com

Re: How to add support for Motorola RZ100?

2015-07-23 Thread Hanno Zulla
Hi, You could start with making the hid-recorder output available... Ok. For reference: https://motorola-global-portal.custhelp.com/ci/fattach/get/593562/1361474625/redirect/1/session/L2F2LzEvdGltZS8xNDM3NjUwMjg3L3NpZC9reU9zZTRzbQ==/filename/SmartControler_Eng_SP_Fr_68016304001C.pdf

Re: How to add support for Motorola RZ100?

2015-07-23 Thread Hanno Zulla
Hi, oops, I forgot the initial output of hid-recorder: D: 0 R: 331 05 01 09 02 a1 01 85 02 05 09 19 01 29 03 15 00 25 01 75 01 95 03 81 02 75 05 95 01 81 03 05 01 09 01 a1 00 09 30 09 31 15 81 25 7f 75 08 95 02 81 06 09 38 15 81 25 7f 75 08 95 01 81 06 05 0c 0a 38 02 15 80 25 7f 75 08 95 01 81

Re: [PATCH 1/3] HID: wacom: Perform all event processing as part of report processing

2015-07-23 Thread Jiri Kosina
On Tue, 21 Jul 2015, Jason Gerecke wrote: In some cases, we need access to information before it becomes available to the 'event' handler. In particular, for some devices we cannot properly process the finger data without first knowing the contact count at the very end of the report (e.g. the

Re: Potential data race in psmouse_interrupt

2015-07-23 Thread Pali Rohár
On Wednesday 22 July 2015 15:14:42 Andrey Konovalov wrote: Hi! We are working on a dynamic data race detector for Linux kernel called KernelThreadSanitizer (ktsan) (https://github.com/google/ktsan/wiki). Here is a report we got while running ktsan (upstream revision

[PATCH 1/3] input: cyapa: add regulator vcc support

2015-07-23 Thread Dudley Du
Add power management regulator vcc support. It's described to be supported in the cypress,cyapa.txt document. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa.c | 28 drivers/input/mouse/cyapa.h | 1 + 2 files changed, 29 insertions(+) diff

[PATCH 2/3] input: cyapa: add of match device support and description document

2015-07-23 Thread Dudley Du
Add of_match_device mechanism support for Cypress trackpad device, and add the sample description document on how to adding the trackpad device node in the device tree. Signed-off-by: Dudley Du d...@cypress.com --- .../devicetree/bindings/input/cypress,cyapa.txt| 44 ++

[PATCH 0/3] cyapa patches instruction

2015-07-23 Thread Dudley Du
These patches are made based on Dmitry's next tree. It's aimed to add regulator vcc and of match device tree supported, and also fix the output unwanted wanring message issue when working with old Gen5 Trackpad device that doesn't support the proximity function. Dudley Du (3): input: cyapa: add

[PATCH 3/3] input: cyapa: fix output unwanted warning issue

2015-07-23 Thread Dudley Du
Avoid the driver generate warning message when the cyapa driver working with the old Gen5 trackpad device which does not support the proximity function. Those old Gen5 trackpad device all have the platform version less than 2. Signed-off-by: Dudley Du d...@cypress.com ---

[PATCH] HID: hid-lg: Add USBID for Logitech G29 Wheel

2015-07-23 Thread Simon Wood
Since this wheel is now available, and the USBID is listed on their website, this patch adds it to allow the hid-lg4ff force feedback driver to find it. I do not have this wheel to test with, but this should at least get it working in emulation mode. Note: There is probably more work required

[PATCH] input: twl4030-vibra: Fix ERROR: Bad of_node_put() warning

2015-07-23 Thread Marek Belisko
Fix following: [8.862274] ERROR: Bad of_node_put() on /ocp/i2c@4807/twl@48/audio [8.869293] CPU: 0 PID: 1003 Comm: modprobe Not tainted 4.2.0-rc2-letux+ #1175 [8.876922] Hardware name: Generic OMAP36xx (Flattened Device Tree) [8.883514] [c00159e0] (unwind_backtrace) from

Re: [PATCH v2] Input: goodix - Fix touch coords on WinBook TW100 and TW700

2015-07-23 Thread Dmitry Torokhov
Hi Bastien, On Thu, Jul 23, 2015 at 04:13:28PM +0200, Bastien Nocera wrote: The touchscreen on the WinBook TW100 and TW700 don't match the default display, with 0,0 touches being reported when touching at the bottom right of the screen. 1280,800 0,800 +-+

Re: [PATCH V2 3/3] devicetree: da9062: Add device tree bindings for DA9062 OnKey

2015-07-23 Thread Lee Jones
On Mon, 20 Jul 2015, S Twiss wrote: From: S Twiss stwiss.opensou...@diasemi.com Add device tree bindings for the DA9062 OnKey driver component Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- Checks performed with linux-next/next-20150708/scripts/checkpatch.pl da9062.txt

[PATCH 1/1] Avoid unresponsive TSC-30 touch screen

2015-07-23 Thread Bernhard Bender
From: Bernhard Bender bernhard.ben...@bytecmed.com This patch fixes a problem in the usbtouchscreen driver for DMC TSC-30 touch screen. Due to a missing delay between the RESET and SET_RATE commands, the touch screen may become unresponsive during system startup or driver loading. According to

[PATCH v2] Input: goodix - Fix touch coords on WinBook TW100 and TW700

2015-07-23 Thread Bastien Nocera
The touchscreen on the WinBook TW100 and TW700 don't match the default display, with 0,0 touches being reported when touching at the bottom right of the screen. 1280,800 0,800 +-+ | | | | | |

[PATCH v3 2/2] ARM: dts: am437x-gp-evm: Add wakeup interrupt source for pixcir_i2c_tsc

2015-07-23 Thread Vignesh R
Pixcir_i2c_tsc driver can now wakeup the system from lower power state via pinctrl and IO daisy chain using generic wakeirq framwework. Add optional wakeup irq entry to allow pixcir_i2c_tsc to wake system from low power state. Signed-off-by: Vignesh R vigne...@ti.com --- v3: * Drop irq suffix

[PATCH v3 0/2] pixcir_i2c_ts: Add optional wakeup irq support

2015-07-23 Thread Vignesh R
This is the v3 of the patch series to add optional wake irq support for pixcir_i2c_tsc. Tested on am437x-gp-evm, with some out of tree patches to support suspend/resume on am437x. Vignesh R (2): input: touchscreen: pixcir_i2c_ts: Add support for optional wakeup interrupt ARM: dts:

Re: [PATCH V2 1/3] mfd: da9062: Support for the DA9063 OnKey in the DA9062 core

2015-07-23 Thread Lee Jones
On Mon, 20 Jul 2015, S Twiss wrote: From: S Twiss stwiss.opensou...@diasemi.com Add MFD core driver support for a OnKey component - MFD core adds the resource da9062_onkey_resources[] for the OnKey - An appropriate value has been added into mfd_cell da9062_devs[] to support component

Re: [PATCH] Input: LEDs - skip unnamed LEDs

2015-07-23 Thread Pavel Machek
On Wed 2015-07-22 15:02:02, Dmitry Torokhov wrote: Devices may declare more LEDs than what is known to input-leds (HID does this for some devices). Instead of showing ugly warnings on connect and, even worse, oopsing on disconnect, let's simply ignore LEDs that are not known to us.

Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core

2015-07-23 Thread Lee Jones
On Tue, 21 Jul 2015, S Twiss wrote: From: S Twiss stwiss.opensou...@diasemi.com Add MFD core driver support for a RTC component - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC alarm and tick timer IRQ - An appropriate mfd_cell has been added into da9062_devs[] to

Re: [PATCH V3 2/3] devicetree: da9062: Add device tree bindings for DA9062 RTC

2015-07-23 Thread Lee Jones
On Tue, 21 Jul 2015, S Twiss wrote: From: S Twiss stwiss.opensou...@diasemi.com Add device tree bindings for the DA9062 RTC driver component Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- Checks performed with linux-next/next-20150708/scripts/checkpatch.pl da9062.txt

Re: [PATCH] MIPS: Remove most of the custom gpio.h

2015-07-23 Thread Linus Walleij
On Wed, Jul 22, 2015 at 7:33 PM, Alban Bedel al...@free.fr wrote: Currently CONFIG_ARCH_HAVE_CUSTOM_GPIO_H is defined for all MIPS machines, and each machine type provides its own gpio.h. However only the Alchemy machine really use the feature, all other machines only use the default

[PATCH V3 1/3] mfd: da9062: Support for the DA9063 OnKey in the DA9062 core

2015-07-23 Thread S Twiss
From: S Twiss stwiss.opensou...@diasemi.com Add MFD core driver support for a OnKey component - MFD core adds the resource da9062_onkey_resources[] for the OnKey - An appropriate value has been added into mfd_cell da9062_devs[] to support component .name = da9062-onkey and .of_compatible =

Re: [PATCHv7 14/15] cec: s5p-cec: Add s5p-cec driver

2015-07-23 Thread Kamil Debski
Hi, On 21 July 2015 at 15:03, Marek Szyprowski m.szyprow...@samsung.com wrote: Hello, On 2015-07-16 15:09, Hans Verkuil wrote: Marek, Kamil, On 06/29/15 12:14, Hans Verkuil wrote: From: Kamil Debski ka...@wypas.org Add CEC interface driver present in the Samsung Exynos range of SoCs.

Re: [PATCH 00/11] Input: synaptics-rmi4: various fixes for the existing rmi4 branch

2015-07-23 Thread Benjamin Tissoires
On Jun 23 2015 or thereabouts, Benjamin Tissoires wrote: Hi Dmitry, As mentioned in the thread on linux-i2c[1], I am making good progress on the RMI4 SMBus implementation [2]. I am still missing the PS/2 pass-through function but I have an intern (Chandler, CC-ed) working on that. Also, I

[PATCH v4] Input: Add userio module

2015-07-23 Thread Stephen Chandler Paul
Debugging input devices, specifically laptop touchpads, can be tricky without having the physical device handy. Here we try to remedy that with userio. This module allows an application to connect to a character device provided by the kernel, and emulate any serio device. In combination with

Re: [PATCHv7 14/15] cec: s5p-cec: Add s5p-cec driver

2015-07-23 Thread Hans Verkuil
On 07/23/2015 06:39 PM, Kamil Debski wrote: Hi, On 21 July 2015 at 15:03, Marek Szyprowski m.szyprow...@samsung.com wrote: Hello, On 2015-07-16 15:09, Hans Verkuil wrote: Marek, Kamil, On 06/29/15 12:14, Hans Verkuil wrote: From: Kamil Debski ka...@wypas.org Add CEC interface driver

Re: Potential data race in psmouse_interrupt

2015-07-23 Thread Andrey Konovalov
Hi Pali, There are a few reports in psmouse-base.c/alps.c code as well. Here is a couple of them that are printed one right after another. The second one tells about a race on ps2dev-cmdcnt. == ThreadSanitizer: data-race in

Re: [PATCH] MIPS: Remove most of the custom gpio.h

2015-07-23 Thread Lars-Peter Clausen
On 07/22/2015 07:33 PM, Alban Bedel wrote: diff --git a/arch/mips/jz4740/gpio.c b/arch/mips/jz4740/gpio.c index 54c80d4..3dc500c 100644 --- a/arch/mips/jz4740/gpio.c +++ b/arch/mips/jz4740/gpio.c @@ -262,18 +262,6 @@ uint32_t jz_gpio_port_get_value(int port, uint32_t mask) }

[PATCH V3 2/3] onkey: da9063: Add DA9062 OnKey capability to DA9063 OnKey driver

2015-07-23 Thread S Twiss
From: S Twiss stwiss.opensou...@diasemi.com Add DA9062 OnKey support into the existing DA9063 OnKey driver component by using generic access tables for common register and bit mask definitions. The following change will add generic register and bit mask support to the DA9063 OnKey. The

[PATCH V3 0/3] da9062: Add DA9062 OnKey support using the existing DA9063 OnKey driver

2015-07-23 Thread S Twiss
From: S Twiss stwiss.opensou...@diasemi.com This patch set adds OnKey support for the Dialog DA9062 Power Management IC. Changes are made to the existing DA9063 OnKey component so that functionality in this device driver can be re-used to support the DA9062 OnKey. This following patch set

[PATCH v2] HID: update PenMount USB report descriptor so that only one button is reported

2015-07-23 Thread Andrew Shadura
PenMount USB resistive touchscreen reports it has three buttons, while in reality it doesn't have any and doesn't support active styli, and only generates touch events. Signed-off-by: Andrew Shadura andrew.shad...@collabora.co.uk --- drivers/hid/hid-penmount.c | 18 ++ 1 file

Re: [RFC_v2 0/4] HID: hid-sony: Add IIO Suport for Motion Controllers

2015-07-23 Thread Bastien Nocera
On Tue, 2015-06-23 at 18:30 -0600, Simon Wood wrote: snip (1) https://richardstechnotes.wordpress.com/2015/06/17/rteiioimu-driving-a-9-dof-imu-via-industrial-io-iio/ That URL doesn't seem to work anymore. -- To unsubscribe from this list: send the line unsubscribe linux-input in the body

Re: ALPS DualPoint double click bug

2015-07-23 Thread Hans de Goede
Hi, On 22-07-15 17:08, Benjamin Tissoires wrote: On Wed, Jul 22, 2015 at 3:21 AM, Pali Rohár pali.ro...@gmail.com wrote: On Tuesday 21 July 2015 19:51:48 Douglas Christman wrote: On Tue, Jul 21, 2015 at 3:12 AM, Pali Rohár pali.ro...@gmail.com wrote: It is not enough. If do not want to

RE: [PATCH] Input: ads7846 - correct the value get from SPI

2015-07-23 Thread Chen Bough
Hi Igor, The patch you attached is okay for me. But I suggest to explain this issue more clearly. Actually it is not a no clear reason. i.MX6 platform SPI driver set MOSI and MISO in high level. You can refer to my patch log. Best Regards Haibo Chen -Original Message- From: Igor

Re: [PATCH] MIPS: Remove most of the custom gpio.h

2015-07-23 Thread Alban
On Wed, 22 Jul 2015 19:47:18 +0200 Manuel Lauss manuel.la...@gmail.com wrote: On Wed, Jul 22, 2015 at 7:33 PM, Alban Bedel al...@free.fr wrote: Currently CONFIG_ARCH_HAVE_CUSTOM_GPIO_H is defined for all MIPS machines, and each machine type provides its own gpio.h. However only the Alchemy

How to add support for Motorola RZ100?

2015-07-23 Thread Hanno Zulla
Hi there, how can I help add support for the following device? The Motorola Smart Controller RZ100 is a combined telephony headset and HID touchpad with four Android-specific buttons. It is designed to work as a remote control for Motorola Android devices.

Re: How to add support for Motorola RZ100?

2015-07-23 Thread Bastien Nocera
On Thu, 2015-07-23 at 12:57 +0200, Hanno Zulla wrote: Hi there, how can I help add support for the following device? The Motorola Smart Controller RZ100 is a combined telephony headset and HID touchpad with four Android-specific buttons. It is designed to work as a remote control for