Blame view

include/linux/bch.h 2.1 KB
2b27bdcc2   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
437aa565e   Ivan Djelic   lib: add shared B...
2
3
4
  /*
   * Generic binary BCH encoding/decoding library
   *
437aa565e   Ivan Djelic   lib: add shared B...
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
   * Copyright © 2011 Parrot S.A.
   *
   * Author: Ivan Djelic <ivan.djelic@parrot.com>
   *
   * Description:
   *
   * This library provides runtime configurable encoding/decoding of binary
   * Bose-Chaudhuri-Hocquenghem (BCH) codes.
  */
  #ifndef _BCH_H
  #define _BCH_H
  
  #include <linux/types.h>
  
  /**
   * 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
1759279ad   Miquel Raynal   lib/bch: Allow ea...
36
   * @swap_bits:  swap bits within data and syndrome bytes
437aa565e   Ivan Djelic   lib: add shared B...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
   */
  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];
1759279ad   Miquel Raynal   lib/bch: Allow ea...
55
  	bool		swap_bits;
437aa565e   Ivan Djelic   lib: add shared B...
56
  };
1759279ad   Miquel Raynal   lib/bch: Allow ea...
57
58
  struct bch_control *bch_init(int m, int t, unsigned int prim_poly,
  			     bool swap_bits);
437aa565e   Ivan Djelic   lib: add shared B...
59

c8ae3f744   Miquel Raynal   lib/bch: Rework a...
60
  void bch_free(struct bch_control *bch);
437aa565e   Ivan Djelic   lib: add shared B...
61

c8ae3f744   Miquel Raynal   lib/bch: Rework a...
62
  void bch_encode(struct bch_control *bch, const uint8_t *data,
437aa565e   Ivan Djelic   lib: add shared B...
63
  		unsigned int len, uint8_t *ecc);
c8ae3f744   Miquel Raynal   lib/bch: Rework a...
64
  int bch_decode(struct bch_control *bch, const uint8_t *data, unsigned int len,
437aa565e   Ivan Djelic   lib: add shared B...
65
66
67
68
  	       const uint8_t *recv_ecc, const uint8_t *calc_ecc,
  	       const unsigned int *syn, unsigned int *errloc);
  
  #endif /* _BCH_H */