blob: 614758b4239b93be55d53ad052698b1b16998f52 [file] [log] [blame]
Philipp Maier680acae2018-03-01 19:13:05 +01001/*! \file bts_features.c
2 * osmo-bts features. */
3/*
4 * (C) 2018 by sysmocom s.f.m.c. GmbH
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 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 General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 * MA 02110-1301, USA.
22 */
23
24#include <osmocom/gsm/bts_features.h>
25
26const struct value_string osmo_bts_features_descs[] = {
27 { BTS_FEAT_HSCSD, "HSCSD" },
28 { BTS_FEAT_GPRS, "GPRS" },
29 { BTS_FEAT_EGPRS, "EGPRS" },
30 { BTS_FEAT_ECSD, "ECSD" },
31 { BTS_FEAT_HOPPING, "Frequency Hopping" },
32 { BTS_FEAT_MULTI_TSC, "Multi-TSC" },
33 { BTS_FEAT_OML_ALERTS, "OML Alerts" },
34 { BTS_FEAT_AGCH_PCH_PROP, "AGCH/PCH proportional allocation" },
35 { BTS_FEAT_CBCH, "CBCH" },
36 { BTS_FEAT_SPEECH_F_V1, "Fullrate speech V1" },
37 { BTS_FEAT_SPEECH_H_V1, "Halfrate speech V1" },
38 { BTS_FEAT_SPEECH_F_EFR, "Fullrate speech EFR" },
39 { BTS_FEAT_SPEECH_F_AMR, "Fullrate speech AMR" },
40 { BTS_FEAT_SPEECH_H_AMR, "Halfrate speech AMR" },
Harald Welte994df262019-09-03 16:52:09 +020041 { BTS_FEAT_ETWS_PN, "ETWS Primary Notification via PCH" },
Harald Welte17933342020-06-21 15:32:41 +020042 { BTS_FEAT_PAGING_COORDINATION, "BSS Paging Coordination" },
Alexander Couzens03a42132020-06-07 22:53:31 +020043 { BTS_FEAT_IPV6_NSVC, "NSVC IPv6" },
Vadim Yanitskiy7e104d92021-01-07 14:22:45 +010044 { BTS_FEAT_ACCH_REP, "FACCH/SACCH Repetition" },
Pau Espin Pedrol3e3f3772021-01-29 17:12:14 +010045 { BTS_FEAT_CCN, "Cell Change Notification (CCN)" },
Neels Hofmeyr158bc792021-03-27 17:14:57 +010046 { BTS_FEAT_VAMOS, "VAMOS (Voice services over Adaptive Multi-user channels on One Slot)" },
Pau Espin Pedrol42bb1252021-05-31 17:11:45 +020047 { BTS_FEAT_ABIS_OSMO_PCU, "OsmoPCU over OML link IPA multiplex" },
Vadim Yanitskiy1c2a3292021-06-25 19:34:38 +020048 { BTS_FEAT_BCCH_POWER_RED, "BCCH carrier power reduction mode" },
Pau Espin Pedrold9825c02021-06-29 11:54:30 +020049 { BTS_FEAT_DYN_TS_SDCCH8, "Dynamic Timeslot configuration as SDCCH8" },
Philipp Maier58f76d82021-08-30 17:53:36 +020050 { BTS_FEAT_ACCH_TEMP_OVP, "FACCH/SACCH Temporary overpower" },
Philipp Maier680acae2018-03-01 19:13:05 +010051 { 0, NULL }
52};
53
Neels Hofmeyr47c7b4f2021-04-02 23:20:09 +020054/*! return description string of a BTS feature (osmo_bts_features_descs).
55 * To get the plain feature name, use osmo_bts_features_name() instead. */
Philipp Maier680acae2018-03-01 19:13:05 +010056const char *osmo_bts_feature_name(enum osmo_bts_features feature)
57{
58 return get_value_string(osmo_bts_features_descs, feature);
59}
Neels Hofmeyr47c7b4f2021-04-02 23:20:09 +020060
61const struct value_string osmo_bts_features_names[] = {
62 { BTS_FEAT_HSCSD, "HSCSD" },
63 { BTS_FEAT_GPRS, "GPRS" },
64 { BTS_FEAT_EGPRS, "EGPRS" },
65 { BTS_FEAT_ECSD, "ECSD" },
66 { BTS_FEAT_HOPPING, "HOPPING" },
67 { BTS_FEAT_MULTI_TSC, "MULTI_TSC" },
68 { BTS_FEAT_OML_ALERTS, "OML_ALERTS" },
69 { BTS_FEAT_AGCH_PCH_PROP, "AGCH_PCH_PROP" },
70 { BTS_FEAT_CBCH, "CBCH" },
71 { BTS_FEAT_SPEECH_F_V1, "SPEECH_F_V1" },
72 { BTS_FEAT_SPEECH_H_V1, "SPEECH_H_V1" },
73 { BTS_FEAT_SPEECH_F_EFR, "SPEECH_F_EFR" },
74 { BTS_FEAT_SPEECH_F_AMR, "SPEECH_F_AMR" },
75 { BTS_FEAT_SPEECH_H_AMR, "SPEECH_H_AMR" },
76 { BTS_FEAT_ETWS_PN, "ETWS_PN" },
77 { BTS_FEAT_PAGING_COORDINATION, "PAGING_COORDINATION" },
78 { BTS_FEAT_IPV6_NSVC, "IPV6_NSVC" },
79 { BTS_FEAT_ACCH_REP, "ACCH_REP" },
80 { BTS_FEAT_CCN, "CCN" },
81 { BTS_FEAT_VAMOS, "VAMOS" },
Pau Espin Pedrol42bb1252021-05-31 17:11:45 +020082 { BTS_FEAT_ABIS_OSMO_PCU, "ABIS_OSMO_PCU" },
Vadim Yanitskiy1c2a3292021-06-25 19:34:38 +020083 { BTS_FEAT_BCCH_POWER_RED, "BCCH_PWR_RED" },
Pau Espin Pedrold9825c02021-06-29 11:54:30 +020084 { BTS_FEAT_DYN_TS_SDCCH8, "DYN_TS_SDCCH8" },
Neels Hofmeyr47c7b4f2021-04-02 23:20:09 +020085 {}
86};