]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/mtd/nand/nand_ecc.c
Merge branch 'mimc200' into next
[karo-tx-uboot.git] / drivers / mtd / nand / nand_ecc.c
1 /*
2  * This file contains an ECC algorithm from Toshiba that detects and
3  * corrects 1 bit errors in a 256 byte block of data.
4  *
5  * drivers/mtd/nand/nand_ecc.c
6  *
7  * Copyright (C) 2000-2004 Steven J. Hill (sjhill@realitydiluted.com)
8  *                         Toshiba America Electronics Components, Inc.
9  *
10  * Copyright (C) 2006 Thomas Gleixner <tglx@linutronix.de>
11  *
12  * This file is free software; you can redistribute it and/or modify it
13  * under the terms of the GNU General Public License as published by the
14  * Free Software Foundation; either version 2 or (at your option) any
15  * later version.
16  *
17  * This file is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20  * for more details.
21  *
22  * You should have received a copy of the GNU General Public License along
23  * with this file; if not, write to the Free Software Foundation, Inc.,
24  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25  *
26  * As a special exception, if other files instantiate templates or use
27  * macros or inline functions from these files, or you compile these
28  * files and link them with other works to produce a work based on these
29  * files, these files do not by themselves cause the resulting work to be
30  * covered by the GNU General Public License. However the source code for
31  * these files must still be made available in accordance with section (3)
32  * of the GNU General Public License.
33  *
34  * This exception does not invalidate any other reasons why a work based on
35  * this file might be covered by the GNU General Public License.
36  */
37
38 #include <common.h>
39
40 /* XXX U-BOOT XXX */
41 #if 0
42 #include <linux/types.h>
43 #include <linux/kernel.h>
44 #include <linux/module.h>
45 #include <linux/mtd/nand_ecc.h>
46 #endif
47
48 #include <asm/errno.h>
49 #include <linux/mtd/mtd.h>
50
51 /*
52  * NAND-SPL has no sofware ECC for now, so don't include nand_calculate_ecc(),
53  * only nand_correct_data() is needed
54  */
55
56 #ifndef CONFIG_NAND_SPL
57 /*
58  * Pre-calculated 256-way 1 byte column parity
59  */
60 static const u_char nand_ecc_precalc_table[] = {
61         0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00,
62         0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
63         0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
64         0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
65         0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
66         0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
67         0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
68         0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
69         0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
70         0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
71         0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
72         0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
73         0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
74         0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
75         0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
76         0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00
77 };
78
79 /**
80  * nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256-byte block
81  * @mtd:        MTD block structure
82  * @dat:        raw data
83  * @ecc_code:   buffer for ECC
84  */
85 int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
86                        u_char *ecc_code)
87 {
88         uint8_t idx, reg1, reg2, reg3, tmp1, tmp2;
89         int i;
90
91         /* Initialize variables */
92         reg1 = reg2 = reg3 = 0;
93
94         /* Build up column parity */
95         for(i = 0; i < 256; i++) {
96                 /* Get CP0 - CP5 from table */
97                 idx = nand_ecc_precalc_table[*dat++];
98                 reg1 ^= (idx & 0x3f);
99
100                 /* All bit XOR = 1 ? */
101                 if (idx & 0x40) {
102                         reg3 ^= (uint8_t) i;
103                         reg2 ^= ~((uint8_t) i);
104                 }
105         }
106
107         /* Create non-inverted ECC code from line parity */
108         tmp1  = (reg3 & 0x80) >> 0; /* B7 -> B7 */
109         tmp1 |= (reg2 & 0x80) >> 1; /* B7 -> B6 */
110         tmp1 |= (reg3 & 0x40) >> 1; /* B6 -> B5 */
111         tmp1 |= (reg2 & 0x40) >> 2; /* B6 -> B4 */
112         tmp1 |= (reg3 & 0x20) >> 2; /* B5 -> B3 */
113         tmp1 |= (reg2 & 0x20) >> 3; /* B5 -> B2 */
114         tmp1 |= (reg3 & 0x10) >> 3; /* B4 -> B1 */
115         tmp1 |= (reg2 & 0x10) >> 4; /* B4 -> B0 */
116
117         tmp2  = (reg3 & 0x08) << 4; /* B3 -> B7 */
118         tmp2 |= (reg2 & 0x08) << 3; /* B3 -> B6 */
119         tmp2 |= (reg3 & 0x04) << 3; /* B2 -> B5 */
120         tmp2 |= (reg2 & 0x04) << 2; /* B2 -> B4 */
121         tmp2 |= (reg3 & 0x02) << 2; /* B1 -> B3 */
122         tmp2 |= (reg2 & 0x02) << 1; /* B1 -> B2 */
123         tmp2 |= (reg3 & 0x01) << 1; /* B0 -> B1 */
124         tmp2 |= (reg2 & 0x01) << 0; /* B7 -> B0 */
125
126         /* Calculate final ECC code */
127 #ifdef CONFIG_MTD_NAND_ECC_SMC
128         ecc_code[0] = ~tmp2;
129         ecc_code[1] = ~tmp1;
130 #else
131         ecc_code[0] = ~tmp1;
132         ecc_code[1] = ~tmp2;
133 #endif
134         ecc_code[2] = ((~reg1) << 2) | 0x03;
135
136         return 0;
137 }
138 /* XXX U-BOOT XXX */
139 #if 0
140 EXPORT_SYMBOL(nand_calculate_ecc);
141 #endif
142 #endif /* CONFIG_NAND_SPL */
143
144 static inline int countbits(uint32_t byte)
145 {
146         int res = 0;
147
148         for (;byte; byte >>= 1)
149                 res += byte & 0x01;
150         return res;
151 }
152
153 /**
154  * nand_correct_data - [NAND Interface] Detect and correct bit error(s)
155  * @mtd:        MTD block structure
156  * @dat:        raw data read from the chip
157  * @read_ecc:   ECC from the chip
158  * @calc_ecc:   the ECC calculated from raw data
159  *
160  * Detect and correct a 1 bit error for 256 byte block
161  */
162 int nand_correct_data(struct mtd_info *mtd, u_char *dat,
163                       u_char *read_ecc, u_char *calc_ecc)
164 {
165         uint8_t s0, s1, s2;
166
167 #ifdef CONFIG_MTD_NAND_ECC_SMC
168         s0 = calc_ecc[0] ^ read_ecc[0];
169         s1 = calc_ecc[1] ^ read_ecc[1];
170         s2 = calc_ecc[2] ^ read_ecc[2];
171 #else
172         s1 = calc_ecc[0] ^ read_ecc[0];
173         s0 = calc_ecc[1] ^ read_ecc[1];
174         s2 = calc_ecc[2] ^ read_ecc[2];
175 #endif
176         if ((s0 | s1 | s2) == 0)
177                 return 0;
178
179         /* Check for a single bit error */
180         if( ((s0 ^ (s0 >> 1)) & 0x55) == 0x55 &&
181             ((s1 ^ (s1 >> 1)) & 0x55) == 0x55 &&
182             ((s2 ^ (s2 >> 1)) & 0x54) == 0x54) {
183
184                 uint32_t byteoffs, bitnum;
185
186                 byteoffs = (s1 << 0) & 0x80;
187                 byteoffs |= (s1 << 1) & 0x40;
188                 byteoffs |= (s1 << 2) & 0x20;
189                 byteoffs |= (s1 << 3) & 0x10;
190
191                 byteoffs |= (s0 >> 4) & 0x08;
192                 byteoffs |= (s0 >> 3) & 0x04;
193                 byteoffs |= (s0 >> 2) & 0x02;
194                 byteoffs |= (s0 >> 1) & 0x01;
195
196                 bitnum = (s2 >> 5) & 0x04;
197                 bitnum |= (s2 >> 4) & 0x02;
198                 bitnum |= (s2 >> 3) & 0x01;
199
200                 dat[byteoffs] ^= (1 << bitnum);
201
202                 return 1;
203         }
204
205         if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1)
206                 return 1;
207
208         return -EBADMSG;
209 }
210
211 /* XXX U-BOOT XXX */
212 #if 0
213 EXPORT_SYMBOL(nand_correct_data);
214 #endif