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/pm_domain.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/property.h>
18 #include <linux/regulator/consumer.h>
20 /* Blow timer clock frequency in Mhz */
21 #define QFPROM_BLOW_TIMER_OFFSET 0x03c
23 /* Amount of time required to hold charge to blow fuse in micro-seconds */
24 #define QFPROM_FUSE_BLOW_POLL_US 100
25 #define QFPROM_FUSE_BLOW_TIMEOUT_US 10000
27 #define QFPROM_BLOW_STATUS_OFFSET 0x048
28 #define QFPROM_BLOW_STATUS_BUSY 0x1
29 #define QFPROM_BLOW_STATUS_READY 0x0
31 #define QFPROM_ACCEL_OFFSET 0x044
33 #define QFPROM_VERSION_OFFSET 0x0
34 #define QFPROM_MAJOR_VERSION_SHIFT 28
35 #define QFPROM_MAJOR_VERSION_MASK GENMASK(31, QFPROM_MAJOR_VERSION_SHIFT)
36 #define QFPROM_MINOR_VERSION_SHIFT 16
37 #define QFPROM_MINOR_VERSION_MASK GENMASK(27, QFPROM_MINOR_VERSION_SHIFT)
39 static bool read_raw_data
;
40 module_param(read_raw_data
, bool, 0644);
41 MODULE_PARM_DESC(read_raw_data
, "Read raw instead of corrected data");
44 * struct qfprom_soc_data - config that varies from SoC to SoC.
46 * @accel_value: Should contain qfprom accel value.
47 * @qfprom_blow_timer_value: The timer value of qfprom when doing efuse blow.
48 * @qfprom_blow_set_freq: The frequency required to set when we start the
50 * @qfprom_blow_uV: LDO voltage to be set when doing efuse blow
52 struct qfprom_soc_data
{
54 u32 qfprom_blow_timer_value
;
55 u32 qfprom_blow_set_freq
;
60 * struct qfprom_priv - structure holding qfprom attributes
62 * @qfpraw: iomapped memory space for qfprom-efuse raw address space.
63 * @qfpconf: iomapped memory space for qfprom-efuse configuration address
65 * @qfpcorrected: iomapped memory space for qfprom corrected address space.
66 * @qfpsecurity: iomapped memory space for qfprom security control space.
67 * @dev: qfprom device structure.
68 * @secclk: Clock supply.
69 * @vcc: Regulator supply.
70 * @soc_data: Data that for things that varies from SoC to SoC.
74 void __iomem
*qfpconf
;
75 void __iomem
*qfpcorrected
;
76 void __iomem
*qfpsecurity
;
79 struct regulator
*vcc
;
80 const struct qfprom_soc_data
*soc_data
;
84 * struct qfprom_touched_values - saved values to restore after blowing
86 * @clk_rate: The rate the clock was at before blowing.
87 * @accel_val: The value of the accel reg before blowing.
88 * @timer_val: The value of the timer before blowing.
90 struct qfprom_touched_values
{
91 unsigned long clk_rate
;
97 * struct qfprom_soc_compatible_data - Data matched against the SoC
100 * @keepout: Array of keepout regions for this SoC.
101 * @nkeepout: Number of elements in the keepout array.
103 struct qfprom_soc_compatible_data
{
104 const struct nvmem_keepout
*keepout
;
105 unsigned int nkeepout
;
108 static const struct nvmem_keepout sc7180_qfprom_keepout
[] = {
109 {.start
= 0x128, .end
= 0x148},
110 {.start
= 0x220, .end
= 0x228}
113 static const struct qfprom_soc_compatible_data sc7180_qfprom
= {
114 .keepout
= sc7180_qfprom_keepout
,
115 .nkeepout
= ARRAY_SIZE(sc7180_qfprom_keepout
)
118 static const struct nvmem_keepout sc7280_qfprom_keepout
[] = {
119 {.start
= 0x128, .end
= 0x148},
120 {.start
= 0x238, .end
= 0x248}
123 static const struct qfprom_soc_compatible_data sc7280_qfprom
= {
124 .keepout
= sc7280_qfprom_keepout
,
125 .nkeepout
= ARRAY_SIZE(sc7280_qfprom_keepout
)
129 * qfprom_disable_fuse_blowing() - Undo enabling of fuse blowing.
130 * @priv: Our driver data.
131 * @old: The data that was stashed from before fuse blowing.
133 * Resets the value of the blow timer, accel register and the clock
134 * and voltage settings.
136 * Prints messages if there are errors but doesn't return an error code
137 * since there's not much we can do upon failure.
139 static void qfprom_disable_fuse_blowing(const struct qfprom_priv
*priv
,
140 const struct qfprom_touched_values
*old
)
144 writel(old
->timer_val
, priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
145 writel(old
->accel_val
, priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
147 dev_pm_genpd_set_performance_state(priv
->dev
, 0);
148 pm_runtime_put(priv
->dev
);
151 * This may be a shared rail and may be able to run at a lower rate
152 * when we're not blowing fuses. At the moment, the regulator framework
153 * applies voltage constraints even on disabled rails, so remove our
154 * constraints and allow the rail to be adjusted by other users.
156 ret
= regulator_set_voltage(priv
->vcc
, 0, INT_MAX
);
158 dev_warn(priv
->dev
, "Failed to set 0 voltage (ignoring)\n");
160 ret
= regulator_disable(priv
->vcc
);
162 dev_warn(priv
->dev
, "Failed to disable regulator (ignoring)\n");
164 ret
= clk_set_rate(priv
->secclk
, old
->clk_rate
);
167 "Failed to set clock rate for disable (ignoring)\n");
169 clk_disable_unprepare(priv
->secclk
);
173 * qfprom_enable_fuse_blowing() - Enable fuse blowing.
174 * @priv: Our driver data.
175 * @old: We'll stash stuff here to use when disabling.
177 * Sets the value of the blow timer, accel register and the clock
178 * and voltage settings.
180 * Prints messages if there are errors so caller doesn't need to.
184 static int qfprom_enable_fuse_blowing(const struct qfprom_priv
*priv
,
185 struct qfprom_touched_values
*old
)
188 int qfprom_blow_uV
= priv
->soc_data
->qfprom_blow_uV
;
190 ret
= clk_prepare_enable(priv
->secclk
);
192 dev_err(priv
->dev
, "Failed to enable clock\n");
196 old
->clk_rate
= clk_get_rate(priv
->secclk
);
197 ret
= clk_set_rate(priv
->secclk
, priv
->soc_data
->qfprom_blow_set_freq
);
199 dev_err(priv
->dev
, "Failed to set clock rate for enable\n");
200 goto err_clk_prepared
;
204 * Hardware requires a minimum voltage for fuse blowing.
205 * This may be a shared rail so don't specify a maximum.
206 * Regulator constraints will cap to the actual maximum.
208 ret
= regulator_set_voltage(priv
->vcc
, qfprom_blow_uV
, INT_MAX
);
210 dev_err(priv
->dev
, "Failed to set %duV\n", qfprom_blow_uV
);
211 goto err_clk_rate_set
;
214 ret
= regulator_enable(priv
->vcc
);
216 dev_err(priv
->dev
, "Failed to enable regulator\n");
217 goto err_clk_rate_set
;
220 ret
= pm_runtime_resume_and_get(priv
->dev
);
222 dev_err(priv
->dev
, "Failed to enable power-domain\n");
225 dev_pm_genpd_set_performance_state(priv
->dev
, INT_MAX
);
227 old
->timer_val
= readl(priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
228 old
->accel_val
= readl(priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
229 writel(priv
->soc_data
->qfprom_blow_timer_value
,
230 priv
->qfpconf
+ QFPROM_BLOW_TIMER_OFFSET
);
231 writel(priv
->soc_data
->accel_value
,
232 priv
->qfpconf
+ QFPROM_ACCEL_OFFSET
);
237 regulator_disable(priv
->vcc
);
239 clk_set_rate(priv
->secclk
, old
->clk_rate
);
241 clk_disable_unprepare(priv
->secclk
);
246 * qfprom_reg_write() - Write to fuses.
247 * @context: Our driver data.
248 * @reg: The offset to write at.
249 * @_val: Pointer to data to write.
250 * @bytes: The number of bytes to write.
252 * Writes to fuses. WARNING: THIS IS PERMANENT.
256 static int qfprom_reg_write(void *context
, unsigned int reg
, void *_val
,
259 struct qfprom_priv
*priv
= context
;
260 struct qfprom_touched_values old
;
261 int words
= bytes
/ 4;
268 "Writing to raw qfprom region : %#010x of size: %zu\n",
272 * The hardware only allows us to write word at a time, but we can
273 * read byte at a time. Until the nvmem framework allows a separate
274 * word_size and stride for reading vs. writing, we'll enforce here.
278 "%zu is not an integral number of words\n", bytes
);
283 "Invalid offset: %#x. Must be word aligned\n", reg
);
287 ret
= qfprom_enable_fuse_blowing(priv
, &old
);
291 ret
= readl_relaxed_poll_timeout(
292 priv
->qfpconf
+ QFPROM_BLOW_STATUS_OFFSET
,
293 blow_status
, blow_status
== QFPROM_BLOW_STATUS_READY
,
294 QFPROM_FUSE_BLOW_POLL_US
, QFPROM_FUSE_BLOW_TIMEOUT_US
);
298 "Timeout waiting for initial ready; aborting.\n");
299 goto exit_enabled_fuse_blowing
;
302 for (i
= 0; i
< words
; i
++)
303 writel(value
[i
], priv
->qfpraw
+ reg
+ (i
* 4));
305 ret
= readl_relaxed_poll_timeout(
306 priv
->qfpconf
+ QFPROM_BLOW_STATUS_OFFSET
,
307 blow_status
, blow_status
== QFPROM_BLOW_STATUS_READY
,
308 QFPROM_FUSE_BLOW_POLL_US
, QFPROM_FUSE_BLOW_TIMEOUT_US
);
310 /* Give an error, but not much we can do in this case */
312 dev_err(priv
->dev
, "Timeout waiting for finish.\n");
314 exit_enabled_fuse_blowing
:
315 qfprom_disable_fuse_blowing(priv
, &old
);
320 static int qfprom_reg_read(void *context
,
321 unsigned int reg
, void *_val
, size_t bytes
)
323 struct qfprom_priv
*priv
= context
;
325 int i
= 0, words
= bytes
;
326 void __iomem
*base
= priv
->qfpcorrected
;
328 if (read_raw_data
&& priv
->qfpraw
)
332 *val
++ = readb(base
+ reg
+ i
++);
337 static void qfprom_runtime_disable(void *data
)
339 pm_runtime_disable(data
);
342 static const struct qfprom_soc_data qfprom_7_8_data
= {
343 .accel_value
= 0xD10,
344 .qfprom_blow_timer_value
= 25,
345 .qfprom_blow_set_freq
= 4800000,
346 .qfprom_blow_uV
= 1800000,
349 static const struct qfprom_soc_data qfprom_7_15_data
= {
350 .accel_value
= 0xD08,
351 .qfprom_blow_timer_value
= 24,
352 .qfprom_blow_set_freq
= 4800000,
353 .qfprom_blow_uV
= 1900000,
356 static int qfprom_probe(struct platform_device
*pdev
)
358 struct nvmem_config econfig
= {
360 .add_legacy_fixed_of_cells
= true,
363 .id
= NVMEM_DEVID_AUTO
,
364 .reg_read
= qfprom_reg_read
,
366 struct device
*dev
= &pdev
->dev
;
367 struct resource
*res
;
368 struct nvmem_device
*nvmem
;
369 const struct qfprom_soc_compatible_data
*soc_data
;
370 struct qfprom_priv
*priv
;
373 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
377 /* The corrected section is always provided */
378 priv
->qfpcorrected
= devm_platform_get_and_ioremap_resource(pdev
, 0, &res
);
379 if (IS_ERR(priv
->qfpcorrected
))
380 return PTR_ERR(priv
->qfpcorrected
);
382 econfig
.size
= resource_size(res
);
387 soc_data
= device_get_match_data(dev
);
389 econfig
.keepout
= soc_data
->keepout
;
390 econfig
.nkeepout
= soc_data
->nkeepout
;
394 * If more than one region is provided then the OS has the ability
397 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
400 int major_version
, minor_version
;
402 priv
->qfpraw
= devm_ioremap_resource(dev
, res
);
403 if (IS_ERR(priv
->qfpraw
))
404 return PTR_ERR(priv
->qfpraw
);
405 priv
->qfpconf
= devm_platform_ioremap_resource(pdev
, 2);
406 if (IS_ERR(priv
->qfpconf
))
407 return PTR_ERR(priv
->qfpconf
);
408 priv
->qfpsecurity
= devm_platform_ioremap_resource(pdev
, 3);
409 if (IS_ERR(priv
->qfpsecurity
))
410 return PTR_ERR(priv
->qfpsecurity
);
412 version
= readl(priv
->qfpsecurity
+ QFPROM_VERSION_OFFSET
);
413 major_version
= (version
& QFPROM_MAJOR_VERSION_MASK
) >>
414 QFPROM_MAJOR_VERSION_SHIFT
;
415 minor_version
= (version
& QFPROM_MINOR_VERSION_MASK
) >>
416 QFPROM_MINOR_VERSION_SHIFT
;
418 if (major_version
== 7 && minor_version
== 8)
419 priv
->soc_data
= &qfprom_7_8_data
;
420 else if (major_version
== 7 && minor_version
== 15)
421 priv
->soc_data
= &qfprom_7_15_data
;
423 priv
->vcc
= devm_regulator_get(&pdev
->dev
, "vcc");
424 if (IS_ERR(priv
->vcc
))
425 return PTR_ERR(priv
->vcc
);
427 priv
->secclk
= devm_clk_get_optional(dev
, "core");
428 if (IS_ERR(priv
->secclk
))
429 return dev_err_probe(dev
, PTR_ERR(priv
->secclk
), "Error getting clock\n");
431 /* Only enable writing if we have SoC data and a valid clock */
432 if (priv
->soc_data
&& priv
->secclk
)
433 econfig
.reg_write
= qfprom_reg_write
;
436 pm_runtime_enable(dev
);
437 ret
= devm_add_action_or_reset(dev
, qfprom_runtime_disable
, dev
);
441 nvmem
= devm_nvmem_register(dev
, &econfig
);
443 return PTR_ERR_OR_ZERO(nvmem
);
446 static const struct of_device_id qfprom_of_match
[] = {
447 { .compatible
= "qcom,qfprom",},
448 { .compatible
= "qcom,sc7180-qfprom", .data
= &sc7180_qfprom
},
449 { .compatible
= "qcom,sc7280-qfprom", .data
= &sc7280_qfprom
},
452 MODULE_DEVICE_TABLE(of
, qfprom_of_match
);
454 static struct platform_driver qfprom_driver
= {
455 .probe
= qfprom_probe
,
457 .name
= "qcom,qfprom",
458 .of_match_table
= qfprom_of_match
,
461 module_platform_driver(qfprom_driver
);
462 MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>");
463 MODULE_DESCRIPTION("Qualcomm QFPROM driver");
464 MODULE_LICENSE("GPL v2");