From: Marco Felsch <m.felsch@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Barebox List <barebox@lists.infradead.org>
Subject: Re: [PATCH] nvmem: rockchip-otp: implement SoC UID reading
Date: Tue, 17 Mar 2026 22:44:32 +0100 [thread overview]
Message-ID: <zr3s6fhjqpwnfzu5oat3bk2qniatbjp246qlazxz7cluu5qh3p@z4kbl43wq2je> (raw)
In-Reply-To: <20260317134755.3184029-1-s.hauer@pengutronix.de>
Hi Sascha,
On 26-03-17, Sascha Hauer wrote:
> The Rockchip SoCs supported by the rockchip-otp driver have a SoC UID in
> the OTP data. Read it out and forward it to barebox. The raw SoC UID
> goes through some crc32 code before it is used. This is based on U-Boot
> code which itself is based on the Rockchip Downstream Linux support.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> drivers/nvmem/rockchip-otp.c | 54 ++++++++++++++++++++++++++++++++++--
> 1 file changed, 51 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/nvmem/rockchip-otp.c b/drivers/nvmem/rockchip-otp.c
> index d2145bba52..041d628480 100644
> --- a/drivers/nvmem/rockchip-otp.c
> +++ b/drivers/nvmem/rockchip-otp.c
> @@ -9,6 +9,7 @@
> #include <common.h>
> #include <driver.h>
> #include <init.h>
> +#include <crc.h>
> #include <of.h>
> #include <of_device.h>
> #include <linux/clk.h>
> @@ -86,6 +87,7 @@ struct rockchip_data {
> const char * const *clks;
> int num_clks;
> int (*reg_read)(void *ctx, unsigned int reg, void *val, size_t val_size);
> + int cpuid_offset;
^
Would be nice to have it as function hook, like the reg_read() in case
RK SoCs find just another way to readout the ID in the future or the ID
gets more bits (like NXP did for the i.MX8MP).
In such cases the function hook is more future proof.
Regards,
Marco
> };
>
> struct rockchip_otp {
> @@ -400,6 +402,7 @@ static const struct rockchip_data px30_data = {
> .clks = px30_otp_clocks,
> .num_clks = ARRAY_SIZE(px30_otp_clocks),
> .reg_read = px30_otp_read,
> + .cpuid_offset = -1,
> };
>
> static const char * const rk3562_otp_clocks[] = {
> @@ -411,6 +414,7 @@ static const struct rockchip_data rk3562_data = {
> .clks = rk3562_otp_clocks,
> .num_clks = ARRAY_SIZE(rk3562_otp_clocks),
> .reg_read = rk3562_otp_read,
> + .cpuid_offset = -1,
> };
>
> static const char * const rk3568_otp_clocks[] = {
> @@ -422,6 +426,7 @@ static const struct rockchip_data rk3568_data = {
> .clks = rk3568_otp_clocks,
> .num_clks = ARRAY_SIZE(rk3568_otp_clocks),
> .reg_read = rk3568_otp_read,
> + .cpuid_offset = 0xa,
> };
>
> static const struct rockchip_data rk3576_data = {
> @@ -429,6 +434,7 @@ static const struct rockchip_data rk3576_data = {
> .clks = px30_otp_clocks,
> .num_clks = ARRAY_SIZE(px30_otp_clocks),
> .reg_read = rk3588_otp_read,
> + .cpuid_offset = 0xa,
> };
>
> static const char * const rk3588_otp_clocks[] = {
> @@ -440,6 +446,7 @@ static const struct rockchip_data rk3588_data = {
> .clks = rk3588_otp_clocks,
> .num_clks = ARRAY_SIZE(rk3588_otp_clocks),
> .reg_read = rk3588_otp_read,
> + .cpuid_offset = 0x7,
> };
>
> static __maybe_unused const struct of_device_id rockchip_otp_match[] = {
> @@ -471,6 +478,42 @@ static __maybe_unused const struct of_device_id rockchip_otp_match[] = {
> };
> MODULE_DEVICE_TABLE(of, rockchip_otp_match);
>
> +#define CPUID_SIZE 16
> +
> +static int rockchip_otp_read_socuid(struct rockchip_otp *otp, struct nvmem_device *nvmem)
> +{
> + u8 low[CPUID_SIZE / 2], high[CPUID_SIZE / 2];
> + unsigned char cpuid[CPUID_SIZE];
> + char uidstr[CPUID_SIZE * 2 + 1];
> + u64 serialno;
> + int i, ret, offset;
> +
> + offset = otp->data->cpuid_offset;
> + if (offset < 0)
> + return 0;
> +
> + ret = rockchip_otp_read(otp, offset, cpuid, CPUID_SIZE);
> + if (ret < 0)
> + return ret;
> +
> + /*
> + * Do the same mangling as U-Boot and downstream Rockchip Linux does.
> + */
> + for (i = 0; i < CPUID_SIZE / 2; i++) {
> + low[i] = cpuid[1 + (i << 1)];
> + high[i] = cpuid[i << 1];
> + }
> +
> + serialno = crc32_no_comp(0, low, CPUID_SIZE / 2);
> + serialno |= (u64)crc32_no_comp(serialno, high, CPUID_SIZE / 2) << 32;
> +
> + snprintf(uidstr, sizeof(uidstr), "%016llx", serialno);
> +
> + barebox_set_soc_uid(uidstr, &serialno, sizeof(serialno));
> +
> + return 0;
> +}
> +
> static int rockchip_otp_probe(struct device *dev)
> {
> struct rockchip_otp *otp;
> @@ -521,11 +564,16 @@ static int rockchip_otp_probe(struct device *dev)
> otp_config.dev = dev;
>
> nvmem = nvmem_register(&otp_config);
> - if (!IS_ERR(nvmem))
> - return 0;
> + if (IS_ERR(nvmem)) {
> + ret = PTR_ERR(nvmem);
> + goto err_register;
> + }
>
> - ret = PTR_ERR(nvmem);
> + rockchip_otp_read_socuid(otp, nvmem);
> +
> + return 0;
>
> +err_register:
> reset_control_put(otp->rst);
>
> err_rst:
> --
> 2.47.3
>
>
>
--
#gernperDu
#CallMeByMyFirstName
Pengutronix e.K. | |
Steuerwalder Str. 21 | https://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-9 |
next prev parent reply other threads:[~2026-03-17 21:45 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-17 13:47 Sascha Hauer
2026-03-17 21:44 ` Marco Felsch [this message]
2026-03-18 10:32 ` Sascha Hauer
2026-03-20 6:35 ` Sascha Hauer
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=zr3s6fhjqpwnfzu5oat3bk2qniatbjp246qlazxz7cluu5qh3p@z4kbl43wq2je \
--to=m.felsch@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/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