summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2794d16)
raw | patch | inline | side by side (parent: 2794d16)
author | Suman Anna <s-anna@ti.com> | |
Fri, 2 Nov 2018 10:29:05 +0000 (15:59 +0530) | ||
committer | Suman Anna <s-anna@ti.com> | |
Sun, 24 Feb 2019 01:20:48 +0000 (19:20 -0600) |
The rproc_da_to_va() API is an exported function, so move its
declaration from the remoteproc local remoteproc_internal.h
to the public remoteproc.h file.
This will allow drivers outside of the remoteproc folder to be
able to use this API.
Signed-off-by: Suman Anna <s-anna@ti.com>
declaration from the remoteproc local remoteproc_internal.h
to the public remoteproc.h file.
This will allow drivers outside of the remoteproc folder to be
able to use this API.
Signed-off-by: Suman Anna <s-anna@ti.com>
drivers/remoteproc/remoteproc_internal.h | patch | blob | history | |
include/linux/remoteproc.h | patch | blob | history |
index 7570beb035b5f462f9c9ae19ef9ed1ceff6a6424..ada691be23186cb08ce0408e28a9afb207e27e44 100644 (file)
void rproc_free_vring(struct rproc_vring *rvring);
int rproc_alloc_vring(struct rproc_vdev *rvdev, int i);
-void *rproc_da_to_va(struct rproc *rproc, u64 da, int len);
int rproc_trigger_recovery(struct rproc *rproc);
int rproc_elf_sanity_check(struct rproc *rproc, const struct firmware *fw);
index a62df28507e396c05d7b99be817661190789e58c..3dba367a379da8a5da8963385e24150187874284 100644 (file)
void rproc_shutdown(struct rproc *rproc);
int rproc_set_firmware(struct rproc *rproc, const char *fw_name);
void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type);
+void *rproc_da_to_va(struct rproc *rproc, u64 da, int len);
int rproc_coredump_add_segment(struct rproc *rproc, dma_addr_t da, size_t size);
int rproc_get_id(struct rproc *rproc);
int rproc_pa_to_da(struct rproc *rproc, phys_addr_t pa, u64 *da);