xref: /OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/nand_ecc.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * This file contains an ECC algorithm from Toshiba that detects and
3*4882a593Smuzhiyun  * corrects 1 bit errors in a 256 byte block of data.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * drivers/mtd/nand/raw/nand_ecc.c
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * Copyright (C) 2000-2004 Steven J. Hill (sjhill@realitydiluted.com)
8*4882a593Smuzhiyun  *                         Toshiba America Electronics Components, Inc.
9*4882a593Smuzhiyun  *
10*4882a593Smuzhiyun  * Copyright (C) 2006 Thomas Gleixner <tglx@linutronix.de>
11*4882a593Smuzhiyun  *
12*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  * As a special exception, if other files instantiate templates or use
15*4882a593Smuzhiyun  * macros or inline functions from these files, or you compile these
16*4882a593Smuzhiyun  * files and link them with other works to produce a work based on these
17*4882a593Smuzhiyun  * files, these files do not by themselves cause the resulting work to be
18*4882a593Smuzhiyun  * covered by the GNU General Public License. However the source code for
19*4882a593Smuzhiyun  * these files must still be made available in accordance with section (3)
20*4882a593Smuzhiyun  * of the GNU General Public License.
21*4882a593Smuzhiyun  *
22*4882a593Smuzhiyun  * This exception does not invalidate any other reasons why a work based on
23*4882a593Smuzhiyun  * this file might be covered by the GNU General Public License.
24*4882a593Smuzhiyun  */
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun #include <common.h>
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun #include <linux/errno.h>
29*4882a593Smuzhiyun #include <linux/mtd/mtd.h>
30*4882a593Smuzhiyun #include <linux/mtd/nand_ecc.h>
31*4882a593Smuzhiyun 
32*4882a593Smuzhiyun /*
33*4882a593Smuzhiyun  * NAND-SPL has no sofware ECC for now, so don't include nand_calculate_ecc(),
34*4882a593Smuzhiyun  * only nand_correct_data() is needed
35*4882a593Smuzhiyun  */
36*4882a593Smuzhiyun 
37*4882a593Smuzhiyun #if !defined(CONFIG_NAND_SPL) || defined(CONFIG_SPL_NAND_SOFTECC)
38*4882a593Smuzhiyun /*
39*4882a593Smuzhiyun  * Pre-calculated 256-way 1 byte column parity
40*4882a593Smuzhiyun  */
41*4882a593Smuzhiyun static const u_char nand_ecc_precalc_table[] = {
42*4882a593Smuzhiyun 	0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00,
43*4882a593Smuzhiyun 	0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
44*4882a593Smuzhiyun 	0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
45*4882a593Smuzhiyun 	0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
46*4882a593Smuzhiyun 	0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
47*4882a593Smuzhiyun 	0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
48*4882a593Smuzhiyun 	0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
49*4882a593Smuzhiyun 	0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
50*4882a593Smuzhiyun 	0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
51*4882a593Smuzhiyun 	0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
52*4882a593Smuzhiyun 	0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
53*4882a593Smuzhiyun 	0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
54*4882a593Smuzhiyun 	0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
55*4882a593Smuzhiyun 	0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
56*4882a593Smuzhiyun 	0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
57*4882a593Smuzhiyun 	0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00
58*4882a593Smuzhiyun };
59*4882a593Smuzhiyun 
60*4882a593Smuzhiyun /**
61*4882a593Smuzhiyun  * nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256-byte block
62*4882a593Smuzhiyun  * @mtd:	MTD block structure
63*4882a593Smuzhiyun  * @dat:	raw data
64*4882a593Smuzhiyun  * @ecc_code:	buffer for ECC
65*4882a593Smuzhiyun  */
nand_calculate_ecc(struct mtd_info * mtd,const u_char * dat,u_char * ecc_code)66*4882a593Smuzhiyun int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
67*4882a593Smuzhiyun 		       u_char *ecc_code)
68*4882a593Smuzhiyun {
69*4882a593Smuzhiyun 	uint8_t idx, reg1, reg2, reg3, tmp1, tmp2;
70*4882a593Smuzhiyun 	int i;
71*4882a593Smuzhiyun 
72*4882a593Smuzhiyun 	/* Initialize variables */
73*4882a593Smuzhiyun 	reg1 = reg2 = reg3 = 0;
74*4882a593Smuzhiyun 
75*4882a593Smuzhiyun 	/* Build up column parity */
76*4882a593Smuzhiyun 	for(i = 0; i < 256; i++) {
77*4882a593Smuzhiyun 		/* Get CP0 - CP5 from table */
78*4882a593Smuzhiyun 		idx = nand_ecc_precalc_table[*dat++];
79*4882a593Smuzhiyun 		reg1 ^= (idx & 0x3f);
80*4882a593Smuzhiyun 
81*4882a593Smuzhiyun 		/* All bit XOR = 1 ? */
82*4882a593Smuzhiyun 		if (idx & 0x40) {
83*4882a593Smuzhiyun 			reg3 ^= (uint8_t) i;
84*4882a593Smuzhiyun 			reg2 ^= ~((uint8_t) i);
85*4882a593Smuzhiyun 		}
86*4882a593Smuzhiyun 	}
87*4882a593Smuzhiyun 
88*4882a593Smuzhiyun 	/* Create non-inverted ECC code from line parity */
89*4882a593Smuzhiyun 	tmp1  = (reg3 & 0x80) >> 0; /* B7 -> B7 */
90*4882a593Smuzhiyun 	tmp1 |= (reg2 & 0x80) >> 1; /* B7 -> B6 */
91*4882a593Smuzhiyun 	tmp1 |= (reg3 & 0x40) >> 1; /* B6 -> B5 */
92*4882a593Smuzhiyun 	tmp1 |= (reg2 & 0x40) >> 2; /* B6 -> B4 */
93*4882a593Smuzhiyun 	tmp1 |= (reg3 & 0x20) >> 2; /* B5 -> B3 */
94*4882a593Smuzhiyun 	tmp1 |= (reg2 & 0x20) >> 3; /* B5 -> B2 */
95*4882a593Smuzhiyun 	tmp1 |= (reg3 & 0x10) >> 3; /* B4 -> B1 */
96*4882a593Smuzhiyun 	tmp1 |= (reg2 & 0x10) >> 4; /* B4 -> B0 */
97*4882a593Smuzhiyun 
98*4882a593Smuzhiyun 	tmp2  = (reg3 & 0x08) << 4; /* B3 -> B7 */
99*4882a593Smuzhiyun 	tmp2 |= (reg2 & 0x08) << 3; /* B3 -> B6 */
100*4882a593Smuzhiyun 	tmp2 |= (reg3 & 0x04) << 3; /* B2 -> B5 */
101*4882a593Smuzhiyun 	tmp2 |= (reg2 & 0x04) << 2; /* B2 -> B4 */
102*4882a593Smuzhiyun 	tmp2 |= (reg3 & 0x02) << 2; /* B1 -> B3 */
103*4882a593Smuzhiyun 	tmp2 |= (reg2 & 0x02) << 1; /* B1 -> B2 */
104*4882a593Smuzhiyun 	tmp2 |= (reg3 & 0x01) << 1; /* B0 -> B1 */
105*4882a593Smuzhiyun 	tmp2 |= (reg2 & 0x01) << 0; /* B7 -> B0 */
106*4882a593Smuzhiyun 
107*4882a593Smuzhiyun 	/* Calculate final ECC code */
108*4882a593Smuzhiyun 	ecc_code[0] = ~tmp1;
109*4882a593Smuzhiyun 	ecc_code[1] = ~tmp2;
110*4882a593Smuzhiyun 	ecc_code[2] = ((~reg1) << 2) | 0x03;
111*4882a593Smuzhiyun 
112*4882a593Smuzhiyun 	return 0;
113*4882a593Smuzhiyun }
114*4882a593Smuzhiyun #endif /* CONFIG_NAND_SPL */
115*4882a593Smuzhiyun 
countbits(uint32_t byte)116*4882a593Smuzhiyun static inline int countbits(uint32_t byte)
117*4882a593Smuzhiyun {
118*4882a593Smuzhiyun 	int res = 0;
119*4882a593Smuzhiyun 
120*4882a593Smuzhiyun 	for (;byte; byte >>= 1)
121*4882a593Smuzhiyun 		res += byte & 0x01;
122*4882a593Smuzhiyun 	return res;
123*4882a593Smuzhiyun }
124*4882a593Smuzhiyun 
125*4882a593Smuzhiyun /**
126*4882a593Smuzhiyun  * nand_correct_data - [NAND Interface] Detect and correct bit error(s)
127*4882a593Smuzhiyun  * @mtd:	MTD block structure
128*4882a593Smuzhiyun  * @dat:	raw data read from the chip
129*4882a593Smuzhiyun  * @read_ecc:	ECC from the chip
130*4882a593Smuzhiyun  * @calc_ecc:	the ECC calculated from raw data
131*4882a593Smuzhiyun  *
132*4882a593Smuzhiyun  * Detect and correct a 1 bit error for 256 byte block
133*4882a593Smuzhiyun  */
nand_correct_data(struct mtd_info * mtd,u_char * dat,u_char * read_ecc,u_char * calc_ecc)134*4882a593Smuzhiyun int nand_correct_data(struct mtd_info *mtd, u_char *dat,
135*4882a593Smuzhiyun 		      u_char *read_ecc, u_char *calc_ecc)
136*4882a593Smuzhiyun {
137*4882a593Smuzhiyun 	uint8_t s0, s1, s2;
138*4882a593Smuzhiyun 
139*4882a593Smuzhiyun 	s1 = calc_ecc[0] ^ read_ecc[0];
140*4882a593Smuzhiyun 	s0 = calc_ecc[1] ^ read_ecc[1];
141*4882a593Smuzhiyun 	s2 = calc_ecc[2] ^ read_ecc[2];
142*4882a593Smuzhiyun 	if ((s0 | s1 | s2) == 0)
143*4882a593Smuzhiyun 		return 0;
144*4882a593Smuzhiyun 
145*4882a593Smuzhiyun 	/* Check for a single bit error */
146*4882a593Smuzhiyun 	if( ((s0 ^ (s0 >> 1)) & 0x55) == 0x55 &&
147*4882a593Smuzhiyun 	    ((s1 ^ (s1 >> 1)) & 0x55) == 0x55 &&
148*4882a593Smuzhiyun 	    ((s2 ^ (s2 >> 1)) & 0x54) == 0x54) {
149*4882a593Smuzhiyun 
150*4882a593Smuzhiyun 		uint32_t byteoffs, bitnum;
151*4882a593Smuzhiyun 
152*4882a593Smuzhiyun 		byteoffs = (s1 << 0) & 0x80;
153*4882a593Smuzhiyun 		byteoffs |= (s1 << 1) & 0x40;
154*4882a593Smuzhiyun 		byteoffs |= (s1 << 2) & 0x20;
155*4882a593Smuzhiyun 		byteoffs |= (s1 << 3) & 0x10;
156*4882a593Smuzhiyun 
157*4882a593Smuzhiyun 		byteoffs |= (s0 >> 4) & 0x08;
158*4882a593Smuzhiyun 		byteoffs |= (s0 >> 3) & 0x04;
159*4882a593Smuzhiyun 		byteoffs |= (s0 >> 2) & 0x02;
160*4882a593Smuzhiyun 		byteoffs |= (s0 >> 1) & 0x01;
161*4882a593Smuzhiyun 
162*4882a593Smuzhiyun 		bitnum = (s2 >> 5) & 0x04;
163*4882a593Smuzhiyun 		bitnum |= (s2 >> 4) & 0x02;
164*4882a593Smuzhiyun 		bitnum |= (s2 >> 3) & 0x01;
165*4882a593Smuzhiyun 
166*4882a593Smuzhiyun 		dat[byteoffs] ^= (1 << bitnum);
167*4882a593Smuzhiyun 
168*4882a593Smuzhiyun 		return 1;
169*4882a593Smuzhiyun 	}
170*4882a593Smuzhiyun 
171*4882a593Smuzhiyun 	if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1)
172*4882a593Smuzhiyun 		return 1;
173*4882a593Smuzhiyun 
174*4882a593Smuzhiyun 	return -EBADMSG;
175*4882a593Smuzhiyun }
176