All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/6] Add cs42l43 PC focused SoundWire CODEC
@ 2023-07-25 10:25 Charles Keepax
  2023-07-25 10:25 ` [PATCH v6 1/6] soundwire: bus: Allow SoundWire peripherals to register IRQ handlers Charles Keepax
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Charles Keepax @ 2023-07-25 10:25 UTC (permalink / raw)
  To: broonie, lee, vkoul
  Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, linus.walleij,
	lgirdwood, yung-chuan.liao, sanyog.r.kale, pierre-louis.bossart,
	alsa-devel, patches, devicetree, linux-gpio, linux-spi,
	linux-kernel

This patch chain adds support for the Cirrus Logic cs42l43 PC focused
SoundWire CODEC. The chain is currently based of Lee's for-mfd-next
branch.

This series is mostly just a resend keeping pace with the kernel under
it, except for a minor fixup in the spi stuff.

Thanks,
Charles

Charles Keepax (4):
  dt-bindings: mfd: cirrus,cs42l43: Add initial DT binding
  mfd: cs42l43: Add support for cs42l43 core driver
  pinctrl: cs42l43: Add support for the cs42l43
  ASoC: cs42l43: Add support for the cs42l43

Lucas Tanure (2):
  soundwire: bus: Allow SoundWire peripherals to register IRQ handlers
  spi: cs42l43: Add SPI controller support

 .../bindings/sound/cirrus,cs42l43.yaml        |  313 +++
 MAINTAINERS                                   |    4 +
 drivers/mfd/Kconfig                           |   23 +
 drivers/mfd/Makefile                          |    3 +
 drivers/mfd/cs42l43-i2c.c                     |   98 +
 drivers/mfd/cs42l43-sdw.c                     |  239 ++
 drivers/mfd/cs42l43.c                         | 1189 +++++++++
 drivers/mfd/cs42l43.h                         |   28 +
 drivers/pinctrl/cirrus/Kconfig                |   11 +
 drivers/pinctrl/cirrus/Makefile               |    2 +
 drivers/pinctrl/cirrus/pinctrl-cs42l43.c      |  609 +++++
 drivers/soundwire/bus.c                       |   32 +
 drivers/soundwire/bus_type.c                  |   12 +
 drivers/spi/Kconfig                           |    7 +
 drivers/spi/Makefile                          |    1 +
 drivers/spi/spi-cs42l43.c                     |  284 ++
 include/linux/mfd/cs42l43-regs.h              | 1184 +++++++++
 include/linux/mfd/cs42l43.h                   |  102 +
 include/linux/soundwire/sdw.h                 |    9 +
 include/sound/cs42l43.h                       |   17 +
 sound/soc/codecs/Kconfig                      |   16 +
 sound/soc/codecs/Makefile                     |    4 +
 sound/soc/codecs/cs42l43-jack.c               |  969 +++++++
 sound/soc/codecs/cs42l43-sdw.c                |   74 +
 sound/soc/codecs/cs42l43.c                    | 2278 +++++++++++++++++
 sound/soc/codecs/cs42l43.h                    |  131 +
 26 files changed, 7639 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/sound/cirrus,cs42l43.yaml
 create mode 100644 drivers/mfd/cs42l43-i2c.c
 create mode 100644 drivers/mfd/cs42l43-sdw.c
 create mode 100644 drivers/mfd/cs42l43.c
 create mode 100644 drivers/mfd/cs42l43.h
 create mode 100644 drivers/pinctrl/cirrus/pinctrl-cs42l43.c
 create mode 100644 drivers/spi/spi-cs42l43.c
 create mode 100644 include/linux/mfd/cs42l43-regs.h
 create mode 100644 include/linux/mfd/cs42l43.h
 create mode 100644 include/sound/cs42l43.h
 create mode 100644 sound/soc/codecs/cs42l43-jack.c
 create mode 100644 sound/soc/codecs/cs42l43-sdw.c
 create mode 100644 sound/soc/codecs/cs42l43.c
 create mode 100644 sound/soc/codecs/cs42l43.h

-- 
2.30.2


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-07-31 11:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-25 10:25 [PATCH v6 0/6] Add cs42l43 PC focused SoundWire CODEC Charles Keepax
2023-07-25 10:25 ` [PATCH v6 1/6] soundwire: bus: Allow SoundWire peripherals to register IRQ handlers Charles Keepax
2023-07-28 15:18   ` Lee Jones
2023-07-28 16:44     ` Pierre-Louis Bossart
2023-07-31  1:03       ` Liao, Bard
2023-07-31 11:29   ` Vinod Koul
2023-07-25 10:25 ` [PATCH v6 2/6] dt-bindings: mfd: cirrus,cs42l43: Add initial DT binding Charles Keepax
2023-07-25 10:25 ` [PATCH v6 3/6] mfd: cs42l43: Add support for cs42l43 core driver Charles Keepax
2023-07-25 10:25 ` [PATCH v6 4/6] pinctrl: cs42l43: Add support for the cs42l43 Charles Keepax
2023-07-25 10:25 ` [PATCH v6 5/6] spi: cs42l43: Add SPI controller support Charles Keepax
2023-07-25 10:25 ` [PATCH v6 6/6] ASoC: cs42l43: Add support for the cs42l43 Charles Keepax

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.