diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-01-27 16:04:54 +0100 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-02-06 17:57:25 +0100 |
commit | b90fcfcb1378ddab1ee58ec7caaedbba2a8eb7c6 (patch) | |
tree | 436db602ee6a0af7e02baaad94aa04a44a033a75 /drivers/remoteproc/qcom_common.h | |
parent | remoteproc: Move qcom_mdt_loader into drivers/soc/qcom (diff) | |
download | linux-b90fcfcb1378ddab1ee58ec7caaedbba2a8eb7c6.tar.xz linux-b90fcfcb1378ddab1ee58ec7caaedbba2a8eb7c6.zip |
remoteproc: qcom: wcnss: Make SMD handling common
Move the SMD edge handling to the Qualcomm common file to make it
reusable for other Qualcomm remoteproc drivers.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/qcom_common.h')
-rw-r--r-- | drivers/remoteproc/qcom_common.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/drivers/remoteproc/qcom_common.h b/drivers/remoteproc/qcom_common.h index caecf27c4ffa..db5c826d5cd4 100644 --- a/drivers/remoteproc/qcom_common.h +++ b/drivers/remoteproc/qcom_common.h @@ -1,11 +1,22 @@ #ifndef __RPROC_QCOM_COMMON_H__ #define __RPROC_QCOM_COMMON_H__ -struct resource_table; -struct rproc; +#include <linux/remoteproc.h> +#include "remoteproc_internal.h" + +struct qcom_rproc_subdev { + struct rproc_subdev subdev; + + struct device *dev; + struct device_node *node; + struct qcom_smd_edge *edge; +}; struct resource_table *qcom_mdt_find_rsc_table(struct rproc *rproc, const struct firmware *fw, int *tablesz); +void qcom_add_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd); +void qcom_remove_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd); + #endif |