blob: ecb7f29b2ae429118bca51ab607dd41166167603 [file] [log] [blame]
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +01001/*
2 * Copyright (C) 2013 by Holger Hans Peter Freyther
3 * Copyright (C) 2021 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
4 * Author: Pau Espin Pedrol <pespin@sysmocom.de>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (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.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include <osmocom/core/utils.h>
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +010024#include <osmocom/core/linuxlist.h>
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +010025#include <osmocom/ctrl/ports.h>
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010026
27#include "gprs_pcu.h"
28#include "bts.h"
29
30struct gprs_pcu *the_pcu;
31
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +010032static struct osmo_tdef T_defs_pcu[] = {
Oliver Smithd3c75912021-07-09 16:37:16 +020033 { .T=3113, .default_val=7, .unit=OSMO_TDEF_S, .desc="Timeout for paging", .val=0 },
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +010034 { .T=3190, .default_val=5, .unit=OSMO_TDEF_S, .desc="Return to packet idle mode after Packet DL Assignment on CCCH (s)", .val=0},
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +020035 { .T=3141, .default_val=10, .unit=OSMO_TDEF_S, .desc="Timeout for contention resolution procedure (s)", .val=0 },
Pau Espin Pedrol56b7c642021-11-15 18:20:05 +010036 { .T=3172, .default_val=5000, .unit=OSMO_TDEF_MS, .desc="Wait Indication used in Imm Ass Reject during TBF Establishment (PACCH)", .val=0, .min_val = 0, .max_val = 255000 }, /* TS 44.060 7.1.3.2.1 */
Pau Espin Pedrol41a22a72021-01-26 19:00:37 +010037 { .T=PCU_TDEF_NEIGH_RESOLVE_TO, .default_val=1000, .unit=OSMO_TDEF_MS, .desc="[ARFCN+BSIC]->[RAC+CI] resolution timeout (ms)", .val=0 },
38 { .T=PCU_TDEF_SI_RESOLVE_TO, .default_val=1000, .unit=OSMO_TDEF_MS, .desc="RIM RAN-INFO response timeout (ms)", .val=0 },
Pau Espin Pedrolab7159f2021-01-26 17:51:44 +010039 { .T=PCU_TDEF_NEIGH_CACHE_ALIVE, .default_val=5, .unit=OSMO_TDEF_S, .desc="[ARFCN+BSIC]->[RAC+CI] resolution cache entry storage timeout (s)", .val=0 },
40 { .T=PCU_TDEF_SI_CACHE_ALIVE, .default_val=5, .unit=OSMO_TDEF_S, .desc="[RAC+CI]->[SI] resolution cache entry storage timeout (s)", .val=0 },
Pau Espin Pedrol14339f62021-04-26 14:14:37 +020041 { .T=-101, .default_val=30, .unit=OSMO_TDEF_S, .desc="BSSGP (un)blocking procedures timer (s)", .val=0 },
42 { .T=-102, .default_val=30, .unit=OSMO_TDEF_S, .desc="BSSGP reset procedure timer (s)", .val=0 },
Pau Espin Pedrol683ce642021-11-15 14:49:08 +010043 { .T=-2000, .default_val=0, .unit=OSMO_TDEF_MS, .desc="Delay release of UL TBF after tx Packet Access Reject (PACCH) (ms)", .val=0 },
Pau Espin Pedrol039ee822021-04-26 18:49:33 +020044 { .T=-2001, .default_val=2, .unit=OSMO_TDEF_S, .desc="PACCH assignment timeout (s)", .val=0 },
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +010045 { .T=-2002, .default_val=200, .unit=OSMO_TDEF_MS, .desc="Waiting after IMM.ASS confirm timer (ms)", .val=0 },
46 { .T=-2030, .default_val=60, .unit=OSMO_TDEF_S, .desc="Time to keep an idle MS object alive (s)", .val=0 }, /* slightly above T3314 (default 44s, 24.008, 11.2.2) */
47 { .T=-2031, .default_val=2000, .unit=OSMO_TDEF_MS, .desc="Time to keep an idle DL TBF alive (ms)", .val=0 },
48 { .T=0, .default_val=0, .unit=OSMO_TDEF_S, .desc=NULL, .val=0 } /* empty item at the end */
49};
50
Pau Espin Pedrol0dcbc072021-11-10 19:09:10 +010051static void _update_stats_timer_cb(void *data)
52{
53 struct gprs_pcu *pcu = (struct gprs_pcu *)data;
54 struct gprs_rlcmac_bts *bts;
55
56 llist_for_each_entry(bts, &pcu->bts_list, list)
57 osmo_time_cc_set_flag(&bts->all_allocated_pdch, bts_all_pdch_allocated(bts));
58
59 osmo_timer_schedule(&pcu->update_stats_timer, 1, 0);
60}
61
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +010062static int gprs_pcu_talloc_destructor(struct gprs_pcu *pcu)
63{
Pau Espin Pedroladcf2792022-05-09 15:44:32 +020064 struct gprs_rlcmac_bts *bts;
65 while ((bts = llist_first_entry_or_null(&pcu->bts_list, struct gprs_rlcmac_bts, list)))
66 talloc_free(bts);
67
Pau Espin Pedrol0dcbc072021-11-10 19:09:10 +010068 if (osmo_timer_pending(&pcu->update_stats_timer))
69 osmo_timer_del(&pcu->update_stats_timer);
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +010070 neigh_cache_free(pcu->neigh_cache);
71 si_cache_free(pcu->si_cache);
72 return 0;
73}
74
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010075struct gprs_pcu *gprs_pcu_alloc(void *ctx)
76{
77 struct gprs_pcu *pcu;
78
79 pcu = (struct gprs_pcu *)talloc_zero(ctx, struct gprs_pcu);
80 OSMO_ASSERT(pcu);
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +010081 talloc_set_destructor(pcu, gprs_pcu_talloc_destructor);
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010082
Pau Espin Pedrole8912222021-01-14 14:03:17 +010083 pcu->vty.fc_interval = 1;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010084 pcu->vty.max_cs_ul = MAX_GPRS_CS;
85 pcu->vty.max_cs_dl = MAX_GPRS_CS;
86 pcu->vty.max_mcs_ul = MAX_EDGE_MCS;
87 pcu->vty.max_mcs_dl = MAX_EDGE_MCS;
Pau Espin Pedrolfe8de452021-02-09 18:47:34 +010088 pcu->vty.force_alpha = (uint8_t)-1; /* don't force by default, use BTS SI13 provided value */
Pau Espin Pedrol05f9f592021-01-14 12:56:58 +010089 pcu->vty.dl_tbf_preemptive_retransmission = true;
Pau Espin Pedrol97296b22021-01-14 13:08:02 +010090 /* By default resegmentation is supported in DL can also be configured
91 * through VTY */
92 pcu->vty.dl_arq_type = EGPRS_ARQ1;
Pau Espin Pedrole8dcf642021-01-14 13:17:01 +010093 pcu->vty.cs_adj_enabled = true;
94 pcu->vty.cs_adj_upper_limit = 33; /* Decrease CS if the error rate is above */
95 pcu->vty.cs_adj_lower_limit = 10; /* Increase CS if the error rate is below */
Pau Espin Pedrolad79b852021-01-14 13:20:55 +010096 pcu->vty.cs_downgrade_threshold = 200;
Pau Espin Pedrol54b159a2021-01-14 13:30:04 +010097 /* CS-1 to CS-4 */
98 pcu->vty.cs_lqual_ranges[0].low = -256;
99 pcu->vty.cs_lqual_ranges[0].high = 6;
100 pcu->vty.cs_lqual_ranges[1].low = 5;
101 pcu->vty.cs_lqual_ranges[1].high = 8;
102 pcu->vty.cs_lqual_ranges[2].low = 7;
103 pcu->vty.cs_lqual_ranges[2].high = 13;
104 pcu->vty.cs_lqual_ranges[3].low = 12;
105 pcu->vty.cs_lqual_ranges[3].high = 256;
106 /* MCS-1 to MCS-9 */
107 /* Default thresholds are referenced from literature */
108 /* Fig. 2.3, Chapter 2, Optimizing Wireless Communication Systems, Springer (2009) */
109 pcu->vty.mcs_lqual_ranges[0].low = -256;
110 pcu->vty.mcs_lqual_ranges[0].high = 6;
111 pcu->vty.mcs_lqual_ranges[1].low = 5;
112 pcu->vty.mcs_lqual_ranges[1].high = 8;
113 pcu->vty.mcs_lqual_ranges[2].low = 7;
114 pcu->vty.mcs_lqual_ranges[2].high = 13;
115 pcu->vty.mcs_lqual_ranges[3].low = 12;
116 pcu->vty.mcs_lqual_ranges[3].high = 15;
117 pcu->vty.mcs_lqual_ranges[4].low = 14;
118 pcu->vty.mcs_lqual_ranges[4].high = 17;
119 pcu->vty.mcs_lqual_ranges[5].low = 16;
120 pcu->vty.mcs_lqual_ranges[5].high = 18;
121 pcu->vty.mcs_lqual_ranges[6].low = 17;
122 pcu->vty.mcs_lqual_ranges[6].high = 20;
123 pcu->vty.mcs_lqual_ranges[7].low = 19;
124 pcu->vty.mcs_lqual_ranges[7].high = 24;
125 pcu->vty.mcs_lqual_ranges[8].low = 23;
126 pcu->vty.mcs_lqual_ranges[8].high = 256;
Alexander Couzensf7ec5252021-01-25 20:28:38 +0100127 pcu->vty.ns_dialect = GPRS_NS2_DIALECT_IPACCESS;
Harald Welted9367e32021-04-29 22:02:47 +0200128 pcu->vty.ns_ip_dscp = -1;
129 pcu->vty.ns_priority = -1;
Pau Espin Pedrol519d0712021-01-14 14:30:03 +0100130 /* TODO: increase them when CRBB decoding is implemented */
131 pcu->vty.ws_base = 64;
132 pcu->vty.ws_pdch = 0;
Pau Espin Pedrolf473ec92021-01-14 14:45:14 +0100133 pcu->vty.llc_codel_interval_msec = LLC_CODEL_USE_DEFAULT;
134 pcu->vty.llc_idle_ack_csec = 10;
Pau Espin Pedrol5557c0a2021-09-07 14:09:50 +0200135 pcu->vty.neigh_ctrl_addr = NULL; /* don't use CTRL iface for Neigh Addr Resolution */
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +0100136 pcu->vty.neigh_ctrl_port = OSMO_CTRL_PORT_BSC_NEIGH;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100137
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +0100138 pcu->T_defs = T_defs_pcu;
139 osmo_tdefs_reset(pcu->T_defs);
140
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100141 INIT_LLIST_HEAD(&pcu->bts_list);
142
Pau Espin Pedrolab7159f2021-01-26 17:51:44 +0100143 pcu->neigh_cache = neigh_cache_alloc(pcu, osmo_tdef_get(pcu->T_defs, PCU_TDEF_NEIGH_CACHE_ALIVE, OSMO_TDEF_S, -1));
144 pcu->si_cache = si_cache_alloc(pcu, osmo_tdef_get(pcu->T_defs, PCU_TDEF_SI_CACHE_ALIVE, OSMO_TDEF_S, -1));
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +0100145
Pau Espin Pedrol0dcbc072021-11-10 19:09:10 +0100146 osmo_timer_setup(&pcu->update_stats_timer, _update_stats_timer_cb, pcu);
147 osmo_timer_schedule(&pcu->update_stats_timer, 1, 0);
148
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100149 return pcu;
150}
151
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100152struct gprs_rlcmac_bts *gprs_pcu_get_bts_by_nr(struct gprs_pcu *pcu, uint8_t bts_nr)
153{
154 struct gprs_rlcmac_bts *pos;
155 llist_for_each_entry(pos, &pcu->bts_list, list) {
156 if (pos->nr == bts_nr)
157 return pos;
158 }
159 return NULL;
160}
161
Pau Espin Pedrol3a271022021-01-21 18:44:23 +0100162struct gprs_rlcmac_bts *gprs_pcu_get_bts_by_cgi_ps(struct gprs_pcu *pcu, struct osmo_cell_global_id_ps *cgi_ps)
163{
164 struct gprs_rlcmac_bts *pos;
165 llist_for_each_entry(pos, &pcu->bts_list, list) {
Pau Espin Pedrola100a6b2021-01-22 17:45:50 +0100166 if (osmo_cgi_ps_cmp(&pos->cgi_ps, cgi_ps) == 0)
Pau Espin Pedrol3a271022021-01-21 18:44:23 +0100167 return pos;
168 }
169 return NULL;
170}
171
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100172void gprs_pcu_set_initial_cs(struct gprs_pcu *pcu, uint8_t cs_dl, uint8_t cs_ul)
173{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100174 struct gprs_rlcmac_bts *bts;
175
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100176 the_pcu->vty.initial_cs_dl = cs_dl;
177 the_pcu->vty.initial_cs_ul = cs_ul;
178
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100179 llist_for_each_entry(bts, &pcu->bts_list, list) {
180 bts_recalc_initial_cs(bts);
181 }
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100182}
183void gprs_pcu_set_initial_mcs(struct gprs_pcu *pcu, uint8_t mcs_dl, uint8_t mcs_ul)
184{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100185 struct gprs_rlcmac_bts *bts;
186
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100187 the_pcu->vty.initial_mcs_dl = mcs_dl;
188 the_pcu->vty.initial_mcs_ul = mcs_ul;
189
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100190 llist_for_each_entry(bts, &pcu->bts_list, list) {
191 bts_recalc_initial_mcs(bts);
192 }
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100193}
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100194
195void gprs_pcu_set_max_cs(struct gprs_pcu *pcu, uint8_t cs_dl, uint8_t cs_ul)
196{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100197 struct gprs_rlcmac_bts *bts;
198
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100199 the_pcu->vty.max_cs_dl = cs_dl;
200 the_pcu->vty.max_cs_ul = cs_ul;
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100201
202 llist_for_each_entry(bts, &pcu->bts_list, list) {
203 bts_recalc_max_cs(bts);
204 }
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100205}
206void gprs_pcu_set_max_mcs(struct gprs_pcu *pcu, uint8_t mcs_dl, uint8_t mcs_ul)
207{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100208 struct gprs_rlcmac_bts *bts;
209
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100210 the_pcu->vty.max_mcs_dl = mcs_dl;
211 the_pcu->vty.max_mcs_ul = mcs_ul;
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100212
213 llist_for_each_entry(bts, &pcu->bts_list, list) {
214 bts_recalc_max_mcs(bts);
215 }
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100216}