![](https://secure.gravatar.com/avatar/df9cebfdf7c2a66902dd267d019fb929.jpg?s=120&d=mm&r=g)
This patchset contains two patches which add support for ASoC sound drivers on ST's SPEAr13XX platform. Details of the SPEAr13XX platforms can be seen here: http://www.st.com/internet/mcu/product/250658.jsp
The ARCH and PLATFORM specific code for SPEAr13XX are already under review in Russell King's ARM mailing list.
Please review the same and consider for mainline inclusion.
Rajeev Kumar (2): sound: asoc: Adding support for SPEAr13XX ASoC driver sound: asoc: Adding support for STA529 Audio Codec
sound/soc/Kconfig | 20 +-- sound/soc/Makefile | 1 + sound/soc/codecs/Kconfig | 5 + sound/soc/codecs/Makefile | 2 + sound/soc/codecs/sta529.c | 366 ++++++++++++++++++++++++ sound/soc/codecs/sta529.h | 61 ++++ sound/soc/spear/Kconfig | 19 ++ sound/soc/spear/Makefile | 6 + sound/soc/spear/evb_sta529.c | 135 +++++++++ sound/soc/spear/spear13xx-i2s.c | 598 +++++++++++++++++++++++++++++++++++++++ sound/soc/spear/spear13xx-i2s.h | 22 ++ sound/soc/spear/spear13xx-pcm.c | 496 ++++++++++++++++++++++++++++++++ sound/soc/spear/spear13xx-pcm.h | 54 ++++ 13 files changed, 1767 insertions(+), 18 deletions(-) create mode 100644 sound/soc/codecs/sta529.c create mode 100644 sound/soc/codecs/sta529.h create mode 100644 sound/soc/spear/Kconfig create mode 100644 sound/soc/spear/Makefile create mode 100644 sound/soc/spear/evb_sta529.c create mode 100644 sound/soc/spear/spear13xx-i2s.c create mode 100644 sound/soc/spear/spear13xx-i2s.h create mode 100644 sound/soc/spear/spear13xx-pcm.c create mode 100644 sound/soc/spear/spear13xx-pcm.h