Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1261020
| From | Simran Rai <ssimran@broadcom.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 0/2] Add audio support for Broadcom Cygnus SoC |
| Date | 2015-11-02 23:20 +0100 |
| Message-ID | <qqvCi-2xp-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Hi,
This patchset contains audio support for Broadcom's Cygnus SoC. It
contains DT bindings and core audio driver. 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-v2
Changes from v1:
- Address code review comments. Fixed print format of type size_t and
pointer.
Simran Rai (2):
dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio
VOIP-5227 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
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2 0/2] Add audio support for Broadcom Cygnus SoC Simran Rai <ssimran@broadcom.com> - 2015-11-02 23:20 +0100
[PATCH v2 1/2] dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio Simran Rai <ssimran@broadcom.com> - 2015-11-02 23:20 +0100
Re: [PATCH v2 1/2] dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio Mark Brown <broonie@kernel.org> - 2015-11-04 15:10 +0100
Re: [PATCH v2 1/2] dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio Simran Rai <ssimran@broadcom.com> - 2015-11-05 21:10 +0100
Re: [PATCH v2 1/2] dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio Mark Brown <broonie@kernel.org> - 2015-11-06 11:40 +0100
Re: [PATCH v2 1/2] dt-bindings: sound: Add DT bindings for Broadcom Cygnus audio Simran Rai <ssimran@broadcom.com> - 2015-11-06 23:20 +0100
Re: [PATCH v2 0/2] Add audio support for Broadcom Cygnus SoC Mark Brown <broonie@kernel.org> - 2015-11-04 15:10 +0100
Re: [PATCH v2 2/2] sound: soc: Add Cygnus audio driver Mark Brown <broonie@kernel.org> - 2015-11-04 15:30 +0100
csiph-web