1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7 #include <linux/device.h>
9 #include <linux/iopoll.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/mod_devicetable.h>
13 #include <linux/nvmem-provider.h>
14 #include <linux/platform_device.h>
15 #include <linux/property.h>
16 #include <linux/regulator/consumer.h>
18 /* Blow timer clock frequency in Mhz */
19 #define QFPROM_BLOW_TIMER_OFFSET 0x03c
21 /* Amount of time required to hold charge to blow fuse in micro-seconds */
22 #define QFPROM_FUSE_BLOW_POLL_US 100
23 #define QFPROM_FUSE_BLOW_TIMEOUT_US 1000
25 #define QFPROM_BLOW_STATUS_OFFSET 0x048
26 #define QFPROM_BLOW_STATUS_BUSY 0x1
27 #define QFPROM_BLOW_STATUS_READY 0x0
29 #define QFPROM_ACCEL_OFFSET 0x044
31 #define QFPROM_VERSION_OFFSET 0x0
32 #define QFPROM_MAJOR_VERSION_SHIFT 28
33 #define QFPROM_MAJOR_VERSION_MASK GENMASK(31, QFPROM_MAJOR_VERSION_SHIFT)
34 #define QFPROM_MINOR_VERSION_SHIFT 16
35 #define QFPROM_MINOR_VERSION_MASK GENMASK(27, QFPROM_MINOR_VERSION_SHIFT)
37 static bool read_raw_data
;
38 module_param(read_raw_data
, bool, 0644);
39 MODULE_PARM_DESC(read_raw_data
, "Read raw instead of corrected data");
42 * struct qfprom_soc_data - config that varies from SoC to SoC.
44 * @accel_value: Should contain qfprom accel value.
45 * @qfprom_blow_timer_value: The timer value of qfprom when doing efuse blow.
46 * @qfprom_blow_set_freq: The frequency required to set when we start the
49 struct qfprom_soc_data
{
51 u32 qfprom_blow_timer_value
;
52 u32 qfprom_blow_set_freq
;
56 * struct qfprom_priv - structure holding qfprom attributes
58 * @qfpraw: iomapped memory space for qfprom-efuse raw address space.
59 * @qfpconf: iomapped memory space for qfprom-efuse configuration address
61 * @qfpcorrected: iomapped memory space for qfprom corrected address space.
62 * @qfpsecurity: iomapped memory space for qfprom security control space.
63 * @dev: qfprom device structure.
64 * @secclk: Clock supply.
65 * @vcc: Regulator supply.
66 * @soc_data: Data that for things that varies from SoC to SoC.
70 void __iomem
*qfpconf
;
71 void __iomem
*qfpcorrected
;
72 void __iomem
*qfpsecurity
;
75 struct regulator
*vcc
;
76 const struct qfprom_soc_data
*soc_data
;
80 * struct qfprom_touched_values - saved values to restore after blowing
82 * @clk_rate: The rate the clock was at before blowing.
83 * @accel_val: The value of the accel reg before blowing.
84 * @timer_val: The value of the timer before blowing.
86 struct qfprom_touched_values
{
87 unsigned long clk_rate
;
93 * struct qfprom_soc_compatible_data - Data matched against the SoC
96 * @keepout: Array of keepout regions for this SoC.
97 * @nkeepout: Number of elements in the keepout array.
99 struct qfprom_soc_compatible_data
{
100 const struct nvmem_keepout
*keepout
;
101 unsigned int nkeepout
;
104 static const struct nvmem_keepout sc7180_qfprom_keepout
[] = {
105 {.start
= 0x128, .end
= 0x148},
106 {.start
= 0x220, .end
= 0x228}
109 static const struct qfprom_soc_compatible_data sc7180_qfprom
= {
110 .keepout
= sc7180_qfprom_keepout
,
111 .nkeepout
= ARRAY_SIZE(sc7180_qfprom_keepout
)
115 * qfprom_disable_fuse_blowing() - Undo enabling of fuse blowing.
116 * @priv: Our driver data.
117 * @old: The data that was stashed from before fuse blowing.
119 * Resets the value of the blow timer, accel register and the clock
120 * and voltage settings.
122 * Prints messages if there are errors but doesn't return an error code
123 * since there's not much we can do upon failure.
125 static void qfprom_disable_fuse_blowing(const struct qfprom_priv
*priv
,
126 const struct qfprom_touched_values
*old
)
130 ret
= regulator_disable(priv
->vcc
);
132 dev_warn(priv
->dev
, "Failed to disable regulator (ignoring)\n");
134 ret
= clk_set_rate(priv
->secclk
, old
->clk_rate
);
137 "Failed to set clock rate for disable (ignoring)\n");
139 clk_disable_unprepare(priv
->secclk
);
141 writel(old
->timer_val
, priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
142 writel(old
->accel_val
, priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
146 * qfprom_enable_fuse_blowing() - Enable fuse blowing.
147 * @priv: Our driver data.
148 * @old: We'll stash stuff here to use when disabling.
150 * Sets the value of the blow timer, accel register and the clock
151 * and voltage settings.
153 * Prints messages if there are errors so caller doesn't need to.
157 static int qfprom_enable_fuse_blowing(const struct qfprom_priv
*priv
,
158 struct qfprom_touched_values
*old
)
162 ret
= clk_prepare_enable(priv
->secclk
);
164 dev_err(priv
->dev
, "Failed to enable clock\n");
168 old
->clk_rate
= clk_get_rate(priv
->secclk
);
169 ret
= clk_set_rate(priv
->secclk
, priv
->soc_data
->qfprom_blow_set_freq
);
171 dev_err(priv
->dev
, "Failed to set clock rate for enable\n");
172 goto err_clk_prepared
;
175 ret
= regulator_enable(priv
->vcc
);
177 dev_err(priv
->dev
, "Failed to enable regulator\n");
178 goto err_clk_rate_set
;
181 old
->timer_val
= readl(priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
182 old
->accel_val
= readl(priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
183 writel(priv
->soc_data
->qfprom_blow_timer_value
,
184 priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
185 writel(priv
->soc_data
->accel_value
,
186 priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
191 clk_set_rate(priv
->secclk
, old
->clk_rate
);
193 clk_disable_unprepare(priv
->secclk
);
198 * qfprom_efuse_reg_write() - Write to fuses.
199 * @context: Our driver data.
200 * @reg: The offset to write at.
201 * @_val: Pointer to data to write.
202 * @bytes: The number of bytes to write.
204 * Writes to fuses. WARNING: THIS IS PERMANENT.
208 static int qfprom_reg_write(void *context
, unsigned int reg
, void *_val
,
211 struct qfprom_priv
*priv
= context
;
212 struct qfprom_touched_values old
;
213 int words
= bytes
/ 4;
220 "Writing to raw qfprom region : %#010x of size: %zu\n",
224 * The hardware only allows us to write word at a time, but we can
225 * read byte at a time. Until the nvmem framework allows a separate
226 * word_size and stride for reading vs. writing, we'll enforce here.
230 "%zu is not an integral number of words\n", bytes
);
235 "Invalid offset: %#x. Must be word aligned\n", reg
);
239 ret
= qfprom_enable_fuse_blowing(priv
, &old
);
243 ret
= readl_relaxed_poll_timeout(
244 priv
->qfpconf
+ QFPROM_BLOW_STATUS_OFFSET
,
245 blow_status
, blow_status
== QFPROM_BLOW_STATUS_READY
,
246 QFPROM_FUSE_BLOW_POLL_US
, QFPROM_FUSE_BLOW_TIMEOUT_US
);
250 "Timeout waiting for initial ready; aborting.\n");
251 goto exit_enabled_fuse_blowing
;
254 for (i
= 0; i
< words
; i
++)
255 writel(value
[i
], priv
->qfpraw
+ reg
+ (i
* 4));
257 ret
= readl_relaxed_poll_timeout(
258 priv
->qfpconf
+ QFPROM_BLOW_STATUS_OFFSET
,
259 blow_status
, blow_status
== QFPROM_BLOW_STATUS_READY
,
260 QFPROM_FUSE_BLOW_POLL_US
, QFPROM_FUSE_BLOW_TIMEOUT_US
);
262 /* Give an error, but not much we can do in this case */
264 dev_err(priv
->dev
, "Timeout waiting for finish.\n");
266 exit_enabled_fuse_blowing
:
267 qfprom_disable_fuse_blowing(priv
, &old
);
272 static int qfprom_reg_read(void *context
,
273 unsigned int reg
, void *_val
, size_t bytes
)
275 struct qfprom_priv
*priv
= context
;
277 int i
= 0, words
= bytes
;
278 void __iomem
*base
= priv
->qfpcorrected
;
280 if (read_raw_data
&& priv
->qfpraw
)
284 *val
++ = readb(base
+ reg
+ i
++);
289 static const struct qfprom_soc_data qfprom_7_8_data
= {
290 .accel_value
= 0xD10,
291 .qfprom_blow_timer_value
= 25,
292 .qfprom_blow_set_freq
= 4800000,
295 static int qfprom_probe(struct platform_device
*pdev
)
297 struct nvmem_config econfig
= {
301 .id
= NVMEM_DEVID_AUTO
,
302 .reg_read
= qfprom_reg_read
,
304 struct device
*dev
= &pdev
->dev
;
305 struct resource
*res
;
306 struct nvmem_device
*nvmem
;
307 const struct qfprom_soc_compatible_data
*soc_data
;
308 struct qfprom_priv
*priv
;
311 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
315 /* The corrected section is always provided */
316 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
317 priv
->qfpcorrected
= devm_ioremap_resource(dev
, res
);
318 if (IS_ERR(priv
->qfpcorrected
))
319 return PTR_ERR(priv
->qfpcorrected
);
321 econfig
.size
= resource_size(res
);
326 soc_data
= device_get_match_data(dev
);
328 econfig
.keepout
= soc_data
->keepout
;
329 econfig
.nkeepout
= soc_data
->nkeepout
;
333 * If more than one region is provided then the OS has the ability
336 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
339 int major_version
, minor_version
;
341 priv
->qfpraw
= devm_ioremap_resource(dev
, res
);
342 if (IS_ERR(priv
->qfpraw
))
343 return PTR_ERR(priv
->qfpraw
);
344 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
345 priv
->qfpconf
= devm_ioremap_resource(dev
, res
);
346 if (IS_ERR(priv
->qfpconf
))
347 return PTR_ERR(priv
->qfpconf
);
348 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 3);
349 priv
->qfpsecurity
= devm_ioremap_resource(dev
, res
);
350 if (IS_ERR(priv
->qfpsecurity
))
351 return PTR_ERR(priv
->qfpsecurity
);
353 version
= readl(priv
->qfpsecurity
+ QFPROM_VERSION_OFFSET
);
354 major_version
= (version
& QFPROM_MAJOR_VERSION_MASK
) >>
355 QFPROM_MAJOR_VERSION_SHIFT
;
356 minor_version
= (version
& QFPROM_MINOR_VERSION_MASK
) >>
357 QFPROM_MINOR_VERSION_SHIFT
;
359 if (major_version
== 7 && minor_version
== 8)
360 priv
->soc_data
= &qfprom_7_8_data
;
362 priv
->vcc
= devm_regulator_get(&pdev
->dev
, "vcc");
363 if (IS_ERR(priv
->vcc
))
364 return PTR_ERR(priv
->vcc
);
366 priv
->secclk
= devm_clk_get(dev
, "core");
367 if (IS_ERR(priv
->secclk
)) {
368 ret
= PTR_ERR(priv
->secclk
);
369 if (ret
!= -EPROBE_DEFER
)
370 dev_err(dev
, "Error getting clock: %d\n", ret
);
374 /* Only enable writing if we have SoC data. */
376 econfig
.reg_write
= qfprom_reg_write
;
379 nvmem
= devm_nvmem_register(dev
, &econfig
);
381 return PTR_ERR_OR_ZERO(nvmem
);
384 static const struct of_device_id qfprom_of_match
[] = {
385 { .compatible
= "qcom,qfprom",},
386 { .compatible
= "qcom,sc7180-qfprom", .data
= &sc7180_qfprom
},
389 MODULE_DEVICE_TABLE(of
, qfprom_of_match
);
391 static struct platform_driver qfprom_driver
= {
392 .probe
= qfprom_probe
,
394 .name
= "qcom,qfprom",
395 .of_match_table
= qfprom_of_match
,
398 module_platform_driver(qfprom_driver
);
399 MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>");
400 MODULE_DESCRIPTION("Qualcomm QFPROM driver");
401 MODULE_LICENSE("GPL v2");