docecc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ECC algorithm for M-systems disk on chip. We use the excellent Reed
  3.  * Solmon code of Phil Karn (karn@ka9q.ampr.org) available under the
  4.  * GNU GPL License. The rest is simply to convert the disk on chip
  5.  * syndrom into a standard syndom.
  6.  *
  7.  * Author: Fabrice Bellard (fabrice.bellard@netgem.com) 
  8.  * Copyright (C) 2000 Netgem S.A.
  9.  *
  10.  * $Id: docecc.c,v 1.4 2001/10/02 15:05:13 dwmw2 Exp $
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  25.  */
  26. #include <linux/kernel.h>
  27. #include <linux/module.h>
  28. #include <asm/errno.h>
  29. #include <asm/io.h>
  30. #include <asm/uaccess.h>
  31. #include <linux/miscdevice.h>
  32. #include <linux/pci.h>
  33. #include <linux/delay.h>
  34. #include <linux/slab.h>
  35. #include <linux/sched.h>
  36. #include <linux/init.h>
  37. #include <linux/types.h>
  38. #include <linux/mtd/compatmac.h> /* for min() in older kernels */
  39. #include <linux/mtd/mtd.h>
  40. #include <linux/mtd/doc2000.h>
  41. /* need to undef it (from asm/termbits.h) */
  42. #undef B0
  43. #define MM 10 /* Symbol size in bits */
  44. #define KK (1023-4) /* Number of data symbols per block */
  45. #define B0 510 /* First root of generator polynomial, alpha form */
  46. #define PRIM 1 /* power of alpha used to generate roots of generator poly */
  47. #define NN ((1 << MM) - 1)
  48. typedef unsigned short dtype;
  49. /* 1+x^3+x^10 */
  50. static const int Pp[MM+1] = { 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1 };
  51. /* This defines the type used to store an element of the Galois Field
  52.  * used by the code. Make sure this is something larger than a char if
  53.  * if anything larger than GF(256) is used.
  54.  *
  55.  * Note: unsigned char will work up to GF(256) but int seems to run
  56.  * faster on the Pentium.
  57.  */
  58. typedef int gf;
  59. /* No legal value in index form represents zero, so
  60.  * we need a special value for this purpose
  61.  */
  62. #define A0 (NN)
  63. /* Compute x % NN, where NN is 2**MM - 1,
  64.  * without a slow divide
  65.  */
  66. static inline gf
  67. modnn(int x)
  68. {
  69.   while (x >= NN) {
  70.     x -= NN;
  71.     x = (x >> MM) + (x & NN);
  72.   }
  73.   return x;
  74. }
  75. #define CLEAR(a,n) {
  76. int ci;
  77. for(ci=(n)-1;ci >=0;ci--)
  78. (a)[ci] = 0;
  79. }
  80. #define COPY(a,b,n) {
  81. int ci;
  82. for(ci=(n)-1;ci >=0;ci--)
  83. (a)[ci] = (b)[ci];
  84. }
  85. #define COPYDOWN(a,b,n) {
  86. int ci;
  87. for(ci=(n)-1;ci >=0;ci--)
  88. (a)[ci] = (b)[ci];
  89. }
  90. #define Ldec 1
  91. /* generate GF(2**m) from the irreducible polynomial p(X) in Pp[0]..Pp[m]
  92.    lookup tables:  index->polynomial form   alpha_to[] contains j=alpha**i;
  93.                    polynomial form -> index form  index_of[j=alpha**i] = i
  94.    alpha=2 is the primitive element of GF(2**m)
  95.    HARI's COMMENT: (4/13/94) alpha_to[] can be used as follows:
  96.         Let @ represent the primitive element commonly called "alpha" that
  97.    is the root of the primitive polynomial p(x). Then in GF(2^m), for any
  98.    0 <= i <= 2^m-2,
  99.         @^i = a(0) + a(1) @ + a(2) @^2 + ... + a(m-1) @^(m-1)
  100.    where the binary vector (a(0),a(1),a(2),...,a(m-1)) is the representation
  101.    of the integer "alpha_to[i]" with a(0) being the LSB and a(m-1) the MSB. Thus for
  102.    example the polynomial representation of @^5 would be given by the binary
  103.    representation of the integer "alpha_to[5]".
  104.                    Similarily, index_of[] can be used as follows:
  105.         As above, let @ represent the primitive element of GF(2^m) that is
  106.    the root of the primitive polynomial p(x). In order to find the power
  107.    of @ (alpha) that has the polynomial representation
  108.         a(0) + a(1) @ + a(2) @^2 + ... + a(m-1) @^(m-1)
  109.    we consider the integer "i" whose binary representation with a(0) being LSB
  110.    and a(m-1) MSB is (a(0),a(1),...,a(m-1)) and locate the entry
  111.    "index_of[i]". Now, @^index_of[i] is that element whose polynomial 
  112.     representation is (a(0),a(1),a(2),...,a(m-1)).
  113.    NOTE:
  114.         The element alpha_to[2^m-1] = 0 always signifying that the
  115.    representation of "@^infinity" = 0 is (0,0,0,...,0).
  116.         Similarily, the element index_of[0] = A0 always signifying
  117.    that the power of alpha which has the polynomial representation
  118.    (0,0,...,0) is "infinity".
  119.  
  120. */
  121. static void
  122. generate_gf(dtype Alpha_to[NN + 1], dtype Index_of[NN + 1])
  123. {
  124.   register int i, mask;
  125.   mask = 1;
  126.   Alpha_to[MM] = 0;
  127.   for (i = 0; i < MM; i++) {
  128.     Alpha_to[i] = mask;
  129.     Index_of[Alpha_to[i]] = i;
  130.     /* If Pp[i] == 1 then, term @^i occurs in poly-repr of @^MM */
  131.     if (Pp[i] != 0)
  132.       Alpha_to[MM] ^= mask; /* Bit-wise EXOR operation */
  133.     mask <<= 1; /* single left-shift */
  134.   }
  135.   Index_of[Alpha_to[MM]] = MM;
  136.   /*
  137.    * Have obtained poly-repr of @^MM. Poly-repr of @^(i+1) is given by
  138.    * poly-repr of @^i shifted left one-bit and accounting for any @^MM
  139.    * term that may occur when poly-repr of @^i is shifted.
  140.    */
  141.   mask >>= 1;
  142.   for (i = MM + 1; i < NN; i++) {
  143.     if (Alpha_to[i - 1] >= mask)
  144.       Alpha_to[i] = Alpha_to[MM] ^ ((Alpha_to[i - 1] ^ mask) << 1);
  145.     else
  146.       Alpha_to[i] = Alpha_to[i - 1] << 1;
  147.     Index_of[Alpha_to[i]] = i;
  148.   }
  149.   Index_of[0] = A0;
  150.   Alpha_to[NN] = 0;
  151. }
  152. /*
  153.  * Performs ERRORS+ERASURES decoding of RS codes. bb[] is the content
  154.  * of the feedback shift register after having processed the data and
  155.  * the ECC.
  156.  *
  157.  * Return number of symbols corrected, or -1 if codeword is illegal
  158.  * or uncorrectable. If eras_pos is non-null, the detected error locations
  159.  * are written back. NOTE! This array must be at least NN-KK elements long.
  160.  * The corrected data are written in eras_val[]. They must be xor with the data
  161.  * to retrieve the correct data : data[erase_pos[i]] ^= erase_val[i] .
  162.  * 
  163.  * First "no_eras" erasures are declared by the calling program. Then, the
  164.  * maximum # of errors correctable is t_after_eras = floor((NN-KK-no_eras)/2).
  165.  * If the number of channel errors is not greater than "t_after_eras" the
  166.  * transmitted codeword will be recovered. Details of algorithm can be found
  167.  * in R. Blahut's "Theory ... of Error-Correcting Codes".
  168.  * Warning: the eras_pos[] array must not contain duplicate entries; decoder failure
  169.  * will result. The decoder *could* check for this condition, but it would involve
  170.  * extra time on every decoding operation.
  171.  * */
  172. static int
  173. eras_dec_rs(dtype Alpha_to[NN + 1], dtype Index_of[NN + 1],
  174.             gf bb[NN - KK + 1], gf eras_val[NN-KK], int eras_pos[NN-KK], 
  175.             int no_eras)
  176. {
  177.   int deg_lambda, el, deg_omega;
  178.   int i, j, r,k;
  179.   gf u,q,tmp,num1,num2,den,discr_r;
  180.   gf lambda[NN-KK + 1], s[NN-KK + 1]; /* Err+Eras Locator poly
  181.  * and syndrome poly */
  182.   gf b[NN-KK + 1], t[NN-KK + 1], omega[NN-KK + 1];
  183.   gf root[NN-KK], reg[NN-KK + 1], loc[NN-KK];
  184.   int syn_error, count;
  185.   syn_error = 0;
  186.   for(i=0;i<NN-KK;i++)
  187.       syn_error |= bb[i];
  188.   if (!syn_error) {
  189.     /* if remainder is zero, data[] is a codeword and there are no
  190.      * errors to correct. So return data[] unmodified
  191.      */
  192.     count = 0;
  193.     goto finish;
  194.   }
  195.   
  196.   for(i=1;i<=NN-KK;i++){
  197.     s[i] = bb[0];
  198.   }
  199.   for(j=1;j<NN-KK;j++){
  200.     if(bb[j] == 0)
  201.       continue;
  202.     tmp = Index_of[bb[j]];
  203.     
  204.     for(i=1;i<=NN-KK;i++)
  205.       s[i] ^= Alpha_to[modnn(tmp + (B0+i-1)*PRIM*j)];
  206.   }
  207.   /* undo the feedback register implicit multiplication and convert
  208.      syndromes to index form */
  209.   for(i=1;i<=NN-KK;i++) {
  210.       tmp = Index_of[s[i]];
  211.       if (tmp != A0)
  212.           tmp = modnn(tmp + 2 * KK * (B0+i-1)*PRIM);
  213.       s[i] = tmp;
  214.   }
  215.   
  216.   CLEAR(&lambda[1],NN-KK);
  217.   lambda[0] = 1;
  218.   if (no_eras > 0) {
  219.     /* Init lambda to be the erasure locator polynomial */
  220.     lambda[1] = Alpha_to[modnn(PRIM * eras_pos[0])];
  221.     for (i = 1; i < no_eras; i++) {
  222.       u = modnn(PRIM*eras_pos[i]);
  223.       for (j = i+1; j > 0; j--) {
  224. tmp = Index_of[lambda[j - 1]];
  225. if(tmp != A0)
  226.   lambda[j] ^= Alpha_to[modnn(u + tmp)];
  227.       }
  228.     }
  229. #if DEBUG >= 1
  230.     /* Test code that verifies the erasure locator polynomial just constructed
  231.        Needed only for decoder debugging. */
  232.     
  233.     /* find roots of the erasure location polynomial */
  234.     for(i=1;i<=no_eras;i++)
  235.       reg[i] = Index_of[lambda[i]];
  236.     count = 0;
  237.     for (i = 1,k=NN-Ldec; i <= NN; i++,k = modnn(NN+k-Ldec)) {
  238.       q = 1;
  239.       for (j = 1; j <= no_eras; j++)
  240. if (reg[j] != A0) {
  241.   reg[j] = modnn(reg[j] + j);
  242.   q ^= Alpha_to[reg[j]];
  243. }
  244.       if (q != 0)
  245. continue;
  246.       /* store root and error location number indices */
  247.       root[count] = i;
  248.       loc[count] = k;
  249.       count++;
  250.     }
  251.     if (count != no_eras) {
  252.       printf("n lambda(x) is WRONGn");
  253.       count = -1;
  254.       goto finish;
  255.     }
  256. #if DEBUG >= 2
  257.     printf("n Erasure positions as determined by roots of Eras Loc Poly:n");
  258.     for (i = 0; i < count; i++)
  259.       printf("%d ", loc[i]);
  260.     printf("n");
  261. #endif
  262. #endif
  263.   }
  264.   for(i=0;i<NN-KK+1;i++)
  265.     b[i] = Index_of[lambda[i]];
  266.   
  267.   /*
  268.    * Begin Berlekamp-Massey algorithm to determine error+erasure
  269.    * locator polynomial
  270.    */
  271.   r = no_eras;
  272.   el = no_eras;
  273.   while (++r <= NN-KK) { /* r is the step number */
  274.     /* Compute discrepancy at the r-th step in poly-form */
  275.     discr_r = 0;
  276.     for (i = 0; i < r; i++){
  277.       if ((lambda[i] != 0) && (s[r - i] != A0)) {
  278. discr_r ^= Alpha_to[modnn(Index_of[lambda[i]] + s[r - i])];
  279.       }
  280.     }
  281.     discr_r = Index_of[discr_r]; /* Index form */
  282.     if (discr_r == A0) {
  283.       /* 2 lines below: B(x) <-- x*B(x) */
  284.       COPYDOWN(&b[1],b,NN-KK);
  285.       b[0] = A0;
  286.     } else {
  287.       /* 7 lines below: T(x) <-- lambda(x) - discr_r*x*b(x) */
  288.       t[0] = lambda[0];
  289.       for (i = 0 ; i < NN-KK; i++) {
  290. if(b[i] != A0)
  291.   t[i+1] = lambda[i+1] ^ Alpha_to[modnn(discr_r + b[i])];
  292. else
  293.   t[i+1] = lambda[i+1];
  294.       }
  295.       if (2 * el <= r + no_eras - 1) {
  296. el = r + no_eras - el;
  297. /*
  298.  * 2 lines below: B(x) <-- inv(discr_r) *
  299.  * lambda(x)
  300.  */
  301. for (i = 0; i <= NN-KK; i++)
  302.   b[i] = (lambda[i] == 0) ? A0 : modnn(Index_of[lambda[i]] - discr_r + NN);
  303.       } else {
  304. /* 2 lines below: B(x) <-- x*B(x) */
  305. COPYDOWN(&b[1],b,NN-KK);
  306. b[0] = A0;
  307.       }
  308.       COPY(lambda,t,NN-KK+1);
  309.     }
  310.   }
  311.   /* Convert lambda to index form and compute deg(lambda(x)) */
  312.   deg_lambda = 0;
  313.   for(i=0;i<NN-KK+1;i++){
  314.     lambda[i] = Index_of[lambda[i]];
  315.     if(lambda[i] != A0)
  316.       deg_lambda = i;
  317.   }
  318.   /*
  319.    * Find roots of the error+erasure locator polynomial by Chien
  320.    * Search
  321.    */
  322.   COPY(&reg[1],&lambda[1],NN-KK);
  323.   count = 0; /* Number of roots of lambda(x) */
  324.   for (i = 1,k=NN-Ldec; i <= NN; i++,k = modnn(NN+k-Ldec)) {
  325.     q = 1;
  326.     for (j = deg_lambda; j > 0; j--){
  327.       if (reg[j] != A0) {
  328. reg[j] = modnn(reg[j] + j);
  329. q ^= Alpha_to[reg[j]];
  330.       }
  331.     }
  332.     if (q != 0)
  333.       continue;
  334.     /* store root (index-form) and error location number */
  335.     root[count] = i;
  336.     loc[count] = k;
  337.     /* If we've already found max possible roots,
  338.      * abort the search to save time
  339.      */
  340.     if(++count == deg_lambda)
  341.       break;
  342.   }
  343.   if (deg_lambda != count) {
  344.     /*
  345.      * deg(lambda) unequal to number of roots => uncorrectable
  346.      * error detected
  347.      */
  348.     count = -1;
  349.     goto finish;
  350.   }
  351.   /*
  352.    * Compute err+eras evaluator poly omega(x) = s(x)*lambda(x) (modulo
  353.    * x**(NN-KK)). in index form. Also find deg(omega).
  354.    */
  355.   deg_omega = 0;
  356.   for (i = 0; i < NN-KK;i++){
  357.     tmp = 0;
  358.     j = (deg_lambda < i) ? deg_lambda : i;
  359.     for(;j >= 0; j--){
  360.       if ((s[i + 1 - j] != A0) && (lambda[j] != A0))
  361. tmp ^= Alpha_to[modnn(s[i + 1 - j] + lambda[j])];
  362.     }
  363.     if(tmp != 0)
  364.       deg_omega = i;
  365.     omega[i] = Index_of[tmp];
  366.   }
  367.   omega[NN-KK] = A0;
  368.   
  369.   /*
  370.    * Compute error values in poly-form. num1 = omega(inv(X(l))), num2 =
  371.    * inv(X(l))**(B0-1) and den = lambda_pr(inv(X(l))) all in poly-form
  372.    */
  373.   for (j = count-1; j >=0; j--) {
  374.     num1 = 0;
  375.     for (i = deg_omega; i >= 0; i--) {
  376.       if (omega[i] != A0)
  377. num1  ^= Alpha_to[modnn(omega[i] + i * root[j])];
  378.     }
  379.     num2 = Alpha_to[modnn(root[j] * (B0 - 1) + NN)];
  380.     den = 0;
  381.     
  382.     /* lambda[i+1] for i even is the formal derivative lambda_pr of lambda[i] */
  383.     for (i = min(deg_lambda,NN-KK-1) & ~1; i >= 0; i -=2) {
  384.       if(lambda[i+1] != A0)
  385. den ^= Alpha_to[modnn(lambda[i+1] + i * root[j])];
  386.     }
  387.     if (den == 0) {
  388. #if DEBUG >= 1
  389.       printf("n ERROR: denominator = 0n");
  390. #endif
  391.       /* Convert to dual- basis */
  392.       count = -1;
  393.       goto finish;
  394.     }
  395.     /* Apply error to data */
  396.     if (num1 != 0) {
  397.         eras_val[j] = Alpha_to[modnn(Index_of[num1] + Index_of[num2] + NN - Index_of[den])];
  398.     } else {
  399.         eras_val[j] = 0;
  400.     }
  401.   }
  402.  finish:
  403.   for(i=0;i<count;i++)
  404.       eras_pos[i] = loc[i];
  405.   return count;
  406. }
  407. /***************************************************************************/
  408. /* The DOC specific code begins here */
  409. #define SECTOR_SIZE 512
  410. /* The sector bytes are packed into NB_DATA MM bits words */
  411. #define NB_DATA (((SECTOR_SIZE + 1) * 8 + 6) / MM)
  412. /* 
  413.  * Correct the errors in 'sector[]' by using 'ecc1[]' which is the
  414.  * content of the feedback shift register applyied to the sector and
  415.  * the ECC. Return the number of errors corrected (and correct them in
  416.  * sector), or -1 if error 
  417.  */
  418. int doc_decode_ecc(unsigned char sector[SECTOR_SIZE], unsigned char ecc1[6])
  419. {
  420.     int parity, i, nb_errors;
  421.     gf bb[NN - KK + 1];
  422.     gf error_val[NN-KK];
  423.     int error_pos[NN-KK], pos, bitpos, index, val;
  424.     dtype *Alpha_to, *Index_of;
  425.     /* init log and exp tables here to save memory. However, it is slower */
  426.     Alpha_to = kmalloc((NN + 1) * sizeof(dtype), GFP_KERNEL);
  427.     if (!Alpha_to)
  428.         return -1;
  429.     
  430.     Index_of = kmalloc((NN + 1) * sizeof(dtype), GFP_KERNEL);
  431.     if (!Index_of) {
  432.         kfree(Alpha_to);
  433.         return -1;
  434.     }
  435.     generate_gf(Alpha_to, Index_of);
  436.     parity = ecc1[1];
  437.     bb[0] =  (ecc1[4] & 0xff) | ((ecc1[5] & 0x03) << 8);
  438.     bb[1] = ((ecc1[5] & 0xfc) >> 2) | ((ecc1[2] & 0x0f) << 6);
  439.     bb[2] = ((ecc1[2] & 0xf0) >> 4) | ((ecc1[3] & 0x3f) << 4);
  440.     bb[3] = ((ecc1[3] & 0xc0) >> 6) | ((ecc1[0] & 0xff) << 2);
  441.     nb_errors = eras_dec_rs(Alpha_to, Index_of, bb, 
  442.                             error_val, error_pos, 0);
  443.     if (nb_errors <= 0)
  444.         goto the_end;
  445.     /* correct the errors */
  446.     for(i=0;i<nb_errors;i++) {
  447.         pos = error_pos[i];
  448.         if (pos >= NB_DATA && pos < KK) {
  449.             nb_errors = -1;
  450.             goto the_end;
  451.         }
  452.         if (pos < NB_DATA) {
  453.             /* extract bit position (MSB first) */
  454.             pos = 10 * (NB_DATA - 1 - pos) - 6;
  455.             /* now correct the following 10 bits. At most two bytes
  456.                can be modified since pos is even */
  457.             index = (pos >> 3) ^ 1;
  458.             bitpos = pos & 7;
  459.             if ((index >= 0 && index < SECTOR_SIZE) || 
  460.                 index == (SECTOR_SIZE + 1)) {
  461.                 val = error_val[i] >> (2 + bitpos);
  462.                 parity ^= val;
  463.                 if (index < SECTOR_SIZE)
  464.                     sector[index] ^= val;
  465.             }
  466.             index = ((pos >> 3) + 1) ^ 1;
  467.             bitpos = (bitpos + 10) & 7;
  468.             if (bitpos == 0)
  469.                 bitpos = 8;
  470.             if ((index >= 0 && index < SECTOR_SIZE) || 
  471.                 index == (SECTOR_SIZE + 1)) {
  472.                 val = error_val[i] << (8 - bitpos);
  473.                 parity ^= val;
  474.                 if (index < SECTOR_SIZE)
  475.                     sector[index] ^= val;
  476.             }
  477.         }
  478.     }
  479.     
  480.     /* use parity to test extra errors */
  481.     if ((parity & 0xff) != 0)
  482.         nb_errors = -1;
  483.  the_end:
  484.     kfree(Alpha_to);
  485.     kfree(Index_of);
  486.     return nb_errors;
  487. }
  488. MODULE_LICENSE("GPL");
  489. MODULE_AUTHOR("Fabrice Bellard <fabrice.bellard@netgem.com>");
  490. MODULE_DESCRIPTION("ECC code for correcting errors detected by DiskOnChip 2000 and Millennium ECC hardware");