Hi,
This patchset contains audio support for Broadcom's Cygnus SoC. It contains DT bindings, core audio driver and dts. The audio driver supports both capture and playback of Audio PCM samples over I2S/TDM interface and provides playback support over SPDIF interface.
This patchset is derived from a previously submitted patchset: http://lkml.iu.edu/hypermail/linux/kernel/1503.3/05434.html
This patchset has been tested on Cygnus wireless audio bcm958305K board. It is based on v4.3-rc5 and is available from github:
repo: https://github.com/Broadcom/cygnus-linux/tree/cygnus-sound-v1
Simran Rai (2): dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio sound: soc: Add Broadcom Cygnus audio driver.
.../bindings/sound/brcm,cygnus-audio.txt | 63 + sound/soc/bcm/Kconfig | 18 + sound/soc/bcm/Makefile | 5 + sound/soc/bcm/cygnus-pcm.c | 903 ++++++++++++ sound/soc/bcm/cygnus-ssp.c | 1532 ++++++++++++++++++++ sound/soc/bcm/cygnus-ssp.h | 129 ++ 6 files changed, 2650 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/brcm,cygnus-audio.txt create mode 100644 sound/soc/bcm/cygnus-pcm.c create mode 100644 sound/soc/bcm/cygnus-ssp.c create mode 100644 sound/soc/bcm/cygnus-ssp.h