1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38#include <common.h>
39
40
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#ifdef CONFIG_NAND_NDFC
53#define CONFIG_MTD_NAND_ECC_SMC
54#endif
55
56
57
58
59
60
61#ifndef CONFIG_NAND_SPL
62
63
64
65static const u_char nand_ecc_precalc_table[] = {
66 0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00,
67 0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
68 0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
69 0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
70 0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
71 0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
72 0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
73 0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
74 0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
75 0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
76 0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
77 0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
78 0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
79 0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
80 0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
81 0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00
82};
83
84
85
86
87
88
89
90int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
91 u_char *ecc_code)
92{
93 uint8_t idx, reg1, reg2, reg3, tmp1, tmp2;
94 int i;
95
96
97 reg1 = reg2 = reg3 = 0;
98
99
100 for(i = 0; i < 256; i++) {
101
102 idx = nand_ecc_precalc_table[*dat++];
103 reg1 ^= (idx & 0x3f);
104
105
106 if (idx & 0x40) {
107 reg3 ^= (uint8_t) i;
108 reg2 ^= ~((uint8_t) i);
109 }
110 }
111
112
113 tmp1 = (reg3 & 0x80) >> 0;
114 tmp1 |= (reg2 & 0x80) >> 1;
115 tmp1 |= (reg3 & 0x40) >> 1;
116 tmp1 |= (reg2 & 0x40) >> 2;
117 tmp1 |= (reg3 & 0x20) >> 2;
118 tmp1 |= (reg2 & 0x20) >> 3;
119 tmp1 |= (reg3 & 0x10) >> 3;
120 tmp1 |= (reg2 & 0x10) >> 4;
121
122 tmp2 = (reg3 & 0x08) << 4;
123 tmp2 |= (reg2 & 0x08) << 3;
124 tmp2 |= (reg3 & 0x04) << 3;
125 tmp2 |= (reg2 & 0x04) << 2;
126 tmp2 |= (reg3 & 0x02) << 2;
127 tmp2 |= (reg2 & 0x02) << 1;
128 tmp2 |= (reg3 & 0x01) << 1;
129 tmp2 |= (reg2 & 0x01) << 0;
130
131
132#ifdef CONFIG_MTD_NAND_ECC_SMC
133 ecc_code[0] = ~tmp2;
134 ecc_code[1] = ~tmp1;
135#else
136 ecc_code[0] = ~tmp1;
137 ecc_code[1] = ~tmp2;
138#endif
139 ecc_code[2] = ((~reg1) << 2) | 0x03;
140
141 return 0;
142}
143
144#if 0
145EXPORT_SYMBOL(nand_calculate_ecc);
146#endif
147#endif
148
149static inline int countbits(uint32_t byte)
150{
151 int res = 0;
152
153 for (;byte; byte >>= 1)
154 res += byte & 0x01;
155 return res;
156}
157
158
159
160
161
162
163
164
165
166
167int nand_correct_data(struct mtd_info *mtd, u_char *dat,
168 u_char *read_ecc, u_char *calc_ecc)
169{
170 uint8_t s0, s1, s2;
171
172#ifdef CONFIG_MTD_NAND_ECC_SMC
173 s0 = calc_ecc[0] ^ read_ecc[0];
174 s1 = calc_ecc[1] ^ read_ecc[1];
175 s2 = calc_ecc[2] ^ read_ecc[2];
176#else
177 s1 = calc_ecc[0] ^ read_ecc[0];
178 s0 = calc_ecc[1] ^ read_ecc[1];
179 s2 = calc_ecc[2] ^ read_ecc[2];
180#endif
181 if ((s0 | s1 | s2) == 0)
182 return 0;
183
184
185 if( ((s0 ^ (s0 >> 1)) & 0x55) == 0x55 &&
186 ((s1 ^ (s1 >> 1)) & 0x55) == 0x55 &&
187 ((s2 ^ (s2 >> 1)) & 0x54) == 0x54) {
188
189 uint32_t byteoffs, bitnum;
190
191 byteoffs = (s1 << 0) & 0x80;
192 byteoffs |= (s1 << 1) & 0x40;
193 byteoffs |= (s1 << 2) & 0x20;
194 byteoffs |= (s1 << 3) & 0x10;
195
196 byteoffs |= (s0 >> 4) & 0x08;
197 byteoffs |= (s0 >> 3) & 0x04;
198 byteoffs |= (s0 >> 2) & 0x02;
199 byteoffs |= (s0 >> 1) & 0x01;
200
201 bitnum = (s2 >> 5) & 0x04;
202 bitnum |= (s2 >> 4) & 0x02;
203 bitnum |= (s2 >> 3) & 0x01;
204
205 dat[byteoffs] ^= (1 << bitnum);
206
207 return 1;
208 }
209
210 if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1)
211 return 1;
212
213 return -EBADMSG;
214}
215
216
217#if 0
218EXPORT_SYMBOL(nand_correct_data);
219#endif
220