summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Karlman <[email protected]>2026-01-31 23:38:20 +0000
committerTom Rini <[email protected]>2026-03-10 10:07:03 -0600
commit5bc966054fdd336319e8ec04c23eaa6a1f4d355d (patch)
treec3a87c7fc85315110e09fc318ccbcce86197aea1
parent6225eeff57ae35ec9030c90ced29662102de19f2 (diff)
rockchip: otp: Add support for RK3506
Add support for the OTP controller in RK3506. The OTPC is similar to the OTPC in RK3568 and can use the same ops for reading OTP data. Signed-off-by: Jonas Karlman <[email protected]> Reviewed-by: Kever Yang <[email protected]>
-rw-r--r--drivers/misc/rockchip-otp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/misc/rockchip-otp.c b/drivers/misc/rockchip-otp.c
index 46820425a84..64b6238981b 100644
--- a/drivers/misc/rockchip-otp.c
+++ b/drivers/misc/rockchip-otp.c
@@ -391,6 +391,10 @@ static const struct udevice_id rockchip_otp_ids[] = {
.data = (ulong)&px30_data,
},
{
+ .compatible = "rockchip,rk3506-otp",
+ .data = (ulong)&rk3568_data,
+ },
+ {
.compatible = "rockchip,rk3528-otp",
.data = (ulong)&rk3568_data,
},