2019-04-06 09:08:09 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2015-11-12 14:00:47 -08:00
|
|
|
menuconfig IPM
|
2023-03-27 14:55:23 +02:00
|
|
|
bool "Inter-Processor Mailbox (IPM) drivers"
|
2015-11-12 14:00:47 -08:00
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
Include interrupt-based inter-processor mailboxes
|
|
|
|
drivers in system configuration
|
2015-11-12 14:00:47 -08:00
|
|
|
|
2019-12-09 13:45:43 +02:00
|
|
|
if IPM
|
|
|
|
|
2025-04-25 14:29:50 +02:00
|
|
|
config IPM_MAX_DATA_SIZE
|
|
|
|
int "Max data size supported"
|
|
|
|
default 0 if IPM_STM32_IPCC || IPM_STM32_HSEM
|
|
|
|
default 1024
|
|
|
|
help
|
|
|
|
Define the max size (in bytes) of data that can be transmitted or
|
|
|
|
received by the IPM device.
|
|
|
|
|
2019-01-18 23:06:48 +08:00
|
|
|
config IPM_MHU
|
|
|
|
bool "IPM MHU driver"
|
2022-10-31 12:33:09 -05: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 13:51:33 +01:00
|
|
|
|
2019-05-24 09:10:36 +02:00
|
|
|
config IPM_NRFX
|
|
|
|
bool "IPM NRF driver"
|
2022-10-31 12:33:09 -05:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NORDIC_NRF_IPC_ENABLED
|
2019-05-24 09:10:36 +02: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-14 18:34:05 -03:00
|
|
|
config ESP32_SOFT_IPM
|
|
|
|
bool "ESP32 Software IPM driver"
|
2022-10-31 12:33:09 -05:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ESPRESSIF_ESP32_IPM_ENABLED
|
2022-07-14 18:34:05 -03:00
|
|
|
help
|
|
|
|
Interprocessor driver for ESP32 when using AMP.
|
|
|
|
|
2023-07-17 09:44:44 -03: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-25 15: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-16 13:43:42 -05:00
|
|
|
config IPM_MBOX
|
|
|
|
bool "IPM over MBOX driver"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_ZEPHYR_MBOX_IPM_ENABLED
|
2025-02-10 12:52:27 -06:00
|
|
|
select MBOX
|
2024-05-16 13:43:42 -05:00
|
|
|
help
|
|
|
|
IPM driver using a MBOX driver as the backend mechanism.
|
|
|
|
|
2022-08-29 15:50:38 -04: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 09:44:44 -03:00
|
|
|
source "drivers/ipm/Kconfig.ivshmem"
|
2023-08-04 11:42:10 +08:00
|
|
|
source "drivers/ipm/Kconfig.sedi"
|
2023-07-17 09:44:44 -03:00
|
|
|
|
2022-08-29 15:50:38 -04:00
|
|
|
|
2019-02-22 13:51:33 +01:00
|
|
|
module = IPM
|
|
|
|
module-str = ipm
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2019-12-09 13:45:43 +02:00
|
|
|
|
|
|
|
endif #IPM
|