aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp <pmaier@sysmocom.de>2016-11-02 12:05:44 +0100
committerPhilipp <pmaier@sysmocom.de>2016-11-02 12:12:37 +0100
commit12e84add5bafc7c161033f3e3ed6db127039a850 (patch)
treecced53adf010a275b54c79fb394fb5269bde99df
parentd7489f399a68eb38effed10f13da4ad6850f6794 (diff)
rsl: support for ericssons propritary SI13 format
Ericsson has introduced a propritary format to issue the S13 BCCH information. Normally the system info type field for SI13 would be encoded as 0x28. Ericsson encodes that field as 0x02 and ads a bcch mapping parameter, (IEI=F2) This patch sets the BCCH mapping to 0x00 (=BCCH Normal) statically (0xF200) Change-Id: Ie0900f9b810744172b3090ce1b0ef7b7a1132946
-rw-r--r--openbsc/src/libbsc/abis_rsl.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index c374903e6..20bc9d990 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -241,8 +241,17 @@ int rsl_bcch_info(struct gsm_bts_trx *trx, uint8_t type,
init_dchan_hdr(dh, RSL_MT_BCCH_INFO);
dh->chan_nr = RSL_CHAN_BCCH;
- msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
- msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
+ if (trx->bts->type == GSM_BTS_TYPE_RBS2000
+ && type == RSL_SYSTEM_INFO_13) {
+ /* Ericsson proprietary encoding of SI13 */
+ msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, 0x0C);
+ msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
+ msgb_tv_put(msg, 0xF2, 0x00);
+ } else {
+ /* Normal encoding */
+ msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
+ msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
+ }
msg->dst = trx->rsl_link;