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