blob: dda96620145f6ff1c89a88b8789fbdafb9cc3c7c [file] [log] [blame]
Martin Roth9231f0b2022-10-28 22:39:23 -06001## SPDX-License-Identifier: GPL-2.0-only
Aaron Durbined8a7232015-11-24 12:35:06 -06002ramstage-y += dmic.c
3ramstage-y += nau88l25.c
4ramstage-y += max98357.c
Duncan Lauriee6c8a382018-03-26 02:45:02 -07005ramstage-y += max98373.c
Aaron Durbined8a7232015-11-24 12:35:06 -06006ramstage-y += ssm4567.c
Duncan Laurie4a75a662017-03-02 10:13:51 -08007ramstage-y += rt5514.c
Rizwan Qureshi17335fa2017-01-14 06:08:21 +05308ramstage-y += rt5663.c
9ramstage-y += max98927.c
Naveen Manohar83670c52017-11-04 02:55:09 +053010ramstage-y += da7219.c
Aaron Durbined8a7232015-11-24 12:35:06 -060011
12# DSP firmware settings files.
Rizwan Qureshi17335fa2017-01-14 06:08:21 +053013ifeq ($(CONFIG_SOC_INTEL_KABYLAKE),y)
14NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/kabylake/nhlt-blobs
15else
16NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/skylake/nhlt-blobs
17endif
18
Benjamin Doroneecaf362020-08-04 06:45:46 +000019DMIC_1CH_48KHZ_16B = dmic-1ch-48khz-16b.bin
Aaron Durbined8a7232015-11-24 12:35:06 -060020DMIC_2CH_48KHZ_16B = dmic-2ch-48khz-16b.bin
21DMIC_2CH_48KHZ_32B = dmic-2ch-48khz-32b.bin
22DMIC_4CH_48KHZ_16B = dmic-4ch-48khz-16b.bin
23DMIC_4CH_48KHZ_32B = dmic-4ch-48khz-32b.bin
24NAU88L25 = nau88l25-2ch-48khz-24b.bin
25MAX98357_RENDER = max98357-render-2ch-48khz-24b.bin
Duncan Lauriee6c8a382018-03-26 02:45:02 -070026MAX98373_RENDER_16B = max98373-render-2ch-48khz-16b.bin
27MAX98373_RENDER_24B = max98373-render-2ch-48khz-24b.bin
Duncan Lauriefff2e6c2017-05-03 10:05:27 -070028MAX98927_RENDER_24B = max98927-render-2ch-48khz-24b.bin
29MAX98927_RENDER_16B = max98927-render-2ch-48khz-16b.bin
Duncan Laurie4a75a662017-03-02 10:13:51 -080030RT5514_CAPTURE = rt5514-capture-4ch-48khz-16b.bin
Rizwan Qureshi17335fa2017-01-14 06:08:21 +053031RT5663 = rt5663-2ch-48khz-24b.bin
Aaron Durbined8a7232015-11-24 12:35:06 -060032SSM4567_RENDER = ssm4567-render-2ch-48khz-24b.bin
Sathya Prakash M R1ed16592015-12-15 22:49:49 +053033SSM4567_CAPTURE = ssm4567-capture-4ch-48khz-32b.bin
Naveen Manohar83670c52017-11-04 02:55:09 +053034DA7219_RENDER_CAPTURE = dialog-2ch-48khz-24b.bin
Aaron Durbined8a7232015-11-24 12:35:06 -060035
Benjamin Doroneecaf362020-08-04 06:45:46 +000036cbfs-files-$(CONFIG_NHLT_DMIC_1CH) += $(DMIC_1CH_48KHZ_16B)
37$(DMIC_1CH_48KHZ_16B)-file := $(NHLT_BLOB_PATH)/$(DMIC_1CH_48KHZ_16B)
38$(DMIC_1CH_48KHZ_16B)-type := raw
39
Aaron Durbined8a7232015-11-24 12:35:06 -060040cbfs-files-$(CONFIG_NHLT_DMIC_2CH) += $(DMIC_2CH_48KHZ_16B)
41$(DMIC_2CH_48KHZ_16B)-file := $(NHLT_BLOB_PATH)/$(DMIC_2CH_48KHZ_16B)
42$(DMIC_2CH_48KHZ_16B)-type := raw
43
44cbfs-files-$(CONFIG_NHLT_DMIC_2CH) += $(DMIC_2CH_48KHZ_32B)
45$(DMIC_2CH_48KHZ_32B)-file := $(NHLT_BLOB_PATH)/$(DMIC_2CH_48KHZ_32B)
46$(DMIC_2CH_48KHZ_32B)-type := raw
47
48cbfs-files-$(CONFIG_NHLT_DMIC_4CH) += $(DMIC_4CH_48KHZ_16B)
49$(DMIC_4CH_48KHZ_16B)-file := $(NHLT_BLOB_PATH)/$(DMIC_4CH_48KHZ_16B)
50$(DMIC_4CH_48KHZ_16B)-type := raw
51
52cbfs-files-$(CONFIG_NHLT_DMIC_4CH) += $(DMIC_4CH_48KHZ_32B)
53$(DMIC_4CH_48KHZ_32B)-file := $(NHLT_BLOB_PATH)/$(DMIC_4CH_48KHZ_32B)
54$(DMIC_4CH_48KHZ_32B)-type := raw
55
56cbfs-files-$(CONFIG_NHLT_NAU88L25) += $(NAU88L25)
57$(NAU88L25)-file := $(NHLT_BLOB_PATH)/$(NAU88L25)
58$(NAU88L25)-type := raw
59
60cbfs-files-$(CONFIG_NHLT_MAX98357) += $(MAX98357_RENDER)
61$(MAX98357_RENDER)-file := $(NHLT_BLOB_PATH)/$(MAX98357_RENDER)
62$(MAX98357_RENDER)-type := raw
63
Duncan Lauriee6c8a382018-03-26 02:45:02 -070064cbfs-files-$(CONFIG_NHLT_MAX98373) += $(MAX98373_RENDER_16B)
65$(MAX98373_RENDER_16B)-file := $(NHLT_BLOB_PATH)/$(MAX98373_RENDER_16B)
66$(MAX98373_RENDER_16B)-type := raw
67
68cbfs-files-$(CONFIG_NHLT_MAX98373) += $(MAX98373_RENDER_24B)
69$(MAX98373_RENDER_24B)-file := $(NHLT_BLOB_PATH)/$(MAX98373_RENDER_24B)
70$(MAX98373_RENDER_24B)-type := raw
71
Aaron Durbined8a7232015-11-24 12:35:06 -060072cbfs-files-$(CONFIG_NHLT_SSM4567) += $(SSM4567_RENDER)
73$(SSM4567_RENDER)-file := $(NHLT_BLOB_PATH)/$(SSM4567_RENDER)
74$(SSM4567_RENDER)-type := raw
Sathya Prakash M R1ed16592015-12-15 22:49:49 +053075
76cbfs-files-$(CONFIG_NHLT_SSM4567) += $(SSM4567_CAPTURE)
77$(SSM4567_CAPTURE)-file := $(NHLT_BLOB_PATH)/$(SSM4567_CAPTURE)
78$(SSM4567_CAPTURE)-type := raw
Rizwan Qureshi17335fa2017-01-14 06:08:21 +053079
Duncan Laurie4a75a662017-03-02 10:13:51 -080080cbfs-files-$(CONFIG_NHLT_RT5514) += $(RT5514_CAPTURE)
81$(RT5514_CAPTURE)-file := $(NHLT_BLOB_PATH)/$(RT5514_CAPTURE)
82$(RT5514_CAPTURE)-type := raw
83
Rizwan Qureshi17335fa2017-01-14 06:08:21 +053084cbfs-files-$(CONFIG_NHLT_RT5663) += $(RT5663)
85$(RT5663)-file := $(NHLT_BLOB_PATH)/$(RT5663)
86$(RT5663)-type := raw
87
Duncan Lauriefff2e6c2017-05-03 10:05:27 -070088cbfs-files-$(CONFIG_NHLT_MAX98927) += $(MAX98927_RENDER_16B)
89$(MAX98927_RENDER_16B)-file := $(NHLT_BLOB_PATH)/$(MAX98927_RENDER_16B)
90$(MAX98927_RENDER_16B)-type := raw
91
92cbfs-files-$(CONFIG_NHLT_MAX98927) += $(MAX98927_RENDER_24B)
93$(MAX98927_RENDER_24B)-file := $(NHLT_BLOB_PATH)/$(MAX98927_RENDER_24B)
94$(MAX98927_RENDER_24B)-type := raw
Naveen Manohar83670c52017-11-04 02:55:09 +053095
96cbfs-files-$(CONFIG_NHLT_DA7219) += $(DA7219_RENDER_CAPTURE)
97$(DA7219_RENDER_CAPTURE)-file := $(NHLT_BLOB_PATH)/$(DA7219_RENDER_CAPTURE)
98$(DA7219_RENDER_CAPTURE)-type := raw