2 * Copyright (C) 2015 Toradex AG.
6 * Based on the barebox ocotp driver,
8 * Orex Computed Radiography
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 and
12 * only version 2 as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/clk.h>
21 #include <linux/delay.h>
22 #include <linux/device.h>
24 #include <linux/module.h>
25 #include <linux/nvmem-provider.h>
27 #include <linux/platform_device.h>
28 #include <linux/slab.h>
30 /* OCOTP Register Offsets */
31 #define OCOTP_CTRL_REG 0x00
32 #define OCOTP_CTRL_SET 0x04
33 #define OCOTP_CTRL_CLR 0x08
34 #define OCOTP_TIMING 0x10
35 #define OCOTP_DATA 0x20
36 #define OCOTP_READ_CTRL_REG 0x30
37 #define OCOTP_READ_FUSE_DATA 0x40
39 /* OCOTP Register bits and masks */
40 #define OCOTP_CTRL_WR_UNLOCK 16
41 #define OCOTP_CTRL_WR_UNLOCK_KEY 0x3E77
42 #define OCOTP_CTRL_WR_UNLOCK_MASK GENMASK(31, 16)
43 #define OCOTP_CTRL_ADDR 0
44 #define OCOTP_CTRL_ADDR_MASK GENMASK(6, 0)
45 #define OCOTP_CTRL_RELOAD_SHADOWS BIT(10)
46 #define OCOTP_CTRL_ERR BIT(9)
47 #define OCOTP_CTRL_BUSY BIT(8)
49 #define OCOTP_TIMING_STROBE_READ 16
50 #define OCOTP_TIMING_STROBE_READ_MASK GENMASK(21, 16)
51 #define OCOTP_TIMING_RELAX 12
52 #define OCOTP_TIMING_RELAX_MASK GENMASK(15, 12)
53 #define OCOTP_TIMING_STROBE_PROG 0
54 #define OCOTP_TIMING_STROBE_PROG_MASK GENMASK(11, 0)
56 #define OCOTP_READ_CTRL_READ_FUSE 0x1
58 #define VF610_OCOTP_TIMEOUT 100000
60 #define BF(value, field) (((value) << field) & field##_MASK)
64 static const int base_to_fuse_addr_mappings[][2] = {
101 struct nvmem_device *nvmem;
105 static int vf610_ocotp_wait_busy(void __iomem *base)
107 int timeout = VF610_OCOTP_TIMEOUT;
109 while ((readl(base) & OCOTP_CTRL_BUSY) && --timeout)
113 writel(OCOTP_CTRL_ERR, base + OCOTP_CTRL_CLR);
122 static int vf610_ocotp_calculate_timing(struct vf610_ocotp *ocotp_dev)
125 u32 relax, strobe_read, strobe_prog;
128 clk_rate = clk_get_rate(ocotp_dev->clk);
130 /* Refer section OTP read/write timing parameters in TRM */
131 relax = clk_rate / (1000000000 / DEF_RELAX) - 1;
132 strobe_prog = clk_rate / (1000000000 / 10000) + 2 * (DEF_RELAX + 1) - 1;
133 strobe_read = clk_rate / (1000000000 / 40) + 2 * (DEF_RELAX + 1) - 1;
135 timing = BF(relax, OCOTP_TIMING_RELAX);
136 timing |= BF(strobe_read, OCOTP_TIMING_STROBE_READ);
137 timing |= BF(strobe_prog, OCOTP_TIMING_STROBE_PROG);
142 static int vf610_get_fuse_address(int base_addr_offset)
146 for (i = 0; i < ARRAY_SIZE(base_to_fuse_addr_mappings); i++) {
147 if (base_to_fuse_addr_mappings[i][0] == base_addr_offset)
148 return base_to_fuse_addr_mappings[i][1];
154 static int vf610_ocotp_read(void *context, unsigned int offset,
155 void *val, size_t bytes)
157 struct vf610_ocotp *ocotp = context;
158 void __iomem *base = ocotp->base;
164 fuse_addr = vf610_get_fuse_address(offset);
166 writel(ocotp->timing, base + OCOTP_TIMING);
167 ret = vf610_ocotp_wait_busy(base + OCOTP_CTRL_REG);
171 reg = readl(base + OCOTP_CTRL_REG);
172 reg &= ~OCOTP_CTRL_ADDR_MASK;
173 reg &= ~OCOTP_CTRL_WR_UNLOCK_MASK;
174 reg |= BF(fuse_addr, OCOTP_CTRL_ADDR);
175 writel(reg, base + OCOTP_CTRL_REG);
177 writel(OCOTP_READ_CTRL_READ_FUSE,
178 base + OCOTP_READ_CTRL_REG);
179 ret = vf610_ocotp_wait_busy(base + OCOTP_CTRL_REG);
183 if (readl(base) & OCOTP_CTRL_ERR) {
184 dev_dbg(ocotp->dev, "Error reading from fuse address %x\n",
186 writel(OCOTP_CTRL_ERR, base + OCOTP_CTRL_CLR);
190 * In case of error, we do not abort and expect to read
191 * 0xBADABADA as mentioned by the TRM. We just read this
194 *buf = readl(base + OCOTP_READ_FUSE_DATA);
207 static struct nvmem_config ocotp_config = {
211 .reg_read = vf610_ocotp_read,
214 static const struct of_device_id ocotp_of_match[] = {
215 { .compatible = "fsl,vf610-ocotp", },
218 MODULE_DEVICE_TABLE(of, ocotp_of_match);
220 static int vf610_ocotp_probe(struct platform_device *pdev)
222 struct device *dev = &pdev->dev;
223 struct resource *res;
224 struct vf610_ocotp *ocotp_dev;
226 ocotp_dev = devm_kzalloc(dev, sizeof(struct vf610_ocotp), GFP_KERNEL);
230 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
231 ocotp_dev->base = devm_ioremap_resource(dev, res);
232 if (IS_ERR(ocotp_dev->base))
233 return PTR_ERR(ocotp_dev->base);
235 ocotp_dev->clk = devm_clk_get(dev, NULL);
236 if (IS_ERR(ocotp_dev->clk)) {
237 dev_err(dev, "failed getting clock, err = %ld\n",
238 PTR_ERR(ocotp_dev->clk));
239 return PTR_ERR(ocotp_dev->clk);
241 ocotp_dev->dev = dev;
242 ocotp_dev->timing = vf610_ocotp_calculate_timing(ocotp_dev);
244 ocotp_config.size = resource_size(res);
245 ocotp_config.priv = ocotp_dev;
246 ocotp_config.dev = dev;
248 ocotp_dev->nvmem = devm_nvmem_register(dev, &ocotp_config);
250 return PTR_ERR_OR_ZERO(ocotp_dev->nvmem);
253 static struct platform_driver vf610_ocotp_driver = {
254 .probe = vf610_ocotp_probe,
256 .name = "vf610-ocotp",
257 .of_match_table = ocotp_of_match,
260 module_platform_driver(vf610_ocotp_driver);
262 MODULE_DESCRIPTION("Vybrid OCOTP driver");
263 MODULE_LICENSE("GPL v2");