diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-04-19 19:24:52 +0300 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:05:03 -0700 |
commit | a306b3e9565d6bcb4d1203cd6971340ccddd65a1 (patch) | |
tree | 69a194c1a870186df73d8df77802fab92d7a44a2 /drivers/Makefile | |
parent | 2c53b436a30867eb6b47dd7bab23ba638d1fb0d2 (diff) | |
download | kernel_samsung_tuna-a306b3e9565d6bcb4d1203cd6971340ccddd65a1.zip kernel_samsung_tuna-a306b3e9565d6bcb4d1203cd6971340ccddd65a1.tar.gz kernel_samsung_tuna-a306b3e9565d6bcb4d1203cd6971340ccddd65a1.tar.bz2 |
drivers: add generic remoteproc framework
Some systems are equipped with slave heterogeneous remote processor
devices, that are usually used to offload cpu-intensive computations
(e.g. multimedia codec tasks).
Introduce a generic remoteproc framework that allows drivers to start
and stop those remote processor devices, load up their firmware (which
might not necessarily be Linux-based), and in the future also manage
their runtime PM status, recovery, and any other relevant
configuration/states.
Firmware loader is based on code by Mark Grosen <mgrosen@ti.com>.
Change-Id: I7094eb8e0eb512b53a5333ff2dd70c756a775a7e
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 09f3232..4d53a18 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -122,3 +122,4 @@ obj-y += ieee802154/ obj-y += clk/ obj-$(CONFIG_HWSPINLOCK) += hwspinlock/ +obj-$(CONFIG_REMOTE_PROC) += remoteproc/ |