diff options
author | Bjorn Andersson <quic_bjorande@quicinc.com> | 2023-02-13 16:52:11 +0100 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2023-02-14 17:19:38 +0100 |
commit | ab9fdd41d970c38ddc0fd59e5f8f37e8d966d454 (patch) | |
tree | dad0197a5e65f5d2394b0dd170be1a4a0d746de3 /drivers/remoteproc/qcom_common.h | |
parent | rpmsg: glink: Extract tx kick operation (diff) | |
download | linux-ab9fdd41d970c38ddc0fd59e5f8f37e8d966d454.tar.xz linux-ab9fdd41d970c38ddc0fd59e5f8f37e8d966d454.zip |
rpmsg: glink: smem: Wrap driver context
The Glink SMEM driver allocates a struct device and hangs two
devres-allocated pipe objects thereon. To facilitate the move of
interrupt and mailbox handling to the driver, introduce a wrapper object
capturing the device, glink reference and remote processor id.
The type of the remoteproc reference is updated, as these are
specifically targeting the SMEM implementation.
Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
Reviewed-by: Chris Lew <quic_clew@quicinc.com>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230213155215.1237059-3-quic_bjorande@quicinc.com
Diffstat (limited to 'drivers/remoteproc/qcom_common.h')
-rw-r--r-- | drivers/remoteproc/qcom_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/remoteproc/qcom_common.h b/drivers/remoteproc/qcom_common.h index c35adf730be0..2747c7d9ba44 100644 --- a/drivers/remoteproc/qcom_common.h +++ b/drivers/remoteproc/qcom_common.h @@ -6,6 +6,7 @@ #include "remoteproc_internal.h" #include <linux/soc/qcom/qmi.h> +struct qcom_glink_smem; struct qcom_sysmon; struct qcom_rproc_glink { @@ -15,7 +16,7 @@ struct qcom_rproc_glink { struct device *dev; struct device_node *node; - struct qcom_glink *edge; + struct qcom_glink_smem *edge; }; struct qcom_rproc_subdev { |