blob: 31f094021a824abc3f90d080f9c273c32affeaad [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;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100103
104 static GprsCodingScheme getBySizeUL(unsigned size);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100105 static GprsCodingScheme getGprsByNum(unsigned num);
106 static GprsCodingScheme getEgprsByNum(unsigned num);
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100107
Jacob Erlbeck7b579972016-01-05 15:54:24 +0100108 static const char *modeName(Mode mode);
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530109 static Scheme get_retx_mcs(const GprsCodingScheme mcs,
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530110 const GprsCodingScheme retx_mcs,
111 const unsigned arq_type);
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530112
Aravind Sirsikar91495522016-07-12 14:17:12 +0530113 static enum Scheme egprs_mcs_retx_tbl[MAX_NUM_ARQ]
114 [MAX_NUM_MCS][MAX_NUM_MCS];
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100115private:
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100116 GprsCodingScheme(int s); /* fail on use */
117 GprsCodingScheme& operator =(int s); /* fail on use */
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100118 enum Scheme m_scheme;
119};
120
Maxb3a17d62017-12-21 12:11:33 +0100121inline uint8_t GprsCodingScheme::to_num() const
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100122{
123 if (isGprs())
124 return (m_scheme - CS1) + 1;
125
126 if (isEgprs())
127 return (m_scheme - MCS1) + 1;
128
129 return 0;
130}
131
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100132inline bool GprsCodingScheme::isCompatible(Mode mode) const
133{
134 switch (mode) {
135 case GPRS: return isGprs();
136 case EGPRS_GMSK: return isEgprsGmsk();
137 case EGPRS: return isEgprs();
138 }
139
140 return false;
141}
142
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100143inline bool GprsCodingScheme::isCompatible(GprsCodingScheme o) const
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100144{
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100145 return (isGprs() && o.isGprs()) || (isEgprs() && o.isEgprs());
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100146}
147
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100148inline GprsCodingScheme::GprsCodingScheme(Scheme s)
149 : m_scheme(s)
150{
151 if (!isValid())
152 m_scheme = UNKNOWN;
153}
154
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100155inline GprsCodingScheme& GprsCodingScheme::operator =(Scheme s)
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100156{
157 m_scheme = s;
158
159 if (!isValid())
160 m_scheme = UNKNOWN;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100161
162 return *this;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100163}
164
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100165inline GprsCodingScheme& GprsCodingScheme::operator =(GprsCodingScheme o)
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100166{
167 m_scheme = o.m_scheme;
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100168 return *this;
Jacob Erlbeck409f9802015-11-30 18:06:50 +0100169}
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100170
171inline GprsCodingScheme GprsCodingScheme::getGprsByNum(unsigned num)
172{
173 if (num < 1 || num > 4)
174 return GprsCodingScheme();
175
176 return GprsCodingScheme(Scheme(CS1 + (num - 1)));
177}
178
179inline GprsCodingScheme GprsCodingScheme::getEgprsByNum(unsigned num)
180{
181 if (num < 1 || num > 9)
182 return GprsCodingScheme();
183
184 return GprsCodingScheme(Scheme(MCS1 + (num - 1)));
185}
186
187/* The coding schemes form a partial ordering */
188inline bool operator ==(GprsCodingScheme a, GprsCodingScheme b)
189{
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100190 return GprsCodingScheme::Scheme(a) == GprsCodingScheme::Scheme(b);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100191}
192
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530193inline bool GprsCodingScheme::operator == (Scheme scheme) const
194{
195 return this->m_scheme == scheme;
196}
197
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100198inline bool operator !=(GprsCodingScheme a, GprsCodingScheme b)
199{
200 return !(a == b);
201}
202
203inline bool operator <(GprsCodingScheme a, GprsCodingScheme b)
204{
Jacob Erlbeck7e7a2612016-01-07 18:07:54 +0100205 return a.isCompatible(b) &&
206 GprsCodingScheme::Scheme(a) < GprsCodingScheme::Scheme(b);
Jacob Erlbeck4c9e5492016-01-04 16:00:05 +0100207}
208
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530209inline GprsCodingScheme::Scheme GprsCodingScheme::get_retx_mcs(
210 const GprsCodingScheme mcs,
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530211 const GprsCodingScheme demanded_mcs,
212 const unsigned arq_type)
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530213{
Max19621362017-09-08 12:33:34 +0200214 OSMO_ASSERT(mcs.to_num() > 0);
215 OSMO_ASSERT(demanded_mcs.to_num() > 0);
216
Aravind Sirsikar50b09702016-08-22 17:21:10 +0530217 return egprs_mcs_retx_tbl[arq_type][mcs.to_num() - 1]
Aravind Sirsikare8ccafc2016-07-13 11:37:47 +0530218 [demanded_mcs.to_num() - 1];
219}