All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/9]  asoc: Add audio for sti platforms
@ 2015-06-22 14:31 Arnaud Pouliquen
  2015-06-22 14:31 ` [PATCH v3 1/9] ASoC: sti: add binding for ASoC driver Arnaud Pouliquen
                   ` (8 more replies)
  0 siblings, 9 replies; 28+ messages in thread
From: Arnaud Pouliquen @ 2015-06-22 14:31 UTC (permalink / raw)
  To: alsa-devel; +Cc: broonie, arnaud.pouliquen, lgirdwood, kernel

version 3 : 
	- patch dependency:
           ASoC: simple card: set cpu-dai sysclk with mclk-fs (Arnaud Pouliquen)
           
	- Remark not applied:
              Use Russell King's patch "sound/core: add IEC958 channel status helper".
              => This allows to create settings based on runtime, but not compatible with
                   iec958 controls exposed to userland (settings overwritten by  
                   snd_pcm_create_iec958_consumer)
	- main corrections:
        	- rework DAI CPU declaration to use generic dma
                - Supress abstraction layer for uniperiph player/reader
                - use dapm for DAC powerup/down
        
version 2: corrections after first review
	- bindings:
		. suppress useless dts declaration

	- uniperif_player.c:
		. Suppress standby mode in uniplayer ( will be part of a dedicated patch)
		. Deliver IEC and clock adjustement controls in separate patch
	- uniperif_reader.c:
		. kept as separate file as behavior and feature not same than uniplayer
		. minor corrections
	- codec/sti-sas.c
		. implement DAPM for DAC
		. rework registers declaration to separate device and driver part

version 1:
	- First patches submission

Arnaud Pouliquen (9):
  ASoC: sti: add binding for ASoC driver
  ASoC: sti: Add uniperipheral header file
  ASoC: sti: Add CPU DAI driver for playback
  ASoC: sti: Add CPU DAI driver for capture
  ASoC: sti: Add uniperipheral dai driver
  ASoC: Add ability to build sti drivers
  ASoC: Codec: Add sti platform codec
  ASoC: sti: Add clock adjustement control
  ASoC: sti: Add IEC control

 .../devicetree/bindings/sound/st,sti-asoc-card.txt |  155 +++
 sound/soc/Kconfig                                  |    1 +
 sound/soc/Makefile                                 |    1 +
 sound/soc/codecs/Kconfig                           |    5 +
 sound/soc/codecs/Makefile                          |    2 +
 sound/soc/codecs/sti-sas.c                         |  627 ++++++++++
 sound/soc/sti/Kconfig                              |   11 +
 sound/soc/sti/Makefile                             |    4 +
 sound/soc/sti/sti_uniperif.c                       |  254 ++++
 sound/soc/sti/uniperif.h                           | 1229 ++++++++++++++++++++
 sound/soc/sti/uniperif_player.c                    | 1109 ++++++++++++++++++
 sound/soc/sti/uniperif_reader.c                    |  364 ++++++
 12 files changed, 3762 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
 create mode 100644 sound/soc/codecs/sti-sas.c
 create mode 100644 sound/soc/sti/Kconfig
 create mode 100644 sound/soc/sti/Makefile
 create mode 100644 sound/soc/sti/sti_uniperif.c
 create mode 100644 sound/soc/sti/uniperif.h
 create mode 100644 sound/soc/sti/uniperif_player.c
 create mode 100644 sound/soc/sti/uniperif_reader.c

-- 
1.9.1

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

end of thread, other threads:[~2015-09-09  9:56 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-22 14:31 [PATCH v3 0/9] asoc: Add audio for sti platforms Arnaud Pouliquen
2015-06-22 14:31 ` [PATCH v3 1/9] ASoC: sti: add binding for ASoC driver Arnaud Pouliquen
2015-06-22 15:04   ` [STLinux Kernel] " Maxime Coquelin
2015-07-10 18:08   ` Applied "ASoC: sti: add binding for ASoC driver" to the asoc tree Mark Brown
2015-06-22 14:31 ` [PATCH v3 2/9] ASoC: sti: Add uniperipheral header file Arnaud Pouliquen
2015-06-22 14:31 ` [PATCH v3 3/9] ASoC: sti: Add CPU DAI driver for playback Arnaud Pouliquen
2015-07-10 17:00   ` Mark Brown
2015-07-15  9:28     ` Arnaud Pouliquen
2015-07-10 18:08   ` Applied "ASoC: sti: Add CPU DAI driver for playback" to the asoc tree Mark Brown
2015-06-22 14:31 ` [PATCH v3 4/9] ASoC: sti: Add CPU DAI driver for capture Arnaud Pouliquen
2015-07-10 17:26   ` Mark Brown
2015-07-15  9:31     ` Arnaud Pouliquen
2015-06-22 14:31 ` [PATCH v3 5/9] ASoC: sti: Add uniperipheral dai driver Arnaud Pouliquen
2015-06-22 14:31 ` [PATCH v3 6/9] ASoC: Add ability to build sti drivers Arnaud Pouliquen
2015-07-16 21:01   ` Applied "ASoC: Add ability to build sti drivers" to the asoc tree Mark Brown
2015-06-22 14:31 ` [PATCH v3 7/9] ASoC: Codec: Add sti platform codec Arnaud Pouliquen
2015-07-10 18:08   ` Applied "ASoC: sti-sas: Add sti platform codec" to the asoc tree Mark Brown
2015-06-22 14:31 ` [PATCH v3 8/9] ASoC: sti: Add clock adjustement control Arnaud Pouliquen
2015-06-22 14:31 ` [PATCH v3 9/9] ASoC: sti: Add IEC control Arnaud Pouliquen
2015-07-10 18:06   ` Mark Brown
2015-07-15  9:59     ` Arnaud Pouliquen
2015-07-15 11:03       ` Mark Brown
2015-08-07 14:00   ` Applied "ASoC: sti: Add IEC control" to the asoc tree Mark Brown
2015-09-08 16:04     ` [RFC] How to perform audio offloading in none tunneled mode Arnaud Pouliquen
2015-09-08 16:46       ` Pierre-Louis Bossart
2015-09-08 17:32         ` Mark Brown
2015-09-09  8:36           ` Arnaud Pouliquen
2015-09-09  9:56             ` Mark Brown

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.