libosmogsm  1.6.0
Osmocom GSM library
gsm_08_58.h
Go to the documentation of this file.
1 
4 /*
5  * (C) 2008 by Harald Welte <laforge@gnumonks.org>
6  * All Rights Reserved
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  */
23 
24 #pragma once
25 
26 #include <stdint.h>
27 
28 #include <osmocom/core/endian.h>
29 
34 /* Channel Number 9.3.1 */
36 #if OSMO_IS_BIG_ENDIAN
37  uint8_t cbits:5,
38  tn:3;
39 #elif OSMO_IS_LITTLE_ENDIAN
40  uint8_t tn:3,
41  cbits:5;
42 #endif
43  uint8_t chan_nr;
44 } __attribute__ ((packed));
45 #define ABIS_RSL_CHAN_NR_CBITS_Bm_ACCHs 0x01
46 #define ABIS_RSL_CHAN_NR_CBITS_Lm_ACCHs(ss) (0x02 + (ss))
47 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH4_ACCH(ss) (0x04 + (ss))
48 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH8_ACCH(ss) (0x08 + (ss))
49 #define ABIS_RSL_CHAN_NR_CBITS_BCCH 0x10
50 #define ABIS_RSL_CHAN_NR_CBITS_RACH 0x11
51 #define ABIS_RSL_CHAN_NR_CBITS_PCH_AGCH 0x12
52 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_PDCH 0x18 /*< non-standard, for dyn TS */
53 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH4 0x19 /*< non-standard, for CBCH/SDCCH4 */
54 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH8 0x1a /*< non-standard, for CBCH/SDCCH8 */
55 
56 /* non-standard, Osmocom specific Bm/Lm equivalents for VAMOS */
57 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_VAMOS_Bm_ACCHs 0x1d /*< VAMOS TCH/F */
58 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_VAMOS_Lm_ACCHs(ss) (0x1e + (ss)) /*< VAMOS TCH/H */
59 
60 /* Link Identifier 9.3.2 */
62 #if OSMO_IS_BIG_ENDIAN
63  uint8_t cbits:2,
64  na:1,
65  reserved:2,
66  sapi:3;
67 #elif OSMO_IS_LITTLE_ENDIAN
68  uint8_t sapi:3,
69  reserved:2,
70  na:1,
71  cbits:2;
72 #endif
73  uint8_t link_id;
74 } __attribute__ ((packed));
75 #define ABIS_RSL_LINK_ID_CBITS_FACCH_SDCCH 0x00
76 #define ABIS_RSL_LINK_ID_CBITS_SACCH 0x01
77 
80  uint8_t msg_discr;
81  uint8_t msg_type;
82  uint8_t data[0];
83 } __attribute__ ((packed));
84 
85 /* RSL RLL header (Chapter 8.3) */
88  uint8_t ie_chan;
89  union {
90  uint8_t chan_nr; /* API backward compat */
92  };
93  uint8_t ie_link_id;
94  union {
95  uint8_t link_id; /* API backward compat */
97  };
98  uint8_t data[0];
99 } __attribute__ ((packed));
100 
101 /* RSL Dedicated Channel header (Chapter 8.3 and 8.4) */
104  uint8_t ie_chan;
105  union {
106  uint8_t chan_nr; /* API backward compat */
108  };
109  uint8_t data[0];
110 } __attribute__ ((packed));
111 
112 /* RSL Common Channel header (Chapter 8.5) */
115  uint8_t ie_chan;
116  union {
117  uint8_t chan_nr; /* API backward compat */
119  };
120  uint8_t data[0];
121 } __attribute__ ((packed));
122 
123 /* Osmocom specific IE to negotiate repeated ACCH capabilities */
125 #if OSMO_IS_BIG_ENDIAN
126  uint8_t reserved:1,
127  rxqual:3,
128  ul_sacch:1,
129  dl_sacch:1,
130  dl_facch_all:1,
131  dl_facch_cmd:1;
132 #elif OSMO_IS_LITTLE_ENDIAN
133  uint8_t dl_facch_cmd:1,
134  dl_facch_all:1,
135  dl_sacch:1,
136  ul_sacch:1,
137  rxqual:3,
138  reserved:1;
139 #endif
140 } __attribute__ ((packed));
141 
142 /* Osmocom specific IE to negotiate temporary overpower of ACCH channels */
144 #if OSMO_IS_BIG_ENDIAN
145  uint8_t sacch_enable:1,
146  facch_enable:1,
147  rxqual:3,
148  overpower_db:3;
149 #elif OSMO_IS_LITTLE_ENDIAN
150  uint8_t overpower_db:3,
151  rxqual:3,
152  facch_enable:1,
153  sacch_enable:1;
154 #endif
155 } __attribute__ ((packed));
156 
157 /* Chapter 9.1 */
158 /* RSL Message Discriminator: RLL */
159 #define ABIS_RSL_MDISC_RLL 0x02
160 /* RSL Message Discriminator: Dedicated Channel */
161 #define ABIS_RSL_MDISC_DED_CHAN 0x08
162 /* RSL Message Discriminator: Common Channel */
163 #define ABIS_RSL_MDISC_COM_CHAN 0x0c
164 /* RSL Message Discriminator: TRX Management */
165 #define ABIS_RSL_MDISC_TRX 0x10
166 /* RSL Message Discriminator: Location Service */
167 #define ABIS_RSL_MDISC_LOC 0x20
168 /* RSL Message Discriminator: ip.access */
169 #define ABIS_RSL_MDISC_IPACCESS 0x7e
170 #define ABIS_RSL_MDISC_TRANSP 0x01
171 
172 /* Check if given RSL message discriminator is transparent */
173 #define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
174 
175 /* RSL Message Type (Chapter 9.1) */
177  /* Radio Link Layer Management */
189  RSL_MT_SUSP_REQ, /* non-standard elements */
192  RSL_MT_RECON_REQ, /* 0x0f */
193 
194  /* Common Channel Management / TRX Management */
202  RSL_MT_CHAN_CONF, /* non-standard element */
203  /* empty */
210  RSL_MT_NOT_CMD, /* 0x1f */
211 
212  /* Dedicate Channel Management */
243  RSL_MT_TFO_MOD_REQ, /* 0x3f */
245 
246  /* ip.access specific RSL message types */
263  RSL_MT_IPAC_MEAS_PREPROC_DFT = 0x60, /*Extented Common Channel Management */
266  RSL_MT_IPAC_CRCX = 0x70, /* Bind to local BTS RTP port */
276 
278 };
279 
298 };
299 
303 };
304 
335  /* reserved */
341  RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
367  /* Siemens vendor-specific */
376 
377  /* Osmocom specific */
381 
382  /* ip.access */
401 };
402 
403 /* Ericsson specific IEs, clash with above partially, so they're not
404  * part of the enum */
405 #define RSL_IE_ERIC_PAGING_GROUP 0x0e
406 #define RSL_IE_ERIC_INST_NR 0x48
407 #define RSL_IE_ERIC_PGSL_TIMERS 0x49
408 #define RSL_IE_ERIC_REPEAT_DL_FACCH 0x4a
409 #define RSL_IE_ERIC_POWER_INFO 0xf0
410 #define RSL_IE_ERIC_MOBILE_ID 0xf1
411 #define RSL_IE_ERIC_BCCH_MAPPING 0xf2
412 #define RSL_IE_ERIC_PACKET_PAG_IND 0xf3
413 #define RSL_IE_ERIC_CNTR_CTRL 0xf4
414 #define RSL_IE_ERIC_CNTR_CTRL_ACK 0xf5
415 #define RSL_IE_ERIC_CNTR_REPORT 0xf6
416 #define RSL_IE_ERIC_ICP_CONN 0xf7
417 #define RSL_IE_ERIC_EMR_SUPPORT 0xf8
418 #define RSL_IE_ERIC_EGPRS_REQ_REF 0xf9
419 #define RSL_IE_ERIC_VGCS_REL 0xfa
420 #define RSL_IE_ERIC_REP_PER_NCH 0xfb
421 #define RSL_IE_ERIC_NY2 0xfc
422 #define RSL_IE_ERIC_T3115 0xfd
423 #define RSL_IE_ERIC_ACTIVATE_FLAG 0xfe
424 #define RSL_IE_ERIC_FULL_NCH_INFO 0xff
425 
426 /* IPAC MEAS_PREPROC AVERAGING METHOD */
427 enum {
431  /* EWMA is an Osmocom specific extension */
433 };
434 
435 /* IPAC MEAS_PREPROC AVERAGING PARAM ID */
436 enum {
440 };
441 
442 /* IPAC MEAS_PREPROC HO CAUSES */
443 enum {
462 };
463 
464 /* Chapter 9.3.1 */
465 #define RSL_CHAN_NR_MASK 0xf8
466 #define RSL_CHAN_NR_1 0x08 /*< bit to add for 2nd,... lchan */
467 #define RSL_CHAN_Bm_ACCHs 0x08
468 #define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
469 #define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
470 #define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
471 #define RSL_CHAN_BCCH 0x80
472 #define RSL_CHAN_RACH 0x88
473 #define RSL_CHAN_PCH_AGCH 0x90
474 #define RSL_CHAN_OSMO_PDCH 0xc0 /*< non-standard, for dyn TS */
475 #define RSL_CHAN_OSMO_CBCH4 0xc8 /*< non-standard, for CBCH/SDCCH4 */
476 #define RSL_CHAN_OSMO_CBCH8 0xd0 /*< non-standard, for CBCH/SDCCH8 */
477 
478 /* non-standard, Osmocom specific Bm/Lm equivalents for VAMOS */
479 #define RSL_CHAN_OSMO_VAMOS_Bm_ACCHs 0xe8 /* VAMOS TCH/F */
480 #define RSL_CHAN_OSMO_VAMOS_Lm_ACCHs 0xf0 /* VAMOS TCH/H */
481 #define RSL_CHAN_OSMO_VAMOS_MASK 0xe0 /* VAMOS TCH/{F,H} */
482 
483 /* Chapter 9.3.3 */
484 #define RSL_ACT_TYPE_INITIAL 0x00
485 #define RSL_ACT_TYPE_REACT 0x80
486 #define RSL_ACT_INTRA_IMM_ASS 0x00
487 #define RSL_ACT_INTRA_NORM_ASS 0x01
488 #define RSL_ACT_INTER_ASYNC 0x02
489 #define RSL_ACT_INTER_SYNC 0x03
490 #define RSL_ACT_SECOND_ADD 0x04
491 #define RSL_ACT_SECOND_MULTI 0x05
492 #define RSL_ACT_OSMO_PDCH 0x0f /*< non-standard, for dyn TS */
493 
496  uint8_t dtx_dtu;
497  uint8_t spd_ind;
498  uint8_t chan_rt;
499  uint8_t chan_rate;
500 } __attribute__ ((packed));
501 #define RSL_CMOD_DTXu 0x01 /* uplink */
502 #define RSL_CMOD_DTXd 0x02 /* downlink */
507 };
508 #define RSL_CMOD_CRT_SDCCH 0x01
509 #define RSL_CMOD_CRT_TCH_Bm 0x08 /* full-rate */
510 #define RSL_CMOD_CRT_TCH_Lm 0x09 /* half-rate */
511 #define RSL_CMOD_CRT_TCH_BI_Bm 0x0a /* full-rate: bi-directional (multislot) */
512 #define RSL_CMOD_CRT_TCH_UNI_Bm 0x1a /* full-rate: uni-directional (multislot) */
513 #define RSL_CMOD_CRT_TCH_GROUP_Bm 0x18 /* full-rate: group call channel */
514 #define RSL_CMOD_CRT_TCH_GROUP_Lm 0x19 /* half-rate: group call channel */
515 #define RSL_CMOD_CRT_TCH_BCAST_Bm 0x28 /* full-rate: broadcast call channel */
516 #define RSL_CMOD_CRT_TCH_BCAST_Lm 0x29 /* half-rate: broadcast call channel */
517 #define RSL_CMOD_CRT_OSMO_TCH_VAMOS_Bm 0x88 /* full-rate in VAMOS mode */
518 #define RSL_CMOD_CRT_OSMO_TCH_VAMOS_Lm 0x89 /* half-rate in VAMOS mode */
519 /* Speech */
520 #define RSL_CMOD_SP_GSM1 0x01
521 #define RSL_CMOD_SP_GSM2 0x11
522 #define RSL_CMOD_SP_GSM3 0x21
523 #define RSL_CMOD_SP_GSM4 0x31
524 #define RSL_CMOD_SP_GSM5 0x09
525 #define RSL_CMOD_SP_GSM6 0x0d
526 /* non-transparent data (asymmetric) */
527 #define RSL_CMOD_CSD_NTA_43k5_14k5 0x61 /* asymmetric 43.5 kbit/s (DL) + 14.5 kbit/s (UL) */
528 #define RSL_CMOD_CSD_NTA_29k0_14k5 0x62 /* asymmetric 29.0 kbit/s (DL) + 14.5 kbit/s (UL) */
529 #define RSL_CMOD_CSD_NTA_43k5_29k0 0x63 /* asymmetric 43.5 kbit/s (DL) + 29.0 kbit/s (UL) */
530 #define RSL_CMOD_CSD_NTA_14k5_43k5 0x69 /* asymmetric 14.5 kbit/s (DL) + 43.5 kbit/s (UL) */
531 #define RSL_CMOD_CSD_NTA_14k5_29k0 0x6a /* asymmetric 14.5 kbit/s (DL) + 29.0 kbit/s (UL) */
532 #define RSL_CMOD_CSD_NTA_29k0_43k5 0x6b /* asymmetric 29.0 kbit/s (DL) + 43.5 kbit/s (UL) */
533 /* non-transparent data */
534 #define RSL_CMOD_CSD_NT_43k5 0x74
535 #define RSL_CMOD_CSD_NT_28k8 0x71
536 #define RSL_CMOD_CSD_NT_14k5 0x58
537 #define RSL_CMOD_CSD_NT_12k0 0x50
538 #define RSL_CMOD_CSD_NT_6k0 0x51
539 /* legacy #defines with wrong name */
540 #define RSL_CMOD_SP_NT_14k5 RSL_CMOD_CSD_NT_14k5
541 #define RSL_CMOD_SP_NT_12k0 RSL_CMOD_CSD_NT_12k0
542 #define RSL_CMOD_SP_NT_6k0 RSL_CMOD_CSD_NT_6k0
543 /* transparent data */
544 #define RSL_CMOD_CSD_T_32000 0x38
545 #define RSL_CMOD_CSD_T_29000 0x39
546 #define RSL_CMOD_CSD_T_14400 0x18
547 #define RSL_CMOD_CSD_T_9600 0x10
548 #define RSL_CMOD_CSD_T_4800 0x11
549 #define RSL_CMOD_CSD_T_2400 0x12
550 #define RSL_CMOD_CSD_T_1200 0x13
551 #define RSL_CMOD_CSD_T_600 0x14
552 #define RSL_CMOD_CSD_T_1200_75 0x15
553 
556  /* GSM 04.08 10.5.2.5 */
557  struct {
558  uint8_t iei;
559  uint8_t chan_nr; /* enc_chan_nr */
560  uint8_t oct3;
561  uint8_t oct4;
562  } chan_desc;
563 #if 0 /* spec says we need this but Abissim doesn't use it */
564  struct {
565  uint8_t tag;
566  uint8_t len;
567  } mobile_alloc;
568 #endif
569 } __attribute__ ((packed));
570 
571 /* Chapter 9.3.22 */
572 #define RLL_CAUSE_T200_EXPIRED 0x01
573 #define RLL_CAUSE_REEST_REQ 0x02
574 #define RLL_CAUSE_UNSOL_UA_RESP 0x03
575 #define RLL_CAUSE_UNSOL_DM_RESP 0x04
576 #define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
577 #define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
578 #define RLL_CAUSE_SEQ_ERR 0x07
579 #define RLL_CAUSE_UFRM_INC_PARAM 0x08
580 #define RLL_CAUSE_SFRM_INC_PARAM 0x09
581 #define RLL_CAUSE_IFRM_INC_MBITS 0x0a
582 #define RLL_CAUSE_IFRM_INC_LEN 0x0b
583 #define RLL_CAUSE_FRM_UNIMPL 0x0c
584 #define RLL_CAUSE_SABM_MF 0x0d
585 #define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
586 
587 /* Chapter 9.3.26 */
588 #define RSL_ERRCLS_NORMAL 0x00
589 #define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
590 #define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
591 #define RSL_ERRCLS_SERVICE_UNIMPL 0x40
592 #define RSL_ERRCLS_INVAL_MSG 0x50
593 #define RSL_ERRCLS_PROTO_ERROR 0x60
594 #define RSL_ERRCLS_INTERWORKING 0x70
595 
596 /* normal event */
597 #define RSL_ERR_RADIO_IF_FAIL 0x00
598 #define RSL_ERR_RADIO_LINK_FAIL 0x01
599 #define RSL_ERR_HANDOVER_ACC_FAIL 0x02
600 #define RSL_ERR_TALKER_ACC_FAIL 0x03
601 #define RSL_ERR_OM_INTERVENTION 0x07
602 #define RSL_ERR_NORMAL_UNSPEC 0x0f
603 #define RSL_ERR_T_MSRFPCI_EXP 0x18
604 /* resource unavailable */
605 #define RSL_ERR_EQUIPMENT_FAIL 0x20
606 #define RSL_ERR_RR_UNAVAIL 0x21
607 #define RSL_ERR_TERR_CH_FAIL 0x22
608 #define RSL_ERR_CCCH_OVERLOAD 0x23
609 #define RSL_ERR_ACCH_OVERLOAD 0x24
610 #define RSL_ERR_PROCESSOR_OVERLOAD 0x25
611 #define RSL_ERR_BTS_NOT_EQUIPPED 0x27
612 #define RSL_ERR_REMOTE_TRANSC_FAIL 0x28
613 #define RSL_ERR_NOTIFICATION_OVERFL 0x29
614 #define RSL_ERR_RES_UNAVAIL 0x2f
615 /* service or option not available */
616 #define RSL_ERR_TRANSC_UNAVAIL 0x30
617 #define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
618 /* service or option not implemented */
619 #define RSL_ERR_ENCR_UNIMPL 0x40
620 #define RSL_ERR_SERV_OPT_UNIMPL 0x4f
621 /* invalid message */
622 #define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
623 #define RSL_ERR_INVALID_MESSAGE 0x5f
624 /* protocol error */
625 #define RSL_ERR_MSG_DISCR 0x60
626 #define RSL_ERR_MSG_TYPE 0x61
627 #define RSL_ERR_MSG_SEQ 0x62
628 #define RSL_ERR_IE_ERROR 0x63
629 #define RSL_ERR_MAND_IE_ERROR 0x64
630 #define RSL_ERR_OPT_IE_ERROR 0x65
631 #define RSL_ERR_IE_NONEXIST 0x66
632 #define RSL_ERR_IE_LENGTH 0x67
633 #define RSL_ERR_IE_CONTENT 0x68
634 #define RSL_ERR_PROTO 0x6f
635 /* interworking */
636 #define RSL_ERR_INTERWORKING 0x7f
637 
638 /* Chapter 9.3.30 */
639 #define RSL_SYSTEM_INFO_8 0x00
640 #define RSL_SYSTEM_INFO_1 0x01
641 #define RSL_SYSTEM_INFO_2 0x02
642 #define RSL_SYSTEM_INFO_3 0x03
643 #define RSL_SYSTEM_INFO_4 0x04
644 #define RSL_SYSTEM_INFO_5 0x05
645 #define RSL_SYSTEM_INFO_6 0x06
646 #define RSL_SYSTEM_INFO_7 0x07
647 #define RSL_SYSTEM_INFO_16 0x08
648 #define RSL_SYSTEM_INFO_17 0x09
649 #define RSL_SYSTEM_INFO_2bis 0x0a
650 #define RSL_SYSTEM_INFO_2ter 0x0b
651 #define RSL_SYSTEM_INFO_5bis 0x0d
652 #define RSL_SYSTEM_INFO_5ter 0x0e
653 #define RSL_SYSTEM_INFO_10 0x0f
654 #define RSL_EXT_MEAS_ORDER 0x47
655 #define RSL_MEAS_INFO 0x48
656 #define RSL_SYSTEM_INFO_13 0x28
657 #define RSL_ERIC_SYSTEM_INFO_13 0x0C
658 #define RSL_SYSTEM_INFO_2quater 0x29
659 #define RSL_SYSTEM_INFO_9 0x2a
660 #define RSL_SYSTEM_INFO_18 0x2b
661 #define RSL_SYSTEM_INFO_19 0x2c
662 #define RSL_SYSTEM_INFO_20 0x2d
663 
664 /* Chapter 9.3.40 */
665 #define RSL_CHANNEED_ANY 0x00
666 #define RSL_CHANNEED_SDCCH 0x01
667 #define RSL_CHANNEED_TCH_F 0x02
668 #define RSL_CHANNEED_TCH_ForH 0x03
669 
672 #if OSMO_IS_LITTLE_ENDIAN
673  uint8_t last_block:2;
674  uint8_t spare:1;
675  uint8_t def_bcast:1;
676  uint8_t command:4;
677 #elif OSMO_IS_BIG_ENDIAN
678 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
679  uint8_t command:4, def_bcast:1, spare:1, last_block:2;
680 #endif
681 } __attribute__ ((packed));
682 /* ->command */
683 #define RSL_CB_CMD_TYPE_NORMAL 0x00
684 #define RSL_CB_CMD_TYPE_SCHEDULE 0x08
685 #define RSL_CB_CMD_TYPE_DEFAULT 0x0e
686 #define RSL_CB_CMD_TYPE_NULL 0x0f
687 /* ->def_bcast */
688 #define RSL_CB_CMD_DEFBCAST_NORMAL 0
689 #define RSL_CB_CMD_DEFBCAST_NULL 1
690 /* ->last_block */
691 #define RSL_CB_CMD_LASTBLOCK_4 0
692 #define RSL_CB_CMD_LASTBLOCK_1 1
693 #define RSL_CB_CMD_LASTBLOCK_2 2
694 #define RSL_CB_CMD_LASTBLOCK_3 3
695 
696 /* Chapter 3.3.2.3 Brocast control channel */
697 /* CCCH-CONF, NC is not combined */
698 #define RSL_BCCH_CCCH_CONF_1_NC 0x00
699 #define RSL_BCCH_CCCH_CONF_1_C 0x01
700 #define RSL_BCCH_CCCH_CONF_2_NC 0x02
701 #define RSL_BCCH_CCCH_CONF_3_NC 0x04
702 #define RSL_BCCH_CCCH_CONF_4_NC 0x06
703 
704 /* BS-PA-MFRMS */
705 #define RSL_BS_PA_MFRMS_2 0x00
706 #define RSL_BS_PA_MFRMS_3 0x01
707 #define RSL_BS_PA_MFRMS_4 0x02
708 #define RSL_BS_PA_MFRMS_5 0x03
709 #define RSL_BS_PA_MFRMS_6 0x04
710 #define RSL_BS_PA_MFRMS_7 0x05
711 #define RSL_BS_PA_MFRMS_8 0x06
712 #define RSL_BS_PA_MFRMS_9 0x07
713 
714 /* RSL_IE_IPAC_RTP_PAYLOAD[2] */
721 };
722 
723 /* RSL_IE_IPAC_SPEECH_MODE, lower four bits */
725  RSL_IPAC_SPEECH_GSM_FR = 0, /* GSM FR (Type 1, FS) */
726  RSL_IPAC_SPEECH_GSM_EFR = 1, /* GSM EFR (Type 2, FS) */
727  RSL_IPAC_SPEECH_GSM_AMR_FR = 2, /* GSM AMR/FR (Type 3, FS) */
728  RSL_IPAC_SPEECH_GSM_HR = 3, /* GSM HR (Type 1, HS) */
729  RSL_IPAC_SPEECH_GSM_AMR_HR = 5, /* GSM AMR/hr (Type 3, HS) */
730  RSL_IPAC_SPEECH_AS_RTP = 0xf, /* As specified by RTP Payload IE */
731 };
732 /* RSL_IE_IPAC_SPEECH_MODE, upper four bits */
734  RSL_IPAC_SPEECH_M_RXTX = 0, /* Send and Receive */
735  RSL_IPAC_SPEECH_M_RX = 1, /* Receive only */
736  RSL_IPAC_SPEECH_M_TX = 2, /* Send only */
737 };
738 
739 /* RSL_IE_IPAC_RTP_CSD_FMT, lower four bits */
745 };
746 /* RSL_IE_IPAC_RTP_CSD_FMT, upper four bits */
752 };
753 
754 /* Siemens vendor-specific RSL extensions */
755 struct rsl_mrpci {
756  uint8_t power_class:3,
757  vgcs_capable:1,
758  vbs_capable:1,
759  gsm_phase:2;
760 } __attribute__ ((packed));
761 
768 };
771  /* reserved */
774 };
775 
776 /* 9.3.20 Release Mode */
780 };
781 
805  /* additional IPAC measurement pre-processing related IEI */
811 
812  /* Osmocom specific extensions: */
816 
817 };
818 
819 /* Value of TLV IE RSL_IPAC_EIE_MEAS_AVG_CFG */
821 #if OSMO_IS_LITTLE_ENDIAN
822  uint8_t h_reqave:5,
823  param_id:2,
824  reserved:1;
825  uint8_t h_reqt:5,
826  ave_method:3;
827  uint8_t params[0];
828 #elif OSMO_IS_BIG_ENDIAN
829 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
830  uint8_t reserved:1, param_id:2, h_reqave:5;
831  uint8_t ave_method:3, h_reqt:5;
832  uint8_t params[0];
833 #endif
834 }__attribute__ ((packed));
835 
836 
838 #if OSMO_IS_LITTLE_ENDIAN
839  uint8_t h_reqave:5,
840  ave_enabled:1,
841  reserved:2;
842  uint8_t h_reqt:5,
843  ave_method:3;
844 #elif OSMO_IS_BIG_ENDIAN
845 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
846  uint8_t reserved:2, ave_enabled:1, h_reqave:5;
847  uint8_t ave_method:3, h_reqt:5;
848 #endif
849 }__attribute__ ((packed));
850 /* Value of TLV IE RSL_IPAC_EIE_OSMO_MEAS_AVG_CFG: */
858  uint8_t params[0]; /* Contains params for each above, appended one after the other */
859 }__attribute__ ((packed));
860 
863 #if OSMO_IS_LITTLE_ENDIAN
864  uint8_t l_rxlev:6, reserved_l_rxlev:2;
865  uint8_t u_rxlev:6, reserved_u_rxlev:2;
866  uint8_t u_rxqual:3, reserved_u_rxqual:1,
867  l_rxqual:3, reserved_l_rxqual:1;
868 #elif OSMO_IS_BIG_ENDIAN
869  uint8_t reserved_l_rxlev:2, l_rxlev:6;
870  uint8_t reserved_u_rxlev:2, u_rxlev:6;
871  uint8_t reserved_l_rxqual:1, l_rxqual:3,
872  reserved_u_rxqual:1, u_rxqual:3;
873 #endif
874 }__attribute__ ((packed));
875 
878  /* Carrier-to-Interference (C/I), in dB: */
879  int8_t l_ci_fr; int8_t u_ci_fr; /* FR/EFR */
880  int8_t l_ci_hr; int8_t u_ci_hr; /* HR */
881  int8_t l_ci_amr_fr; int8_t u_ci_amr_fr; /* AMR FR */
882  int8_t l_ci_amr_hr; int8_t u_ci_amr_hr; /* AMR HR */
883  int8_t l_ci_sdcch; int8_t u_ci_sdcch; /* SDCCH */
884  int8_t l_ci_gprs; int8_t u_ci_gprs; /* GPRS */
885 }__attribute__ ((packed));
886 
889 #if OSMO_IS_LITTLE_ENDIAN
890  uint8_t l_rxlev_ul_h:6,
891  reserved_l_rxlev_ul:2;
892  uint8_t l_rxlev_dl_h:6,
893  reserved_l_rxlev_dl:2;
894  uint8_t rxlev_ul_ih:6,
895  reserved_rxlev_ul:2;
896  uint8_t rxlev_dl_ih:6,
897  reserved_rxlev_dl:2;
898  uint8_t l_rxqual_ul_h:3,
899  reserved_rxlqual_ul:1,
900  l_rxqual_dl_h:3,
901  reserved_rxqual_dl:1;
902  uint8_t ms_range_max:6,
903  reserved_ms_range:2;
904 #elif OSMO_IS_BIG_ENDIAN
905 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
906  uint8_t reserved_l_rxlev_ul:2, l_rxlev_ul_h:6;
907  uint8_t reserved_l_rxlev_dl:2, l_rxlev_dl_h:6;
908  uint8_t reserved_rxlev_ul:2, rxlev_ul_ih:6;
909  uint8_t reserved_rxlev_dl:2, rxlev_dl_ih:6;
910  uint8_t reserved_rxqual_dl:1, l_rxqual_dl_h:3, reserved_rxlqual_ul:1, l_rxqual_ul_h:3;
911  uint8_t reserved_ms_range:2, ms_range_max:6;
912 #endif
913 }__attribute__ ((packed));
914 
917 #if OSMO_IS_LITTLE_ENDIAN
918  uint8_t p1:5, reserved_p1:3;
919  uint8_t n1:5, reserved_n1:3;
920  uint8_t p2:5, reserved_p2:3;
921  uint8_t n2:5, reserved_n2:3;
922  uint8_t p3:5, reserved_p3:3;
923  uint8_t n3:5, reserved_n3:3;
924  uint8_t p4:5, reserved_p4:3;
925  uint8_t n4:5, reserved_n4:3;
926  uint8_t pc_interval:5, reserved_pc:3;
927  uint8_t red_step_size:4, inc_step_size:4;
928 #elif OSMO_IS_BIG_ENDIAN
929  uint8_t reserved_p1:3, p1:5;
930  uint8_t reserved_n1:3, n1:5;
931  uint8_t reserved_p2:3, p2:5;
932  uint8_t reserved_n2:3, n2:5;
933  uint8_t reserved_p3:3, p3:5;
934  uint8_t reserved_n3:3, n3:5;
935  uint8_t reserved_p4:3, p4:5;
936  uint8_t reserved_n4:3, n4:5;
937  uint8_t reserved_pc:3, pc_interval:5;
938  uint8_t inc_step_size:4, red_step_size:4;
939 #endif
940 }__attribute__ ((packed));
941 
944 #if OSMO_IS_LITTLE_ENDIAN
945  uint8_t lower_p:5, reserved_lower_p:3;
946  uint8_t lower_n:5, reserved_lower_n:3;
947  uint8_t upper_p:5, reserved_upper_p:3;
948  uint8_t upper_n:5, reserved_upper_n:3;
949 #elif OSMO_IS_BIG_ENDIAN
950  uint8_t reserved_lower_p:3, lower_p:5;
951  uint8_t reserved_lower_n:3, lower_n:5;
952  uint8_t reserved_upper_p:3, upper_p:5;
953  uint8_t reserved_upper_n:3, upper_n:5;
954  #endif
955 }__attribute__ ((packed));
957  /* Used for Carrier-to-Interference (C/I), in dB: */
964 }__attribute__ ((packed));
965 
968 #if OSMO_IS_LITTLE_ENDIAN
969  uint8_t p5:5,
970  reserved_p5:3;
971  uint8_t n5:5,
972  reserved_n5:3;
973  uint8_t p6:5,
974  reserved_p6:3;
975  uint8_t n6:5,
976  reserved_n6:3;
977  uint8_t p7:5,
978  reserved_p7:3;
979  uint8_t n7:5,
980  reserved_n7:3;
981  uint8_t p8:5,
982  reserved_p8:3;
983  uint8_t n8:5,
984  reserved_n8:3;
985  uint8_t ho_interval:5,
986  reserved_ho:3;
987  uint8_t reserved;
988 
989 #elif OSMO_IS_BIG_ENDIAN
990 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
991  uint8_t reserved_p5:3, p5:5;
992  uint8_t reserved_n5:3, n5:5;
993  uint8_t reserved_p6:3, p6:5;
994  uint8_t reserved_n6:3, n6:5;
995  uint8_t reserved_p7:3, p7:5;
996  uint8_t reserved_n7:3, n7:5;
997  uint8_t reserved_p8:3, p8:5;
998  uint8_t reserved_n8:3, n8:5;
999  uint8_t reserved_ho:3, ho_interval:5;
1000  uint8_t reserved;
1001 #endif
1002 }__attribute__ ((packed));
1003 
1005 #if OSMO_IS_LITTLE_ENDIAN
1006  uint8_t bsic:6,
1007  reserved0:2;
1008  uint8_t bcch_freq:5,
1009  ba_used:1,
1010  s:1,
1011  reserved1:1;
1012 #elif OSMO_IS_BIG_ENDIAN
1013 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
1014  uint8_t reserved0:2, bsic:6;
1015  uint8_t reserved1:1, s:1, ba_used:1, bcch_freq:5;
1016 #endif
1017 }__attribute__ ((packed));
1018 
1020 #if OSMO_IS_LITTLE_ENDIAN
1021  uint8_t rxlev_min_def:6,
1022  reserved_rxlev_min_def:2;
1023  uint8_t ho_margin_def:5,
1024  reserved_ho_margin_def:3;
1025  uint8_t ms_txpwr_max_def:5,
1026  reserved_ms_txpwr_max_def:3;
1027 #elif OSMO_IS_BIG_ENDIAN
1028 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
1029  uint8_t reserved_rxlev_min_def:2, rxlev_min_def:6;
1030  uint8_t reserved_ho_margin_def:3, ho_margin_def:5;
1031  uint8_t reserved_ms_txpwr_max_def:3, ms_txpwr_max_def:5;
1032 #endif
1033 }__attribute__ ((packed));
1034 
1036 #if OSMO_IS_LITTLE_ENDIAN
1037  uint8_t sdcch_ho_gsm:1,
1038  sdcch_ho_umts:1,
1039  reserved:6;
1040 #elif OSMO_IS_BIG_ENDIAN
1041 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
1042  uint8_t reserved:6, sdcch_ho_umts:1, sdcch_ho_gsm:1;
1043 #endif
1044 }__attribute__ ((packed));
1045 
1047  uint8_t meas_rep_mode;
1049  struct ipac_preproc_ave_cfg ms_ave_cfg[3];
1050  struct ipac_preproc_ave_cfg ave_cfg;
1051  struct ipac_preproc_ho_thresh ho_thresh;
1052  struct ipac_preproc_ho_comp ho_comp;
1053  struct ipac_preproc_ncell_dflts ncell_dflts;
1054  struct ipac_preproc_ho_ctl_param ho_ctl_param;
1055 };
1056 
1057 struct rsl_l1_info {
1058 #if OSMO_IS_BIG_ENDIAN
1059  uint8_t ms_pwr:5,
1060  fpc_epc:1,
1061  srr_sro:1,
1062  reserved:1;
1063  uint8_t ta;
1064 #elif OSMO_IS_LITTLE_ENDIAN
1065  uint8_t reserved:1,
1066  srr_sro:1,
1067  fpc_epc:1,
1068  ms_pwr:5;
1069  uint8_t ta;
1070 #endif
1071 } __attribute__ ((packed));
1072 
Definition: gsm_08_58.h:189
Definition: gsm_08_58.h:814
Definition: gsm_08_58.h:365
Definition: gsm_08_58.h:274
Definition: gsm_08_58.h:265
Definition: gsm_08_58.h:223
Definition: gsm_08_58.h:387
Definition: gsm_08_58.h:196
uint8_t vbs_capable
Definition: gsm_08_58.h:529
Definition: gsm_08_58.h:187
Definition: gsm_08_58.h:237
uint8_t chan_rate
Definition: gsm_08_58.h:499
Definition: gsm_08_58.h:277
Definition: gsm_08_58.h:319
uint8_t oct3
Definition: gsm_08_58.h:560
Definition: gsm_08_58.h:208
Definition: gsm_08_58.h:453
Definition: gsm_08_58.h:191
Definition: gsm_08_58.h:293
Definition: gsm_08_58.h:339
Definition: gsm_08_58.h:956
Definition: gsm_08_58.h:344
Definition: gsm_08_58.h:766
Definition: gsm_08_58.h:227
Definition: gsm_08_58.h:284
Definition: gsm_08_58.h:393
Definition: gsm_08_58.h:232
Definition: gsm_08_58.h:380
RSL Channel Mode IF (Chapter 9.3.6)
Definition: gsm_08_58.h:495
Definition: gsm_08_58.h:217
Definition: gsm_08_58.h:1046
int8_t l_ci_hr
Definition: gsm_08_58.h:531
Definition: gsm_08_58.h:729
Definition: gsm_08_58.h:249
uint8_t chan_rt
Definition: gsm_08_58.h:498
Definition: gsm_08_58.h:364
Definition: gsm_08_58.h:315
Definition: gsm_08_58.h:349
struct osmo_preproc_ave_cfg_field ci_gprs
Definition: gsm_08_58.h:534
Definition: gsm_08_58.h:751
Definition: gsm_08_58.h:806
Definition: gsm_08_58.h:210
Definition: gsm_08_58.h:235
Definition: gsm_08_58.h:813
Definition: gsm_08_58.h:400
Definition: gsm_08_58.h:214
Definition: gsm_08_58.h:742
rsl_ipac_rtp_csd_format_d
Definition: gsm_08_58.h:740
Definition: gsm_08_58.h:240
RSL Channel Identification IE (Chapter 9.3.5)
Definition: gsm_08_58.h:555
Definition: gsm_08_58.h:206
Definition: gsm_08_58.h:218
Definition: gsm_08_58.h:332
Definition: gsm_08_58.h:345
Definition: gsm_08_58.h:290
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:104
struct osmo_preproc_ave_cfg_field ci_amr_hr
Definition: gsm_08_58.h:532
Definition: gsm_08_58.h:371
Definition: gsm_08_58.h:199
Definition: gsm_08_58.h:309
Definition: gsm_08_58.h:209
Definition: gsm_08_58.h:192
Definition: gsm_08_58.h:338
rsl_rel_mode
Definition: gsm_08_58.h:777
Definition: gsm_08_58.h:328
Definition: gsm_08_58.h:178
Definition: gsm_08_58.h:318
Definition: gsm_08_58.h:297
Definition: gsm_08_58.h:370
Definition: gsm_08_58.h:460
struct osmo_preproc_ave_cfg_field ci_amr_fr
Definition: gsm_08_58.h:531
Definition: gsm_08_58.h:216
Definition: gsm_08_58.h:790
Definition: gsm_08_58.h:808
Definition: gsm_08_58.h:399
rsl_mrpci_pwrclass
Definition: gsm_08_58.h:762
rsl_mrpci_phase
Definition: gsm_08_58.h:769
Definition: gsm_08_58.h:242
Definition: gsm_08_58.h:352
struct osmo_preproc_ave_cfg_field ci_fr
Definition: gsm_08_58.h:529
Definition: gsm_08_58.h:285
Definition: gsm_08_58.h:330
Definition: gsm_08_58.h:451
rsl_ipac_speech_mode_s
Definition: gsm_08_58.h:724
Definition: gsm_08_58.h:273
Definition: gsm_08_58.h:429
Definition: gsm_08_58.h:333
Definition: gsm_08_58.h:322
Definition: gsm_08_58.h:809
Definition: gsm_08_58.h:224
Osmocom extension for: MS/BS Power Control Thresholds (RSL_IPAC_EIE_OSMO_MS_PWR_CTL) ...
Definition: gsm_08_58.h:877
Definition: gsm_08_58.h:504
Definition: gsm_08_58.h:198
Definition: gsm_08_58.h:182
Definition: gsm_08_58.h:334
uint8_t chan_nr
Definition: gsm_08_58.h:90
abis_rsl_msgtype_siemens
Siemens vendor-specific RSL message types.
Definition: gsm_08_58.h:281
uint8_t msg_discr
message discriminator (ABIS_RSL_MDISC_*)
Definition: gsm_08_58.h:80
int8_t u_ci_amr_hr
Definition: gsm_08_58.h:882
Definition: gsm_08_58.h:250
Definition: gsm_08_58.h:320
Definition: gsm_08_58.h:383
uint8_t spd_ind
Definition: gsm_08_58.h:497
Definition: gsm_08_58.h:392
Definition: gsm_08_58.h:226
Definition: gsm_08_58.h:243
Definition: gsm_08_58.h:428
Definition: gsm_08_58.h:220
uint8_t gsm_phase
Definition: gsm_08_58.h:529
union abis_rsl_link_id link_id_fields
RSL link identifier (value)
Definition: gsm_08_58.h:538
struct osmo_preproc_ave_cfg_field ci_hr
Definition: gsm_08_58.h:530
Definition: gsm_08_58.h:727
Definition: gsm_08_58.h:326
Definition: gsm_08_58.h:238
Definition: gsm_08_58.h:807
int8_t u_ci_fr
Definition: gsm_08_58.h:879
Definition: gsm_08_58.h:215
int8_t u_ci_amr_fr
Definition: gsm_08_58.h:881
Definition: gsm_08_58.h:354
Definition: gsm_08_58.h:804
Definition: gsm_08_58.h:311
Definition: gsm_08_58.h:323
Definition: gsm_08_58.h:366
uint8_t chan_nr
Definition: gsm_08_58.h:106
Definition: gsm_08_58.h:251
Definition: gsm_08_58.h:743
Definition: gsm_08_58.h:772
Definition: gsm_08_58.h:197
Definition: gsm_08_58.h:820
Definition: gsm_08_58.h:256
Definition: gsm_08_58.h:741
Osmocom extension for: PC Threshold Comparators (RSL_IPAC_EIE_OSMO_PC_THRESH_COMP) ...
Definition: gsm_08_58.h:943
abis_rsl_msgtype
Definition: gsm_08_58.h:176
Definition: gsm_08_58.h:241
Definition: gsm_08_58.h:454
Definition: gsm_08_58.h:308
Definition: gsm_08_58.h:337
Definition: gsm_08_58.h:770
Definition: gsm_08_58.h:357
Definition: gsm_08_58.h:394
Definition: gsm_08_58.h:179
Definition: gsm_08_58.h:720
uint8_t vgcs_capable
Definition: gsm_08_58.h:756
Definition: gsm_08_58.h:314
Definition: gsm_08_58.h:296
Definition: gsm_08_58.h:190
Definition: gsm_08_58.h:336
Definition: gsm_08_58.h:798
Definition: gsm_08_58.h:734
Definition: gsm_08_58.h:321
Definition: gsm_08_58.h:239
Definition: gsm_08_58.h:459
Definition: gsm_08_58.h:799
Definition: gsm_08_58.h:726
Definition: gsm_08_58.h:1057
Definition: gsm_08_58.h:244
Definition: gsm_08_58.h:773
Definition: gsm_08_58.h:796
Definition: gsm_08_58.h:221
Definition: gsm_08_58.h:457
struct @91 chan_desc
Definition: gsm_08_58.h:348
Definition: gsm_08_58.h:188
uint8_t chan_nr
Definition: gsm_08_58.h:43
Definition: gsm_08_58.h:313
Definition: gsm_08_58.h:787
Definition: gsm_08_58.h:205
rsl_ipac_rtp_payload
Definition: gsm_08_58.h:715
Definition: gsm_08_58.h:180
Definition: gsm_08_58.h:792
Definition: gsm_08_58.h:369
uint8_t msg_type
message type (abis_rsl_msgtype)
Definition: gsm_08_58.h:81
Definition: gsm_08_58.h:268
uint8_t data[0]
actual payload data
Definition: gsm_08_58.h:531
Definition: gsm_08_58.h:346
Definition: gsm_08_58.h:200
int8_t u_ci_gprs
Definition: gsm_08_58.h:884
Definition: gsm_08_58.h:233
Definition: gsm_08_58.h:317
Definition: gsm_08_58.h:329
Definition: gsm_08_58.h:801
Definition: gsm_08_58.h:257
Definition: gsm_08_58.h:368
Definition: gsm_08_58.h:35
Definition: gsm_08_58.h:802
Definition: gsm_08_58.h:444
Definition: gsm_08_58.h:379
Definition: gsm_08_58.h:143
Definition: gsm_08_58.h:390
Definition: gsm_08_58.h:355
Definition: gsm_08_58.h:207
Definition: gsm_08_58.h:725
int8_t l_ci_amr_hr
Definition: gsm_08_58.h:533
uint8_t oct4
Definition: gsm_08_58.h:561
Definition: gsm_08_58.h:449
Definition: gsm_08_58.h:258
Definition: gsm_08_58.h:316
Definition: gsm_08_58.h:815
int8_t l_ci_gprs
Definition: gsm_08_58.h:535
uint8_t params[0]
Definition: gsm_08_58.h:535
Definition: gsm_08_58.h:181
Definition: gsm_08_58.h:86
Definition: gsm_08_58.h:432
uint8_t chan_nr
Definition: gsm_08_58.h:559
Definition: gsm_08_58.h:388
Definition: gsm_08_58.h:374
Definition: gsm_08_58.h:1004
Definition: gsm_08_58.h:356
Definition: gsm_08_58.h:264
Definition: gsm_08_58.h:347
Definition: gsm_08_58.h:359
Definition: gsm_08_58.h:395
Definition: gsm_08_58.h:260
Definition: gsm_08_58.h:389
Definition: gsm_08_58.h:438
Definition: gsm_08_58.h:253
Definition: gsm_08_58.h:261
Definition: gsm_08_58.h:247
Definition: gsm_08_58.h:1019
Definition: gsm_08_58.h:851
Definition: gsm_08_58.h:458
Definition: gsm_08_58.h:283
Definition: gsm_08_58.h:363
Definition: gsm_08_58.h:231
Definition: gsm_08_58.h:219
Definition: gsm_08_58.h:373
Definition: gsm_08_58.h:446
enum abis_rsl_msgtype __attribute__
uint8_t ie_link_id
RSL_IE_LINK_IDENT (tag)
Definition: gsm_08_58.h:93
Definition: gsm_08_58.h:375
Definition: gsm_08_58.h:225
Definition: gsm_08_58.h:255
MS/BS Power Control Thresholds (RSL_IPAC_EIE_MS_PWR_CTL)
Definition: gsm_08_58.h:862
Definition: gsm_08_58.h:272
Definition: gsm_08_58.h:230
Definition: gsm_08_58.h:324
Definition: gsm_08_58.h:718
Definition: gsm_08_58.h:312
Definition: gsm_08_58.h:439
Definition: gsm_08_58.h:343
uint8_t chan_nr
Definition: gsm_08_58.h:117
int8_t u_ci_hr
Definition: gsm_08_58.h:880
Definition: gsm_08_58.h:310
Definition: gsm_08_58.h:270
uint8_t len
Definition: gsm_04_11.h:467
Definition: gsm_08_58.h:282
Definition: gsm_08_58.h:286
Definition: gsm_08_58.h:803
Definition: gsm_08_58.h:378
Definition: gsm_08_58.h:450
Definition: gsm_08_58.h:456
Definition: gsm_08_58.h:765
struct osmo_preproc_ave_cfg_field ci_sdcch
Definition: gsm_08_58.h:533
Definition: gsm_08_58.h:784
Definition: gsm_08_58.h:201
Definition: gsm_08_58.h:204
Definition: gsm_08_58.h:236
Definition: gsm_08_58.h:736
Definition: gsm_08_58.h:229
Definition: gsm_08_58.h:810
Definition: gsm_08_58.h:448
Definition: gsm_08_58.h:254
Definition: gsm_08_58.h:788
Definition: gsm_08_58.h:437
Definition: gsm_08_58.h:307
Definition: gsm_08_58.h:397
Definition: gsm_08_58.h:186
Definition: gsm_08_58.h:291
Definition: gsm_08_58.h:797
Definition: gsm_08_58.h:124
Definition: gsm_08_58.h:362
Definition: gsm_08_58.h:717
Definition: gsm_08_58.h:267
Definition: gsm_08_58.h:262
Definition: gsm_08_58.h:398
int8_t l_ci_sdcch
Definition: gsm_08_58.h:534
Definition: gsm_08_58.h:506
Definition: gsm_08_58.h:749
Definition: gsm_08_58.h:113
Definition: gsm_08_58.h:360
Definition: gsm_08_58.h:350
Definition: gsm_08_58.h:786
RSL Cell Broadcast Command (Chapter 9.3.45)
Definition: gsm_08_58.h:671
rsl_ipac_rtp_csd_format_ir
Definition: gsm_08_58.h:747
Definition: gsm_08_58.h:779
Definition: gsm_08_58.h:287
Definition: gsm_08_58.h:102
Definition: gsm_08_58.h:1035
Definition: gsm_08_58.h:202
Definition: gsm_08_58.h:396
rsl_cmod_spd
Definition: gsm_08_58.h:503
Definition: gsm_08_58.h:430
Definition: gsm_08_58.h:248
Definition: gsm_08_58.h:295
Definition: gsm_08_58.h:837
Definition: gsm_08_58.h:800
Definition: gsm_08_58.h:785
abis_rsl_ie
RSL Information Element Identifiers (Chapter 9.3)
Definition: gsm_08_58.h:306
Definition: gsm_08_58.h:447
PC Threshold Comparators (RSL_IPAC_EIE_PC_THRESH_COMP)
Definition: gsm_08_58.h:916
Definition: gsm_08_58.h:767
Definition: gsm_08_58.h:795
Definition: gsm_08_58.h:461
uint8_t meas_rep_mode
Definition: gsm_08_58.h:1047
Definition: gsm_08_58.h:789
Definition: gsm_08_58.h:778
Definition: gsm_08_58.h:263
Definition: gsm_08_58.h:361
uint8_t link_id
Definition: gsm_08_58.h:95
Definition: gsm_08_58.h:719
Definition: gsm_08_58.h:269
Definition: gsm_08_58.h:222
RSL common header.
Definition: gsm_08_58.h:79
Definition: gsm_08_58.h:185
int8_t u_ci_sdcch
Definition: gsm_08_58.h:883
Definition: gsm_08_58.h:292
rsl_ipac_embedded_ie
ip.access specific embedded information elements
Definition: gsm_08_58.h:783
Definition: gsm_08_58.h:183
Definition: gsm_08_58.h:353
Definition: gsm_08_58.h:755
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:533
abis_rsl_msgtype_ericsson
Ericsson vendor-specific RSL message types.
Definition: gsm_08_58.h:301
Definition: gsm_08_58.h:325
Definition: gsm_08_58.h:266
Definition: gsm_08_58.h:331
Definition: gsm_08_58.h:252
Definition: gsm_08_58.h:302
Definition: gsm_08_58.h:763
Definition: gsm_08_58.h:764
Definition: gsm_08_58.h:228
Definition: gsm_08_58.h:289
HO Threshold Comparators.
Definition: gsm_08_58.h:967
Definition: gsm_08_58.h:750
Definition: gsm_08_58.h:391
Definition: gsm_08_58.h:794
Definition: gsm_08_58.h:259
Definition: gsm_08_58.h:744
Definition: gsm_08_58.h:791
Definition: gsm_08_58.h:735
Definition: gsm_08_58.h:372
rsl_ipac_speech_mode_m
Definition: gsm_08_58.h:733
uint32_t meas_mode_flags
Definition: gsm_08_58.h:1048
Definition: gsm_08_58.h:234
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:88
uint8_t iei
Definition: gsm_08_58.h:558
Definition: gsm_08_58.h:340
Definition: gsm_08_58.h:342
Definition: gsm_08_58.h:730
uint8_t dtx_dtu
Definition: gsm_08_58.h:496
int8_t l_ci_amr_fr
Definition: gsm_08_58.h:532
Definition: gsm_08_58.h:275
Definition: gsm_08_58.h:327
Definition: gsm_08_58.h:385
int8_t l_ci_fr
Definition: gsm_08_58.h:530
Definition: gsm_08_58.h:195
Definition: gsm_08_58.h:384
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:115
Definition: gsm_08_58.h:445
Definition: gsm_08_58.h:386
Definition: gsm_08_58.h:358
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:213
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:529
Definition: gsm_08_58.h:271
Definition: gsm_08_58.h:455
uint8_t power_class
Definition: gsm_08_58.h:529
Handover Thresholds.
Definition: gsm_08_58.h:888
Definition: gsm_08_58.h:184
Definition: gsm_08_58.h:288
Definition: gsm_08_58.h:452
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:294
Definition: gsm_08_58.h:748
Definition: gsm_08_58.h:341
Definition: gsm_08_58.h:716
Definition: gsm_08_58.h:351
Definition: gsm_08_58.h:793