blob: 74b2636b3b3821106eb876eba11d6a17f17611d9 [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 Pedrol59223962021-10-18 12:24:38 +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{
157 struct gprs_rlcmac_ul_tbf *tbf;
158
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200159 tbf = tbf_alloc_ul_tbf(bts, ms, use_trx, false);
160 if (!tbf) {
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100161 LOGPMS(ms, DTBF, LOGL_NOTICE, "No PDCH resource\n");
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200162 /* Caller will most probably send a Imm Ass Reject after return */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200163 return NULL;
164 }
165 tbf->m_contention_resolution_done = 1;
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200166 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200167
168 return tbf;
169}
170
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200171/* Alloc a UL TBF to be assigned over CCCH */
172struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
173{
174 struct gprs_rlcmac_ul_tbf *tbf;
175
176 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
177 if (!tbf) {
178 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
179 /* Caller will most probably send a Imm Ass Reject after return */
180 return NULL;
181 }
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200182 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_CCCH, NULL);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200183 tbf->contention_resolution_start();
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200184 OSMO_ASSERT(tbf->ms());
185
186 return tbf;
187}
188
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200189/* Create a temporary dummy TBF to Tx a ImmAssReject if allocating a new one during
190 * packet resource Request failed. This is similar as tbf_alloc_ul() but without
191 * calling tbf->setup() (in charge of TFI/USF allocation), and reusing resources
192 * from Packet Resource Request we received. See TS 44.060 sec 7.1.3.2.1 */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200193struct gprs_rlcmac_ul_tbf *handle_tbf_reject(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200194 GprsMs *ms, uint8_t trx_no, uint8_t ts)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200195{
196 struct gprs_rlcmac_ul_tbf *ul_tbf = NULL;
197 struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200198 OSMO_ASSERT(ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200199
200 ul_tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
201 if (!ul_tbf)
202 return ul_tbf;
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200203 talloc_set_destructor(ul_tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100204 new (ul_tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200205
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200206 ul_tbf->control_ts = ts;
207 ul_tbf->trx = trx;
208 ul_tbf->m_ctrs = rate_ctr_group_alloc(ul_tbf, &tbf_ctrg_desc, next_tbf_ctr_group_id++);
209 ul_tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(ul_tbf,
210 &tbf_ul_egprs_ctrg_desc,
211 ul_tbf->m_ctrs->idx);
212 ul_tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(ul_tbf,
213 &tbf_ul_gprs_ctrg_desc,
214 ul_tbf->m_ctrs->idx);
215 if (!ul_tbf->m_ctrs || !ul_tbf->m_ul_egprs_ctrs || !ul_tbf->m_ul_gprs_ctrs) {
216 LOGPTBF(ul_tbf, LOGL_ERROR, "Cound not allocate TBF UL rate counters\n");
217 talloc_free(ul_tbf);
218 return NULL;
219 }
220
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200221 ms_attach_tbf(ms, ul_tbf);
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200222 llist_add(tbf_trx_list((struct gprs_rlcmac_tbf *)ul_tbf), &trx->ul_tbfs);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200223 bts_do_rate_ctr_inc(ul_tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200224 osmo_fsm_inst_dispatch(ul_tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol6ad11a62021-07-27 12:27:08 +0200225 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 +0200226
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200227 return ul_tbf;
228}
229
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100230gprs_rlcmac_ul_tbf::gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms) :
Pau Espin Pedrole9f77d32020-10-23 18:41:40 +0200231 gprs_rlcmac_tbf(bts_, ms, GPRS_RLCMAC_UL_TBF),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200232 m_rx_counter(0),
233 m_contention_resolution_done(0),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200234 m_ul_gprs_ctrs(NULL),
235 m_ul_egprs_ctrs(NULL)
236{
Pau Espin Pedrol7bd92a32021-03-24 13:14:09 +0100237 memset(&m_usf, USF_INVALID, sizeof(m_usf));
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200238
239 memset(&ul_ack_fsm, 0, sizeof(ul_ack_fsm));
240 ul_ack_fsm.tbf = this;
241 ul_ack_fsm.fi = osmo_fsm_inst_alloc(&tbf_ul_ack_fsm, this, &ul_ack_fsm, LOGL_INFO, NULL);
242
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200243}
244
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100245/*
246 * Store received block data in LLC message(s) and forward to SGSN
247 * if complete.
248 */
249int gprs_rlcmac_ul_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
250{
251 const uint8_t *data = _data->block;
252 uint8_t len = _data->len;
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100253 const struct gprs_rlc_data_block_info *rdbi = &_data->block_info;
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200254 enum CodingScheme cs = _data->cs_last;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100255
256 Decoding::RlcData frames[16], *frame;
257 int i, num_frames = 0;
258 uint32_t dummy_tlli;
259
Max0524e382018-01-19 18:22:25 +0100260 LOGPTBFUL(this, LOGL_DEBUG, "Assembling frames: (len=%d)\n", len);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100261
262 num_frames = Decoding::rlc_data_from_ul_data(
Alexander Couzensce936f32016-05-24 14:45:41 +0200263 rdbi, cs, data, &(frames[0]), ARRAY_SIZE(frames),
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100264 &dummy_tlli);
265
266 /* create LLC frames */
267 for (i = 0; i < num_frames; i++) {
268 frame = frames + i;
269
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530270 if (frame->length) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100271 bts_do_rate_ctr_add(bts, CTR_RLC_UL_PAYLOAD_BYTES, frame->length);
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200272
Max0524e382018-01-19 18:22:25 +0100273 LOGPTBFUL(this, LOGL_DEBUG, "Frame %d "
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530274 "starts at offset %d, "
275 "length=%d, is_complete=%d\n",
276 i + 1, frame->offset, frame->length,
277 frame->is_complete);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100278
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530279 m_llc.append_frame(data + frame->offset, frame->length);
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100280 llc_consume(&m_llc, frame->length);
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530281 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100282
283 if (frame->is_complete) {
284 /* send frame to SGSN */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100285 LOGPTBFUL(this, LOGL_DEBUG, "complete UL frame len=%d\n", llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100286 snd_ul_ud();
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100287 bts_do_rate_ctr_add(bts, CTR_LLC_UL_BYTES, llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100288 m_llc.reset();
289 }
290 }
291
292 return 0;
293}
294
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200295void gprs_rlcmac_ul_tbf::contention_resolution_start()
296{
297 /* 3GPP TS 44.018 sec 11.1.2 Timers on the network side: "This timer is
298 * started when a temporary block flow is allocated with an IMMEDIATE
299 * ASSIGNMENT or an IMMEDIATE PACKET ASSIGNMENT or an EC IMMEDIATE
300 * ASSIGNMENT TYPE 1 message during a packet access procedure. It is
301 * stopped when the mobile station has correctly seized the temporary
302 * block flow."
303 * In our code base, it means we want to do contention resolution
304 * timeout only for one-phase packet access, since two-phase is handled
305 * through SBA structs, which are freed by the PDCH UL Controller if the
306 * single allocated block is lost. */
307 T_START(this, T3141, 3141, "Contention resolution (UL-TBF, CCCH)", true);
308}
309void gprs_rlcmac_ul_tbf::contention_resolution_success()
310{
311 if (m_contention_resolution_done)
312 return;
313
314 /* 3GPP TS 44.060 sec 7a.2.1 Contention Resolution */
315 /* 3GPP TS 44.018 3.5.2.1.4 Packet access completion: The one phase
316 packet access procedure is completed at a successful contention
317 resolution. The mobile station has entered the packet transfer mode.
318 Timer T3141 is stopped on the network side */
319 t_stop(T3141, "Contention resolution success (UL-TBF, CCCH)");
320
321 /* now we must set this flag, so we are allowed to assign downlink
322 * TBF on PACCH. it is only allowed when TLLI is acknowledged. */
323 m_contention_resolution_done = 1;
324}
325
Alexander Couzens2fcfc292016-05-24 14:40:03 +0200326/*! \brief receive data from PDCH/L1 */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100327int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100328 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeckfc1b3e62016-01-11 09:58:11 +0100329 uint8_t *data, struct pcu_l1_meas *meas)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100330{
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200331 const struct gprs_rlc_data_block_info *rdbi;
332 struct gprs_rlc_data *block;
333
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100334 int8_t rssi = meas->have_rssi ? meas->rssi : 0;
335
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100336 const uint16_t ws = m_window.ws();
337
Max0524e382018-01-19 18:22:25 +0100338 LOGPTBFUL(this, LOGL_DEBUG, "UL DATA TFI=%d received (V(Q)=%d .. "
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100339 "V(R)=%d)\n", rlc->tfi, this->m_window.v_q(),
340 this->m_window.v_r());
341
342 /* process RSSI */
343 gprs_rlcmac_rssi(this, rssi);
344
345 /* store measurement values */
Pau Espin Pedrolf53815f2021-05-11 14:23:51 +0200346 ms_update_l1_meas(ms(), meas);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100347
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700348 uint32_t new_tlli = GSM_RESERVED_TMSI;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100349 unsigned int block_idx;
350
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100351 /* Increment RX-counter */
352 this->m_rx_counter++;
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530353 update_coding_scheme_counter_ul(rlc->cs);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100354 /* Loop over num_blocks */
355 for (block_idx = 0; block_idx < rlc->num_data_blocks; block_idx++) {
356 int num_chunks;
357 uint8_t *rlc_data;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200358 rdbi = &rlc->block_info[block_idx];
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100359
Max0524e382018-01-19 18:22:25 +0100360 LOGPTBFUL(this, LOGL_DEBUG,
361 "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 +0100362 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100363 rdbi->cv, rdbi->bsn, rdbi->spb,
364 rdbi->pi, rdbi->e, rdbi->ti,
365 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100366
367 /* Check whether the block needs to be decoded */
368
369 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100370 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
371 rdbi->bsn,
372 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200373 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100374 } else if (m_window.is_received(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100375 LOGPTBFUL(this, LOGL_DEBUG,
376 "BSN %d already received\n", rdbi->bsn);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100377 continue;
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200378 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100379
380 /* Store block and meta info to BSN buffer */
381
Max0524e382018-01-19 18:22:25 +0100382 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
383 rdbi->bsn, m_window.v_q(),
384 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100385 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530386 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100387 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100388
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530389 if (rdbi->spb) {
390 egprs_rlc_ul_reseg_bsn_state assemble_status;
391
392 assemble_status = handle_egprs_ul_spb(rlc,
393 block, data, block_idx);
394
395 if (assemble_status != EGPRS_RESEG_DEFAULT)
396 return 0;
397 } else {
398 block->block_info = *rdbi;
399 block->cs_last = rlc->cs;
400 block->len =
401 Decoding::rlc_copy_to_aligned_buffer(rlc,
402 block_idx, data, rlc_data);
403 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100404
Max0524e382018-01-19 18:22:25 +0100405 LOGPTBFUL(this, LOGL_DEBUG,
406 "data_length=%d, data=%s\n",
407 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100408 /* Get/Handle TLLI */
409 if (rdbi->ti) {
410 num_chunks = Decoding::rlc_data_from_ul_data(
411 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
412
413 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100414 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100415 LOGPTBFUL(this, LOGL_NOTICE,
416 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100417 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100418 m_window.invalidate_bsn(rdbi->bsn);
419 continue;
420 }
421 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700422 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100423 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700424 "TLLI is 0x%08x within UL DATA?!?\n",
425 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100426 m_window.invalidate_bsn(rdbi->bsn);
427 continue;
428 }
Max0524e382018-01-19 18:22:25 +0100429 LOGPTBFUL(this, LOGL_INFO,
430 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700431 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200432 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Oliver Smithd3c75912021-07-09 16:37:16 +0200433 bts_pch_timer_stop(bts, ms_imsi(ms()));
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700434 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100435 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100436 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
437 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100438 m_window.invalidate_bsn(rdbi->bsn);
439 continue;
440 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200441 } else if (!is_tlli_valid()) {
442 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
443 m_window.invalidate_bsn(rdbi->bsn);
444 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100445 }
446
447 m_window.receive_bsn(rdbi->bsn);
448 }
449
450 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
451 * This is looped until there is a gap (non received block) or
452 * the window is empty.*/
453 const uint16_t v_q_beg = m_window.v_q();
454 const uint16_t count = m_window.raise_v_q();
455
456 /* Retrieve LLC frames from blocks that are ready */
457 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100458 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100459 assemble_forward_llc(m_rlc.block(index));
460 }
461
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200462 /* Last frame in buffer: */
463 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
464 rdbi = &block->block_info;
465
466 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200467 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200468 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
469 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100470 LOGPTBFUL(this, LOGL_DEBUG,
471 "No gaps in received block, last block: BSN=%d CV=%d\n",
472 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100473 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100474 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedrolc32c4a32021-07-23 18:27:57 +0200475 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_LAST_UL_DATA_RECVD, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100476 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100477 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100478 }
479 }
480
481 /* If TLLI is included or if we received half of the window, we send
482 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200483 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100484
485 return 0;
486}
487
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100488void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200489 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100490{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200491 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100492 bool have_ti = rlc->block_info[0].ti ||
493 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
494
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200495 if (rlc->si) {
496 require_ack = true;
497 LOGPTBFUL(this, LOGL_NOTICE,
498 "Scheduling Ack/Nack, because MS is stalled.\n");
499 }
500 if (have_ti) {
501 require_ack = true;
502 LOGPTBFUL(this, LOGL_DEBUG,
503 "Scheduling Ack/Nack, because TLLI is included.\n");
504 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200505 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200506 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200507 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200508 LOGPTBFUL(this, LOGL_DEBUG,
509 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200510 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200511 LOGPTBFUL(this, LOGL_DEBUG,
512 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200513 }
514 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
515 require_ack = true;
516 LOGPTBFUL(this, LOGL_DEBUG,
517 "Scheduling Ack/Nack, because %d frames received.\n",
518 SEND_ACK_AFTER_FRAMES);
519 }
520
521 if (!require_ack)
522 return;
523
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200524 osmo_fsm_inst_dispatch(this->ul_ack_fsm.fi, TBF_UL_ACK_EV_SCHED_ACK, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100525}
526
Daniel Willmannca102af2014-08-08 12:14:12 +0200527/* Send Uplink unit-data to SGSN. */
528int gprs_rlcmac_ul_tbf::snd_ul_ud()
529{
530 uint8_t qos_profile[3];
531 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100532 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100533 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200534
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100535 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 +0200536 if (!bctx) {
537 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
538 m_llc.reset_frame_space();
539 return -EIO;
540 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200541
Daniel Willmannca102af2014-08-08 12:14:12 +0200542 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100543 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
544 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 +0200545 qos_profile[0] = QOS_PROFILE >> 16;
546 qos_profile[1] = QOS_PROFILE >> 8;
547 qos_profile[2] = QOS_PROFILE;
548 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
549
550 m_llc.reset_frame_space();
551 return 0;
552}
553
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530554egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
555 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
556 uint8_t *data, const uint8_t block_idx)
557{
558 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
559 union split_block_status *spb_status = &block->spb_status;
560 uint8_t *rlc_data = &block->block[0];
561
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100562 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530563
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530564 if (spb_status->block_status_ul &
565 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100566 LOGPTBFUL(this, LOGL_DEBUG,
567 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530568 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
569
570 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
571 block_idx, data, rlc_data + block->len);
572 block->block_info.data_len += rdbi->data_len;
573 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100574 LOGPTBFUL(this, LOGL_DEBUG,
575 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530576
577 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
578 block_idx, data,
579 rlc_data + rlc->block_info[block_idx].data_len);
580
581 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
582 block->block_info = *rdbi;
583 }
584 return spb_status->block_status_ul;
585}
586
587egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
588 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
589 uint8_t *data, const uint8_t block_idx)
590{
591 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
592 uint8_t *rlc_data = &block->block[0];
593 union split_block_status *spb_status = &block->spb_status;
594
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100595 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530596
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530597 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100598 LOGPTBFUL(this, LOGL_DEBUG,
599 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530600
601 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
602 block_idx, data, rlc_data);
603
604 block->block_info.data_len = block->len;
605 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
606 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100607 LOGPTBFUL(this, LOGL_DEBUG,
608 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530609
610 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
611 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
612 block_idx, data, rlc_data);
613 block->block_info = *rdbi;
614 }
615 return spb_status->block_status_ul;
616}
617
618egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
619 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
620 uint8_t *data, const uint8_t block_idx)
621{
622 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
623
Max0524e382018-01-19 18:22:25 +0100624 LOGPTBFUL(this, LOGL_DEBUG,
625 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100626 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530627
628 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
629
630 /* Section 10.4.8b of 44.060*/
631 if (rdbi->spb == 2)
632 assemble_status = handle_egprs_ul_first_seg(rlc,
633 block, data, block_idx);
634 else if (rdbi->spb == 3)
635 assemble_status = handle_egprs_ul_second_seg(rlc,
636 block, data, block_idx);
637 else {
Max0524e382018-01-19 18:22:25 +0100638 LOGPTBFUL(this, LOGL_ERROR,
639 "spb(%d) Not supported SPB for this EGPRS configuration\n",
640 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530641 }
642
643 /*
644 * When the block is successfully constructed out of segmented blocks
645 * upgrade the MCS to the type 2
646 */
647 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200648 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100649 case MCS3 :
650 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100651 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530652 break;
Maxbea2edb2019-03-06 17:04:59 +0100653 case MCS2 :
654 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100655 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530656 break;
Maxbea2edb2019-03-06 17:04:59 +0100657 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100658 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100659 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530660 break;
661 default:
Max0524e382018-01-19 18:22:25 +0100662 LOGPTBFUL(this, LOGL_ERROR,
663 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100664 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530665 break;
666 }
667 }
668 return assemble_status;
669}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530670
Maxfb59a932019-03-13 18:40:19 +0100671void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530672{
Maxfb59a932019-03-13 18:40:19 +0100673 switch (cs) {
674 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100675 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200676 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS1));
Maxfb59a932019-03-13 18:40:19 +0100677 break;
678 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100679 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200680 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS2));
Maxfb59a932019-03-13 18:40:19 +0100681 break;
682 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100683 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200684 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS3));
Maxfb59a932019-03-13 18:40:19 +0100685 break;
686 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100687 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200688 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS4));
Maxfb59a932019-03-13 18:40:19 +0100689 break;
690 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100691 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200692 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS1));
Maxfb59a932019-03-13 18:40:19 +0100693 break;
694 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100695 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200696 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS2));
Maxfb59a932019-03-13 18:40:19 +0100697 break;
698 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100699 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200700 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS3));
Maxfb59a932019-03-13 18:40:19 +0100701 break;
702 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100703 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200704 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS4));
Maxfb59a932019-03-13 18:40:19 +0100705 break;
706 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100707 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200708 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS5));
Maxfb59a932019-03-13 18:40:19 +0100709 break;
710 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100711 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200712 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS6));
Maxfb59a932019-03-13 18:40:19 +0100713 break;
714 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100715 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200716 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS7));
Maxfb59a932019-03-13 18:40:19 +0100717 break;
718 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100719 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200720 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS8));
Maxfb59a932019-03-13 18:40:19 +0100721 break;
722 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100723 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200724 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS9));
Maxfb59a932019-03-13 18:40:19 +0100725 break;
726 default:
727 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
728 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530729 }
730}
sivasankari8adfcd02017-01-16 15:41:21 +0530731
Max9d7357e2017-12-14 15:02:33 +0100732void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530733{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100734 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100735 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100736 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 +0100737 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530738 m_window.set_ws(ws);
739}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200740
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200741gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200742{
743 return &m_window;
744}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100745
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100746void gprs_rlcmac_ul_tbf::usf_timeout()
747{
Pau Espin Pedrolcfb61d92021-07-26 17:17:02 +0200748 if (n_inc(N3101))
Pau Espin Pedrol55f600b2021-07-26 15:54:39 +0200749 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_MAX_N3101, NULL);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100750}
751
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100752struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
753{
754 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
755 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
756 else
757 return NULL;
758}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100759
760void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
761{
762 tbf->usf_timeout();
763}
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +0200764
765
766bool ul_tbf_contention_resolution_done(const struct gprs_rlcmac_ul_tbf *tbf)
767{
768 return tbf->m_contention_resolution_done;
769}
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200770
771struct osmo_fsm_inst *tbf_ul_ack_fi(const struct gprs_rlcmac_ul_tbf *tbf)
772{
773 return tbf->ul_ack_fsm.fi;
774}
775
776void ul_tbf_contention_resolution_success(struct gprs_rlcmac_ul_tbf *tbf)
777{
778 return tbf->contention_resolution_success();
779}