summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/skylake/nhlt/Makefile.inc
diff options
context:
space:
mode:
authorRizwan Qureshi <rizwan.qureshi@intel.com>2017-01-14 06:08:21 +0530
committerMartin Roth <martinroth@google.com>2017-02-17 19:26:15 +0100
commit17335fab175ed1a16f61729b03c1fbeeec366f37 (patch)
tree8922c6825d455ea2178600ee3f0403c3e297711c /src/soc/intel/skylake/nhlt/Makefile.inc
parent4979d7610e74b83f7b41b10ac30b4fb619b4e26d (diff)
downloadcoreboot-17335fab175ed1a16f61729b03c1fbeeec366f37.tar.gz
coreboot-17335fab175ed1a16f61729b03c1fbeeec366f37.tar.bz2
coreboot-17335fab175ed1a16f61729b03c1fbeeec366f37.zip
soc/intel/skylake: Add Maxim 98927 and Realtek 5663 NHLT blob support
Add APIs and required parameters for creating Maxim 98927 and Realtek 5336 SSP endpoints in NHLT table. BUG=chrome-os-partner:62051 BRANCH=None TEST=check that NHLT table created is created properly Change-Id: Ica302aab05c5364faf4923dc5327be8e8eaae8b4 Signed-off-by: Rizwan Qureshi <rizwan.qureshi@intel.com> Signed-off-by: Naresh G Solanki <naresh.solanki@intel.com> Signed-off-by: M Naveen <naveen.m@intel.com> Reviewed-on: https://review.coreboot.org/18213 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/skylake/nhlt/Makefile.inc')
-rw-r--r--src/soc/intel/skylake/nhlt/Makefile.inc19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/nhlt/Makefile.inc b/src/soc/intel/skylake/nhlt/Makefile.inc
index e02248214c13..b5b77eb8345c 100644
--- a/src/soc/intel/skylake/nhlt/Makefile.inc
+++ b/src/soc/intel/skylake/nhlt/Makefile.inc
@@ -2,15 +2,24 @@ ramstage-y += dmic.c
ramstage-y += nau88l25.c
ramstage-y += max98357.c
ramstage-y += ssm4567.c
+ramstage-y += rt5663.c
+ramstage-y += max98927.c
# DSP firmware settings files.
-NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/skylake
+ifeq ($(CONFIG_SOC_INTEL_KABYLAKE),y)
+NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/kabylake/nhlt-blobs
+else
+NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/skylake/nhlt-blobs
+endif
+
DMIC_2CH_48KHZ_16B = dmic-2ch-48khz-16b.bin
DMIC_2CH_48KHZ_32B = dmic-2ch-48khz-32b.bin
DMIC_4CH_48KHZ_16B = dmic-4ch-48khz-16b.bin
DMIC_4CH_48KHZ_32B = dmic-4ch-48khz-32b.bin
NAU88L25 = nau88l25-2ch-48khz-24b.bin
MAX98357_RENDER = max98357-render-2ch-48khz-24b.bin
+MAX98927_RENDER = max98927-render-2ch-48khz-24b.bin
+RT5663 = rt5663-2ch-48khz-24b.bin
SSM4567_RENDER = ssm4567-render-2ch-48khz-24b.bin
SSM4567_CAPTURE = ssm4567-capture-4ch-48khz-32b.bin
@@ -45,3 +54,11 @@ $(SSM4567_RENDER)-type := raw
cbfs-files-$(CONFIG_NHLT_SSM4567) += $(SSM4567_CAPTURE)
$(SSM4567_CAPTURE)-file := $(NHLT_BLOB_PATH)/$(SSM4567_CAPTURE)
$(SSM4567_CAPTURE)-type := raw
+
+cbfs-files-$(CONFIG_NHLT_RT5663) += $(RT5663)
+$(RT5663)-file := $(NHLT_BLOB_PATH)/$(RT5663)
+$(RT5663)-type := raw
+
+cbfs-files-$(CONFIG_NHLT_MAX98927) += $(MAX98927_RENDER)
+$(MAX98927_RENDER)-file := $(NHLT_BLOB_PATH)/$(MAX98927_RENDER)
+$(MAX98927_RENDER)-type := raw