libosmogsm  1.7.0.61-0d9b6.202211030053
Osmocom GSM library
bts_features.h
Go to the documentation of this file.
1 #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  osmo_bts_features_descs[] in gsm_data.c are also updated accordingly! */
27  BTS_FEAT_PAGING_COORDINATION, /* BTS hands CS paging to PCU/PACCH */
30  BTS_FEAT_CCN, /* Is CCN supported by the cell? TS 44.060 sec 8.8.2 */
31  BTS_FEAT_VAMOS, /* Is the BTS VAMOS capable? */
32  BTS_FEAT_ABIS_OSMO_PCU, /* BTS supports forwarding data to PCUIF over IPA OML multiplex */
34  BTS_FEAT_DYN_TS_SDCCH8, /* Osmo Dynamic TS supports configured as SDCCH8 */
35  BTS_FEAT_ACCH_TEMP_OVP, /* FACCH/SACCH Temporary overpower */
36  BTS_FEAT_OSMUX, /* Osmux (Osmocom RTP muxing) support */
38 };
39 
40 extern const struct value_string osmo_bts_features_descs[];
41 
42 static inline const char *osmo_bts_features_desc(enum osmo_bts_features val)
44 
45 const char *osmo_bts_feature_name(enum osmo_bts_features feature)
46  OSMO_DEPRECATED("Use osmo_bts_features_desc() instead");
47 
48 extern const struct value_string osmo_bts_features_names[];
49 
50 static inline const char *osmo_bts_features_name(enum osmo_bts_features val)
52 
53 static inline int osmo_bts_set_feature(struct bitvec *features, enum osmo_bts_features feature)
54 {
56  return bitvec_set_bit_pos(features, feature, 1);
57 }
58 
59 static inline int osmo_bts_unset_feature(struct bitvec *features, enum osmo_bts_features feature)
60 {
62  return bitvec_set_bit_pos(features, feature, 0);
63 }
64 
65 static inline bool osmo_bts_has_feature(const struct bitvec *features, enum osmo_bts_features feature)
66 {
68  return bitvec_get_bit_pos(features, feature) == ONE;
69 }
BTS_FEAT_ETWS_PN
@ BTS_FEAT_ETWS_PN
Definition: bts_features.h:26
_NUM_BTS_FEAT
@ _NUM_BTS_FEAT
Definition: bts_features.h:37
bitvec_set_bit_pos
int bitvec_set_bit_pos(struct bitvec *bv, unsigned int bitnr, enum bit_value bit)
OSMO_DEPRECATED
#define OSMO_DEPRECATED(text)
get_value_string
const char * get_value_string(const struct value_string *vs, uint32_t val)
bitvec_get_bit_pos
enum bit_value bitvec_get_bit_pos(const struct bitvec *bv, unsigned int bitnr)
OSMO_ASSERT
#define OSMO_ASSERT(exp)
osmo_bts_features_name
static const char * osmo_bts_features_name(enum osmo_bts_features val)
Definition: bts_features.h:50
BTS_FEAT_VAMOS
@ BTS_FEAT_VAMOS
Definition: bts_features.h:31
utils.h
BTS_FEAT_SPEECH_H_AMR
@ BTS_FEAT_SPEECH_H_AMR
Definition: bts_features.h:25
osmo_bts_features
osmo_bts_features
Definition: bts_features.h:11
BTS_FEAT_OML_ALERTS
@ BTS_FEAT_OML_ALERTS
Definition: bts_features.h:18
BTS_FEAT_HOPPING
@ BTS_FEAT_HOPPING
Definition: bts_features.h:16
BTS_FEAT_CCN
@ BTS_FEAT_CCN
Definition: bts_features.h:30
osmo_bts_features_names
const struct value_string osmo_bts_features_names[]
Definition: bts_features.c:57
osmo_bts_feature_name
const char * osmo_bts_feature_name(enum osmo_bts_features feature) OSMO_DEPRECATED("Use osmo_bts_features_desc() instead")
return description string of a BTS feature (osmo_bts_features_descs).
Definition: bts_features.c:52
BTS_FEAT_CBCH
@ BTS_FEAT_CBCH
Definition: bts_features.h:20
BTS_FEAT_ECSD
@ BTS_FEAT_ECSD
Definition: bts_features.h:15
BTS_FEAT_SPEECH_F_AMR
@ BTS_FEAT_SPEECH_F_AMR
Definition: bts_features.h:24
osmo_bts_features_descs
const struct value_string osmo_bts_features_descs[]
Definition: bts_features.c:21
BTS_FEAT_SPEECH_H_V1
@ BTS_FEAT_SPEECH_H_V1
Definition: bts_features.h:22
BTS_FEAT_GPRS
@ BTS_FEAT_GPRS
Definition: bts_features.h:13
BTS_FEAT_IPV6_NSVC
@ BTS_FEAT_IPV6_NSVC
Definition: bts_features.h:28
BTS_FEAT_HSCSD
@ BTS_FEAT_HSCSD
Definition: bts_features.h:12
BTS_FEAT_ACCH_TEMP_OVP
@ BTS_FEAT_ACCH_TEMP_OVP
Definition: bts_features.h:35
bitvec.h
BTS_FEAT_MULTI_TSC
@ BTS_FEAT_MULTI_TSC
Definition: bts_features.h:17
BTS_FEAT_PAGING_COORDINATION
@ BTS_FEAT_PAGING_COORDINATION
Definition: bts_features.h:27
BTS_FEAT_ACCH_REP
@ BTS_FEAT_ACCH_REP
Definition: bts_features.h:29
BTS_FEAT_ABIS_OSMO_PCU
@ BTS_FEAT_ABIS_OSMO_PCU
Definition: bts_features.h:32
osmo_bts_has_feature
static bool osmo_bts_has_feature(const struct bitvec *features, enum osmo_bts_features feature)
Definition: bts_features.h:65
bitvec
ONE
ONE
BTS_FEAT_DYN_TS_SDCCH8
@ BTS_FEAT_DYN_TS_SDCCH8
Definition: bts_features.h:34
value_string
BTS_FEAT_AGCH_PCH_PROP
@ BTS_FEAT_AGCH_PCH_PROP
Definition: bts_features.h:19
BTS_FEAT_EGPRS
@ BTS_FEAT_EGPRS
Definition: bts_features.h:14
osmo_bts_features_desc
static const char * osmo_bts_features_desc(enum osmo_bts_features val)
Definition: bts_features.h:42
BTS_FEAT_OSMUX
@ BTS_FEAT_OSMUX
Definition: bts_features.h:36
BTS_FEAT_BCCH_POWER_RED
@ BTS_FEAT_BCCH_POWER_RED
Definition: bts_features.h:33
osmo_bts_unset_feature
static int osmo_bts_unset_feature(struct bitvec *features, enum osmo_bts_features feature)
Definition: bts_features.h:59
BTS_FEAT_SPEECH_F_EFR
@ BTS_FEAT_SPEECH_F_EFR
Definition: bts_features.h:23
osmo_bts_set_feature
static int osmo_bts_set_feature(struct bitvec *features, enum osmo_bts_features feature)
Definition: bts_features.h:53
MAX_BTS_FEATURES
#define MAX_BTS_FEATURES
Definition: bts_features.h:6
BTS_FEAT_SPEECH_F_V1
@ BTS_FEAT_SPEECH_F_V1
Definition: bts_features.h:21