remoteproc: Move Elf related functions to separate file

Prepare for introduction of custom firmware loaders by
moving all ELF related handling into a separate file.

The functions: rproc_find_rsc_table(), rproc_fw_sanity_check(),
rproc_find_rsc_table() and rproc_get_boot_addr() are moved
to the new file remoteproc_elf_loader.c. The function
rproc_da_to_va() is made non-static and is declared in
remoteproc_internal.h

No functional changes are introduced in this patch.

Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com>
[ohad: rebase, fix kerneldoc, put prototypes in remoteproc_internal.h]
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
This commit is contained in:
Sjur Brændeland
2012-07-15 11:25:27 +03:00
committed by Ohad Ben-Cohen
父節點 3e5f9eb5d9
當前提交 72854fb042
共有 4 個文件被更改,包括 300 次插入248 次删除

查看文件

@@ -21,6 +21,7 @@
#define REMOTEPROC_INTERNAL_H
#include <linux/irqreturn.h>
#include <linux/firmware.h>
struct rproc;
@@ -43,4 +44,14 @@ void rproc_exit_debugfs(void);
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);
struct resource_table *rproc_find_rsc_table(struct rproc *rproc,
const struct firmware *fw,
int *tablesz);
int rproc_load_segments(struct rproc *rproc, const struct firmware *fw);
int rproc_fw_sanity_check(struct rproc *rproc, const struct firmware *fw);
u32 rproc_get_boot_addr(struct rproc *rproc, const struct firmware *fw);
#endif /* REMOTEPROC_INTERNAL_H */