[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20251112-gs101-otp-v2-2-bff2eb020c95@linaro.org>
Date: Wed, 12 Nov 2025 08:29:06 +0000
From: Tudor Ambarus <tudor.ambarus@...aro.org>
To: Srinivas Kandagatla <srini@...nel.org>, Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>,
Conor Dooley <conor+dt@...nel.org>, Krzysztof Kozlowski <krzk@...nel.org>,
Alim Akhtar <alim.akhtar@...sung.com>,
Peter Griffin <peter.griffin@...aro.org>,
André Draszik <andre.draszik@...aro.org>
Cc: semen.protsenko@...aro.org, willmcvicker@...gle.com,
kernel-team@...roid.com, linux-kernel@...r.kernel.org,
linux-samsung-soc@...r.kernel.org, devicetree@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
Tudor Ambarus <tudor.ambarus@...aro.org>
Subject: [PATCH v2 2/5] nvmem: add Samsung Exynos OTP support
Add initial support for the Samsung Exynos OTP controller. Read the
product and chip IDs from the OTP controller registers space and
register the SoC info to the SoC interface.
The driver can be extended to empower the controller become nvmem
provider. This is not in the scope of this patch because it seems the
OTP memory space is not yet used by any consumer, even downstream.
Signed-off-by: Tudor Ambarus <tudor.ambarus@...aro.org>
---
drivers/nvmem/Kconfig | 10 +++
drivers/nvmem/Makefile | 2 +
drivers/nvmem/exynos-otp.c | 160 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 172 insertions(+)
diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
index e0d88d3199c11a3b71cc274b2114e9554ac486fc..aa8c14d4624b820a3685cdf14f2f32521a82db4a 100644
--- a/drivers/nvmem/Kconfig
+++ b/drivers/nvmem/Kconfig
@@ -84,6 +84,16 @@ config NVMEM_BRCM_NVRAM
This driver provides support for Broadcom's NVRAM that can be accessed
using I/O mapping.
+config NVMEM_EXYNOS_OTP
+ tristate "Samsung Exynos OTP support"
+ depends on ARCH_EXYNOS || COMPILE_TEST
+ help
+ This driver provides support for the OTP controller found on some
+ Samsung Exynos SoCs.
+
+ This driver can also be built as a module. If so, the module
+ will be called nvmem-exynos-otp.
+
config NVMEM_IMX_IIM
tristate "i.MX IC Identification Module support"
depends on ARCH_MXC || COMPILE_TEST
diff --git a/drivers/nvmem/Makefile b/drivers/nvmem/Makefile
index 70a4464dcb1e25cf9116280a32f4a0f4f9941a75..920a536fc359a5a7d8f3aabba6a712e85c277ee7 100644
--- a/drivers/nvmem/Makefile
+++ b/drivers/nvmem/Makefile
@@ -20,6 +20,8 @@ obj-$(CONFIG_NVMEM_BCM_OCOTP) += nvmem-bcm-ocotp.o
nvmem-bcm-ocotp-y := bcm-ocotp.o
obj-$(CONFIG_NVMEM_BRCM_NVRAM) += nvmem_brcm_nvram.o
nvmem_brcm_nvram-y := brcm_nvram.o
+obj-$(CONFIG_NVMEM_EXYNOS_OTP) += nvmem-exynos-otp.o
+nvmem-exynos-otp-y := exynos-otp.o
obj-$(CONFIG_NVMEM_IMX_IIM) += nvmem-imx-iim.o
nvmem-imx-iim-y := imx-iim.o
obj-$(CONFIG_NVMEM_IMX_OCOTP) += nvmem-imx-ocotp.o
diff --git a/drivers/nvmem/exynos-otp.c b/drivers/nvmem/exynos-otp.c
new file mode 100644
index 0000000000000000000000000000000000000000..5acdc6ef1f8e07ffb6d465b160659732f4ef5a22
--- /dev/null
+++ b/drivers/nvmem/exynos-otp.c
@@ -0,0 +1,160 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright 2025 Linaro Ltd.
+ *
+ * Samsung Exynos OTP driver.
+ */
+
+#include <linux/array_size.h>
+#include <linux/clk.h>
+#include <linux/device.h>
+#include <linux/device/devres.h>
+#include <linux/err.h>
+#include <linux/ioport.h>
+#include <linux/mod_devicetable.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+#include <linux/sys_soc.h>
+
+#define EXYNOS_OTP_PRODUCT_ID 0
+#define EXYNOS_OTP_PRODUCT_ID_MASK GENMASK(31, 12)
+#define EXYNOS_OTP_PRODUCT_ID_MAIN_REV GENMASK(3, 0)
+
+#define EXYNOS_OTP_CHIPID(i) (0x4 + (i) * 4)
+#define EXYNOS_OTP_CHIPID3_SUB_REV GENMASK(19, 16)
+
+#define EXYNOS_OTP_PRODUCT_ID_MAIN_REV_SHIFT 4
+
+struct exynos_otp {
+ struct clk *pclk;
+ struct device *dev;
+ struct regmap *regmap;
+};
+
+static const struct exynos_otp_soc_id {
+ const char *name;
+ u32 id;
+} eotp_soc_ids[] = {
+ { "GS101", 0x9845 },
+};
+
+static const char *exynos_otp_xlate_soc_name(u32 id)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(eotp_soc_ids); i++)
+ if (id == eotp_soc_ids[i].id)
+ return eotp_soc_ids[i].name;
+ return NULL;
+}
+
+static void exynos_otp_unregister_soc(void *data)
+{
+ soc_device_unregister(data);
+}
+
+static int exynos_otp_soc_device_register(struct exynos_otp *eotp)
+{
+ struct soc_device_attribute *soc_dev_attr;
+ struct regmap *regmap = eotp->regmap;
+ struct device *dev = eotp->dev;
+ struct soc_device *soc_dev;
+ u32 val, main_rev, sub_rev;
+ u32 product_id, revision;
+ int ret;
+
+ soc_dev_attr = devm_kzalloc(dev, sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr)
+ return -ENOMEM;
+
+ ret = regmap_read(regmap, EXYNOS_OTP_PRODUCT_ID, &val);
+ if (ret)
+ return dev_err_probe(dev, ret, "failed to read product id\n");
+
+ product_id = FIELD_GET(EXYNOS_OTP_PRODUCT_ID_MASK, val);
+ main_rev = FIELD_GET(EXYNOS_OTP_PRODUCT_ID_MAIN_REV, val);
+
+ ret = regmap_read(regmap, EXYNOS_OTP_CHIPID(3), &val);
+ if (ret)
+ return dev_err_probe(dev, ret, "failed to read chip id\n");
+
+ sub_rev = FIELD_GET(EXYNOS_OTP_CHIPID3_SUB_REV, val);
+ revision = main_rev << EXYNOS_OTP_PRODUCT_ID_MAIN_REV_SHIFT | sub_rev;
+
+ soc_dev_attr->family = "Samsung Exynos";
+ soc_dev_attr->soc_id = exynos_otp_xlate_soc_name(product_id);
+ if (!soc_dev_attr->soc_id)
+ return dev_err_probe(dev, -ENODEV, "failed to translate chip id to name\n");
+
+ soc_dev_attr->revision = devm_kasprintf(dev, GFP_KERNEL, "%x",
+ revision);
+ if (!soc_dev_attr->revision)
+ return -ENOMEM;
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR(soc_dev))
+ return dev_err_probe(dev, PTR_ERR(soc_dev),
+ "failed to register to the SoC interface\n");
+
+ ret = devm_add_action_or_reset(dev, exynos_otp_unregister_soc, soc_dev);
+ if (ret)
+ return dev_err_probe(dev, ret, "failed to add devm action\n");
+
+ return 0;
+}
+
+static int exynos_otp_probe(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ struct exynos_otp *eotp;
+ struct resource *res;
+ void __iomem *base;
+
+ eotp = devm_kzalloc(dev, sizeof(*eotp), GFP_KERNEL);
+ if (!eotp)
+ return -ENOMEM;
+
+ base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
+ if (IS_ERR(base))
+ return PTR_ERR(base);
+
+ const struct regmap_config reg_config = {
+ .reg_bits = 32,
+ .reg_stride = 4,
+ .val_bits = 32,
+ .use_relaxed_mmio = true,
+ .max_register = (resource_size(res) - reg_config.reg_stride),
+ };
+
+ eotp->regmap = devm_regmap_init_mmio(dev, base, ®_config);
+ if (IS_ERR(eotp->regmap))
+ return PTR_ERR(eotp->regmap);
+
+ eotp->pclk = devm_clk_get_enabled(dev, NULL);
+ if (IS_ERR(eotp->pclk))
+ return dev_err_probe(dev, PTR_ERR(eotp->pclk), "failed to get clock\n");
+
+ eotp->dev = dev;
+
+ return exynos_otp_soc_device_register(eotp);
+}
+
+static const struct of_device_id exynos_otp_dt_ids[] = {
+ { .compatible = "google,gs101-otp" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, exynos_otp_dt_ids);
+
+static struct platform_driver exynos_otp_driver = {
+ .probe = exynos_otp_probe,
+ .driver = {
+ .name = "exynos-otp",
+ .of_match_table = exynos_otp_dt_ids,
+ },
+};
+module_platform_driver(exynos_otp_driver);
+
+MODULE_AUTHOR("Tudor Ambarus <tudor.ambarus@...aro.org>");
+MODULE_DESCRIPTION("Samsung Exynos OTP driver");
+MODULE_LICENSE("GPL");
--
2.51.2.1041.gc1ab5b90ca-goog
Powered by blists - more mailing lists