u-boot-brain/drivers/remoteproc/Kconfig
Nishanth Menon 3df0b8b4da remoteproc: Introduce a sandbox dummy driver
Introduce a dummy driver for sandbox that allows us to verify basic
functionality. This is not meant to do anything functional - but is
more or less meant as a framework plumbing debug helper.

The sandbox remoteproc driver maintains absolutey no states and is a
simple driver which just is filled with empty hooks. Idea being to give
an approximate idea to implement own remoteproc driver using this as a
template.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
2015-10-22 14:18:39 -04:00

25 lines
568 B
Plaintext

#
# (C) Copyright 2015
# Texas Instruments Incorporated - http://www.ti.com/
# SPDX-License-Identifier: GPL-2.0+
#
menu "Remote Processor drivers"
# REMOTEPROC gets selected by drivers as needed
# All users should depend on DM
config REMOTEPROC
bool
depends on DM
# Please keep the configuration alphabetically sorted.
config REMOTEPROC_SANDBOX
bool "Support for Test processor for Sandbox"
select REMOTEPROC
depends on DM
depends on SANDBOX
help
Say 'y' here to add support for test processor which does dummy
operations for sandbox platform.
endmenu