* [PATCH] rpmsg: glink: Use spinlock in tx path
@ 2018-02-13 19:04 Bjorn Andersson
2018-03-20 2:14 ` Srinivas Kandagatla
0 siblings, 1 reply; 2+ messages in thread
From: Bjorn Andersson @ 2018-02-13 19:04 UTC (permalink / raw)
To: Ohad Ben-Cohen, Bjorn Andersson, Chris Lew,
Arun Kumar Neelakantam, Srini Kandagatla
Cc: linux-remoteproc, linux-arm-msm, linux-kernel
Switch the tx_lock to a spinlock we allow clients to use rpmsg_trysend()
from atomic context.
In order to allow clients to sleep while waiting for space in the FIFO
we release the lock temporarily around the delay; which should be
replaced by sending a READ_NOTIF and waiting for the remote to signal
us that space has been made available.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
drivers/rpmsg/qcom_glink_native.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/rpmsg/qcom_glink_native.c b/drivers/rpmsg/qcom_glink_native.c
index e0f31ed096a5..6e950e9afa82 100644
--- a/drivers/rpmsg/qcom_glink_native.c
+++ b/drivers/rpmsg/qcom_glink_native.c
@@ -113,7 +113,7 @@ struct qcom_glink {
spinlock_t rx_lock;
struct list_head rx_queue;
- struct mutex tx_lock;
+ spinlock_t tx_lock;
spinlock_t idr_lock;
struct idr lcids;
@@ -288,15 +288,14 @@ static int qcom_glink_tx(struct qcom_glink *glink,
const void *data, size_t dlen, bool wait)
{
unsigned int tlen = hlen + dlen;
+ unsigned long flags;
int ret;
/* Reject packets that are too big */
if (tlen >= glink->tx_pipe->length)
return -EINVAL;
- ret = mutex_lock_interruptible(&glink->tx_lock);
- if (ret)
- return ret;
+ spin_lock_irqsave(&glink->tx_lock, flags);
while (qcom_glink_tx_avail(glink) < tlen) {
if (!wait) {
@@ -304,7 +303,12 @@ static int qcom_glink_tx(struct qcom_glink *glink,
goto out;
}
+ /* Wait without holding the tx_lock */
+ spin_unlock_irqrestore(&glink->tx_lock, flags);
+
usleep_range(10000, 15000);
+
+ spin_lock_irqsave(&glink->tx_lock, flags);
}
qcom_glink_tx_write(glink, hdr, hlen, data, dlen);
@@ -313,7 +317,7 @@ static int qcom_glink_tx(struct qcom_glink *glink,
mbox_client_txdone(glink->mbox_chan, 0);
out:
- mutex_unlock(&glink->tx_lock);
+ spin_unlock_irqrestore(&glink->tx_lock, flags);
return ret;
}
@@ -1567,7 +1571,7 @@ struct qcom_glink *qcom_glink_native_probe(struct device *dev,
glink->features = features;
glink->intentless = intentless;
- mutex_init(&glink->tx_lock);
+ spin_lock_init(&glink->tx_lock);
spin_lock_init(&glink->rx_lock);
INIT_LIST_HEAD(&glink->rx_queue);
INIT_WORK(&glink->rx_work, qcom_glink_work);
--
2.15.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] rpmsg: glink: Use spinlock in tx path
2018-02-13 19:04 [PATCH] rpmsg: glink: Use spinlock in tx path Bjorn Andersson
@ 2018-03-20 2:14 ` Srinivas Kandagatla
0 siblings, 0 replies; 2+ messages in thread
From: Srinivas Kandagatla @ 2018-03-20 2:14 UTC (permalink / raw)
To: Bjorn Andersson, Ohad Ben-Cohen, Chris Lew,
Arun Kumar Neelakantam
Cc: linux-remoteproc, linux-arm-msm, linux-kernel
On 14/02/18 03:04, Bjorn Andersson wrote:
> Switch the tx_lock to a spinlock we allow clients to use rpmsg_trysend()
> from atomic context.
>
> In order to allow clients to sleep while waiting for space in the FIFO
> we release the lock temporarily around the delay; which should be
> replaced by sending a READ_NOTIF and waiting for the remote to signal
> us that space has been made available.
>
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---
with ret set to 0 in qcom_glink_tx()
Tested-by: Srinivas kandagatla <srinivas.kandagatla@linaro.org>
> drivers/rpmsg/qcom_glink_native.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/rpmsg/qcom_glink_native.c b/drivers/rpmsg/qcom_glink_native.c
> index e0f31ed096a5..6e950e9afa82 100644
> --- a/drivers/rpmsg/qcom_glink_native.c
> +++ b/drivers/rpmsg/qcom_glink_native.c
> @@ -113,7 +113,7 @@ struct qcom_glink {
> spinlock_t rx_lock;
> struct list_head rx_queue;
>
> - struct mutex tx_lock;
> + spinlock_t tx_lock;
>
> spinlock_t idr_lock;
> struct idr lcids;
> @@ -288,15 +288,14 @@ static int qcom_glink_tx(struct qcom_glink *glink,
> const void *data, size_t dlen, bool wait)
> {
> unsigned int tlen = hlen + dlen;
> + unsigned long flags;
> int ret;
>
> /* Reject packets that are too big */
> if (tlen >= glink->tx_pipe->length)
> return -EINVAL;
>
> - ret = mutex_lock_interruptible(&glink->tx_lock);
> - if (ret)
> - return ret;
> + spin_lock_irqsave(&glink->tx_lock, flags);
>
> while (qcom_glink_tx_avail(glink) < tlen) {
> if (!wait) {
> @@ -304,7 +303,12 @@ static int qcom_glink_tx(struct qcom_glink *glink,
> goto out;
> }
>
> + /* Wait without holding the tx_lock */
> + spin_unlock_irqrestore(&glink->tx_lock, flags);
> +
> usleep_range(10000, 15000);
> +
> + spin_lock_irqsave(&glink->tx_lock, flags);
> }
>
> qcom_glink_tx_write(glink, hdr, hlen, data, dlen);
> @@ -313,7 +317,7 @@ static int qcom_glink_tx(struct qcom_glink *glink,
> mbox_client_txdone(glink->mbox_chan, 0);
>
> out:
> - mutex_unlock(&glink->tx_lock);
> + spin_unlock_irqrestore(&glink->tx_lock, flags);
>
> return ret;
> }
> @@ -1567,7 +1571,7 @@ struct qcom_glink *qcom_glink_native_probe(struct device *dev,
> glink->features = features;
> glink->intentless = intentless;
>
> - mutex_init(&glink->tx_lock);
> + spin_lock_init(&glink->tx_lock);
> spin_lock_init(&glink->rx_lock);
> INIT_LIST_HEAD(&glink->rx_queue);
> INIT_WORK(&glink->rx_work, qcom_glink_work);
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-03-20 2:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-13 19:04 [PATCH] rpmsg: glink: Use spinlock in tx path Bjorn Andersson
2018-03-20 2:14 ` Srinivas Kandagatla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).