2019-05-13 20:13:45

by Dmitry Torokhov

[permalink] [raw]
Subject: [git pull] Input updates for v5.2-rc0

Hi Linus,

Please pull from:

git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus

to receive updates for the input subsystem. You will get a few new
drivers:

- driver for Azoteq IQS550/572/525 touch controllers
- driver for Microchip AT42QT1050 keys
- driver for GPIO controllable vibrators
- support for GT5663 in Goodix driver

along with miscellaneous driver fixes.


Changelog:
---------

Andy Shevchenko (2):
Input: edt-ft5x06 - enable ACPI enumeration
Input: edt-ft5x06 - convert to use SPDX identifier

Anson Huang (1):
Input: snvs_pwrkey - use dev_pm_set_wake_irq() to simplify code

Dmitry Torokhov (3):
Input: i8042 - signal wakeup from atkbd/psmouse
Input: add KEY_KBD_LAYOUT_NEXT
HID: input: add mapping for KEY_KBD_LAYOUT_NEXT

Gustavo A. R. Silva (2):
Input: evdev - use struct_size() in kzalloc() and vzalloc()
Input: libps2 - mark expected switch fall-through

Jagan Teki (2):
Input: goodix - add regulators suppot
Input: goodix - add GT5663 CTP support

Jean Delvare (1):
Input: olpc_apsp - depend on ARCH_MMP

Jeff LaBundy (1):
Input: add support for Azoteq IQS550/572/525

Joseph Salisbury (1):
Input: hyperv-keyboard - add module description

Luca Weiss (1):
Input: add a driver for GPIO controllable vibrators

Marco Felsch (1):
Input: qt1050 - add Microchip AT42QT1050 support

Philipp Zabel (2):
Input: synaptics-rmi4 - fill initial format
Input: synaptics-rmi4 - fix enum_fmt

Vladimir Zapolskiy (1):
Input: lpc32xx-key - add clocks property and fix DT binding example

Ziping Chen (1):
Input: sun4i-a10-lradc-keys - add support for A83T

Diffstat:
--------

.../devicetree/bindings/input/gpio-vibrator.yaml | 37 +
.../devicetree/bindings/input/lpc32xx-key.txt | 5 +-
.../devicetree/bindings/input/microchip,qt1050.txt | 78 ++
.../devicetree/bindings/input/sun4i-lradc-keys.txt | 6 +-
.../bindings/input/touchscreen/goodix.txt | 3 +
.../bindings/input/touchscreen/iqs5xx.txt | 80 ++
.../devicetree/bindings/vendor-prefixes.txt | 1 +
drivers/hid/hid-input.c | 2 +
drivers/input/evdev.c | 7 +-
drivers/input/keyboard/Kconfig | 11 +
drivers/input/keyboard/Makefile | 1 +
drivers/input/keyboard/atkbd.c | 2 +
drivers/input/keyboard/qt1050.c | 598 +++++++++++
drivers/input/keyboard/snvs_pwrkey.c | 30 +-
drivers/input/keyboard/sun4i-lradc-keys.c | 38 +-
drivers/input/misc/Kconfig | 12 +
drivers/input/misc/Makefile | 1 +
drivers/input/misc/gpio-vibra.c | 207 ++++
drivers/input/mouse/psmouse-base.c | 2 +
drivers/input/rmi4/rmi_f54.c | 21 +-
drivers/input/serio/Kconfig | 1 +
drivers/input/serio/hyperv-keyboard.c | 2 +
drivers/input/serio/i8042.c | 3 -
drivers/input/serio/libps2.c | 1 +
drivers/input/touchscreen/Kconfig | 10 +
drivers/input/touchscreen/Makefile | 1 +
drivers/input/touchscreen/edt-ft5x06.c | 23 +-
drivers/input/touchscreen/goodix.c | 54 +
drivers/input/touchscreen/iqs5xx.c | 1133 ++++++++++++++++++++
include/uapi/linux/input-event-codes.h | 1 +
30 files changed, 2297 insertions(+), 74 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/gpio-vibrator.yaml
create mode 100644 Documentation/devicetree/bindings/input/microchip,qt1050.txt
create mode 100644 Documentation/devicetree/bindings/input/touchscreen/iqs5xx.txt
create mode 100644 drivers/input/keyboard/qt1050.c
create mode 100644 drivers/input/misc/gpio-vibra.c
create mode 100644 drivers/input/touchscreen/iqs5xx.c

Thanks.


--
Dmitry


2019-05-13 22:56:24

by pr-tracker-bot

[permalink] [raw]
Subject: Re: [git pull] Input updates for v5.2-rc0

The pull request you sent on Mon, 13 May 2019 13:12:35 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0aed4b28187078565cafbfe86b62f941d580d840

Thank you!

--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

2019-05-14 16:32:13

by Lukas Wunner

[permalink] [raw]
Subject: Re: [git pull] Input updates for v5.2-rc0

On Mon, May 13, 2019 at 01:12:35PM -0700, Dmitry Torokhov wrote:
> Please pull from:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus
>
> to receive updates for the input subsystem. You will get a few new
> drivers:
>
> - driver for Azoteq IQS550/572/525 touch controllers
> - driver for Microchip AT42QT1050 keys
> - driver for GPIO controllable vibrators
> - support for GT5663 in Goodix driver

This is missing the driver to support the keyboard and trackpad
on 2015+ MacBooks and MacBook Pros / Airs. Those machines make up
a large segment of the laptop market and are pretty much unusable
on Linux without the driver:

https://www.spinics.net/lists/dri-devel/msg207174.html

The patches have gone through 7 iterations, have been reviewed
extensively, all review comments were addressed properly and
the code is now in excellent shape. The last iteration was
posted to the list 1 month ago, well in time to make it into
this merge window. So I don't understand why it's not part
of this pull request.

Please consider submitting a second pull request for the ongoing
merge window with that driver.

Thanks,

Lukas