aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-06-21 15:32:41 +0200
committerHarald Welte <laforge@osmocom.org>2020-06-21 15:33:55 +0200
commit17933347c501b5c6daef19a9e1c49211561967b3 (patch)
tree04608f19f97083572a7e6c5c0fbda101ed87caa7
parented0445b38b0c0beb5fa602a79fbf22fcbd94e1ad (diff)
bts_features.h: Introduce BTS_FEAT_PAGING_COORDINATION
This feature indicates if the given BTS supports paging coordination, that is the transmission of CS paging (received on Abis) to be sent via PACCH/PCU in PS domain fro MS with active TBF. Change-Id: Ifb2e83eaf05dd36e5b203ed2de1a74864b039e38 Related: OS#2406
-rw-r--r--include/osmocom/gsm/bts_features.h1
-rw-r--r--src/gsm/bts_features.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/gsm/bts_features.h b/include/osmocom/gsm/bts_features.h
index 27a3983a..22461a6b 100644
--- a/include/osmocom/gsm/bts_features.h
+++ b/include/osmocom/gsm/bts_features.h
@@ -24,6 +24,7 @@ enum osmo_bts_features {
BTS_FEAT_SPEECH_F_AMR,
BTS_FEAT_SPEECH_H_AMR,
BTS_FEAT_ETWS_PN,
+ BTS_FEAT_PAGING_COORDINATION, /* BTS hands CS paging to PCU/PACCH */
_NUM_BTS_FEAT
};
diff --git a/src/gsm/bts_features.c b/src/gsm/bts_features.c
index e4ff76c8..5a4b7f64 100644
--- a/src/gsm/bts_features.c
+++ b/src/gsm/bts_features.c
@@ -39,6 +39,7 @@ const struct value_string osmo_bts_features_descs[] = {
{ BTS_FEAT_SPEECH_F_AMR, "Fullrate speech AMR" },
{ BTS_FEAT_SPEECH_H_AMR, "Halfrate speech AMR" },
{ BTS_FEAT_ETWS_PN, "ETWS Primary Notification via PCH" },
+ { BTS_FEAT_PAGING_COORDINATION, "BSS Paging Coordination" },
{ 0, NULL }
};