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
6 changes: 6 additions & 0 deletions app/boards/imx8mp_evk_mimx8ml8_adsp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ CONFIG_IPM_IMX_MAX_DATA_SIZE_4=y
CONFIG_OPENAMP_WITH_DCACHE=y
CONFIG_IPM_IMX_FW_READY_REPLY=y
CONFIG_POSAL_MMAP_NO_MMU=y
CONFIG_DAI=y
CONFIG_DMA=y
CONFIG_DAI_NXP_SAI=y
CONFIG_DMA_NXP_SDMA=y
CONFIG_SAI_HAS_MCLK_CONFIG_OPTION=y
CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK=y
22 changes: 21 additions & 1 deletion app/boards/imx8mp_evk_mimx8ml8_adsp.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,28 @@
compatible = "mmio-sram";
reg = <0x942f0000 0x110000>;
};

mclk1: mclk {
status = "okay";
};
};

&mailbox0 {
status = "okay";
};
};

&sdma3 {
status = "okay";
};

&sai3 {
rx-fifo-watermark = <65>;
tx-fifo-watermark = <65>;
fifo-depth = <128>;
rx-sync-mode = <1>;
status = "okay";
};

&micfil {
status = "okay";
};
2 changes: 2 additions & 0 deletions app/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ CONFIG_SHELL_BACKEND_RPMSG=y
# AUDIOREACH ENGINE CONFIGURATION
CONFIG_PROC_DOMAIN="ADSP"
CONFIG_ARCH_ZEPHYR=y
CONFIG_SHARED_INTERRUPTS=y

# AudioReach Features - Disabled for minimal build
CONFIG_ALSA_DEVICE_SINK=n
CONFIG_ALSA_DEVICE_SOURCE=n
CONFIG_NXP_DEVICE_SINK=y
CONFIG_SH_MEM_PULL_MODE=n
CONFIG_SH_MEM_PUSH_MODE=n
CONFIG_LATENCY=n
Expand Down
4 changes: 4 additions & 0 deletions fwk/platform/modules/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ config ALSA_DEVICE_SOURCE
tristate "Enable ALSA_DEVICE_SOURCE Library"
default y

config NXP_DEVICE_SINK
tristate "Enable NXP_DEVICE_SINK Library"
default n

endmenu
1 change: 1 addition & 0 deletions fwk/platform/modules/build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ include_directories(

#Add the sub directories
add_subdirectory(../generic/build generic)
add_subdirectory(../nxp/build nxp)
13 changes: 13 additions & 0 deletions fwk/platform/modules/nxp/build/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#[[
@file CMakeLists.txt

@brief
]]
cmake_minimum_required(VERSION 3.10)

#Include directories
include_directories(
)

#Add the sub directories
add_subdirectory(../endpoint/build endpoint)
Loading
Loading