2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2015-11-13 06:00:47 +08:00
|
|
|
menuconfig IPM
|
2023-03-27 20:55:23 +08:00
|
|
|
bool "Inter-Processor Mailbox (IPM) drivers"
|
2015-11-13 06:00:47 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Include interrupt-based inter-processor mailboxes
|
|
|
|
drivers in system configuration
|
2015-11-13 06:00:47 +08:00
|
|
|
|
2019-12-09 19:45:43 +08:00
|
|
|
if IPM
|
|
|
|
|
2019-01-18 23:06:48 +08:00
|
|
|
config IPM_MHU
|
|
|
|
bool "IPM MHU driver"
|
2022-11-01 01:33:09 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ARM_MHU_ENABLED
|
2019-01-18 23:06:48 +08:00
|
|
|
help
|
|
|
|
Driver for SSE 200 MHU (Message Handling Unit)
|
2019-02-22 20:51:33 +08:00
|
|
|
|
2019-05-24 15:10:36 +08:00
|
|
|
config IPM_NRFX
|
|
|
|
bool "IPM NRF driver"
|
2022-11-01 01:33:09 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NORDIC_NRF_IPC_ENABLED
|
2019-05-24 15:10:36 +08:00
|
|
|
select NRFX_IPC
|
|
|
|
help
|
|
|
|
Driver for Nordic nRF messaging unit, based
|
|
|
|
on nRF IPC peripheral HW.
|
|
|
|
|
|
|
|
config IPM_NRF_SINGLE_INSTANCE
|
|
|
|
bool "Single instance of IPM device"
|
|
|
|
help
|
|
|
|
Enable this option if the IPM device should have
|
|
|
|
a single instance, instead of one per IPC
|
|
|
|
message channel.
|
|
|
|
|
2022-07-15 05:34:05 +08:00
|
|
|
config ESP32_SOFT_IPM
|
|
|
|
bool "ESP32 Software IPM driver"
|
2022-11-01 01:33:09 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ESPRESSIF_ESP32_IPM_ENABLED
|
2022-07-15 05:34:05 +08:00
|
|
|
help
|
|
|
|
Interprocessor driver for ESP32 when using AMP.
|
|
|
|
|
2023-07-17 20:44:44 +08:00
|
|
|
config IPM_IVSHMEM
|
|
|
|
bool "IPM driver based on IVSHMEM-Doorbell"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_LINARO_IVSHMEM_IPM_ENABLED
|
|
|
|
depends on IVSHMEM
|
|
|
|
depends on IVSHMEM_DOORBELL
|
|
|
|
help
|
|
|
|
Interprocessor driver using IVSHMEM Doorbell mechanism.
|
|
|
|
|
2023-01-26 07:44:17 +08:00
|
|
|
config XLNX_IPI
|
|
|
|
bool "AMD-Xilinx IPM driver"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_XLNX_ZYNQMP_IPI_MAILBOX_ENABLED
|
|
|
|
help
|
|
|
|
Inter Processor Interrupt driver for AMD-Xilinx
|
|
|
|
platforms such as ZynqMP Ultrascale+.
|
|
|
|
|
2024-05-17 02:43:42 +08:00
|
|
|
config IPM_MBOX
|
|
|
|
bool "IPM over MBOX driver"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_ZEPHYR_MBOX_IPM_ENABLED
|
|
|
|
depends on MBOX
|
|
|
|
help
|
|
|
|
IPM driver using a MBOX driver as the backend mechanism.
|
|
|
|
|
2022-08-30 03:50:38 +08:00
|
|
|
source "drivers/ipm/Kconfig.nrfx"
|
|
|
|
source "drivers/ipm/Kconfig.imx"
|
|
|
|
source "drivers/ipm/Kconfig.stm32"
|
|
|
|
source "drivers/ipm/Kconfig.intel_adsp"
|
2023-07-17 20:44:44 +08:00
|
|
|
source "drivers/ipm/Kconfig.ivshmem"
|
2023-08-04 11:42:10 +08:00
|
|
|
source "drivers/ipm/Kconfig.sedi"
|
2023-07-17 20:44:44 +08:00
|
|
|
|
2022-08-30 03:50:38 +08:00
|
|
|
|
2019-02-22 20:51:33 +08:00
|
|
|
module = IPM
|
|
|
|
module-str = ipm
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2019-12-09 19:45:43 +08:00
|
|
|
|
|
|
|
endif #IPM
|