summaryrefslogtreecommitdiff
path: root/drivers/remoteproc/Kconfig
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2015-09-17 15:42:40 -0500
committerTom Rini <trini@konsulko.com>2015-10-22 14:18:39 -0400
commit3df0b8b4dad19c764c1cc81d283bf903f4ab9e69 (patch)
tree78034d1d88f1b2888b43427bc059f1794dbd9540 /drivers/remoteproc/Kconfig
parentddf56bc7e3ef43920b4a23320e70c1998f1ef843 (diff)
downloadu-boot-imx-3df0b8b4dad19c764c1cc81d283bf903f4ab9e69.zip
u-boot-imx-3df0b8b4dad19c764c1cc81d283bf903f4ab9e69.tar.gz
u-boot-imx-3df0b8b4dad19c764c1cc81d283bf903f4ab9e69.tar.bz2
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>
Diffstat (limited to 'drivers/remoteproc/Kconfig')
-rw-r--r--drivers/remoteproc/Kconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig
index 4446826..437224b 100644
--- a/drivers/remoteproc/Kconfig
+++ b/drivers/remoteproc/Kconfig
@@ -12,4 +12,13 @@ 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