nand_ecc.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. #include <common.h>
  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. #include<linux/mtd/mtd.h>
  48. /*
  49. * NAND-SPL has no sofware ECC for now, so don't include nand_calculate_ecc(),
  50. * only nand_correct_data() is needed
  51. */
  52. #ifndef CONFIG_NAND_SPL
  53. /*
  54. * Pre-calculated 256-way 1 byte column parity
  55. */
  56. static const u_char nand_ecc_precalc_table[] = {
  57. 0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00,
  58. 0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
  59. 0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
  60. 0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
  61. 0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
  62. 0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
  63. 0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
  64. 0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
  65. 0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30, 0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,
  66. 0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55, 0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,
  67. 0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56, 0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,
  68. 0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33, 0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,
  69. 0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59, 0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,
  70. 0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c, 0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,
  71. 0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f, 0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,
  72. 0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a, 0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00
  73. };
  74. /**
  75. * nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256-byte block
  76. * @mtd: MTD block structure
  77. * @dat: raw data
  78. * @ecc_code: buffer for ECC
  79. */
  80. int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
  81. u_char *ecc_code)
  82. {
  83. uint8_t idx, reg1, reg2, reg3, tmp1, tmp2;
  84. int i;
  85. /* Initialize variables */
  86. reg1 = reg2 = reg3 = 0;
  87. /* Build up column parity */
  88. for(i = 0; i < 256; i++) {
  89. /* Get CP0 - CP5 from table */
  90. idx = nand_ecc_precalc_table[*dat++];
  91. reg1 ^= (idx & 0x3f);
  92. /* All bit XOR = 1 ? */
  93. if (idx & 0x40) {
  94. reg3 ^= (uint8_t) i;
  95. reg2 ^= ~((uint8_t) i);
  96. }
  97. }
  98. /* Create non-inverted ECC code from line parity */
  99. tmp1 = (reg3 & 0x80) >> 0; /* B7 -> B7 */
  100. tmp1 |= (reg2 & 0x80) >> 1; /* B7 -> B6 */
  101. tmp1 |= (reg3 & 0x40) >> 1; /* B6 -> B5 */
  102. tmp1 |= (reg2 & 0x40) >> 2; /* B6 -> B4 */
  103. tmp1 |= (reg3 & 0x20) >> 2; /* B5 -> B3 */
  104. tmp1 |= (reg2 & 0x20) >> 3; /* B5 -> B2 */
  105. tmp1 |= (reg3 & 0x10) >> 3; /* B4 -> B1 */
  106. tmp1 |= (reg2 & 0x10) >> 4; /* B4 -> B0 */
  107. tmp2 = (reg3 & 0x08) << 4; /* B3 -> B7 */
  108. tmp2 |= (reg2 & 0x08) << 3; /* B3 -> B6 */
  109. tmp2 |= (reg3 & 0x04) << 3; /* B2 -> B5 */
  110. tmp2 |= (reg2 & 0x04) << 2; /* B2 -> B4 */
  111. tmp2 |= (reg3 & 0x02) << 2; /* B1 -> B3 */
  112. tmp2 |= (reg2 & 0x02) << 1; /* B1 -> B2 */
  113. tmp2 |= (reg3 & 0x01) << 1; /* B0 -> B1 */
  114. tmp2 |= (reg2 & 0x01) << 0; /* B7 -> B0 */
  115. /* Calculate final ECC code */
  116. #ifdef CONFIG_MTD_NAND_ECC_SMC
  117. ecc_code[0] = ~tmp2;
  118. ecc_code[1] = ~tmp1;
  119. #else
  120. ecc_code[0] = ~tmp1;
  121. ecc_code[1] = ~tmp2;
  122. #endif
  123. ecc_code[2] = ((~reg1) << 2) | 0x03;
  124. return 0;
  125. }
  126. /* XXX U-BOOT XXX */
  127. #if 0
  128. EXPORT_SYMBOL(nand_calculate_ecc);
  129. #endif
  130. #endif /* CONFIG_NAND_SPL */
  131. static inline int countbits(uint32_t byte)
  132. {
  133. int res = 0;
  134. for (;byte; byte >>= 1)
  135. res += byte & 0x01;
  136. return res;
  137. }
  138. /**
  139. * nand_correct_data - [NAND Interface] Detect and correct bit error(s)
  140. * @mtd: MTD block structure
  141. * @dat: raw data read from the chip
  142. * @read_ecc: ECC from the chip
  143. * @calc_ecc: the ECC calculated from raw data
  144. *
  145. * Detect and correct a 1 bit error for 256 byte block
  146. */
  147. int nand_correct_data(struct mtd_info *mtd, u_char *dat,
  148. u_char *read_ecc, u_char *calc_ecc)
  149. {
  150. uint8_t s0, s1, s2;
  151. #ifdef CONFIG_MTD_NAND_ECC_SMC
  152. s0 = calc_ecc[0] ^ read_ecc[0];
  153. s1 = calc_ecc[1] ^ read_ecc[1];
  154. s2 = calc_ecc[2] ^ read_ecc[2];
  155. #else
  156. s1 = calc_ecc[0] ^ read_ecc[0];
  157. s0 = calc_ecc[1] ^ read_ecc[1];
  158. s2 = calc_ecc[2] ^ read_ecc[2];
  159. #endif
  160. if ((s0 | s1 | s2) == 0)
  161. return 0;
  162. /* Check for a single bit error */
  163. if( ((s0 ^ (s0 >> 1)) & 0x55) == 0x55 &&
  164. ((s1 ^ (s1 >> 1)) & 0x55) == 0x55 &&
  165. ((s2 ^ (s2 >> 1)) & 0x54) == 0x54) {
  166. uint32_t byteoffs, bitnum;
  167. byteoffs = (s1 << 0) & 0x80;
  168. byteoffs |= (s1 << 1) & 0x40;
  169. byteoffs |= (s1 << 2) & 0x20;
  170. byteoffs |= (s1 << 3) & 0x10;
  171. byteoffs |= (s0 >> 4) & 0x08;
  172. byteoffs |= (s0 >> 3) & 0x04;
  173. byteoffs |= (s0 >> 2) & 0x02;
  174. byteoffs |= (s0 >> 1) & 0x01;
  175. bitnum = (s2 >> 5) & 0x04;
  176. bitnum |= (s2 >> 4) & 0x02;
  177. bitnum |= (s2 >> 3) & 0x01;
  178. dat[byteoffs] ^= (1 << bitnum);
  179. return 1;
  180. }
  181. if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1)
  182. return 1;
  183. return -1;
  184. }
  185. /* XXX U-BOOT XXX */
  186. #if 0
  187. EXPORT_SYMBOL(nand_correct_data);
  188. #endif