diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-10-16 13:17:08 -0500 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2017-10-22 05:06:34 -0500 |
commit | d1de6d6c639b7827c42c4750b8101ed1049e1c72 (patch) | |
tree | 888df635b26875b4cdbc54454d12c070cf9f5788 /drivers/of | |
parent | 2501ec14048d24d98651d2204cdf9cb33a127199 (diff) | |
download | linux-stable-d1de6d6c639b7827c42c4750b8101ed1049e1c72.tar.gz linux-stable-d1de6d6c639b7827c42c4750b8101ed1049e1c72.tar.bz2 linux-stable-d1de6d6c639b7827c42c4750b8101ed1049e1c72.zip |
soc: qcom: Remote filesystem memory driver
The Qualcomm remote file system protocol is used by certain remoteprocs,
in particular the modem, to read and write persistent storage in
platforms where only the application CPU has physical storage access.
The protocol is based on a set of QMI-encoded control-messages and a
shared memory buffer for exchaning the data. This driver implements the
latter, providing the user space service access to the carved out chunk
of memory.
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index 922b46646bcc..b7cf84b29737 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -498,6 +498,7 @@ EXPORT_SYMBOL_GPL(of_platform_default_populate); #ifndef CONFIG_PPC static const struct of_device_id reserved_mem_matches[] = { + { .compatible = "qcom,rmtfs-mem" }, { .compatible = "ramoops" }, {} }; |