1 ==========================================
2 Reed-Solomon Library Programming Interface
3 ==========================================
5 :Author: Thomas Gleixner
10 The generic Reed-Solomon Library provides encoding, decoding and error
13 Reed-Solomon codes are used in communication and storage applications to
14 ensure data integrity.
16 This documentation is provided for developers who want to utilize the
17 functions provided by the library.
19 Known Bugs And Assumptions
20 ==========================
27 This chapter provides examples of how to use the library.
32 The init function init_rs returns a pointer to an rs decoder structure,
33 which holds the necessary information for encoding, decoding and error
34 correction with the given polynomial. It either uses an existing
35 matching decoder or creates a new one. On creation all the lookup tables
36 for fast en/decoding are created. The function may take a while, so make
37 sure not to call it in critical code paths.
41 /* the Reed Solomon control structure */
42 static struct rs_control *rs_decoder;
44 /* Symbolsize is 10 (bits)
45 * Primitive polynomial is x^10+x^3+1
46 * first consecutive root is 0
47 * primitive element to generate roots = 1
48 * generator polynomial degree (number of roots) = 6
50 rs_decoder = init_rs (10, 0x409, 0, 1, 6);
56 The encoder calculates the Reed-Solomon code over the given data length
57 and stores the result in the parity buffer. Note that the parity buffer
58 must be initialized before calling the encoder.
60 The expanded data can be inverted on the fly by providing a non-zero
61 inversion mask. The expanded data is XOR'ed with the mask. This is used
62 e.g. for FLASH ECC, where the all 0xFF is inverted to an all 0x00. The
63 Reed-Solomon code for all 0x00 is all 0x00. The code is inverted before
64 storing to FLASH so it is 0xFF too. This prevents that reading from an
65 erased FLASH results in ECC errors.
67 The databytes are expanded to the given symbol size on the fly. There is
68 no support for encoding continuous bitstreams with a symbol size != 8 at
69 the moment. If it is necessary it should be not a big deal to implement
74 /* Parity buffer. Size = number of roots */
76 /* Initialize the parity buffer */
77 memset(par, 0, sizeof(par));
78 /* Encode 512 byte in data8. Store parity in buffer par */
79 encode_rs8 (rs_decoder, data8, 512, par, 0);
85 The decoder calculates the syndrome over the given data length and the
86 received parity symbols and corrects errors in the data.
88 If a syndrome is available from a hardware decoder then the syndrome
89 calculation is skipped.
91 The correction of the data buffer can be suppressed by providing a
92 correction pattern buffer and an error location buffer to the decoder.
93 The decoder stores the calculated error location and the correction
94 bitmask in the given buffers. This is useful for hardware decoders which
95 use a weird bit ordering scheme.
97 The databytes are expanded to the given symbol size on the fly. There is
98 no support for decoding continuous bitstreams with a symbolsize != 8 at
99 the moment. If it is necessary it should be not a big deal to implement
102 Decoding with syndrome calculation, direct data correction
103 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
107 /* Parity buffer. Size = number of roots */
115 /* Decode 512 byte in data8.*/
116 numerr = decode_rs8 (rs_decoder, data8, par, 512, NULL, 0, NULL, 0, NULL);
119 Decoding with syndrome given by hardware decoder, direct data correction
120 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
124 /* Parity buffer. Size = number of roots */
125 uint16_t par[6], syn[6];
132 /* Get syndrome from hardware decoder */
134 /* Decode 512 byte in data8.*/
135 numerr = decode_rs8 (rs_decoder, data8, par, 512, syn, 0, NULL, 0, NULL);
138 Decoding with syndrome given by hardware decoder, no direct data correction.
139 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
141 Note: It's not necessary to give data and received parity to the
146 /* Parity buffer. Size = number of roots */
147 uint16_t par[6], syn[6], corr[8];
149 int numerr, errpos[8];
154 /* Get syndrome from hardware decoder */
156 /* Decode 512 byte in data8.*/
157 numerr = decode_rs8 (rs_decoder, NULL, NULL, 512, syn, 0, errpos, 0, corr);
158 for (i = 0; i < numerr; i++) {
159 do_error_correction_in_your_buffer(errpos[i], corr[i]);
166 The function free_rs frees the allocated resources, if the caller is
167 the last user of the decoder.
171 /* Release resources */
178 This chapter contains the autogenerated documentation of the structures
179 which are used in the Reed-Solomon Library and are relevant for a
182 .. kernel-doc:: include/linux/rslib.h
185 Public Functions Provided
186 =========================
188 This chapter contains the autogenerated documentation of the
189 Reed-Solomon functions which are exported.
191 .. kernel-doc:: lib/reed_solomon/reed_solomon.c
197 The library code for encoding and decoding was written by Phil Karn.
201 Copyright 2002, Phil Karn, KA9Q
202 May be used under the terms of the GNU General Public License (GPL)
205 The wrapper functions and interfaces are written by Thomas Gleixner.
207 Many users have provided bugfixes, improvements and helping hands for
208 testing. Thanks a lot.
210 The following people have contributed to this document:
212 Thomas Gleixner\ tglx@linutronix.de