1 // SPDX-License-Identifier: GPL-2.0-only
3 * NXP LPC18xx/LPC43xx EEPROM memory NVMEM driver
5 * Copyright (c) 2015 Ariel D'Alessandro <ariel@vanguardiasur.com>
9 #include <linux/device.h>
10 #include <linux/delay.h>
11 #include <linux/err.h>
13 #include <linux/module.h>
14 #include <linux/mod_devicetable.h>
15 #include <linux/nvmem-provider.h>
16 #include <linux/platform_device.h>
17 #include <linux/reset.h>
20 #define LPC18XX_EEPROM_AUTOPROG 0x00c
21 #define LPC18XX_EEPROM_AUTOPROG_WORD 0x1
23 #define LPC18XX_EEPROM_CLKDIV 0x014
25 #define LPC18XX_EEPROM_PWRDWN 0x018
26 #define LPC18XX_EEPROM_PWRDWN_NO 0x0
27 #define LPC18XX_EEPROM_PWRDWN_YES 0x1
29 #define LPC18XX_EEPROM_INTSTAT 0xfe0
30 #define LPC18XX_EEPROM_INTSTAT_END_OF_PROG BIT(2)
32 #define LPC18XX_EEPROM_INTSTATCLR 0xfe8
33 #define LPC18XX_EEPROM_INTSTATCLR_PROG_CLR_ST BIT(2)
35 /* Fixed page size (bytes) */
36 #define LPC18XX_EEPROM_PAGE_SIZE 0x80
38 /* EEPROM device requires a ~1500 kHz clock (min 800 kHz, max 1600 kHz) */
39 #define LPC18XX_EEPROM_CLOCK_HZ 1500000
41 /* EEPROM requires 3 ms of erase/program time between each writing */
42 #define LPC18XX_EEPROM_PROGRAM_TIME 3
44 struct lpc18xx_eeprom_dev
{
46 void __iomem
*reg_base
;
47 void __iomem
*mem_base
;
48 struct nvmem_device
*nvmem
;
54 static inline void lpc18xx_eeprom_writel(struct lpc18xx_eeprom_dev
*eeprom
,
57 writel(val
, eeprom
->reg_base
+ reg
);
60 static inline u32
lpc18xx_eeprom_readl(struct lpc18xx_eeprom_dev
*eeprom
,
63 return readl(eeprom
->reg_base
+ reg
);
66 static int lpc18xx_eeprom_busywait_until_prog(struct lpc18xx_eeprom_dev
*eeprom
)
71 /* Wait until EEPROM program operation has finished */
72 end
= jiffies
+ msecs_to_jiffies(LPC18XX_EEPROM_PROGRAM_TIME
* 10);
74 while (time_is_after_jiffies(end
)) {
75 val
= lpc18xx_eeprom_readl(eeprom
, LPC18XX_EEPROM_INTSTAT
);
77 if (val
& LPC18XX_EEPROM_INTSTAT_END_OF_PROG
) {
78 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_INTSTATCLR
,
79 LPC18XX_EEPROM_INTSTATCLR_PROG_CLR_ST
);
83 usleep_range(LPC18XX_EEPROM_PROGRAM_TIME
* USEC_PER_MSEC
,
84 (LPC18XX_EEPROM_PROGRAM_TIME
+ 1) * USEC_PER_MSEC
);
90 static int lpc18xx_eeprom_gather_write(void *context
, unsigned int reg
,
91 void *val
, size_t bytes
)
93 struct lpc18xx_eeprom_dev
*eeprom
= context
;
94 unsigned int offset
= reg
;
98 * The last page contains the EEPROM initialization data and is not
101 if ((reg
> eeprom
->size
- LPC18XX_EEPROM_PAGE_SIZE
) ||
102 (reg
+ bytes
> eeprom
->size
- LPC18XX_EEPROM_PAGE_SIZE
))
106 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
107 LPC18XX_EEPROM_PWRDWN_NO
);
109 /* Wait 100 us while the EEPROM wakes up */
110 usleep_range(100, 200);
113 writel(*(u32
*)val
, eeprom
->mem_base
+ offset
);
114 ret
= lpc18xx_eeprom_busywait_until_prog(eeprom
);
118 bytes
-= eeprom
->val_bytes
;
119 val
+= eeprom
->val_bytes
;
120 offset
+= eeprom
->val_bytes
;
123 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
124 LPC18XX_EEPROM_PWRDWN_YES
);
129 static int lpc18xx_eeprom_read(void *context
, unsigned int offset
,
130 void *val
, size_t bytes
)
132 struct lpc18xx_eeprom_dev
*eeprom
= context
;
134 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
135 LPC18XX_EEPROM_PWRDWN_NO
);
137 /* Wait 100 us while the EEPROM wakes up */
138 usleep_range(100, 200);
141 *(u32
*)val
= readl(eeprom
->mem_base
+ offset
);
142 bytes
-= eeprom
->val_bytes
;
143 val
+= eeprom
->val_bytes
;
144 offset
+= eeprom
->val_bytes
;
147 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
148 LPC18XX_EEPROM_PWRDWN_YES
);
154 static struct nvmem_config lpc18xx_nvmem_config
= {
155 .name
= "lpc18xx-eeprom",
158 .reg_read
= lpc18xx_eeprom_read
,
159 .reg_write
= lpc18xx_eeprom_gather_write
,
162 static int lpc18xx_eeprom_probe(struct platform_device
*pdev
)
164 struct lpc18xx_eeprom_dev
*eeprom
;
165 struct device
*dev
= &pdev
->dev
;
166 struct reset_control
*rst
;
167 unsigned long clk_rate
;
168 struct resource
*res
;
171 eeprom
= devm_kzalloc(dev
, sizeof(*eeprom
), GFP_KERNEL
);
175 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "reg");
176 eeprom
->reg_base
= devm_ioremap_resource(dev
, res
);
177 if (IS_ERR(eeprom
->reg_base
))
178 return PTR_ERR(eeprom
->reg_base
);
180 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "mem");
181 eeprom
->mem_base
= devm_ioremap_resource(dev
, res
);
182 if (IS_ERR(eeprom
->mem_base
))
183 return PTR_ERR(eeprom
->mem_base
);
185 eeprom
->clk
= devm_clk_get(&pdev
->dev
, "eeprom");
186 if (IS_ERR(eeprom
->clk
)) {
187 dev_err(&pdev
->dev
, "failed to get eeprom clock\n");
188 return PTR_ERR(eeprom
->clk
);
191 ret
= clk_prepare_enable(eeprom
->clk
);
193 dev_err(dev
, "failed to prepare/enable eeprom clk: %d\n", ret
);
197 rst
= devm_reset_control_get_exclusive(dev
, NULL
);
199 dev_err(dev
, "failed to get reset: %ld\n", PTR_ERR(rst
));
204 ret
= reset_control_assert(rst
);
206 dev_err(dev
, "failed to assert reset: %d\n", ret
);
210 eeprom
->val_bytes
= 4;
211 eeprom
->reg_bytes
= 4;
214 * Clock rate is generated by dividing the system bus clock by the
215 * division factor, contained in the divider register (minus 1 encoded).
217 clk_rate
= clk_get_rate(eeprom
->clk
);
218 clk_rate
= DIV_ROUND_UP(clk_rate
, LPC18XX_EEPROM_CLOCK_HZ
) - 1;
219 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_CLKDIV
, clk_rate
);
222 * Writing a single word to the page will start the erase/program cycle
225 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_AUTOPROG
,
226 LPC18XX_EEPROM_AUTOPROG_WORD
);
228 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
229 LPC18XX_EEPROM_PWRDWN_YES
);
231 eeprom
->size
= resource_size(res
);
232 lpc18xx_nvmem_config
.size
= resource_size(res
);
233 lpc18xx_nvmem_config
.dev
= dev
;
234 lpc18xx_nvmem_config
.priv
= eeprom
;
236 eeprom
->nvmem
= devm_nvmem_register(dev
, &lpc18xx_nvmem_config
);
237 if (IS_ERR(eeprom
->nvmem
)) {
238 ret
= PTR_ERR(eeprom
->nvmem
);
242 platform_set_drvdata(pdev
, eeprom
);
247 clk_disable_unprepare(eeprom
->clk
);
252 static int lpc18xx_eeprom_remove(struct platform_device
*pdev
)
254 struct lpc18xx_eeprom_dev
*eeprom
= platform_get_drvdata(pdev
);
256 clk_disable_unprepare(eeprom
->clk
);
261 static const struct of_device_id lpc18xx_eeprom_of_match
[] = {
262 { .compatible
= "nxp,lpc1857-eeprom" },
265 MODULE_DEVICE_TABLE(of
, lpc18xx_eeprom_of_match
);
267 static struct platform_driver lpc18xx_eeprom_driver
= {
268 .probe
= lpc18xx_eeprom_probe
,
269 .remove
= lpc18xx_eeprom_remove
,
271 .name
= "lpc18xx-eeprom",
272 .of_match_table
= lpc18xx_eeprom_of_match
,
276 module_platform_driver(lpc18xx_eeprom_driver
);
278 MODULE_AUTHOR("Ariel D'Alessandro <ariel@vanguardiasur.com.ar>");
279 MODULE_DESCRIPTION("NXP LPC18xx EEPROM memory Driver");
280 MODULE_LICENSE("GPL v2");