forked from Minki/linux
eaae2ea735
The driver is used for Rockchip rk3288-based boards using a configurable analog output (can be an headphone) and the built-in HDMI audio output that is part of the RK3288 SoCs and use the Alsa HDMI codec driver. For some rk3288-based boards the analog output and the hdmi audio are plugged on the same i2s line, so we have to do the same in the driver by using a DAI link CPU to multicodecs. This configuration can be found for example on the Radxa Rock2 or the Firefly-RK3288. This commit is based on the initial work that was done by Sjoerd Simons <sjoerd.simons@collabora.com> with some improvements. Signed-off-by: Romain Perier <romain.perier@collabora.com> Signed-off-by: Mark Brown <broonie@kernel.org>
17 lines
741 B
Makefile
17 lines
741 B
Makefile
# ROCKCHIP Platform Support
|
|
snd-soc-rockchip-i2s-objs := rockchip_i2s.o
|
|
snd-soc-rockchip-spdif-objs := rockchip_spdif.o
|
|
|
|
obj-$(CONFIG_SND_SOC_ROCKCHIP_I2S) += snd-soc-rockchip-i2s.o
|
|
obj-$(CONFIG_SND_SOC_ROCKCHIP_SPDIF) += snd-soc-rockchip-spdif.o
|
|
|
|
snd-soc-rockchip-max98090-objs := rockchip_max98090.o
|
|
snd-soc-rockchip-rt5645-objs := rockchip_rt5645.o
|
|
snd-soc-rk3288-hdmi-analog-objs := rk3288_hdmi_analog.o
|
|
snd-soc-rk3399-gru-sound-objs := rk3399_gru_sound.o
|
|
|
|
obj-$(CONFIG_SND_SOC_ROCKCHIP_MAX98090) += snd-soc-rockchip-max98090.o
|
|
obj-$(CONFIG_SND_SOC_ROCKCHIP_RT5645) += snd-soc-rockchip-rt5645.o
|
|
obj-$(CONFIG_SND_SOC_RK3288_HDMI_ANALOG) += snd-soc-rk3288-hdmi-analog.o
|
|
obj-$(CONFIG_SND_SOC_RK3399_GRU_SOUND) += snd-soc-rk3399-gru-sound.o
|