mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 04:36:51 +07:00
eeec124685
Initial support for audio using the 1133-EV1 audio and PMIC module for the i.MX31ADS. Currently only playback is supported, and the FIQ DMA driver has performance problems at higher sample rates which cause audible dropouts. This driver is based heavily on an out of tree one written by Liam Girdwood. Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
16 lines
411 B
Makefile
16 lines
411 B
Makefile
# i.MX Platform Support
|
|
snd-soc-imx-objs := imx-ssi.o imx-pcm-fiq.o
|
|
|
|
ifdef CONFIG_MACH_MX27
|
|
snd-soc-imx-objs += imx-pcm-dma-mx2.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SND_IMX_SOC) += snd-soc-imx.o
|
|
|
|
# i.MX Machine Support
|
|
snd-soc-phycore-ac97-objs := phycore-ac97.o
|
|
snd-soc-wm1133-ev1-objs := wm1133-ev1.o
|
|
|
|
obj-$(CONFIG_SND_SOC_PHYCORE_AC97) += snd-soc-phycore-ac97.o
|
|
obj-$(CONFIG_SND_MXC_SOC_WM1133_EV1) += snd-soc-wm1133-ev1.o
|