Commit 0a7eee89 authored by Bjorn Andersson's avatar Bjorn Andersson Committed by Bjorn Andersson

rpmsg: glink: Transition intent request signaling to wait queue

Transition the intent request acknowledgement to use a wait queue so
that it's possible, in the next commit, to extend the wait to also wait
for an incoming intent.
Signed-off-by: default avatarBjorn Andersson <quic_bjorande@quicinc.com>
Reviewed-by: default avatarChris Lew <quic_clew@quicinc.com>
Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230327144617.3134175-2-quic_bjorande@quicinc.com
parent 38be8951
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/rpmsg.h> #include <linux/rpmsg.h>
#include <linux/sizes.h> #include <linux/sizes.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/wait.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/mailbox_client.h> #include <linux/mailbox_client.h>
...@@ -145,7 +146,7 @@ enum { ...@@ -145,7 +146,7 @@ enum {
* @open_req: completed once open-request has been received * @open_req: completed once open-request has been received
* @intent_req_lock: Synchronises multiple intent requests * @intent_req_lock: Synchronises multiple intent requests
* @intent_req_result: Result of intent request * @intent_req_result: Result of intent request
* @intent_req_comp: Completion for intent_req signalling * @intent_req_wq: wait queue for intent_req signalling
*/ */
struct glink_channel { struct glink_channel {
struct rpmsg_endpoint ept; struct rpmsg_endpoint ept;
...@@ -175,8 +176,8 @@ struct glink_channel { ...@@ -175,8 +176,8 @@ struct glink_channel {
struct completion open_req; struct completion open_req;
struct mutex intent_req_lock; struct mutex intent_req_lock;
bool intent_req_result; int intent_req_result;
struct completion intent_req_comp; wait_queue_head_t intent_req_wq;
}; };
#define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept) #define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept)
...@@ -221,7 +222,7 @@ static struct glink_channel *qcom_glink_alloc_channel(struct qcom_glink *glink, ...@@ -221,7 +222,7 @@ static struct glink_channel *qcom_glink_alloc_channel(struct qcom_glink *glink,
init_completion(&channel->open_req); init_completion(&channel->open_req);
init_completion(&channel->open_ack); init_completion(&channel->open_ack);
init_completion(&channel->intent_req_comp); init_waitqueue_head(&channel->intent_req_wq);
INIT_LIST_HEAD(&channel->done_intents); INIT_LIST_HEAD(&channel->done_intents);
INIT_WORK(&channel->intent_work, qcom_glink_rx_done_work); INIT_WORK(&channel->intent_work, qcom_glink_rx_done_work);
...@@ -420,13 +421,13 @@ static void qcom_glink_handle_intent_req_ack(struct qcom_glink *glink, ...@@ -420,13 +421,13 @@ static void qcom_glink_handle_intent_req_ack(struct qcom_glink *glink,
} }
channel->intent_req_result = granted; channel->intent_req_result = granted;
complete(&channel->intent_req_comp); wake_up_all(&channel->intent_req_wq);
} }
static void qcom_glink_intent_req_abort(struct glink_channel *channel) static void qcom_glink_intent_req_abort(struct glink_channel *channel)
{ {
channel->intent_req_result = 0; channel->intent_req_result = 0;
complete(&channel->intent_req_comp); wake_up_all(&channel->intent_req_wq);
} }
/** /**
...@@ -1271,7 +1272,7 @@ static int qcom_glink_request_intent(struct qcom_glink *glink, ...@@ -1271,7 +1272,7 @@ static int qcom_glink_request_intent(struct qcom_glink *glink,
mutex_lock(&channel->intent_req_lock); mutex_lock(&channel->intent_req_lock);
reinit_completion(&channel->intent_req_comp); WRITE_ONCE(channel->intent_req_result, -1);
cmd.id = GLINK_CMD_RX_INTENT_REQ; cmd.id = GLINK_CMD_RX_INTENT_REQ;
cmd.cid = channel->lcid; cmd.cid = channel->lcid;
...@@ -1281,12 +1282,14 @@ static int qcom_glink_request_intent(struct qcom_glink *glink, ...@@ -1281,12 +1282,14 @@ static int qcom_glink_request_intent(struct qcom_glink *glink,
if (ret) if (ret)
goto unlock; goto unlock;
ret = wait_for_completion_timeout(&channel->intent_req_comp, 10 * HZ); ret = wait_event_timeout(channel->intent_req_wq,
READ_ONCE(channel->intent_req_result) >= 0,
10 * HZ);
if (!ret) { if (!ret) {
dev_err(glink->dev, "intent request timed out\n"); dev_err(glink->dev, "intent request timed out\n");
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
} else { } else {
ret = channel->intent_req_result ? 0 : -ECANCELED; ret = READ_ONCE(channel->intent_req_result) ? 0 : -ECANCELED;
} }
unlock: unlock:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment