blob: 047bae2fe75099922539e361c76357c317bbe520 [file] [log] [blame]
Pau Espin Pedrolff7c5812022-12-14 18:49:06 +01001/* alloc_algo.cpp
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +02002 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
Pau Espin Pedrolff7c5812022-12-14 18:49:06 +01006 * Copyright (C) 2022 by sysmocom - s.m.f.c. GmbH <info@sysmocom.de>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +02007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020017 */
18
19#include <gprs_rlcmac.h>
20#include <gprs_debug.h>
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020021#include <bts.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020022#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020023#include <tbf_ul.h>
Max6dc90b82018-02-19 17:17:28 +010024#include <pdch.h>
Jacob Erlbecke2e004e2015-06-18 17:16:26 +020025#include <gprs_ms.h>
Jacob Erlbeck8cba7e92016-01-19 15:48:03 +010026#include <pcu_utils.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020027
28#include <errno.h>
Jacob Erlbeckec478752015-06-19 16:35:38 +020029#include <values.h>
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +020030
Max842d7812017-11-01 18:11:24 +010031extern "C" {
32#include "mslot_class.h"
Pau Espin Pedrolff7c5812022-12-14 18:49:06 +010033#include "alloc_algo.h"
Max1187a772018-01-26 13:31:42 +010034#include <osmocom/core/linuxlist.h>
35#include <osmocom/core/logging.h>
36#include <osmocom/core/utils.h>
Max842d7812017-11-01 18:11:24 +010037}
38
Jacob Erlbeck77da3552015-07-16 18:33:46 +020039/* Consider a PDCH as idle if has at most this number of TBFs assigned to it */
40#define PDCH_IDLE_TBF_THRESH 1
41
Max0e6ac792018-02-19 18:43:01 +010042#define LOGPSL(tbf, level, fmt, args...) LOGP(DRLCMAC, level, "[%s] " fmt, \
43 (tbf->direction == GPRS_RLCMAC_DL_TBF) ? "DL" : "UL", ## args)
44
45#define LOGPAL(tbf, kind, single, trx_n, level, fmt, args...) LOGPSL(tbf, level, \
46 "algo %s <%s> (suggested TRX: %d): " fmt, \
47 kind, single ? "single" : "multi", trx_n, ## args)
48
Jacob Erlbeckea65c722015-06-22 16:14:23 +020049static char *set_flag_chars(char *buf, uint8_t val, char set_char, char unset_char = 0)
50{
51 int i;
52
53 for (i = 0; i < 8; i += 1, val = val >> 1) {
54 if (val & 1)
55 buf[i] = set_char;
56 else if (unset_char)
57 buf[i] = unset_char;
58 }
59
60 return buf;
61}
62
Max731e2bb2018-02-05 16:15:30 +010063static uint8_t find_possible_pdchs(const struct gprs_rlcmac_trx *trx, uint8_t max_slots, uint8_t mask,
64 const char *mask_reason = NULL)
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020065{
Jacob Erlbeckec478752015-06-19 16:35:38 +020066 unsigned ts;
Max731e2bb2018-02-05 16:15:30 +010067 uint8_t valid_ts_set = 0;
Jacob Erlbeck83426b22015-06-30 09:44:05 +020068 int8_t last_tsc = -1; /* must be signed */
Jacob Erlbeckec478752015-06-19 16:35:38 +020069
70 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +010071 const struct gprs_rlcmac_pdch *pdch;
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020072
73 pdch = &trx->pdch[ts];
Holger Hans Peter Freyther17b0d832013-10-19 17:37:48 +020074 if (!pdch->is_enabled()) {
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +020075 LOGP(DRLCMAC, LOGL_DEBUG, "- Skipping TS %d, because "
76 "not enabled\n", ts);
77 continue;
78 }
Jacob Erlbeckec478752015-06-19 16:35:38 +020079
80 if (((1 << ts) & mask) == 0) {
81 if (mask_reason)
82 LOGP(DRLCMAC, LOGL_DEBUG,
83 "- Skipping TS %d, because %s\n",
84 ts, mask_reason);
85 continue;
86 }
87
Jacob Erlbeck83426b22015-06-30 09:44:05 +020088 if (max_slots > 1) {
89 /* check if TSC changes, see TS 45.002, 6.4.2 */
90 if (last_tsc < 0)
91 last_tsc = pdch->tsc;
92 else if (last_tsc != pdch->tsc) {
93 LOGP(DRLCMAC, LOGL_ERROR,
94 "Skipping TS %d of TRX=%d, because it "
95 "has different TSC than lower TS of TRX. "
96 "In order to allow multislot, all "
97 "slots must be configured with the same "
98 "TSC!\n", ts, trx->trx_no);
99 continue;
100 }
101 }
102
Jacob Erlbeckec478752015-06-19 16:35:38 +0200103 valid_ts_set |= 1 << ts;
Holger Hans Peter Freytherb0a00752013-09-29 08:18:17 +0200104 }
105
Jacob Erlbeckec478752015-06-19 16:35:38 +0200106 return valid_ts_set;
107}
108
Maxa76a7d02018-01-26 11:09:16 +0100109static 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 +0200110{
111 return pdch->num_tbfs(dir);
112}
113
Maxa76a7d02018-01-26 11:09:16 +0100114static int compute_usage_by_reservation(const struct gprs_rlcmac_pdch *pdch, enum gprs_rlcmac_tbf_direction)
Jacob Erlbeckc135b872015-07-09 13:44:18 +0200115{
116 return
117 pdch->num_reserved(GPRS_RLCMAC_DL_TBF) +
118 pdch->num_reserved(GPRS_RLCMAC_UL_TBF);
119}
120
Maxa76a7d02018-01-26 11:09:16 +0100121static 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 +0200122{
123 int usage =
124 pdch->num_tbfs(GPRS_RLCMAC_DL_TBF) +
125 pdch->num_tbfs(GPRS_RLCMAC_UL_TBF) +
126 compute_usage_by_reservation(pdch, dir);
127
Maxd000d802017-09-20 17:55:28 +0200128 if (pdch->assigned_tfi(reverse(dir)) == NO_FREE_TFI)
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200129 /* No TFI in the opposite direction, avoid it */
130 usage += 32;
131
132 return usage;
133
134}
135
Maxa76a7d02018-01-26 11:09:16 +0100136/*! Return the TS which corresponds to least busy PDCH
137 *
138 * \param[in] trx Pointer to TRX object
139 * \param[in] dir TBF direction
140 * \param[in] mask set of available timeslots
141 * \param[in] fn Function pointer to function which computes number of associated TBFs
142 * \param[out] free_tfi Free TFI
143 * \param[out] free_usf Free USF
144 * \returns TS number or -1 if unable to find
145 */
146static int find_least_busy_pdch(const struct gprs_rlcmac_trx *trx, enum gprs_rlcmac_tbf_direction dir, uint8_t mask,
147 int (*fn)(const struct gprs_rlcmac_pdch *, enum gprs_rlcmac_tbf_direction dir),
Pau Espin Pedrol1f8e2292021-02-19 16:49:16 +0100148 int *free_tfi = NULL, int *free_usf = NULL)
Jacob Erlbeckec478752015-06-19 16:35:38 +0200149{
150 unsigned ts;
151 int min_used = INT_MAX;
152 int min_ts = -1;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200153 int min_tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200154 int min_usf = -1;
155
156 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100157 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbeckec478752015-06-19 16:35:38 +0200158 int num_tbfs;
159 int usf = -1; /* must be signed */
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200160 int tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200161
162 if (((1 << ts) & mask) == 0)
163 continue;
164
Jacob Erlbeckc135b872015-07-09 13:44:18 +0200165 num_tbfs = fn(pdch, dir);
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200166
167 if (num_tbfs < min_used) {
168 /* We have found a candidate */
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200169 /* Make sure that a TFI is available */
170 if (free_tfi) {
Maxc5407c72018-02-05 16:11:36 +0100171 tfi = find_free_tfi(pdch->assigned_tfi(dir));
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200172 if (tfi < 0) {
173 LOGP(DRLCMAC, LOGL_DEBUG,
174 "- Skipping TS %d, because "
175 "no TFI available\n", ts);
176 continue;
177 }
178 }
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200179 /* Make sure that an USF is available */
180 if (dir == GPRS_RLCMAC_UL_TBF) {
Maxadca67b2018-01-31 15:22:36 +0100181 usf = find_free_usf(pdch->assigned_usf());
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200182 if (usf < 0) {
183 LOGP(DRLCMAC, LOGL_DEBUG,
184 "- Skipping TS %d, because "
185 "no USF available\n", ts);
186 continue;
187 }
188 }
189 if (min_ts >= 0)
190 LOGP(DRLCMAC, LOGL_DEBUG,
191 "- Skipping TS %d, because "
192 "num TBFs %d > %d\n",
193 min_ts, min_used, num_tbfs);
194 min_used = num_tbfs;
195 min_ts = ts;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200196 min_tfi = tfi;
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200197 min_usf = usf;
198 } else {
199 LOGP(DRLCMAC, LOGL_DEBUG,
200 "- Skipping TS %d, because "
201 "num TBFs %d >= %d\n",
202 ts, num_tbfs, min_used);
203 }
204 }
205
206 if (min_ts < 0)
207 return -1;
208
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200209 if (free_tfi)
210 *free_tfi = min_tfi;
Jacob Erlbeckefe62a72015-07-02 15:48:25 +0200211 if (free_usf)
212 *free_usf = min_usf;
213
214 return min_ts;
215}
216
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200217static void attach_tbf_to_pdch(struct gprs_rlcmac_pdch *pdch,
218 struct gprs_rlcmac_tbf *tbf)
219{
220 if (tbf->pdch[pdch->ts_no])
221 tbf->pdch[pdch->ts_no]->detach_tbf(tbf);
222
223 tbf->pdch[pdch->ts_no] = pdch;
224 pdch->attach_tbf(tbf);
225}
226
Maxa76a7d02018-01-26 11:09:16 +0100227static 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 +0200228{
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200229 tbf->m_tfi = tfi;
Daniel Willmann7e994e32014-08-07 15:49:21 +0200230 tbf->m_usf[pdch->ts_no] = usf;
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200231 attach_tbf_to_pdch(pdch, tbf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200232}
233
Maxa76a7d02018-01-26 11:09:16 +0100234static 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 +0200235{
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200236 tbf->m_tfi = tfi;
Jacob Erlbeckccc34e42015-06-29 13:45:05 +0200237 attach_tbf_to_pdch(pdch, tbf);
Holger Hans Peter Freyther8481a052013-09-29 08:08:28 +0200238}
239
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100240static int find_trx(const struct gprs_rlcmac_bts *bts, const GprsMs *ms, int8_t use_trx)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200241{
242 unsigned trx_no;
243 unsigned ts;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200244
245 /* We must use the TRX currently actively used by an MS */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100246 if (ms && ms_current_trx(ms))
247 return ms_current_trx(ms)->trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200248
249 if (use_trx >= 0 && use_trx < 8)
250 return use_trx;
251
252 /* Find the first TRX that has a PDCH with a free UL and DL TFI */
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100253 for (trx_no = 0; trx_no < ARRAY_SIZE(bts->trx); trx_no += 1) {
254 const struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200255 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100256 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200257 if (!pdch->is_enabled())
258 continue;
259
Maxd000d802017-09-20 17:55:28 +0200260 if (pdch->assigned_tfi(GPRS_RLCMAC_UL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200261 continue;
262
Maxd000d802017-09-20 17:55:28 +0200263 if (pdch->assigned_tfi(GPRS_RLCMAC_DL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200264 continue;
265
266 return trx_no;
267 }
268 }
269
270 return -EBUSY;
271}
272
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100273static bool idle_pdch_avail(const struct gprs_rlcmac_bts *bts)
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200274{
275 unsigned trx_no;
276 unsigned ts;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200277
278 /* Find the first PDCH with an unused DL TS */
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100279 for (trx_no = 0; trx_no < ARRAY_SIZE(bts->trx); trx_no += 1) {
280 const struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200281 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100282 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200283 if (!pdch->is_enabled())
284 continue;
285
286 if (pdch->num_tbfs(GPRS_RLCMAC_DL_TBF) > PDCH_IDLE_TBF_THRESH)
287 continue;
288
Maxa76a7d02018-01-26 11:09:16 +0100289 return true;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200290 }
291 }
292
Maxa76a7d02018-01-26 11:09:16 +0100293 return false;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200294}
295
Maxa76a7d02018-01-26 11:09:16 +0100296/*! Return free TFI
297 *
298 * \param[in] bts Pointer to BTS struct
Maxa76a7d02018-01-26 11:09:16 +0100299 * \param[in] ms Pointer to MS object
300 * \param[in] dir DL or UL direction
301 * \param[in] use_trx which TRX to use or -1 if it should be selected based on what MS uses
302 * \param[out] trx_no_ TRX number on which TFI was found
303 * \returns negative error code or 0 on success
304 */
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100305static int tfi_find_free(const struct gprs_rlcmac_bts *bts, const GprsMs *ms,
Maxa76a7d02018-01-26 11:09:16 +0100306 enum gprs_rlcmac_tbf_direction dir, int8_t use_trx, uint8_t *trx_no_)
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200307{
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100308 const struct gprs_rlcmac_trx *trx;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200309 int tfi;
310 uint8_t trx_no;
311
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100312 /* If MS is already doing stuff on a TRX, set use_trx to it: */
313 if ((trx = ms_current_trx(ms))) {
Max7e4921d2017-09-28 16:41:24 +0200314 if (use_trx >= 0 && use_trx != trx->trx_no) {
315 LOGP(DRLCMAC, LOGL_ERROR, "- Requested incompatible TRX %d (current is %d)\n",
316 use_trx, trx->trx_no);
317 return -EINVAL;
318 }
319 use_trx = trx->trx_no;
320 }
321
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100322 tfi = bts_tfi_find_free(bts, dir, &trx_no, use_trx);
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200323 if (tfi < 0)
324 return -EBUSY;
325
326 if (trx_no_)
327 *trx_no_ = trx_no;
328
329 return tfi;
330}
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200331
Maxe9fe0e32017-09-28 15:56:05 +0200332/*! Slot Allocation: Algorithm A
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200333 *
334 * Assign single slot for uplink and downlink
Maxe9fe0e32017-09-28 15:56:05 +0200335 *
336 * \param[in,out] bts Pointer to BTS struct
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200337 * \param[in,out] tbf Pointer to TBF struct
Maxe9fe0e32017-09-28 15:56:05 +0200338 * \param[in] single flag indicating if we should force single-slot allocation
339 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
340 * \returns negative error code or 0 on success
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200341 */
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200342int alloc_algorithm_a(struct gprs_rlcmac_bts *bts, struct gprs_rlcmac_tbf *tbf, bool single,
Maxe9fe0e32017-09-28 15:56:05 +0200343 int8_t use_trx)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200344{
345 struct gprs_rlcmac_pdch *pdch;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200346 int ts = -1;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200347 uint8_t ul_slots, dl_slots;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200348 int trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200349 int tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200350 int usf = -1;
Max731e2bb2018-02-05 16:15:30 +0100351 uint8_t mask = 0xff;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200352 const char *mask_reason = NULL;
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200353 struct GprsMs *ms = tbf->ms();
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100354 gprs_rlcmac_trx *trx = ms_current_trx(ms);
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100355 struct gprs_rlcmac_pdch *first_common_ts = ms_first_common_ts(ms);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200356
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200357 LOGPAL(tbf, "A", single, use_trx, LOGL_DEBUG, "Alloc start\n");
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200358
Maxa76a7d02018-01-26 11:09:16 +0100359 trx_no = find_trx(bts, ms, use_trx);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200360 if (trx_no < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200361 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100362 "failed to find a usable TRX (TFI exhausted)\n");
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200363 return trx_no;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200364 }
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200365 if (!trx)
366 trx = &bts->trx[trx_no];
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200367
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100368 dl_slots = ms_reserved_dl_slots(ms);
369 ul_slots = ms_reserved_ul_slots(ms);
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200370
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100371 if (first_common_ts) {
Jacob Erlbeckec478752015-06-19 16:35:38 +0200372 mask_reason = "need to reuse TS";
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100373 mask = 1 << first_common_ts->ts_no;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200374 } else if (dl_slots || ul_slots) {
375 mask_reason = "need to use a reserved common TS";
376 mask = dl_slots & ul_slots;
377 }
Jacob Erlbeckec478752015-06-19 16:35:38 +0200378
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200379 mask = find_possible_pdchs(trx, 1, mask, mask_reason);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200380 if (!mask)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200381 return -EINVAL;
382
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200383 ts = find_least_busy_pdch(trx, tbf->direction, mask,
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200384 compute_usage_for_algo_a,
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200385 &tfi, &usf);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200386
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200387 if (tbf->direction == GPRS_RLCMAC_UL_TBF && usf < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200388 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100389 "failed to allocate a TS, no USF available\n");
Jacob Erlbeckec478752015-06-19 16:35:38 +0200390 return -EBUSY;
391 }
392
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200393 if (ts < 0) {
Pau Espin Pedrola611b4f2020-10-23 17:11:00 +0200394 LOGPAL(tbf, "A", single, use_trx, LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100395 "failed to allocate a TS, no TFI available\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200396 return -EBUSY;
397 }
398
399 pdch = &trx->pdch[ts];
400
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200401 /* The allocation will be successful, so the system state and tbf/ms
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200402 * may be modified from now on. */
Pau Espin Pedrolb5fece92021-08-23 16:58:04 +0200403 if (tbf->direction == GPRS_RLCMAC_UL_TBF) {
Pau Espin Pedrolcc30b052022-10-27 15:25:55 +0200404 struct gprs_rlcmac_ul_tbf *ul_tbf = tbf_as_ul_tbf(tbf);
Max0e6ac792018-02-19 18:43:01 +0100405 LOGPSL(tbf, LOGL_DEBUG, "Assign uplink TS=%d TFI=%d USF=%d\n", ts, tfi, usf);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200406 assign_uplink_tbf_usf(pdch, ul_tbf, tfi, usf);
Pau Espin Pedrolb5fece92021-08-23 16:58:04 +0200407 } else {
Pau Espin Pedrolcc30b052022-10-27 15:25:55 +0200408 struct gprs_rlcmac_dl_tbf *dl_tbf = tbf_as_dl_tbf(tbf);
Max0e6ac792018-02-19 18:43:01 +0100409 LOGPSL(tbf, LOGL_DEBUG, "Assign downlink TS=%d TFI=%d\n", ts, tfi);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200410 assign_dlink_tbf(pdch, dl_tbf, tfi);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200411 }
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200412
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200413 tbf->trx = trx;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200414 /* the only one TS is the common TS */
Pau Espin Pedrolc85e0932021-02-25 18:08:10 +0100415 ms_set_reserved_slots(ms, trx, 1 << ts, 1 << ts);
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100416 ms_set_first_common_ts(ms, pdch);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200417
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200418 tbf->upgrade_to_multislot = false;
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100419 bts_do_rate_ctr_inc(bts, CTR_TBF_ALLOC_ALGO_A);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200420 return 0;
421}
422
Maxadca67b2018-01-31 15:22:36 +0100423/*! Compute capacity of a given TRX
424 *
425 * \param[in] trx Pointer to TRX object
426 * \param[in] rx_window Receive window
427 * \param[in] tx_window Transmit window
428 * \returns non-negative capacity
429 */
430static inline unsigned compute_capacity(const struct gprs_rlcmac_trx *trx, int rx_window, int tx_window)
431{
432 const struct gprs_rlcmac_pdch *pdch;
433 unsigned ts, capacity = 0;
434
435 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
436 pdch = &trx->pdch[ts];
437 if (rx_window & (1 << ts))
438 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_DL_TBF), 1);
439
440 /* Only consider common slots for UL */
441 if (tx_window & rx_window & (1 << ts)) {
442 if (find_free_usf(pdch->assigned_usf()) >= 0)
443 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_UL_TBF), 1);
444 }
445 }
446
447 return capacity;
448}
449
Max731e2bb2018-02-05 16:15:30 +0100450/*! Decide if a given slot should be skipped by multislot allocator
451 *
452 * \param[in] ms_class Pointer to MS Class object
453 * \param[in] check_tr Flag indicating whether we should check for Tra or Tta parameters for a given MS class
454 * \param[in] rx_window Receive window
455 * \param[in] tx_window Transmit window
456 * \param[in,out] checked_rx array with already checked RX timeslots
457 * \returns true if the slot should be skipped, false otherwise
458 */
459static bool skip_slot(uint8_t mslot_class, bool check_tr,
460 int16_t rx_window, int16_t tx_window,
461 uint32_t *checked_rx)
462{
463 uint8_t common_slot_count, req_common_slots,
464 rx_slot_count = pcu_bitcount(rx_window),
465 tx_slot_count = pcu_bitcount(tx_window);
466
467 /* Check compliance with TS 45.002, table 6.4.2.2.1 */
468 /* Whether to skip this round doesn not only depend on the bit
469 * sets but also on check_tr. Therefore this check must be done
470 * before doing the mslot_test_and_set_bit shortcut. */
471 if (mslot_class_get_type(mslot_class) == 1) {
472 uint16_t slot_sum = rx_slot_count + tx_slot_count;
473 /* Assume down + up / dynamic.
474 * TODO: For ext-dynamic, down only, up only add more cases.
475 */
476 if (slot_sum <= 6 && tx_slot_count < 3) {
477 if (!check_tr)
478 return true; /* Skip Tta */
479 } else if (slot_sum > 6 && tx_slot_count < 3) {
480 if (check_tr)
481 return true; /* Skip Tra */
482 } else
483 return true; /* No supported row in TS 45.002, table 6.4.2.2.1. */
484 }
485
486 /* Avoid repeated RX combination check */
487 if (mslot_test_and_set_bit(checked_rx, rx_window))
488 return true;
489
490 /* Check number of common slots according to TS 45.002, §6.4.2.2 */
491 common_slot_count = pcu_bitcount(tx_window & rx_window);
492 req_common_slots = OSMO_MIN(tx_slot_count, rx_slot_count);
493 if (mslot_class_get_type(mslot_class) == 1)
494 req_common_slots = OSMO_MIN(req_common_slots, 2);
495
496 if (req_common_slots != common_slot_count)
497 return true;
498
499 return false;
500}
501
Maxa76a7d02018-01-26 11:09:16 +0100502/*! Find set of slots available for allocation while taking MS class into account
503 *
504 * \param[in] trx Pointer to TRX object
505 * \param[in] mslot_class The multislot class
506 * \param[in,out] ul_slots set of UL timeslots
507 * \param[in,out] dl_slots set of DL timeslots
508 * \returns negative error code or 0 on success
509 */
Max46fbfce2017-11-01 19:22:25 +0100510int 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 +0200511{
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100512 const uint8_t Rx = mslot_class_get_rx(mslot_class), /* Max number of Rx slots */
513 Tx = mslot_class_get_tx(mslot_class), /* Max number of Tx slots */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100514 Sum = mslot_class_get_sum(mslot_class), /* Max number of Tx + Rx slots */
515 Type = mslot_class_get_type(mslot_class);
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100516 uint8_t max_slots, num_rx, num_tx, mask_sel, pdch_slots, ul_ts, dl_ts;
Max731e2bb2018-02-05 16:15:30 +0100517 int16_t rx_window, tx_window;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200518 char slot_info[9] = {0};
Maxf633b8d2018-01-31 15:28:53 +0100519 int max_capacity = -1;
520 uint8_t max_ul_slots = 0, max_dl_slots = 0;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200521
Max842d7812017-11-01 18:11:24 +0100522 if (mslot_class)
523 LOGP(DRLCMAC, LOGL_DEBUG, "Slot Allocation (Algorithm B) for class %d\n",
524 mslot_class);
525
Max842d7812017-11-01 18:11:24 +0100526 if (Tx == MS_NA) {
527 LOGP(DRLCMAC, LOGL_NOTICE, "Multislot class %d not applicable.\n",
528 mslot_class);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200529 return -EINVAL;
530 }
531
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100532 max_slots = OSMO_MAX(Rx, Tx);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200533
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200534 if (*dl_slots == 0)
535 *dl_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200536
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200537 if (*ul_slots == 0)
538 *ul_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200539
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200540 pdch_slots = find_possible_pdchs(trx, max_slots, 0xff);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200541
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200542 *dl_slots &= pdch_slots;
543 *ul_slots &= pdch_slots;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200544
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200545 LOGP(DRLCMAC, LOGL_DEBUG, "- Possible DL/UL slots: (TS=0)\"%s\"(TS=7)\n",
546 set_flag_chars(set_flag_chars(set_flag_chars(slot_info,
547 *dl_slots, 'D', '.'),
548 *ul_slots, 'U'),
549 *ul_slots & *dl_slots, 'C'));
550
551 /* Check for each UL (TX) slot */
552
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200553 /* Iterate through possible numbers of TX slots */
Pau Espin Pedrol47a3b782021-02-19 16:56:36 +0100554 for (num_tx = 1; num_tx <= Tx; num_tx += 1) {
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200555 uint16_t tx_valid_win = (1 << num_tx) - 1;
Maxf633b8d2018-01-31 15:28:53 +0100556 uint8_t rx_mask[MASK_TR + 1];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200557
Maxf633b8d2018-01-31 15:28:53 +0100558 mslot_fill_rx_mask(mslot_class, num_tx, rx_mask);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200559
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200560 /* Rotate group of TX slots: UUU-----, -UUU----, ..., UU-----U */
561 for (ul_ts = 0; ul_ts < 8; ul_ts += 1, tx_valid_win <<= 1) {
562 uint16_t rx_valid_win;
563 uint32_t checked_rx[256/32] = {0};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200564
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200565 /* Wrap valid window */
566 tx_valid_win = mslot_wrap_window(tx_valid_win);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200567
Alexander Couzens695ce772021-01-12 19:33:53 +0100568 /* for multislot type 1: don't split the window to wrap around.
569 * E.g. 'UU-----U' is invalid for a 4 TN window. Except 8 TN window.
570 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100571 if (Type == 1 && num_tx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100572 tx_valid_win & (1 << 0) && tx_valid_win & (1 << 7))
573 continue;
574
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200575 tx_window = tx_valid_win;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200576
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200577 /* Filter out unavailable slots */
578 tx_window &= *ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200579
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200580 /* Skip if the the first TS (ul_ts) is not in the set */
581 if ((tx_window & (1 << ul_ts)) == 0)
582 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200583
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200584 /* Skip if the the last TS (ul_ts+num_tx-1) is not in the set */
585 if ((tx_window & (1 << ((ul_ts+num_tx-1) % 8))) == 0)
586 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200587
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100588 num_rx = OSMO_MIN(Rx, Sum - num_tx);
Alexander Couzens695ce772021-01-12 19:33:53 +0100589 rx_valid_win = (1 << num_rx) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200590
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200591 /* Rotate group of RX slots: DDD-----, -DDD----, ..., DD-----D */
592 for (dl_ts = 0; dl_ts < 8; dl_ts += 1, rx_valid_win <<= 1) {
593 /* Wrap valid window */
594 rx_valid_win = (rx_valid_win | rx_valid_win >> 8) & 0xff;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200595
Alexander Couzens695ce772021-01-12 19:33:53 +0100596 /* for multislot type 1: don't split the window to wrap around.
597 * E.g. 'DD-----D' is invalid for a 4 TN window. Except 8 TN window.
598 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100599 if (Type == 1 && num_rx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100600 (rx_valid_win & (1 << 0)) && (rx_valid_win & (1 << 7)))
601 continue;
602
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200603 /* Validate with both Tta/Ttb/Trb and Ttb/Tra/Trb */
604 for (mask_sel = MASK_TT; mask_sel <= MASK_TR; mask_sel += 1) {
605 int capacity;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200606
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200607 rx_window = mslot_filter_bad(rx_mask[mask_sel], ul_ts, *dl_slots, rx_valid_win);
608 if (rx_window < 0)
609 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200610
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200611 if (skip_slot(mslot_class, mask_sel != MASK_TT, rx_window, tx_window, checked_rx))
612 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200613
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200614 /* Compute capacity */
615 capacity = compute_capacity(trx, rx_window, tx_window);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200616
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200617#ifdef ENABLE_TS_ALLOC_DEBUG
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200618 LOGP(DRLCMAC, LOGL_DEBUG,
619 "- Considering DL/UL slots: (TS=0)\"%s\"(TS=7), "
620 "capacity = %d\n",
621 set_flag_chars(set_flag_chars(set_flag_chars(set_flag_chars(
622 slot_info,
623 rx_bad, 'x', '.'),
624 rx_window, 'D'),
625 tx_window, 'U'),
626 rx_window & tx_window, 'C'),
627 capacity);
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200628#endif
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200629
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200630 if (capacity <= max_capacity)
631 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200632
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200633 max_capacity = capacity;
634 max_ul_slots = tx_window;
635 max_dl_slots = rx_window;
636 }
637 }
638 }
Maxadca67b2018-01-31 15:22:36 +0100639 }
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200640
641 if (!max_ul_slots || !max_dl_slots) {
642 LOGP(DRLCMAC, LOGL_NOTICE,
643 "No valid UL/DL slot combination found\n");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100644 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_SLOT_COMBI);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200645 return -EINVAL;
646 }
647
648 *ul_slots = max_ul_slots;
649 *dl_slots = max_dl_slots;
650
651 return 0;
652}
653
Max0cc72122018-01-31 17:00:06 +0100654/*! Count used bits in slots and reserved_slots bitmasks
655 *
656 * \param[in] slots Timeslots in use
657 * \param[in] reserved_slots Reserved timeslots
658 * \param[out] slotcount Number of TS in use
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100659 * \param[out] reserve_count Number of reserved TS
Max0cc72122018-01-31 17:00:06 +0100660 */
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100661static void count_slots(uint8_t slots, uint8_t reserved_slots, uint8_t *slotcount, uint8_t *reserve_count)
Max0cc72122018-01-31 17:00:06 +0100662{
663 (*slotcount) = pcu_bitcount(slots);
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100664 (*reserve_count) = pcu_bitcount(reserved_slots);
Max0cc72122018-01-31 17:00:06 +0100665}
666
667/*! Return slot mask with single TS from a given UL/DL set according to TBF's direction, ts pointer is set to that TS
668 * number or to negative value on error
669 *
670 * \param[in] trx Pointer to TRX object
671 * \param[in] tbf Pointer to TBF object
672 * \param[in] dl_slots set of DL timeslots
673 * \param[in] ul_slots set of UL timeslots
674 * \param[in] ts corresponding TS or -1 for autoselection
675 * \returns slot mask with single UL or DL timeslot number if possible
676 */
677static uint8_t get_single_ts(const gprs_rlcmac_trx *trx, const gprs_rlcmac_tbf *tbf, uint8_t dl_slots, uint8_t ul_slots,
678 int ts)
679{
680 uint8_t ret = dl_slots & ul_slots; /* Make sure to consider the first common slot only */
681
682 if (ts < 0)
683 ts = find_least_busy_pdch(trx, tbf->direction, ret, compute_usage_by_num_tbfs, NULL, NULL);
684
685 if (ts < 0)
686 return ffs(ret);
687
688 return ret & (1 << ts);
689}
690
691/*! Find set of timeslots available for allocation
692 *
693 * \param[in] trx Pointer to TRX object
694 * \param[in] tbf Pointer to TBF object
695 * \param[in] single Flag to force the single TS allocation
696 * \param[in] ul_slots set of UL timeslots
697 * \param[in] dl_slots set of DL timeslots
698 * \param[in] reserved_ul_slots set of reserved UL timeslots
699 * \param[in] reserved_dl_slots set of reserved DL timeslots
700 * \param[in] first_common_ts First TS common for both UL and DL or -1 if unknown
701 * \returns negative error code or selected TS on success
702 */
703static int tbf_select_slot_set(const gprs_rlcmac_tbf *tbf, const gprs_rlcmac_trx *trx, bool single,
704 uint8_t ul_slots, uint8_t dl_slots,
705 uint8_t reserved_ul_slots, uint8_t reserved_dl_slots,
706 int8_t first_common_ts)
707{
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200708 bool is_ul = tbf->direction == GPRS_RLCMAC_UL_TBF;
709 uint8_t sl = is_ul ? ul_slots : dl_slots;
Max0cc72122018-01-31 17:00:06 +0100710 char slot_info[9] = { 0 };
711
712 if (single)
713 sl = get_single_ts(trx, tbf, dl_slots, ul_slots, first_common_ts);
714
715 if (!sl) {
716 LOGP(DRLCMAC, LOGL_NOTICE, "No %s slots available\n",
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200717 is_ul ? "uplink" : "downlink");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100718 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_SLOT_AVAIL);
Max0cc72122018-01-31 17:00:06 +0100719 return -EINVAL;
720 }
721
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200722 if (is_ul) {
Max0cc72122018-01-31 17:00:06 +0100723 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_ul_slots, 'u'));
724 masked_override_with(slot_info, sl, 'U');
Max0cc72122018-01-31 17:00:06 +0100725 } else {
726 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_dl_slots, 'd'));
727 masked_override_with(slot_info, sl, 'D');
Max0cc72122018-01-31 17:00:06 +0100728 }
729
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200730 LOGPC(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
731 is_ul ? "UL" : "DL",
732 slot_info, single ? "single" : "multi");
Max0cc72122018-01-31 17:00:06 +0100733
734 return sl;
735}
736
Max2afec6d2018-01-31 17:21:21 +0100737/*! Allocate USF according to a given UL TS mapping
738 *
Max2afec6d2018-01-31 17:21:21 +0100739 * \param[in] trx Pointer to TRX object
Max2afec6d2018-01-31 17:21:21 +0100740 * \param[in] selected_ul_slots set of UL timeslots selected for allocation
741 * \param[in] dl_slots set of DL timeslots
742 * \param[out] usf array for allocated USF
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100743 * \returns updated UL TS mask or negative on error
Max2afec6d2018-01-31 17:21:21 +0100744 */
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100745static int allocate_usf(const gprs_rlcmac_trx *trx, uint8_t selected_ul_slots, uint8_t dl_slots,
746 int *usf_list)
Max2afec6d2018-01-31 17:21:21 +0100747{
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100748 uint8_t ul_slots = selected_ul_slots & dl_slots;
749 unsigned int ts;
Max2afec6d2018-01-31 17:21:21 +0100750
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100751 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
752 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
753 int8_t free_usf;
Max2afec6d2018-01-31 17:21:21 +0100754
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100755 if (((1 << ts) & ul_slots) == 0)
756 continue;
Max2afec6d2018-01-31 17:21:21 +0100757
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100758 free_usf = find_free_usf(pdch->assigned_usf());
759 if (free_usf < 0) {
760 LOGP(DRLCMAC, LOGL_DEBUG,
761 "- Skipping TS %d, because "
762 "no USF available\n", ts);
763 ul_slots &= (~(1 << ts)) & 0xff;
764 continue;
765 }
766 usf_list[ts] = free_usf;
767 }
768
769 if (!ul_slots) {
Max2afec6d2018-01-31 17:21:21 +0100770 LOGP(DRLCMAC, LOGL_NOTICE, "No USF available\n");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100771 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_USF);
Max2afec6d2018-01-31 17:21:21 +0100772 return -EBUSY;
773 }
774
Max2afec6d2018-01-31 17:21:21 +0100775 return ul_slots;
776}
777
Max77988d42018-02-19 18:00:38 +0100778/*! Update MS' reserved timeslots
779 *
780 * \param[in,out] trx Pointer to TRX struct
781 * \param[in,out] ms_ Pointer to MS object
782 * \param[in] tbf_ Pointer to TBF struct
783 * \param[in] res_ul_slots Newly reserved UL slots
784 * \param[in] res_dl_slots Newly reserved DL slots
785 * \param[in] ul_slots available UL slots (for logging only)
786 * \param[in] dl_slots available DL slots (for logging only)
787 */
788static void update_ms_reserved_slots(gprs_rlcmac_trx *trx, GprsMs *ms, uint8_t res_ul_slots, uint8_t res_dl_slots,
789 uint8_t ul_slots, uint8_t dl_slots)
790{
791 char slot_info[9] = { 0 };
792
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100793 if (res_ul_slots == ms_reserved_ul_slots(ms) && res_dl_slots == ms_reserved_dl_slots(ms))
Max77988d42018-02-19 18:00:38 +0100794 return;
795
796 /* The reserved slots have changed, update the MS */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100797 ms_set_reserved_slots(ms, trx, res_ul_slots, res_dl_slots);
Max77988d42018-02-19 18:00:38 +0100798
799 ts_format(slot_info, dl_slots, ul_slots);
800 LOGP(DRLCMAC, LOGL_DEBUG, "- Reserved DL/UL slots: (TS=0)\"%s\"(TS=7)\n", slot_info);
801}
802
803/*! Assign given UL timeslots to UL TBF
804 *
805 * \param[in,out] ul_tbf Pointer to UL TBF struct
806 * \param[in,out] trx Pointer to TRX object
807 * \param[in] ul_slots Set of slots to be assigned
808 * \param[in] tfi selected TFI
809 * \param[in] usf selected USF
810 */
811static void assign_ul_tbf_slots(struct gprs_rlcmac_ul_tbf *ul_tbf, gprs_rlcmac_trx *trx, uint8_t ul_slots, int tfi,
812 int *usf)
813{
814 uint8_t ts;
815
816 for (ts = 0; ts < 8; ts++) {
817 if (!(ul_slots & (1 << ts)))
818 continue;
819
820 OSMO_ASSERT(usf[ts] >= 0);
821
822 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning UL TS %u\n", ts);
823 assign_uplink_tbf_usf(&trx->pdch[ts], ul_tbf, tfi, usf[ts]);
824 }
825}
826
827/*! Assign given DL timeslots to DL TBF
828 *
829 * \param[in,out] dl_tbf Pointer to DL TBF struct
830 * \param[in,out] trx Pointer to TRX object
831 * \param[in] ul_slots Set of slots to be assigned
832 * \param[in] tfi selected TFI
833 */
834static void assign_dl_tbf_slots(struct gprs_rlcmac_dl_tbf *dl_tbf, gprs_rlcmac_trx *trx, uint8_t dl_slots, int tfi)
835{
836 uint8_t ts;
837
838 for (ts = 0; ts < 8; ts++) {
839 if (!(dl_slots & (1 << ts)))
840 continue;
841
842 LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning DL TS %u\n", ts);
843 assign_dlink_tbf(&trx->pdch[ts], dl_tbf, tfi);
844 }
845}
846
Maxe9fe0e32017-09-28 15:56:05 +0200847/*! Slot Allocation: Algorithm B
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200848 *
849 * Assign as many downlink slots as possible.
850 * Assign one uplink slot. (With free USF)
851 *
Maxe9fe0e32017-09-28 15:56:05 +0200852 * \param[in,out] bts Pointer to BTS struct
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200853 * \param[in,out] tbf Pointer to TBF struct
Maxe9fe0e32017-09-28 15:56:05 +0200854 * \param[in] single flag indicating if we should force single-slot allocation
855 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
856 * \returns negative error code or 0 on success
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200857 */
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200858int alloc_algorithm_b(struct gprs_rlcmac_bts *bts, struct gprs_rlcmac_tbf *tbf, bool single,
Maxe9fe0e32017-09-28 15:56:05 +0200859 int8_t use_trx)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200860{
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200861 uint8_t dl_slots;
862 uint8_t ul_slots;
863 uint8_t reserved_dl_slots;
864 uint8_t reserved_ul_slots;
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100865 int8_t first_common_tn;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200866 uint8_t slotcount = 0;
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100867 uint8_t reserve_count = 0, trx_no;
Pau Espin Pedrol140c97c2022-12-13 14:14:32 +0100868 int first_ts;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200869 int usf[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200870 int rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200871 int tfi;
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200872 struct GprsMs *ms = tbf->ms();
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200873 gprs_rlcmac_trx *trx;
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100874 struct gprs_rlcmac_pdch *first_common_ts = ms_first_common_ts(ms);
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200875
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200876 LOGPAL(tbf, "B", single, use_trx, LOGL_DEBUG, "Alloc start\n");
877
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200878 /* Step 1: Get current state from the MS object */
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200879
Pau Espin Pedrol50272a42021-05-10 12:25:20 +0200880 reserved_dl_slots = ms_reserved_dl_slots(ms);
881 reserved_ul_slots = ms_reserved_ul_slots(ms);
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100882 first_common_tn = first_common_ts ? first_common_ts->ts_no : -1;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200883
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200884 /* Step 2a: Find usable TRX and TFI */
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100885 tfi = tfi_find_free(bts, ms, tbf->direction, use_trx, &trx_no);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200886 if (tfi < 0) {
Max0e6ac792018-02-19 18:43:01 +0100887 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "failed to allocate a TFI\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200888 return tfi;
889 }
890
891 /* Step 2b: Reserve slots on the TRX for the MS */
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100892 trx = &bts->trx[trx_no];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200893
Pau Espin Pedrol50272a42021-05-10 12:25:20 +0200894 if (!reserved_dl_slots || !reserved_ul_slots) {
895 rc = find_multi_slots(trx, ms_ms_class(ms), &reserved_ul_slots, &reserved_dl_slots);
Holger Hans Peter Freyther73193112013-12-26 09:49:05 +0100896 if (rc < 0)
897 return rc;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200898 }
Pau Espin Pedrol50272a42021-05-10 12:25:20 +0200899 dl_slots = reserved_dl_slots;
900 ul_slots = reserved_ul_slots;
Max92e9c172017-09-28 16:25:25 +0200901
Max0cc72122018-01-31 17:00:06 +0100902 /* Step 3a: Derive the slot set for the current TBF */
903 rc = tbf_select_slot_set(tbf, trx, single, ul_slots, dl_slots, reserved_ul_slots, reserved_dl_slots,
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100904 first_common_tn);
Max0cc72122018-01-31 17:00:06 +0100905 if (rc < 0)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200906 return -EINVAL;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200907
Max0cc72122018-01-31 17:00:06 +0100908 /* Step 3b: Derive the slot set for a given direction */
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200909 if (tbf->direction == GPRS_RLCMAC_DL_TBF) {
Max0cc72122018-01-31 17:00:06 +0100910 dl_slots = rc;
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100911 count_slots(dl_slots, reserved_dl_slots, &slotcount, &reserve_count);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200912 } else {
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100913 rc = allocate_usf(trx, rc, dl_slots, usf);
Max2afec6d2018-01-31 17:21:21 +0100914 if (rc < 0)
915 return rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200916
Max2afec6d2018-01-31 17:21:21 +0100917 ul_slots = rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200918 reserved_ul_slots = ul_slots;
Jacob Erlbeck5f494b82015-07-01 13:10:41 +0200919
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100920 count_slots(ul_slots, reserved_ul_slots, &slotcount, &reserve_count);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200921 }
922
Pau Espin Pedrol84abd2f2020-09-22 20:08:18 +0200923 first_ts = ffs(rc) - 1;
Pau Espin Pedrol140c97c2022-12-13 14:14:32 +0100924 if (first_ts < 0) {
925 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first slot unavailable\n");
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200926 return -EINVAL;
927 }
Max0e6ac792018-02-19 18:43:01 +0100928
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100929 first_common_tn = ffs(dl_slots & ul_slots) - 1;
930 if (first_common_tn < 0) {
Pau Espin Pedrol140c97c2022-12-13 14:14:32 +0100931 LOGPAL(tbf, "B", single, use_trx, LOGL_NOTICE, "first common slot unavailable\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200932 return -EINVAL;
933 }
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100934 first_common_ts = &trx->pdch[first_common_tn];
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200935
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200936 if (single && slotcount) {
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100937 tbf->upgrade_to_multislot = (reserve_count > slotcount);
Max0e6ac792018-02-19 18:43:01 +0100938 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using single slot at TS %d\n", first_ts);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200939 } else {
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200940 tbf->upgrade_to_multislot = false;
Max0e6ac792018-02-19 18:43:01 +0100941 LOGPAL(tbf, "B", single, use_trx, LOGL_INFO, "using %d slots\n", slotcount);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200942 }
943
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200944 /* The allocation will be successful, so the system state and tbf/ms
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200945 * may be modified from now on. */
946
947 /* Step 4: Update MS and TBF and really allocate the resources */
948
Pau Espin Pedrolc85e0932021-02-25 18:08:10 +0100949 update_ms_reserved_slots(trx, ms, reserved_ul_slots, reserved_dl_slots, ul_slots, dl_slots);
Pau Espin Pedrol345d9ad2022-12-12 19:22:44 +0100950 ms_set_first_common_ts(ms, first_common_ts);
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200951 tbf->trx = trx;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200952
Pau Espin Pedrolb5fece92021-08-23 16:58:04 +0200953 if (tbf->direction == GPRS_RLCMAC_DL_TBF)
Pau Espin Pedrolcc30b052022-10-27 15:25:55 +0200954 assign_dl_tbf_slots(tbf_as_dl_tbf(tbf), trx, dl_slots, tfi);
Pau Espin Pedrolb5fece92021-08-23 16:58:04 +0200955 else
Pau Espin Pedrolcc30b052022-10-27 15:25:55 +0200956 assign_ul_tbf_slots(tbf_as_ul_tbf(tbf), trx, ul_slots, tfi, usf);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200957
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100958 bts_do_rate_ctr_inc(bts, CTR_TBF_ALLOC_ALGO_B);
Jacob Erlbeck5979fe92015-07-14 14:02:41 +0200959
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200960 return 0;
961}
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200962
Maxe9fe0e32017-09-28 15:56:05 +0200963/*! Slot Allocation: Algorithm dynamic
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200964 *
965 * This meta algorithm automatically selects on of the other algorithms based
966 * on the current system state.
967 *
968 * The goal is to support as many MS and TBF as possible. On low usage, the
969 * goal is to provide the highest possible bandwidth per MS.
970 *
Maxe9fe0e32017-09-28 15:56:05 +0200971 * \param[in,out] bts Pointer to BTS struct
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200972 * \param[in,out] tbf Pointer to TBF struct
Maxe9fe0e32017-09-28 15:56:05 +0200973 * \param[in] single flag indicating if we should force single-slot allocation
974 * \param[in] use_trx which TRX to use or -1 if it should be selected during allocation
975 * \returns negative error code or 0 on success
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200976 */
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200977int alloc_algorithm_dynamic(struct gprs_rlcmac_bts *bts, struct gprs_rlcmac_tbf *tbf, bool single,
Maxe9fe0e32017-09-28 15:56:05 +0200978 int8_t use_trx)
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200979{
980 int rc;
981
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200982 /* Reset load_is_high if there is at least one idle PDCH */
983 if (bts->multislot_disabled) {
Maxa76a7d02018-01-26 11:09:16 +0100984 bts->multislot_disabled = !idle_pdch_avail(bts);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200985 if (!bts->multislot_disabled)
986 LOGP(DRLCMAC, LOGL_DEBUG, "Enabling algorithm B\n");
987 }
988
989 if (!bts->multislot_disabled) {
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200990 rc = alloc_algorithm_b(bts, tbf, single, use_trx);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200991 if (rc >= 0)
992 return rc;
993
994 if (!bts->multislot_disabled)
995 LOGP(DRLCMAC, LOGL_DEBUG, "Disabling algorithm B\n");
996 bts->multislot_disabled = 1;
997 }
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200998
Pau Espin Pedrol77e2ff32021-10-18 14:00:24 +0200999 return alloc_algorithm_a(bts, tbf, single, use_trx);
Jacob Erlbeck400ec022015-07-14 13:31:48 +02001000}
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001001
Max4da38592018-01-31 18:03:49 +01001002int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001003{
Max842d7812017-11-01 18:11:24 +01001004 int rx = mslot_class_get_rx(ms_class);
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001005
1006 if (rx == MS_NA)
1007 rx = 4;
1008
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +01001009 if (the_pcu->alloc_algorithm == alloc_algorithm_a)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +02001010 return 1;
1011
1012 if (bts->multislot_disabled)
1013 return 1;
1014
1015 return rx;
1016}