1b340bd7e4
The SSP ports PXA series processors can be used to implement a variety of audio interface formats. This patch implements support for I2S, DSP A and DSP B modes on these ports. This patch is based on the previous out of tree pxa2xx-ssp driver (which was originally written by Liam Girdwood with updates from Philipp Zabel and Nicola Perrino) and pxa3xx-ssp driver (originally written by Seth Forsee based on the pxa2xx-ssp driver). Testing coverage is not complete currently. Tested-by: Daniel Ribeiro <drwyrm@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
26 lines
931 B
Makefile
26 lines
931 B
Makefile
# PXA Platform Support
|
|
snd-soc-pxa2xx-objs := pxa2xx-pcm.o
|
|
snd-soc-pxa2xx-ac97-objs := pxa2xx-ac97.o
|
|
snd-soc-pxa2xx-i2s-objs := pxa2xx-i2s.o
|
|
snd-soc-pxa-ssp-objs := pxa-ssp.o
|
|
|
|
obj-$(CONFIG_SND_PXA2XX_SOC) += snd-soc-pxa2xx.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_AC97) += snd-soc-pxa2xx-ac97.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_I2S) += snd-soc-pxa2xx-i2s.o
|
|
obj-$(CONFIG_SND_PXA_SOC_SSP) += snd-soc-pxa-ssp.o
|
|
|
|
# PXA Machine Support
|
|
snd-soc-corgi-objs := corgi.o
|
|
snd-soc-poodle-objs := poodle.o
|
|
snd-soc-tosa-objs := tosa.o
|
|
snd-soc-e800-objs := e800_wm9712.o
|
|
snd-soc-spitz-objs := spitz.o
|
|
snd-soc-em-x270-objs := em-x270.o
|
|
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_CORGI) += snd-soc-corgi.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_POODLE) += snd-soc-poodle.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_TOSA) += snd-soc-tosa.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_E800) += snd-soc-e800.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_SPITZ) += snd-soc-spitz.o
|
|
obj-$(CONFIG_SND_PXA2XX_SOC_EM_X270) += snd-soc-em-x270.o
|