[PATCH v4 0/4] Add support for CS40L50

From: James Ogletree
Date: Wed Oct 18 2023 - 13:58:15 EST


From: James Ogletree <james.ogletree@xxxxxxxxxx>

This patch series adds support for Cirrus Logic CS40L50, a haptic driver.

While I2S streaming to the device will need to be supported in the future,
no codec driver is included in this submission and therefore this MFD
driver has just one component. A bare bones codec driver can be created
and included if maintainers prefer.

Changes in v4:
- Move from Input to MFD
- Move common Cirrus haptic functions to a library
- Incorporate runtime PM framework
- Coding style related improvements

Changes in v3:
- YAML formatting corrections
- Fix typo in MAINTAINERS
- Use generic node name "haptic-driver"
- Fix probe error code paths
- Use sizeof(*)
- Remove tree reference in MAINTAINERS

Changes in v2:
- Fix checkpatch warnings

James Ogletree (4):
dt-bindings: input: cirrus,cs40l50: Add initial DT binding
Input: cs40l50 - Add cirrus haptics base support
mfd: cs40l50: Add support for CS40L50 core driver
Input: cs40l50 - Add support for the CS40L50 haptic driver

.../bindings/input/cirrus,cs40l50.yaml | 70 +++
MAINTAINERS | 13 +
drivers/input/misc/Kconfig | 10 +
drivers/input/misc/Makefile | 1 +
drivers/input/misc/cirrus_haptics.c | 586 ++++++++++++++++++
drivers/input/misc/cs40l50-vibra.c | 353 +++++++++++
drivers/mfd/Kconfig | 30 +
drivers/mfd/Makefile | 4 +
drivers/mfd/cs40l50-core.c | 443 +++++++++++++
drivers/mfd/cs40l50-i2c.c | 69 +++
drivers/mfd/cs40l50-spi.c | 68 ++
include/linux/input/cirrus_haptics.h | 121 ++++
include/linux/mfd/cs40l50.h | 198 ++++++
13 files changed, 1966 insertions(+)
create mode 100644 Documentation/devicetree/bindings/input/cirrus,cs40l50.yaml
create mode 100644 drivers/input/misc/cirrus_haptics.c
create mode 100644 drivers/input/misc/cs40l50-vibra.c
create mode 100644 drivers/mfd/cs40l50-core.c
create mode 100644 drivers/mfd/cs40l50-i2c.c
create mode 100644 drivers/mfd/cs40l50-spi.c
create mode 100644 include/linux/input/cirrus_haptics.h
create mode 100644 include/linux/mfd/cs40l50.h

--
2.25.1