blob: c6aa5db33c43666cd970cd1b214fbdf04b42a4a4 [file] [log] [blame]
Sergey Lapin10794322008-10-31 12:28:43 +01001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Sergey Lapin10794322008-10-31 12:28:43 +01004 * Lead Tech Design <www.leadtechdesign.com>
5 *
6 * (C) Copyright 2006 ATMEL Rousset, Lacressonniere Nicolas
7 *
Wu, Joshbdfd59a2012-08-23 00:05:36 +00008 * Add Programmable Multibit ECC support for various AT91 SoC
9 * (C) Copyright 2012 ATMEL, Hong Xu
10 *
Sergey Lapin10794322008-10-31 12:28:43 +010011 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30#include <common.h>
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010031#include <asm/arch/hardware.h>
Sergey Lapin10794322008-10-31 12:28:43 +010032#include <asm/arch/gpio.h>
33#include <asm/arch/at91_pio.h>
34
35#include <nand.h>
Wu, Joshbdfd59a2012-08-23 00:05:36 +000036#include <watchdog.h>
Sergey Lapin10794322008-10-31 12:28:43 +010037
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +050038#ifdef CONFIG_ATMEL_NAND_HWECC
39
40/* Register access macros */
41#define ecc_readl(add, reg) \
42 readl(AT91_BASE_SYS + add + ATMEL_ECC_##reg)
43#define ecc_writel(add, reg, value) \
44 writel((value), AT91_BASE_SYS + add + ATMEL_ECC_##reg)
45
46#include "atmel_nand_ecc.h" /* Hardware ECC registers */
47
Wu, Joshbdfd59a2012-08-23 00:05:36 +000048#ifdef CONFIG_ATMEL_NAND_HW_PMECC
49
50struct atmel_nand_host {
51 struct pmecc_regs __iomem *pmecc;
52 struct pmecc_errloc_regs __iomem *pmerrloc;
53 void __iomem *pmecc_rom_base;
54
55 u8 pmecc_corr_cap;
56 u16 pmecc_sector_size;
57 u32 pmecc_index_table_offset;
58
59 int pmecc_bytes_per_sector;
60 int pmecc_sector_number;
61 int pmecc_degree; /* Degree of remainders */
62 int pmecc_cw_len; /* Length of codeword */
63
64 /* lookup table for alpha_to and index_of */
65 void __iomem *pmecc_alpha_to;
66 void __iomem *pmecc_index_of;
67
68 /* data for pmecc computation */
69 int16_t pmecc_smu[(CONFIG_PMECC_CAP + 2) * (2 * CONFIG_PMECC_CAP + 1)];
70 int16_t pmecc_partial_syn[2 * CONFIG_PMECC_CAP + 1];
71 int16_t pmecc_si[2 * CONFIG_PMECC_CAP + 1];
72 int16_t pmecc_lmu[CONFIG_PMECC_CAP + 1]; /* polynomal order */
73 int pmecc_mu[CONFIG_PMECC_CAP + 1];
74 int pmecc_dmu[CONFIG_PMECC_CAP + 1];
75 int pmecc_delta[CONFIG_PMECC_CAP + 1];
76};
77
78static struct atmel_nand_host pmecc_host;
79static struct nand_ecclayout atmel_pmecc_oobinfo;
80
81/*
82 * Return number of ecc bytes per sector according to sector size and
83 * correction capability
84 *
85 * Following table shows what at91 PMECC supported:
86 * Correction Capability Sector_512_bytes Sector_1024_bytes
87 * ===================== ================ =================
88 * 2-bits 4-bytes 4-bytes
89 * 4-bits 7-bytes 7-bytes
90 * 8-bits 13-bytes 14-bytes
91 * 12-bits 20-bytes 21-bytes
92 * 24-bits 39-bytes 42-bytes
93 */
94static int pmecc_get_ecc_bytes(int cap, int sector_size)
95{
96 int m = 12 + sector_size / 512;
97 return (m * cap + 7) / 8;
98}
99
100static void pmecc_config_ecc_layout(struct nand_ecclayout *layout,
101 int oobsize, int ecc_len)
102{
103 int i;
104
105 layout->eccbytes = ecc_len;
106
107 /* ECC will occupy the last ecc_len bytes continuously */
108 for (i = 0; i < ecc_len; i++)
109 layout->eccpos[i] = oobsize - ecc_len + i;
110
111 layout->oobfree[0].offset = 2;
112 layout->oobfree[0].length =
113 oobsize - ecc_len - layout->oobfree[0].offset;
114}
115
116static void __iomem *pmecc_get_alpha_to(struct atmel_nand_host *host)
117{
118 int table_size;
119
120 table_size = host->pmecc_sector_size == 512 ?
121 PMECC_INDEX_TABLE_SIZE_512 : PMECC_INDEX_TABLE_SIZE_1024;
122
123 /* the ALPHA lookup table is right behind the INDEX lookup table. */
124 return host->pmecc_rom_base + host->pmecc_index_table_offset +
125 table_size * sizeof(int16_t);
126}
127
128static void pmecc_gen_syndrome(struct mtd_info *mtd, int sector)
129{
130 struct nand_chip *nand_chip = mtd->priv;
131 struct atmel_nand_host *host = nand_chip->priv;
132 int i;
133 uint32_t value;
134
135 /* Fill odd syndromes */
136 for (i = 0; i < host->pmecc_corr_cap; i++) {
137 value = readl(&host->pmecc->rem_port[sector].rem[i / 2]);
138 if (i & 1)
139 value >>= 16;
140 value &= 0xffff;
141 host->pmecc_partial_syn[(2 * i) + 1] = (int16_t)value;
142 }
143}
144
145static void pmecc_substitute(struct mtd_info *mtd)
146{
147 struct nand_chip *nand_chip = mtd->priv;
148 struct atmel_nand_host *host = nand_chip->priv;
149 int16_t __iomem *alpha_to = host->pmecc_alpha_to;
150 int16_t __iomem *index_of = host->pmecc_index_of;
151 int16_t *partial_syn = host->pmecc_partial_syn;
152 const int cap = host->pmecc_corr_cap;
153 int16_t *si;
154 int i, j;
155
156 /* si[] is a table that holds the current syndrome value,
157 * an element of that table belongs to the field
158 */
159 si = host->pmecc_si;
160
161 memset(&si[1], 0, sizeof(int16_t) * (2 * cap - 1));
162
163 /* Computation 2t syndromes based on S(x) */
164 /* Odd syndromes */
165 for (i = 1; i < 2 * cap; i += 2) {
166 for (j = 0; j < host->pmecc_degree; j++) {
167 if (partial_syn[i] & (0x1 << j))
168 si[i] = readw(alpha_to + i * j) ^ si[i];
169 }
170 }
171 /* Even syndrome = (Odd syndrome) ** 2 */
172 for (i = 2, j = 1; j <= cap; i = ++j << 1) {
173 if (si[j] == 0) {
174 si[i] = 0;
175 } else {
176 int16_t tmp;
177
178 tmp = readw(index_of + si[j]);
179 tmp = (tmp * 2) % host->pmecc_cw_len;
180 si[i] = readw(alpha_to + tmp);
181 }
182 }
183}
184
185/*
186 * This function defines a Berlekamp iterative procedure for
187 * finding the value of the error location polynomial.
188 * The input is si[], initialize by pmecc_substitute().
189 * The output is smu[][].
190 *
191 * This function is written according to chip datasheet Chapter:
192 * Find the Error Location Polynomial Sigma(x) of Section:
193 * Programmable Multibit ECC Control (PMECC).
194 */
195static void pmecc_get_sigma(struct mtd_info *mtd)
196{
197 struct nand_chip *nand_chip = mtd->priv;
198 struct atmel_nand_host *host = nand_chip->priv;
199
200 int16_t *lmu = host->pmecc_lmu;
201 int16_t *si = host->pmecc_si;
202 int *mu = host->pmecc_mu;
203 int *dmu = host->pmecc_dmu; /* Discrepancy */
204 int *delta = host->pmecc_delta; /* Delta order */
205 int cw_len = host->pmecc_cw_len;
206 const int16_t cap = host->pmecc_corr_cap;
207 const int num = 2 * cap + 1;
208 int16_t __iomem *index_of = host->pmecc_index_of;
209 int16_t __iomem *alpha_to = host->pmecc_alpha_to;
210 int i, j, k;
211 uint32_t dmu_0_count, tmp;
212 int16_t *smu = host->pmecc_smu;
213
214 /* index of largest delta */
215 int ro;
216 int largest;
217 int diff;
218
219 /* Init the Sigma(x) */
220 memset(smu, 0, sizeof(int16_t) * ARRAY_SIZE(smu));
221
222 dmu_0_count = 0;
223
224 /* First Row */
225
226 /* Mu */
227 mu[0] = -1;
228
229 smu[0] = 1;
230
231 /* discrepancy set to 1 */
232 dmu[0] = 1;
233 /* polynom order set to 0 */
234 lmu[0] = 0;
235 /* delta[0] = (mu[0] * 2 - lmu[0]) >> 1; */
236 delta[0] = -1;
237
238 /* Second Row */
239
240 /* Mu */
241 mu[1] = 0;
242 /* Sigma(x) set to 1 */
243 smu[num] = 1;
244
245 /* discrepancy set to S1 */
246 dmu[1] = si[1];
247
248 /* polynom order set to 0 */
249 lmu[1] = 0;
250
251 /* delta[1] = (mu[1] * 2 - lmu[1]) >> 1; */
252 delta[1] = 0;
253
254 for (i = 1; i <= cap; i++) {
255 mu[i + 1] = i << 1;
256 /* Begin Computing Sigma (Mu+1) and L(mu) */
257 /* check if discrepancy is set to 0 */
258 if (dmu[i] == 0) {
259 dmu_0_count++;
260
261 tmp = ((cap - (lmu[i] >> 1) - 1) / 2);
262 if ((cap - (lmu[i] >> 1) - 1) & 0x1)
263 tmp += 2;
264 else
265 tmp += 1;
266
267 if (dmu_0_count == tmp) {
268 for (j = 0; j <= (lmu[i] >> 1) + 1; j++)
269 smu[(cap + 1) * num + j] =
270 smu[i * num + j];
271
272 lmu[cap + 1] = lmu[i];
273 return;
274 }
275
276 /* copy polynom */
277 for (j = 0; j <= lmu[i] >> 1; j++)
278 smu[(i + 1) * num + j] = smu[i * num + j];
279
280 /* copy previous polynom order to the next */
281 lmu[i + 1] = lmu[i];
282 } else {
283 ro = 0;
284 largest = -1;
285 /* find largest delta with dmu != 0 */
286 for (j = 0; j < i; j++) {
287 if ((dmu[j]) && (delta[j] > largest)) {
288 largest = delta[j];
289 ro = j;
290 }
291 }
292
293 /* compute difference */
294 diff = (mu[i] - mu[ro]);
295
296 /* Compute degree of the new smu polynomial */
297 if ((lmu[i] >> 1) > ((lmu[ro] >> 1) + diff))
298 lmu[i + 1] = lmu[i];
299 else
300 lmu[i + 1] = ((lmu[ro] >> 1) + diff) * 2;
301
302 /* Init smu[i+1] with 0 */
303 for (k = 0; k < num; k++)
304 smu[(i + 1) * num + k] = 0;
305
306 /* Compute smu[i+1] */
307 for (k = 0; k <= lmu[ro] >> 1; k++) {
308 int16_t a, b, c;
309
310 if (!(smu[ro * num + k] && dmu[i]))
311 continue;
312 a = readw(index_of + dmu[i]);
313 b = readw(index_of + dmu[ro]);
314 c = readw(index_of + smu[ro * num + k]);
315 tmp = a + (cw_len - b) + c;
316 a = readw(alpha_to + tmp % cw_len);
317 smu[(i + 1) * num + (k + diff)] = a;
318 }
319
320 for (k = 0; k <= lmu[i] >> 1; k++)
321 smu[(i + 1) * num + k] ^= smu[i * num + k];
322 }
323
324 /* End Computing Sigma (Mu+1) and L(mu) */
325 /* In either case compute delta */
326 delta[i + 1] = (mu[i + 1] * 2 - lmu[i + 1]) >> 1;
327
328 /* Do not compute discrepancy for the last iteration */
329 if (i >= cap)
330 continue;
331
332 for (k = 0; k <= (lmu[i + 1] >> 1); k++) {
333 tmp = 2 * (i - 1);
334 if (k == 0) {
335 dmu[i + 1] = si[tmp + 3];
336 } else if (smu[(i + 1) * num + k] && si[tmp + 3 - k]) {
337 int16_t a, b, c;
338 a = readw(index_of +
339 smu[(i + 1) * num + k]);
340 b = si[2 * (i - 1) + 3 - k];
341 c = readw(index_of + b);
342 tmp = a + c;
343 tmp %= cw_len;
344 dmu[i + 1] = readw(alpha_to + tmp) ^
345 dmu[i + 1];
346 }
347 }
348 }
349}
350
351static int pmecc_err_location(struct mtd_info *mtd)
352{
353 struct nand_chip *nand_chip = mtd->priv;
354 struct atmel_nand_host *host = nand_chip->priv;
355 const int cap = host->pmecc_corr_cap;
356 const int num = 2 * cap + 1;
357 int sector_size = host->pmecc_sector_size;
358 int err_nbr = 0; /* number of error */
359 int roots_nbr; /* number of roots */
360 int i;
361 uint32_t val;
362 int16_t *smu = host->pmecc_smu;
363 int timeout = PMECC_MAX_TIMEOUT_US;
364
365 writel(PMERRLOC_DISABLE, &host->pmerrloc->eldis);
366
367 for (i = 0; i <= host->pmecc_lmu[cap + 1] >> 1; i++) {
368 writel(smu[(cap + 1) * num + i], &host->pmerrloc->sigma[i]);
369 err_nbr++;
370 }
371
372 val = PMERRLOC_ELCFG_NUM_ERRORS(err_nbr - 1);
373 if (sector_size == 1024)
374 val |= PMERRLOC_ELCFG_SECTOR_1024;
375
376 writel(val, &host->pmerrloc->elcfg);
377 writel(sector_size * 8 + host->pmecc_degree * cap,
378 &host->pmerrloc->elen);
379
380 while (--timeout) {
381 if (readl(&host->pmerrloc->elisr) & PMERRLOC_CALC_DONE)
382 break;
383 WATCHDOG_RESET();
384 udelay(1);
385 }
386
387 if (!timeout) {
388 printk(KERN_ERR "atmel_nand : Timeout to calculate PMECC error location\n");
389 return -1;
390 }
391
392 roots_nbr = (readl(&host->pmerrloc->elisr) & PMERRLOC_ERR_NUM_MASK)
393 >> 8;
394 /* Number of roots == degree of smu hence <= cap */
395 if (roots_nbr == host->pmecc_lmu[cap + 1] >> 1)
396 return err_nbr - 1;
397
398 /* Number of roots does not match the degree of smu
399 * unable to correct error */
400 return -1;
401}
402
403static void pmecc_correct_data(struct mtd_info *mtd, uint8_t *buf, uint8_t *ecc,
404 int sector_num, int extra_bytes, int err_nbr)
405{
406 struct nand_chip *nand_chip = mtd->priv;
407 struct atmel_nand_host *host = nand_chip->priv;
408 int i = 0;
409 int byte_pos, bit_pos, sector_size, pos;
410 uint32_t tmp;
411 uint8_t err_byte;
412
413 sector_size = host->pmecc_sector_size;
414
415 while (err_nbr) {
416 tmp = readl(&host->pmerrloc->el[i]) - 1;
417 byte_pos = tmp / 8;
418 bit_pos = tmp % 8;
419
420 if (byte_pos >= (sector_size + extra_bytes))
421 BUG(); /* should never happen */
422
423 if (byte_pos < sector_size) {
424 err_byte = *(buf + byte_pos);
425 *(buf + byte_pos) ^= (1 << bit_pos);
426
427 pos = sector_num * host->pmecc_sector_size + byte_pos;
428 printk(KERN_INFO "Bit flip in data area, byte_pos: %d, bit_pos: %d, 0x%02x -> 0x%02x\n",
429 pos, bit_pos, err_byte, *(buf + byte_pos));
430 } else {
431 /* Bit flip in OOB area */
432 tmp = sector_num * host->pmecc_bytes_per_sector
433 + (byte_pos - sector_size);
434 err_byte = ecc[tmp];
435 ecc[tmp] ^= (1 << bit_pos);
436
437 pos = tmp + nand_chip->ecc.layout->eccpos[0];
438 printk(KERN_INFO "Bit flip in OOB, oob_byte_pos: %d, bit_pos: %d, 0x%02x -> 0x%02x\n",
439 pos, bit_pos, err_byte, ecc[tmp]);
440 }
441
442 i++;
443 err_nbr--;
444 }
445
446 return;
447}
448
449static int pmecc_correction(struct mtd_info *mtd, u32 pmecc_stat, uint8_t *buf,
450 u8 *ecc)
451{
452 struct nand_chip *nand_chip = mtd->priv;
453 struct atmel_nand_host *host = nand_chip->priv;
454 int i, err_nbr, eccbytes;
455 uint8_t *buf_pos;
456
457 eccbytes = nand_chip->ecc.bytes;
458 for (i = 0; i < eccbytes; i++)
459 if (ecc[i] != 0xff)
460 goto normal_check;
461 /* Erased page, return OK */
462 return 0;
463
464normal_check:
465 for (i = 0; i < host->pmecc_sector_number; i++) {
466 err_nbr = 0;
467 if (pmecc_stat & 0x1) {
468 buf_pos = buf + i * host->pmecc_sector_size;
469
470 pmecc_gen_syndrome(mtd, i);
471 pmecc_substitute(mtd);
472 pmecc_get_sigma(mtd);
473
474 err_nbr = pmecc_err_location(mtd);
475 if (err_nbr == -1) {
476 printk(KERN_ERR "PMECC: Too many errors\n");
477 mtd->ecc_stats.failed++;
478 return -EIO;
479 } else {
480 pmecc_correct_data(mtd, buf_pos, ecc, i,
481 host->pmecc_bytes_per_sector, err_nbr);
482 mtd->ecc_stats.corrected += err_nbr;
483 }
484 }
485 pmecc_stat >>= 1;
486 }
487
488 return 0;
489}
490
491static int atmel_nand_pmecc_read_page(struct mtd_info *mtd,
492 struct nand_chip *chip, uint8_t *buf, int page)
493{
494 struct atmel_nand_host *host = chip->priv;
495 int eccsize = chip->ecc.size;
496 uint8_t *oob = chip->oob_poi;
497 uint32_t *eccpos = chip->ecc.layout->eccpos;
498 uint32_t stat;
499 int timeout = PMECC_MAX_TIMEOUT_US;
500
501 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_RST);
502 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_DISABLE);
503 pmecc_writel(host->pmecc, cfg, ((pmecc_readl(host->pmecc, cfg))
504 & ~PMECC_CFG_WRITE_OP) | PMECC_CFG_AUTO_ENABLE);
505
506 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_ENABLE);
507 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_DATA);
508
509 chip->read_buf(mtd, buf, eccsize);
510 chip->read_buf(mtd, oob, mtd->oobsize);
511
512 while (--timeout) {
513 if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY))
514 break;
515 WATCHDOG_RESET();
516 udelay(1);
517 }
518
519 if (!timeout) {
520 printk(KERN_ERR "atmel_nand : Timeout to read PMECC page\n");
521 return -1;
522 }
523
524 stat = pmecc_readl(host->pmecc, isr);
525 if (stat != 0)
526 if (pmecc_correction(mtd, stat, buf, &oob[eccpos[0]]) != 0)
527 return -EIO;
528
529 return 0;
530}
531
532static void atmel_nand_pmecc_write_page(struct mtd_info *mtd,
533 struct nand_chip *chip, const uint8_t *buf)
534{
535 struct atmel_nand_host *host = chip->priv;
536 uint32_t *eccpos = chip->ecc.layout->eccpos;
537 int i, j;
538 int timeout = PMECC_MAX_TIMEOUT_US;
539
540 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_RST);
541 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_DISABLE);
542
543 pmecc_writel(host->pmecc, cfg, (pmecc_readl(host->pmecc, cfg) |
544 PMECC_CFG_WRITE_OP) & ~PMECC_CFG_AUTO_ENABLE);
545
546 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_ENABLE);
547 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_DATA);
548
549 chip->write_buf(mtd, (u8 *)buf, mtd->writesize);
550
551 while (--timeout) {
552 if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY))
553 break;
554 WATCHDOG_RESET();
555 udelay(1);
556 }
557
558 if (!timeout) {
559 printk(KERN_ERR "atmel_nand : Timeout to read PMECC status, fail to write PMECC in oob\n");
560 return;
561 }
562
563 for (i = 0; i < host->pmecc_sector_number; i++) {
564 for (j = 0; j < host->pmecc_bytes_per_sector; j++) {
565 int pos;
566
567 pos = i * host->pmecc_bytes_per_sector + j;
568 chip->oob_poi[eccpos[pos]] =
569 readb(&host->pmecc->ecc_port[i].ecc[j]);
570 }
571 }
572 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
573}
574
575static void atmel_pmecc_core_init(struct mtd_info *mtd)
576{
577 struct nand_chip *nand_chip = mtd->priv;
578 struct atmel_nand_host *host = nand_chip->priv;
579 uint32_t val = 0;
580 struct nand_ecclayout *ecc_layout;
581
582 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_RST);
583 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_DISABLE);
584
585 switch (host->pmecc_corr_cap) {
586 case 2:
587 val = PMECC_CFG_BCH_ERR2;
588 break;
589 case 4:
590 val = PMECC_CFG_BCH_ERR4;
591 break;
592 case 8:
593 val = PMECC_CFG_BCH_ERR8;
594 break;
595 case 12:
596 val = PMECC_CFG_BCH_ERR12;
597 break;
598 case 24:
599 val = PMECC_CFG_BCH_ERR24;
600 break;
601 }
602
603 if (host->pmecc_sector_size == 512)
604 val |= PMECC_CFG_SECTOR512;
605 else if (host->pmecc_sector_size == 1024)
606 val |= PMECC_CFG_SECTOR1024;
607
608 switch (host->pmecc_sector_number) {
609 case 1:
610 val |= PMECC_CFG_PAGE_1SECTOR;
611 break;
612 case 2:
613 val |= PMECC_CFG_PAGE_2SECTORS;
614 break;
615 case 4:
616 val |= PMECC_CFG_PAGE_4SECTORS;
617 break;
618 case 8:
619 val |= PMECC_CFG_PAGE_8SECTORS;
620 break;
621 }
622
623 val |= (PMECC_CFG_READ_OP | PMECC_CFG_SPARE_DISABLE
624 | PMECC_CFG_AUTO_DISABLE);
625 pmecc_writel(host->pmecc, cfg, val);
626
627 ecc_layout = nand_chip->ecc.layout;
628 pmecc_writel(host->pmecc, sarea, mtd->oobsize - 1);
629 pmecc_writel(host->pmecc, saddr, ecc_layout->eccpos[0]);
630 pmecc_writel(host->pmecc, eaddr,
631 ecc_layout->eccpos[ecc_layout->eccbytes - 1]);
632 /* See datasheet about PMECC Clock Control Register */
633 pmecc_writel(host->pmecc, clk, PMECC_CLK_133MHZ);
634 pmecc_writel(host->pmecc, idr, 0xff);
635 pmecc_writel(host->pmecc, ctrl, PMECC_CTRL_ENABLE);
636}
637
638static int atmel_pmecc_nand_init_params(struct nand_chip *nand,
639 struct mtd_info *mtd)
640{
641 struct atmel_nand_host *host;
642 int cap, sector_size;
643
644 host = nand->priv = &pmecc_host;
645
646 nand->ecc.mode = NAND_ECC_HW;
647 nand->ecc.calculate = NULL;
648 nand->ecc.correct = NULL;
649 nand->ecc.hwctl = NULL;
650
651 cap = host->pmecc_corr_cap = CONFIG_PMECC_CAP;
652 sector_size = host->pmecc_sector_size = CONFIG_PMECC_SECTOR_SIZE;
653 host->pmecc_index_table_offset = CONFIG_PMECC_INDEX_TABLE_OFFSET;
654
655 printk(KERN_INFO "Initialize PMECC params, cap: %d, sector: %d\n",
656 cap, sector_size);
657
658 host->pmecc = (struct pmecc_regs __iomem *) ATMEL_BASE_PMECC;
659 host->pmerrloc = (struct pmecc_errloc_regs __iomem *)
660 ATMEL_BASE_PMERRLOC;
661 host->pmecc_rom_base = (void __iomem *) ATMEL_BASE_ROM;
662
663 /* ECC is calculated for the whole page (1 step) */
664 nand->ecc.size = mtd->writesize;
665
666 /* set ECC page size and oob layout */
667 switch (mtd->writesize) {
668 case 2048:
669 case 4096:
670 host->pmecc_degree = PMECC_GF_DIMENSION_13;
671 host->pmecc_cw_len = (1 << host->pmecc_degree) - 1;
672 host->pmecc_sector_number = mtd->writesize / sector_size;
673 host->pmecc_bytes_per_sector = pmecc_get_ecc_bytes(
674 cap, sector_size);
675 host->pmecc_alpha_to = pmecc_get_alpha_to(host);
676 host->pmecc_index_of = host->pmecc_rom_base +
677 host->pmecc_index_table_offset;
678
679 nand->ecc.steps = 1;
680 nand->ecc.bytes = host->pmecc_bytes_per_sector *
681 host->pmecc_sector_number;
682 if (nand->ecc.bytes > mtd->oobsize - 2) {
683 printk(KERN_ERR "No room for ECC bytes\n");
684 return -EINVAL;
685 }
686 pmecc_config_ecc_layout(&atmel_pmecc_oobinfo,
687 mtd->oobsize,
688 nand->ecc.bytes);
689 nand->ecc.layout = &atmel_pmecc_oobinfo;
690 break;
691 case 512:
692 case 1024:
693 /* TODO */
694 printk(KERN_ERR "Unsupported page size for PMECC, use Software ECC\n");
695 default:
696 /* page size not handled by HW ECC */
697 /* switching back to soft ECC */
698 nand->ecc.mode = NAND_ECC_SOFT;
699 nand->ecc.read_page = NULL;
700 nand->ecc.postpad = 0;
701 nand->ecc.prepad = 0;
702 nand->ecc.bytes = 0;
703 return 0;
704 }
705
706 nand->ecc.read_page = atmel_nand_pmecc_read_page;
707 nand->ecc.write_page = atmel_nand_pmecc_write_page;
708
709 atmel_pmecc_core_init(mtd);
710
711 return 0;
712}
713
714#else
715
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +0500716/* oob layout for large page size
717 * bad block info is on bytes 0 and 1
718 * the bytes have to be consecutives to avoid
719 * several NAND_CMD_RNDOUT during read
720 */
721static struct nand_ecclayout atmel_oobinfo_large = {
722 .eccbytes = 4,
723 .eccpos = {60, 61, 62, 63},
724 .oobfree = {
725 {2, 58}
726 },
727};
728
729/* oob layout for small page size
730 * bad block info is on bytes 4 and 5
731 * the bytes have to be consecutives to avoid
732 * several NAND_CMD_RNDOUT during read
733 */
734static struct nand_ecclayout atmel_oobinfo_small = {
735 .eccbytes = 4,
736 .eccpos = {0, 1, 2, 3},
737 .oobfree = {
738 {6, 10}
739 },
740};
741
742/*
743 * Calculate HW ECC
744 *
745 * function called after a write
746 *
747 * mtd: MTD block structure
748 * dat: raw data (unused)
749 * ecc_code: buffer for ECC
750 */
751static int atmel_nand_calculate(struct mtd_info *mtd,
752 const u_char *dat, unsigned char *ecc_code)
753{
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +0500754 unsigned int ecc_value;
755
756 /* get the first 2 ECC bytes */
757 ecc_value = ecc_readl(CONFIG_SYS_NAND_ECC_BASE, PR);
758
759 ecc_code[0] = ecc_value & 0xFF;
760 ecc_code[1] = (ecc_value >> 8) & 0xFF;
761
762 /* get the last 2 ECC bytes */
763 ecc_value = ecc_readl(CONFIG_SYS_NAND_ECC_BASE, NPR) & ATMEL_ECC_NPARITY;
764
765 ecc_code[2] = ecc_value & 0xFF;
766 ecc_code[3] = (ecc_value >> 8) & 0xFF;
767
768 return 0;
769}
770
771/*
772 * HW ECC read page function
773 *
774 * mtd: mtd info structure
775 * chip: nand chip info structure
776 * buf: buffer to store read data
777 */
778static int atmel_nand_read_page(struct mtd_info *mtd,
779 struct nand_chip *chip, uint8_t *buf, int page)
780{
781 int eccsize = chip->ecc.size;
782 int eccbytes = chip->ecc.bytes;
783 uint32_t *eccpos = chip->ecc.layout->eccpos;
784 uint8_t *p = buf;
785 uint8_t *oob = chip->oob_poi;
786 uint8_t *ecc_pos;
787 int stat;
788
789 /* read the page */
790 chip->read_buf(mtd, p, eccsize);
791
792 /* move to ECC position if needed */
793 if (eccpos[0] != 0) {
794 /* This only works on large pages
795 * because the ECC controller waits for
796 * NAND_CMD_RNDOUTSTART after the
797 * NAND_CMD_RNDOUT.
798 * anyway, for small pages, the eccpos[0] == 0
799 */
800 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
801 mtd->writesize + eccpos[0], -1);
802 }
803
804 /* the ECC controller needs to read the ECC just after the data */
805 ecc_pos = oob + eccpos[0];
806 chip->read_buf(mtd, ecc_pos, eccbytes);
807
808 /* check if there's an error */
809 stat = chip->ecc.correct(mtd, p, oob, NULL);
810
811 if (stat < 0)
812 mtd->ecc_stats.failed++;
813 else
814 mtd->ecc_stats.corrected += stat;
815
816 /* get back to oob start (end of page) */
817 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
818
819 /* read the oob */
820 chip->read_buf(mtd, oob, mtd->oobsize);
821
822 return 0;
823}
824
825/*
826 * HW ECC Correction
827 *
828 * function called after a read
829 *
830 * mtd: MTD block structure
831 * dat: raw data read from the chip
832 * read_ecc: ECC from the chip (unused)
833 * isnull: unused
834 *
835 * Detect and correct a 1 bit error for a page
836 */
837static int atmel_nand_correct(struct mtd_info *mtd, u_char *dat,
838 u_char *read_ecc, u_char *isnull)
839{
840 struct nand_chip *nand_chip = mtd->priv;
Wu, Joshae797942012-08-23 00:05:35 +0000841 unsigned int ecc_status;
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +0500842 unsigned int ecc_word, ecc_bit;
843
844 /* get the status from the Status Register */
845 ecc_status = ecc_readl(CONFIG_SYS_NAND_ECC_BASE, SR);
846
847 /* if there's no error */
848 if (likely(!(ecc_status & ATMEL_ECC_RECERR)))
849 return 0;
850
851 /* get error bit offset (4 bits) */
852 ecc_bit = ecc_readl(CONFIG_SYS_NAND_ECC_BASE, PR) & ATMEL_ECC_BITADDR;
853 /* get word address (12 bits) */
854 ecc_word = ecc_readl(CONFIG_SYS_NAND_ECC_BASE, PR) & ATMEL_ECC_WORDADDR;
855 ecc_word >>= 4;
856
857 /* if there are multiple errors */
858 if (ecc_status & ATMEL_ECC_MULERR) {
859 /* check if it is a freshly erased block
860 * (filled with 0xff) */
861 if ((ecc_bit == ATMEL_ECC_BITADDR)
862 && (ecc_word == (ATMEL_ECC_WORDADDR >> 4))) {
863 /* the block has just been erased, return OK */
864 return 0;
865 }
866 /* it doesn't seems to be a freshly
867 * erased block.
868 * We can't correct so many errors */
869 printk(KERN_WARNING "atmel_nand : multiple errors detected."
870 " Unable to correct.\n");
871 return -EIO;
872 }
873
874 /* if there's a single bit error : we can correct it */
875 if (ecc_status & ATMEL_ECC_ECCERR) {
876 /* there's nothing much to do here.
877 * the bit error is on the ECC itself.
878 */
879 printk(KERN_WARNING "atmel_nand : one bit error on ECC code."
880 " Nothing to correct\n");
881 return 0;
882 }
883
884 printk(KERN_WARNING "atmel_nand : one bit error on data."
885 " (word offset in the page :"
886 " 0x%x bit offset : 0x%x)\n",
887 ecc_word, ecc_bit);
888 /* correct the error */
889 if (nand_chip->options & NAND_BUSWIDTH_16) {
890 /* 16 bits words */
891 ((unsigned short *) dat)[ecc_word] ^= (1 << ecc_bit);
892 } else {
893 /* 8 bits words */
894 dat[ecc_word] ^= (1 << ecc_bit);
895 }
896 printk(KERN_WARNING "atmel_nand : error corrected\n");
897 return 1;
898}
899
900/*
901 * Enable HW ECC : unused on most chips
902 */
903static void atmel_nand_hwctl(struct mtd_info *mtd, int mode)
904{
905}
Wu, Joshfe2185e2012-08-23 00:05:34 +0000906
907int atmel_hwecc_nand_init_param(struct nand_chip *nand, struct mtd_info *mtd)
908{
909 nand->ecc.mode = NAND_ECC_HW;
910 nand->ecc.calculate = atmel_nand_calculate;
911 nand->ecc.correct = atmel_nand_correct;
912 nand->ecc.hwctl = atmel_nand_hwctl;
913 nand->ecc.read_page = atmel_nand_read_page;
914 nand->ecc.bytes = 4;
915
916 if (nand->ecc.mode == NAND_ECC_HW) {
917 /* ECC is calculated for the whole page (1 step) */
918 nand->ecc.size = mtd->writesize;
919
920 /* set ECC page size and oob layout */
921 switch (mtd->writesize) {
922 case 512:
923 nand->ecc.layout = &atmel_oobinfo_small;
924 ecc_writel(CONFIG_SYS_NAND_ECC_BASE, MR,
925 ATMEL_ECC_PAGESIZE_528);
926 break;
927 case 1024:
928 nand->ecc.layout = &atmel_oobinfo_large;
929 ecc_writel(CONFIG_SYS_NAND_ECC_BASE, MR,
930 ATMEL_ECC_PAGESIZE_1056);
931 break;
932 case 2048:
933 nand->ecc.layout = &atmel_oobinfo_large;
934 ecc_writel(CONFIG_SYS_NAND_ECC_BASE, MR,
935 ATMEL_ECC_PAGESIZE_2112);
936 break;
937 case 4096:
938 nand->ecc.layout = &atmel_oobinfo_large;
939 ecc_writel(CONFIG_SYS_NAND_ECC_BASE, MR,
940 ATMEL_ECC_PAGESIZE_4224);
941 break;
942 default:
943 /* page size not handled by HW ECC */
944 /* switching back to soft ECC */
945 nand->ecc.mode = NAND_ECC_SOFT;
946 nand->ecc.calculate = NULL;
947 nand->ecc.correct = NULL;
948 nand->ecc.hwctl = NULL;
949 nand->ecc.read_page = NULL;
950 nand->ecc.postpad = 0;
951 nand->ecc.prepad = 0;
952 nand->ecc.bytes = 0;
953 break;
954 }
955 }
956
957 return 0;
958}
959
Wu, Joshbdfd59a2012-08-23 00:05:36 +0000960#endif /* CONFIG_ATMEL_NAND_HW_PMECC */
961
962#endif /* CONFIG_ATMEL_NAND_HWECC */
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +0500963
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100964static void at91_nand_hwcontrol(struct mtd_info *mtd,
Sergey Lapin10794322008-10-31 12:28:43 +0100965 int cmd, unsigned int ctrl)
966{
967 struct nand_chip *this = mtd->priv;
968
969 if (ctrl & NAND_CTRL_CHANGE) {
970 ulong IO_ADDR_W = (ulong) this->IO_ADDR_W;
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100971 IO_ADDR_W &= ~(CONFIG_SYS_NAND_MASK_ALE
972 | CONFIG_SYS_NAND_MASK_CLE);
Sergey Lapin10794322008-10-31 12:28:43 +0100973
974 if (ctrl & NAND_CLE)
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100975 IO_ADDR_W |= CONFIG_SYS_NAND_MASK_CLE;
Sergey Lapin10794322008-10-31 12:28:43 +0100976 if (ctrl & NAND_ALE)
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100977 IO_ADDR_W |= CONFIG_SYS_NAND_MASK_ALE;
Sergey Lapin10794322008-10-31 12:28:43 +0100978
michael67a490d2011-03-14 21:16:38 +0000979#ifdef CONFIG_SYS_NAND_ENABLE_PIN
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100980 at91_set_gpio_value(CONFIG_SYS_NAND_ENABLE_PIN,
981 !(ctrl & NAND_NCE));
michael67a490d2011-03-14 21:16:38 +0000982#endif
Sergey Lapin10794322008-10-31 12:28:43 +0100983 this->IO_ADDR_W = (void *) IO_ADDR_W;
984 }
985
986 if (cmd != NAND_CMD_NONE)
987 writeb(cmd, this->IO_ADDR_W);
988}
989
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100990#ifdef CONFIG_SYS_NAND_READY_PIN
991static int at91_nand_ready(struct mtd_info *mtd)
Sergey Lapin10794322008-10-31 12:28:43 +0100992{
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100993 return at91_get_gpio_value(CONFIG_SYS_NAND_READY_PIN);
Sergey Lapin10794322008-10-31 12:28:43 +0100994}
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100995#endif
Sergey Lapin10794322008-10-31 12:28:43 +0100996
Wu, Joshfe2185e2012-08-23 00:05:34 +0000997#ifndef CONFIG_SYS_NAND_BASE_LIST
998#define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE }
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +0500999#endif
Wu, Joshfe2185e2012-08-23 00:05:34 +00001000static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
1001static ulong base_addr[CONFIG_SYS_MAX_NAND_DEVICE] = CONFIG_SYS_NAND_BASE_LIST;
1002
1003int atmel_nand_chip_init(int devnum, ulong base_addr)
1004{
1005 int ret;
1006 struct mtd_info *mtd = &nand_info[devnum];
1007 struct nand_chip *nand = &nand_chip[devnum];
1008
1009 mtd->priv = nand;
1010 nand->IO_ADDR_R = nand->IO_ADDR_W = (void __iomem *)base_addr;
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +05001011
Sergey Lapin10794322008-10-31 12:28:43 +01001012 nand->ecc.mode = NAND_ECC_SOFT;
1013#ifdef CONFIG_SYS_NAND_DBW_16
1014 nand->options = NAND_BUSWIDTH_16;
1015#endif
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +01001016 nand->cmd_ctrl = at91_nand_hwcontrol;
1017#ifdef CONFIG_SYS_NAND_READY_PIN
1018 nand->dev_ready = at91_nand_ready;
1019#endif
Sergey Lapin10794322008-10-31 12:28:43 +01001020 nand->chip_delay = 20;
1021
Wu, Joshfe2185e2012-08-23 00:05:34 +00001022 ret = nand_scan_ident(mtd, CONFIG_SYS_NAND_MAX_CHIPS, NULL);
1023 if (ret)
1024 return ret;
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +05001025
1026#ifdef CONFIG_ATMEL_NAND_HWECC
Wu, Joshbdfd59a2012-08-23 00:05:36 +00001027#ifdef CONFIG_ATMEL_NAND_HW_PMECC
1028 ret = atmel_pmecc_nand_init_params(nand, mtd);
1029#else
Wu, Joshfe2185e2012-08-23 00:05:34 +00001030 ret = atmel_hwecc_nand_init_param(nand, mtd);
Wu, Joshbdfd59a2012-08-23 00:05:36 +00001031#endif
Wu, Joshfe2185e2012-08-23 00:05:34 +00001032 if (ret)
1033 return ret;
Nikolay Petukhov7c27b7b2010-03-19 10:49:27 +05001034#endif
1035
Wu, Joshfe2185e2012-08-23 00:05:34 +00001036 ret = nand_scan_tail(mtd);
1037 if (!ret)
1038 nand_register(devnum);
1039
1040 return ret;
1041}
1042
1043void board_nand_init(void)
1044{
1045 int i;
1046 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
1047 if (atmel_nand_chip_init(i, base_addr[i]))
1048 printk(KERN_ERR "atmel_nand: Fail to initialize #%d chip",
1049 i);
Sergey Lapin10794322008-10-31 12:28:43 +01001050}