29ab2b13f6
Remove CONFIG_IPM_IMX_REV2, as this Kconfig is no longer needed. The driver can now be enabled with CONFIG_IPM_IMX. Update NXP HAL to remove this Kconfig as well. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
20 lines
870 B
CMake
20 lines
870 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/ipm.h)
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_MCUX ipm_mcux.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_IMX ipm_imx.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_MHU ipm_mhu.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_STM32_IPCC ipm_stm32_ipcc.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_NRFX ipm_nrfx_ipc.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_STM32_HSEM ipm_stm32_hsem.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_CAVS_HOST ipm_cavs_host.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_SEDI ipm_sedi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IPM_IVSHMEM ipm_ivshmem.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ESP32_SOFT_IPM ipm_esp32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_XLNX_IPI ipm_xlnx_ipi.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE ipm_handlers.c)
|