This patch implements a service that adds multiple instances capabilities to RPMsg. Each instance is allocated a separate piece of shared memory. Multiple instances provide independent message processing. Each instance has its own work_q. Signed-off-by: Marcin Jeliński <marcin.jelinski@nordicsemi.no>
15 lines
528 B
Plaintext
15 lines
528 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor (ASA)
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config RPMSG_MULTI_INSTANCE_$(ipm_name_instance_num)_IPM_TX_NAME
|
|
string "TX IPM channel name for instance $(ipm_name_instance_num)"
|
|
help
|
|
This option specifies the IPM device name to be used for
|
|
TX communication.
|
|
|
|
config RPMSG_MULTI_INSTANCE_$(ipm_name_instance_num)_IPM_RX_NAME
|
|
string "RX IPM channel name for instance $(ipm_name_instance_num)"
|
|
help
|
|
This option specifies the IPM device name to be used for
|
|
RX communication.
|