-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
topology2: mtl: Add HDMI-in capture support for non SSP codec products.
Adding support for the product which doesn't have no ssp codec but need to support HDMI audio playback and HDMI-in capture via I2S. Signed-off-by: Balamurugan C <balamurugan.c@intel.com>
- Loading branch information
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<searchdir:include> | ||
<searchdir:include/common> | ||
<searchdir:include/components> | ||
<searchdir:include/dais> | ||
<searchdir:include/pipelines/cavs> | ||
<searchdir:platform> | ||
<searchdir:platform/intel> | ||
|
||
<vendor-token.conf> | ||
<manifest.conf> | ||
<pdm_config.conf> | ||
<tokens.conf> | ||
<virtual.conf> | ||
<host-gateway-playback.conf> | ||
<host-gateway-capture.conf> | ||
<io-gateway.conf> | ||
<io-gateway-capture.conf> | ||
<host-copier-gain-mixin-playback.conf> | ||
<mixout-gain-dai-copier-playback.conf> | ||
<deepbuffer-playback.conf> | ||
<dai-copier-be.conf> | ||
<dai-copier-eqiir-module-copier-capture.conf> | ||
<gain-capture.conf> | ||
<gain-module-copier.conf> | ||
<data.conf> | ||
<pcm.conf> | ||
<pcm_caps.conf> | ||
<fe_dai.conf> | ||
<ssp.conf> | ||
<dmic.conf> | ||
<hda.conf> | ||
<intel/hw_config_cardinal_clk.conf> | ||
<manifest.conf> | ||
<route.conf> | ||
<intel/common_definitions.conf> | ||
<dai-copier.conf> | ||
<module-copier.conf> | ||
<pipeline.conf> | ||
<dai.conf> | ||
<host.conf> | ||
<dmic-default.conf> | ||
<hdmi-default.conf> | ||
<hdmi-in-default.conf> | ||
<input_pin_binding.conf> | ||
<output_pin_binding.conf> | ||
<input_audio_format.conf> | ||
<output_audio_format.conf> | ||
|
||
Define { | ||
# override HDMI-IN/DMIC default definitions | ||
HDMI_IN_1_ID 0 | ||
HDMI_IN_2_ID 1 | ||
DMIC0_ID 3 | ||
DMIC1_ID 4 | ||
# override HDMI BE link ids | ||
NUM_HDMIS 3 | ||
HDMI1_ID 5 | ||
HDMI2_ID 6 | ||
HDMI3_ID 7 | ||
PLATFORM "none" | ||
} | ||
|
||
# override defaults with platform-specific config | ||
IncludeByKey.PLATFORM { | ||
"mtl" "platform/intel/mtl.conf" | ||
} | ||
|
||
# include HDMI-in capture config. | ||
IncludeByKey.HDMI_IN_CAPTURE { | ||
"true" "platform/intel/hdmi-in-capture.conf" | ||
} | ||
|
||
# include HDMI config if needed. | ||
IncludeByKey.NUM_HDMIS { | ||
"[3-4]" "platform/intel/hdmi-generic.conf" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters