2 * NXP LPC18xx/LPC43xx EEPROM memory NVMEM driver
4 * Copyright (c) 2015 Ariel D'Alessandro <ariel@vanguardiasur.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
11 #include <linux/clk.h>
12 #include <linux/device.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
16 #include <linux/module.h>
17 #include <linux/nvmem-provider.h>
18 #include <linux/platform_device.h>
19 #include <linux/reset.h>
22 #define LPC18XX_EEPROM_AUTOPROG 0x00c
23 #define LPC18XX_EEPROM_AUTOPROG_WORD 0x1
25 #define LPC18XX_EEPROM_CLKDIV 0x014
27 #define LPC18XX_EEPROM_PWRDWN 0x018
28 #define LPC18XX_EEPROM_PWRDWN_NO 0x0
29 #define LPC18XX_EEPROM_PWRDWN_YES 0x1
31 #define LPC18XX_EEPROM_INTSTAT 0xfe0
32 #define LPC18XX_EEPROM_INTSTAT_END_OF_PROG BIT(2)
34 #define LPC18XX_EEPROM_INTSTATCLR 0xfe8
35 #define LPC18XX_EEPROM_INTSTATCLR_PROG_CLR_ST BIT(2)
37 /* Fixed page size (bytes) */
38 #define LPC18XX_EEPROM_PAGE_SIZE 0x80
40 /* EEPROM device requires a ~1500 kHz clock (min 800 kHz, max 1600 kHz) */
41 #define LPC18XX_EEPROM_CLOCK_HZ 1500000
43 /* EEPROM requires 3 ms of erase/program time between each writing */
44 #define LPC18XX_EEPROM_PROGRAM_TIME 3
46 struct lpc18xx_eeprom_dev
{
48 void __iomem
*reg_base
;
49 void __iomem
*mem_base
;
50 struct nvmem_device
*nvmem
;
56 static inline void lpc18xx_eeprom_writel(struct lpc18xx_eeprom_dev
*eeprom
,
59 writel(val
, eeprom
->reg_base
+ reg
);
62 static inline u32
lpc18xx_eeprom_readl(struct lpc18xx_eeprom_dev
*eeprom
,
65 return readl(eeprom
->reg_base
+ reg
);
68 static int lpc18xx_eeprom_busywait_until_prog(struct lpc18xx_eeprom_dev
*eeprom
)
73 /* Wait until EEPROM program operation has finished */
74 end
= jiffies
+ msecs_to_jiffies(LPC18XX_EEPROM_PROGRAM_TIME
* 10);
76 while (time_is_after_jiffies(end
)) {
77 val
= lpc18xx_eeprom_readl(eeprom
, LPC18XX_EEPROM_INTSTAT
);
79 if (val
& LPC18XX_EEPROM_INTSTAT_END_OF_PROG
) {
80 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_INTSTATCLR
,
81 LPC18XX_EEPROM_INTSTATCLR_PROG_CLR_ST
);
85 usleep_range(LPC18XX_EEPROM_PROGRAM_TIME
* USEC_PER_MSEC
,
86 (LPC18XX_EEPROM_PROGRAM_TIME
+ 1) * USEC_PER_MSEC
);
92 static int lpc18xx_eeprom_gather_write(void *context
, unsigned int reg
,
93 void *val
, size_t bytes
)
95 struct lpc18xx_eeprom_dev
*eeprom
= context
;
96 unsigned int offset
= reg
;
100 * The last page contains the EEPROM initialization data and is not
103 if ((reg
> eeprom
->size
- LPC18XX_EEPROM_PAGE_SIZE
) ||
104 (reg
+ bytes
> eeprom
->size
- LPC18XX_EEPROM_PAGE_SIZE
))
108 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
109 LPC18XX_EEPROM_PWRDWN_NO
);
111 /* Wait 100 us while the EEPROM wakes up */
112 usleep_range(100, 200);
115 writel(*(u32
*)val
, eeprom
->mem_base
+ offset
);
116 ret
= lpc18xx_eeprom_busywait_until_prog(eeprom
);
120 bytes
-= eeprom
->val_bytes
;
121 val
+= eeprom
->val_bytes
;
122 offset
+= eeprom
->val_bytes
;
125 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
126 LPC18XX_EEPROM_PWRDWN_YES
);
131 static int lpc18xx_eeprom_read(void *context
, unsigned int offset
,
132 void *val
, size_t bytes
)
134 struct lpc18xx_eeprom_dev
*eeprom
= context
;
136 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
137 LPC18XX_EEPROM_PWRDWN_NO
);
139 /* Wait 100 us while the EEPROM wakes up */
140 usleep_range(100, 200);
143 *(u32
*)val
= readl(eeprom
->mem_base
+ offset
);
144 bytes
-= eeprom
->val_bytes
;
145 val
+= eeprom
->val_bytes
;
146 offset
+= eeprom
->val_bytes
;
149 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
150 LPC18XX_EEPROM_PWRDWN_YES
);
156 static struct nvmem_config lpc18xx_nvmem_config
= {
157 .name
= "lpc18xx-eeprom",
160 .reg_read
= lpc18xx_eeprom_read
,
161 .reg_write
= lpc18xx_eeprom_gather_write
,
162 .owner
= THIS_MODULE
,
165 static int lpc18xx_eeprom_probe(struct platform_device
*pdev
)
167 struct lpc18xx_eeprom_dev
*eeprom
;
168 struct device
*dev
= &pdev
->dev
;
169 struct reset_control
*rst
;
170 unsigned long clk_rate
;
171 struct resource
*res
;
174 eeprom
= devm_kzalloc(dev
, sizeof(*eeprom
), GFP_KERNEL
);
178 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "reg");
179 eeprom
->reg_base
= devm_ioremap_resource(dev
, res
);
180 if (IS_ERR(eeprom
->reg_base
))
181 return PTR_ERR(eeprom
->reg_base
);
183 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "mem");
184 eeprom
->mem_base
= devm_ioremap_resource(dev
, res
);
185 if (IS_ERR(eeprom
->mem_base
))
186 return PTR_ERR(eeprom
->mem_base
);
188 eeprom
->clk
= devm_clk_get(&pdev
->dev
, "eeprom");
189 if (IS_ERR(eeprom
->clk
)) {
190 dev_err(&pdev
->dev
, "failed to get eeprom clock\n");
191 return PTR_ERR(eeprom
->clk
);
194 ret
= clk_prepare_enable(eeprom
->clk
);
196 dev_err(dev
, "failed to prepare/enable eeprom clk: %d\n", ret
);
200 rst
= devm_reset_control_get(dev
, NULL
);
202 dev_err(dev
, "failed to get reset: %ld\n", PTR_ERR(rst
));
207 ret
= reset_control_assert(rst
);
209 dev_err(dev
, "failed to assert reset: %d\n", ret
);
213 eeprom
->val_bytes
= 4;
214 eeprom
->reg_bytes
= 4;
217 * Clock rate is generated by dividing the system bus clock by the
218 * division factor, contained in the divider register (minus 1 encoded).
220 clk_rate
= clk_get_rate(eeprom
->clk
);
221 clk_rate
= DIV_ROUND_UP(clk_rate
, LPC18XX_EEPROM_CLOCK_HZ
) - 1;
222 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_CLKDIV
, clk_rate
);
225 * Writing a single word to the page will start the erase/program cycle
228 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_AUTOPROG
,
229 LPC18XX_EEPROM_AUTOPROG_WORD
);
231 lpc18xx_eeprom_writel(eeprom
, LPC18XX_EEPROM_PWRDWN
,
232 LPC18XX_EEPROM_PWRDWN_YES
);
234 eeprom
->size
= resource_size(res
);
235 lpc18xx_nvmem_config
.size
= resource_size(res
);
236 lpc18xx_nvmem_config
.dev
= dev
;
237 lpc18xx_nvmem_config
.priv
= eeprom
;
239 eeprom
->nvmem
= nvmem_register(&lpc18xx_nvmem_config
);
240 if (IS_ERR(eeprom
->nvmem
)) {
241 ret
= PTR_ERR(eeprom
->nvmem
);
245 platform_set_drvdata(pdev
, eeprom
);
250 clk_disable_unprepare(eeprom
->clk
);
255 static int lpc18xx_eeprom_remove(struct platform_device
*pdev
)
257 struct lpc18xx_eeprom_dev
*eeprom
= platform_get_drvdata(pdev
);
260 ret
= nvmem_unregister(eeprom
->nvmem
);
264 clk_disable_unprepare(eeprom
->clk
);
269 static const struct of_device_id lpc18xx_eeprom_of_match
[] = {
270 { .compatible
= "nxp,lpc1857-eeprom" },
273 MODULE_DEVICE_TABLE(of
, lpc18xx_eeprom_of_match
);
275 static struct platform_driver lpc18xx_eeprom_driver
= {
276 .probe
= lpc18xx_eeprom_probe
,
277 .remove
= lpc18xx_eeprom_remove
,
279 .name
= "lpc18xx-eeprom",
280 .of_match_table
= lpc18xx_eeprom_of_match
,
284 module_platform_driver(lpc18xx_eeprom_driver
);
286 MODULE_AUTHOR("Ariel D'Alessandro <ariel@vanguardiasur.com.ar>");
287 MODULE_DESCRIPTION("NXP LPC18xx EEPROM memory Driver");
288 MODULE_LICENSE("GPL v2");