Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1578116
| From | Andi Shyti <andi.shyti@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 0/3] STM FingerTip S touchscreen support for TM2 board |
| Date | 2017-02-10 03:20 +0100 |
| Message-ID | <t98Yx-5L6-3@gated-at.bofh.it> (permalink) |
| References | <t98Yx-5L6-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi, this patchset provides support for the ST-Microelectronics FingerTip S device driver and enables it in the tm2 and tm2e devices. It's tested on top of next-20170210 kernel and applies on Krzysztof's for-next branch. Thanks, Andi Changelog V1-V2 =============== V1: https://marc.info/?l=linux-kernel&m=148466204431327&w=2 - fixed Javier's, Krzysztof's and Dmitry's reviews - added Javier's review tag on patch 1 and 3 - the main difference of the driver from v2 is that the driver generates only one input interface instead of two (one for the touchscreen and one for the touchkeys). The job of filtering the events is demanded to userspace applications that are accessing the device. This is done by making an ioctl call: ioctl(fd, EVIOCSMASK, &mask); where 'mask' is an 'input_mask' structure that contains the type variable of the EV_* that needs to be filtered out. Andi Shyti (3): Input: add STMicroelectronics FingerTip touchscreen driver Input: add support for the STMicroelectronics FingerTip touchscreen arm64: dts: exynos: Add stmfts touchscreen node for TM2 and TM2E .../bindings/input/touchscreen/st,stmfts.txt | 43 ++ .../boot/dts/exynos/exynos5433-tm2-common.dtsi | 15 +- arch/arm64/boot/dts/exynos/exynos5433-tm2.dts | 5 + arch/arm64/boot/dts/exynos/exynos5433-tm2e.dts | 7 + drivers/input/touchscreen/Kconfig | 12 + drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/stmfts.c | 794 +++++++++++++++++++++ 7 files changed, 876 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/input/touchscreen/st,stmfts.txt create mode 100644 drivers/input/touchscreen/stmfts.c -- 2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2 0/3] STM FingerTip S touchscreen support for TM2 board Andi Shyti <andi.shyti@samsung.com> - 2017-02-10 03:20 +0100
[PATCH v2 3/3] arm64: dts: exynos: Add stmfts touchscreen node for TM2 and TM2E Andi Shyti <andi.shyti@samsung.com> - 2017-02-10 03:20 +0100
Re: [PATCH v2 3/3] arm64: dts: exynos: Add stmfts touchscreen node for TM2 and TM2E Krzysztof Kozlowski <krzk@kernel.org> - 2017-02-10 14:50 +0100
[PATCH v2 2/3] Input: add support for the STMicroelectronics FingerTip touchscreen Andi Shyti <andi.shyti@samsung.com> - 2017-02-10 03:20 +0100
csiph-web