soc: imx8: Add i.MX8MM UID(unique identifier) support
authorAnson Huang <Anson.Huang@nxp.com>
Wed, 26 Jun 2019 07:44:15 +0000 (15:44 +0800)
committerShawn Guo <shawnguo@kernel.org>
Mon, 22 Jul 2019 01:36:48 +0000 (09:36 +0800)
Add i.MX8MM SoC UID(unique identifier) support, user
can read it from sysfs:

root@imx8mmevk:~# cat /sys/devices/soc0/soc_uid
B365FA0A5C85D6EE

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
drivers/soc/imx/soc-imx8.c

index c19ef4b9566868bac1a70d718341d8a744716d33..b9831576dd252b16757b075da1248000733d3c14 100644 (file)
@@ -66,6 +66,26 @@ out:
        return rev;
 }
 
+static void __init imx8mm_soc_uid(void)
+{
+       void __iomem *ocotp_base;
+       struct device_node *np;
+
+       np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-ocotp");
+       if (!np)
+               return;
+
+       ocotp_base = of_iomap(np, 0);
+       WARN_ON(!ocotp_base);
+
+       soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
+       soc_uid <<= 32;
+       soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
+
+       iounmap(ocotp_base);
+       of_node_put(np);
+}
+
 static u32 __init imx8mm_soc_revision(void)
 {
        struct device_node *np;
@@ -83,6 +103,9 @@ static u32 __init imx8mm_soc_revision(void)
 
        iounmap(anatop_base);
        of_node_put(np);
+
+       imx8mm_soc_uid();
+
        return rev;
 }