blob: a9e40ea6f47e025dd3cf43c958a00e0febf692c0 [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#pragma once
23
24#include <stdint.h>
25#include <stdbool.h>
26
27#include <osmocom/core/gsmtap_util.h>
Pau Espin Pedrol0dcbc072021-11-10 19:09:10 +010028#include <osmocom/core/timer.h>
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010029
30#include "gprs_bssgp_pcu.h"
Pau Espin Pedrol97296b22021-01-14 13:08:02 +010031#include "coding_scheme.h"
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010032
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +010033#include "neigh_cache.h"
34
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010035#define LLC_CODEL_DISABLE 0
36#define LLC_CODEL_USE_DEFAULT (-1)
37
38#define MAX_EDGE_MCS 9
39#define MAX_GPRS_CS 4
40
Pau Espin Pedrol41a22a72021-01-26 19:00:37 +010041#define PCU_TDEF_NEIGH_RESOLVE_TO (-1)
42#define PCU_TDEF_SI_RESOLVE_TO (-2)
Pau Espin Pedrolab7159f2021-01-26 17:51:44 +010043#define PCU_TDEF_NEIGH_CACHE_ALIVE (-10)
44#define PCU_TDEF_SI_CACHE_ALIVE (-11)
45
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010046/* see bts->gsmtap_categ_mask */
47enum pcu_gsmtap_category {
48 PCU_GSMTAP_C_DL_UNKNOWN = 0, /* unknown or undecodable downlink blocks */
49 PCU_GSMTAP_C_DL_DUMMY = 1, /* downlink dummy blocks */
50 PCU_GSMTAP_C_DL_CTRL = 2, /* downlink control blocks */
51 PCU_GSMTAP_C_DL_DATA_GPRS = 3, /* downlink GPRS data blocks */
52 PCU_GSMTAP_C_DL_DATA_EGPRS = 4, /* downlink EGPRS data blocks */
53 PCU_GSMTAP_C_DL_PTCCH = 5, /* downlink PTCCH blocks */
54 PCU_GSMTAP_C_DL_AGCH = 6, /* downlink AGCH blocks */
55 PCU_GSMTAP_C_DL_PCH = 7, /* downlink PCH blocks */
56
57 PCU_GSMTAP_C_UL_UNKNOWN = 15, /* unknown or undecodable uplink blocks */
58 PCU_GSMTAP_C_UL_DUMMY = 16, /* uplink dummy blocks */
59 PCU_GSMTAP_C_UL_CTRL = 17, /* uplink control blocks */
60 PCU_GSMTAP_C_UL_DATA_GPRS = 18, /* uplink GPRS data blocks */
61 PCU_GSMTAP_C_UL_DATA_EGPRS = 19, /* uplink EGPRS data blocks */
62 PCU_GSMTAP_C_UL_RACH = 20, /* uplink RACH bursts */
63 PCU_GSMTAP_C_UL_PTCCH = 21, /* uplink PTCCH bursts */
64};
65
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010066struct gprs_rlcmac_bts;
67struct GprsMs;
68struct gprs_rlcmac_tbf;
69
70typedef int (*alloc_algorithm_func_t)(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010071 struct gprs_rlcmac_tbf *tbf,
72 bool single, int8_t use_tbf);
73
74struct gprs_pcu {
75
76 /* Path to be used for the pcu-bts socket */
77 char *pcu_sock_path;
78
79 struct { /* Config Values set by VTY */
Pau Espin Pedrole8912222021-01-14 14:03:17 +010080 uint8_t fc_interval;
81 uint16_t fc_bucket_time;
82 uint32_t fc_bvc_bucket_size;
83 uint32_t fc_bvc_leak_rate;
84 uint32_t fc_ms_bucket_size;
85 uint32_t fc_ms_leak_rate;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010086 bool force_initial_cs; /* false=use from BTS true=use from VTY */
87 bool force_initial_mcs; /* false=use from BTS true=use from VTY */
Pau Espin Pedrol793583e2021-01-14 16:20:57 +010088 uint8_t initial_cs_dl, initial_cs_ul;
89 uint8_t initial_mcs_dl, initial_mcs_ul;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010090 uint8_t max_cs_dl, max_cs_ul;
91 uint8_t max_mcs_dl, max_mcs_ul;
Pau Espin Pedrol03de8982021-01-14 12:48:50 +010092 uint8_t force_two_phase;
Pau Espin Pedrolfe8de452021-02-09 18:47:34 +010093 uint8_t force_alpha, gamma;
Pau Espin Pedrol05f9f592021-01-14 12:56:58 +010094 bool dl_tbf_preemptive_retransmission;
Pau Espin Pedrol97296b22021-01-14 13:08:02 +010095 enum egprs_arq_type dl_arq_type; /* EGPRS_ARQ1 to support resegmentation in DL, EGPRS_ARQ2 for no reseg */
Pau Espin Pedrole8dcf642021-01-14 13:17:01 +010096 bool cs_adj_enabled; /* whether cs_adj_{upper,lower}_limit are used to adjust DL CS */
97 uint8_t cs_adj_upper_limit; /* downgrade DL CS if error rate above its value */
98 uint8_t cs_adj_lower_limit; /* upgrade DL CS if error rate below its value */
Pau Espin Pedrolad79b852021-01-14 13:20:55 +010099 /* downgrade DL CS when less than specified octets are left in tx queue. Optimization, see paper:
100 "Theoretical Analysis of GPRS Throughput and Delay" */
101 uint16_t cs_downgrade_threshold;
Pau Espin Pedrol54b159a2021-01-14 13:30:04 +0100102 /* Link quality range for each UL (M)CS. Below or above, next/prev (M)CS is selected. */
103 struct {int16_t low; int16_t high; } cs_lqual_ranges[MAX_GPRS_CS];
104 struct {int16_t low; int16_t high; } mcs_lqual_ranges[MAX_EDGE_MCS];
Pau Espin Pedrol113fb412021-01-14 13:36:02 +0100105 enum gprs_ns2_dialect ns_dialect; /* Are we talking Gb with IP-SNS (true) or classic Gb? */
Harald Welted9367e32021-04-29 22:02:47 +0200106 int ns_ip_dscp;
107 int ns_priority;
Pau Espin Pedrol519d0712021-01-14 14:30:03 +0100108 uint16_t ws_base;
109 uint16_t ws_pdch; /* increase WS by this value per PDCH */
Pau Espin Pedrolf473ec92021-01-14 14:45:14 +0100110 uint16_t force_llc_lifetime; /* overrides lifetime from SGSN */
111 uint32_t llc_discard_csec;
112 uint32_t llc_idle_ack_csec;
113 uint32_t llc_codel_interval_msec; /* 0=disabled, -1=use default interval */
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +0100114 /* Remote BSS resolution sevice (CTRL iface) */
115 char *neigh_ctrl_addr;
116 uint16_t neigh_ctrl_port;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100117 } vty;
118
119 struct gsmtap_inst *gsmtap;
120 uint32_t gsmtap_categ_mask;
Pau Espin Pedrol13866f02021-11-12 13:42:03 +0100121 char *gsmtap_remote_host;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100122
Pau Espin Pedroldbdf84e2021-11-11 14:11:32 +0100123 struct llist_head bts_list; /* list of gprs_rlcmac_bts */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100124
125 struct gprs_ns2_inst *nsi;
126
127 alloc_algorithm_func_t alloc_algorithm;
128
129 struct gprs_bssgp_pcu bssgp;
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +0100130
131 struct osmo_tdef *T_defs; /* timers controlled by PCU */
Pau Espin Pedrolc0a250d2021-01-21 18:46:13 +0100132
133 struct neigh_cache *neigh_cache; /* ARFC+BSIC -> CGI PS cache */
134 struct si_cache *si_cache; /* ARFC+BSIC -> CGI PS cache */
Pau Espin Pedrol0dcbc072021-11-10 19:09:10 +0100135
136 struct osmo_timer_list update_stats_timer; /* Used to update some time_cc stats periodically */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100137};
138
139
140extern struct gprs_pcu *the_pcu;
141
142struct gprs_pcu *gprs_pcu_alloc(void *ctx);
143
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100144struct gprs_rlcmac_bts *gprs_pcu_get_bts_by_nr(struct gprs_pcu *pcu, uint8_t bts_nr);
Pau Espin Pedrol3a271022021-01-21 18:44:23 +0100145struct gprs_rlcmac_bts *gprs_pcu_get_bts_by_cgi_ps(struct gprs_pcu *pcu, struct osmo_cell_global_id_ps *cgi_ps);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100146
Pau Espin Pedrol793583e2021-01-14 16:20:57 +0100147void gprs_pcu_set_initial_cs(struct gprs_pcu *pcu, uint8_t cs_dl, uint8_t cs_ul);
148void gprs_pcu_set_initial_mcs(struct gprs_pcu *pcu, uint8_t mcs_dl, uint8_t mcs_ul);
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100149void gprs_pcu_set_max_cs(struct gprs_pcu *pcu, uint8_t cs_dl, uint8_t cs_ul);
150void gprs_pcu_set_max_mcs(struct gprs_pcu *pcu, uint8_t mcs_dl, uint8_t mcs_ul);