blob: 1888fe13f5cf14bb01b8a28177fe040c105dab47 [file] [log] [blame]
Sylvain Munaut19dc5c92011-04-23 16:09:19 +02001/*
2 * conv.h
3 *
4 * Copyright (C) 2011 Sylvain Munaut <tnt@246tNt.com>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
Harald Welteba6988b2011-08-17 12:46:48 +020023/*! \defgroup conv Convolutional encoding and decoding routines
24 * @{
25 */
26
27/*! \file conv.h
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +010028 * Osmocom convolutional encoder and decoder
Harald Welteba6988b2011-08-17 12:46:48 +020029 */
30
Sylvain Munaut12ba7782014-06-16 10:13:40 +020031#pragma once
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020032
33#include <stdint.h>
34
35#include <osmocom/core/bits.h>
36
Neels Hofmeyr87e45502017-06-20 00:17:59 +020037/*! possibe termination types
Sylvain Munaut297d13f2011-11-24 17:46:58 +010038 *
39 * The termination type will determine which state the encoder/decoder
40 * can start/end with. This is mostly taken care of in the high level API
41 * call. So if you use the low level API, you must take care of making the
42 * proper calls yourself.
43 */
44enum osmo_conv_term {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020045 CONV_TERM_FLUSH = 0, /*!< Flush encoder state */
46 CONV_TERM_TRUNCATION, /*!< Direct truncation */
47 CONV_TERM_TAIL_BITING, /*!< Tail biting */
Sylvain Munaut297d13f2011-11-24 17:46:58 +010048};
49
Neels Hofmeyr87e45502017-06-20 00:17:59 +020050/*! structure describing a given convolutional code
Sylvain Munaut03d2c892011-11-24 11:53:49 +010051 *
52 * The only required fields are N,K and the next_output/next_state arrays. The
53 * other can be left to default value of zero depending on what the code does.
54 * If 'len' is left at 0 then only the low level API can be used.
55 */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020056struct osmo_conv_code {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020057 int N; /*!< Inverse of code rate */
58 int K; /*!< Constraint length */
59 int len; /*!< # of data bits */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020060
Neels Hofmeyr87e45502017-06-20 00:17:59 +020061 enum osmo_conv_term term; /*!< Termination type */
Sylvain Munaut297d13f2011-11-24 17:46:58 +010062
Neels Hofmeyr87e45502017-06-20 00:17:59 +020063 const uint8_t (*next_output)[2];/*!< Next output array */
64 const uint8_t (*next_state)[2]; /*!< Next state array */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020065
Neels Hofmeyr87e45502017-06-20 00:17:59 +020066 const uint8_t *next_term_output;/*!< Flush termination output */
67 const uint8_t *next_term_state; /*!< Flush termination state */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020068
Neels Hofmeyr87e45502017-06-20 00:17:59 +020069 const int *puncture; /*!< Punctured bits indexes */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020070};
71
72
Sylvain Munautae8dbb42011-11-24 17:47:32 +010073/* Common */
74
75int osmo_conv_get_input_length(const struct osmo_conv_code *code, int len);
76int osmo_conv_get_output_length(const struct osmo_conv_code *code, int len);
77
78
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020079/* Encoding */
80
81 /* Low level API */
Sylvain Munaut03d2c892011-11-24 11:53:49 +010082
Neels Hofmeyr87e45502017-06-20 00:17:59 +020083/*! convolutional encoder state */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020084struct osmo_conv_encoder {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020085 const struct osmo_conv_code *code; /*!< for which code? */
86 int i_idx; /*!< Next input bit index */
87 int p_idx; /*!< Current puncture index */
88 uint8_t state; /*!< Current state */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020089};
90
91void osmo_conv_encode_init(struct osmo_conv_encoder *encoder,
92 const struct osmo_conv_code *code);
Sylvain Munaut297d13f2011-11-24 17:46:58 +010093void osmo_conv_encode_load_state(struct osmo_conv_encoder *encoder,
94 const ubit_t *input);
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020095int osmo_conv_encode_raw(struct osmo_conv_encoder *encoder,
96 const ubit_t *input, ubit_t *output, int n);
Sylvain Munaut297d13f2011-11-24 17:46:58 +010097int osmo_conv_encode_flush(struct osmo_conv_encoder *encoder, ubit_t *output);
Sylvain Munaut19dc5c92011-04-23 16:09:19 +020098
99 /* All-in-one */
100int osmo_conv_encode(const struct osmo_conv_code *code,
101 const ubit_t *input, ubit_t *output);
102
103
104/* Decoding */
105
106 /* Low level API */
Sylvain Munaut03d2c892011-11-24 11:53:49 +0100107
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200108/*! convolutional decoder state */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200109struct osmo_conv_decoder {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200110 const struct osmo_conv_code *code; /*!< for which code? */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200111
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200112 int n_states; /*!< number of states */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200113
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200114 int len; /*!< Max o_idx (excl. termination) */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200115
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200116 int o_idx; /*!< output index */
117 int p_idx; /*!< puncture index */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200118
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200119 unsigned int *ae; /*!< accumulated error */
120 unsigned int *ae_next; /*!< next accumulated error (tmp in scan) */
121 uint8_t *state_history; /*!< state history [len][n_states] */
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200122};
123
124void osmo_conv_decode_init(struct osmo_conv_decoder *decoder,
Sylvain Munaut297d13f2011-11-24 17:46:58 +0100125 const struct osmo_conv_code *code,
126 int len, int start_state);
127void osmo_conv_decode_reset(struct osmo_conv_decoder *decoder, int start_state);
128void osmo_conv_decode_rewind(struct osmo_conv_decoder *decoder);
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200129void osmo_conv_decode_deinit(struct osmo_conv_decoder *decoder);
130
131int osmo_conv_decode_scan(struct osmo_conv_decoder *decoder,
132 const sbit_t *input, int n);
Sylvain Munaut297d13f2011-11-24 17:46:58 +0100133int osmo_conv_decode_flush(struct osmo_conv_decoder *decoder,
134 const sbit_t *input);
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200135int osmo_conv_decode_get_output(struct osmo_conv_decoder *decoder,
Sylvain Munaut297d13f2011-11-24 17:46:58 +0100136 ubit_t *output, int has_flush, int end_state);
Sylvain Munaut19dc5c92011-04-23 16:09:19 +0200137
138 /* All-in-one */
139int osmo_conv_decode(const struct osmo_conv_code *code,
140 const sbit_t *input, ubit_t *output);
141
142
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200143/*! @} */