RE: [PATCH 1/2] INPUT/HID: add touch support for SiS touch driver

2015-01-16 Thread tammy_tseng
Hey, Oliver On Mon, Jan 12, 2015 at 7:50 PM, Oliver Neukum oneu...@suse.de wrote: On Mon, 2015-01-12 at 18:53 +0800, 曾婷葳 (tammy_tseng) wrote: (Skip the code diff...) Again macros for endianness And the driver has a great number of conditional compilations are they really needed? The

RE: [PATCH 1/2] INPUT/HID: add touch support for SiS touch driver

2015-01-16 Thread tammy_tseng
Hey, Oliver On Mon, Jan 12, 2015 at 7:50 PM, Oliver Neukum oneu...@suse.de wrote: On Mon, 2015-01-12 at 18:53 +0800, 曾婷葳 (tammy_tseng) wrote: (Skip the code diff...) Again macros for endianness And the driver has a great number of conditional compilations are they really needed? The

Re: [PATCH 1/2] INPUT/HID: add touch support for SiS touch driver

2015-01-16 Thread Oliver Neukum
On Fri, 2015-01-16 at 18:59 +0800, 曾婷葳 (tammy_tseng) wrote: Hey, Oliver On Mon, Jan 12, 2015 at 7:50 PM, Oliver Neukum oneu...@suse.de wrote: On Mon, 2015-01-12 at 18:53 +0800, 曾婷葳 (tammy_tseng) wrote: (Skip the code diff...) Again macros for endianness And the driver has a great

[PATCH v4 0/5] ARM:sunxi:ps2 Added support for A10/A20 ps2 controller

2015-01-16 Thread Vishnu Patekar
This adds support for Allwinner A0, A20 PS2 controller. I've tested PS2 keyboard on A20 Olimex-Lime2 board. Hans had tested previous patch on A10 as well. v3 -- v4 1. Reported errors(SERIO_FRAME,SERIO_TIMEOUT, SERIO_PARITY) to consumer. 2. Handled the transmit timeout in sun4i_ps2_write. 3.

[PATCH v4 3/5] ARM: sunxi: dts: Add PS2 nodes to dtsi for A10 and A20

2015-01-16 Thread Vishnu Patekar
Signed-off-by: VishnuPatekar vishnupatekar0...@gmail.com Signed-off-by: Hans de Goede hdego...@redhat.com --- arch/arm/boot/dts/sun4i-a10.dtsi | 16 arch/arm/boot/dts/sun7i-a20.dtsi | 16 2 files changed, 32 insertions(+) diff --git

[PATCH v4 2/5] ARM:sunxi:drivers:input Add support for A10/A20 PS2

2015-01-16 Thread Vishnu Patekar
Signed-off-by: VishnuPatekar vishnupatekar0...@gmail.com --- drivers/input/serio/Kconfig | 11 ++ drivers/input/serio/Makefile|1 + drivers/input/serio/sun4i-ps2.c | 330 +++ 3 files changed, 342 insertions(+) create mode 100644

[PATCH v4 5/5] ARM: sunxi: dts: Add PS2 nodes for A20 lime2 board

2015-01-16 Thread Vishnu Patekar
Signed-off-by: VishnuPatekar vishnupatekar0...@gmail.com --- arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts | 12 1 file changed, 12 insertions(+) diff --git a/arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts b/arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts index

[PATCH v4 4/5] ARM: sunxi: dts: Add A10/A20 PS2 pin muxing options

2015-01-16 Thread Vishnu Patekar
Signed-off-by: VishnuPatekar vishnupatekar0...@gmail.com --- arch/arm/boot/dts/sun4i-a10.dtsi | 14 ++ arch/arm/boot/dts/sun7i-a20.dtsi | 14 ++ 2 files changed, 28 insertions(+) diff --git a/arch/arm/boot/dts/sun4i-a10.dtsi b/arch/arm/boot/dts/sun4i-a10.dtsi index

[PATCH v4 1/5] sunxi:dts-bindings:input: bindings for A10/A20 ps2

2015-01-16 Thread Vishnu Patekar
Signed-off-by: VishnuPatekar vishnupatekar0...@gmail.com --- .../bindings/serio/allwinner,sun4i-ps2.txt | 23 1 file changed, 23 insertions(+) create mode 100644 Documentation/devicetree/bindings/serio/allwinner,sun4i-ps2.txt diff --git

Re: [PATCH 1/5] mfd: tps65218: make INT[12] and STATUS registers volatile

2015-01-16 Thread Felipe Balbi
Hi, On Wed, Jan 14, 2015 at 09:07:17AM -0800, Tony Lindgren wrote: STATUS register can be modified by the HW, so we should bypass cache because of that. In the case of INT[12] registers, they are the ones that actually clear the IRQ source at the time they are read.

Re: [PATCH 1/2] INPUT/HID: add touch support for SiS touch driver

2015-01-16 Thread Dmitry Torokhov
On Fri, Jan 16, 2015 at 5:11 AM, Oliver Neukum oneu...@suse.de wrote: On Fri, 2015-01-16 at 18:59 +0800, 曾婷葳 (tammy_tseng) wrote: Hey, Oliver On Mon, Jan 12, 2015 at 7:50 PM, Oliver Neukum oneu...@suse.de wrote: On Mon, 2015-01-12 at 18:53 +0800, 曾婷葳 (tammy_tseng) wrote: (Skip the code

About Goodix-TS on Bay Trail, and ACPI and interrupts

2015-01-16 Thread Antonio Ospite
Hi, I am trying to make the Goodix driver (drivers/input/touchscreen/goodix.c) working with a Teclast X98 Air 3G, a tablet based on Intel Bay Trail, but I am new to ACPI and I could use some help. I am working with a 3.19-rc4 kernel compiled for x86_64. This is the DSDT section in the UEFI

[PATCH v2 0/2] hid: sensor-hub: Enhance feature report APIs

2015-01-16 Thread Srinivas Pandruvada
Current get and set feature report is enhanced to have multiple values in get and set. v2 As suggested by Antonio Borneo, using DIV_ROUND_UP v1 Squashed into two patches one for get and one for set feature report for bisectability. v0 Separate patches for each driver/modules Srinivas

[PATCH v2 1/2] HID: hid-sensor-hub: Enhance get feature report API

2015-01-16 Thread Srinivas Pandruvada
Some hid sensor feature report can contain more than one reports. This API can now support receiving multiple values from the feature report. Also update the parameters in the users of this API. Signed-off-by: Srinivas Pandruvada srinivas.pandruv...@linux.intel.com ---

[PATCH v2 2/2] HID: hid-sensor-hub: Enhance feature report set API

2015-01-16 Thread Srinivas Pandruvada
Current API only allows setting one offset in the field. This API is extended to set multiple offsets in the field report. Also update parameters in the users of this API. Signed-off-by: Srinivas Pandruvada srinivas.pandruv...@linux.intel.com --- drivers/hid/hid-sensor-hub.c