blob: 27a3983a86c472db19a7ecf7e554636ed6e67e4e [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
10 gsm_bts_features_descs[] in gsm_data.c are also updated accordingly! */
11enum 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,
Philipp Maier680acae2018-03-01 19:13:05 +010027 _NUM_BTS_FEAT
28};
29
30extern const struct value_string osmo_bts_features_descs[];
31
32const char *osmo_bts_feature_name(enum osmo_bts_features feature);
33
Philipp Maierbf86d712018-03-05 13:26:44 +010034static inline int osmo_bts_set_feature(struct bitvec *features, enum osmo_bts_features feature)
Philipp Maier680acae2018-03-01 19:13:05 +010035{
36 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
37 return bitvec_set_bit_pos(features, feature, 1);
38}
39
Vadim Yanitskiy383b3bf2020-05-31 16:03:30 +070040static inline int osmo_bts_unset_feature(struct bitvec *features, enum osmo_bts_features feature)
41{
42 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
43 return bitvec_set_bit_pos(features, feature, 0);
44}
45
Philipp Maierbf86d712018-03-05 13:26:44 +010046static inline bool osmo_bts_has_feature(const struct bitvec *features, enum osmo_bts_features feature)
Philipp Maier680acae2018-03-01 19:13:05 +010047{
48 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
Vadim Yanitskiyf8e153d2020-05-31 16:06:36 +070049 return bitvec_get_bit_pos(features, feature) == ONE;
Philipp Maier680acae2018-03-01 19:13:05 +010050}