diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2020-01-13 16:21:53 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-01-14 09:27:47 +0300 |
commit | 02efb49aa805cee643a643ab61a1118c2fd08b80 (patch) | |
tree | 72490b17cdd70d07835cf7a76e2f9902c0555fe1 /drivers/soundwire/Makefile | |
parent | bbd8e6672f05af28032312a1a2ed260040c17fbf (diff) | |
download | linux-02efb49aa805cee643a643ab61a1118c2fd08b80.tar.xz |
soundwire: qcom: add support for SoundWire controller
Qualcomm SoundWire Master controller is present in most Qualcomm SoCs
either integrated as part of WCD audio codecs via slimbus or
as part of SOC I/O.
This patchset adds support to a very basic controller which has been
tested with WCD934x SoundWire controller connected to WSA881x smart
speaker amplifiers.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20200113132153.27239-3-srinivas.kandagatla@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/soundwire/Makefile')
-rw-r--r-- | drivers/soundwire/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/soundwire/Makefile b/drivers/soundwire/Makefile index 563894e5ecaf..e2cdff990e9f 100644 --- a/drivers/soundwire/Makefile +++ b/drivers/soundwire/Makefile @@ -21,3 +21,7 @@ obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o soundwire-intel-init-objs := intel_init.o obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel-init.o + +#Qualcomm driver +soundwire-qcom-objs := qcom.o +obj-$(CONFIG_SOUNDWIRE_QCOM) += soundwire-qcom.o |