blob: c026590e2f52206e1c05f0bbff5534aa7f62459f [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
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +020042#define LOGPSL(req, level, fmt, args...) LOGP(DRLCMAC, level, "[%s] " fmt, \
43 (req->direction == GPRS_RLCMAC_DL_TBF) ? "DL" : "UL", ## args)
Max0e6ac792018-02-19 18:43:01 +010044
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +020045#define LOGPAL(req, kind, level, fmt, args...) LOGPSL(req, level, \
Max0e6ac792018-02-19 18:43:01 +010046 "algo %s <%s> (suggested TRX: %d): " fmt, \
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +020047 kind, req->single ? "single" : "multi", req->use_trx, ## args)
Max0e6ac792018-02-19 18:43:01 +010048
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
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200217static int find_trx(const struct alloc_resources_req *req)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200218{
219 unsigned trx_no;
220 unsigned ts;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200221
222 /* We must use the TRX currently actively used by an MS */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200223 if (req->ms && ms_current_trx(req->ms))
224 return ms_current_trx(req->ms)->trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200225
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200226 if (req->use_trx >= 0 && req->use_trx < 8)
227 return req->use_trx;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200228
229 /* Find the first TRX that has a PDCH with a free UL and DL TFI */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200230 for (trx_no = 0; trx_no < ARRAY_SIZE(req->bts->trx); trx_no += 1) {
231 const struct gprs_rlcmac_trx *trx = &req->bts->trx[trx_no];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200232 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100233 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200234 if (!pdch->is_enabled())
235 continue;
236
Maxd000d802017-09-20 17:55:28 +0200237 if (pdch->assigned_tfi(GPRS_RLCMAC_UL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200238 continue;
239
Maxd000d802017-09-20 17:55:28 +0200240 if (pdch->assigned_tfi(GPRS_RLCMAC_DL_TBF) == NO_FREE_TFI)
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200241 continue;
242
243 return trx_no;
244 }
245 }
246
247 return -EBUSY;
248}
249
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100250static bool idle_pdch_avail(const struct gprs_rlcmac_bts *bts)
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200251{
252 unsigned trx_no;
253 unsigned ts;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200254
255 /* Find the first PDCH with an unused DL TS */
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +0100256 for (trx_no = 0; trx_no < ARRAY_SIZE(bts->trx); trx_no += 1) {
257 const struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200258 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
Maxa76a7d02018-01-26 11:09:16 +0100259 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200260 if (!pdch->is_enabled())
261 continue;
262
263 if (pdch->num_tbfs(GPRS_RLCMAC_DL_TBF) > PDCH_IDLE_TBF_THRESH)
264 continue;
265
Maxa76a7d02018-01-26 11:09:16 +0100266 return true;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200267 }
268 }
269
Maxa76a7d02018-01-26 11:09:16 +0100270 return false;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200271}
272
Maxa76a7d02018-01-26 11:09:16 +0100273/*! Return free TFI
274 *
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200275 * \param[in] req Contains all the requested params
Maxa76a7d02018-01-26 11:09:16 +0100276 * \param[out] trx_no_ TRX number on which TFI was found
277 * \returns negative error code or 0 on success
278 */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200279static int tfi_find_free(const struct alloc_resources_req *req, uint8_t *trx_no_)
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200280{
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100281 const struct gprs_rlcmac_trx *trx;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200282 int tfi;
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200283 int8_t use_trx = req->use_trx;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200284 uint8_t trx_no;
285
Pau Espin Pedrold9066272021-11-09 16:52:31 +0100286 /* If MS is already doing stuff on a TRX, set use_trx to it: */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200287 if ((trx = ms_current_trx(req->ms))) {
Max7e4921d2017-09-28 16:41:24 +0200288 if (use_trx >= 0 && use_trx != trx->trx_no) {
289 LOGP(DRLCMAC, LOGL_ERROR, "- Requested incompatible TRX %d (current is %d)\n",
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200290 req->use_trx, trx->trx_no);
Max7e4921d2017-09-28 16:41:24 +0200291 return -EINVAL;
292 }
293 use_trx = trx->trx_no;
294 }
295
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200296 tfi = bts_tfi_find_free(req->bts, req->direction, &trx_no, use_trx);
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200297 if (tfi < 0)
298 return -EBUSY;
299
300 if (trx_no_)
301 *trx_no_ = trx_no;
302
303 return tfi;
304}
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200305
Maxe9fe0e32017-09-28 15:56:05 +0200306/*! Slot Allocation: Algorithm A
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200307 *
308 * Assign single slot for uplink and downlink
Maxe9fe0e32017-09-28 15:56:05 +0200309 *
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200310 * \param[in] req Contains all the requested params
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200311 * \param[out] res The resolution/response for the allocation request
Maxe9fe0e32017-09-28 15:56:05 +0200312 * \returns negative error code or 0 on success
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200313 */
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200314int alloc_algorithm_a(const struct alloc_resources_req *req,
315 struct alloc_resources_res *res)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200316{
Jacob Erlbeckec478752015-06-19 16:35:38 +0200317 int ts = -1;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200318 uint8_t ul_slots, dl_slots;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200319 int trx_no;
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200320 int tfi = -1;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200321 int usf = -1;
Max731e2bb2018-02-05 16:15:30 +0100322 uint8_t mask = 0xff;
Jacob Erlbeckec478752015-06-19 16:35:38 +0200323 const char *mask_reason = NULL;
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200324 gprs_rlcmac_trx *trx = ms_current_trx(req->ms);
325 struct gprs_rlcmac_pdch *first_common_ts = ms_first_common_ts(req->ms);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200326
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200327 LOGPAL(req, "A", LOGL_DEBUG, "Alloc start\n");
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200328
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200329 trx_no = find_trx(req);
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200330 if (trx_no < 0) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200331 LOGPAL(req, "A", LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100332 "failed to find a usable TRX (TFI exhausted)\n");
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200333 return trx_no;
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200334 }
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200335 if (!trx)
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200336 trx = &req->bts->trx[trx_no];
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200337
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200338 dl_slots = ms_reserved_dl_slots(req->ms);
339 ul_slots = ms_reserved_ul_slots(req->ms);
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200340
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100341 if (first_common_ts) {
Jacob Erlbeckec478752015-06-19 16:35:38 +0200342 mask_reason = "need to reuse TS";
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100343 mask = 1 << first_common_ts->ts_no;
Jacob Erlbeck5cd496d2015-06-30 10:24:37 +0200344 } else if (dl_slots || ul_slots) {
345 mask_reason = "need to use a reserved common TS";
346 mask = dl_slots & ul_slots;
347 }
Jacob Erlbeckec478752015-06-19 16:35:38 +0200348
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200349 mask = find_possible_pdchs(trx, 1, mask, mask_reason);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200350 if (!mask)
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200351 return -EINVAL;
352
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200353 ts = find_least_busy_pdch(trx, req->direction, mask,
Jacob Erlbeck7af53e62015-07-16 15:04:07 +0200354 compute_usage_for_algo_a,
Jacob Erlbecke0853cd2015-07-10 12:25:25 +0200355 &tfi, &usf);
Jacob Erlbeckec478752015-06-19 16:35:38 +0200356
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200357 if (req->direction == GPRS_RLCMAC_UL_TBF && usf < 0) {
358 LOGPAL(req, "A", LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100359 "failed to allocate a TS, no USF available\n");
Jacob Erlbeckec478752015-06-19 16:35:38 +0200360 return -EBUSY;
361 }
362
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200363 if (ts < 0) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200364 LOGPAL(req, "A", LOGL_NOTICE,
Max0e6ac792018-02-19 18:43:01 +0100365 "failed to allocate a TS, no TFI available\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200366 return -EBUSY;
367 }
368
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200369 res->trx = trx;
370 res->first_common_ts = &trx->pdch[ts];
371 res->reserved_ul_slots = 1 << ts;
372 res->reserved_dl_slots = 1 << ts;
373 res->ass_slots_mask = 1 << ts;
374 res->upgrade_to_multislot = false;
375 res->tfi = tfi;
376 res->usf[ts] = usf;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200377
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200378 bts_do_rate_ctr_inc(req->bts, CTR_TBF_ALLOC_ALGO_A);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200379 return 0;
380}
381
Maxadca67b2018-01-31 15:22:36 +0100382/*! Compute capacity of a given TRX
383 *
384 * \param[in] trx Pointer to TRX object
385 * \param[in] rx_window Receive window
386 * \param[in] tx_window Transmit window
387 * \returns non-negative capacity
388 */
389static inline unsigned compute_capacity(const struct gprs_rlcmac_trx *trx, int rx_window, int tx_window)
390{
391 const struct gprs_rlcmac_pdch *pdch;
392 unsigned ts, capacity = 0;
393
394 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
395 pdch = &trx->pdch[ts];
396 if (rx_window & (1 << ts))
397 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_DL_TBF), 1);
398
399 /* Only consider common slots for UL */
400 if (tx_window & rx_window & (1 << ts)) {
401 if (find_free_usf(pdch->assigned_usf()) >= 0)
402 capacity += OSMO_MAX(32 - pdch->num_reserved(GPRS_RLCMAC_UL_TBF), 1);
403 }
404 }
405
406 return capacity;
407}
408
Max731e2bb2018-02-05 16:15:30 +0100409/*! Decide if a given slot should be skipped by multislot allocator
410 *
411 * \param[in] ms_class Pointer to MS Class object
412 * \param[in] check_tr Flag indicating whether we should check for Tra or Tta parameters for a given MS class
413 * \param[in] rx_window Receive window
414 * \param[in] tx_window Transmit window
415 * \param[in,out] checked_rx array with already checked RX timeslots
416 * \returns true if the slot should be skipped, false otherwise
417 */
418static bool skip_slot(uint8_t mslot_class, bool check_tr,
419 int16_t rx_window, int16_t tx_window,
420 uint32_t *checked_rx)
421{
422 uint8_t common_slot_count, req_common_slots,
423 rx_slot_count = pcu_bitcount(rx_window),
424 tx_slot_count = pcu_bitcount(tx_window);
425
426 /* Check compliance with TS 45.002, table 6.4.2.2.1 */
427 /* Whether to skip this round doesn not only depend on the bit
428 * sets but also on check_tr. Therefore this check must be done
429 * before doing the mslot_test_and_set_bit shortcut. */
430 if (mslot_class_get_type(mslot_class) == 1) {
431 uint16_t slot_sum = rx_slot_count + tx_slot_count;
432 /* Assume down + up / dynamic.
433 * TODO: For ext-dynamic, down only, up only add more cases.
434 */
435 if (slot_sum <= 6 && tx_slot_count < 3) {
436 if (!check_tr)
437 return true; /* Skip Tta */
438 } else if (slot_sum > 6 && tx_slot_count < 3) {
439 if (check_tr)
440 return true; /* Skip Tra */
441 } else
442 return true; /* No supported row in TS 45.002, table 6.4.2.2.1. */
443 }
444
445 /* Avoid repeated RX combination check */
446 if (mslot_test_and_set_bit(checked_rx, rx_window))
447 return true;
448
449 /* Check number of common slots according to TS 45.002, §6.4.2.2 */
450 common_slot_count = pcu_bitcount(tx_window & rx_window);
451 req_common_slots = OSMO_MIN(tx_slot_count, rx_slot_count);
452 if (mslot_class_get_type(mslot_class) == 1)
453 req_common_slots = OSMO_MIN(req_common_slots, 2);
454
455 if (req_common_slots != common_slot_count)
456 return true;
457
458 return false;
459}
460
Maxa76a7d02018-01-26 11:09:16 +0100461/*! Find set of slots available for allocation while taking MS class into account
462 *
463 * \param[in] trx Pointer to TRX object
464 * \param[in] mslot_class The multislot class
465 * \param[in,out] ul_slots set of UL timeslots
466 * \param[in,out] dl_slots set of DL timeslots
467 * \returns negative error code or 0 on success
468 */
Max46fbfce2017-11-01 19:22:25 +0100469int 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 +0200470{
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100471 const uint8_t Rx = mslot_class_get_rx(mslot_class), /* Max number of Rx slots */
472 Tx = mslot_class_get_tx(mslot_class), /* Max number of Tx slots */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100473 Sum = mslot_class_get_sum(mslot_class), /* Max number of Tx + Rx slots */
474 Type = mslot_class_get_type(mslot_class);
Pau Espin Pedrol10475f52021-02-19 17:33:21 +0100475 uint8_t max_slots, num_rx, num_tx, mask_sel, pdch_slots, ul_ts, dl_ts;
Max731e2bb2018-02-05 16:15:30 +0100476 int16_t rx_window, tx_window;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200477 char slot_info[9] = {0};
Maxf633b8d2018-01-31 15:28:53 +0100478 int max_capacity = -1;
479 uint8_t max_ul_slots = 0, max_dl_slots = 0;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200480
Max842d7812017-11-01 18:11:24 +0100481 if (mslot_class)
482 LOGP(DRLCMAC, LOGL_DEBUG, "Slot Allocation (Algorithm B) for class %d\n",
483 mslot_class);
484
Max842d7812017-11-01 18:11:24 +0100485 if (Tx == MS_NA) {
486 LOGP(DRLCMAC, LOGL_NOTICE, "Multislot class %d not applicable.\n",
487 mslot_class);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200488 return -EINVAL;
489 }
490
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100491 max_slots = OSMO_MAX(Rx, Tx);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200492
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200493 if (*dl_slots == 0)
494 *dl_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200495
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200496 if (*ul_slots == 0)
497 *ul_slots = 0xff;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200498
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200499 pdch_slots = find_possible_pdchs(trx, max_slots, 0xff);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200500
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200501 *dl_slots &= pdch_slots;
502 *ul_slots &= pdch_slots;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200503
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200504 LOGP(DRLCMAC, LOGL_DEBUG, "- Possible DL/UL slots: (TS=0)\"%s\"(TS=7)\n",
505 set_flag_chars(set_flag_chars(set_flag_chars(slot_info,
506 *dl_slots, 'D', '.'),
507 *ul_slots, 'U'),
508 *ul_slots & *dl_slots, 'C'));
509
510 /* Check for each UL (TX) slot */
511
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200512 /* Iterate through possible numbers of TX slots */
Pau Espin Pedrol47a3b782021-02-19 16:56:36 +0100513 for (num_tx = 1; num_tx <= Tx; num_tx += 1) {
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200514 uint16_t tx_valid_win = (1 << num_tx) - 1;
Maxf633b8d2018-01-31 15:28:53 +0100515 uint8_t rx_mask[MASK_TR + 1];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200516
Maxf633b8d2018-01-31 15:28:53 +0100517 mslot_fill_rx_mask(mslot_class, num_tx, rx_mask);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200518
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200519 /* Rotate group of TX slots: UUU-----, -UUU----, ..., UU-----U */
520 for (ul_ts = 0; ul_ts < 8; ul_ts += 1, tx_valid_win <<= 1) {
521 uint16_t rx_valid_win;
522 uint32_t checked_rx[256/32] = {0};
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200523
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200524 /* Wrap valid window */
525 tx_valid_win = mslot_wrap_window(tx_valid_win);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200526
Alexander Couzens695ce772021-01-12 19:33:53 +0100527 /* for multislot type 1: don't split the window to wrap around.
528 * E.g. 'UU-----U' is invalid for a 4 TN window. Except 8 TN window.
529 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100530 if (Type == 1 && num_tx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100531 tx_valid_win & (1 << 0) && tx_valid_win & (1 << 7))
532 continue;
533
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200534 tx_window = tx_valid_win;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200535
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200536 /* Filter out unavailable slots */
537 tx_window &= *ul_slots;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200538
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200539 /* Skip if the the first TS (ul_ts) is not in the set */
540 if ((tx_window & (1 << ul_ts)) == 0)
541 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200542
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200543 /* Skip if the the last TS (ul_ts+num_tx-1) is not in the set */
544 if ((tx_window & (1 << ((ul_ts+num_tx-1) % 8))) == 0)
545 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200546
Pau Espin Pedroldfbf3d22021-02-19 17:31:24 +0100547 num_rx = OSMO_MIN(Rx, Sum - num_tx);
Alexander Couzens695ce772021-01-12 19:33:53 +0100548 rx_valid_win = (1 << num_rx) - 1;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200549
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200550 /* Rotate group of RX slots: DDD-----, -DDD----, ..., DD-----D */
551 for (dl_ts = 0; dl_ts < 8; dl_ts += 1, rx_valid_win <<= 1) {
552 /* Wrap valid window */
553 rx_valid_win = (rx_valid_win | rx_valid_win >> 8) & 0xff;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200554
Alexander Couzens695ce772021-01-12 19:33:53 +0100555 /* for multislot type 1: don't split the window to wrap around.
556 * E.g. 'DD-----D' is invalid for a 4 TN window. Except 8 TN window.
557 * See 45.002 B.1 */
Pau Espin Pedrol4df26582021-02-19 17:35:11 +0100558 if (Type == 1 && num_rx < 8 &&
Alexander Couzens695ce772021-01-12 19:33:53 +0100559 (rx_valid_win & (1 << 0)) && (rx_valid_win & (1 << 7)))
560 continue;
561
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200562 /* Validate with both Tta/Ttb/Trb and Ttb/Tra/Trb */
563 for (mask_sel = MASK_TT; mask_sel <= MASK_TR; mask_sel += 1) {
564 int capacity;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200565
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200566 rx_window = mslot_filter_bad(rx_mask[mask_sel], ul_ts, *dl_slots, rx_valid_win);
567 if (rx_window < 0)
568 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200569
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200570 if (skip_slot(mslot_class, mask_sel != MASK_TT, rx_window, tx_window, checked_rx))
571 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200572
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200573 /* Compute capacity */
574 capacity = compute_capacity(trx, rx_window, tx_window);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200575
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200576#ifdef ENABLE_TS_ALLOC_DEBUG
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200577 LOGP(DRLCMAC, LOGL_DEBUG,
578 "- Considering DL/UL slots: (TS=0)\"%s\"(TS=7), "
579 "capacity = %d\n",
580 set_flag_chars(set_flag_chars(set_flag_chars(set_flag_chars(
581 slot_info,
582 rx_bad, 'x', '.'),
583 rx_window, 'D'),
584 tx_window, 'U'),
585 rx_window & tx_window, 'C'),
586 capacity);
Jacob Erlbeck1653f832015-06-30 14:48:13 +0200587#endif
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200588
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200589 if (capacity <= max_capacity)
590 continue;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200591
Pau Espin Pedrol5d2d2ec2020-09-22 18:03:56 +0200592 max_capacity = capacity;
593 max_ul_slots = tx_window;
594 max_dl_slots = rx_window;
595 }
596 }
597 }
Maxadca67b2018-01-31 15:22:36 +0100598 }
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200599
600 if (!max_ul_slots || !max_dl_slots) {
601 LOGP(DRLCMAC, LOGL_NOTICE,
602 "No valid UL/DL slot combination found\n");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100603 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_SLOT_COMBI);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200604 return -EINVAL;
605 }
606
607 *ul_slots = max_ul_slots;
608 *dl_slots = max_dl_slots;
609
610 return 0;
611}
612
Max0cc72122018-01-31 17:00:06 +0100613/*! Count used bits in slots and reserved_slots bitmasks
614 *
615 * \param[in] slots Timeslots in use
616 * \param[in] reserved_slots Reserved timeslots
617 * \param[out] slotcount Number of TS in use
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100618 * \param[out] reserve_count Number of reserved TS
Max0cc72122018-01-31 17:00:06 +0100619 */
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100620static void count_slots(uint8_t slots, uint8_t reserved_slots, uint8_t *slotcount, uint8_t *reserve_count)
Max0cc72122018-01-31 17:00:06 +0100621{
622 (*slotcount) = pcu_bitcount(slots);
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100623 (*reserve_count) = pcu_bitcount(reserved_slots);
Max0cc72122018-01-31 17:00:06 +0100624}
625
626/*! Return slot mask with single TS from a given UL/DL set according to TBF's direction, ts pointer is set to that TS
627 * number or to negative value on error
628 *
629 * \param[in] trx Pointer to TRX object
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200630 * \param[in] direction Direction of the TBF to allocate
Max0cc72122018-01-31 17:00:06 +0100631 * \param[in] dl_slots set of DL timeslots
632 * \param[in] ul_slots set of UL timeslots
633 * \param[in] ts corresponding TS or -1 for autoselection
634 * \returns slot mask with single UL or DL timeslot number if possible
635 */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200636static uint8_t get_single_ts(const gprs_rlcmac_trx *trx, enum gprs_rlcmac_tbf_direction direction, uint8_t dl_slots, uint8_t ul_slots,
Max0cc72122018-01-31 17:00:06 +0100637 int ts)
638{
639 uint8_t ret = dl_slots & ul_slots; /* Make sure to consider the first common slot only */
640
641 if (ts < 0)
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200642 ts = find_least_busy_pdch(trx, direction, ret, compute_usage_by_num_tbfs, NULL, NULL);
Max0cc72122018-01-31 17:00:06 +0100643
644 if (ts < 0)
645 return ffs(ret);
646
647 return ret & (1 << ts);
648}
649
650/*! Find set of timeslots available for allocation
651 *
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200652 * \param[in] req Contains all the requested params
Max0cc72122018-01-31 17:00:06 +0100653 * \param[in] trx Pointer to TRX object
Max0cc72122018-01-31 17:00:06 +0100654 * \param[in] ul_slots set of UL timeslots
655 * \param[in] dl_slots set of DL timeslots
656 * \param[in] reserved_ul_slots set of reserved UL timeslots
657 * \param[in] reserved_dl_slots set of reserved DL timeslots
658 * \param[in] first_common_ts First TS common for both UL and DL or -1 if unknown
659 * \returns negative error code or selected TS on success
660 */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200661static int tbf_select_slot_set(const struct alloc_resources_req *req, const gprs_rlcmac_trx *trx,
Max0cc72122018-01-31 17:00:06 +0100662 uint8_t ul_slots, uint8_t dl_slots,
663 uint8_t reserved_ul_slots, uint8_t reserved_dl_slots,
664 int8_t first_common_ts)
665{
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200666 bool is_ul = req->direction == GPRS_RLCMAC_UL_TBF;
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200667 uint8_t sl = is_ul ? ul_slots : dl_slots;
Max0cc72122018-01-31 17:00:06 +0100668 char slot_info[9] = { 0 };
669
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200670 if (req->single)
671 sl = get_single_ts(trx, req->direction, dl_slots, ul_slots, first_common_ts);
Max0cc72122018-01-31 17:00:06 +0100672
673 if (!sl) {
674 LOGP(DRLCMAC, LOGL_NOTICE, "No %s slots available\n",
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200675 is_ul ? "uplink" : "downlink");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100676 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_SLOT_AVAIL);
Max0cc72122018-01-31 17:00:06 +0100677 return -EINVAL;
678 }
679
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200680 if (is_ul) {
Max0cc72122018-01-31 17:00:06 +0100681 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_ul_slots, 'u'));
682 masked_override_with(slot_info, sl, 'U');
Max0cc72122018-01-31 17:00:06 +0100683 } else {
684 snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_dl_slots, 'd'));
685 masked_override_with(slot_info, sl, 'D');
Max0cc72122018-01-31 17:00:06 +0100686 }
687
Pau Espin Pedrol393484a2021-05-10 11:21:50 +0200688 LOGPC(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
689 is_ul ? "UL" : "DL",
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200690 slot_info, req->single ? "single" : "multi");
Max0cc72122018-01-31 17:00:06 +0100691
692 return sl;
693}
694
Max2afec6d2018-01-31 17:21:21 +0100695/*! Allocate USF according to a given UL TS mapping
696 *
Max2afec6d2018-01-31 17:21:21 +0100697 * \param[in] trx Pointer to TRX object
Max2afec6d2018-01-31 17:21:21 +0100698 * \param[in] selected_ul_slots set of UL timeslots selected for allocation
699 * \param[in] dl_slots set of DL timeslots
700 * \param[out] usf array for allocated USF
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100701 * \returns updated UL TS mask or negative on error
Max2afec6d2018-01-31 17:21:21 +0100702 */
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100703static int allocate_usf(const gprs_rlcmac_trx *trx, uint8_t selected_ul_slots, uint8_t dl_slots,
704 int *usf_list)
Max2afec6d2018-01-31 17:21:21 +0100705{
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100706 uint8_t ul_slots = selected_ul_slots & dl_slots;
707 unsigned int ts;
Max2afec6d2018-01-31 17:21:21 +0100708
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100709 for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) {
710 const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts];
711 int8_t free_usf;
Max2afec6d2018-01-31 17:21:21 +0100712
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100713 if (((1 << ts) & ul_slots) == 0)
714 continue;
Max2afec6d2018-01-31 17:21:21 +0100715
Pau Espin Pedroled2afa32021-02-22 17:20:15 +0100716 free_usf = find_free_usf(pdch->assigned_usf());
717 if (free_usf < 0) {
718 LOGP(DRLCMAC, LOGL_DEBUG,
719 "- Skipping TS %d, because "
720 "no USF available\n", ts);
721 ul_slots &= (~(1 << ts)) & 0xff;
722 continue;
723 }
724 usf_list[ts] = free_usf;
725 }
726
727 if (!ul_slots) {
Max2afec6d2018-01-31 17:21:21 +0100728 LOGP(DRLCMAC, LOGL_NOTICE, "No USF available\n");
Pau Espin Pedrol9688dc92021-02-25 18:30:33 +0100729 bts_do_rate_ctr_inc(trx->bts, CTR_TBF_ALLOC_FAIL_NO_USF);
Max2afec6d2018-01-31 17:21:21 +0100730 return -EBUSY;
731 }
732
Max2afec6d2018-01-31 17:21:21 +0100733 return ul_slots;
734}
735
Maxe9fe0e32017-09-28 15:56:05 +0200736/*! Slot Allocation: Algorithm B
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200737 *
738 * Assign as many downlink slots as possible.
739 * Assign one uplink slot. (With free USF)
740 *
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200741 * \param[in] req Contains all the requested params
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200742 * \param[out] res The resolution/response for the allocation request
Maxe9fe0e32017-09-28 15:56:05 +0200743 * \returns negative error code or 0 on success
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200744 */
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200745int alloc_algorithm_b(const struct alloc_resources_req *req,
746 struct alloc_resources_res *res)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200747{
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200748 uint8_t dl_slots;
749 uint8_t ul_slots;
750 uint8_t reserved_dl_slots;
751 uint8_t reserved_ul_slots;
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100752 int8_t first_common_tn;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200753 uint8_t slotcount = 0;
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100754 uint8_t reserve_count = 0, trx_no;
Pau Espin Pedrol140c97c2022-12-13 14:14:32 +0100755 int first_ts;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200756 int rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200757 int tfi;
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200758 unsigned int i;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200759 gprs_rlcmac_trx *trx;
Pau Espin Pedrola42b1742023-04-20 20:20:48 +0200760 char slot_info[9] = { 0 };
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200761 struct gprs_rlcmac_pdch *first_common_ts = ms_first_common_ts(req->ms);
Jacob Erlbeck5879c642015-07-10 10:41:36 +0200762
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200763 LOGPAL(req, "B", LOGL_DEBUG, "Alloc start\n");
Pau Espin Pedrol8353d972020-10-23 17:07:10 +0200764
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200765 for (i = 0; i < ARRAY_SIZE(res->usf); i++)
766 res->usf[i] = -1;
767
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200768 /* Step 1: Get current state from the MS object */
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200769
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200770 reserved_dl_slots = ms_reserved_dl_slots(req->ms);
771 reserved_ul_slots = ms_reserved_ul_slots(req->ms);
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100772 first_common_tn = first_common_ts ? first_common_ts->ts_no : -1;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200773
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200774 /* Step 2a: Find usable TRX and TFI */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200775 tfi = tfi_find_free(req, &trx_no);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200776 if (tfi < 0) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200777 LOGPAL(req, "B", LOGL_NOTICE, "failed to allocate a TFI\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200778 return tfi;
779 }
780
781 /* Step 2b: Reserve slots on the TRX for the MS */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200782 trx = &req->bts->trx[trx_no];
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200783
Pau Espin Pedrol50272a42021-05-10 12:25:20 +0200784 if (!reserved_dl_slots || !reserved_ul_slots) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200785 rc = find_multi_slots(trx, ms_ms_class(req->ms), &reserved_ul_slots, &reserved_dl_slots);
Holger Hans Peter Freyther73193112013-12-26 09:49:05 +0100786 if (rc < 0)
787 return rc;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200788 }
Pau Espin Pedrol50272a42021-05-10 12:25:20 +0200789 dl_slots = reserved_dl_slots;
790 ul_slots = reserved_ul_slots;
Max92e9c172017-09-28 16:25:25 +0200791
Max0cc72122018-01-31 17:00:06 +0100792 /* Step 3a: Derive the slot set for the current TBF */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200793 rc = tbf_select_slot_set(req, trx, ul_slots, dl_slots, reserved_ul_slots, reserved_dl_slots,
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100794 first_common_tn);
Max0cc72122018-01-31 17:00:06 +0100795 if (rc < 0)
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200796 return -EINVAL;
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200797
Max0cc72122018-01-31 17:00:06 +0100798 /* Step 3b: Derive the slot set for a given direction */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200799 if (req->direction == GPRS_RLCMAC_DL_TBF) {
Max0cc72122018-01-31 17:00:06 +0100800 dl_slots = rc;
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100801 count_slots(dl_slots, reserved_dl_slots, &slotcount, &reserve_count);
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200802 } else {
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200803 rc = allocate_usf(trx, rc, dl_slots, &res->usf[0]);
Max2afec6d2018-01-31 17:21:21 +0100804 if (rc < 0)
805 return rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200806
Max2afec6d2018-01-31 17:21:21 +0100807 ul_slots = rc;
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200808 reserved_ul_slots = ul_slots;
Jacob Erlbeck5f494b82015-07-01 13:10:41 +0200809
Pau Espin Pedrol853cdf82021-11-09 17:35:30 +0100810 count_slots(ul_slots, reserved_ul_slots, &slotcount, &reserve_count);
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200811 }
812
Pau Espin Pedrol84abd2f2020-09-22 20:08:18 +0200813 first_ts = ffs(rc) - 1;
Pau Espin Pedrol140c97c2022-12-13 14:14:32 +0100814 if (first_ts < 0) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200815 LOGPAL(req, "B", LOGL_NOTICE, "first slot unavailable\n");
Jacob Erlbeckea65c722015-06-22 16:14:23 +0200816 return -EINVAL;
817 }
Max0e6ac792018-02-19 18:43:01 +0100818
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100819 first_common_tn = ffs(dl_slots & ul_slots) - 1;
820 if (first_common_tn < 0) {
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200821 LOGPAL(req, "B", LOGL_NOTICE, "first common slot unavailable\n");
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200822 return -EINVAL;
823 }
Pau Espin Pedrol9935d0d2022-12-13 18:29:25 +0100824 first_common_ts = &trx->pdch[first_common_tn];
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200825
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200826 res->trx = trx;
827 res->first_common_ts = first_common_ts;
828 res->reserved_ul_slots = reserved_ul_slots;
829 res->reserved_dl_slots = reserved_dl_slots;
830 res->tfi = tfi;
831 /* res->usf is already filled in above */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200832 if (req->single && slotcount) {
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200833 res->upgrade_to_multislot = (reserve_count > slotcount);
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200834 LOGPAL(req, "B", LOGL_INFO, "using single slot at TS %d\n", first_ts);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200835 } else {
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200836 res->upgrade_to_multislot = false;
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200837 LOGPAL(req, "B", LOGL_INFO, "using %d slots\n", slotcount);
Jacob Erlbeck5a2b8be2015-07-14 11:35:21 +0200838 }
839
Pau Espin Pedrola42b1742023-04-20 20:20:48 +0200840 ts_format(slot_info, dl_slots, ul_slots);
841 LOGP(DRLCMAC, LOGL_DEBUG, "- Available DL/UL slots: (TS=0)\"%s\"(TS=7)\n", slot_info);
842
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200843 if (req->direction == GPRS_RLCMAC_DL_TBF)
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200844 res->ass_slots_mask = dl_slots;
Pau Espin Pedrolb5fece92021-08-23 16:58:04 +0200845 else
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200846 res->ass_slots_mask = ul_slots;
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200847
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200848 bts_do_rate_ctr_inc(req->bts, CTR_TBF_ALLOC_ALGO_B);
Jacob Erlbeck5979fe92015-07-14 14:02:41 +0200849
Holger Hans Peter Freyther02ab4a82013-09-29 07:37:40 +0200850 return 0;
851}
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200852
Maxe9fe0e32017-09-28 15:56:05 +0200853/*! Slot Allocation: Algorithm dynamic
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200854 *
855 * This meta algorithm automatically selects on of the other algorithms based
856 * on the current system state.
857 *
858 * The goal is to support as many MS and TBF as possible. On low usage, the
859 * goal is to provide the highest possible bandwidth per MS.
860 *
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200861 * \param[in] req Contains all the requested params
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200862 * \param[out] res The resolution/response for the allocation request
Maxe9fe0e32017-09-28 15:56:05 +0200863 * \returns negative error code or 0 on success
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200864 */
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200865int alloc_algorithm_dynamic(const struct alloc_resources_req *req,
866 struct alloc_resources_res *res)
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200867{
868 int rc;
869
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200870 /* Reset load_is_high if there is at least one idle PDCH */
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200871 if (req->bts->multislot_disabled) {
872 req->bts->multislot_disabled = !idle_pdch_avail(req->bts);
873 if (!req->bts->multislot_disabled)
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200874 LOGP(DRLCMAC, LOGL_DEBUG, "Enabling algorithm B\n");
875 }
876
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200877 if (!req->bts->multislot_disabled) {
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200878 rc = alloc_algorithm_b(req, res);
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200879 if (rc >= 0)
880 return rc;
881
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200882 if (!req->bts->multislot_disabled)
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200883 LOGP(DRLCMAC, LOGL_DEBUG, "Disabling algorithm B\n");
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +0200884 req->bts->multislot_disabled = 1;
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200885 }
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200886
Pau Espin Pedrold6c555e2023-04-20 20:10:53 +0200887 return alloc_algorithm_a(req, res);
Jacob Erlbeck400ec022015-07-14 13:31:48 +0200888}
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +0200889
Max4da38592018-01-31 18:03:49 +0100890int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +0200891{
Max842d7812017-11-01 18:11:24 +0100892 int rx = mslot_class_get_rx(ms_class);
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +0200893
894 if (rx == MS_NA)
895 rx = 4;
896
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100897 if (the_pcu->alloc_algorithm == alloc_algorithm_a)
Jacob Erlbeck7f79f0d2015-07-17 11:38:49 +0200898 return 1;
899
900 if (bts->multislot_disabled)
901 return 1;
902
903 return rx;
904}