blob: 9551c5982e1719619f47ad0bc31c5d526172545f [file] [log] [blame]
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +02001/* gprs_rlcmac.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 <gprs_rlcmac.h>
23#include <gprs_debug.h>
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020024#include <bts.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020025#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020026#include <tbf_ul.h>
Max6dc90b82018-02-19 17:17:28 +010027#include <pdch.h>
Jacob Erlbecke2e004e2015-06-18 17:16:26 +020028#include <gprs_ms.h>
Jacob Erlbeck8cba7e92016-01-19 15:48:03 +010029#include <pcu_utils.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020030
31#include <errno.h>
Jacob Erlbeckec478752015-06-19 16:35:38 +020032#include <values.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020033
Max842d7812017-11-01 18:11:24 +010034extern "C" {
35#include "mslot_class.h"
Max1187a772018-01-26 13:31:42 +010036#include <osmocom/core/linuxlist.h>
37#include <osmocom/core/logging.h>
38#include <osmocom/core/utils.h>
Max842d7812017-11-01 18:11:24 +010039}
40
Jacob Erlbeck77da3552015-07-16 18:33:46 +020041/* Consider a PDCH as idle if has at most this number of TBFs assigned to it */
42#define PDCH_IDLE_TBF_THRESH 1
43
Max0e6ac792018-02-19 18:43:01 +010044#define LOGPSL(tbf, level, fmt, args...) LOGP(DRLCMAC, level, "[%s] " fmt, \
45 (tbf->direction == GPRS_RLCMAC_DL_TBF) ? "DL" : "UL", ## args)
46
47#define LOGPAL(tbf, kind, single, trx_n, level, fmt, args...) LOGPSL(tbf, level, \
48 "algo %s <%s> (suggested TRX: %d): " fmt, \
49 kind, single ? "single" : "multi", trx_n, ## args)
50
Jacob Erlbeckea65c722015-06-22 16:14:23 +020051static char *set_flag_chars(char *buf, uint8_t val, char set_char, char unset_char = 0)
52{
53 int i;
54
55 for (i = 0; i < 8; i += 1, val = val >> 1) {
56 if (val & 1)
57 buf[i] = set_char;
58 else if (unset_char)
59 buf[i] = unset_char;
60 }
61
62 return buf;
63}
64
Max731e2bb2018-02-05 16:15:30 +010065static uint8_t find_possible_pdchs(const struct gprs_rlcmac_trx *trx, uint8_t max_slots, uint8_t mask,
66 const char *mask_reason = NULL)
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020067{
Jacob Erlbeckec478752015-06-19 16:35:38 +020068 unsigned ts;
Max731e2bb2018-02-05 16:15:30 +010069 uint8_t valid_ts_set = 0;
Jacob Erlbeck83426b22015-06-30 09:44:05 +020070 int8_t last_tsc = -1; /* must be signed */
Jacob Erlbeckec478752015-06-19 16:35:38 +020071
72 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +010073 const struct gprs_rlcmac_pdch *pdch;
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020074
75 pdch = &trx->pdch[ts];
Holger Hans Peter Freyther17b0d832013-10-19 17:37:48 +020076 if (!pdch->is_enabled()) {
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020077 LOGP(DRLCMAC, LOGL_DEBUG, "- Skipping TS %d, because "
78 "not enabled\n", ts);
79 continue;
80 }
Jacob Erlbeckec478752015-06-19 16:35:38 +020081
82 if (((1 << ts) & mask) == 0) {
83 if (mask_reason)
84 LOGP(DRLCMAC, LOGL_DEBUG,
85 "- Skipping TS %d, because %s\n",
86 ts, mask_reason);
87 continue;
88 }
89
Jacob Erlbeck83426b22015-06-30 09:44:05 +020090 if (max_slots > 1) {
91 /* check if TSC changes, see TS 45.002, 6.4.2 */
92 if (last_tsc < 0)
93 last_tsc = pdch->tsc;
94 else if (last_tsc != pdch->tsc) {
95 LOGP(DRLCMAC, LOGL_ERROR,
96 "Skipping TS %d of TRX=%d, because it "
97 "has different TSC than lower TS of TRX. "
98 "In order to allow multislot, all "
99 "slots must be configured with the same "
100 "TSC!\n", ts, trx->trx_no);
101 continue;
102 }
103 }
104
Jacob Erlbeckec478752015-06-19 16:35:38 +0200105 valid_ts_set |= 1 << ts;
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +0200106 }
107
Jacob Erlbeckec478752015-06-19 16:35:38 +0200108 return valid_ts_set;
109}
110
Maxa76a7d02018-01-26 11:09:16 +0100111static int compute_usage_by_num_tbfs(const struct gprs_rlcmac_pdch *pdch, enum gprs_rlcmac_tbf_direction dir)
Jacob Erlbeckc135b872015-07-09 13:44:18 +0200112{
113 return pdch->num_tbfs(dir);
114}
115
Maxa76a7d02018-01-26 11:09:16 +0100116static int compute_usage_by_reservation(const struct gprs_rlcmac_pdch *pdch, enum gprs_rlcmac_tbf_direction)
Jacob Erlbeckc135b872015-07-09 13:44:18 +0200117{
118 return
119 pdch->num_reserved(GPRS_RLCMAC_DL_TBF) +
120 pdch->num_reserved(GPRS_RLCMAC_UL_TBF);
121}
122
Maxa76a7d02018-01-26 11:09:16 +0100123static int compute_usage_for_algo_a(const struct gprs_rlcmac_pdch *pdch, enum gprs_rlcmac_tbf_direction dir)
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200124{
125 int usage =
126 pdch->num_tbfs(GPRS_RLCMAC_DL_TBF) +
127 pdch->num_tbfs(GPRS_RLCMAC_UL_TBF) +
128 compute_usage_by_reservation(pdch, dir);
129
Maxd000d802017-09-20 17:55:28 +0200130 if (pdch->assigned_tfi(reverse(dir)) == NO_FREE_TFI)
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200131 /* No TFI in the opposite direction, avoid it */
132 usage += 32;
133
134 return usage;
135
136}
137
Maxa76a7d02018-01-26 11:09:16 +0100138/*! Return the TS which corresponds to least busy PDCH
139 *
140 * \param[in] trx Pointer to TRX object
141 * \param[in] dir TBF direction
142 * \param[in] mask set of available timeslots
143 * \param[in] fn Function pointer to function which computes number of associated TBFs
144 * \param[out] free_tfi Free TFI
145 * \param[out] free_usf Free USF
146 * \returns TS number or -1 if unable to find
147 */
148static int find_least_busy_pdch(const struct gprs_rlcmac_trx *trx, enum gprs_rlcmac_tbf_direction dir, uint8_t mask,
149 int (*fn)(const struct gprs_rlcmac_pdch *, enum gprs_rlcmac_tbf_direction dir),
150 int *free_tfi = 0, int *free_usf = 0)
Jacob Erlbeckec478752015-06-19 16:35:38 +0200151{
152 unsigned ts;
153 int min_used = INT_MAX;
154 int min_ts = -1;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200155 int min_tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200156 int min_usf = -1;
157
158 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100159 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbeckec478752015-06-19 16:35:38 +0200160 int num_tbfs;
161 int usf = -1; /* must be signed */
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200162 int tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200163
164 if (((1 << ts) & mask) == 0)
165 continue;
166
Jacob Erlbeckc135b872015-07-09 13:44:18 +0200167 num_tbfs = fn(pdch, dir);
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200168
169 if (num_tbfs < min_used) {
170 /* We have found a candidate */
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200171 /* Make sure that a TFI is available */
172 if (free_tfi) {
Maxc5407c72018-02-05 16:11:36 +0100173 tfi = find_free_tfi(pdch->assigned_tfi(dir));
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200174 if (tfi < 0) {
175 LOGP(DRLCMAC, LOGL_DEBUG,
176 "- Skipping TS %d, because "
177 "no TFI available\n", ts);
178 continue;
179 }
180 }
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200181 /* Make sure that an USF is available */
182 if (dir == GPRS_RLCMAC_UL_TBF) {
Maxadca67b2018-01-31 15:22:36 +0100183 usf = find_free_usf(pdch->assigned_usf());
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200184 if (usf < 0) {
185 LOGP(DRLCMAC, LOGL_DEBUG,
186 "- Skipping TS %d, because "
187 "no USF available\n", ts);
188 continue;
189 }
190 }
191 if (min_ts >= 0)
192 LOGP(DRLCMAC, LOGL_DEBUG,
193 "- Skipping TS %d, because "
194 "num TBFs %d > %d\n",
195 min_ts, min_used, num_tbfs);
196 min_used = num_tbfs;
197 min_ts = ts;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200198 min_tfi = tfi;
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200199 min_usf = usf;
200 } else {
201 LOGP(DRLCMAC, LOGL_DEBUG,
202 "- Skipping TS %d, because "
203 "num TBFs %d >= %d\n",
204 ts, num_tbfs, min_used);
205 }
206 }
207
208 if (min_ts < 0)
209 return -1;
210
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200211 if (free_tfi)
212 *free_tfi = min_tfi;
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200213 if (free_usf)
214 *free_usf = min_usf;
215
216 return min_ts;
217}
218
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200219static void attach_tbf_to_pdch(struct gprs_rlcmac_pdch *pdch,
220 struct gprs_rlcmac_tbf *tbf)
221{
222 if (tbf->pdch[pdch->ts_no])
223 tbf->pdch[pdch->ts_no]->detach_tbf(tbf);
224
225 tbf->pdch[pdch->ts_no] = pdch;
226 pdch->attach_tbf(tbf);
227}
228
Maxa76a7d02018-01-26 11:09:16 +0100229static void assign_uplink_tbf_usf(struct gprs_rlcmac_pdch *pdch, struct gprs_rlcmac_ul_tbf *tbf, uint8_t tfi, int8_t usf)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200230{
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200231 tbf->m_tfi = tfi;
Daniel Willmann7e994e32014-08-07 15:49:21 +0200232 tbf->m_usf[pdch->ts_no] = usf;
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200233 attach_tbf_to_pdch(pdch, tbf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200234}
235
Maxa76a7d02018-01-26 11:09:16 +0100236static void assign_dlink_tbf(struct gprs_rlcmac_pdch *pdch, struct gprs_rlcmac_dl_tbf *tbf, uint8_t tfi)
Holger Hans Peter Freyther8481a052013-09-29 08:08:28 +0200237{
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200238 tbf->m_tfi = tfi;
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200239 attach_tbf_to_pdch(pdch, tbf);
Holger Hans Peter Freyther8481a052013-09-29 08:08:28 +0200240}
241
Maxa76a7d02018-01-26 11:09:16 +0100242static int find_trx(const struct gprs_rlcmac_bts *bts_data, const GprsMs *ms, int8_t use_trx)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200243{
244 unsigned trx_no;
245 unsigned ts;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200246
247 /* We must use the TRX currently actively used by an MS */
248 if (ms && ms->current_trx())
249 return ms->current_trx()->trx_no;
250
251 if (use_trx >= 0 && use_trx < 8)
252 return use_trx;
253
254 /* Find the first TRX that has a PDCH with a free UL and DL TFI */
255 for (trx_no = 0; trx_no < ARRAY_SIZE(bts_data->trx); trx_no += 1) {
Maxa76a7d02018-01-26 11:09:16 +0100256 const struct gprs_rlcmac_trx *trx = &bts_data->trx[trx_no];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200257 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100258 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200259 if (!pdch->is_enabled())
260 continue;
261
Maxd000d802017-09-20 17:55:28 +0200262 if (pdch->assigned_tfi(GPRS_RLCMAC_UL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200263 continue;
264
Maxd000d802017-09-20 17:55:28 +0200265 if (pdch->assigned_tfi(GPRS_RLCMAC_DL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200266 continue;
267
268 return trx_no;
269 }
270 }
271
272 return -EBUSY;
273}
274
Maxa76a7d02018-01-26 11:09:16 +0100275static bool idle_pdch_avail(const struct gprs_rlcmac_bts *bts_data)
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200276{
277 unsigned trx_no;
278 unsigned ts;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200279
280 /* Find the first PDCH with an unused DL TS */
281 for (trx_no = 0; trx_no < ARRAY_SIZE(bts_data->trx); trx_no += 1) {
Maxa76a7d02018-01-26 11:09:16 +0100282 const struct gprs_rlcmac_trx *trx = &bts_data->trx[trx_no];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200283 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100284 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200285 if (!pdch->is_enabled())
286 continue;
287
288 if (pdch->num_tbfs(GPRS_RLCMAC_DL_TBF) > PDCH_IDLE_TBF_THRESH)
289 continue;
290
Maxa76a7d02018-01-26 11:09:16 +0100291 return true;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200292 }
293 }
294
Maxa76a7d02018-01-26 11:09:16 +0100295 return false;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200296}
297
Maxa76a7d02018-01-26 11:09:16 +0100298/*! Return free TFI
299 *
300 * \param[in] bts Pointer to BTS struct
Max7e4921d2017-09-28 16:41:24 +0200301 * \param[in] trx Optional pointer to TRX struct
Maxa76a7d02018-01-26 11:09:16 +0100302 * \param[in] ms Pointer to MS object
303 * \param[in] dir DL or UL direction
304 * \param[in] use_trx which TRX to use or -1 if it should be selected based on what MS uses
305 * \param[out] trx_no_ TRX number on which TFI was found
306 * \returns negative error code or 0 on success
307 */
308static int tfi_find_free(const BTS *bts, const gprs_rlcmac_trx *trx, const GprsMs *ms,
309 enum gprs_rlcmac_tbf_direction dir, int8_t use_trx, uint8_t *trx_no_)
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200310{
311 int tfi;
312 uint8_t trx_no;
313
Max7e4921d2017-09-28 16:41:24 +0200314 if (trx) {
315 if (use_trx >= 0 && use_trx != trx->trx_no) {
316 LOGP(DRLCMAC, LOGL_ERROR, "- Requested incompatible TRX %d (current is %d)\n",
317 use_trx, trx->trx_no);
318 return -EINVAL;
319 }
320 use_trx = trx->trx_no;
321 }
322
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200323 if (use_trx == -1 && ms->current_trx())
324 use_trx = ms->current_trx()->trx_no;
325
326 tfi = bts->tfi_find_free(dir, &trx_no, use_trx);
327 if (tfi < 0)
328 return -EBUSY;
329
330 if (trx_no_)
331 *trx_no_ = trx_no;
332
333 return tfi;
334}
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200335
Maxe9fe0e32017-09-28 15:56:05 +0200336/*! Slot Allocation: Algorithm A
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200337 *
338 * Assign single slot for uplink and downlink
Maxe9fe0e32017-09-28 15:56:05 +0200339 *
340 * \param[in,out] bts Pointer to BTS struct
341 * \param[in,out] ms_ Pointer to MS object
342 * \param[in,out] tbf_ Pointer to TBF struct
343 * \param[in] single flag indicating if we should force single-slot allocation
344 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
345 * \returns negative error code or 0 on success
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200346 */
Maxe9fe0e32017-09-28 15:56:05 +0200347int alloc_algorithm_a(struct gprs_rlcmac_bts *bts, GprsMs *ms_, struct gprs_rlcmac_tbf *tbf_, bool single,
348 int8_t use_trx)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200349{
350 struct gprs_rlcmac_pdch *pdch;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200351 int ts = -1;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200352 uint8_t ul_slots, dl_slots;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200353 int trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200354 int tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200355 int usf = -1;
Max731e2bb2018-02-05 16:15:30 +0100356 uint8_t mask = 0xff;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200357 const char *mask_reason = NULL;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200358 const GprsMs *ms = ms_;
359 const gprs_rlcmac_tbf *tbf = tbf_;
360 gprs_rlcmac_trx *trx = ms->current_trx();
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200361
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200362 LOGPAL(tbf, "A", single, use_trx, LOGL_DEBUG, "Alloc start\n");
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200363
Maxa76a7d02018-01-26 11:09:16 +0100364 trx_no = find_trx(bts, ms, use_trx);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200365 if (trx_no < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200366 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100367 "failed to find a usable TRX (TFI exhausted)\n");
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200368 return trx_no;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200369 }
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200370 if (!trx)
371 trx = &bts->trx[trx_no];
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200372
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200373 dl_slots = ms->reserved_dl_slots();
374 ul_slots = ms->reserved_ul_slots();
375
376 ts = ms->first_common_ts();
377
378 if (ts >= 0) {
Jacob Erlbeckec478752015-06-19 16:35:38 +0200379 mask_reason = "need to reuse TS";
Jacob Erlbeckec478752015-06-19 16:35:38 +0200380 mask = 1 << ts;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200381 } else if (dl_slots || ul_slots) {
382 mask_reason = "need to use a reserved common TS";
383 mask = dl_slots & ul_slots;
384 }
Jacob Erlbeckec478752015-06-19 16:35:38 +0200385
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200386 mask = find_possible_pdchs(trx, 1, mask, mask_reason);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200387 if (!mask)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200388 return -EINVAL;
389
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200390 ts = find_least_busy_pdch(trx, tbf->direction, mask,
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200391 compute_usage_for_algo_a,
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200392 &tfi, &usf);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200393
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200394 if (tbf->direction == GPRS_RLCMAC_UL_TBF && usf < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200395 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100396 "failed to allocate a TS, no USF available\n");
Jacob Erlbeckec478752015-06-19 16:35:38 +0200397 return -EBUSY;
398 }
399
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200400 if (ts < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200401 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100402 "failed to allocate a TS, no TFI available\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200403 return -EBUSY;
404 }
405
406 pdch = &trx->pdch[ts];
407
408 /* The allocation will be successful, so the system state and tbf_/ms_
409 * may be modified from now on. */
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200410 if (tbf->direction == GPRS_RLCMAC_UL_TBF) {
Jacob Erlbeckaa9daa12015-12-28 18:49:12 +0100411 struct gprs_rlcmac_ul_tbf *ul_tbf = as_ul_tbf(tbf_);
Max0e6ac792018-02-19 18:43:01 +0100412 LOGPSL(tbf, LOGL_DEBUG, "Assign uplink TS=%d TFI=%d USF=%d\n", ts, tfi, usf);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200413 assign_uplink_tbf_usf(pdch, ul_tbf, tfi, usf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200414 } else {
Jacob Erlbeckaa9daa12015-12-28 18:49:12 +0100415 struct gprs_rlcmac_dl_tbf *dl_tbf = as_dl_tbf(tbf_);
Max0e6ac792018-02-19 18:43:01 +0100416 LOGPSL(tbf, LOGL_DEBUG, "Assign downlink TS=%d TFI=%d\n", ts, tfi);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200417 assign_dlink_tbf(pdch, dl_tbf, tfi);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200418 }
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200419
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200420 tbf_->trx = trx;
421 /* the only one TS is the common TS */
422 tbf_->first_ts = tbf_->first_common_ts = ts;
423 ms_->set_reserved_slots(trx, 1 << ts, 1 << ts);
424
425 tbf_->upgrade_to_multislot = 0;
Pau Espin Pedrol2338e532020-05-12 20:54:35 +0200426 bts->bts->do_rate_ctr_inc(CTR_TBF_ALLOC_ALGO_A);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200427 return 0;
428}
429
Maxadca67b2018-01-31 15:22:36 +0100430/*! Compute capacity of a given TRX
431 *
432 * \param[in] trx Pointer to TRX object
433 * \param[in] rx_window Receive window
434 * \param[in] tx_window Transmit window
435 * \returns non-negative capacity
436 */
437static inline unsigned compute_capacity(const struct gprs_rlcmac_trx *trx, int rx_window, int tx_window)
438{
439 const struct gprs_rlcmac_pdch *pdch;
440 unsigned ts, capacity = 0;
441
442 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
443 pdch = &trx->pdch[ts];
444 if (rx_window & (1 << ts))
445 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_DL_TBF), 1);
446
447 /* Only consider common slots for UL */
448 if (tx_window & rx_window & (1 << ts)) {
449 if (find_free_usf(pdch->assigned_usf()) >= 0)
450 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_UL_TBF), 1);
451 }
452 }
453
454 return capacity;
455}
456
Max731e2bb2018-02-05 16:15:30 +0100457/*! Decide if a given slot should be skipped by multislot allocator
458 *
459 * \param[in] ms_class Pointer to MS Class object
460 * \param[in] check_tr Flag indicating whether we should check for Tra or Tta parameters for a given MS class
461 * \param[in] rx_window Receive window
462 * \param[in] tx_window Transmit window
463 * \param[in,out] checked_rx array with already checked RX timeslots
464 * \returns true if the slot should be skipped, false otherwise
465 */
466static bool skip_slot(uint8_t mslot_class, bool check_tr,
467 int16_t rx_window, int16_t tx_window,
468 uint32_t *checked_rx)
469{
470 uint8_t common_slot_count, req_common_slots,
471 rx_slot_count = pcu_bitcount(rx_window),
472 tx_slot_count = pcu_bitcount(tx_window);
473
474 /* Check compliance with TS 45.002, table 6.4.2.2.1 */
475 /* Whether to skip this round doesn not only depend on the bit
476 * sets but also on check_tr. Therefore this check must be done
477 * before doing the mslot_test_and_set_bit shortcut. */
478 if (mslot_class_get_type(mslot_class) == 1) {
479 uint16_t slot_sum = rx_slot_count + tx_slot_count;
480 /* Assume down + up / dynamic.
481 * TODO: For ext-dynamic, down only, up only add more cases.
482 */
483 if (slot_sum <= 6 && tx_slot_count < 3) {
484 if (!check_tr)
485 return true; /* Skip Tta */
486 } else if (slot_sum > 6 && tx_slot_count < 3) {
487 if (check_tr)
488 return true; /* Skip Tra */
489 } else
490 return true; /* No supported row in TS 45.002, table 6.4.2.2.1. */
491 }
492
493 /* Avoid repeated RX combination check */
494 if (mslot_test_and_set_bit(checked_rx, rx_window))
495 return true;
496
497 /* Check number of common slots according to TS 45.002, §6.4.2.2 */
498 common_slot_count = pcu_bitcount(tx_window & rx_window);
499 req_common_slots = OSMO_MIN(tx_slot_count, rx_slot_count);
500 if (mslot_class_get_type(mslot_class) == 1)
501 req_common_slots = OSMO_MIN(req_common_slots, 2);
502
503 if (req_common_slots != common_slot_count)
504 return true;
505
506 return false;
507}
508
Maxa76a7d02018-01-26 11:09:16 +0100509/*! Find set of slots available for allocation while taking MS class into account
510 *
511 * \param[in] trx Pointer to TRX object
512 * \param[in] mslot_class The multislot class
513 * \param[in,out] ul_slots set of UL timeslots
514 * \param[in,out] dl_slots set of DL timeslots
515 * \returns negative error code or 0 on success
516 */
Max46fbfce2017-11-01 19:22:25 +0100517int find_multi_slots(struct gprs_rlcmac_trx *trx, uint8_t mslot_class, uint8_t *ul_slots, uint8_t *dl_slots)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200518{
Maxf633b8d2018-01-31 15:28:53 +0100519 uint8_t Tx = mslot_class_get_tx(mslot_class), /* Max number of Tx slots */
Max731e2bb2018-02-05 16:15:30 +0100520 Sum = mslot_class_get_sum(mslot_class), /* Max number of Tx + Rx slots */
521 max_slots, num_tx, mask_sel, pdch_slots, ul_ts, dl_ts;
522 int16_t rx_window, tx_window;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200523 char slot_info[9] = {0};
Maxf633b8d2018-01-31 15:28:53 +0100524 int max_capacity = -1;
525 uint8_t max_ul_slots = 0, max_dl_slots = 0;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200526
Max842d7812017-11-01 18:11:24 +0100527 if (mslot_class)
528 LOGP(DRLCMAC, LOGL_DEBUG, "Slot Allocation (Algorithm B) for class %d\n",
529 mslot_class);
530
Max842d7812017-11-01 18:11:24 +0100531 if (Tx == MS_NA) {
532 LOGP(DRLCMAC, LOGL_NOTICE, "Multislot class %d not applicable.\n",
533 mslot_class);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200534 return -EINVAL;
535 }
536
Max842d7812017-11-01 18:11:24 +0100537 max_slots = OSMO_MAX(mslot_class_get_rx(mslot_class), Tx);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200538
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200539 if (*dl_slots == 0)
540 *dl_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200541
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200542 if (*ul_slots == 0)
543 *ul_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200544
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200545 pdch_slots = find_possible_pdchs(trx, max_slots, 0xff);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200546
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200547 *dl_slots &= pdch_slots;
548 *ul_slots &= pdch_slots;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200549
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200550 LOGP(DRLCMAC, LOGL_DEBUG, "- Possible DL/UL slots: (TS=0)\"%s\"(TS=7)\n",
551 set_flag_chars(set_flag_chars(set_flag_chars(slot_info,
552 *dl_slots, 'D', '.'),
553 *ul_slots, 'U'),
554 *ul_slots & *dl_slots, 'C'));
555
556 /* Check for each UL (TX) slot */
557
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200558 /* Iterate through possible numbers of TX slots */
Max842d7812017-11-01 18:11:24 +0100559 for (num_tx = 1; num_tx <= mslot_class_get_tx(mslot_class); num_tx += 1) {
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200560 uint16_t tx_valid_win = (1 << num_tx) - 1;
Maxf633b8d2018-01-31 15:28:53 +0100561 uint8_t rx_mask[MASK_TR + 1];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200562
Maxf633b8d2018-01-31 15:28:53 +0100563 mslot_fill_rx_mask(mslot_class, num_tx, rx_mask);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200564
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200565 /* Rotate group of TX slots: UUU-----, -UUU----, ..., UU-----U */
566 for (ul_ts = 0; ul_ts < 8; ul_ts += 1, tx_valid_win <<= 1) {
567 uint16_t rx_valid_win;
568 uint32_t checked_rx[256/32] = {0};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200569
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200570 /* Wrap valid window */
571 tx_valid_win = mslot_wrap_window(tx_valid_win);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200572
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200573 tx_window = tx_valid_win;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200574
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200575 /* Filter out unavailable slots */
576 tx_window &= *ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200577
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200578 /* Skip if the the first TS (ul_ts) is not in the set */
579 if ((tx_window & (1 << ul_ts)) == 0)
580 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200581
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200582 /* Skip if the the last TS (ul_ts+num_tx-1) is not in the set */
583 if ((tx_window & (1 << ((ul_ts+num_tx-1) % 8))) == 0)
584 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200585
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200586 rx_valid_win = (1 << OSMO_MIN(mslot_class_get_rx(mslot_class), Sum - num_tx)) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200587
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200588 /* Rotate group of RX slots: DDD-----, -DDD----, ..., DD-----D */
589 for (dl_ts = 0; dl_ts < 8; dl_ts += 1, rx_valid_win <<= 1) {
590 /* Wrap valid window */
591 rx_valid_win = (rx_valid_win | rx_valid_win >> 8) & 0xff;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200592
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200593 /* Validate with both Tta/Ttb/Trb and Ttb/Tra/Trb */
594 for (mask_sel = MASK_TT; mask_sel <= MASK_TR; mask_sel += 1) {
595 int capacity;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200596
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200597 rx_window = mslot_filter_bad(rx_mask[mask_sel], ul_ts, *dl_slots, rx_valid_win);
598 if (rx_window < 0)
599 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200600
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200601 if (skip_slot(mslot_class, mask_sel != MASK_TT, rx_window, tx_window, checked_rx))
602 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200603
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200604 /* Compute capacity */
605 capacity = compute_capacity(trx, rx_window, tx_window);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200606
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200607#ifdef ENABLE_TS_ALLOC_DEBUG
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200608 LOGP(DRLCMAC, LOGL_DEBUG,
609 "- Considering DL/UL slots: (TS=0)\"%s\"(TS=7), "
610 "capacity = %d\n",
611 set_flag_chars(set_flag_chars(set_flag_chars(set_flag_chars(
612 slot_info,
613 rx_bad, 'x', '.'),
614 rx_window, 'D'),
615 tx_window, 'U'),
616 rx_window & tx_window, 'C'),
617 capacity);
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200618#endif
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200619
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200620 if (capacity <= max_capacity)
621 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200622
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200623 max_capacity = capacity;
624 max_ul_slots = tx_window;
625 max_dl_slots = rx_window;
626 }
627 }
628 }
Maxadca67b2018-01-31 15:22:36 +0100629 }
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200630
631 if (!max_ul_slots || !max_dl_slots) {
632 LOGP(DRLCMAC, LOGL_NOTICE,
633 "No valid UL/DL slot combination found\n");
634 return -EINVAL;
635 }
636
637 *ul_slots = max_ul_slots;
638 *dl_slots = max_dl_slots;
639
640 return 0;
641}
642
Max0cc72122018-01-31 17:00:06 +0100643/*! Count used bits in slots and reserved_slots bitmasks
644 *
645 * \param[in] slots Timeslots in use
646 * \param[in] reserved_slots Reserved timeslots
647 * \param[out] slotcount Number of TS in use
648 * \param[out] avail_count Number of reserved TS
649 */
650static void update_slot_counters(uint8_t slots, uint8_t reserved_slots, uint8_t *slotcount, uint8_t *avail_count)
651{
652 (*slotcount) = pcu_bitcount(slots);
653 (*avail_count) = pcu_bitcount(reserved_slots);
654}
655
656/*! Return slot mask with single TS from a given UL/DL set according to TBF's direction, ts pointer is set to that TS
657 * number or to negative value on error
658 *
659 * \param[in] trx Pointer to TRX object
660 * \param[in] tbf Pointer to TBF object
661 * \param[in] dl_slots set of DL timeslots
662 * \param[in] ul_slots set of UL timeslots
663 * \param[in] ts corresponding TS or -1 for autoselection
664 * \returns slot mask with single UL or DL timeslot number if possible
665 */
666static uint8_t get_single_ts(const gprs_rlcmac_trx *trx, const gprs_rlcmac_tbf *tbf, uint8_t dl_slots, uint8_t ul_slots,
667 int ts)
668{
669 uint8_t ret = dl_slots & ul_slots; /* Make sure to consider the first common slot only */
670
671 if (ts < 0)
672 ts = find_least_busy_pdch(trx, tbf->direction, ret, compute_usage_by_num_tbfs, NULL, NULL);
673
674 if (ts < 0)
675 return ffs(ret);
676
677 return ret & (1 << ts);
678}
679
680/*! Find set of timeslots available for allocation
681 *
682 * \param[in] trx Pointer to TRX object
683 * \param[in] tbf Pointer to TBF object
684 * \param[in] single Flag to force the single TS allocation
685 * \param[in] ul_slots set of UL timeslots
686 * \param[in] dl_slots set of DL timeslots
687 * \param[in] reserved_ul_slots set of reserved UL timeslots
688 * \param[in] reserved_dl_slots set of reserved DL timeslots
689 * \param[in] first_common_ts First TS common for both UL and DL or -1 if unknown
690 * \returns negative error code or selected TS on success
691 */
692static int tbf_select_slot_set(const gprs_rlcmac_tbf *tbf, const gprs_rlcmac_trx *trx, bool single,
693 uint8_t ul_slots, uint8_t dl_slots,
694 uint8_t reserved_ul_slots, uint8_t reserved_dl_slots,
695 int8_t first_common_ts)
696{
697 uint8_t sl = tbf->direction != GPRS_RLCMAC_DL_TBF ? ul_slots : dl_slots;
698 char slot_info[9] = { 0 };
699
700 if (single)
701 sl = get_single_ts(trx, tbf, dl_slots, ul_slots, first_common_ts);
702
703 if (!sl) {
704 LOGP(DRLCMAC, LOGL_NOTICE, "No %s slots available\n",
705 tbf->direction != GPRS_RLCMAC_DL_TBF ? "uplink" : "downlink");
706 return -EINVAL;
707 }
708
709 if (tbf->direction != GPRS_RLCMAC_DL_TBF) {
710 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_ul_slots, 'u'));
711 masked_override_with(slot_info, sl, 'U');
Vadim Yanitskiya6c5db92020-09-21 02:19:42 +0700712 LOGP(DRLCMAC, LOGL_DEBUG, "- Selected UL");
Max0cc72122018-01-31 17:00:06 +0100713 } else {
714 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_dl_slots, 'd'));
715 masked_override_with(slot_info, sl, 'D');
Vadim Yanitskiya6c5db92020-09-21 02:19:42 +0700716 LOGP(DRLCMAC, LOGL_DEBUG, "- Selected DL");
Max0cc72122018-01-31 17:00:06 +0100717 }
718
Max0e6ac792018-02-19 18:43:01 +0100719 LOGPC(DRLCMAC, LOGL_DEBUG, " slots: (TS=0)\"%s\"(TS=7), %s\n", slot_info, single ? "single" : "multi");
Max0cc72122018-01-31 17:00:06 +0100720
721 return sl;
722}
723
Max2afec6d2018-01-31 17:21:21 +0100724/*! Allocate USF according to a given UL TS mapping
725 *
726 * N. B: this is legacy implementation which ignores given selected_ul_slots
727 * \param[in] trx Pointer to TRX object
728 * \param[in] tbf Pointer to TBF object
729 * \param[in] first_common_ts First TS which is common to both UL and DL
730 * \param[in] selected_ul_slots set of UL timeslots selected for allocation
731 * \param[in] dl_slots set of DL timeslots
732 * \param[out] usf array for allocated USF
733 * \returns updated UL TS or negative on error
734 */
735static int allocate_usf(const gprs_rlcmac_trx *trx, int8_t first_common_ts, uint8_t selected_ul_slots, uint8_t dl_slots,
736 int *usf)
737{
738 int free_usf = -1, ts;
739 uint8_t ul_slots = selected_ul_slots;
740
741 if (first_common_ts >= 0)
742 ul_slots = 1 << first_common_ts;
743 else
744 ul_slots = ul_slots & dl_slots;
745
746 ts = find_least_busy_pdch(trx, GPRS_RLCMAC_UL_TBF, ul_slots, compute_usage_by_num_tbfs, NULL, &free_usf);
747
748 if (free_usf < 0 || ts < 0) {
749 LOGP(DRLCMAC, LOGL_NOTICE, "No USF available\n");
750 return -EBUSY;
751 }
752
753 OSMO_ASSERT(ts >= 0 && ts <= 8);
754
755 /* We will stick to that single UL slot, unreserve the others */
756 ul_slots = 1 << ts;
757 usf[ts] = free_usf;
758
759 return ul_slots;
760}
761
Max77988d42018-02-19 18:00:38 +0100762/*! Update MS' reserved timeslots
763 *
764 * \param[in,out] trx Pointer to TRX struct
765 * \param[in,out] ms_ Pointer to MS object
766 * \param[in] tbf_ Pointer to TBF struct
767 * \param[in] res_ul_slots Newly reserved UL slots
768 * \param[in] res_dl_slots Newly reserved DL slots
769 * \param[in] ul_slots available UL slots (for logging only)
770 * \param[in] dl_slots available DL slots (for logging only)
771 */
772static void update_ms_reserved_slots(gprs_rlcmac_trx *trx, GprsMs *ms, uint8_t res_ul_slots, uint8_t res_dl_slots,
773 uint8_t ul_slots, uint8_t dl_slots)
774{
775 char slot_info[9] = { 0 };
776
777 if (res_ul_slots == ms->reserved_ul_slots() && res_dl_slots == ms->reserved_dl_slots())
778 return;
779
780 /* The reserved slots have changed, update the MS */
781 ms->set_reserved_slots(trx, res_ul_slots, res_dl_slots);
782
783 ts_format(slot_info, dl_slots, ul_slots);
784 LOGP(DRLCMAC, LOGL_DEBUG, "- Reserved DL/UL slots: (TS=0)\"%s\"(TS=7)\n", slot_info);
785}
786
787/*! Assign given UL timeslots to UL TBF
788 *
789 * \param[in,out] ul_tbf Pointer to UL TBF struct
790 * \param[in,out] trx Pointer to TRX object
791 * \param[in] ul_slots Set of slots to be assigned
792 * \param[in] tfi selected TFI
793 * \param[in] usf selected USF
794 */
795static void assign_ul_tbf_slots(struct gprs_rlcmac_ul_tbf *ul_tbf, gprs_rlcmac_trx *trx, uint8_t ul_slots, int tfi,
796 int *usf)
797{
798 uint8_t ts;
799
800 for (ts = 0; ts < 8; ts++) {
801 if (!(ul_slots & (1 << ts)))
802 continue;
803
804 OSMO_ASSERT(usf[ts] >= 0);
805
806 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning UL TS %u\n", ts);
807 assign_uplink_tbf_usf(&trx->pdch[ts], ul_tbf, tfi, usf[ts]);
808 }
809}
810
811/*! Assign given DL timeslots to DL TBF
812 *
813 * \param[in,out] dl_tbf Pointer to DL TBF struct
814 * \param[in,out] trx Pointer to TRX object
815 * \param[in] ul_slots Set of slots to be assigned
816 * \param[in] tfi selected TFI
817 */
818static void assign_dl_tbf_slots(struct gprs_rlcmac_dl_tbf *dl_tbf, gprs_rlcmac_trx *trx, uint8_t dl_slots, int tfi)
819{
820 uint8_t ts;
821
822 for (ts = 0; ts < 8; ts++) {
823 if (!(dl_slots & (1 << ts)))
824 continue;
825
826 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning DL TS %u\n", ts);
827 assign_dlink_tbf(&trx->pdch[ts], dl_tbf, tfi);
828 }
829}
830
Maxe9fe0e32017-09-28 15:56:05 +0200831/*! Slot Allocation: Algorithm B
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200832 *
833 * Assign as many downlink slots as possible.
834 * Assign one uplink slot. (With free USF)
835 *
Maxe9fe0e32017-09-28 15:56:05 +0200836 * \param[in,out] bts Pointer to BTS struct
837 * \param[in,out] ms_ Pointer to MS object
838 * \param[in,out] tbf_ Pointer to TBF struct
839 * \param[in] single flag indicating if we should force single-slot allocation
840 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
841 * \returns negative error code or 0 on success
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200842 */
Maxe9fe0e32017-09-28 15:56:05 +0200843int alloc_algorithm_b(struct gprs_rlcmac_bts *bts, GprsMs *ms_, struct gprs_rlcmac_tbf *tbf_, bool single,
844 int8_t use_trx)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200845{
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200846 uint8_t dl_slots;
847 uint8_t ul_slots;
848 uint8_t reserved_dl_slots;
849 uint8_t reserved_ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200850 int8_t first_common_ts;
851 uint8_t slotcount = 0;
Maxa76a7d02018-01-26 11:09:16 +0100852 uint8_t avail_count = 0, trx_no;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200853 int first_ts = -1;
854 int usf[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200855 int rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200856 int tfi;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200857 const GprsMs *ms = ms_;
858 const gprs_rlcmac_tbf *tbf = tbf_;
859 gprs_rlcmac_trx *trx;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200860
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200861 LOGPAL(tbf, "B", single, use_trx, LOGL_DEBUG, "Alloc start\n");
862
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200863 /* Step 1: Get current state from the MS object */
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200864
865 if (!ms) {
866 LOGP(DRLCMAC, LOGL_ERROR, "MS not set\n");
867 return -EINVAL;
868 }
869
Max92e9c172017-09-28 16:25:25 +0200870 dl_slots = ms->reserved_dl_slots();
871 ul_slots = ms->reserved_ul_slots();
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200872 first_common_ts = ms->first_common_ts();
873 trx = ms->current_trx();
874
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200875 /* Step 2a: Find usable TRX and TFI */
Maxa76a7d02018-01-26 11:09:16 +0100876 tfi = tfi_find_free(bts->bts, trx, ms, tbf->direction, use_trx, &trx_no);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200877 if (tfi < 0) {
Max0e6ac792018-02-19 18:43:01 +0100878 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "failed to allocate a TFI\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200879 return tfi;
880 }
881
882 /* Step 2b: Reserve slots on the TRX for the MS */
883 if (!trx)
884 trx = &bts->trx[trx_no];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200885
886 if (!dl_slots || !ul_slots) {
Max842d7812017-11-01 18:11:24 +0100887 rc = find_multi_slots(trx, ms->ms_class(), &ul_slots, &dl_slots);
Holger Hans Peter Freyther73193112013-12-26 09:49:05 +0100888 if (rc < 0)
889 return rc;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200890 }
891
Max92e9c172017-09-28 16:25:25 +0200892 reserved_dl_slots = dl_slots;
893 reserved_ul_slots = ul_slots;
894
Max0cc72122018-01-31 17:00:06 +0100895 /* Step 3a: Derive the slot set for the current TBF */
896 rc = tbf_select_slot_set(tbf, trx, single, ul_slots, dl_slots, reserved_ul_slots, reserved_dl_slots,
897 first_common_ts);
898 if (rc < 0)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200899 return -EINVAL;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200900
Max0cc72122018-01-31 17:00:06 +0100901 /* Step 3b: Derive the slot set for a given direction */
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200902 if (tbf->direction == GPRS_RLCMAC_DL_TBF) {
Max0cc72122018-01-31 17:00:06 +0100903 dl_slots = rc;
904 update_slot_counters(dl_slots, reserved_dl_slots, &slotcount, &avail_count);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200905 } else {
Max2afec6d2018-01-31 17:21:21 +0100906 rc = allocate_usf(trx, first_common_ts, rc, dl_slots, usf);
907 if (rc < 0)
908 return rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200909
Max0cc72122018-01-31 17:00:06 +0100910 /* We will stick to that single UL slot, unreserve the others */
Max2afec6d2018-01-31 17:21:21 +0100911 ul_slots = rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200912 reserved_ul_slots = ul_slots;
Jacob Erlbeck5f494b82015-07-01 13:10:41 +0200913
Max0cc72122018-01-31 17:00:06 +0100914 update_slot_counters(ul_slots, reserved_ul_slots, &slotcount, &avail_count);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200915 }
916
Pau Espin Pedrol84abd2f2020-09-22 20:08:18 +0200917 first_ts = ffs(rc) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200918 first_common_ts = ffs(dl_slots & ul_slots) - 1;
919
920 if (first_common_ts < 0) {
Max0e6ac792018-02-19 18:43:01 +0100921 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first common slot unavailable\n");
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200922 return -EINVAL;
923 }
Max0e6ac792018-02-19 18:43:01 +0100924
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200925 if (first_ts < 0) {
Max0e6ac792018-02-19 18:43:01 +0100926 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first slot unavailable\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200927 return -EINVAL;
928 }
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200929
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200930 if (single && slotcount) {
931 tbf_->upgrade_to_multislot = (avail_count > slotcount);
Max0e6ac792018-02-19 18:43:01 +0100932 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using single slot at TS %d\n", first_ts);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200933 } else {
934 tbf_->upgrade_to_multislot = 0;
Max0e6ac792018-02-19 18:43:01 +0100935 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using %d slots\n", slotcount);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200936 }
937
938 /* The allocation will be successful, so the system state and tbf_/ms_
939 * may be modified from now on. */
940
941 /* Step 4: Update MS and TBF and really allocate the resources */
942
Max77988d42018-02-19 18:00:38 +0100943 update_ms_reserved_slots(trx, ms_, reserved_ul_slots, reserved_dl_slots, ul_slots, dl_slots);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200944
945 tbf_->trx = trx;
946 tbf_->first_common_ts = first_common_ts;
947 tbf_->first_ts = first_ts;
948
Max77988d42018-02-19 18:00:38 +0100949 if (tbf->direction == GPRS_RLCMAC_DL_TBF)
950 assign_dl_tbf_slots(as_dl_tbf(tbf_), trx, dl_slots, tfi);
951 else
952 assign_ul_tbf_slots(as_ul_tbf(tbf_), trx, ul_slots, tfi, usf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200953
Pau Espin Pedrol2338e532020-05-12 20:54:35 +0200954 bts->bts->do_rate_ctr_inc(CTR_TBF_ALLOC_ALGO_B);
Jacob Erlbeck5979fe92015-07-14 14:02:41 +0200955
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200956 return 0;
957}
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200958
Maxe9fe0e32017-09-28 15:56:05 +0200959/*! Slot Allocation: Algorithm dynamic
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200960 *
961 * This meta algorithm automatically selects on of the other algorithms based
962 * on the current system state.
963 *
964 * The goal is to support as many MS and TBF as possible. On low usage, the
965 * goal is to provide the highest possible bandwidth per MS.
966 *
Maxe9fe0e32017-09-28 15:56:05 +0200967 * \param[in,out] bts Pointer to BTS struct
968 * \param[in,out] ms_ Pointer to MS object
969 * \param[in,out] tbf_ Pointer to TBF struct
970 * \param[in] single flag indicating if we should force single-slot allocation
971 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
972 * \returns negative error code or 0 on success
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200973 */
Maxe9fe0e32017-09-28 15:56:05 +0200974int alloc_algorithm_dynamic(struct gprs_rlcmac_bts *bts, GprsMs *ms_, struct gprs_rlcmac_tbf *tbf_, bool single,
975 int8_t use_trx)
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200976{
977 int rc;
978
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200979 /* Reset load_is_high if there is at least one idle PDCH */
980 if (bts->multislot_disabled) {
Maxa76a7d02018-01-26 11:09:16 +0100981 bts->multislot_disabled = !idle_pdch_avail(bts);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200982 if (!bts->multislot_disabled)
983 LOGP(DRLCMAC, LOGL_DEBUG, "Enabling algorithm B\n");
984 }
985
986 if (!bts->multislot_disabled) {
Maxe9fe0e32017-09-28 15:56:05 +0200987 rc = alloc_algorithm_b(bts, ms_, tbf_, single, use_trx);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200988 if (rc >= 0)
989 return rc;
990
991 if (!bts->multislot_disabled)
992 LOGP(DRLCMAC, LOGL_DEBUG, "Disabling algorithm B\n");
993 bts->multislot_disabled = 1;
994 }
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200995
Maxe9fe0e32017-09-28 15:56:05 +0200996 return alloc_algorithm_a(bts, ms_, tbf_, single, use_trx);
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200997}
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +0200998
Max4da38592018-01-31 18:03:49 +0100999int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001000{
Max842d7812017-11-01 18:11:24 +01001001 int rx = mslot_class_get_rx(ms_class);
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001002
1003 if (rx == MS_NA)
1004 rx = 4;
1005
1006 if (bts->alloc_algorithm == alloc_algorithm_a)
1007 return 1;
1008
1009 if (bts->multislot_disabled)
1010 return 1;
1011
1012 return rx;
1013}