mbox series

[v3,0/2] Cirrus Logic CS35L41 Amplifier

Message ID 20210702205127.1400539-1-drhodes@opensource.cirrus.com (mailing list archive)
Headers show
Series Cirrus Logic CS35L41 Amplifier | expand

Message

Rhodes, David July 2, 2021, 8:51 p.m. UTC
ASoC driver and devicetree documentation for a new
Cirrus Logic amplifier CS35L41

v3 changes:
Removed redundant info from license header
Alphabetized includes
Changed comment on ACPI ID to reflect that vendor portion is a PnP ID
Removed some unnecessary initializations
Changed some uses of (x == NULL) to (!x)

David Rhodes (2):
  ASoC: cs35l41: CS35L41 Boosted Smart Amplifier
  ASoC: cs35l41: Add bindings for CS35L41

 .../devicetree/bindings/sound/cs35l41.yaml    |  395 ++++
 include/sound/cs35l41.h                       |   79 +
 sound/soc/codecs/Kconfig                      |   12 +
 sound/soc/codecs/Makefile                     |    4 +
 sound/soc/codecs/cs35l41-i2c.c                |  120 ++
 sound/soc/codecs/cs35l41-spi.c                |  147 ++
 sound/soc/codecs/cs35l41-tables.c             |  612 ++++++
 sound/soc/codecs/cs35l41.c                    | 1765 +++++++++++++++++
 sound/soc/codecs/cs35l41.h                    |  750 +++++++
 9 files changed, 3884 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/sound/cs35l41.yaml
 create mode 100644 include/sound/cs35l41.h
 create mode 100644 sound/soc/codecs/cs35l41-i2c.c
 create mode 100644 sound/soc/codecs/cs35l41-spi.c
 create mode 100644 sound/soc/codecs/cs35l41-tables.c
 create mode 100644 sound/soc/codecs/cs35l41.c
 create mode 100644 sound/soc/codecs/cs35l41.h