Skip to content

Commit b4ab447

Browse files
Jaska UimonenJaska Uimonen
authored andcommitted
topology: add Intel ssp vendor blob generation for nhlt
In some Intel platforms the nhlt vendor specific blobs are sent to the dsp over ipc. Add the generation of Intel ssp blob into the nhlt code. Ssp code is lifted from Sound Open Firmware (sof) code base, thus it will have BSD-3 license. Signed-off-by: Jaska Uimonen <[email protected]>
1 parent 4eba8cd commit b4ab447

File tree

9 files changed

+1691
-2
lines changed

9 files changed

+1691
-2
lines changed

topology/Makefile.am

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ endif
1010

1111
alsatplg_SOURCES = topology.c pre-processor.c pre-process-class.c pre-process-object.c \
1212
pre-process-dapm.c pre-process-dai.c nhlt/nhlt-processor.c \
13-
nhlt/intel/dmic-nhlt.c nhlt/intel/dmic/dmic-process.c nhlt/intel/dmic/dmic-debug.c
13+
nhlt/intel/dmic-nhlt.c nhlt/intel/dmic/dmic-process.c nhlt/intel/dmic/dmic-debug.c \
14+
nhlt/intel/ssp-nhlt.c nhlt/intel/ssp/ssp-process.c
1415

1516
noinst_HEADERS = topology.h pre-processor.h \
1617
nhlt/nhlt-processor.h nhlt/nhlt.h nhlt/intel/intel-nhlt.h \
1718
nhlt/intel/dmic-nhlt.h nhlt/intel/dmic/dmic-process.h \
1819
nhlt/intel/dmic/dmic-intel.h nhlt/intel/dmic/dmic-internal.h \
19-
nhlt/intel/dmic/pdm-decim-fir.h nhlt/intel/dmic/dmic-debug.h
20+
nhlt/intel/dmic/pdm-decim-fir.h nhlt/intel/dmic/dmic-debug.h \
21+
nhlt/intel/ssp-nhlt.h nhlt/intel/ssp/ssp-process.h \
22+
nhlt/intel/ssp/ssp-intel.h nhlt/intel/ssp/ssp-internal.h
2023

2124
AM_CPPFLAGS = \
2225
-Wall -I$(top_srcdir)/include

topology/nhlt/intel/intel-nhlt.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
struct intel_nhlt_params
4141
{
4242
void *dmic_params;
43+
void *ssp_params;
4344
};
4445

4546
#endif /* __INTEL_NHLT_H */

0 commit comments

Comments
 (0)