[PATCH 4/7] nvmem: sprd: Optimize the block lock operation

From: Yanxin Huang
Date: Sat Aug 19 2023 - 01:53:27 EST


We may program the efuse block partially many times, or we may program the
efuse block as a whole, but either way programming, the bytes parameter
passed in is SPRD_EFUSE_BLOCK_WIDTH. If we judge whether to lock the efuse
block or not by bytes and SPRD_efuse_block_WIDTH size, then the block will
be locked after the first time we programmed the efuse block, and we will
not be able to program the block again in the following period, so
removing the locked efuse block judgment.

In addition, since there is no need to lock the efuse block in the current
unisoc platform, we will change the default value of lock to flase, and
then develop according to the need if there is a need to lock the efuse
block.

Signed-off-by: Yanxin Huang <yanxin.huang@xxxxxxxxxx>
---
drivers/nvmem/sprd-efuse.c | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/drivers/nvmem/sprd-efuse.c b/drivers/nvmem/sprd-efuse.c
index 3818d83de722..7370f8f9595f 100644
--- a/drivers/nvmem/sprd-efuse.c
+++ b/drivers/nvmem/sprd-efuse.c
@@ -326,7 +326,7 @@ static int sprd_efuse_write(void *context, u32 offset, void *val, size_t bytes)
struct sprd_efuse *efuse = context;
bool blk_double = efuse->data->blk_double;
u32 index = offset / SPRD_EFUSE_BLOCK_WIDTH + efuse->data->blk_offset;
- bool lock;
+ bool lock = false;
int ret;

ret = sprd_efuse_lock(efuse);
@@ -337,19 +337,6 @@ static int sprd_efuse_write(void *context, u32 offset, void *val, size_t bytes)
if (ret)
goto unlock;

- /*
- * If the writing bytes are equal with the block width, which means the
- * whole block will be programmed. For this case, we should not allow
- * this block to be programmed again by locking this block.
- *
- * If the block was programmed partially, we should allow this block to
- * be programmed again.
- */
- if (bytes < SPRD_EFUSE_BLOCK_WIDTH)
- lock = false;
- else
- lock = true;
-
ret = sprd_efuse_raw_prog(efuse, index, blk_double, lock, val);

clk_disable_unprepare(efuse->clk);
--
2.17.1

________________________________
This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。