nand_ecc.c 6.9 KB

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