xref: /openbmc/linux/drivers/mtd/nand/raw/txx9ndfmc.c (revision 31e67366)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * TXx9 NAND flash memory controller driver
4  * Based on RBTX49xx patch from CELF patch archive.
5  *
6  * (C) Copyright TOSHIBA CORPORATION 2004-2007
7  * All Rights Reserved.
8  */
9 #include <linux/err.h>
10 #include <linux/init.h>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/delay.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/rawnand.h>
17 #include <linux/mtd/partitions.h>
18 #include <linux/io.h>
19 #include <linux/platform_data/txx9/ndfmc.h>
20 
21 /* TXX9 NDFMC Registers */
22 #define TXX9_NDFDTR	0x00
23 #define TXX9_NDFMCR	0x04
24 #define TXX9_NDFSR	0x08
25 #define TXX9_NDFISR	0x0c
26 #define TXX9_NDFIMR	0x10
27 #define TXX9_NDFSPR	0x14
28 #define TXX9_NDFRSTR	0x18	/* not TX4939 */
29 
30 /* NDFMCR : NDFMC Mode Control */
31 #define TXX9_NDFMCR_WE	0x80
32 #define TXX9_NDFMCR_ECC_ALL	0x60
33 #define TXX9_NDFMCR_ECC_RESET	0x60
34 #define TXX9_NDFMCR_ECC_READ	0x40
35 #define TXX9_NDFMCR_ECC_ON	0x20
36 #define TXX9_NDFMCR_ECC_OFF	0x00
37 #define TXX9_NDFMCR_CE	0x10
38 #define TXX9_NDFMCR_BSPRT	0x04	/* TX4925/TX4926 only */
39 #define TXX9_NDFMCR_ALE	0x02
40 #define TXX9_NDFMCR_CLE	0x01
41 /* TX4939 only */
42 #define TXX9_NDFMCR_X16	0x0400
43 #define TXX9_NDFMCR_DMAREQ_MASK	0x0300
44 #define TXX9_NDFMCR_DMAREQ_NODMA	0x0000
45 #define TXX9_NDFMCR_DMAREQ_128	0x0100
46 #define TXX9_NDFMCR_DMAREQ_256	0x0200
47 #define TXX9_NDFMCR_DMAREQ_512	0x0300
48 #define TXX9_NDFMCR_CS_MASK	0x0c
49 #define TXX9_NDFMCR_CS(ch)	((ch) << 2)
50 
51 /* NDFMCR : NDFMC Status */
52 #define TXX9_NDFSR_BUSY	0x80
53 /* TX4939 only */
54 #define TXX9_NDFSR_DMARUN	0x40
55 
56 /* NDFMCR : NDFMC Reset */
57 #define TXX9_NDFRSTR_RST	0x01
58 
59 struct txx9ndfmc_priv {
60 	struct platform_device *dev;
61 	struct nand_chip chip;
62 	int cs;
63 	const char *mtdname;
64 };
65 
66 #define MAX_TXX9NDFMC_DEV	4
67 struct txx9ndfmc_drvdata {
68 	struct mtd_info *mtds[MAX_TXX9NDFMC_DEV];
69 	void __iomem *base;
70 	unsigned char hold;	/* in gbusclock */
71 	unsigned char spw;	/* in gbusclock */
72 	struct nand_controller controller;
73 };
74 
75 static struct platform_device *mtd_to_platdev(struct mtd_info *mtd)
76 {
77 	struct nand_chip *chip = mtd_to_nand(mtd);
78 	struct txx9ndfmc_priv *txx9_priv = nand_get_controller_data(chip);
79 	return txx9_priv->dev;
80 }
81 
82 static void __iomem *ndregaddr(struct platform_device *dev, unsigned int reg)
83 {
84 	struct txx9ndfmc_drvdata *drvdata = platform_get_drvdata(dev);
85 	struct txx9ndfmc_platform_data *plat = dev_get_platdata(&dev->dev);
86 
87 	return drvdata->base + (reg << plat->shift);
88 }
89 
90 static u32 txx9ndfmc_read(struct platform_device *dev, unsigned int reg)
91 {
92 	return __raw_readl(ndregaddr(dev, reg));
93 }
94 
95 static void txx9ndfmc_write(struct platform_device *dev,
96 			    u32 val, unsigned int reg)
97 {
98 	__raw_writel(val, ndregaddr(dev, reg));
99 }
100 
101 static uint8_t txx9ndfmc_read_byte(struct nand_chip *chip)
102 {
103 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
104 
105 	return txx9ndfmc_read(dev, TXX9_NDFDTR);
106 }
107 
108 static void txx9ndfmc_write_buf(struct nand_chip *chip, const uint8_t *buf,
109 				int len)
110 {
111 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
112 	void __iomem *ndfdtr = ndregaddr(dev, TXX9_NDFDTR);
113 	u32 mcr = txx9ndfmc_read(dev, TXX9_NDFMCR);
114 
115 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_WE, TXX9_NDFMCR);
116 	while (len--)
117 		__raw_writel(*buf++, ndfdtr);
118 	txx9ndfmc_write(dev, mcr, TXX9_NDFMCR);
119 }
120 
121 static void txx9ndfmc_read_buf(struct nand_chip *chip, uint8_t *buf, int len)
122 {
123 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
124 	void __iomem *ndfdtr = ndregaddr(dev, TXX9_NDFDTR);
125 
126 	while (len--)
127 		*buf++ = __raw_readl(ndfdtr);
128 }
129 
130 static void txx9ndfmc_cmd_ctrl(struct nand_chip *chip, int cmd,
131 			       unsigned int ctrl)
132 {
133 	struct txx9ndfmc_priv *txx9_priv = nand_get_controller_data(chip);
134 	struct platform_device *dev = txx9_priv->dev;
135 	struct txx9ndfmc_platform_data *plat = dev_get_platdata(&dev->dev);
136 
137 	if (ctrl & NAND_CTRL_CHANGE) {
138 		u32 mcr = txx9ndfmc_read(dev, TXX9_NDFMCR);
139 
140 		mcr &= ~(TXX9_NDFMCR_CLE | TXX9_NDFMCR_ALE | TXX9_NDFMCR_CE);
141 		mcr |= ctrl & NAND_CLE ? TXX9_NDFMCR_CLE : 0;
142 		mcr |= ctrl & NAND_ALE ? TXX9_NDFMCR_ALE : 0;
143 		/* TXX9_NDFMCR_CE bit is 0:high 1:low */
144 		mcr |= ctrl & NAND_NCE ? TXX9_NDFMCR_CE : 0;
145 		if (txx9_priv->cs >= 0 && (ctrl & NAND_NCE)) {
146 			mcr &= ~TXX9_NDFMCR_CS_MASK;
147 			mcr |= TXX9_NDFMCR_CS(txx9_priv->cs);
148 		}
149 		txx9ndfmc_write(dev, mcr, TXX9_NDFMCR);
150 	}
151 	if (cmd != NAND_CMD_NONE)
152 		txx9ndfmc_write(dev, cmd & 0xff, TXX9_NDFDTR);
153 	if (plat->flags & NDFMC_PLAT_FLAG_DUMMYWRITE) {
154 		/* dummy write to update external latch */
155 		if ((ctrl & NAND_CTRL_CHANGE) && cmd == NAND_CMD_NONE)
156 			txx9ndfmc_write(dev, 0, TXX9_NDFDTR);
157 	}
158 }
159 
160 static int txx9ndfmc_dev_ready(struct nand_chip *chip)
161 {
162 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
163 
164 	return !(txx9ndfmc_read(dev, TXX9_NDFSR) & TXX9_NDFSR_BUSY);
165 }
166 
167 static int txx9ndfmc_calculate_ecc(struct nand_chip *chip, const uint8_t *dat,
168 				   uint8_t *ecc_code)
169 {
170 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
171 	int eccbytes;
172 	u32 mcr = txx9ndfmc_read(dev, TXX9_NDFMCR);
173 
174 	mcr &= ~TXX9_NDFMCR_ECC_ALL;
175 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_OFF, TXX9_NDFMCR);
176 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_READ, TXX9_NDFMCR);
177 	for (eccbytes = chip->ecc.bytes; eccbytes > 0; eccbytes -= 3) {
178 		ecc_code[1] = txx9ndfmc_read(dev, TXX9_NDFDTR);
179 		ecc_code[0] = txx9ndfmc_read(dev, TXX9_NDFDTR);
180 		ecc_code[2] = txx9ndfmc_read(dev, TXX9_NDFDTR);
181 		ecc_code += 3;
182 	}
183 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_OFF, TXX9_NDFMCR);
184 	return 0;
185 }
186 
187 static int txx9ndfmc_correct_data(struct nand_chip *chip, unsigned char *buf,
188 				  unsigned char *read_ecc,
189 				  unsigned char *calc_ecc)
190 {
191 	int eccsize;
192 	int corrected = 0;
193 	int stat;
194 
195 	for (eccsize = chip->ecc.size; eccsize > 0; eccsize -= 256) {
196 		stat = rawnand_sw_hamming_correct(chip, buf, read_ecc,
197 						  calc_ecc);
198 		if (stat < 0)
199 			return stat;
200 		corrected += stat;
201 		buf += 256;
202 		read_ecc += 3;
203 		calc_ecc += 3;
204 	}
205 	return corrected;
206 }
207 
208 static void txx9ndfmc_enable_hwecc(struct nand_chip *chip, int mode)
209 {
210 	struct platform_device *dev = mtd_to_platdev(nand_to_mtd(chip));
211 	u32 mcr = txx9ndfmc_read(dev, TXX9_NDFMCR);
212 
213 	mcr &= ~TXX9_NDFMCR_ECC_ALL;
214 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_RESET, TXX9_NDFMCR);
215 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_OFF, TXX9_NDFMCR);
216 	txx9ndfmc_write(dev, mcr | TXX9_NDFMCR_ECC_ON, TXX9_NDFMCR);
217 }
218 
219 static void txx9ndfmc_initialize(struct platform_device *dev)
220 {
221 	struct txx9ndfmc_platform_data *plat = dev_get_platdata(&dev->dev);
222 	struct txx9ndfmc_drvdata *drvdata = platform_get_drvdata(dev);
223 	int tmout = 100;
224 
225 	if (plat->flags & NDFMC_PLAT_FLAG_NO_RSTR)
226 		; /* no NDFRSTR.  Write to NDFSPR resets the NDFMC. */
227 	else {
228 		/* reset NDFMC */
229 		txx9ndfmc_write(dev,
230 				txx9ndfmc_read(dev, TXX9_NDFRSTR) |
231 				TXX9_NDFRSTR_RST,
232 				TXX9_NDFRSTR);
233 		while (txx9ndfmc_read(dev, TXX9_NDFRSTR) & TXX9_NDFRSTR_RST) {
234 			if (--tmout == 0) {
235 				dev_err(&dev->dev, "reset failed.\n");
236 				break;
237 			}
238 			udelay(1);
239 		}
240 	}
241 	/* setup Hold Time, Strobe Pulse Width */
242 	txx9ndfmc_write(dev, (drvdata->hold << 4) | drvdata->spw, TXX9_NDFSPR);
243 	txx9ndfmc_write(dev,
244 			(plat->flags & NDFMC_PLAT_FLAG_USE_BSPRT) ?
245 			TXX9_NDFMCR_BSPRT : 0, TXX9_NDFMCR);
246 }
247 
248 #define TXX9NDFMC_NS_TO_CYC(gbusclk, ns) \
249 	DIV_ROUND_UP((ns) * DIV_ROUND_UP(gbusclk, 1000), 1000000)
250 
251 static int txx9ndfmc_attach_chip(struct nand_chip *chip)
252 {
253 	struct mtd_info *mtd = nand_to_mtd(chip);
254 
255 	if (chip->ecc.engine_type != NAND_ECC_ENGINE_TYPE_ON_HOST)
256 		return 0;
257 
258 	chip->ecc.strength = 1;
259 
260 	if (mtd->writesize >= 512) {
261 		chip->ecc.size = 512;
262 		chip->ecc.bytes = 6;
263 	} else {
264 		chip->ecc.size = 256;
265 		chip->ecc.bytes = 3;
266 	}
267 
268 	chip->ecc.calculate = txx9ndfmc_calculate_ecc;
269 	chip->ecc.correct = txx9ndfmc_correct_data;
270 	chip->ecc.hwctl = txx9ndfmc_enable_hwecc;
271 
272 	return 0;
273 }
274 
275 static const struct nand_controller_ops txx9ndfmc_controller_ops = {
276 	.attach_chip = txx9ndfmc_attach_chip,
277 };
278 
279 static int __init txx9ndfmc_probe(struct platform_device *dev)
280 {
281 	struct txx9ndfmc_platform_data *plat = dev_get_platdata(&dev->dev);
282 	int hold, spw;
283 	int i;
284 	struct txx9ndfmc_drvdata *drvdata;
285 	unsigned long gbusclk = plat->gbus_clock;
286 	struct resource *res;
287 
288 	drvdata = devm_kzalloc(&dev->dev, sizeof(*drvdata), GFP_KERNEL);
289 	if (!drvdata)
290 		return -ENOMEM;
291 	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
292 	drvdata->base = devm_ioremap_resource(&dev->dev, res);
293 	if (IS_ERR(drvdata->base))
294 		return PTR_ERR(drvdata->base);
295 
296 	hold = plat->hold ?: 20; /* tDH */
297 	spw = plat->spw ?: 90; /* max(tREADID, tWP, tRP) */
298 
299 	hold = TXX9NDFMC_NS_TO_CYC(gbusclk, hold);
300 	spw = TXX9NDFMC_NS_TO_CYC(gbusclk, spw);
301 	if (plat->flags & NDFMC_PLAT_FLAG_HOLDADD)
302 		hold -= 2;	/* actual hold time : (HOLD + 2) BUSCLK */
303 	spw -= 1;	/* actual wait time : (SPW + 1) BUSCLK */
304 	hold = clamp(hold, 1, 15);
305 	drvdata->hold = hold;
306 	spw = clamp(spw, 1, 15);
307 	drvdata->spw = spw;
308 	dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n",
309 		 (gbusclk + 500000) / 1000000, hold, spw);
310 
311 	nand_controller_init(&drvdata->controller);
312 	drvdata->controller.ops = &txx9ndfmc_controller_ops;
313 
314 	platform_set_drvdata(dev, drvdata);
315 	txx9ndfmc_initialize(dev);
316 
317 	for (i = 0; i < MAX_TXX9NDFMC_DEV; i++) {
318 		struct txx9ndfmc_priv *txx9_priv;
319 		struct nand_chip *chip;
320 		struct mtd_info *mtd;
321 
322 		if (!(plat->ch_mask & (1 << i)))
323 			continue;
324 		txx9_priv = kzalloc(sizeof(struct txx9ndfmc_priv),
325 				    GFP_KERNEL);
326 		if (!txx9_priv)
327 			continue;
328 		chip = &txx9_priv->chip;
329 		mtd = nand_to_mtd(chip);
330 		mtd->dev.parent = &dev->dev;
331 
332 		chip->legacy.read_byte = txx9ndfmc_read_byte;
333 		chip->legacy.read_buf = txx9ndfmc_read_buf;
334 		chip->legacy.write_buf = txx9ndfmc_write_buf;
335 		chip->legacy.cmd_ctrl = txx9ndfmc_cmd_ctrl;
336 		chip->legacy.dev_ready = txx9ndfmc_dev_ready;
337 		chip->legacy.chip_delay = 100;
338 		chip->controller = &drvdata->controller;
339 
340 		nand_set_controller_data(chip, txx9_priv);
341 		txx9_priv->dev = dev;
342 
343 		if (plat->ch_mask != 1) {
344 			txx9_priv->cs = i;
345 			txx9_priv->mtdname = kasprintf(GFP_KERNEL, "%s.%u",
346 						       dev_name(&dev->dev), i);
347 		} else {
348 			txx9_priv->cs = -1;
349 			txx9_priv->mtdname = kstrdup(dev_name(&dev->dev),
350 						     GFP_KERNEL);
351 		}
352 		if (!txx9_priv->mtdname) {
353 			kfree(txx9_priv);
354 			dev_err(&dev->dev, "Unable to allocate MTD name.\n");
355 			continue;
356 		}
357 		if (plat->wide_mask & (1 << i))
358 			chip->options |= NAND_BUSWIDTH_16;
359 
360 		if (nand_scan(chip, 1)) {
361 			kfree(txx9_priv->mtdname);
362 			kfree(txx9_priv);
363 			continue;
364 		}
365 		mtd->name = txx9_priv->mtdname;
366 
367 		mtd_device_register(mtd, NULL, 0);
368 		drvdata->mtds[i] = mtd;
369 	}
370 
371 	return 0;
372 }
373 
374 static int __exit txx9ndfmc_remove(struct platform_device *dev)
375 {
376 	struct txx9ndfmc_drvdata *drvdata = platform_get_drvdata(dev);
377 	int ret, i;
378 
379 	if (!drvdata)
380 		return 0;
381 	for (i = 0; i < MAX_TXX9NDFMC_DEV; i++) {
382 		struct mtd_info *mtd = drvdata->mtds[i];
383 		struct nand_chip *chip;
384 		struct txx9ndfmc_priv *txx9_priv;
385 
386 		if (!mtd)
387 			continue;
388 		chip = mtd_to_nand(mtd);
389 		txx9_priv = nand_get_controller_data(chip);
390 
391 		ret = mtd_device_unregister(nand_to_mtd(chip));
392 		WARN_ON(ret);
393 		nand_cleanup(chip);
394 		kfree(txx9_priv->mtdname);
395 		kfree(txx9_priv);
396 	}
397 	return 0;
398 }
399 
400 #ifdef CONFIG_PM
401 static int txx9ndfmc_resume(struct platform_device *dev)
402 {
403 	if (platform_get_drvdata(dev))
404 		txx9ndfmc_initialize(dev);
405 	return 0;
406 }
407 #else
408 #define txx9ndfmc_resume NULL
409 #endif
410 
411 static struct platform_driver txx9ndfmc_driver = {
412 	.remove		= __exit_p(txx9ndfmc_remove),
413 	.resume		= txx9ndfmc_resume,
414 	.driver		= {
415 		.name	= "txx9ndfmc",
416 	},
417 };
418 
419 module_platform_driver_probe(txx9ndfmc_driver, txx9ndfmc_probe);
420 
421 MODULE_LICENSE("GPL");
422 MODULE_DESCRIPTION("TXx9 SoC NAND flash controller driver");
423 MODULE_ALIAS("platform:txx9ndfmc");
424