From 051fb70fd4ea40fbc7139186a4890b2fe5cb1e76 Mon Sep 17 00:00:00 2001 From: Bjorn Andersson Date: Mon, 20 Jun 2016 14:28:41 -0700 Subject: remoteproc: qcom: Driver for the self-authenticating Hexagon v5 This driver supports bringing the Q6V5 out of reset, load and drive the self-authenticating boot loader and use this to load the mdt and subsequent bXX files. Signed-off-by: Bjorn Andersson Acked-by: Srinivas Kandagatla Signed-off-by: Bjorn Andersson --- drivers/remoteproc/qcom_mdt_loader.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 drivers/remoteproc/qcom_mdt_loader.h (limited to 'drivers/remoteproc/qcom_mdt_loader.h') diff --git a/drivers/remoteproc/qcom_mdt_loader.h b/drivers/remoteproc/qcom_mdt_loader.h new file mode 100644 index 000000000000..c5d7122755b6 --- /dev/null +++ b/drivers/remoteproc/qcom_mdt_loader.h @@ -0,0 +1,13 @@ +#ifndef __QCOM_MDT_LOADER_H__ +#define __QCOM_MDT_LOADER_H__ + +#define QCOM_MDT_TYPE_MASK (7 << 24) +#define QCOM_MDT_TYPE_HASH (2 << 24) +#define QCOM_MDT_RELOCATABLE BIT(27) + +struct resource_table * qcom_mdt_find_rsc_table(struct rproc *rproc, const struct firmware *fw, int *tablesz); +int qcom_mdt_load(struct rproc *rproc, const struct firmware *fw, const char *fw_name); + +int qcom_mdt_parse(const struct firmware *fw, phys_addr_t *fw_addr, size_t *fw_size, bool *fw_relocate); + +#endif -- cgit v1.2.1