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