blob: d4f2093a804cdab67855b0379620dfc1482e620c [file] [log] [blame]
Daniel Willmannca102af2014-08-08 12:14:12 +02001/* Copied from tbf.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22#include <bts.h>
Oliver Smithd3c75912021-07-09 16:37:16 +020023#include <bts_pch_timer.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020024#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020025#include <tbf_ul.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020026#include <rlc.h>
27#include <encoding.h>
28#include <gprs_rlcmac.h>
29#include <gprs_debug.h>
30#include <gprs_bssgp_pcu.h>
31#include <decoding.h>
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020032#include <pcu_l1_if.h>
Max1187a772018-01-26 13:31:42 +010033#include <gprs_ms.h>
34#include <llc.h>
sivasankari8adfcd02017-01-16 15:41:21 +053035#include "pcu_utils.h"
36
Daniel Willmannca102af2014-08-08 12:14:12 +020037extern "C" {
38#include <osmocom/core/msgb.h>
39#include <osmocom/core/talloc.h>
Max1187a772018-01-26 13:31:42 +010040 #include <osmocom/core/bitvec.h>
41 #include <osmocom/core/logging.h>
42 #include <osmocom/core/rate_ctr.h>
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020043 #include <osmocom/core/stats.h>
Max1187a772018-01-26 13:31:42 +010044 #include <osmocom/core/utils.h>
45 #include <osmocom/gprs/gprs_bssgp_bss.h>
46 #include <osmocom/gprs/protocol/gsm_08_18.h>
47 #include <osmocom/gsm/tlv.h>
Max136ebcc2019-03-05 14:59:03 +010048 #include "coding_scheme.h"
Daniel Willmannca102af2014-08-08 12:14:12 +020049}
50
51#include <errno.h>
52#include <string.h>
53
54/* After receiving these frames, we send ack/nack. */
55#define SEND_ACK_AFTER_FRAMES 20
56
57extern void *tall_pcu_ctx;
58
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020059static const struct rate_ctr_desc tbf_ul_gprs_ctr_description[] = {
60 { "gprs:uplink:cs1", "CS1 " },
61 { "gprs:uplink:cs2", "CS2 " },
62 { "gprs:uplink:cs3", "CS3 " },
63 { "gprs:uplink:cs4", "CS4 " },
64};
65
66static const struct rate_ctr_desc tbf_ul_egprs_ctr_description[] = {
67 { "egprs:uplink:mcs1", "MCS1 " },
68 { "egprs:uplink:mcs2", "MCS2 " },
69 { "egprs:uplink:mcs3", "MCS3 " },
70 { "egprs:uplink:mcs4", "MCS4 " },
71 { "egprs:uplink:mcs5", "MCS5 " },
72 { "egprs:uplink:mcs6", "MCS6 " },
73 { "egprs:uplink:mcs7", "MCS7 " },
74 { "egprs:uplink:mcs8", "MCS8 " },
75 { "egprs:uplink:mcs9", "MCS9 " },
76};
77
78static const struct rate_ctr_group_desc tbf_ul_gprs_ctrg_desc = {
79 "tbf:gprs",
80 "Data Blocks",
81 OSMO_STATS_CLASS_SUBSCRIBER,
82 ARRAY_SIZE(tbf_ul_gprs_ctr_description),
83 tbf_ul_gprs_ctr_description,
84};
85
86static const struct rate_ctr_group_desc tbf_ul_egprs_ctrg_desc = {
87 "tbf:egprs",
88 "Data Blocks",
89 OSMO_STATS_CLASS_SUBSCRIBER,
90 ARRAY_SIZE(tbf_ul_egprs_ctr_description),
91 tbf_ul_egprs_ctr_description,
92};
93
Pau Espin Pedrol131deb02021-07-26 18:24:14 +020094gprs_rlcmac_ul_tbf::~gprs_rlcmac_ul_tbf()
95{
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +020096 osmo_fsm_inst_free(ul_ack_fsm.fi);
97 ul_ack_fsm.fi = NULL;
98
Pau Espin Pedrol131deb02021-07-26 18:24:14 +020099 rate_ctr_group_free(m_ul_egprs_ctrs);
100 rate_ctr_group_free(m_ul_gprs_ctrs);
101 /* ~gprs_rlcmac_tbf() is called automatically upon return */
102}
103
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200104static int ul_tbf_dtor(struct gprs_rlcmac_ul_tbf *tbf)
105{
106 tbf->~gprs_rlcmac_ul_tbf();
107 return 0;
108}
109
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200110/* Generic function to alloc a UL TBF, later configured to be assigned either over CCCH or PACCH */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200111struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx, bool single_slot)
112{
113 struct gprs_rlcmac_ul_tbf *tbf;
114 int rc;
115
116 OSMO_ASSERT(ms != NULL);
117
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100118 LOGPMS(ms, DTBF, LOGL_DEBUG, "********** UL-TBF starts here **********\n");
119 LOGPMS(ms, DTBF, LOGL_INFO, "Allocating UL TBF\n");
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200120
121 tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
122 if (!tbf)
123 return NULL;
124 talloc_set_destructor(tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100125 new (tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200126
127 rc = tbf->setup(use_trx, single_slot);
128
129 /* if no resource */
130 if (rc < 0) {
131 talloc_free(tbf);
132 return NULL;
133 }
134
135 if (tbf->is_egprs_enabled())
136 tbf->set_window_size();
137
138 tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(tbf,
139 &tbf_ul_egprs_ctrg_desc, tbf->m_ctrs->idx);
140 tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(tbf,
141 &tbf_ul_gprs_ctrg_desc, tbf->m_ctrs->idx);
142 if (!tbf->m_ul_egprs_ctrs || !tbf->m_ul_gprs_ctrs) {
143 LOGPTBF(tbf, LOGL_ERROR, "Couldn't allocate TBF UL counters\n");
144 talloc_free(tbf);
145 return NULL;
146 }
147
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200148 llist_add_tail(tbf_trx_list(tbf), &tbf->trx->ul_tbfs);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100149 bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200150
151 return tbf;
152}
153
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200154/* Alloc a UL TBF to be assigned over PACCH */
Pau Espin Pedrolc6571b52021-05-10 17:10:37 +0200155gprs_rlcmac_ul_tbf *tbf_alloc_ul_pacch(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx,
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200156 uint32_t tlli)
157{
158 struct gprs_rlcmac_ul_tbf *tbf;
159
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200160 tbf = tbf_alloc_ul_tbf(bts, ms, use_trx, false);
161 if (!tbf) {
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100162 LOGPMS(ms, DTBF, LOGL_NOTICE, "No PDCH resource\n");
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200163 /* Caller will most probably send a Imm Ass Reject after return */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200164 return NULL;
165 }
166 tbf->m_contention_resolution_done = 1;
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200167 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200168 tbf->update_ms(tlli, GPRS_RLCMAC_UL_TBF);
169 OSMO_ASSERT(tbf->ms());
170
171 return tbf;
172}
173
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200174/* Alloc a UL TBF to be assigned over CCCH */
175struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
176{
177 struct gprs_rlcmac_ul_tbf *tbf;
178
179 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
180 if (!tbf) {
181 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
182 /* Caller will most probably send a Imm Ass Reject after return */
183 return NULL;
184 }
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200185 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_CCCH, NULL);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200186 tbf->contention_resolution_start();
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200187 OSMO_ASSERT(tbf->ms());
188
189 return tbf;
190}
191
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200192/* Create a temporary dummy TBF to Tx a ImmAssReject if allocating a new one during
193 * packet resource Request failed. This is similar as tbf_alloc_ul() but without
194 * calling tbf->setup() (in charge of TFI/USF allocation), and reusing resources
195 * from Packet Resource Request we received. See TS 44.060 sec 7.1.3.2.1 */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200196struct gprs_rlcmac_ul_tbf *handle_tbf_reject(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200197 GprsMs *ms, uint8_t trx_no, uint8_t ts)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200198{
199 struct gprs_rlcmac_ul_tbf *ul_tbf = NULL;
200 struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200201 OSMO_ASSERT(ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200202
203 ul_tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
204 if (!ul_tbf)
205 return ul_tbf;
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200206 talloc_set_destructor(ul_tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100207 new (ul_tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200208
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200209 ul_tbf->control_ts = ts;
210 ul_tbf->trx = trx;
211 ul_tbf->m_ctrs = rate_ctr_group_alloc(ul_tbf, &tbf_ctrg_desc, next_tbf_ctr_group_id++);
212 ul_tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(ul_tbf,
213 &tbf_ul_egprs_ctrg_desc,
214 ul_tbf->m_ctrs->idx);
215 ul_tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(ul_tbf,
216 &tbf_ul_gprs_ctrg_desc,
217 ul_tbf->m_ctrs->idx);
218 if (!ul_tbf->m_ctrs || !ul_tbf->m_ul_egprs_ctrs || !ul_tbf->m_ul_gprs_ctrs) {
219 LOGPTBF(ul_tbf, LOGL_ERROR, "Cound not allocate TBF UL rate counters\n");
220 talloc_free(ul_tbf);
221 return NULL;
222 }
223
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200224 ms_attach_tbf(ms, ul_tbf);
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200225 llist_add(tbf_trx_list((struct gprs_rlcmac_tbf *)ul_tbf), &trx->ul_tbfs);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200226 bts_do_rate_ctr_inc(ul_tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200227 osmo_fsm_inst_dispatch(ul_tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol6ad11a62021-07-27 12:27:08 +0200228 osmo_fsm_inst_dispatch(ul_tbf->ul_ass_fsm.fi, TBF_UL_ASS_EV_SCHED_ASS_REJ, NULL);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200229
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200230 return ul_tbf;
231}
232
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100233gprs_rlcmac_ul_tbf::gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms) :
Pau Espin Pedrole9f77d32020-10-23 18:41:40 +0200234 gprs_rlcmac_tbf(bts_, ms, GPRS_RLCMAC_UL_TBF),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200235 m_rx_counter(0),
236 m_contention_resolution_done(0),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200237 m_ul_gprs_ctrs(NULL),
238 m_ul_egprs_ctrs(NULL)
239{
Pau Espin Pedrol7bd92a32021-03-24 13:14:09 +0100240 memset(&m_usf, USF_INVALID, sizeof(m_usf));
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200241
242 memset(&ul_ack_fsm, 0, sizeof(ul_ack_fsm));
243 ul_ack_fsm.tbf = this;
244 ul_ack_fsm.fi = osmo_fsm_inst_alloc(&tbf_ul_ack_fsm, this, &ul_ack_fsm, LOGL_INFO, NULL);
245
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200246}
247
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100248/*
249 * Store received block data in LLC message(s) and forward to SGSN
250 * if complete.
251 */
252int gprs_rlcmac_ul_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
253{
254 const uint8_t *data = _data->block;
255 uint8_t len = _data->len;
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100256 const struct gprs_rlc_data_block_info *rdbi = &_data->block_info;
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200257 enum CodingScheme cs = _data->cs_last;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100258
259 Decoding::RlcData frames[16], *frame;
260 int i, num_frames = 0;
261 uint32_t dummy_tlli;
262
Max0524e382018-01-19 18:22:25 +0100263 LOGPTBFUL(this, LOGL_DEBUG, "Assembling frames: (len=%d)\n", len);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100264
265 num_frames = Decoding::rlc_data_from_ul_data(
Alexander Couzensce936f32016-05-24 14:45:41 +0200266 rdbi, cs, data, &(frames[0]), ARRAY_SIZE(frames),
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100267 &dummy_tlli);
268
269 /* create LLC frames */
270 for (i = 0; i < num_frames; i++) {
271 frame = frames + i;
272
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530273 if (frame->length) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100274 bts_do_rate_ctr_add(bts, CTR_RLC_UL_PAYLOAD_BYTES, frame->length);
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200275
Max0524e382018-01-19 18:22:25 +0100276 LOGPTBFUL(this, LOGL_DEBUG, "Frame %d "
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530277 "starts at offset %d, "
278 "length=%d, is_complete=%d\n",
279 i + 1, frame->offset, frame->length,
280 frame->is_complete);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100281
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530282 m_llc.append_frame(data + frame->offset, frame->length);
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100283 llc_consume(&m_llc, frame->length);
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530284 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100285
286 if (frame->is_complete) {
287 /* send frame to SGSN */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100288 LOGPTBFUL(this, LOGL_DEBUG, "complete UL frame len=%d\n", llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100289 snd_ul_ud();
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100290 bts_do_rate_ctr_add(bts, CTR_LLC_UL_BYTES, llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100291 m_llc.reset();
292 }
293 }
294
295 return 0;
296}
297
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200298void gprs_rlcmac_ul_tbf::contention_resolution_start()
299{
300 /* 3GPP TS 44.018 sec 11.1.2 Timers on the network side: "This timer is
301 * started when a temporary block flow is allocated with an IMMEDIATE
302 * ASSIGNMENT or an IMMEDIATE PACKET ASSIGNMENT or an EC IMMEDIATE
303 * ASSIGNMENT TYPE 1 message during a packet access procedure. It is
304 * stopped when the mobile station has correctly seized the temporary
305 * block flow."
306 * In our code base, it means we want to do contention resolution
307 * timeout only for one-phase packet access, since two-phase is handled
308 * through SBA structs, which are freed by the PDCH UL Controller if the
309 * single allocated block is lost. */
310 T_START(this, T3141, 3141, "Contention resolution (UL-TBF, CCCH)", true);
311}
312void gprs_rlcmac_ul_tbf::contention_resolution_success()
313{
314 if (m_contention_resolution_done)
315 return;
316
317 /* 3GPP TS 44.060 sec 7a.2.1 Contention Resolution */
318 /* 3GPP TS 44.018 3.5.2.1.4 Packet access completion: The one phase
319 packet access procedure is completed at a successful contention
320 resolution. The mobile station has entered the packet transfer mode.
321 Timer T3141 is stopped on the network side */
322 t_stop(T3141, "Contention resolution success (UL-TBF, CCCH)");
323
324 /* now we must set this flag, so we are allowed to assign downlink
325 * TBF on PACCH. it is only allowed when TLLI is acknowledged. */
326 m_contention_resolution_done = 1;
327}
328
Alexander Couzens2fcfc292016-05-24 14:40:03 +0200329/*! \brief receive data from PDCH/L1 */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100330int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100331 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeckfc1b3e62016-01-11 09:58:11 +0100332 uint8_t *data, struct pcu_l1_meas *meas)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100333{
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200334 const struct gprs_rlc_data_block_info *rdbi;
335 struct gprs_rlc_data *block;
336
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100337 int8_t rssi = meas->have_rssi ? meas->rssi : 0;
338
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100339 const uint16_t ws = m_window.ws();
340
Max0524e382018-01-19 18:22:25 +0100341 LOGPTBFUL(this, LOGL_DEBUG, "UL DATA TFI=%d received (V(Q)=%d .. "
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100342 "V(R)=%d)\n", rlc->tfi, this->m_window.v_q(),
343 this->m_window.v_r());
344
345 /* process RSSI */
346 gprs_rlcmac_rssi(this, rssi);
347
348 /* store measurement values */
Pau Espin Pedrolf53815f2021-05-11 14:23:51 +0200349 ms_update_l1_meas(ms(), meas);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100350
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700351 uint32_t new_tlli = GSM_RESERVED_TMSI;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100352 unsigned int block_idx;
353
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100354 /* Increment RX-counter */
355 this->m_rx_counter++;
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530356 update_coding_scheme_counter_ul(rlc->cs);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100357 /* Loop over num_blocks */
358 for (block_idx = 0; block_idx < rlc->num_data_blocks; block_idx++) {
359 int num_chunks;
360 uint8_t *rlc_data;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200361 rdbi = &rlc->block_info[block_idx];
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100362
Max0524e382018-01-19 18:22:25 +0100363 LOGPTBFUL(this, LOGL_DEBUG,
364 "Got %s RLC data block: CV=%d, BSN=%d, SPB=%d, PI=%d, E=%d, TI=%d, bitoffs=%d\n",
Max136ebcc2019-03-05 14:59:03 +0100365 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100366 rdbi->cv, rdbi->bsn, rdbi->spb,
367 rdbi->pi, rdbi->e, rdbi->ti,
368 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100369
370 /* Check whether the block needs to be decoded */
371
372 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100373 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
374 rdbi->bsn,
375 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200376 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100377 } else if (m_window.is_received(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100378 LOGPTBFUL(this, LOGL_DEBUG,
379 "BSN %d already received\n", rdbi->bsn);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100380 continue;
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200381 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100382
383 /* Store block and meta info to BSN buffer */
384
Max0524e382018-01-19 18:22:25 +0100385 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
386 rdbi->bsn, m_window.v_q(),
387 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100388 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530389 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100390 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100391
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530392 if (rdbi->spb) {
393 egprs_rlc_ul_reseg_bsn_state assemble_status;
394
395 assemble_status = handle_egprs_ul_spb(rlc,
396 block, data, block_idx);
397
398 if (assemble_status != EGPRS_RESEG_DEFAULT)
399 return 0;
400 } else {
401 block->block_info = *rdbi;
402 block->cs_last = rlc->cs;
403 block->len =
404 Decoding::rlc_copy_to_aligned_buffer(rlc,
405 block_idx, data, rlc_data);
406 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100407
Max0524e382018-01-19 18:22:25 +0100408 LOGPTBFUL(this, LOGL_DEBUG,
409 "data_length=%d, data=%s\n",
410 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100411 /* Get/Handle TLLI */
412 if (rdbi->ti) {
413 num_chunks = Decoding::rlc_data_from_ul_data(
414 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
415
416 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100417 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100418 LOGPTBFUL(this, LOGL_NOTICE,
419 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100420 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100421 m_window.invalidate_bsn(rdbi->bsn);
422 continue;
423 }
424 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700425 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100426 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700427 "TLLI is 0x%08x within UL DATA?!?\n",
428 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100429 m_window.invalidate_bsn(rdbi->bsn);
430 continue;
431 }
Max0524e382018-01-19 18:22:25 +0100432 LOGPTBFUL(this, LOGL_INFO,
433 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700434 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200435 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Oliver Smithd3c75912021-07-09 16:37:16 +0200436 bts_pch_timer_stop(bts, ms_imsi(ms()));
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700437 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100438 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100439 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
440 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100441 m_window.invalidate_bsn(rdbi->bsn);
442 continue;
443 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200444 } else if (!is_tlli_valid()) {
445 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
446 m_window.invalidate_bsn(rdbi->bsn);
447 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100448 }
449
450 m_window.receive_bsn(rdbi->bsn);
451 }
452
453 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
454 * This is looped until there is a gap (non received block) or
455 * the window is empty.*/
456 const uint16_t v_q_beg = m_window.v_q();
457 const uint16_t count = m_window.raise_v_q();
458
459 /* Retrieve LLC frames from blocks that are ready */
460 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100461 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100462 assemble_forward_llc(m_rlc.block(index));
463 }
464
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200465 /* Last frame in buffer: */
466 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
467 rdbi = &block->block_info;
468
469 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200470 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200471 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
472 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100473 LOGPTBFUL(this, LOGL_DEBUG,
474 "No gaps in received block, last block: BSN=%d CV=%d\n",
475 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100476 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100477 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedrolc32c4a32021-07-23 18:27:57 +0200478 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_LAST_UL_DATA_RECVD, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100479 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100480 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100481 }
482 }
483
484 /* If TLLI is included or if we received half of the window, we send
485 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200486 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100487
488 return 0;
489}
490
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100491void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200492 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100493{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200494 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100495 bool have_ti = rlc->block_info[0].ti ||
496 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
497
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200498 if (rlc->si) {
499 require_ack = true;
500 LOGPTBFUL(this, LOGL_NOTICE,
501 "Scheduling Ack/Nack, because MS is stalled.\n");
502 }
503 if (have_ti) {
504 require_ack = true;
505 LOGPTBFUL(this, LOGL_DEBUG,
506 "Scheduling Ack/Nack, because TLLI is included.\n");
507 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200508 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200509 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200510 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200511 LOGPTBFUL(this, LOGL_DEBUG,
512 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200513 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200514 LOGPTBFUL(this, LOGL_DEBUG,
515 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200516 }
517 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
518 require_ack = true;
519 LOGPTBFUL(this, LOGL_DEBUG,
520 "Scheduling Ack/Nack, because %d frames received.\n",
521 SEND_ACK_AFTER_FRAMES);
522 }
523
524 if (!require_ack)
525 return;
526
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200527 osmo_fsm_inst_dispatch(this->ul_ack_fsm.fi, TBF_UL_ACK_EV_SCHED_ACK, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100528}
529
Daniel Willmannca102af2014-08-08 12:14:12 +0200530/* Send Uplink unit-data to SGSN. */
531int gprs_rlcmac_ul_tbf::snd_ul_ud()
532{
533 uint8_t qos_profile[3];
534 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100535 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100536 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200537
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100538 LOGP(DBSSGP, LOGL_INFO, "LLC [PCU -> SGSN] %s len=%d\n", tbf_name(this), llc_frame_length(&m_llc));
Daniel Willmannca102af2014-08-08 12:14:12 +0200539 if (!bctx) {
540 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
541 m_llc.reset_frame_space();
542 return -EIO;
543 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200544
Daniel Willmannca102af2014-08-08 12:14:12 +0200545 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100546 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
547 tl16v_put(buf, BSSGP_IE_LLC_PDU, sizeof(uint8_t)*llc_frame_length(&m_llc), m_llc.frame);
Daniel Willmannca102af2014-08-08 12:14:12 +0200548 qos_profile[0] = QOS_PROFILE >> 16;
549 qos_profile[1] = QOS_PROFILE >> 8;
550 qos_profile[2] = QOS_PROFILE;
551 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
552
553 m_llc.reset_frame_space();
554 return 0;
555}
556
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530557egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
558 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
559 uint8_t *data, const uint8_t block_idx)
560{
561 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
562 union split_block_status *spb_status = &block->spb_status;
563 uint8_t *rlc_data = &block->block[0];
564
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100565 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530566
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530567 if (spb_status->block_status_ul &
568 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100569 LOGPTBFUL(this, LOGL_DEBUG,
570 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530571 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
572
573 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
574 block_idx, data, rlc_data + block->len);
575 block->block_info.data_len += rdbi->data_len;
576 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100577 LOGPTBFUL(this, LOGL_DEBUG,
578 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530579
580 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
581 block_idx, data,
582 rlc_data + rlc->block_info[block_idx].data_len);
583
584 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
585 block->block_info = *rdbi;
586 }
587 return spb_status->block_status_ul;
588}
589
590egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
591 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
592 uint8_t *data, const uint8_t block_idx)
593{
594 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
595 uint8_t *rlc_data = &block->block[0];
596 union split_block_status *spb_status = &block->spb_status;
597
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100598 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530599
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530600 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100601 LOGPTBFUL(this, LOGL_DEBUG,
602 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530603
604 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
605 block_idx, data, rlc_data);
606
607 block->block_info.data_len = block->len;
608 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
609 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100610 LOGPTBFUL(this, LOGL_DEBUG,
611 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530612
613 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
614 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
615 block_idx, data, rlc_data);
616 block->block_info = *rdbi;
617 }
618 return spb_status->block_status_ul;
619}
620
621egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
622 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
623 uint8_t *data, const uint8_t block_idx)
624{
625 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
626
Max0524e382018-01-19 18:22:25 +0100627 LOGPTBFUL(this, LOGL_DEBUG,
628 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100629 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530630
631 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
632
633 /* Section 10.4.8b of 44.060*/
634 if (rdbi->spb == 2)
635 assemble_status = handle_egprs_ul_first_seg(rlc,
636 block, data, block_idx);
637 else if (rdbi->spb == 3)
638 assemble_status = handle_egprs_ul_second_seg(rlc,
639 block, data, block_idx);
640 else {
Max0524e382018-01-19 18:22:25 +0100641 LOGPTBFUL(this, LOGL_ERROR,
642 "spb(%d) Not supported SPB for this EGPRS configuration\n",
643 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530644 }
645
646 /*
647 * When the block is successfully constructed out of segmented blocks
648 * upgrade the MCS to the type 2
649 */
650 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200651 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100652 case MCS3 :
653 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100654 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530655 break;
Maxbea2edb2019-03-06 17:04:59 +0100656 case MCS2 :
657 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100658 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530659 break;
Maxbea2edb2019-03-06 17:04:59 +0100660 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100661 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100662 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530663 break;
664 default:
Max0524e382018-01-19 18:22:25 +0100665 LOGPTBFUL(this, LOGL_ERROR,
666 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100667 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530668 break;
669 }
670 }
671 return assemble_status;
672}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530673
Maxfb59a932019-03-13 18:40:19 +0100674void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530675{
Maxfb59a932019-03-13 18:40:19 +0100676 switch (cs) {
677 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100678 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200679 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS1));
Maxfb59a932019-03-13 18:40:19 +0100680 break;
681 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100682 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200683 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS2));
Maxfb59a932019-03-13 18:40:19 +0100684 break;
685 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100686 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200687 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS3));
Maxfb59a932019-03-13 18:40:19 +0100688 break;
689 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100690 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200691 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS4));
Maxfb59a932019-03-13 18:40:19 +0100692 break;
693 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100694 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200695 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS1));
Maxfb59a932019-03-13 18:40:19 +0100696 break;
697 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100698 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200699 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS2));
Maxfb59a932019-03-13 18:40:19 +0100700 break;
701 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100702 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200703 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS3));
Maxfb59a932019-03-13 18:40:19 +0100704 break;
705 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100706 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200707 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS4));
Maxfb59a932019-03-13 18:40:19 +0100708 break;
709 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100710 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200711 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS5));
Maxfb59a932019-03-13 18:40:19 +0100712 break;
713 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100714 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200715 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS6));
Maxfb59a932019-03-13 18:40:19 +0100716 break;
717 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100718 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200719 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS7));
Maxfb59a932019-03-13 18:40:19 +0100720 break;
721 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100722 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200723 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS8));
Maxfb59a932019-03-13 18:40:19 +0100724 break;
725 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100726 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200727 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS9));
Maxfb59a932019-03-13 18:40:19 +0100728 break;
729 default:
730 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
731 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530732 }
733}
sivasankari8adfcd02017-01-16 15:41:21 +0530734
Max9d7357e2017-12-14 15:02:33 +0100735void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530736{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100737 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100738 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100739 LOGPTBFUL(this, LOGL_INFO, "setting EGPRS UL window size to %u, base(%u) slots(%u) ws_pdch(%u)\n",
Pau Espin Pedrol519d0712021-01-14 14:30:03 +0100740 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530741 m_window.set_ws(ws);
742}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200743
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200744gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200745{
746 return &m_window;
747}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100748
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100749void gprs_rlcmac_ul_tbf::usf_timeout()
750{
Pau Espin Pedrolcfb61d92021-07-26 17:17:02 +0200751 if (n_inc(N3101))
Pau Espin Pedrol55f600b2021-07-26 15:54:39 +0200752 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_MAX_N3101, NULL);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100753}
754
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100755struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
756{
757 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
758 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
759 else
760 return NULL;
761}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100762
763void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
764{
765 tbf->usf_timeout();
766}
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +0200767
768
769bool ul_tbf_contention_resolution_done(const struct gprs_rlcmac_ul_tbf *tbf)
770{
771 return tbf->m_contention_resolution_done;
772}
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200773
774struct osmo_fsm_inst *tbf_ul_ack_fi(const struct gprs_rlcmac_ul_tbf *tbf)
775{
776 return tbf->ul_ack_fsm.fi;
777}
778
779void ul_tbf_contention_resolution_success(struct gprs_rlcmac_ul_tbf *tbf)
780{
781 return tbf->contention_resolution_success();
782}