1# Copyright (c) 2018 Linaro Limited 2# SPDX-License-Identifier: Apache-2.0 3 4config ZEPHYR_OPEN_AMP_MODULE 5 bool 6 7config OPENAMP 8 bool "OpenAMP Support" 9 depends on ZEPHYR_OPEN_AMP_MODULE 10 select LIBMETAL 11 help 12 This option enables the OpenAMP IPC library 13 14if OPENAMP 15 16config OPENAMP_SRC_PATH 17 string "OpenAMP library source path" 18 default "open-amp" 19 depends on OPENAMP 20 help 21 This option specifies the path to the source for the open-amp library 22 23config OPENAMP_MASTER 24 bool "OpenAMP Master Support" 25 default y 26 help 27 This option enables support for OpenAMP VirtIO Master 28 29config OPENAMP_SLAVE 30 bool "OpenAMP Slave Support" 31 default y 32 help 33 This option enables support for OpenAMP VirtIO Slave 34 35config OPENAMP_WITH_DCACHE 36 bool "Build OpenAMP with vrings cache operations enabled" 37 depends on CACHE_MANAGEMENT 38 help 39 Build OpenAMP with vrings cache operations enabled. 40endif # OPENAMP 41