]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ASoC: Intel: Add build support for Intel SST DSP core.
authorLiam Girdwood <liam.r.girdwood@linux.intel.com>
Mon, 17 Feb 2014 13:32:10 +0000 (13:32 +0000)
committerMark Brown <broonie@linaro.org>
Tue, 18 Feb 2014 01:39:25 +0000 (10:39 +0900)
This adds kernel build support for Intel SST core audio.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/intel/Kconfig
sound/soc/intel/Makefile

index 4d9d0a546cb1accdeef5a2904e10c89d3d8a2571..b0a07e4cc91947f807c96da44a07083f68cae4e4 100644 (file)
@@ -11,3 +11,15 @@ config SND_MFLD_MACHINE
 
 config SND_SST_MFLD_PLATFORM
        tristate
+
+config SND_SOC_INTEL_SST
+       tristate "ASoC support for Intel(R) Smart Sound Technology"
+       select SND_SOC_INTEL_SST_ACPI if ACPI
+       help
+          This adds support for Intel(R) Smart Sound Technology (SST).
+          Say Y if you have such a device
+          If unsure select "N".
+
+config SND_SOC_INTEL_SST_ACPI
+       tristate
+
index eb899fc90d92e1ffcd3598adb9242433c5b1e853..cf47100661e956d09a76b6f7bca3b53a43666124 100644 (file)
@@ -1,5 +1,12 @@
+# Core support
+snd-soc-sst-dsp-objs := sst-dsp.o sst-firmware.o
+snd-soc-sst-acpi-objs := sst-acpi.o
+
 snd-soc-sst-mfld-platform-objs := sst-mfld-platform.o
 snd-soc-mfld-machine-objs := mfld_machine.o
 
 obj-$(CONFIG_SND_SST_MFLD_PLATFORM) += snd-soc-sst-mfld-platform.o
 obj-$(CONFIG_SND_MFLD_MACHINE) += snd-soc-mfld-machine.o
+
+obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o
+obj-$(CONFIG_SND_SOC_INTEL_SST_ACPI) += snd-soc-sst-acpi.o