From: Hrushiraj Gandhi <hrushirajg23@gmail.com>
To: Srinivas Kandagatla <srini@kernel.org>, Heiko Stuebner <heiko@sntech.de>
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org,
Hrushiraj Gandhi <hrushirajg23@gmail.com>
Subject: [PATCH v2 2/2] nvmem: rockchip-efuse: add write support with optional VQPS supply gating
Date: Wed, 29 Jul 2026 14:28:56 +0530 [thread overview]
Message-ID: <20260729085856.226001-3-hrushirajg23@gmail.com> (raw)
In-Reply-To: <20260729085856.226001-1-hrushirajg23@gmail.com>
Implement write support for RK3399 eFuse using A_PGM programming mode,
and gate write access on the presence of an optional "vqps" regulator.
eFuse programming requires the VQPS supply (1.8V~1.98V per RK3399 TRM)
to be active only during write operations and kept at 0V during reads.
To support this:
- Probe uses devm_regulator_get_optional() for the "vqps" supply.
- If "vqps" is present, the driver registers write support. If absent,
the driver leaves the device read-only to prevent unsafe write.
- In rockchip_rk3399_efuse_write(), VQPS is enabled prior to the A_PGM
strobe programming loop and disabled immediately after.
Signed-off-by: Hrushiraj Gandhi <hrushirajg23@gmail.com>
---
drivers/nvmem/rockchip-efuse.c | 178 ++++++++++++++++++++++++++++-----
1 file changed, 153 insertions(+), 25 deletions(-)
diff --git a/drivers/nvmem/rockchip-efuse.c b/drivers/nvmem/rockchip-efuse.c
index 013e67136f3b..3bde09236c74 100644
--- a/drivers/nvmem/rockchip-efuse.c
+++ b/drivers/nvmem/rockchip-efuse.c
@@ -12,6 +12,7 @@
#include <linux/io.h>
#include <linux/module.h>
#include <linux/nvmem-provider.h>
+#include <linux/regulator/consumer.h>
#include <linux/slab.h>
#include <linux/of.h>
#include <linux/of_platform.h>
@@ -37,12 +38,16 @@
#define RK3399_NBYTES 4
#define RK3399_STROBSFTSEL BIT(9)
#define RK3399_RSB BIT(7)
+#define RK3399_PS BIT(4)
#define RK3399_PD BIT(5)
#define RK3399_PGENB BIT(3)
#define RK3399_LOAD BIT(2)
#define RK3399_STROBE BIT(1)
#define RK3399_CSB BIT(0)
+/* Program time per TRM Section 21.1: 12us +/- 1us; use 15us for margin */
+#define RK3399_PGM_TIME_US 15
+
#define REG_EFUSE_CTRL 0x0000
#define REG_EFUSE_DOUT 0x0004
@@ -50,6 +55,17 @@ struct rockchip_efuse_chip {
struct device *dev;
void __iomem *base;
struct clk *clk;
+ struct regulator *vqps;
+};
+
+/**
+ * struct rockchip_efuse_soc_data - per-SoC efuse callbacks
+ * @reg_read: mandatory read callback
+ * @reg_write: optional write callback; NULL means read-only
+ */
+struct rockchip_efuse_soc_data {
+ int (*reg_read)(void *ctx, unsigned int offset, void *val, size_t bytes);
+ int (*reg_write)(void *ctx, unsigned int offset, void *val, size_t bytes);
};
static int rockchip_rk3288_efuse_read(void *context, unsigned int offset,
@@ -177,6 +193,7 @@ static int rockchip_rk3399_efuse_read(void *context, unsigned int offset,
writel(RK3399_LOAD | RK3399_PGENB | RK3399_STROBSFTSEL | RK3399_RSB,
efuse->base + REG_EFUSE_CTRL);
udelay(1);
+
while (addr_len--) {
writel(readl(efuse->base + REG_EFUSE_CTRL) | RK3399_STROBE |
((addr_start++ & RK3399_A_MASK) << RK3399_A_SHIFT),
@@ -203,48 +220,128 @@ static int rockchip_rk3399_efuse_read(void *context, unsigned int offset,
return 0;
}
-static struct nvmem_config econfig = {
- .name = "rockchip-efuse",
- .add_legacy_fixed_of_cells = true,
- .type = NVMEM_TYPE_OTP,
- .stride = 1,
- .word_size = 1,
- .read_only = true,
+/**
+ * rockchip_rk3399_efuse_write - program fuse bits on RK3399 (A_PGM mode)
+ * @context: pointer to rockchip_efuse_chip
+ * @offset: byte offset in the efuse space
+ * @val: data to write (only set bits are programmed; OTP cannot clear)
+ * @bytes: number of bytes
+ *
+ * Each bit is programmed individually using a hardware-timed STROBE pulse.
+ * The caller must ensure VQPS (1.8V~1.98V) is present during the write.
+ * Per TRM Section 21.6, only one bit is programmed per STROBE cycle.
+ */
+static int rockchip_rk3399_efuse_write(void *context, unsigned int offset,
+ void *val, size_t bytes)
+{
+ struct rockchip_efuse_chip *efuse = context;
+ u8 *buf = val;
+ int ret;
+
+ ret = clk_prepare_enable(efuse->clk);
+ if (ret < 0) {
+ dev_err(efuse->dev, "failed to prepare/enable efuse clk\n");
+ return ret;
+ }
+
+ ret = regulator_enable(efuse->vqps);
+ if (ret < 0) {
+ dev_err(efuse->dev, "failed to enable vqps regulator\n");
+ clk_disable_unprepare(efuse->clk);
+ return ret;
+ }
+
+ while (bytes--) {
+ u8 byte = *buf++;
+ int bit;
+
+ for (bit = 0; bit < 8; bit++) {
+ u32 addr, ctrl;
+
+ if (!(byte & BIT(bit)))
+ continue;
+
+ addr = offset * 8 + bit;
+
+ /*
+ * A_PGM mode (TRM table 23-3):
+ * CSB=L, PGENB=L, PS=H, PD=L, LOAD=L, RSB=L,
+ * STROBSFTSEL=H (software controls STROBE)
+ * STROBE is asserted separately below.
+ */
+ ctrl = RK3399_STROBSFTSEL | RK3399_PS |
+ ((addr & RK3399_A_MASK) << RK3399_A_SHIFT);
+
+ writel(ctrl, efuse->base + REG_EFUSE_CTRL);
+ udelay(1);
+
+ /* Assert STROBE to program the selected bit */
+ writel(ctrl | RK3399_STROBE, efuse->base + REG_EFUSE_CTRL);
+ udelay(RK3399_PGM_TIME_US);
+
+ /* Deassert STROBE */
+ writel(ctrl, efuse->base + REG_EFUSE_CTRL);
+ udelay(1);
+ }
+
+ offset++;
+ }
+
+ /* Return to standby mode: PD=H, CSB=H */
+ writel(RK3399_PD | RK3399_CSB, efuse->base + REG_EFUSE_CTRL);
+
+ regulator_disable(efuse->vqps);
+ clk_disable_unprepare(efuse->clk);
+
+ return 0;
+}
+
+static const struct rockchip_efuse_soc_data rk3288_efuse_data = {
+ .reg_read = rockchip_rk3288_efuse_read,
+};
+
+static const struct rockchip_efuse_soc_data rk3328_efuse_data = {
+ .reg_read = rockchip_rk3328_efuse_read,
+};
+
+static const struct rockchip_efuse_soc_data rk3399_efuse_data = {
+ .reg_read = rockchip_rk3399_efuse_read,
+ .reg_write = rockchip_rk3399_efuse_write,
};
static const struct of_device_id rockchip_efuse_match[] = {
/* deprecated but kept around for dts binding compatibility */
{
.compatible = "rockchip,rockchip-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3066a-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3188-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3228-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3288-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3368-efuse",
- .data = (void *)&rockchip_rk3288_efuse_read,
+ .data = &rk3288_efuse_data,
},
{
.compatible = "rockchip,rk3328-efuse",
- .data = (void *)&rockchip_rk3328_efuse_read,
+ .data = &rk3328_efuse_data,
},
{
.compatible = "rockchip,rk3399-efuse",
- .data = (void *)&rockchip_rk3399_efuse_read,
+ .data = &rk3399_efuse_data,
},
{ /* sentinel */},
};
@@ -252,20 +349,26 @@ MODULE_DEVICE_TABLE(of, rockchip_efuse_match);
static int rockchip_efuse_probe(struct platform_device *pdev)
{
- struct resource *res;
- struct nvmem_device *nvmem;
+ const struct rockchip_efuse_soc_data *soc_data;
struct rockchip_efuse_chip *efuse;
- const void *data;
+ struct nvmem_device *nvmem;
+ struct nvmem_config econfig = {
+ .name = "rockchip-efuse",
+ .add_legacy_fixed_of_cells = true,
+ .type = NVMEM_TYPE_OTP,
+ .stride = 1,
+ .word_size = 1,
+ };
+ struct resource *res;
struct device *dev = &pdev->dev;
- data = of_device_get_match_data(dev);
- if (!data) {
+ soc_data = of_device_get_match_data(dev);
+ if (!soc_data) {
dev_err(dev, "failed to get match data\n");
return -EINVAL;
}
- efuse = devm_kzalloc(dev, sizeof(struct rockchip_efuse_chip),
- GFP_KERNEL);
+ efuse = devm_kzalloc(dev, sizeof(*efuse), GFP_KERNEL);
if (!efuse)
return -ENOMEM;
@@ -278,12 +381,36 @@ static int rockchip_efuse_probe(struct platform_device *pdev)
return PTR_ERR(efuse->clk);
efuse->dev = dev;
+
if (of_property_read_u32(dev->of_node, "rockchip,efuse-size",
&econfig.size))
econfig.size = resource_size(res);
- econfig.reg_read = data;
- econfig.priv = efuse;
- econfig.dev = efuse->dev;
+
+ econfig.reg_read = soc_data->reg_read;
+ econfig.priv = efuse;
+ econfig.dev = dev;
+
+ /*
+ * Enable write support only when a VQPS programming supply is
+ * described in the device tree. Its presence is the hardware
+ * declaration that irreversible OTP programming is intended on
+ * this board. VQPS must be 0V during reads (the regulator is
+ * only enabled inside the write callback).
+ */
+ if (soc_data->reg_write) {
+ efuse->vqps = devm_regulator_get_optional(dev, "vqps");
+ if (!IS_ERR(efuse->vqps)) {
+ econfig.reg_write = soc_data->reg_write;
+ } else if (PTR_ERR(efuse->vqps) == -ENODEV) {
+ efuse->vqps = NULL;
+ dev_dbg(dev, "vqps supply absent, write support disabled\n");
+ } else {
+ return PTR_ERR(efuse->vqps);
+ }
+ }
+
+ econfig.read_only = !econfig.reg_write;
+
nvmem = devm_nvmem_register(dev, &econfig);
return PTR_ERR_OR_ZERO(nvmem);
@@ -300,3 +427,4 @@ static struct platform_driver rockchip_efuse_driver = {
module_platform_driver(rockchip_efuse_driver);
MODULE_DESCRIPTION("rockchip_efuse driver");
MODULE_LICENSE("GPL v2");
+
--
2.47.3
next prev parent reply other threads:[~2026-07-29 8:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-29 8:58 [PATCH v2 0/2] nvmem: rockchip-efuse: add write support with VQPS gating Hrushiraj Gandhi
2026-07-29 8:58 ` [PATCH v2 1/2] dt-bindings: nvmem: rockchip-efuse: add optional vqps supply Hrushiraj Gandhi
2026-07-29 8:58 ` Hrushiraj Gandhi [this message]
2026-07-29 9:11 ` [PATCH v2 2/2] nvmem: rockchip-efuse: add write support with optional VQPS supply gating sashiko-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260729085856.226001-3-hrushirajg23@gmail.com \
--to=hrushirajg23@gmail.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=heiko@sntech.de \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=robh@kernel.org \
--cc=srini@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox