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.9-rc0
Date: Sat, 16 Mar 2024 23:20:51 -0700 [thread overview]
Message-ID: <ZfaLw1CiHZDSXCLo@google.com> (raw)
Hi Linus,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git tags/input-for-v6.9-rc0
to receive updates for the input subsystem. You will get:
- a new driver for Goodix Berlin I2C and SPI touch controllers
- support for IQS7222D v1.1 and v1.2 in iqs7222 driver
- support for IST3032C and IST3038B parts in Imagis touchscreen driver
- support for touch keys for Imagis touchscreen controllers
- support for Snakebyte GAMEPADs in xpad driver
- various cleanups and conversions to yaml for device tree bindings
- assorted fixes and cleanups
- old Synaptics navpoint driver has been removed since the only board
that used it (HP iPAQ hx4700) was removed a while ago.
Changelog:
---------
Bernhard Seibold (1):
Input: leds - set default-trigger for mute
Brenton Simpson (1):
Input: xpad - sort xpad_device by vendor and product ID
Christophe JAILLET (1):
Input: remove usage of the deprecated ida_simple_xx() API
Colin Ian King (1):
Input: ti_am335x_tsc - remove redundant assignment to variable config
Dharma Balasubiramani (1):
dt-bindings: input: atmel,captouch: convert bindings to YAML
Dmitry Torokhov (3):
Input: matrix_keypad - avoid repeatedly converting GPIO to IRQ
Input: matrix_keypad - consolidate handling of clustered interrupt
Input: matrix_keypad - switch to using managed resources
Duje Mihanović (5):
Input: navpoint - remove driver
Input: 88pm80x_onkey - add SPDX and drop GPL boilerplate
Input: imagis - use FIELD_GET where applicable
dt-bindings: input: imagis: Document touch keys
Input: imagis - add touch key support
Heiner Kallweit (1):
Input: leds - change config symbol dependency for audio mute trigger
Jeff LaBundy (1):
Input: iqs7222 - add support for IQS7222D v1.1 and v1.2
Karel Balej (2):
dt-bindings: input/touchscreen: imagis: add compatible for IST3032C
input/touchscreen: imagis: add support for IST3032C
Krzysztof Kozlowski (3):
dt-bindings: input: silead,gsl1680: do not override firmware-name $ref
dt-bindings: input: allwinner,sun4i-a10-lrad: drop redundant type from label
dt-bindings: input: samsung,s3c6410-keypad: convert to DT Schema
Kunwu Chan (1):
Input: synaptics-rmi4 - fail probing if memory allocation for "phys" fails
Luca Ceresoli (1):
dt-bindings: input: touchscreen: goodix: clarify irq-gpios misleading text
Luca Weiss (1):
dt-bindings: input: melfas,mms114: add MMS252 compatible
Markuss Broks (3):
input/touchscreen: imagis: Correct the maximum touch area value
dt-bindings: input/touchscreen: Add compatible for IST3038B
input/touchscreen: imagis: Add support for Imagis IST3038B
Matt Scialabba (1):
Input: xpad - add support for Snakebyte GAMEPADs
Neil Armstrong (4):
dt-bindings: input: document Goodix Berlin Touchscreen IC
Input: add core support for Goodix Berlin Touchscreen IC
Input: goodix-berlin - add I2C support for Goodix Berlin Touchscreen IC
Input: goodix-berlin - add SPI support for Goodix Berlin Touchscreen IC
Ricardo B. Marliere (4):
Input: gameport - make gameport_bus const
Input: synaptics-rmi4 - make rmi_bus_type const
Input: serio - make serio_bus const
Input: make input_class constant
Ruan Jinjie (1):
Input: bcm-keypad - remove redundant of_match_ptr()
Yang Li (1):
Input: xilinx_ps2 - fix kernel-doc for xps2_of_probe function
Diffstat:
--------
.../input/allwinner,sun4i-a10-lradc-keys.yaml | 1 -
.../devicetree/bindings/input/atmel,captouch.txt | 36 -
.../devicetree/bindings/input/atmel,captouch.yaml | 59 ++
.../bindings/input/samsung,s3c6410-keypad.yaml | 121 ++++
.../devicetree/bindings/input/samsung-keypad.txt | 77 ---
.../bindings/input/touchscreen/goodix,gt9916.yaml | 95 +++
.../bindings/input/touchscreen/goodix.yaml | 5 +-
.../input/touchscreen/imagis,ist3038c.yaml | 21 +-
.../bindings/input/touchscreen/melfas,mms114.yaml | 6 +-
.../bindings/input/touchscreen/silead,gsl1680.yaml | 2 +-
.../devicetree/bindings/power/wakeup-source.txt | 2 +-
drivers/input/gameport/gameport.c | 4 +-
drivers/input/input-leds.c | 8 +-
drivers/input/input.c | 16 +-
drivers/input/joystick/xpad.c | 14 +-
drivers/input/keyboard/bcm-keypad.c | 2 +-
drivers/input/keyboard/matrix_keypad.c | 170 ++---
drivers/input/misc/88pm80x_onkey.c | 14 +-
drivers/input/misc/iqs7222.c | 112 +++
drivers/input/mouse/Kconfig | 12 -
drivers/input/mouse/Makefile | 1 -
drivers/input/mouse/navpoint.c | 350 ----------
drivers/input/rmi4/rmi_bus.c | 2 +-
drivers/input/rmi4/rmi_bus.h | 2 +-
drivers/input/rmi4/rmi_driver.c | 6 +-
drivers/input/serio/serio.c | 2 +-
drivers/input/serio/xilinx_ps2.c | 3 +-
drivers/input/touchscreen/Kconfig | 31 +
drivers/input/touchscreen/Makefile | 3 +
drivers/input/touchscreen/goodix_berlin.h | 24 +
drivers/input/touchscreen/goodix_berlin_core.c | 755 +++++++++++++++++++++
drivers/input/touchscreen/goodix_berlin_i2c.c | 75 ++
drivers/input/touchscreen/goodix_berlin_spi.c | 178 +++++
drivers/input/touchscreen/imagis.c | 118 +++-
drivers/input/touchscreen/ti_am335x_tsc.c | 1 -
include/linux/input.h | 2 +-
include/linux/input/navpoint.h | 8 -
include/linux/serio.h | 2 +-
38 files changed, 1669 insertions(+), 671 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/input/atmel,captouch.txt
create mode 100644 Documentation/devicetree/bindings/input/atmel,captouch.yaml
create mode 100644 Documentation/devicetree/bindings/input/samsung,s3c6410-keypad.yaml
delete mode 100644 Documentation/devicetree/bindings/input/samsung-keypad.txt
create mode 100644 Documentation/devicetree/bindings/input/touchscreen/goodix,gt9916.yaml
delete mode 100644 drivers/input/mouse/navpoint.c
create mode 100644 drivers/input/touchscreen/goodix_berlin.h
create mode 100644 drivers/input/touchscreen/goodix_berlin_core.c
create mode 100644 drivers/input/touchscreen/goodix_berlin_i2c.c
create mode 100644 drivers/input/touchscreen/goodix_berlin_spi.c
delete mode 100644 include/linux/input/navpoint.h
Thanks.
--
Dmitry
next reply other threads:[~2024-03-17 6:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-17 6:20 Dmitry Torokhov [this message]
2024-03-17 19:34 ` [git pull] Input updates for v6.9-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=ZfaLw1CiHZDSXCLo@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.