blob: 60874161eee2eff88089be91591ac6e5fe0bbdd3 [file] [log] [blame]
Jacob Erlbeck409f9802015-11-30 18:06:50 +01001/* gprs_coding_scheme.h
2 *
3 * Copyright (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * Author: Jacob Erlbeck <jerlbeck@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#pragma once
22
23#include <stdint.h>
24#include <stddef.h>
25
Max19621362017-09-08 12:33:34 +020026extern "C" {
27 #include <osmocom/core/utils.h>
28}
Jacob Erlbeck409f9802015-11-30 18:06:50 +010029
30class GprsCodingScheme {
31public:
Aravind Sirsikar91495522016-07-12 14:17:12 +053032
33#define MAX_NUM_ARQ 2 /* max. number of ARQ */
34#define MAX_NUM_MCS 9 /* max. number of MCS */
35#define EGPRS_ARQ1 0x0
36#define EGPRS_ARQ2 0x1
37
Jacob Erlbeck409f9802015-11-30 18:06:50 +010038 enum Scheme {
39 UNKNOWN,
40 CS1, CS2, CS3, CS4,
41 MCS1, MCS2, MCS3, MCS4,
42 MCS5, MCS6, MCS7, MCS8, MCS9,
43 NUM_SCHEMES
44 };
45
46 enum Mode {
47 GPRS,
48 EGPRS_GMSK,
49 EGPRS,
50 };
51
Jacob Erlbeck6c3dc612015-12-14 10:21:26 +010052 enum HeaderType {
53 HEADER_INVALID,
54 HEADER_GPRS_CONTROL,
55 HEADER_GPRS_DATA,
56 HEADER_EGPRS_DATA_TYPE_1,
57 HEADER_EGPRS_DATA_TYPE_2,
58 HEADER_EGPRS_DATA_TYPE_3,
Jacob Erlbeck22f80872016-01-11 10:56:50 +010059 NUM_HEADER_TYPES
Jacob Erlbeck6c3dc612015-12-14 10:21:26 +010060 };
61
Jacob Erlbeck409f9802015-11-30 18:06:50 +010062 GprsCodingScheme(Scheme s = UNKNOWN);
63
64 operator bool() const {return m_scheme != UNKNOWN;}
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +010065 operator Scheme() const {return m_scheme;}
Maxb3a17d62017-12-21 12:11:33 +010066 uint8_t to_num() const;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +010067
68 GprsCodingScheme& operator =(Scheme s);
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +053069 bool operator == (Scheme s) const;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +010070 GprsCodingScheme& operator =(GprsCodingScheme o);
71
Jacob Erlbeck409f9802015-11-30 18:06:50 +010072 bool isValid() const {return UNKNOWN <= m_scheme && m_scheme <= MCS9;}
73 bool isGprs() const {return CS1 <= m_scheme && m_scheme <= CS4;}
74 bool isEgprs() const {return m_scheme >= MCS1;}
75 bool isEgprsGmsk() const {return isEgprs() && m_scheme <= MCS4;}
76 bool isCompatible(Mode mode) const;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +010077 bool isCompatible(GprsCodingScheme o) const;
Jacob Erlbeck2305afd2016-02-03 15:25:04 +010078 bool isFamilyCompatible(GprsCodingScheme o) const;
79 bool isCombinable(GprsCodingScheme o) const;
Jacob Erlbeck409f9802015-11-30 18:06:50 +010080
81 void inc(Mode mode);
82 void dec(Mode mode);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +010083 void inc();
84 void dec();
Jacob Erlbeck2305afd2016-02-03 15:25:04 +010085 void decToSingleBlock(bool *needStuffing);
Jacob Erlbeck409f9802015-11-30 18:06:50 +010086
Maxb3a17d62017-12-21 12:11:33 +010087 uint8_t sizeUL() const;
88 uint8_t sizeDL() const;
89 uint8_t usedSizeUL() const;
90 uint8_t usedSizeDL() const;
91 uint8_t maxBytesUL() const;
92 uint8_t maxBytesDL() const;
93 uint8_t spareBitsUL() const;
94 uint8_t spareBitsDL() const;
95 uint8_t maxDataBlockBytes() const;
96 uint8_t numDataBlocks() const;
97 uint8_t numDataHeaderBitsUL() const;
98 uint8_t numDataHeaderBitsDL() const;
99 uint8_t numDataBlockHeaderBits() const;
100 uint8_t optionalPaddingBits() const;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100101 const char *name() const;
Jacob Erlbeck6c3dc612015-12-14 10:21:26 +0100102 HeaderType headerTypeData() const;
103 HeaderType headerTypeControl() const;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100104
105 static GprsCodingScheme getBySizeUL(unsigned size);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100106 static GprsCodingScheme getGprsByNum(unsigned num);
107 static GprsCodingScheme getEgprsByNum(unsigned num);
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100108
Jacob Erlbeck7b579972016-01-05 15:54:24 +0100109 static const char *modeName(Mode mode);
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530110 static Scheme get_retx_mcs(const GprsCodingScheme mcs,
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530111 const GprsCodingScheme retx_mcs,
112 const unsigned arq_type);
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530113
Aravind Sirsikar91495522016-07-12 14:17:12 +0530114 static enum Scheme egprs_mcs_retx_tbl[MAX_NUM_ARQ]
115 [MAX_NUM_MCS][MAX_NUM_MCS];
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100116private:
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100117 GprsCodingScheme(int s); /* fail on use */
118 GprsCodingScheme& operator =(int s); /* fail on use */
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100119 enum Scheme m_scheme;
120};
121
Maxb3a17d62017-12-21 12:11:33 +0100122inline uint8_t GprsCodingScheme::to_num() const
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100123{
124 if (isGprs())
125 return (m_scheme - CS1) + 1;
126
127 if (isEgprs())
128 return (m_scheme - MCS1) + 1;
129
130 return 0;
131}
132
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100133inline bool GprsCodingScheme::isCompatible(Mode mode) const
134{
135 switch (mode) {
136 case GPRS: return isGprs();
137 case EGPRS_GMSK: return isEgprsGmsk();
138 case EGPRS: return isEgprs();
139 }
140
141 return false;
142}
143
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100144inline bool GprsCodingScheme::isCompatible(GprsCodingScheme o) const
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100145{
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100146 return (isGprs() && o.isGprs()) || (isEgprs() && o.isEgprs());
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100147}
148
Jacob Erlbeck6c3dc612015-12-14 10:21:26 +0100149inline GprsCodingScheme::HeaderType GprsCodingScheme::headerTypeControl() const
150{
151 return HEADER_GPRS_CONTROL;
152}
153
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100154inline GprsCodingScheme::GprsCodingScheme(Scheme s)
155 : m_scheme(s)
156{
157 if (!isValid())
158 m_scheme = UNKNOWN;
159}
160
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100161inline GprsCodingScheme& GprsCodingScheme::operator =(Scheme s)
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100162{
163 m_scheme = s;
164
165 if (!isValid())
166 m_scheme = UNKNOWN;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100167
168 return *this;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100169}
170
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100171inline GprsCodingScheme& GprsCodingScheme::operator =(GprsCodingScheme o)
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100172{
173 m_scheme = o.m_scheme;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100174 return *this;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100175}
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100176
177inline GprsCodingScheme GprsCodingScheme::getGprsByNum(unsigned num)
178{
179 if (num < 1 || num > 4)
180 return GprsCodingScheme();
181
182 return GprsCodingScheme(Scheme(CS1 + (num - 1)));
183}
184
185inline GprsCodingScheme GprsCodingScheme::getEgprsByNum(unsigned num)
186{
187 if (num < 1 || num > 9)
188 return GprsCodingScheme();
189
190 return GprsCodingScheme(Scheme(MCS1 + (num - 1)));
191}
192
193/* The coding schemes form a partial ordering */
194inline bool operator ==(GprsCodingScheme a, GprsCodingScheme b)
195{
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100196 return GprsCodingScheme::Scheme(a) == GprsCodingScheme::Scheme(b);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100197}
198
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530199inline bool GprsCodingScheme::operator == (Scheme scheme) const
200{
201 return this->m_scheme == scheme;
202}
203
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100204inline bool operator !=(GprsCodingScheme a, GprsCodingScheme b)
205{
206 return !(a == b);
207}
208
209inline bool operator <(GprsCodingScheme a, GprsCodingScheme b)
210{
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100211 return a.isCompatible(b) &&
212 GprsCodingScheme::Scheme(a) < GprsCodingScheme::Scheme(b);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100213}
214
215inline bool operator >(GprsCodingScheme a, GprsCodingScheme b)
216{
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100217 return b < a;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100218}
219
220inline bool operator <=(GprsCodingScheme a, GprsCodingScheme b)
221{
222 return a == b || a < b;
223}
224
225inline bool operator >=(GprsCodingScheme a, GprsCodingScheme b)
226{
227 return a == b || a > b;
228}
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530229inline GprsCodingScheme::Scheme GprsCodingScheme::get_retx_mcs(
230 const GprsCodingScheme mcs,
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530231 const GprsCodingScheme demanded_mcs,
232 const unsigned arq_type)
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530233{
Max19621362017-09-08 12:33:34 +0200234 OSMO_ASSERT(mcs.to_num() > 0);
235 OSMO_ASSERT(demanded_mcs.to_num() > 0);
236
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530237 return egprs_mcs_retx_tbl[arq_type][mcs.to_num() - 1]
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530238 [demanded_mcs.to_num() - 1];
239}