blob: 5f0bcc5074c56eac386dd2f8278bfd76693b99e6 [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),
Pau Espin Pedrol1f8e2292021-02-19 16:49:16 +0100150 int *free_tfi = NULL, int *free_usf = NULL)
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
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100242static int find_trx(const struct gprs_rlcmac_bts *bts, 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 */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100248 if (ms && ms_current_trx(ms))
249 return ms_current_trx(ms)->trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200250
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 */
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100255 for (trx_no = 0; trx_no < ARRAY_SIZE(bts->trx); trx_no += 1) {
256 const struct gprs_rlcmac_trx *trx = &bts->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
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100275static bool idle_pdch_avail(const struct gprs_rlcmac_bts *bts)
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 */
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100281 for (trx_no = 0; trx_no < ARRAY_SIZE(bts->trx); trx_no += 1) {
282 const struct gprs_rlcmac_trx *trx = &bts->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 */
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100308static int tfi_find_free(const struct gprs_rlcmac_bts *bts, const gprs_rlcmac_trx *trx, const GprsMs *ms,
Maxa76a7d02018-01-26 11:09:16 +0100309 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
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100323 if (use_trx == -1 && ms_current_trx(ms))
324 use_trx = ms_current_trx(ms)->trx_no;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200325
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100326 tfi = bts_tfi_find_free(bts, dir, &trx_no, use_trx);
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200327 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_;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100360 gprs_rlcmac_trx *trx = ms_current_trx(ms);
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
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100373 dl_slots = ms_reserved_dl_slots(ms);
374 ul_slots = ms_reserved_ul_slots(ms);
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200375
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100376 ts = ms_first_common_ts(ms);
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200377
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;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100423 ms_set_reserved_slots(ms_, trx, 1 << ts, 1 << ts);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200424
425 tbf_->upgrade_to_multislot = 0;
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100426 bts_do_rate_ctr_inc(bts, 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{
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100519 const uint8_t Rx = mslot_class_get_rx(mslot_class), /* Max number of Rx slots */
520 Tx = mslot_class_get_tx(mslot_class), /* Max number of Tx slots */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100521 Sum = mslot_class_get_sum(mslot_class), /* Max number of Tx + Rx slots */
522 Type = mslot_class_get_type(mslot_class);
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100523 uint8_t max_slots, num_rx, num_tx, mask_sel, pdch_slots, ul_ts, dl_ts;
Max731e2bb2018-02-05 16:15:30 +0100524 int16_t rx_window, tx_window;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200525 char slot_info[9] = {0};
Maxf633b8d2018-01-31 15:28:53 +0100526 int max_capacity = -1;
527 uint8_t max_ul_slots = 0, max_dl_slots = 0;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200528
Max842d7812017-11-01 18:11:24 +0100529 if (mslot_class)
530 LOGP(DRLCMAC, LOGL_DEBUG, "Slot Allocation (Algorithm B) for class %d\n",
531 mslot_class);
532
Max842d7812017-11-01 18:11:24 +0100533 if (Tx == MS_NA) {
534 LOGP(DRLCMAC, LOGL_NOTICE, "Multislot class %d not applicable.\n",
535 mslot_class);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200536 return -EINVAL;
537 }
538
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100539 max_slots = OSMO_MAX(Rx, Tx);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200540
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200541 if (*dl_slots == 0)
542 *dl_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200543
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200544 if (*ul_slots == 0)
545 *ul_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200546
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200547 pdch_slots = find_possible_pdchs(trx, max_slots, 0xff);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200548
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200549 *dl_slots &= pdch_slots;
550 *ul_slots &= pdch_slots;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200551
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200552 LOGP(DRLCMAC, LOGL_DEBUG, "- Possible DL/UL slots: (TS=0)\"%s\"(TS=7)\n",
553 set_flag_chars(set_flag_chars(set_flag_chars(slot_info,
554 *dl_slots, 'D', '.'),
555 *ul_slots, 'U'),
556 *ul_slots & *dl_slots, 'C'));
557
558 /* Check for each UL (TX) slot */
559
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200560 /* Iterate through possible numbers of TX slots */
Pau Espin Pedrol47a3b782021-02-19 16:56:36 +0100561 for (num_tx = 1; num_tx <= Tx; num_tx += 1) {
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200562 uint16_t tx_valid_win = (1 << num_tx) - 1;
Maxf633b8d2018-01-31 15:28:53 +0100563 uint8_t rx_mask[MASK_TR + 1];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200564
Maxf633b8d2018-01-31 15:28:53 +0100565 mslot_fill_rx_mask(mslot_class, num_tx, rx_mask);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200566
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200567 /* Rotate group of TX slots: UUU-----, -UUU----, ..., UU-----U */
568 for (ul_ts = 0; ul_ts < 8; ul_ts += 1, tx_valid_win <<= 1) {
569 uint16_t rx_valid_win;
570 uint32_t checked_rx[256/32] = {0};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200571
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200572 /* Wrap valid window */
573 tx_valid_win = mslot_wrap_window(tx_valid_win);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200574
Alexander Couzens695ce772021-01-12 19:33:53 +0100575 /* for multislot type 1: don't split the window to wrap around.
576 * E.g. 'UU-----U' is invalid for a 4 TN window. Except 8 TN window.
577 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100578 if (Type == 1 && num_tx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100579 tx_valid_win & (1 << 0) && tx_valid_win & (1 << 7))
580 continue;
581
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200582 tx_window = tx_valid_win;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200583
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200584 /* Filter out unavailable slots */
585 tx_window &= *ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200586
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200587 /* Skip if the the first TS (ul_ts) is not in the set */
588 if ((tx_window & (1 << ul_ts)) == 0)
589 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200590
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200591 /* Skip if the the last TS (ul_ts+num_tx-1) is not in the set */
592 if ((tx_window & (1 << ((ul_ts+num_tx-1) % 8))) == 0)
593 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200594
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100595 num_rx = OSMO_MIN(Rx, Sum - num_tx);
Alexander Couzens695ce772021-01-12 19:33:53 +0100596 rx_valid_win = (1 << num_rx) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200597
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200598 /* Rotate group of RX slots: DDD-----, -DDD----, ..., DD-----D */
599 for (dl_ts = 0; dl_ts < 8; dl_ts += 1, rx_valid_win <<= 1) {
600 /* Wrap valid window */
601 rx_valid_win = (rx_valid_win | rx_valid_win >> 8) & 0xff;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200602
Alexander Couzens695ce772021-01-12 19:33:53 +0100603 /* for multislot type 1: don't split the window to wrap around.
604 * E.g. 'DD-----D' is invalid for a 4 TN window. Except 8 TN window.
605 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100606 if (Type == 1 && num_rx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100607 (rx_valid_win & (1 << 0)) && (rx_valid_win & (1 << 7)))
608 continue;
609
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200610 /* Validate with both Tta/Ttb/Trb and Ttb/Tra/Trb */
611 for (mask_sel = MASK_TT; mask_sel <= MASK_TR; mask_sel += 1) {
612 int capacity;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200613
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200614 rx_window = mslot_filter_bad(rx_mask[mask_sel], ul_ts, *dl_slots, rx_valid_win);
615 if (rx_window < 0)
616 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200617
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200618 if (skip_slot(mslot_class, mask_sel != MASK_TT, rx_window, tx_window, checked_rx))
619 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200620
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200621 /* Compute capacity */
622 capacity = compute_capacity(trx, rx_window, tx_window);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200623
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200624#ifdef ENABLE_TS_ALLOC_DEBUG
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200625 LOGP(DRLCMAC, LOGL_DEBUG,
626 "- Considering DL/UL slots: (TS=0)\"%s\"(TS=7), "
627 "capacity = %d\n",
628 set_flag_chars(set_flag_chars(set_flag_chars(set_flag_chars(
629 slot_info,
630 rx_bad, 'x', '.'),
631 rx_window, 'D'),
632 tx_window, 'U'),
633 rx_window & tx_window, 'C'),
634 capacity);
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200635#endif
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200636
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200637 if (capacity <= max_capacity)
638 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200639
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200640 max_capacity = capacity;
641 max_ul_slots = tx_window;
642 max_dl_slots = rx_window;
643 }
644 }
645 }
Maxadca67b2018-01-31 15:22:36 +0100646 }
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200647
648 if (!max_ul_slots || !max_dl_slots) {
649 LOGP(DRLCMAC, LOGL_NOTICE,
650 "No valid UL/DL slot combination found\n");
651 return -EINVAL;
652 }
653
654 *ul_slots = max_ul_slots;
655 *dl_slots = max_dl_slots;
656
657 return 0;
658}
659
Max0cc72122018-01-31 17:00:06 +0100660/*! Count used bits in slots and reserved_slots bitmasks
661 *
662 * \param[in] slots Timeslots in use
663 * \param[in] reserved_slots Reserved timeslots
664 * \param[out] slotcount Number of TS in use
665 * \param[out] avail_count Number of reserved TS
666 */
667static void update_slot_counters(uint8_t slots, uint8_t reserved_slots, uint8_t *slotcount, uint8_t *avail_count)
668{
669 (*slotcount) = pcu_bitcount(slots);
670 (*avail_count) = pcu_bitcount(reserved_slots);
671}
672
673/*! Return slot mask with single TS from a given UL/DL set according to TBF's direction, ts pointer is set to that TS
674 * number or to negative value on error
675 *
676 * \param[in] trx Pointer to TRX object
677 * \param[in] tbf Pointer to TBF object
678 * \param[in] dl_slots set of DL timeslots
679 * \param[in] ul_slots set of UL timeslots
680 * \param[in] ts corresponding TS or -1 for autoselection
681 * \returns slot mask with single UL or DL timeslot number if possible
682 */
683static uint8_t get_single_ts(const gprs_rlcmac_trx *trx, const gprs_rlcmac_tbf *tbf, uint8_t dl_slots, uint8_t ul_slots,
684 int ts)
685{
686 uint8_t ret = dl_slots & ul_slots; /* Make sure to consider the first common slot only */
687
688 if (ts < 0)
689 ts = find_least_busy_pdch(trx, tbf->direction, ret, compute_usage_by_num_tbfs, NULL, NULL);
690
691 if (ts < 0)
692 return ffs(ret);
693
694 return ret & (1 << ts);
695}
696
697/*! Find set of timeslots available for allocation
698 *
699 * \param[in] trx Pointer to TRX object
700 * \param[in] tbf Pointer to TBF object
701 * \param[in] single Flag to force the single TS allocation
702 * \param[in] ul_slots set of UL timeslots
703 * \param[in] dl_slots set of DL timeslots
704 * \param[in] reserved_ul_slots set of reserved UL timeslots
705 * \param[in] reserved_dl_slots set of reserved DL timeslots
706 * \param[in] first_common_ts First TS common for both UL and DL or -1 if unknown
707 * \returns negative error code or selected TS on success
708 */
709static int tbf_select_slot_set(const gprs_rlcmac_tbf *tbf, const gprs_rlcmac_trx *trx, bool single,
710 uint8_t ul_slots, uint8_t dl_slots,
711 uint8_t reserved_ul_slots, uint8_t reserved_dl_slots,
712 int8_t first_common_ts)
713{
714 uint8_t sl = tbf->direction != GPRS_RLCMAC_DL_TBF ? ul_slots : dl_slots;
715 char slot_info[9] = { 0 };
716
717 if (single)
718 sl = get_single_ts(trx, tbf, dl_slots, ul_slots, first_common_ts);
719
720 if (!sl) {
721 LOGP(DRLCMAC, LOGL_NOTICE, "No %s slots available\n",
722 tbf->direction != GPRS_RLCMAC_DL_TBF ? "uplink" : "downlink");
723 return -EINVAL;
724 }
725
726 if (tbf->direction != GPRS_RLCMAC_DL_TBF) {
727 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_ul_slots, 'u'));
728 masked_override_with(slot_info, sl, 'U');
Vadim Yanitskiya6c5db92020-09-21 02:19:42 +0700729 LOGP(DRLCMAC, LOGL_DEBUG, "- Selected UL");
Max0cc72122018-01-31 17:00:06 +0100730 } else {
731 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_dl_slots, 'd'));
732 masked_override_with(slot_info, sl, 'D');
Vadim Yanitskiya6c5db92020-09-21 02:19:42 +0700733 LOGP(DRLCMAC, LOGL_DEBUG, "- Selected DL");
Max0cc72122018-01-31 17:00:06 +0100734 }
735
Max0e6ac792018-02-19 18:43:01 +0100736 LOGPC(DRLCMAC, LOGL_DEBUG, " slots: (TS=0)\"%s\"(TS=7), %s\n", slot_info, single ? "single" : "multi");
Max0cc72122018-01-31 17:00:06 +0100737
738 return sl;
739}
740
Max2afec6d2018-01-31 17:21:21 +0100741/*! Allocate USF according to a given UL TS mapping
742 *
743 * N. B: this is legacy implementation which ignores given selected_ul_slots
744 * \param[in] trx Pointer to TRX object
745 * \param[in] tbf Pointer to TBF object
746 * \param[in] first_common_ts First TS which is common to both UL and DL
747 * \param[in] selected_ul_slots set of UL timeslots selected for allocation
748 * \param[in] dl_slots set of DL timeslots
749 * \param[out] usf array for allocated USF
750 * \returns updated UL TS or negative on error
751 */
752static int allocate_usf(const gprs_rlcmac_trx *trx, int8_t first_common_ts, uint8_t selected_ul_slots, uint8_t dl_slots,
753 int *usf)
754{
755 int free_usf = -1, ts;
756 uint8_t ul_slots = selected_ul_slots;
757
758 if (first_common_ts >= 0)
759 ul_slots = 1 << first_common_ts;
760 else
761 ul_slots = ul_slots & dl_slots;
762
763 ts = find_least_busy_pdch(trx, GPRS_RLCMAC_UL_TBF, ul_slots, compute_usage_by_num_tbfs, NULL, &free_usf);
764
765 if (free_usf < 0 || ts < 0) {
766 LOGP(DRLCMAC, LOGL_NOTICE, "No USF available\n");
767 return -EBUSY;
768 }
769
770 OSMO_ASSERT(ts >= 0 && ts <= 8);
771
772 /* We will stick to that single UL slot, unreserve the others */
773 ul_slots = 1 << ts;
774 usf[ts] = free_usf;
775
776 return ul_slots;
777}
778
Max77988d42018-02-19 18:00:38 +0100779/*! Update MS' reserved timeslots
780 *
781 * \param[in,out] trx Pointer to TRX struct
782 * \param[in,out] ms_ Pointer to MS object
783 * \param[in] tbf_ Pointer to TBF struct
784 * \param[in] res_ul_slots Newly reserved UL slots
785 * \param[in] res_dl_slots Newly reserved DL slots
786 * \param[in] ul_slots available UL slots (for logging only)
787 * \param[in] dl_slots available DL slots (for logging only)
788 */
789static void update_ms_reserved_slots(gprs_rlcmac_trx *trx, GprsMs *ms, uint8_t res_ul_slots, uint8_t res_dl_slots,
790 uint8_t ul_slots, uint8_t dl_slots)
791{
792 char slot_info[9] = { 0 };
793
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100794 if (res_ul_slots == ms_reserved_ul_slots(ms) && res_dl_slots == ms_reserved_dl_slots(ms))
Max77988d42018-02-19 18:00:38 +0100795 return;
796
797 /* The reserved slots have changed, update the MS */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100798 ms_set_reserved_slots(ms, trx, res_ul_slots, res_dl_slots);
Max77988d42018-02-19 18:00:38 +0100799
800 ts_format(slot_info, dl_slots, ul_slots);
801 LOGP(DRLCMAC, LOGL_DEBUG, "- Reserved DL/UL slots: (TS=0)\"%s\"(TS=7)\n", slot_info);
802}
803
804/*! Assign given UL timeslots to UL TBF
805 *
806 * \param[in,out] ul_tbf Pointer to UL TBF struct
807 * \param[in,out] trx Pointer to TRX object
808 * \param[in] ul_slots Set of slots to be assigned
809 * \param[in] tfi selected TFI
810 * \param[in] usf selected USF
811 */
812static void assign_ul_tbf_slots(struct gprs_rlcmac_ul_tbf *ul_tbf, gprs_rlcmac_trx *trx, uint8_t ul_slots, int tfi,
813 int *usf)
814{
815 uint8_t ts;
816
817 for (ts = 0; ts < 8; ts++) {
818 if (!(ul_slots & (1 << ts)))
819 continue;
820
821 OSMO_ASSERT(usf[ts] >= 0);
822
823 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning UL TS %u\n", ts);
824 assign_uplink_tbf_usf(&trx->pdch[ts], ul_tbf, tfi, usf[ts]);
825 }
826}
827
828/*! Assign given DL timeslots to DL TBF
829 *
830 * \param[in,out] dl_tbf Pointer to DL TBF struct
831 * \param[in,out] trx Pointer to TRX object
832 * \param[in] ul_slots Set of slots to be assigned
833 * \param[in] tfi selected TFI
834 */
835static void assign_dl_tbf_slots(struct gprs_rlcmac_dl_tbf *dl_tbf, gprs_rlcmac_trx *trx, uint8_t dl_slots, int tfi)
836{
837 uint8_t ts;
838
839 for (ts = 0; ts < 8; ts++) {
840 if (!(dl_slots & (1 << ts)))
841 continue;
842
843 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning DL TS %u\n", ts);
844 assign_dlink_tbf(&trx->pdch[ts], dl_tbf, tfi);
845 }
846}
847
Maxe9fe0e32017-09-28 15:56:05 +0200848/*! Slot Allocation: Algorithm B
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200849 *
850 * Assign as many downlink slots as possible.
851 * Assign one uplink slot. (With free USF)
852 *
Maxe9fe0e32017-09-28 15:56:05 +0200853 * \param[in,out] bts Pointer to BTS struct
854 * \param[in,out] ms_ Pointer to MS object
855 * \param[in,out] tbf_ Pointer to TBF struct
856 * \param[in] single flag indicating if we should force single-slot allocation
857 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
858 * \returns negative error code or 0 on success
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200859 */
Maxe9fe0e32017-09-28 15:56:05 +0200860int alloc_algorithm_b(struct gprs_rlcmac_bts *bts, GprsMs *ms_, struct gprs_rlcmac_tbf *tbf_, bool single,
861 int8_t use_trx)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200862{
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200863 uint8_t dl_slots;
864 uint8_t ul_slots;
865 uint8_t reserved_dl_slots;
866 uint8_t reserved_ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200867 int8_t first_common_ts;
868 uint8_t slotcount = 0;
Maxa76a7d02018-01-26 11:09:16 +0100869 uint8_t avail_count = 0, trx_no;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200870 int first_ts = -1;
871 int usf[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200872 int rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200873 int tfi;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200874 const GprsMs *ms = ms_;
875 const gprs_rlcmac_tbf *tbf = tbf_;
876 gprs_rlcmac_trx *trx;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200877
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200878 LOGPAL(tbf, "B", single, use_trx, LOGL_DEBUG, "Alloc start\n");
879
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200880 /* Step 1: Get current state from the MS object */
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200881
882 if (!ms) {
883 LOGP(DRLCMAC, LOGL_ERROR, "MS not set\n");
884 return -EINVAL;
885 }
886
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100887 dl_slots = ms_reserved_dl_slots(ms);
888 ul_slots = ms_reserved_ul_slots(ms);
889 first_common_ts = ms_first_common_ts(ms);
890 trx = ms_current_trx(ms);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200891
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200892 /* Step 2a: Find usable TRX and TFI */
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100893 tfi = tfi_find_free(bts, trx, ms, tbf->direction, use_trx, &trx_no);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200894 if (tfi < 0) {
Max0e6ac792018-02-19 18:43:01 +0100895 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "failed to allocate a TFI\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200896 return tfi;
897 }
898
899 /* Step 2b: Reserve slots on the TRX for the MS */
900 if (!trx)
901 trx = &bts->trx[trx_no];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200902
903 if (!dl_slots || !ul_slots) {
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100904 rc = find_multi_slots(trx, ms_ms_class(ms), &ul_slots, &dl_slots);
Holger Hans Peter Freyther73193112013-12-26 09:49:05 +0100905 if (rc < 0)
906 return rc;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200907 }
908
Max92e9c172017-09-28 16:25:25 +0200909 reserved_dl_slots = dl_slots;
910 reserved_ul_slots = ul_slots;
911
Max0cc72122018-01-31 17:00:06 +0100912 /* Step 3a: Derive the slot set for the current TBF */
913 rc = tbf_select_slot_set(tbf, trx, single, ul_slots, dl_slots, reserved_ul_slots, reserved_dl_slots,
914 first_common_ts);
915 if (rc < 0)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200916 return -EINVAL;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200917
Max0cc72122018-01-31 17:00:06 +0100918 /* Step 3b: Derive the slot set for a given direction */
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200919 if (tbf->direction == GPRS_RLCMAC_DL_TBF) {
Max0cc72122018-01-31 17:00:06 +0100920 dl_slots = rc;
921 update_slot_counters(dl_slots, reserved_dl_slots, &slotcount, &avail_count);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200922 } else {
Max2afec6d2018-01-31 17:21:21 +0100923 rc = allocate_usf(trx, first_common_ts, rc, dl_slots, usf);
924 if (rc < 0)
925 return rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200926
Max0cc72122018-01-31 17:00:06 +0100927 /* We will stick to that single UL slot, unreserve the others */
Max2afec6d2018-01-31 17:21:21 +0100928 ul_slots = rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200929 reserved_ul_slots = ul_slots;
Jacob Erlbeck5f494b82015-07-01 13:10:41 +0200930
Max0cc72122018-01-31 17:00:06 +0100931 update_slot_counters(ul_slots, reserved_ul_slots, &slotcount, &avail_count);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200932 }
933
Pau Espin Pedrol84abd2f2020-09-22 20:08:18 +0200934 first_ts = ffs(rc) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200935 first_common_ts = ffs(dl_slots & ul_slots) - 1;
936
937 if (first_common_ts < 0) {
Max0e6ac792018-02-19 18:43:01 +0100938 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first common slot unavailable\n");
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200939 return -EINVAL;
940 }
Max0e6ac792018-02-19 18:43:01 +0100941
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200942 if (first_ts < 0) {
Max0e6ac792018-02-19 18:43:01 +0100943 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first slot unavailable\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200944 return -EINVAL;
945 }
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200946
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200947 if (single && slotcount) {
948 tbf_->upgrade_to_multislot = (avail_count > slotcount);
Max0e6ac792018-02-19 18:43:01 +0100949 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using single slot at TS %d\n", first_ts);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200950 } else {
951 tbf_->upgrade_to_multislot = 0;
Max0e6ac792018-02-19 18:43:01 +0100952 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using %d slots\n", slotcount);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200953 }
954
955 /* The allocation will be successful, so the system state and tbf_/ms_
956 * may be modified from now on. */
957
958 /* Step 4: Update MS and TBF and really allocate the resources */
959
Max77988d42018-02-19 18:00:38 +0100960 update_ms_reserved_slots(trx, ms_, reserved_ul_slots, reserved_dl_slots, ul_slots, dl_slots);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200961
962 tbf_->trx = trx;
963 tbf_->first_common_ts = first_common_ts;
964 tbf_->first_ts = first_ts;
965
Max77988d42018-02-19 18:00:38 +0100966 if (tbf->direction == GPRS_RLCMAC_DL_TBF)
967 assign_dl_tbf_slots(as_dl_tbf(tbf_), trx, dl_slots, tfi);
968 else
969 assign_ul_tbf_slots(as_ul_tbf(tbf_), trx, ul_slots, tfi, usf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200970
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100971 bts_do_rate_ctr_inc(bts, CTR_TBF_ALLOC_ALGO_B);
Jacob Erlbeck5979fe92015-07-14 14:02:41 +0200972
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200973 return 0;
974}
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200975
Maxe9fe0e32017-09-28 15:56:05 +0200976/*! Slot Allocation: Algorithm dynamic
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200977 *
978 * This meta algorithm automatically selects on of the other algorithms based
979 * on the current system state.
980 *
981 * The goal is to support as many MS and TBF as possible. On low usage, the
982 * goal is to provide the highest possible bandwidth per MS.
983 *
Maxe9fe0e32017-09-28 15:56:05 +0200984 * \param[in,out] bts Pointer to BTS struct
985 * \param[in,out] ms_ Pointer to MS object
986 * \param[in,out] tbf_ Pointer to TBF struct
987 * \param[in] single flag indicating if we should force single-slot allocation
988 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
989 * \returns negative error code or 0 on success
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200990 */
Maxe9fe0e32017-09-28 15:56:05 +0200991int alloc_algorithm_dynamic(struct gprs_rlcmac_bts *bts, GprsMs *ms_, struct gprs_rlcmac_tbf *tbf_, bool single,
992 int8_t use_trx)
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200993{
994 int rc;
995
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200996 /* Reset load_is_high if there is at least one idle PDCH */
997 if (bts->multislot_disabled) {
Maxa76a7d02018-01-26 11:09:16 +0100998 bts->multislot_disabled = !idle_pdch_avail(bts);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200999 if (!bts->multislot_disabled)
1000 LOGP(DRLCMAC, LOGL_DEBUG, "Enabling algorithm B\n");
1001 }
1002
1003 if (!bts->multislot_disabled) {
Maxe9fe0e32017-09-28 15:56:05 +02001004 rc = alloc_algorithm_b(bts, ms_, tbf_, single, use_trx);
Jacob Erlbeck77da3552015-07-16 18:33:46 +02001005 if (rc >= 0)
1006 return rc;
1007
1008 if (!bts->multislot_disabled)
1009 LOGP(DRLCMAC, LOGL_DEBUG, "Disabling algorithm B\n");
1010 bts->multislot_disabled = 1;
1011 }
Jacob Erlbeck400ec022015-07-14 13:31:48 +02001012
Maxe9fe0e32017-09-28 15:56:05 +02001013 return alloc_algorithm_a(bts, ms_, tbf_, single, use_trx);
Jacob Erlbeck400ec022015-07-14 13:31:48 +02001014}
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001015
Max4da38592018-01-31 18:03:49 +01001016int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001017{
Max842d7812017-11-01 18:11:24 +01001018 int rx = mslot_class_get_rx(ms_class);
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001019
1020 if (rx == MS_NA)
1021 rx = 4;
1022
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +01001023 if (the_pcu->alloc_algorithm == alloc_algorithm_a)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001024 return 1;
1025
1026 if (bts->multislot_disabled)
1027 return 1;
1028
1029 return rx;
1030}