blob: 2f2fdc7d34c8a354e19898dd0ecafea86a9db49b [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>
28
29#include "gprs_bssgp_pcu.h"
30
31#define LLC_CODEL_DISABLE 0
32#define LLC_CODEL_USE_DEFAULT (-1)
33
34#define MAX_EDGE_MCS 9
35#define MAX_GPRS_CS 4
36
37/* see bts->gsmtap_categ_mask */
38enum pcu_gsmtap_category {
39 PCU_GSMTAP_C_DL_UNKNOWN = 0, /* unknown or undecodable downlink blocks */
40 PCU_GSMTAP_C_DL_DUMMY = 1, /* downlink dummy blocks */
41 PCU_GSMTAP_C_DL_CTRL = 2, /* downlink control blocks */
42 PCU_GSMTAP_C_DL_DATA_GPRS = 3, /* downlink GPRS data blocks */
43 PCU_GSMTAP_C_DL_DATA_EGPRS = 4, /* downlink EGPRS data blocks */
44 PCU_GSMTAP_C_DL_PTCCH = 5, /* downlink PTCCH blocks */
45 PCU_GSMTAP_C_DL_AGCH = 6, /* downlink AGCH blocks */
46 PCU_GSMTAP_C_DL_PCH = 7, /* downlink PCH blocks */
47
48 PCU_GSMTAP_C_UL_UNKNOWN = 15, /* unknown or undecodable uplink blocks */
49 PCU_GSMTAP_C_UL_DUMMY = 16, /* uplink dummy blocks */
50 PCU_GSMTAP_C_UL_CTRL = 17, /* uplink control blocks */
51 PCU_GSMTAP_C_UL_DATA_GPRS = 18, /* uplink GPRS data blocks */
52 PCU_GSMTAP_C_UL_DATA_EGPRS = 19, /* uplink EGPRS data blocks */
53 PCU_GSMTAP_C_UL_RACH = 20, /* uplink RACH bursts */
54 PCU_GSMTAP_C_UL_PTCCH = 21, /* uplink PTCCH bursts */
55};
56
57struct BTS;
58struct gprs_rlcmac_bts;
59struct GprsMs;
60struct gprs_rlcmac_tbf;
61
62typedef int (*alloc_algorithm_func_t)(struct gprs_rlcmac_bts *bts,
63 struct GprsMs *ms,
64 struct gprs_rlcmac_tbf *tbf,
65 bool single, int8_t use_tbf);
66
67struct gprs_pcu {
68
69 /* Path to be used for the pcu-bts socket */
70 char *pcu_sock_path;
71
72 struct { /* Config Values set by VTY */
73 bool force_initial_cs; /* false=use from BTS true=use from VTY */
74 bool force_initial_mcs; /* false=use from BTS true=use from VTY */
75 uint8_t max_cs_dl, max_cs_ul;
76 uint8_t max_mcs_dl, max_mcs_ul;
Pau Espin Pedrol03de8982021-01-14 12:48:50 +010077 uint8_t force_two_phase;
Pau Espin Pedrola2814952021-01-14 12:53:53 +010078 uint8_t alpha, gamma;
Pau Espin Pedrol05f9f592021-01-14 12:56:58 +010079 bool dl_tbf_preemptive_retransmission;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010080 } vty;
81
82 struct gsmtap_inst *gsmtap;
83 uint32_t gsmtap_categ_mask;
84
85 struct BTS *bts;
86
87 struct gprs_ns2_inst *nsi;
88
89 alloc_algorithm_func_t alloc_algorithm;
90
91 struct gprs_bssgp_pcu bssgp;
Pau Espin Pedrol924aaad2021-01-14 12:01:42 +010092
93 struct osmo_tdef *T_defs; /* timers controlled by PCU */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010094};
95
96
97extern struct gprs_pcu *the_pcu;
98
99struct gprs_pcu *gprs_pcu_alloc(void *ctx);
100
101void gprs_pcu_set_max_cs(struct gprs_pcu *pcu, uint8_t cs_dl, uint8_t cs_ul);
102void gprs_pcu_set_max_mcs(struct gprs_pcu *pcu, uint8_t mcs_dl, uint8_t mcs_ul);