From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org
Subject: [git pull] Input updates for v6.4-rc0
Date: Mon, 1 May 2023 16:24:15 -0700 [thread overview]
Message-ID: <ZFBKHyTky9YhQv+s@google.com> (raw)
Hi Linus,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git tags/input-for-v6.4-rc0
to receive updates for the input subsystem. You will get:
- a new driver for Novatek touch controllers
- a new driver for power button for NXP BBNSM
- a skeleton KUnit tests for the input core
- improvements to Xpad game controller driver to support more devices
- improvements to edt-ft5x06, hideep and other drivers
Changelog:
---------
Andy Shevchenko (1):
Input: matrix_keypad - replace header inclusions by forward declarations
Benjamin Bara (1):
Input: tsc2007 - enable cansleep pendown GPIO
Daniel Golle (1):
Input: edt-ft5x06 - select REGMAP_I2C
Dario Binacchi (9):
Input: edt-ft5x06 - fix indentation
Input: edt-ft5x06 - remove unnecessary blank lines
Input: edt-ft5x06 - add spaces to ensure format specification
Input: edt-ft5x06 - don't recalculate the CRC
Input: edt-ft5x06 - remove code duplication
Input: edt-ft5x06 - don't print error messages with dev_dbg()
Input: edt-ft5x06 - convert to use regmap API
Input: edt-ft5x06 - unify the crc check
Input: edt-ft5x06 - calculate points data length only once
Dmitry Torokhov (2):
ARM: spitz: include header defining input event codes
Revert "Input: xpad - fix support for some third-party controllers"
Gergo Koteles (1):
Input: gpio-keys - add support for linux,input-value DTS property
Hans de Goede (3):
Input: hideep - silence error in SW_RESET()
Input: hideep - optionally reset controller work mode to native HiDeep protocol
Input: add a new Novatek NVT-ts driver
Jacky Bai (1):
Input: bbnsm_pwrkey - add bbnsm power key support
Javier Martinez Canillas (1):
Input: Add KUnit tests for some of the input core helper functions
Jiapeng Chong (2):
Input: cma3000_d0x - remove unneeded code
Input: synaptics-rmi4 - fix function name in kerneldoc
JungHoon Hyun (1):
Input: melfas_mip4 - report palm touches
Krzysztof Kozlowski (4):
Input: st-keyscan - drop of_match_ptr for ID table
Input: tm2-touchkey - drop of_match_ptr for ID table
Input: sun4i-ts - drop of_match_ptr for ID table
Input: bcm_iproc_tsc - drop of_match_ptr for ID table
Linus Walleij (1):
dt-bindings: google,cros-ec-keyb: Fix spelling error
Miaoqian Lin (1):
Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe
Peng Fan (1):
dt-bindings: input: pwm-beeper: convert to dt schema
Pierre-Loup A. Griffais (1):
Input: xpad - treat Qanba controllers as Xbox360 controllers
Randy Dunlap (1):
Input: hp_sdc_rtc - mark an unused function as __maybe_unused
Rob Herring (3):
Input: Use of_property_read_bool() for boolean properties
Input: zinitix - use of_property_present() for testing DT property presence
dt-bindings: input: Drop unneeded quotes
Uwe Kleine-König (1):
Input: iqs62x-keys - suppress duplicated error message in .remove()
Vicki Pfau (5):
Input: xpad - remove unused field in VID/PID table
Input: xpad - add VID for Turtle Beach controllers
Input: xpad - fix support for some third-party controllers
Input: xpad - add constants for GIP interface numbers
Input: xpad - fix PowerA EnWired Controller guide button
Yang Li (1):
Input: hideep - clean up some inconsistent indenting
Diffstat:
--------
.../bindings/input/google,cros-ec-keyb.yaml | 2 +-
.../devicetree/bindings/input/pwm-beeper.txt | 24 -
.../devicetree/bindings/input/pwm-beeper.yaml | 41 ++
MAINTAINERS | 6 +
arch/arm/mach-pxa/spitz.c | 1 +
drivers/input/Kconfig | 10 +
drivers/input/Makefile | 1 +
drivers/input/joystick/xpad.c | 23 +-
drivers/input/keyboard/gpio_keys.c | 3 +
drivers/input/keyboard/iqs62x-keys.c | 2 +-
drivers/input/keyboard/matrix_keypad.c | 6 +-
drivers/input/keyboard/omap4-keypad.c | 3 +-
drivers/input/keyboard/samsung-keypad.c | 3 +-
drivers/input/keyboard/st-keyscan.c | 2 +-
drivers/input/keyboard/tegra-kbc.c | 3 +-
drivers/input/keyboard/tm2-touchkey.c | 2 +-
drivers/input/misc/Kconfig | 11 +
drivers/input/misc/Makefile | 1 +
drivers/input/misc/cma3000_d0x.c | 2 -
drivers/input/misc/hp_sdc_rtc.c | 2 +-
drivers/input/misc/nxp-bbnsm-pwrkey.c | 193 ++++++++
drivers/input/rmi4/rmi_bus.c | 2 +-
drivers/input/tests/.kunitconfig | 3 +
drivers/input/tests/Makefile | 3 +
drivers/input/tests/input_test.c | 150 +++++++
drivers/input/touchscreen/Kconfig | 11 +
drivers/input/touchscreen/Makefile | 1 +
drivers/input/touchscreen/bcm_iproc_tsc.c | 2 +-
drivers/input/touchscreen/edt-ft5x06.c | 496 +++++++++++----------
drivers/input/touchscreen/hideep.c | 33 +-
drivers/input/touchscreen/melfas_mip4.c | 19 +-
drivers/input/touchscreen/novatek-nvt-ts.c | 301 +++++++++++++
drivers/input/touchscreen/raspberrypi-ts.c | 3 +-
drivers/input/touchscreen/sun4i-ts.c | 2 +-
drivers/input/touchscreen/tsc2007_core.c | 17 +-
drivers/input/touchscreen/zinitix.c | 2 +-
include/linux/input/matrix_keypad.h | 5 +-
37 files changed, 1067 insertions(+), 324 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/input/pwm-beeper.txt
create mode 100644 Documentation/devicetree/bindings/input/pwm-beeper.yaml
create mode 100644 drivers/input/misc/nxp-bbnsm-pwrkey.c
create mode 100644 drivers/input/tests/.kunitconfig
create mode 100644 drivers/input/tests/Makefile
create mode 100644 drivers/input/tests/input_test.c
create mode 100644 drivers/input/touchscreen/novatek-nvt-ts.c
Thanks.
--
Dmitry
next reply other threads:[~2023-05-01 23:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-01 23:24 Dmitry Torokhov [this message]
2023-05-02 0:29 ` [git pull] Input updates for v6.4-rc0 pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZFBKHyTky9YhQv+s@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.