Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/boards/mt8196_mt8196_adsp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@
# Board-level config goes in Zephyr (and ideally in DTS). App-level
# config goes in prj.conf.
CONFIG_MTK=y
CONFIG_RIMAGE_SIGNING_SCHEMA="mt8196"
CONFIG_ZEPHYR_NATIVE_DRIVERS=y
CONFIG_DMA=y
CONFIG_DAI=y

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

preferably no additional empty lines at the end of the file

4 changes: 4 additions & 0 deletions src/audio/dai-zephyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ __cold int dai_set_config(struct dai *dai, struct ipc_config_dai *common_config,
cfg_params = spec_config;
dai_set_link_hda_config(&cfg.link_config, common_config, spec_config);
break;
case SOF_DAI_MEDIATEK_AFE:
cfg.type = DAI_MEDIATEK_AFE;
cfg_params = spec_config;
break;
default:
return -EINVAL;
}
Expand Down
Loading
Loading