forked from mborgerding/bch_codec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbch_codec.h
137 lines (118 loc) · 3.82 KB
/
bch_codec.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* Generic binary BCH encoding/decoding library
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Copyright © 2011 Parrot S.A.
*
* Author: Ivan Djelic <[email protected]>
*
* Description:
*
* This library provides runtime configurable encoding/decoding of binary
* Bose-Chaudhuri-Hocquenghem (BCH) codes.
*/
#ifndef _BCH_H
#define _BCH_H
#include <stdint.h>
/**
* \def BCH_USE_OWN_MALLOC
*
* Use own malloc/free functions. In this case bch_malloc() and bch_free() must be provided.
*
* Used in:
* bch_codec.c
*
* Uncomment to enable.
*/
//#define BCH_USE_OWN_MALLOC
/**
* \def BCH_USE_OWN_PRINTF
*
* Use own printf function. In this case bch_printf() must be provided.
*
* Used in:
* bch_test.cpp
*
* Uncomment to enable.
*/
//#define BCH_USE_OWN_PRINTF
/**
* \def BCH_USE_TMS320C6400_INTRINSICS
*
* Use some helpful instructions of TMS320C6400 DSP's, like endianess swap, bit counting, etc.
*
* Used in:
* bch_codec.c
*
* Uncomment to enable.
*/
//#define BCH_USE_TMS320C6400_INTRINSICS
#ifdef __cplusplus
extern "C" {
#endif
/**
* struct bch_control - BCH control structure
* @m: Galois field order
* @n: maximum codeword size in bits (= 2^m-1)
* @t: error correction capability in bits
* @ecc_bits: ecc exact size in bits, i.e. generator polynomial degree (<=m*t)
* @ecc_bytes: ecc max size (m*t bits) in bytes
* @a_pow_tab: Galois field GF(2^m) exponentiation lookup table
* @a_log_tab: Galois field GF(2^m) log lookup table
* @mod8_tab: remainder generator polynomial lookup tables
* @ecc_buf: ecc parity words buffer
* @ecc_buf2: ecc parity words buffer
* @xi_tab: GF(2^m) base for solving degree 2 polynomial roots
* @syn: syndrome buffer
* @cache: log-based polynomial representation buffer
* @elp: error locator polynomial
* @poly_2t: temporary polynomials of degree 2t
*/
struct bch_control {
unsigned int m;
unsigned int n;
unsigned int t;
unsigned int ecc_bits;
unsigned int ecc_bytes;
/* private: */
uint16_t *a_pow_tab;
uint16_t *a_log_tab;
uint32_t *mod8_tab;
uint32_t *ecc_buf;
uint32_t *ecc_buf2;
unsigned int *xi_tab;
unsigned int *syn;
int *cache;
struct gf_poly *elp;
struct gf_poly *poly_2t[4];
uint8_t *databuf;
};
struct bch_control *init_bch(int m, int t, unsigned int prim_poly);
void free_bch(struct bch_control *bch);
void encode_bch(struct bch_control *bch, const uint8_t *data,
unsigned int len, uint8_t *ecc);
void encodebits_bch(struct bch_control *bch, const uint8_t *data, uint8_t *ecc);
int decode_bch(struct bch_control *bch, const uint8_t *data, unsigned int len,
const uint8_t *recv_ecc, const uint8_t *calc_ecc,
const unsigned int *syn, unsigned int *errloc);
int decodebits_bch(struct bch_control *bch, const uint8_t *data,
const uint8_t *recv_ecc, unsigned int *errloc);
void correct_bch(struct bch_control *bch, uint8_t *data,unsigned int len, unsigned int *errloc, int nerr);
void correctbits_bch(struct bch_control *bch, uint8_t *databits, unsigned int *errloc, int nerr);
int _bch_test(int m,int t,unsigned int prim_poly,int ntrials);
#ifdef __cplusplus
}
#endif
#endif /* _BCH_H */