blob: d0dbe48fc1be16e7862a4469088dad22b3e6fa38 [file] [log] [blame]
Philipp Maier680acae2018-03-01 19:13:05 +01001#pragma once
2
3#include <osmocom/core/utils.h>
4#include <osmocom/core/bitvec.h>
5
6#define MAX_BTS_FEATURES 128
7
8/* N. B: always add new features to the end of the list (right before _NUM_BTS_FEAT) to avoid breaking compatibility
9 with BTS compiled against earlier version of this header. Also make sure that the description strings
Pau Espin Pedrol5f2b8e52021-01-29 17:04:14 +010010 osmo_bts_features_descs[] in gsm_data.c are also updated accordingly! */
Philipp Maier680acae2018-03-01 19:13:05 +010011enum osmo_bts_features {
12 BTS_FEAT_HSCSD,
13 BTS_FEAT_GPRS,
14 BTS_FEAT_EGPRS,
15 BTS_FEAT_ECSD,
16 BTS_FEAT_HOPPING,
17 BTS_FEAT_MULTI_TSC,
18 BTS_FEAT_OML_ALERTS,
19 BTS_FEAT_AGCH_PCH_PROP,
20 BTS_FEAT_CBCH,
21 BTS_FEAT_SPEECH_F_V1,
22 BTS_FEAT_SPEECH_H_V1,
23 BTS_FEAT_SPEECH_F_EFR,
24 BTS_FEAT_SPEECH_F_AMR,
25 BTS_FEAT_SPEECH_H_AMR,
Harald Welte994df262019-09-03 16:52:09 +020026 BTS_FEAT_ETWS_PN,
Harald Welte17933342020-06-21 15:32:41 +020027 BTS_FEAT_PAGING_COORDINATION, /* BTS hands CS paging to PCU/PACCH */
Alexander Couzens03a42132020-06-07 22:53:31 +020028 BTS_FEAT_IPV6_NSVC,
Philipp Maieraa718462020-11-15 14:08:01 +010029 BTS_FEAT_ACCH_REP,
Pau Espin Pedrol3e3f3772021-01-29 17:12:14 +010030 BTS_FEAT_CCN, /* Is CCN supported by the cell? TS 44.060 sec 8.8.2 */
Philipp Maier680acae2018-03-01 19:13:05 +010031 _NUM_BTS_FEAT
32};
33
34extern const struct value_string osmo_bts_features_descs[];
35
36const char *osmo_bts_feature_name(enum osmo_bts_features feature);
37
Philipp Maierbf86d712018-03-05 13:26:44 +010038static inline int osmo_bts_set_feature(struct bitvec *features, enum osmo_bts_features feature)
Philipp Maier680acae2018-03-01 19:13:05 +010039{
40 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
41 return bitvec_set_bit_pos(features, feature, 1);
42}
43
Vadim Yanitskiy383b3bf2020-05-31 16:03:30 +070044static inline int osmo_bts_unset_feature(struct bitvec *features, enum osmo_bts_features feature)
45{
46 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
47 return bitvec_set_bit_pos(features, feature, 0);
48}
49
Philipp Maierbf86d712018-03-05 13:26:44 +010050static inline bool osmo_bts_has_feature(const struct bitvec *features, enum osmo_bts_features feature)
Philipp Maier680acae2018-03-01 19:13:05 +010051{
52 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
Vadim Yanitskiyf8e153d2020-05-31 16:06:36 +070053 return bitvec_get_bit_pos(features, feature) == ONE;
Philipp Maier680acae2018-03-01 19:13:05 +010054}