Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1714600
| From | Mylène Josserand <mylene.josserand@free-electrons.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 0/2] Input: Add Cypress Gen5 Touchscreen driver |
| Date | 2017-08-18 08:30 +0200 |
| Message-ID | <ufIX8-7VI-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Hi everyone, Here is a V2 serie to add the driver of the touchscreen Cypress, TrueTouch Generation 5. Based on last linux-next tag (next-20170817), last commit bb70832dd42b. This touchscreen is similar to Cypress generation 4 but the registers are different. This driver uses regmap as it is possible to use I2C or SPI busses. Currently, only the I2C support are available in the driver. This touchscreen can handle some multitouch event as buttons using some defined zone. That is why the driver handles buttons and multitouch events. Changes since v1: - Updated the driver according to reviews. Most important modifications: removed unnecessary mutex, updated dev_err output, handled return cases in a better way, created a HID_ENUM, removed magic value, used an existing CRC table and used "linux-keycodes" instead of sub-nodes. - Updated the dt-bindings to use linux-keycodes and removed properties' description that comes from touchscreen's binding. Patch 01: Add the basis of the driver for Cypress Gen5 Touchscreen. Patch 02: Add the binding documentation for this driver. If you have any remarks, let me know. Thank you in advance, Mylène Mylène Josserand (2): Input: Add driver for Cypress Generation 5 touchscreen dt-bindings: input: Add documentation for cyttsp5 .../bindings/input/touchscreen/cypress,cyttsp5.txt | 41 + drivers/input/touchscreen/Kconfig | 15 + drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/cyttsp5.c | 1110 ++++++++++++++++++++ 4 files changed, 1167 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/touchscreen/cypress,cyttsp5.txt create mode 100644 drivers/input/touchscreen/cyttsp5.c -- 2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2 0/2] Input: Add Cypress Gen5 Touchscreen driver Mylène Josserand <mylene.josserand@free-electrons.com> - 2017-08-18 08:30 +0200
[PATCH v2 2/2] dt-bindings: input: Add documentation for cyttsp5 Mylène Josserand <mylene.josserand@free-electrons.com> - 2017-08-18 08:30 +0200
Re: [PATCH v2 2/2] dt-bindings: input: Add documentation for cyttsp5 Rob Herring <robh@kernel.org> - 2017-08-22 04:50 +0200
[PATCH v2 1/2] Input: Add driver for Cypress Generation 5 touchscreen Mylène Josserand <mylene.josserand@free-electrons.com> - 2017-08-18 08:30 +0200
Re: [PATCH v2 1/2] Input: Add driver for Cypress Generation 5 touchscreen Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-08-21 22:30 +0200
csiph-web