* [PATCH] crypto: eip93: fix sleep inside spinlock
@ 2025-12-03 3:11 Qingfang Deng
2025-12-03 11:45 ` Qingfang Deng
0 siblings, 1 reply; 2+ messages in thread
From: Qingfang Deng @ 2025-12-03 3:11 UTC (permalink / raw)
To: Christian Marangi, Antoine Tenart, Herbert Xu, David S. Miller,
Richard van Schagen, linux-crypto, linux-kernel
When busy waiting, usleep_range() is called in ring->write_lock's
critical section. Remove the sleep.
Fixes: 9739f5f93b78 ("crypto: eip93 - Add Inside Secure SafeXcel EIP-93 crypto engine support")
Signed-off-by: Qingfang Deng <dqfext@gmail.com>
---
drivers/crypto/inside-secure/eip93/eip93-common.c | 5 +----
drivers/crypto/inside-secure/eip93/eip93-hash.c | 5 +----
drivers/crypto/inside-secure/eip93/eip93-main.h | 2 --
3 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/drivers/crypto/inside-secure/eip93/eip93-common.c b/drivers/crypto/inside-secure/eip93/eip93-common.c
index 66153aa2493f..00772c7be189 100644
--- a/drivers/crypto/inside-secure/eip93/eip93-common.c
+++ b/drivers/crypto/inside-secure/eip93/eip93-common.c
@@ -496,11 +496,8 @@ static int eip93_scatter_combine(struct eip93_device *eip93,
again:
scoped_guard(spinlock_irqsave, &eip93->ring->write_lock)
err = eip93_put_descriptor(eip93, cdesc);
- if (err) {
- usleep_range(EIP93_RING_BUSY_DELAY,
- EIP93_RING_BUSY_DELAY * 2);
+ if (err)
goto again;
- }
/* Writing new descriptor count starts DMA action */
writel(1, eip93->base + EIP93_REG_PE_CD_COUNT);
} while (n);
diff --git a/drivers/crypto/inside-secure/eip93/eip93-hash.c b/drivers/crypto/inside-secure/eip93/eip93-hash.c
index ac13d90a2b7c..13b723bb9830 100644
--- a/drivers/crypto/inside-secure/eip93/eip93-hash.c
+++ b/drivers/crypto/inside-secure/eip93/eip93-hash.c
@@ -270,11 +270,8 @@ static int eip93_send_hash_req(struct crypto_async_request *async, u8 *data,
again:
scoped_guard(spinlock_irqsave, &eip93->ring->write_lock)
ret = eip93_put_descriptor(eip93, &cdesc);
- if (ret) {
- usleep_range(EIP93_RING_BUSY_DELAY,
- EIP93_RING_BUSY_DELAY * 2);
+ if (ret)
goto again;
- }
/* Writing new descriptor count starts DMA action */
writel(1, eip93->base + EIP93_REG_PE_CD_COUNT);
diff --git a/drivers/crypto/inside-secure/eip93/eip93-main.h b/drivers/crypto/inside-secure/eip93/eip93-main.h
index 79b078f0e5da..45afeaa51d00 100644
--- a/drivers/crypto/inside-secure/eip93/eip93-main.h
+++ b/drivers/crypto/inside-secure/eip93/eip93-main.h
@@ -14,8 +14,6 @@
#include <linux/bitfield.h>
#include <linux/interrupt.h>
-#define EIP93_RING_BUSY_DELAY 500
-
#define EIP93_RING_NUM 512
#define EIP93_RING_BUSY 32
#define EIP93_CRA_PRIORITY 1500
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] crypto: eip93: fix sleep inside spinlock
2025-12-03 3:11 [PATCH] crypto: eip93: fix sleep inside spinlock Qingfang Deng
@ 2025-12-03 11:45 ` Qingfang Deng
0 siblings, 0 replies; 2+ messages in thread
From: Qingfang Deng @ 2025-12-03 11:45 UTC (permalink / raw)
To: Christian Marangi, Antoine Tenart, Herbert Xu, David S. Miller,
Richard van Schagen, linux-crypto, linux-kernel
Please disregard the patch, as I found out the issue is that
crypto_async_request can be in an atomic context, so the driver is not
allowed to sleep unless CRYPTO_TFM_REQ_MAY_SLEEP is set.
I'll send v2 with an updated message.
Regards,
Qingfang
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-12-03 11:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-03 3:11 [PATCH] crypto: eip93: fix sleep inside spinlock Qingfang Deng
2025-12-03 11:45 ` Qingfang Deng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox