devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8] add UniPhier audio system support
@ 2017-11-22 11:43 Katsuhiro Suzuki
  2017-11-22 11:43 ` [PATCH 1/8] ASoC: spdif: Add S32_LE support for S/PDIF dummy codec drivers Katsuhiro Suzuki
                   ` (7 more replies)
  0 siblings, 8 replies; 28+ messages in thread
From: Katsuhiro Suzuki @ 2017-11-22 11:43 UTC (permalink / raw)
  To: Mark Brown, alsa-devel, Rob Herring, devicetree, Masahiro Yamada
  Cc: Masami Hiramatsu, Jassi Brar, linux-arm-kernel, linux-kernel,
	Katsuhiro Suzuki

This series adds support for Socionext audio system for
UniPhier LD11/LD20 SoCs. This driver supports I2S output
for Line-In, Line-Out and S/PDIF output.

UniPhier AIO DAI driver provides sound devices such as I2S, S/PDIF.
Since the AIO has mixed register map for those I/Os, it is hard to
split register areas for each sound devices.

UniPhier EVEA is a codec core for Line-In, Line-Out. Since this core
is only in internal of UniPhier series SoC, this driver works
independently but only UniPhier SoC can use it.

Katsuhiro Suzuki (8):
  ASoC: spdif: Add S32_LE support for S/PDIF dummy codec drivers
  ASoC: uniphier: add DT bindings documentation for UniPhier EVEA
  ASoC: uniphier: add DT bindings documentation for UniPhier AIO
  ASoC: uniphier: add support for UniPhier EVEA codec
  ASoC: uniphier: add support for UniPhier AIO driver
  ASoC: uniphier: add support for UniPhier LD11/LD20 AIO driver
  MAINTAINERS: add entries for UniPhier ASoC sound drivers
  arm64: dts: uniphier: add sound node for UniPhier

 .../devicetree/bindings/sound/uniphier,aio.txt     |  36 ++
 .../devicetree/bindings/sound/uniphier,evea.txt    |  26 +
 MAINTAINERS                                        |   6 +
 .../boot/dts/socionext/uniphier-ld11-global.dts    |  72 +++
 arch/arm64/boot/dts/socionext/uniphier-ld11.dtsi   |  31 +
 .../boot/dts/socionext/uniphier-ld20-global.dts    |  72 +++
 arch/arm64/boot/dts/socionext/uniphier-ld20.dtsi   |  35 ++
 sound/soc/Kconfig                                  |   1 +
 sound/soc/Makefile                                 |   1 +
 sound/soc/codecs/spdif_receiver.c                  |   5 +-
 sound/soc/codecs/spdif_transmitter.c               |   5 +-
 sound/soc/uniphier/Kconfig                         |  34 +
 sound/soc/uniphier/Makefile                        |   8 +
 sound/soc/uniphier/aio-core.c                      | 368 +++++++++++
 sound/soc/uniphier/aio-dma.c                       | 266 ++++++++
 sound/soc/uniphier/aio-ld11.c                      | 343 ++++++++++
 sound/soc/uniphier/aio-regctrl.c                   | 699 +++++++++++++++++++++
 sound/soc/uniphier/aio-regctrl.h                   | 495 +++++++++++++++
 sound/soc/uniphier/aio.h                           | 261 ++++++++
 sound/soc/uniphier/evea.c                          | 567 +++++++++++++++++
 20 files changed, 3327 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/uniphier,aio.txt
 create mode 100644 Documentation/devicetree/bindings/sound/uniphier,evea.txt
 create mode 100644 sound/soc/uniphier/Kconfig
 create mode 100644 sound/soc/uniphier/Makefile
 create mode 100644 sound/soc/uniphier/aio-core.c
 create mode 100644 sound/soc/uniphier/aio-dma.c
 create mode 100644 sound/soc/uniphier/aio-ld11.c
 create mode 100644 sound/soc/uniphier/aio-regctrl.c
 create mode 100644 sound/soc/uniphier/aio-regctrl.h
 create mode 100644 sound/soc/uniphier/aio.h
 create mode 100644 sound/soc/uniphier/evea.c

-- 
2.15.0

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

end of thread, other threads:[~2018-02-12 12:54 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-22 11:43 [PATCH 0/8] add UniPhier audio system support Katsuhiro Suzuki
2017-11-22 11:43 ` [PATCH 1/8] ASoC: spdif: Add S32_LE support for S/PDIF dummy codec drivers Katsuhiro Suzuki
2017-12-04 18:48   ` Applied "ASoC: spdif: Add S32_LE support for S/PDIF dummy codec drivers" to the asoc tree Mark Brown
2017-11-22 11:43 ` [PATCH 2/8] ASoC: uniphier: add DT bindings documentation for UniPhier EVEA Katsuhiro Suzuki
2017-11-26 19:02   ` Rob Herring
2017-12-04 18:48   ` Applied "ASoC: uniphier: add DT bindings documentation for UniPhier EVEA" to the asoc tree Mark Brown
2017-11-22 11:43 ` [PATCH 3/8] ASoC: uniphier: add DT bindings documentation for UniPhier AIO Katsuhiro Suzuki
     [not found]   ` <20171122114321.29196-4-suzuki.katsuhiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
2017-11-26 19:04     ` Rob Herring
2018-02-12 12:54   ` Applied "ASoC: uniphier: add DT bindings documentation for UniPhier AIO" to the asoc tree Mark Brown
2017-11-22 11:43 ` [PATCH 4/8] ASoC: uniphier: add support for UniPhier EVEA codec Katsuhiro Suzuki
2017-12-04 18:20   ` Mark Brown
2017-12-05  0:58     ` Masahiro Yamada
2017-12-05 11:59       ` Mark Brown
2017-12-04 18:48   ` Applied "ASoC: uniphier: add support for UniPhier EVEA codec" to the asoc tree Mark Brown
2017-11-22 11:43 ` [PATCH 5/8] ASoC: uniphier: add support for UniPhier AIO driver Katsuhiro Suzuki
2017-12-04 18:39   ` Mark Brown
     [not found]     ` <20171204183934.rd4vin22ktukwpip-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2017-12-05  4:48       ` Katsuhiro Suzuki
2017-12-05 12:14         ` Mark Brown
2017-12-06  6:03           ` Katsuhiro Suzuki
2017-12-06 12:58             ` Mark Brown
2017-12-11  9:21               ` Katsuhiro Suzuki
2017-12-11 15:16                 ` Mark Brown
2017-12-11 17:48                   ` [alsa-devel] " Vinod Koul
2017-12-12  4:33                     ` Katsuhiro Suzuki
     [not found] ` <20171122114321.29196-1-suzuki.katsuhiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
2017-11-22 11:43   ` [PATCH 6/8] ASoC: uniphier: add support for UniPhier LD11/LD20 " Katsuhiro Suzuki
2017-11-22 11:43 ` [PATCH 7/8] MAINTAINERS: add entries for UniPhier ASoC sound drivers Katsuhiro Suzuki
     [not found]   ` <20171122114321.29196-8-suzuki.katsuhiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
2017-12-04 18:48     ` Applied "MAINTAINERS: add entries for UniPhier ASoC sound drivers" to the asoc tree Mark Brown
2017-11-22 11:43 ` [PATCH 8/8] arm64: dts: uniphier: add sound node for UniPhier Katsuhiro Suzuki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).