blob: d6936e18f62c521da6d5c6d5b08b0737a973cc69 [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 Pedrol858f0382021-11-02 14:13:47 +0100171/* Alloc a UL TBF to be assigned over CCCH. Used by request of a "One phase
172 * packet access", where MS requested only 1 PDCH TS (TS 44.018 Table 9.1.8.1). */
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200173struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
174{
175 struct gprs_rlcmac_ul_tbf *tbf;
176
177 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
178 if (!tbf) {
179 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
180 /* Caller will most probably send a Imm Ass Reject after return */
181 return NULL;
182 }
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200183 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_CCCH, NULL);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200184 tbf->contention_resolution_start();
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200185 OSMO_ASSERT(tbf->ms());
186
187 return tbf;
188}
189
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200190/* Create a temporary dummy TBF to Tx a ImmAssReject if allocating a new one during
191 * packet resource Request failed. This is similar as tbf_alloc_ul() but without
192 * calling tbf->setup() (in charge of TFI/USF allocation), and reusing resources
193 * from Packet Resource Request we received. See TS 44.060 sec 7.1.3.2.1 */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200194struct gprs_rlcmac_ul_tbf *handle_tbf_reject(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200195 GprsMs *ms, uint8_t trx_no, uint8_t ts)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200196{
197 struct gprs_rlcmac_ul_tbf *ul_tbf = NULL;
198 struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200199 OSMO_ASSERT(ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200200
201 ul_tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
202 if (!ul_tbf)
203 return ul_tbf;
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200204 talloc_set_destructor(ul_tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100205 new (ul_tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200206
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200207 ul_tbf->control_ts = ts;
208 ul_tbf->trx = trx;
209 ul_tbf->m_ctrs = rate_ctr_group_alloc(ul_tbf, &tbf_ctrg_desc, next_tbf_ctr_group_id++);
210 ul_tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(ul_tbf,
211 &tbf_ul_egprs_ctrg_desc,
212 ul_tbf->m_ctrs->idx);
213 ul_tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(ul_tbf,
214 &tbf_ul_gprs_ctrg_desc,
215 ul_tbf->m_ctrs->idx);
216 if (!ul_tbf->m_ctrs || !ul_tbf->m_ul_egprs_ctrs || !ul_tbf->m_ul_gprs_ctrs) {
217 LOGPTBF(ul_tbf, LOGL_ERROR, "Cound not allocate TBF UL rate counters\n");
218 talloc_free(ul_tbf);
219 return NULL;
220 }
221
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200222 ms_attach_tbf(ms, ul_tbf);
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200223 llist_add(tbf_trx_list((struct gprs_rlcmac_tbf *)ul_tbf), &trx->ul_tbfs);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200224 bts_do_rate_ctr_inc(ul_tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200225 osmo_fsm_inst_dispatch(ul_tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol6ad11a62021-07-27 12:27:08 +0200226 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 +0200227
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200228 return ul_tbf;
229}
230
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100231gprs_rlcmac_ul_tbf::gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms) :
Pau Espin Pedrole9f77d32020-10-23 18:41:40 +0200232 gprs_rlcmac_tbf(bts_, ms, GPRS_RLCMAC_UL_TBF),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200233 m_rx_counter(0),
234 m_contention_resolution_done(0),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200235 m_ul_gprs_ctrs(NULL),
236 m_ul_egprs_ctrs(NULL)
237{
Pau Espin Pedrol7bd92a32021-03-24 13:14:09 +0100238 memset(&m_usf, USF_INVALID, sizeof(m_usf));
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200239
240 memset(&ul_ack_fsm, 0, sizeof(ul_ack_fsm));
241 ul_ack_fsm.tbf = this;
242 ul_ack_fsm.fi = osmo_fsm_inst_alloc(&tbf_ul_ack_fsm, this, &ul_ack_fsm, LOGL_INFO, NULL);
243
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200244}
245
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100246/*
247 * Store received block data in LLC message(s) and forward to SGSN
248 * if complete.
249 */
250int gprs_rlcmac_ul_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
251{
252 const uint8_t *data = _data->block;
253 uint8_t len = _data->len;
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100254 const struct gprs_rlc_data_block_info *rdbi = &_data->block_info;
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200255 enum CodingScheme cs = _data->cs_last;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100256
257 Decoding::RlcData frames[16], *frame;
258 int i, num_frames = 0;
259 uint32_t dummy_tlli;
260
Max0524e382018-01-19 18:22:25 +0100261 LOGPTBFUL(this, LOGL_DEBUG, "Assembling frames: (len=%d)\n", len);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100262
263 num_frames = Decoding::rlc_data_from_ul_data(
Alexander Couzensce936f32016-05-24 14:45:41 +0200264 rdbi, cs, data, &(frames[0]), ARRAY_SIZE(frames),
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100265 &dummy_tlli);
266
267 /* create LLC frames */
268 for (i = 0; i < num_frames; i++) {
269 frame = frames + i;
270
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530271 if (frame->length) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100272 bts_do_rate_ctr_add(bts, CTR_RLC_UL_PAYLOAD_BYTES, frame->length);
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200273
Max0524e382018-01-19 18:22:25 +0100274 LOGPTBFUL(this, LOGL_DEBUG, "Frame %d "
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530275 "starts at offset %d, "
276 "length=%d, is_complete=%d\n",
277 i + 1, frame->offset, frame->length,
278 frame->is_complete);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100279
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530280 m_llc.append_frame(data + frame->offset, frame->length);
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100281 llc_consume(&m_llc, frame->length);
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530282 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100283
284 if (frame->is_complete) {
285 /* send frame to SGSN */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100286 LOGPTBFUL(this, LOGL_DEBUG, "complete UL frame len=%d\n", llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100287 snd_ul_ud();
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100288 bts_do_rate_ctr_add(bts, CTR_LLC_UL_BYTES, llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100289 m_llc.reset();
290 }
291 }
292
293 return 0;
294}
295
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200296void gprs_rlcmac_ul_tbf::contention_resolution_start()
297{
298 /* 3GPP TS 44.018 sec 11.1.2 Timers on the network side: "This timer is
299 * started when a temporary block flow is allocated with an IMMEDIATE
300 * ASSIGNMENT or an IMMEDIATE PACKET ASSIGNMENT or an EC IMMEDIATE
301 * ASSIGNMENT TYPE 1 message during a packet access procedure. It is
302 * stopped when the mobile station has correctly seized the temporary
303 * block flow."
304 * In our code base, it means we want to do contention resolution
305 * timeout only for one-phase packet access, since two-phase is handled
306 * through SBA structs, which are freed by the PDCH UL Controller if the
307 * single allocated block is lost. */
308 T_START(this, T3141, 3141, "Contention resolution (UL-TBF, CCCH)", true);
309}
310void gprs_rlcmac_ul_tbf::contention_resolution_success()
311{
312 if (m_contention_resolution_done)
313 return;
314
315 /* 3GPP TS 44.060 sec 7a.2.1 Contention Resolution */
316 /* 3GPP TS 44.018 3.5.2.1.4 Packet access completion: The one phase
317 packet access procedure is completed at a successful contention
318 resolution. The mobile station has entered the packet transfer mode.
319 Timer T3141 is stopped on the network side */
320 t_stop(T3141, "Contention resolution success (UL-TBF, CCCH)");
321
322 /* now we must set this flag, so we are allowed to assign downlink
323 * TBF on PACCH. it is only allowed when TLLI is acknowledged. */
324 m_contention_resolution_done = 1;
325}
326
Alexander Couzens2fcfc292016-05-24 14:40:03 +0200327/*! \brief receive data from PDCH/L1 */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100328int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100329 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeckfc1b3e62016-01-11 09:58:11 +0100330 uint8_t *data, struct pcu_l1_meas *meas)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100331{
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200332 const struct gprs_rlc_data_block_info *rdbi;
333 struct gprs_rlc_data *block;
334
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100335 int8_t rssi = meas->have_rssi ? meas->rssi : 0;
336
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100337 const uint16_t ws = m_window.ws();
338
Max0524e382018-01-19 18:22:25 +0100339 LOGPTBFUL(this, LOGL_DEBUG, "UL DATA TFI=%d received (V(Q)=%d .. "
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100340 "V(R)=%d)\n", rlc->tfi, this->m_window.v_q(),
341 this->m_window.v_r());
342
343 /* process RSSI */
344 gprs_rlcmac_rssi(this, rssi);
345
346 /* store measurement values */
Pau Espin Pedrolf53815f2021-05-11 14:23:51 +0200347 ms_update_l1_meas(ms(), meas);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100348
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700349 uint32_t new_tlli = GSM_RESERVED_TMSI;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100350 unsigned int block_idx;
351
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100352 /* Increment RX-counter */
353 this->m_rx_counter++;
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530354 update_coding_scheme_counter_ul(rlc->cs);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100355 /* Loop over num_blocks */
356 for (block_idx = 0; block_idx < rlc->num_data_blocks; block_idx++) {
357 int num_chunks;
358 uint8_t *rlc_data;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200359 rdbi = &rlc->block_info[block_idx];
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100360
Max0524e382018-01-19 18:22:25 +0100361 LOGPTBFUL(this, LOGL_DEBUG,
362 "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 +0100363 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100364 rdbi->cv, rdbi->bsn, rdbi->spb,
365 rdbi->pi, rdbi->e, rdbi->ti,
366 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100367
368 /* Check whether the block needs to be decoded */
369
370 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100371 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
372 rdbi->bsn,
373 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200374 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100375 } else if (m_window.is_received(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100376 LOGPTBFUL(this, LOGL_DEBUG,
377 "BSN %d already received\n", rdbi->bsn);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100378 continue;
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200379 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100380
381 /* Store block and meta info to BSN buffer */
382
Max0524e382018-01-19 18:22:25 +0100383 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
384 rdbi->bsn, m_window.v_q(),
385 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100386 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530387 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100388 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100389
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530390 if (rdbi->spb) {
391 egprs_rlc_ul_reseg_bsn_state assemble_status;
392
393 assemble_status = handle_egprs_ul_spb(rlc,
394 block, data, block_idx);
395
396 if (assemble_status != EGPRS_RESEG_DEFAULT)
397 return 0;
398 } else {
399 block->block_info = *rdbi;
400 block->cs_last = rlc->cs;
401 block->len =
402 Decoding::rlc_copy_to_aligned_buffer(rlc,
403 block_idx, data, rlc_data);
404 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100405
Max0524e382018-01-19 18:22:25 +0100406 LOGPTBFUL(this, LOGL_DEBUG,
407 "data_length=%d, data=%s\n",
408 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100409 /* Get/Handle TLLI */
410 if (rdbi->ti) {
411 num_chunks = Decoding::rlc_data_from_ul_data(
412 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
413
414 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100415 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100416 LOGPTBFUL(this, LOGL_NOTICE,
417 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100418 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100419 m_window.invalidate_bsn(rdbi->bsn);
420 continue;
421 }
422 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700423 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100424 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700425 "TLLI is 0x%08x within UL DATA?!?\n",
426 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100427 m_window.invalidate_bsn(rdbi->bsn);
428 continue;
429 }
Max0524e382018-01-19 18:22:25 +0100430 LOGPTBFUL(this, LOGL_INFO,
431 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700432 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200433 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Oliver Smithd3c75912021-07-09 16:37:16 +0200434 bts_pch_timer_stop(bts, ms_imsi(ms()));
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700435 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100436 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100437 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
438 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100439 m_window.invalidate_bsn(rdbi->bsn);
440 continue;
441 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200442 } else if (!is_tlli_valid()) {
443 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
444 m_window.invalidate_bsn(rdbi->bsn);
445 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100446 }
447
448 m_window.receive_bsn(rdbi->bsn);
449 }
450
451 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
452 * This is looped until there is a gap (non received block) or
453 * the window is empty.*/
454 const uint16_t v_q_beg = m_window.v_q();
455 const uint16_t count = m_window.raise_v_q();
456
457 /* Retrieve LLC frames from blocks that are ready */
458 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100459 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100460 assemble_forward_llc(m_rlc.block(index));
461 }
462
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200463 /* Last frame in buffer: */
464 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
465 rdbi = &block->block_info;
466
467 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200468 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200469 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
470 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100471 LOGPTBFUL(this, LOGL_DEBUG,
472 "No gaps in received block, last block: BSN=%d CV=%d\n",
473 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100474 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100475 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedrolc32c4a32021-07-23 18:27:57 +0200476 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_LAST_UL_DATA_RECVD, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100477 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100478 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100479 }
480 }
481
482 /* If TLLI is included or if we received half of the window, we send
483 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200484 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100485
486 return 0;
487}
488
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100489void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200490 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100491{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200492 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100493 bool have_ti = rlc->block_info[0].ti ||
494 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
495
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200496 if (rlc->si) {
497 require_ack = true;
498 LOGPTBFUL(this, LOGL_NOTICE,
499 "Scheduling Ack/Nack, because MS is stalled.\n");
500 }
501 if (have_ti) {
502 require_ack = true;
503 LOGPTBFUL(this, LOGL_DEBUG,
504 "Scheduling Ack/Nack, because TLLI is included.\n");
505 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200506 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200507 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200508 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200509 LOGPTBFUL(this, LOGL_DEBUG,
510 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200511 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200512 LOGPTBFUL(this, LOGL_DEBUG,
513 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200514 }
515 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
516 require_ack = true;
517 LOGPTBFUL(this, LOGL_DEBUG,
518 "Scheduling Ack/Nack, because %d frames received.\n",
519 SEND_ACK_AFTER_FRAMES);
520 }
521
522 if (!require_ack)
523 return;
524
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200525 osmo_fsm_inst_dispatch(this->ul_ack_fsm.fi, TBF_UL_ACK_EV_SCHED_ACK, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100526}
527
Daniel Willmannca102af2014-08-08 12:14:12 +0200528/* Send Uplink unit-data to SGSN. */
529int gprs_rlcmac_ul_tbf::snd_ul_ud()
530{
531 uint8_t qos_profile[3];
532 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100533 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100534 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200535
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100536 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 +0200537 if (!bctx) {
538 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
539 m_llc.reset_frame_space();
540 return -EIO;
541 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200542
Daniel Willmannca102af2014-08-08 12:14:12 +0200543 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100544 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
545 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 +0200546 qos_profile[0] = QOS_PROFILE >> 16;
547 qos_profile[1] = QOS_PROFILE >> 8;
548 qos_profile[2] = QOS_PROFILE;
549 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
550
551 m_llc.reset_frame_space();
552 return 0;
553}
554
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530555egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
556 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
557 uint8_t *data, const uint8_t block_idx)
558{
559 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
560 union split_block_status *spb_status = &block->spb_status;
561 uint8_t *rlc_data = &block->block[0];
562
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100563 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530564
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530565 if (spb_status->block_status_ul &
566 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100567 LOGPTBFUL(this, LOGL_DEBUG,
568 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530569 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
570
571 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
572 block_idx, data, rlc_data + block->len);
573 block->block_info.data_len += rdbi->data_len;
574 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100575 LOGPTBFUL(this, LOGL_DEBUG,
576 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530577
578 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
579 block_idx, data,
580 rlc_data + rlc->block_info[block_idx].data_len);
581
582 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
583 block->block_info = *rdbi;
584 }
585 return spb_status->block_status_ul;
586}
587
588egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
589 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
590 uint8_t *data, const uint8_t block_idx)
591{
592 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
593 uint8_t *rlc_data = &block->block[0];
594 union split_block_status *spb_status = &block->spb_status;
595
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100596 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530597
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530598 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100599 LOGPTBFUL(this, LOGL_DEBUG,
600 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530601
602 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
603 block_idx, data, rlc_data);
604
605 block->block_info.data_len = block->len;
606 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
607 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100608 LOGPTBFUL(this, LOGL_DEBUG,
609 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530610
611 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
612 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
613 block_idx, data, rlc_data);
614 block->block_info = *rdbi;
615 }
616 return spb_status->block_status_ul;
617}
618
619egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
620 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
621 uint8_t *data, const uint8_t block_idx)
622{
623 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
624
Max0524e382018-01-19 18:22:25 +0100625 LOGPTBFUL(this, LOGL_DEBUG,
626 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100627 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530628
629 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
630
631 /* Section 10.4.8b of 44.060*/
632 if (rdbi->spb == 2)
633 assemble_status = handle_egprs_ul_first_seg(rlc,
634 block, data, block_idx);
635 else if (rdbi->spb == 3)
636 assemble_status = handle_egprs_ul_second_seg(rlc,
637 block, data, block_idx);
638 else {
Max0524e382018-01-19 18:22:25 +0100639 LOGPTBFUL(this, LOGL_ERROR,
640 "spb(%d) Not supported SPB for this EGPRS configuration\n",
641 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530642 }
643
644 /*
645 * When the block is successfully constructed out of segmented blocks
646 * upgrade the MCS to the type 2
647 */
648 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200649 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100650 case MCS3 :
651 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100652 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530653 break;
Maxbea2edb2019-03-06 17:04:59 +0100654 case MCS2 :
655 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100656 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530657 break;
Maxbea2edb2019-03-06 17:04:59 +0100658 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100659 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100660 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530661 break;
662 default:
Max0524e382018-01-19 18:22:25 +0100663 LOGPTBFUL(this, LOGL_ERROR,
664 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100665 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530666 break;
667 }
668 }
669 return assemble_status;
670}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530671
Maxfb59a932019-03-13 18:40:19 +0100672void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530673{
Maxfb59a932019-03-13 18:40:19 +0100674 switch (cs) {
675 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100676 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200677 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS1));
Maxfb59a932019-03-13 18:40:19 +0100678 break;
679 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100680 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200681 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS2));
Maxfb59a932019-03-13 18:40:19 +0100682 break;
683 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100684 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200685 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS3));
Maxfb59a932019-03-13 18:40:19 +0100686 break;
687 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100688 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200689 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS4));
Maxfb59a932019-03-13 18:40:19 +0100690 break;
691 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100692 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200693 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS1));
Maxfb59a932019-03-13 18:40:19 +0100694 break;
695 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100696 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200697 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS2));
Maxfb59a932019-03-13 18:40:19 +0100698 break;
699 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100700 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200701 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS3));
Maxfb59a932019-03-13 18:40:19 +0100702 break;
703 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100704 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200705 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS4));
Maxfb59a932019-03-13 18:40:19 +0100706 break;
707 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100708 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200709 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS5));
Maxfb59a932019-03-13 18:40:19 +0100710 break;
711 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100712 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200713 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS6));
Maxfb59a932019-03-13 18:40:19 +0100714 break;
715 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100716 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200717 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS7));
Maxfb59a932019-03-13 18:40:19 +0100718 break;
719 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100720 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200721 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS8));
Maxfb59a932019-03-13 18:40:19 +0100722 break;
723 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100724 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200725 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS9));
Maxfb59a932019-03-13 18:40:19 +0100726 break;
727 default:
728 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
729 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530730 }
731}
sivasankari8adfcd02017-01-16 15:41:21 +0530732
Max9d7357e2017-12-14 15:02:33 +0100733void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530734{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100735 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100736 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100737 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 +0100738 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530739 m_window.set_ws(ws);
740}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200741
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200742gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200743{
744 return &m_window;
745}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100746
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100747void gprs_rlcmac_ul_tbf::usf_timeout()
748{
Pau Espin Pedrolcfb61d92021-07-26 17:17:02 +0200749 if (n_inc(N3101))
Pau Espin Pedrol55f600b2021-07-26 15:54:39 +0200750 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_MAX_N3101, NULL);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100751}
752
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100753struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
754{
755 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
756 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
757 else
758 return NULL;
759}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100760
761void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
762{
763 tbf->usf_timeout();
764}
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +0200765
766
767bool ul_tbf_contention_resolution_done(const struct gprs_rlcmac_ul_tbf *tbf)
768{
769 return tbf->m_contention_resolution_done;
770}
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200771
772struct osmo_fsm_inst *tbf_ul_ack_fi(const struct gprs_rlcmac_ul_tbf *tbf)
773{
774 return tbf->ul_ack_fsm.fi;
775}
776
777void ul_tbf_contention_resolution_success(struct gprs_rlcmac_ul_tbf *tbf)
778{
779 return tbf->contention_resolution_success();
780}