aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/system_information.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-06 12:02:33 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-03-10 17:39:50 +0100
commitf876c39887029bda0319b055e9ab2794d9164584 (patch)
tree6403e596db79bd5f7271794f012d5e90a3c785d8 /openbsc/src/libbsc/system_information.c
parente1145cf0f9c746e4b1d7707d958705d4923af835 (diff)
si: Another round of PCS related fixes
Inside the SI1 rest_octets we will need to indicate if the ARFCN is band 1800 or 1900. If the BTS is either 850 or 1900 we assume we are running a PCS network, otherwise it is a DCS network. The band indicator is not documented in GSM 04.08 but it is in the GSM 05.14 version 6.1.0 Release 1997.
Diffstat (limited to 'openbsc/src/libbsc/system_information.c')
-rw-r--r--openbsc/src/libbsc/system_information.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/system_information.c b/openbsc/src/libbsc/system_information.c
index 41881d9ac..acf713414 100644
--- a/openbsc/src/libbsc/system_information.c
+++ b/openbsc/src/libbsc/system_information.c
@@ -58,6 +58,15 @@ static int band_compatible(const struct gsm_bts *bts, int arfcn)
return 0;
}
+static int is_dcs_net(const struct gsm_bts *bts)
+{
+ if (bts->band == GSM_BAND_850)
+ return 0;
+ if (bts->band == GSM_BAND_1900)
+ return 0;
+ return 1;
+}
+
static int use_arfcn(const struct gsm_bts *bts, const int bis, const int ter,
const int pgsm, const int arfcn)
{
@@ -388,8 +397,11 @@ static int generate_si1(uint8_t *output, struct gsm_bts *bts)
si1->rach_control = bts->si_common.rach_control;
- /* SI1 Rest Octets (10.5.2.32), contains NCH position */
- rc = rest_octets_si1(si1->rest_octets, NULL);
+ /*
+ * SI1 Rest Octets (10.5.2.32), contains NCH position and band
+ * indicator but that is not in the 04.08.
+ */
+ rc = rest_octets_si1(si1->rest_octets, NULL, is_dcs_net(bts));
return sizeof(*si1) + rc;
}