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 updates to Goodix touchscreen driver (addition of pen support) and Silead touchscreen driver (also addition of pen support and parsing of embedded firmware to determine screen size), along with assorted fixes for other drivers. Note that you will get a merge conflict in axp20x-pek driver, please resolve it so it looks as follows (axp20x_pek_probe): axp20x_pek->axp20x = dev_get_drvdata(pdev->dev.parent); if (axp20x_pek_should_register_input(axp20x_pek)) { error = axp20x_pek_probe_input_device(axp20x_pek, pdev); if (error) return error; } Changelog: --------- Alistair Francis (1): Input: wacom_i2c - clean up the query device fields Charles Keepax (1): Input: ff-core - correct magnitude setting for rumble compatibility Christophe JAILLET (1): Input: gpio-keys - avoid clearing twice some memory Colin Ian King (2): Input: palmas-pwrbutton - make a couple of arrays static const Input: ucb1400_ts - remove redundant variable penup Dario Binacchi (3): Input: ti_am335x_tsc - set ADCREFM for X configuration Input: ti_am335x_tsc - fix STEPCONFIG setup for Z2 Input: ti_am335x_tsc - lower the X and Y sampling time Geert Uytterhoeven (1): Input: palmas-pwrbutton - use bitfield helpers Hans de Goede (6): Input: goodix - add pen support Input: goodix - improve gpiod_get() error logging Input: goodix - 2 small fixes for pen support Input: silead - add support for EFI-embedded fw using different min/max coordinates Input: silead - add pen support Input: axp20x-pek - revert "always register interrupt handlers" change Linus Walleij (2): dt-bindings: input/ts/zinitix: Convert to YAML, fix and extend Input: zinitix - handle proper supply names Nikita Travkin (1): Input: zinitix - add compatible for bt532 Qinghua Jin (1): Input: ti_am335x_tsc - fix a typo in a comment Xiang wangx (1): Input: byd - fix typo in a comment Diffstat: -------- .../bindings/input/touchscreen/zinitix,bt400.yaml | 115 ++++++++++++++ .../bindings/input/touchscreen/zinitix.txt | 40 ----- drivers/input/ff-core.c | 2 +- drivers/input/keyboard/gpio_keys.c | 2 +- drivers/input/misc/axp20x-pek.c | 72 +++++---- drivers/input/misc/palmas-pwrbutton.c | 9 +- drivers/input/mouse/byd.c | 2 +- drivers/input/touchscreen/goodix.c | 127 ++++++++++++++- drivers/input/touchscreen/goodix.h | 1 + drivers/input/touchscreen/silead.c | 172 ++++++++++++++++++++- drivers/input/touchscreen/ti_am335x_tsc.c | 20 ++- drivers/input/touchscreen/ucb1400_ts.c | 4 +- drivers/input/touchscreen/wacom_i2c.c | 44 +++--- drivers/input/touchscreen/zinitix.c | 22 ++- 14 files changed, 507 insertions(+), 125 deletions(-) create mode 100644 Documentation/devicetree/bindings/input/touchscreen/zinitix,bt400.yaml delete mode 100644 Documentation/devicetree/bindings/input/touchscreen/zinitix.txt Thanks. -- Dmitry