@@ -40,6 +40,7 @@ source "sound/soc/cirrus/Kconfig"
source "sound/soc/davinci/Kconfig"
source "sound/soc/dwc/Kconfig"
source "sound/soc/fsl/Kconfig"
+source "sound/soc/hda/Kconfig"
source "sound/soc/jz4740/Kconfig"
source "sound/soc/nuc900/Kconfig"
source "sound/soc/omap/Kconfig"
@@ -21,6 +21,7 @@ obj-$(CONFIG_SND_SOC) += cirrus/
obj-$(CONFIG_SND_SOC) += davinci/
obj-$(CONFIG_SND_SOC) += dwc/
obj-$(CONFIG_SND_SOC) += fsl/
+obj-$(CONFIG_SND_SOC) += hda/
obj-$(CONFIG_SND_SOC) += jz4740/
obj-$(CONFIG_SND_SOC) += intel/
obj-$(CONFIG_SND_SOC) += mxs/
new file mode 100644
@@ -0,0 +1,29 @@
+menu "SKL-HD-Audio"
+
+config SND_SOC_HDA
+ tristate
+ select SND_HDA_CORE
+
+if SND_SOC_HDA
+
+config SND_SOC_HDA_PREALLOC_SIZE
+ int "Pre-allocated buffer size for skylake HD-audio driver"
+ range 0 32768
+ default 64
+ help
+ Specifies the default pre-allocated buffer-size in kB for the
+ HD-audio driver. A larger buffer (e.g. 2048) is preferred
+ for systems using PulseAudio. The default 64 is chosen just
+ for compatibility reasons.
+endif
+
+config SND_SOC_HDA_SKL
+ tristate "ASoC Intel HD Audio"
+ select SND_SOC_HDA
+ help
+ Say Y here to include support for ASoC Intel "High Definition
+ Audio" (Azalia) and its compatible devices.
+
+ To compile this driver as a module, choose M here: the module
+ will be called snd-soc-hda-skl.
+endmenu
new file mode 100644
@@ -0,0 +1,3 @@
+snd-soc-hda-skl-objs := hda_skl.o hda_skl_pcm.o
+
+obj-$(CONFIG_SND_SOC_HDA_SKL) += snd-soc-hda-skl.o