From: srini@kernel.org
To: gregkh@linuxfoundation.org
Cc: linux-kernel@vger.kernel.org, Jonas Karlman <jonas@kwiboo.se>,
Heiko Stuebner <heiko@sntech.de>, Willy Tarreau <w@1wt.eu>,
Srinivas Kandagatla <srini@kernel.org>
Subject: [PATCH 9/9] nvmem: rockchip-otp: Add support for RK3528
Date: Fri, 27 Mar 2026 13:17:51 +0000 [thread overview]
Message-ID: <20260327131751.3026030-10-srini@kernel.org> (raw)
In-Reply-To: <20260327131751.3026030-1-srini@kernel.org>
From: Jonas Karlman <jonas@kwiboo.se>
Add support for the OTP controller in RK3528. The OTPC is similar to the
OTPC in RK3562 and RK3568, exept for a missing phy clock and reset.
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Tested-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Srinivas Kandagatla <srini@kernel.org>
---
drivers/nvmem/rockchip-otp.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/nvmem/rockchip-otp.c b/drivers/nvmem/rockchip-otp.c
index 62ce22d72586..0ec78b5e19e7 100644
--- a/drivers/nvmem/rockchip-otp.c
+++ b/drivers/nvmem/rockchip-otp.c
@@ -333,6 +333,18 @@ static const struct rockchip_data px30_data = {
.reg_read = px30_otp_read,
};
+static const char * const rk3528_otp_clocks[] = {
+ "otp", "apb_pclk", "sbpi",
+};
+
+static const struct rockchip_data rk3528_data = {
+ .size = 0x80,
+ .word_size = sizeof(u16),
+ .clks = rk3528_otp_clocks,
+ .num_clks = ARRAY_SIZE(rk3528_otp_clocks),
+ .reg_read = rk3568_otp_read,
+};
+
static const char * const rk3568_otp_clocks[] = {
"otp", "apb_pclk", "phy", "sbpi",
};
@@ -376,6 +388,10 @@ static const struct of_device_id rockchip_otp_match[] = {
.compatible = "rockchip,rk3308-otp",
.data = &px30_data,
},
+ {
+ .compatible = "rockchip,rk3528-otp",
+ .data = &rk3528_data,
+ },
{
.compatible = "rockchip,rk3562-otp",
.data = &rk3568_data,
--
2.47.3
prev parent reply other threads:[~2026-03-27 13:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-27 13:17 [PATCH 0/9] nvmem: patches (set 1) for 7.1 srini
2026-03-27 13:17 ` [PATCH 1/9] dt-bindings: nvmem: qfprom: Add Kaanapali compatible srini
2026-03-27 13:17 ` [PATCH 2/9] nvmem: qnap-mcu-eeprom: Fix struct assignments using commas instead of semicolons srini
2026-03-27 13:17 ` [PATCH 3/9] dt-bindings: nvmem: sl28cpld: Drop sa67mcu compatible srini
2026-03-27 13:17 ` [PATCH 4/9] dt-bindings: nvmem: rockchip,otp: Add support for RK3562 and RK3568 srini
2026-03-27 13:17 ` [PATCH 5/9] dt-bindings: nvmem: rockchip,otp: Add compatible for RK3528 srini
2026-03-27 13:17 ` [PATCH 6/9] nvmem: rockchip-otp: Handle internal word_size in main reg_read op srini
2026-03-27 13:17 ` [PATCH 7/9] nvmem: rockchip-otp: Add support for RK3568 srini
2026-03-27 13:17 ` [PATCH 8/9] nvmem: rockchip-otp: Add support for RK3562 srini
2026-03-27 13:17 ` srini [this message]
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=20260327131751.3026030-10-srini@kernel.org \
--to=srini@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=heiko@sntech.de \
--cc=jonas@kwiboo.se \
--cc=linux-kernel@vger.kernel.org \
--cc=w@1wt.eu \
/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