[PATCH v2] nvmem: rockchip-otp: skip zero-byte reads
Ruoyu Wang
ruoyuw560 at gmail.com
Wed Jun 17 21:08:59 PDT 2026
nvmem_device_read() does not reject a zero-byte read before calling the
provider reg_read callback. rockchip_otp_read() then enables clocks and
dispatches to the SoC-specific callback.
Return 0 from rockchip_otp_read() before enabling clocks when bytes is
zero. This avoids hardware access for empty reads and prevents zero
counts from reaching the internal reg_read callbacks.
Fixes: 8ab099fafbbc ("nvmem: rockchip-otp: Add support for RK3588")
Suggested-by: Jonas Karlman <jonas at kwiboo.se>
Signed-off-by: Ruoyu Wang <ruoyuw560 at gmail.com>
---
v2:
- Handle empty reads in rockchip_otp_read() instead of initializing ret in
rk3588_otp_read().
drivers/nvmem/rockchip-otp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/nvmem/rockchip-otp.c b/drivers/nvmem/rockchip-otp.c
index 0ec78b5e19e7d..95685a9fcc77b 100644
--- a/drivers/nvmem/rockchip-otp.c
+++ b/drivers/nvmem/rockchip-otp.c
@@ -272,6 +272,9 @@ static int rockchip_otp_read(void *context, unsigned int offset,
if (!otp->data || !otp->data->reg_read)
return -EINVAL;
+ if (!bytes)
+ return 0;
+
ret = clk_bulk_prepare_enable(otp->data->num_clks, otp->clks);
if (ret < 0) {
dev_err(otp->dev, "failed to prepare/enable clks\n");
--
2.51.0
More information about the Linux-rockchip
mailing list