incubator-nuttx/drivers/rpmsg/Kconfig

42 lines
766 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config RPMSG
bool
default n
select OPENAMP
if RPMSG
config RPMSG_LOCAL_CPUNAME
string "Rpmsg Local Cpuname"
default LIBC_HOSTNAME
config RPMSG_PING
bool "rpmsg ping support"
default n
---help---
This is for debugging & profiling, create ping rpmsg
channel, user can use it to get send/recv speed & latency.
endif # RPMSG
config RPMSG_VIRTIO
bool "rpmsg virtio transport support"
default n
select RPMSG
if RPMSG_VIRTIO
config RPMSG_VIRTIO_PRIORITY
int "rpmsg virtio rx thread priority"
default 224
config RPMSG_VIRTIO_STACKSIZE
int "rpmsg virtio rx thread stack size"
default DEFAULT_TASK_STACKSIZE
endif