2021-09-06 23:26:02 +08:00
|
|
|
# Copyright (c) 2021 Nordic Semiconductor (ASA)
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-03-24 18:50:53 +08:00
|
|
|
config IPC_SERVICE_REG_BACKEND_PRIORITY
|
|
|
|
int "Initialization priority of modules registering IPC backend"
|
|
|
|
default 46
|
|
|
|
help
|
|
|
|
The backend must be registered before the endpoint register.
|
2021-09-06 23:26:02 +08:00
|
|
|
|
2021-11-15 22:46:56 +08:00
|
|
|
config IPC_SERVICE_BACKEND_RPMSG
|
|
|
|
bool "OpenAMP RPMSG backend with static VRINGs"
|
2022-09-01 00:38:16 +08:00
|
|
|
default y
|
2021-11-15 22:46:56 +08:00
|
|
|
depends on MBOX
|
2022-09-01 00:38:16 +08:00
|
|
|
depends on DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED
|
2021-11-15 22:46:56 +08:00
|
|
|
select IPC_SERVICE_RPMSG
|
|
|
|
select IPC_SERVICE_STATIC_VRINGS
|
|
|
|
select OPENAMP
|
|
|
|
|
2022-03-14 22:59:04 +08:00
|
|
|
config IPC_SERVICE_BACKEND_ICMSG
|
2022-05-17 21:49:59 +08:00
|
|
|
bool "ICMSG backend with SPSC packet buffer"
|
2022-09-01 00:38:16 +08:00
|
|
|
default y
|
2022-03-14 22:59:04 +08:00
|
|
|
depends on MBOX
|
2022-09-01 00:38:16 +08:00
|
|
|
depends on DT_HAS_ZEPHYR_IPC_ICMSG_ENABLED
|
2022-10-01 12:36:22 +08:00
|
|
|
select IPC_SERVICE_ICMSG
|
2022-03-14 22:59:04 +08:00
|
|
|
help
|
|
|
|
Chosing this backend results in single endpoint implementation based
|
2022-05-17 21:49:59 +08:00
|
|
|
on circular packet buffer.
|
2022-03-14 22:59:04 +08:00
|
|
|
|
2022-10-01 12:41:07 +08:00
|
|
|
config IPC_SERVICE_BACKEND_ICMSG_ME_INITIATOR
|
|
|
|
bool "ICMSG backend with multi-endpoint support in initiator role"
|
2022-11-09 21:12:08 +08:00
|
|
|
default y
|
2022-10-01 12:41:07 +08:00
|
|
|
depends on MBOX
|
|
|
|
depends on DT_HAS_ZEPHYR_IPC_ICMSG_ME_INITIATOR_ENABLED
|
|
|
|
select IPC_SERVICE_ICMSG
|
|
|
|
select EVENTS
|
|
|
|
help
|
|
|
|
Chosing this backend results in multi endpoint implementation based
|
|
|
|
on circular packet buffer. This enables enpoint discovery initiator
|
|
|
|
role.
|
|
|
|
|
|
|
|
config IPC_SERVICE_BACKEND_ICMSG_ME_FOLLOWER
|
|
|
|
bool "ICMSG backend with multi-endpoint support in follower role"
|
2022-11-09 21:12:08 +08:00
|
|
|
default y
|
2022-10-01 12:41:07 +08:00
|
|
|
depends on MBOX
|
|
|
|
depends on DT_HAS_ZEPHYR_IPC_ICMSG_ME_FOLLOWER_ENABLED
|
|
|
|
select IPC_SERVICE_ICMSG
|
|
|
|
select EVENTS
|
|
|
|
help
|
|
|
|
Chosing this backend results in multi endpoint implementation based
|
|
|
|
on circular packet buffer. This enables enpoint discovery follower
|
|
|
|
role.
|
|
|
|
|
|
|
|
rsource "Kconfig.icmsg_me"
|
2021-11-15 22:46:56 +08:00
|
|
|
rsource "Kconfig.rpmsg"
|