libosmogsm  1.9.0.158-3938d.202402282026
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  */
19 
20 #pragma once
21 
22 #include <stdint.h>
23 
24 #include <osmocom/core/endian.h>
25 
30 /* Channel Number 9.3.1 */
32  struct {
33 #if OSMO_IS_BIG_ENDIAN
34  uint8_t cbits:5,
35  tn:3;
36 #elif OSMO_IS_LITTLE_ENDIAN
37  uint8_t tn:3,
38  cbits:5;
39 #endif
40  } __attribute__ ((packed));
41  uint8_t chan_nr;
42 } __attribute__ ((packed));
43 #define ABIS_RSL_CHAN_NR_CBITS_Bm_ACCHs 0x01
44 #define ABIS_RSL_CHAN_NR_CBITS_Lm_ACCHs(ss) (0x02 + (ss))
45 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH4_ACCH(ss) (0x04 + (ss))
46 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH8_ACCH(ss) (0x08 + (ss))
47 #define ABIS_RSL_CHAN_NR_CBITS_BCCH 0x10
48 #define ABIS_RSL_CHAN_NR_CBITS_RACH 0x11
49 #define ABIS_RSL_CHAN_NR_CBITS_PCH_AGCH 0x12
50 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_PDCH 0x18 /*< non-standard, for dyn TS */
51 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH4 0x19 /*< non-standard, for CBCH/SDCCH4 */
52 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH8 0x1a /*< non-standard, for CBCH/SDCCH8 */
53 
54 /* non-standard, Osmocom specific Bm/Lm equivalents for VAMOS */
55 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_VAMOS_Bm_ACCHs 0x1d /*< VAMOS TCH/F */
56 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_VAMOS_Lm_ACCHs(ss) (0x1e + (ss)) /*< VAMOS TCH/H */
57 
58 /* Link Identifier 9.3.2 */
60  struct {
61 #if OSMO_IS_BIG_ENDIAN
62  uint8_t cbits:2,
63  na:1,
64  reserved:2,
65  sapi:3;
66 #elif OSMO_IS_LITTLE_ENDIAN
67  uint8_t sapi:3,
68  reserved:2,
69  na:1,
70  cbits:2;
71 #endif
72  } __attribute__ ((packed));
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) */
87  struct abis_rsl_common_hdr c;
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) */
103  struct abis_rsl_common_hdr c;
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) */
114  struct abis_rsl_common_hdr c;
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_LITTLE_ENDIAN
126  uint8_t dl_facch_cmd:1,
127  dl_facch_all:1,
128  dl_sacch:1,
129  ul_sacch:1,
130  rxqual:3,
131  reserved:1;
132 #elif OSMO_IS_BIG_ENDIAN
133 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
134  uint8_t reserved:1, rxqual:3, ul_sacch:1, dl_sacch:1, dl_facch_all:1, dl_facch_cmd:1;
135 #endif
136 } __attribute__ ((packed));
137 
138 /* Osmocom specific IE to negotiate temporary overpower of ACCH channels */
140 #if OSMO_IS_LITTLE_ENDIAN
141  uint8_t overpower_db:3,
142  rxqual:3,
143  facch_enable:1,
144  sacch_enable:1;
145 #elif OSMO_IS_BIG_ENDIAN
146 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
147  uint8_t sacch_enable:1, facch_enable:1, rxqual:3, overpower_db:3;
148 #endif
149 } __attribute__ ((packed));
150 
151 /* Chapter 9.1 */
152 /* RSL Message Discriminator: RLL */
153 #define ABIS_RSL_MDISC_RLL 0x02
154 /* RSL Message Discriminator: Dedicated Channel */
155 #define ABIS_RSL_MDISC_DED_CHAN 0x08
156 /* RSL Message Discriminator: Common Channel */
157 #define ABIS_RSL_MDISC_COM_CHAN 0x0c
158 /* RSL Message Discriminator: TRX Management */
159 #define ABIS_RSL_MDISC_TRX 0x10
160 /* RSL Message Discriminator: Location Service */
161 #define ABIS_RSL_MDISC_LOC 0x20
162 /* RSL Message Discriminator: ip.access */
163 #define ABIS_RSL_MDISC_IPACCESS 0x7e
164 #define ABIS_RSL_MDISC_TRANSP 0x01
165 
166 /* Check if given RSL message discriminator is transparent */
167 #define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
168 
169 /* RSL Message Type (Chapter 9.1) */
171  /* Radio Link Layer Management */
183  RSL_MT_SUSP_REQ, /* non-standard elements */
186  RSL_MT_RECON_REQ, /* 0x0f */
187 
188  /* Common Channel Management / TRX Management */
196  RSL_MT_CHAN_CONF, /* non-standard element */
197  /* empty */
204  RSL_MT_NOT_CMD, /* 0x1f */
205 
206  /* Dedicate Channel Management */
237  RSL_MT_TFO_MOD_REQ, /* 0x3f */
239 
240  /* ip.access specific RSL message types */
257  RSL_MT_IPAC_MEAS_PREPROC_DFT = 0x60, /*Extented Common Channel Management */
260  RSL_MT_IPAC_CRCX = 0x70, /* Bind to local BTS RTP port */
270 
272 };
273 
292 };
293 
297 };
298 
329  /* reserved */
335  RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
361  /* Siemens vendor-specific */
370 
371  /* Osmocom specific */
376 
377  /* ip.access */
396 };
397 
398 /* Ericsson specific IEs, clash with above partially, so they're not
399  * part of the enum */
400 #define RSL_IE_ERIC_PAGING_GROUP 0x0e
401 #define RSL_IE_ERIC_INST_NR 0x48
402 #define RSL_IE_ERIC_PGSL_TIMERS 0x49
403 #define RSL_IE_ERIC_REPEAT_DL_FACCH 0x4a
404 #define RSL_IE_ERIC_POWER_INFO 0xf0
405 #define RSL_IE_ERIC_MOBILE_ID 0xf1
406 #define RSL_IE_ERIC_BCCH_MAPPING 0xf2
407 #define RSL_IE_ERIC_PACKET_PAG_IND 0xf3
408 #define RSL_IE_ERIC_CNTR_CTRL 0xf4
409 #define RSL_IE_ERIC_CNTR_CTRL_ACK 0xf5
410 #define RSL_IE_ERIC_CNTR_REPORT 0xf6
411 #define RSL_IE_ERIC_ICP_CONN 0xf7
412 #define RSL_IE_ERIC_EMR_SUPPORT 0xf8
413 #define RSL_IE_ERIC_EGPRS_REQ_REF 0xf9
414 #define RSL_IE_ERIC_VGCS_REL 0xfa
415 #define RSL_IE_ERIC_REP_PER_NCH 0xfb
416 #define RSL_IE_ERIC_NY2 0xfc
417 #define RSL_IE_ERIC_T3115 0xfd
418 #define RSL_IE_ERIC_ACTIVATE_FLAG 0xfe
419 #define RSL_IE_ERIC_FULL_NCH_INFO 0xff
420 
421 /* IPAC MEAS_PREPROC AVERAGING METHOD */
422 enum {
426  /* EWMA is an Osmocom specific extension */
428 };
429 
430 /* IPAC MEAS_PREPROC AVERAGING PARAM ID */
431 enum {
435 };
436 
437 /* IPAC MEAS_PREPROC HO CAUSES */
438 enum {
457 };
458 
459 /* Chapter 9.3.1 */
460 #define RSL_CHAN_NR_MASK 0xf8
461 #define RSL_CHAN_NR_1 0x08 /*< bit to add for 2nd,... lchan */
462 #define RSL_CHAN_Bm_ACCHs 0x08
463 #define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
464 #define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
465 #define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
466 #define RSL_CHAN_BCCH 0x80
467 #define RSL_CHAN_RACH 0x88
468 #define RSL_CHAN_PCH_AGCH 0x90
469 #define RSL_CHAN_OSMO_PDCH 0xc0 /*< non-standard, for dyn TS */
470 #define RSL_CHAN_OSMO_CBCH4 0xc8 /*< non-standard, for CBCH/SDCCH4 */
471 #define RSL_CHAN_OSMO_CBCH8 0xd0 /*< non-standard, for CBCH/SDCCH8 */
472 
473 /* non-standard, Osmocom specific Bm/Lm equivalents for VAMOS */
474 #define RSL_CHAN_OSMO_VAMOS_Bm_ACCHs 0xe8 /* VAMOS TCH/F */
475 #define RSL_CHAN_OSMO_VAMOS_Lm_ACCHs 0xf0 /* VAMOS TCH/H */
476 #define RSL_CHAN_OSMO_VAMOS_MASK 0xe0 /* VAMOS TCH/{F,H} */
477 
478 /* Chapter 9.3.3 */
479 #define RSL_ACT_TYPE_INITIAL 0x00
480 #define RSL_ACT_TYPE_REACT 0x80
481 #define RSL_ACT_INTRA_IMM_ASS 0x00
482 #define RSL_ACT_INTRA_NORM_ASS 0x01
483 #define RSL_ACT_INTER_ASYNC 0x02
484 #define RSL_ACT_INTER_SYNC 0x03
485 #define RSL_ACT_SECOND_ADD 0x04
486 #define RSL_ACT_SECOND_MULTI 0x05
487 #define RSL_ACT_OSMO_PDCH 0x0f /*< non-standard, for dyn TS */
488 
491  uint8_t dtx_dtu;
492  uint8_t spd_ind;
493  uint8_t chan_rt;
494  uint8_t chan_rate;
495 } __attribute__ ((packed));
496 #define RSL_CMOD_DTXu 0x01 /* uplink */
497 #define RSL_CMOD_DTXd 0x02 /* downlink */
502 };
506  RSL_CMOD_CRT_TCH_Bm = 0x08, /* full-rate */
507  RSL_CMOD_CRT_TCH_Lm = 0x09, /* half-rate */
508  RSL_CMOD_CRT_TCH_BI_Bm = 0x0a, /* full-rate: bi-directional (multislot) */
509  RSL_CMOD_CRT_TCH_UNI_Bm = 0x1a, /* full-rate: uni-directional (multislot) */
510  RSL_CMOD_CRT_TCH_GROUP_Bm = 0x18, /* full-rate: group call channel */
511  RSL_CMOD_CRT_TCH_GROUP_Lm = 0x19, /* half-rate: group call channel */
512  RSL_CMOD_CRT_TCH_BCAST_Bm = 0x28, /* full-rate: broadcast call channel */
513  RSL_CMOD_CRT_TCH_BCAST_Lm = 0x29, /* half-rate: broadcast call channel */
514  RSL_CMOD_CRT_OSMO_TCH_VAMOS_Bm = 0x88, /* full-rate in VAMOS mode */
515  RSL_CMOD_CRT_OSMO_TCH_VAMOS_Lm = 0x89, /* half-rate in VAMOS mode */
516 };
525 };
528  RSL_CMOD_CSD_NTA_43k5_14k5 = 0x61, /* asymmetric 43.5 kbit/s (DL) + 14.5 kbit/s (UL) */
529  RSL_CMOD_CSD_NTA_29k0_14k5 = 0x62, /* asymmetric 29.0 kbit/s (DL) + 14.5 kbit/s (UL) */
530  RSL_CMOD_CSD_NTA_43k5_29k0 = 0x63, /* asymmetric 43.5 kbit/s (DL) + 29.0 kbit/s (UL) */
531  RSL_CMOD_CSD_NTA_14k5_43k5 = 0x69, /* asymmetric 14.5 kbit/s (DL) + 43.5 kbit/s (UL) */
532  RSL_CMOD_CSD_NTA_14k5_29k0 = 0x6a, /* asymmetric 14.5 kbit/s (DL) + 29.0 kbit/s (UL) */
533  RSL_CMOD_CSD_NTA_29k0_43k5 = 0x6b, /* asymmetric 29.0 kbit/s (DL) + 43.5 kbit/s (UL) */
539 };
540 /* legacy #defines with wrong name */
541 #define RSL_CMOD_SP_NT_14k5 RSL_CMOD_CSD_NT_14k5
542 #define RSL_CMOD_SP_NT_12k0 RSL_CMOD_CSD_NT_12k0
543 #define RSL_CMOD_SP_NT_6k0 RSL_CMOD_CSD_NT_6k0
544 #define RSL_CMOD_CSD_T_32000 RSL_CMOD_CSD_T_32k0
545 #define RSL_CMOD_CSD_T_29000 RSL_CMOD_CSD_T_29k0
546 #define RSL_CMOD_CSD_T_14400 RSL_CMOD_CSD_T_14k4
547 #define RSL_CMOD_CSD_T_9600 RSL_CMOD_CSD_T_9k6
548 #define RSL_CMOD_CSD_T_4800 RSL_CMOD_CSD_T_4k8
549 #define RSL_CMOD_CSD_T_2400 RSL_CMOD_CSD_T_2k4
550 #define RSL_CMOD_CSD_T_1200 RSL_CMOD_CSD_T_1k2
562 };
563 
566  /* GSM 04.08 10.5.2.5 */
567  struct {
568  uint8_t iei;
569  uint8_t chan_nr; /* enc_chan_nr */
570  uint8_t oct3;
571  uint8_t oct4;
573 #if 0 /* spec says we need this but Abissim doesn't use it */
574  struct {
575  uint8_t tag;
576  uint8_t len;
577  } mobile_alloc;
578 #endif
579 } __attribute__ ((packed));
580 
581 /* Chapter 9.3.22 */
582 #define RLL_CAUSE_T200_EXPIRED 0x01
583 #define RLL_CAUSE_REEST_REQ 0x02
584 #define RLL_CAUSE_UNSOL_UA_RESP 0x03
585 #define RLL_CAUSE_UNSOL_DM_RESP 0x04
586 #define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
587 #define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
588 #define RLL_CAUSE_SEQ_ERR 0x07
589 #define RLL_CAUSE_UFRM_INC_PARAM 0x08
590 #define RLL_CAUSE_SFRM_INC_PARAM 0x09
591 #define RLL_CAUSE_IFRM_INC_MBITS 0x0a
592 #define RLL_CAUSE_IFRM_INC_LEN 0x0b
593 #define RLL_CAUSE_FRM_UNIMPL 0x0c
594 #define RLL_CAUSE_SABM_MF 0x0d
595 #define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
596 
597 /* Chapter 9.3.26 */
598 #define RSL_ERRCLS_NORMAL 0x00
599 #define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
600 #define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
601 #define RSL_ERRCLS_SERVICE_UNIMPL 0x40
602 #define RSL_ERRCLS_INVAL_MSG 0x50
603 #define RSL_ERRCLS_PROTO_ERROR 0x60
604 #define RSL_ERRCLS_INTERWORKING 0x70
605 
606 /* normal event */
607 #define RSL_ERR_RADIO_IF_FAIL 0x00
608 #define RSL_ERR_RADIO_LINK_FAIL 0x01
609 #define RSL_ERR_HANDOVER_ACC_FAIL 0x02
610 #define RSL_ERR_TALKER_ACC_FAIL 0x03
611 #define RSL_ERR_OM_INTERVENTION 0x07
612 #define RSL_ERR_NORMAL_UNSPEC 0x0f
613 #define RSL_ERR_T_MSRFPCI_EXP 0x18
614 /* resource unavailable */
615 #define RSL_ERR_EQUIPMENT_FAIL 0x20
616 #define RSL_ERR_RR_UNAVAIL 0x21
617 #define RSL_ERR_TERR_CH_FAIL 0x22
618 #define RSL_ERR_CCCH_OVERLOAD 0x23
619 #define RSL_ERR_ACCH_OVERLOAD 0x24
620 #define RSL_ERR_PROCESSOR_OVERLOAD 0x25
621 #define RSL_ERR_BTS_NOT_EQUIPPED 0x27
622 #define RSL_ERR_REMOTE_TRANSC_FAIL 0x28
623 #define RSL_ERR_NOTIFICATION_OVERFL 0x29
624 #define RSL_ERR_RES_UNAVAIL 0x2f
625 /* service or option not available */
626 #define RSL_ERR_TRANSC_UNAVAIL 0x30
627 #define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
628 /* service or option not implemented */
629 #define RSL_ERR_ENCR_UNIMPL 0x40
630 #define RSL_ERR_SERV_OPT_UNIMPL 0x4f
631 /* invalid message */
632 #define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
633 #define RSL_ERR_INVALID_MESSAGE 0x5f
634 /* protocol error */
635 #define RSL_ERR_MSG_DISCR 0x60
636 #define RSL_ERR_MSG_TYPE 0x61
637 #define RSL_ERR_MSG_SEQ 0x62
638 #define RSL_ERR_IE_ERROR 0x63
639 #define RSL_ERR_MAND_IE_ERROR 0x64
640 #define RSL_ERR_OPT_IE_ERROR 0x65
641 #define RSL_ERR_IE_NONEXIST 0x66
642 #define RSL_ERR_IE_LENGTH 0x67
643 #define RSL_ERR_IE_CONTENT 0x68
644 #define RSL_ERR_PROTO 0x6f
645 /* interworking */
646 #define RSL_ERR_INTERWORKING 0x7f
647 
648 /* Chapter 9.3.30 */
649 #define RSL_SYSTEM_INFO_8 0x00
650 #define RSL_SYSTEM_INFO_1 0x01
651 #define RSL_SYSTEM_INFO_2 0x02
652 #define RSL_SYSTEM_INFO_3 0x03
653 #define RSL_SYSTEM_INFO_4 0x04
654 #define RSL_SYSTEM_INFO_5 0x05
655 #define RSL_SYSTEM_INFO_6 0x06
656 #define RSL_SYSTEM_INFO_7 0x07
657 #define RSL_SYSTEM_INFO_16 0x08
658 #define RSL_SYSTEM_INFO_17 0x09
659 #define RSL_SYSTEM_INFO_2bis 0x0a
660 #define RSL_SYSTEM_INFO_2ter 0x0b
661 #define RSL_SYSTEM_INFO_5bis 0x0d
662 #define RSL_SYSTEM_INFO_5ter 0x0e
663 #define RSL_SYSTEM_INFO_10 0x0f
664 #define RSL_EXT_MEAS_ORDER 0x47
665 #define RSL_MEAS_INFO 0x48
666 #define RSL_SYSTEM_INFO_13 0x28
667 #define RSL_ERIC_SYSTEM_INFO_13 0x0C
668 #define RSL_SYSTEM_INFO_2quater 0x29
669 #define RSL_SYSTEM_INFO_9 0x2a
670 #define RSL_SYSTEM_INFO_18 0x2b
671 #define RSL_SYSTEM_INFO_19 0x2c
672 #define RSL_SYSTEM_INFO_20 0x2d
673 
674 /* Chapter 9.3.40 */
675 #define RSL_CHANNEED_ANY 0x00
676 #define RSL_CHANNEED_SDCCH 0x01
677 #define RSL_CHANNEED_TCH_F 0x02
678 #define RSL_CHANNEED_TCH_ForH 0x03
679 
682 #if OSMO_IS_LITTLE_ENDIAN
683  uint8_t last_block:2;
684  uint8_t spare:1;
685  uint8_t def_bcast:1;
686  uint8_t command:4;
687 #elif OSMO_IS_BIG_ENDIAN
688 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
689  uint8_t command:4, def_bcast:1, spare:1, last_block:2;
690 #endif
691 } __attribute__ ((packed));
692 /* ->command */
693 #define RSL_CB_CMD_TYPE_NORMAL 0x00
694 #define RSL_CB_CMD_TYPE_SCHEDULE 0x08
695 #define RSL_CB_CMD_TYPE_DEFAULT 0x0e
696 #define RSL_CB_CMD_TYPE_NULL 0x0f
697 /* ->def_bcast */
698 #define RSL_CB_CMD_DEFBCAST_NORMAL 0
699 #define RSL_CB_CMD_DEFBCAST_NULL 1
700 /* ->last_block */
701 #define RSL_CB_CMD_LASTBLOCK_4 0
702 #define RSL_CB_CMD_LASTBLOCK_1 1
703 #define RSL_CB_CMD_LASTBLOCK_2 2
704 #define RSL_CB_CMD_LASTBLOCK_3 3
705 
708 #if OSMO_IS_LITTLE_ENDIAN
709  uint8_t nln:2;
710  uint8_t emlpp_priority:3;
711  uint8_t nln_status:1;
712  uint8_t spare:2;
713 #elif OSMO_IS_BIG_ENDIAN
714 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
715  uint8_t spare:2, nln_status:1, emlpp_priority:3, nln:2;
716 #endif
717 } __attribute__ ((packed));
718 
720 #define RSL_CMD_INDICATOR_START 0x00
721 #define RSL_CMD_INDICATOR_STOP 0x01
722 
723 /* Chapter 3.3.2.3 Brocast control channel */
724 /* CCCH-CONF, NC is not combined */
725 #define RSL_BCCH_CCCH_CONF_1_NC 0x00
726 #define RSL_BCCH_CCCH_CONF_1_C 0x01
727 #define RSL_BCCH_CCCH_CONF_2_NC 0x02
728 #define RSL_BCCH_CCCH_CONF_3_NC 0x04
729 #define RSL_BCCH_CCCH_CONF_4_NC 0x06
730 
731 /* BS-PA-MFRMS */
732 #define RSL_BS_PA_MFRMS_2 0x00
733 #define RSL_BS_PA_MFRMS_3 0x01
734 #define RSL_BS_PA_MFRMS_4 0x02
735 #define RSL_BS_PA_MFRMS_5 0x03
736 #define RSL_BS_PA_MFRMS_6 0x04
737 #define RSL_BS_PA_MFRMS_7 0x05
738 #define RSL_BS_PA_MFRMS_8 0x06
739 #define RSL_BS_PA_MFRMS_9 0x07
740 
741 /* RSL_IE_IPAC_RTP_PAYLOAD[2] */
748 };
749 
750 /* RSL_IE_IPAC_SPEECH_MODE, lower four bits */
752  RSL_IPAC_SPEECH_GSM_FR = 0, /* GSM FR (Type 1, FS) */
753  RSL_IPAC_SPEECH_GSM_EFR = 1, /* GSM EFR (Type 2, FS) */
754  RSL_IPAC_SPEECH_GSM_AMR_FR = 2, /* GSM AMR/FR (Type 3, FS) */
755  RSL_IPAC_SPEECH_GSM_HR = 3, /* GSM HR (Type 1, HS) */
756  RSL_IPAC_SPEECH_GSM_AMR_HR = 5, /* GSM AMR/hr (Type 3, HS) */
757  RSL_IPAC_SPEECH_AS_RTP = 0xf, /* As specified by RTP Payload IE */
758 };
759 /* RSL_IE_IPAC_SPEECH_MODE, upper four bits */
761  RSL_IPAC_SPEECH_M_RXTX = 0, /* Send and Receive */
762  RSL_IPAC_SPEECH_M_RX = 1, /* Receive only */
763  RSL_IPAC_SPEECH_M_TX = 2, /* Send only */
764 };
765 
766 /* RSL_IE_IPAC_RTP_CSD_FMT, lower four bits */
772 };
773 /* RSL_IE_IPAC_RTP_CSD_FMT, upper four bits */
779 };
780 
781 /* Siemens vendor-specific RSL extensions */
782 struct rsl_mrpci {
783  uint8_t power_class:3,
787 } __attribute__ ((packed));
788 
795 };
798  /* reserved */
801 };
802 
803 /* 9.3.20 Release Mode */
807 };
808 
832  /* additional IPAC measurement pre-processing related IEI */
838 
839  /* Osmocom specific extensions: */
843 
844 };
845 
846 /* Value of TLV IE RSL_IPAC_EIE_MEAS_AVG_CFG */
848 #if OSMO_IS_LITTLE_ENDIAN
849  uint8_t h_reqave:5,
850  param_id:2,
851  reserved:1;
852  uint8_t h_reqt:5,
853  ave_method:3;
854  uint8_t params[0];
855 #elif OSMO_IS_BIG_ENDIAN
856 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
857  uint8_t reserved:1, param_id:2, h_reqave:5;
858  uint8_t ave_method:3, h_reqt:5;
859  uint8_t params[0];
860 #endif
861 }__attribute__ ((packed));
862 
863 
865 #if OSMO_IS_LITTLE_ENDIAN
866  uint8_t h_reqave:5,
867  ave_enabled:1,
868  reserved:2;
869  uint8_t h_reqt:5,
870  ave_method:3;
871 #elif OSMO_IS_BIG_ENDIAN
872 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
873  uint8_t reserved:2, ave_enabled:1, h_reqave:5;
874  uint8_t ave_method:3, h_reqt:5;
875 #endif
876 }__attribute__ ((packed));
877 /* Value of TLV IE RSL_IPAC_EIE_OSMO_MEAS_AVG_CFG: */
885  uint8_t params[0]; /* Contains params for each above, appended one after the other */
886 }__attribute__ ((packed));
887 
890 #if OSMO_IS_LITTLE_ENDIAN
891  uint8_t l_rxlev:6, reserved_l_rxlev:2;
892  uint8_t u_rxlev:6, reserved_u_rxlev:2;
893  uint8_t u_rxqual:3, reserved_u_rxqual:1,
894  l_rxqual:3, reserved_l_rxqual:1;
895 #elif OSMO_IS_BIG_ENDIAN
896 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
897  uint8_t reserved_l_rxlev:2, l_rxlev:6;
898  uint8_t reserved_u_rxlev:2, u_rxlev:6;
899  uint8_t reserved_l_rxqual:1, l_rxqual:3, reserved_u_rxqual:1, u_rxqual:3;
900 #endif
901 }__attribute__ ((packed));
902 
905  /* Carrier-to-Interference (C/I), in dB: */
906  int8_t l_ci_fr; int8_t u_ci_fr; /* FR/EFR */
907  int8_t l_ci_hr; int8_t u_ci_hr; /* HR */
908  int8_t l_ci_amr_fr; int8_t u_ci_amr_fr; /* AMR FR */
909  int8_t l_ci_amr_hr; int8_t u_ci_amr_hr; /* AMR HR */
910  int8_t l_ci_sdcch; int8_t u_ci_sdcch; /* SDCCH */
911  int8_t l_ci_gprs; int8_t u_ci_gprs; /* GPRS */
912 }__attribute__ ((packed));
913 
916 #if OSMO_IS_LITTLE_ENDIAN
917  uint8_t l_rxlev_ul_h:6,
918  reserved_l_rxlev_ul:2;
919  uint8_t l_rxlev_dl_h:6,
920  reserved_l_rxlev_dl:2;
921  uint8_t rxlev_ul_ih:6,
922  reserved_rxlev_ul:2;
923  uint8_t rxlev_dl_ih:6,
924  reserved_rxlev_dl:2;
925  uint8_t l_rxqual_ul_h:3,
926  reserved_rxlqual_ul:1,
927  l_rxqual_dl_h:3,
928  reserved_rxqual_dl:1;
929  uint8_t ms_range_max:6,
930  reserved_ms_range:2;
931 #elif OSMO_IS_BIG_ENDIAN
932 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
933  uint8_t reserved_l_rxlev_ul:2, l_rxlev_ul_h:6;
934  uint8_t reserved_l_rxlev_dl:2, l_rxlev_dl_h:6;
935  uint8_t reserved_rxlev_ul:2, rxlev_ul_ih:6;
936  uint8_t reserved_rxlev_dl:2, rxlev_dl_ih:6;
937  uint8_t reserved_rxqual_dl:1, l_rxqual_dl_h:3, reserved_rxlqual_ul:1, l_rxqual_ul_h:3;
938  uint8_t reserved_ms_range:2, ms_range_max:6;
939 #endif
940 }__attribute__ ((packed));
941 
944 #if OSMO_IS_LITTLE_ENDIAN
945  uint8_t p1:5, reserved_p1:3;
946  uint8_t n1:5, reserved_n1:3;
947  uint8_t p2:5, reserved_p2:3;
948  uint8_t n2:5, reserved_n2:3;
949  uint8_t p3:5, reserved_p3:3;
950  uint8_t n3:5, reserved_n3:3;
951  uint8_t p4:5, reserved_p4:3;
952  uint8_t n4:5, reserved_n4:3;
953  uint8_t pc_interval:5, reserved_pc:3;
954  uint8_t red_step_size:4, inc_step_size:4;
955 #elif OSMO_IS_BIG_ENDIAN
956 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
957  uint8_t reserved_p1:3, p1:5;
958  uint8_t reserved_n1:3, n1:5;
959  uint8_t reserved_p2:3, p2:5;
960  uint8_t reserved_n2:3, n2:5;
961  uint8_t reserved_p3:3, p3:5;
962  uint8_t reserved_n3:3, n3:5;
963  uint8_t reserved_p4:3, p4:5;
964  uint8_t reserved_n4:3, n4:5;
965  uint8_t reserved_pc:3, pc_interval:5;
966  uint8_t inc_step_size:4, red_step_size:4;
967 #endif
968 }__attribute__ ((packed));
969 
972 #if OSMO_IS_LITTLE_ENDIAN
973  uint8_t lower_p:5, reserved_lower_p:3;
974  uint8_t lower_n:5, reserved_lower_n:3;
975  uint8_t upper_p:5, reserved_upper_p:3;
976  uint8_t upper_n:5, reserved_upper_n:3;
977 #elif OSMO_IS_BIG_ENDIAN
978 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
979  uint8_t reserved_lower_p:3, lower_p:5;
980  uint8_t reserved_lower_n:3, lower_n:5;
981  uint8_t reserved_upper_p:3, upper_p:5;
982  uint8_t reserved_upper_n:3, upper_n:5;
983 #endif
984 }__attribute__ ((packed));
986  /* Used for Carrier-to-Interference (C/I), in dB: */
993 }__attribute__ ((packed));
994 
997 #if OSMO_IS_LITTLE_ENDIAN
998  uint8_t p5:5,
999  reserved_p5:3;
1000  uint8_t n5:5,
1001  reserved_n5:3;
1002  uint8_t p6:5,
1003  reserved_p6:3;
1004  uint8_t n6:5,
1005  reserved_n6:3;
1006  uint8_t p7:5,
1007  reserved_p7:3;
1008  uint8_t n7:5,
1009  reserved_n7:3;
1010  uint8_t p8:5,
1011  reserved_p8:3;
1012  uint8_t n8:5,
1013  reserved_n8:3;
1014  uint8_t ho_interval:5,
1015  reserved_ho:3;
1016  uint8_t reserved;
1017 
1018 #elif OSMO_IS_BIG_ENDIAN
1019 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1020  uint8_t reserved_p5:3, p5:5;
1021  uint8_t reserved_n5:3, n5:5;
1022  uint8_t reserved_p6:3, p6:5;
1023  uint8_t reserved_n6:3, n6:5;
1024  uint8_t reserved_p7:3, p7:5;
1025  uint8_t reserved_n7:3, n7:5;
1026  uint8_t reserved_p8:3, p8:5;
1027  uint8_t reserved_n8:3, n8:5;
1028  uint8_t reserved_ho:3, ho_interval:5;
1029  uint8_t reserved;
1030 #endif
1031 }__attribute__ ((packed));
1032 
1034 #if OSMO_IS_LITTLE_ENDIAN
1035  uint8_t bsic:6,
1036  reserved0:2;
1037  uint8_t bcch_freq:5,
1038  ba_used:1,
1039  s:1,
1040  reserved1:1;
1041 #elif OSMO_IS_BIG_ENDIAN
1042 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1043  uint8_t reserved0:2, bsic:6;
1044  uint8_t reserved1:1, s:1, ba_used:1, bcch_freq:5;
1045 #endif
1046 }__attribute__ ((packed));
1047 
1049 #if OSMO_IS_LITTLE_ENDIAN
1050  uint8_t rxlev_min_def:6,
1051  reserved_rxlev_min_def:2;
1052  uint8_t ho_margin_def:5,
1053  reserved_ho_margin_def:3;
1054  uint8_t ms_txpwr_max_def:5,
1055  reserved_ms_txpwr_max_def:3;
1056 #elif OSMO_IS_BIG_ENDIAN
1057 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1058  uint8_t reserved_rxlev_min_def:2, rxlev_min_def:6;
1059  uint8_t reserved_ho_margin_def:3, ho_margin_def:5;
1060  uint8_t reserved_ms_txpwr_max_def:3, ms_txpwr_max_def:5;
1061 #endif
1062 }__attribute__ ((packed));
1063 
1065 #if OSMO_IS_LITTLE_ENDIAN
1066  uint8_t sdcch_ho_gsm:1,
1067  sdcch_ho_umts:1,
1068  reserved:6;
1069 #elif OSMO_IS_BIG_ENDIAN
1070 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1071  uint8_t reserved:6, sdcch_ho_umts:1, sdcch_ho_gsm:1;
1072 #endif
1073 }__attribute__ ((packed));
1074 
1076  uint8_t meas_rep_mode;
1078  struct ipac_preproc_ave_cfg ms_ave_cfg[3];
1084 };
1085 
1086 struct rsl_l1_info {
1087 #if OSMO_IS_LITTLE_ENDIAN
1088  uint8_t reserved:1,
1089  srr_sro:1,
1090  fpc_epc:1,
1091  ms_pwr:5;
1092  uint8_t ta;
1093 #elif OSMO_IS_BIG_ENDIAN
1094 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1095  uint8_t ms_pwr:5, fpc_epc:1, srr_sro:1, reserved:1;
1096  uint8_t ta;
1097 #endif
1098 } __attribute__ ((packed));
1099 
rsl_ipac_rtp_csd_format_d
Definition: gsm_08_58.h:767
rsl_mrpci_pwrclass
Definition: gsm_08_58.h:789
rsl_rel_mode
Definition: gsm_08_58.h:804
abis_rsl_ie
RSL Information Element Identifiers (Chapter 9.3)
Definition: gsm_08_58.h:300
abis_rsl_msgtype_ericsson
Ericsson vendor-specific RSL message types.
Definition: gsm_08_58.h:295
rsl_ipac_rtp_payload
Definition: gsm_08_58.h:742
rsl_ipac_embedded_ie
ip.access specific embedded information elements
Definition: gsm_08_58.h:810
rsl_ipac_speech_mode_m
Definition: gsm_08_58.h:760
rsl_ipac_rtp_csd_format_ir
Definition: gsm_08_58.h:774
rsl_cmod_spd
Definition: gsm_08_58.h:498
rsl_mrpci_phase
Definition: gsm_08_58.h:796
rsl_cmod_sp
Speech.
Definition: gsm_08_58.h:518
abis_rsl_msgtype_siemens
Siemens vendor-specific RSL message types.
Definition: gsm_08_58.h:275
abis_rsl_msgtype
Definition: gsm_08_58.h:170
rsl_ipac_speech_mode_s
Definition: gsm_08_58.h:751
enum abis_rsl_msgtype __attribute__
rsl_cmod_crt
Channel rate and type.
Definition: gsm_08_58.h:504
rsl_cmod_csd_t
Transparent data.
Definition: gsm_08_58.h:552
rsl_cmod_csd_nt
Non-transparent data.
Definition: gsm_08_58.h:527
@ RSL_IPAC_RTP_CSD_NON_TRAU
packed 16k (252/288 bit) / 8k (126 bit) in RTP
Definition: gsm_08_58.h:769
@ RSL_IPAC_RTP_CSD_IWF_FREE
unknown proprietary IWF-free BTS-BTS data
Definition: gsm_08_58.h:771
@ RSL_IPAC_RTP_CSD_EXT_TRAU
TRAU-like RTP format, without leading zero-bits.
Definition: gsm_08_58.h:768
@ RSL_IPAC_RTP_CSD_TRAU_BTS
TRAU in BTS; V.110 in RTP/CLEARMODE.
Definition: gsm_08_58.h:770
@ RSL_MRPCI_PWRC_2
Definition: gsm_08_58.h:791
@ RSL_MRPCI_PWRC_4
Definition: gsm_08_58.h:793
@ RSL_MRPCI_PWRC_1
Definition: gsm_08_58.h:790
@ RSL_MRPCI_PWRC_3
Definition: gsm_08_58.h:792
@ RSL_MRPCI_PWRC_5
Definition: gsm_08_58.h:794
@ RSL_REL_LOCAL_END
Definition: gsm_08_58.h:806
@ RSL_REL_NORMAL
Definition: gsm_08_58.h:805
@ RSL_IE_SACCH_INFO
Definition: gsm_08_58.h:344
@ RSL_IE_RACH_LOAD
Definition: gsm_08_58.h:318
@ RSL_IE_CAUSE
Definition: gsm_08_58.h:326
@ RSL_IE_FULL_BCCH_INFO
Definition: gsm_08_58.h:339
@ RSL_IE_CBCH_LOAD_INFO
Definition: gsm_08_58.h:345
@ RSL_IE_FRAME_NUMBER
Definition: gsm_08_58.h:308
@ RSL_IE_IPAC_RTP_MPLEX
Definition: gsm_08_58.h:394
@ RSL_IE_ERR_MSG
Definition: gsm_08_58.h:338
@ RSL_IE_SMSCB_INFO
Definition: gsm_08_58.h:336
@ RSL_IE_CHAN_DESC
Definition: gsm_08_58.h:348
@ RSL_IE_OSMO_REP_ACCH_CAP
Definition: gsm_08_58.h:372
@ RSL_IE_PREPROC_MEAS
Definition: gsm_08_58.h:334
@ RSL_IE_SIEMENS_ININ_CELL_HO_PAR
Definition: gsm_08_58.h:364
@ RSL_IE_OSMO_OSMUX_CID
Definition: gsm_08_58.h:375
@ RSL_IE_RTD
Definition: gsm_08_58.h:358
@ RSL_IE_CMD_INDICATOR
Definition: gsm_08_58.h:350
@ RSL_IE_MAIN_CHAN_REF
Definition: gsm_08_58.h:353
@ RSL_IE_IMM_ASS_INFO
Definition: gsm_08_58.h:335
@ RSL_IE_SIEMENS_TRACE_REF_NR
Definition: gsm_08_58.h:365
@ RSL_IE_L1_INFO
Definition: gsm_08_58.h:310
@ RSL_IE_MS_POWER
Definition: gsm_08_58.h:313
@ RSL_IE_IPAC_LOCAL_PORT
Definition: gsm_08_58.h:384
@ RSL_IE_LINK_IDENT
Definition: gsm_08_58.h:302
@ RSL_IE_MR_CONTROL
Definition: gsm_08_58.h:355
@ RSL_IE_ACCESS_DELAY
Definition: gsm_08_58.h:317
@ RSL_IE_IPAC_RTP_JIT_BUF
Definition: gsm_08_58.h:391
@ RSL_IE_SYSINFO_TYPE
Definition: gsm_08_58.h:330
@ RSL_IE_MR_CONFIG
Definition: gsm_08_58.h:354
@ RSL_IE_IPAC_RTP_PAYLOAD2
Definition: gsm_08_58.h:393
@ RSL_IE_RESOURCE_INFO
Definition: gsm_08_58.h:321
@ RSL_IE_SIEMENS_HIGHEST_RATE
Definition: gsm_08_58.h:368
@ RSL_IE_NCH_DRX_INFO
Definition: gsm_08_58.h:349
@ RSL_IE_IPAC_LOCAL_IP
Definition: gsm_08_58.h:386
@ RSL_IE_IPAC_CONN_STAT
Definition: gsm_08_58.h:387
@ RSL_IE_OSMO_TEMP_OVP_ACCH_CAP
Definition: gsm_08_58.h:374
@ RSL_IE_SIEMENS_INT_TRACE_IDX
Definition: gsm_08_58.h:366
@ RSL_IE_EMLPP_PRIO
Definition: gsm_08_58.h:351
@ RSL_IE_ENCR_INFO
Definition: gsm_08_58.h:307
@ RSL_IE_SIEMENS_L2_HDR_INFO
Definition: gsm_08_58.h:367
@ RSL_IE_IPAC_RTP_MPLEX_ID
Definition: gsm_08_58.h:395
@ RSL_IE_FULL_IMM_ASS_INFO
Definition: gsm_08_58.h:343
@ RSL_IE_OSMO_TRAINING_SEQUENCE
Definition: gsm_08_58.h:373
@ RSL_IE_CB_CMD_TYPE
Definition: gsm_08_58.h:341
@ RSL_IE_UPLINK_MEAS
Definition: gsm_08_58.h:325
@ RSL_IE_SIEMENS_PREF_AREA_TYPE
Definition: gsm_08_58.h:363
@ RSL_IE_SIEMENS_MRPCI
Definition: gsm_08_58.h:362
@ RSL_IE_UIC
Definition: gsm_08_58.h:352
@ RSL_IE_IPAC_RTP_COMPR
Definition: gsm_08_58.h:392
@ RSL_IE_HANDO_REF
Definition: gsm_08_58.h:309
@ RSL_IE_LLP_APDU
Definition: gsm_08_58.h:360
@ RSL_IE_IPAC_HO_C_PARMS
Definition: gsm_08_58.h:388
@ RSL_IE_SMSCB_MSG
Definition: gsm_08_58.h:342
@ RSL_IE_MS_IDENTITY
Definition: gsm_08_58.h:312
@ RSL_IE_MS_POWER_PARAM
Definition: gsm_08_58.h:331
@ RSL_IE_RLM_CAUSE
Definition: gsm_08_58.h:322
@ RSL_IE_REQ_REFERENCE
Definition: gsm_08_58.h:319
@ RSL_IE_IPAC_BSCMPL_TOUT
Definition: gsm_08_58.h:380
@ RSL_IE_STARTNG_TIME
Definition: gsm_08_58.h:323
@ RSL_IE_RELEASE_MODE
Definition: gsm_08_58.h:320
@ RSL_IE_MSG_ID
Definition: gsm_08_58.h:328
@ RSL_IE_SUP_CODEC_TYPES
Definition: gsm_08_58.h:356
@ RSL_IE_PREPROC_PARAM
Definition: gsm_08_58.h:333
@ RSL_IE_CHAN_MODE
Definition: gsm_08_58.h:306
@ RSL_IE_IPAC_RTP_PAYLOAD
Definition: gsm_08_58.h:383
@ RSL_IE_TFO_STATUS
Definition: gsm_08_58.h:359
@ RSL_IE_SIEMENS_SUGGESTED_RATE
Definition: gsm_08_58.h:369
@ RSL_IE_CODEC_CONFIG
Definition: gsm_08_58.h:357
@ RSL_IE_PYHS_CONTEXT
Definition: gsm_08_58.h:316
@ RSL_IE_IPAC_SPEECH_MODE
Definition: gsm_08_58.h:385
@ RSL_IE_IPAC_CONN_ID
Definition: gsm_08_58.h:389
@ RSL_IE_SMSCB_CHAN_INDICATOR
Definition: gsm_08_58.h:346
@ RSL_IE_IPAC_PROXY_UDP
Definition: gsm_08_58.h:379
@ RSL_IE_MEAS_RES_NR
Definition: gsm_08_58.h:327
@ RSL_IE_IPAC_REMOTE_IP
Definition: gsm_08_58.h:381
@ RSL_IE_CHAN_IDENT
Definition: gsm_08_58.h:305
@ RSL_IE_IPAC_RTP_CSD_FMT
Definition: gsm_08_58.h:390
@ RSL_IE_PAGING_LOAD
Definition: gsm_08_58.h:315
@ RSL_IE_CHAN_NR
Definition: gsm_08_58.h:301
@ RSL_IE_GROUP_CALL_REF
Definition: gsm_08_58.h:347
@ RSL_IE_MS_TIMING_OFFSET
Definition: gsm_08_58.h:337
@ RSL_IE_TIMING_ADVANCE
Definition: gsm_08_58.h:324
@ RSL_IE_CHAN_NEEDED
Definition: gsm_08_58.h:340
@ RSL_IE_IPAC_REMOTE_PORT
Definition: gsm_08_58.h:382
@ RSL_IE_L3_INFO
Definition: gsm_08_58.h:311
@ RSL_IE_ACT_TYPE
Definition: gsm_08_58.h:303
@ RSL_IE_PAGING_GROUP
Definition: gsm_08_58.h:314
@ RSL_IE_IPAC_SRTP_CONFIG
Definition: gsm_08_58.h:378
@ RSL_IE_BS_POWER
Definition: gsm_08_58.h:304
@ RSL_IE_BS_POWER_PARAM
Definition: gsm_08_58.h:332
@ RSL_MT_ERICSSON_IMM_ASS_SENT
Definition: gsm_08_58.h:296
@ RSL_IPAC_RTP_EFR
Definition: gsm_08_58.h:744
@ RSL_IPAC_RTP_AMR
Definition: gsm_08_58.h:745
@ RSL_IPAC_RTP_GSM
Definition: gsm_08_58.h:743
@ RSL_IPAC_RTP_MUX
Definition: gsm_08_58.h:747
@ RSL_IPAC_RTP_CSD
Definition: gsm_08_58.h:746
@ IPAC_RXQUAL_AVE
Definition: gsm_08_58.h:433
@ IPAC_RXLEV_AVE
Definition: gsm_08_58.h:432
@ IPAC_MS_BTS_DIS_AVE
Definition: gsm_08_58.h:434
@ RSL_IPAC_EIE_MASTER_KEY
Definition: gsm_08_58.h:830
@ RSL_IPAC_EIE_MEAS_AVG_CFG
Definition: gsm_08_58.h:815
@ RSL_IPAC_EIE_MASTER_SALT
Definition: gsm_08_58.h:831
@ RSL_IPAC_EIE_NCELL_DEFAULTS
Definition: gsm_08_58.h:819
@ RSL_IPAC_EIE_NUM_OF_MS
Definition: gsm_08_58.h:826
@ RSL_IPAC_EIE_PC_THRESH_COMP
Definition: gsm_08_58.h:821
@ RSL_IPAC_EIE_3G_HO_PARAM
Definition: gsm_08_58.h:834
@ RSL_IPAC_EIE_NCELL_BA_CHG_LIST
Definition: gsm_08_58.h:825
@ RSL_IPAC_EIE_FREQ_ERR
Definition: gsm_08_58.h:813
@ RSL_IPAC_EIE_HO_THRESH_COMP
Definition: gsm_08_58.h:822
@ RSL_IPAC_EIE_HO_CAND_EXT
Definition: gsm_08_58.h:827
@ RSL_IPAC_EIE_MS_PWR_CTL
Definition: gsm_08_58.h:817
@ RSL_IPAC_EIE_3G_NCELL_LIST
Definition: gsm_08_58.h:835
@ RSL_IPAC_EIE_HO_CANDIDATES
Definition: gsm_08_58.h:824
@ RSL_IPAC_EIE_AMR_CONV_THRESH
Definition: gsm_08_58.h:837
@ RSL_IPAC_EIE_NCELL_LIST_EXT
Definition: gsm_08_58.h:829
@ RSL_IPAC_EIE_NCELL_LIST
Definition: gsm_08_58.h:820
@ RSL_IPAC_EIE_SDCCH_CTL_PARAM
Definition: gsm_08_58.h:836
@ RSL_IPAC_EIE_NCELL_DEF_EXT
Definition: gsm_08_58.h:828
@ RSL_IPAC_EIE_OSMO_PC_THRESH_COMP
Definition: gsm_08_58.h:842
@ RSL_IPAC_EIE_HANDO_THRESH
Definition: gsm_08_58.h:818
@ RSL_IPAC_EIE_MEAS_TRANS_RES
Definition: gsm_08_58.h:833
@ RSL_IPAC_EIE_TIMING_ERR
Definition: gsm_08_58.h:814
@ RSL_IPAC_EIE_RXLEV
Definition: gsm_08_58.h:811
@ RSL_IPAC_EIE_OSMO_MS_PWR_CTL
Definition: gsm_08_58.h:841
@ RSL_IPAC_EIE_OSMO_MEAS_AVG_CFG
Definition: gsm_08_58.h:840
@ RSL_IPAC_EIE_RXQUAL
Definition: gsm_08_58.h:812
@ RSL_IPAC_EIE_BS_PWR_CTL
Definition: gsm_08_58.h:816
@ RSL_IPAC_EIE_HO_CAUSE
Definition: gsm_08_58.h:823
@ RSL_IPAC_SPEECH_M_TX
Definition: gsm_08_58.h:763
@ RSL_IPAC_SPEECH_M_RX
Definition: gsm_08_58.h:762
@ RSL_IPAC_SPEECH_M_RXTX
Definition: gsm_08_58.h:761
@ RSL_IPAC_RTP_CSD_IR_32k
Definition: gsm_08_58.h:777
@ RSL_IPAC_RTP_CSD_IR_64k
Definition: gsm_08_58.h:778
@ RSL_IPAC_RTP_CSD_IR_8k
Definition: gsm_08_58.h:775
@ RSL_IPAC_RTP_CSD_IR_16k
Definition: gsm_08_58.h:776
@ RSL_CMOD_SPD_SPEECH
Definition: gsm_08_58.h:499
@ RSL_CMOD_SPD_SIGN
Definition: gsm_08_58.h:501
@ RSL_CMOD_SPD_DATA
Definition: gsm_08_58.h:500
@ IPAC_MEDIAN_AVE
Definition: gsm_08_58.h:425
@ IPAC_WEIGHTED_AVE
Definition: gsm_08_58.h:424
@ IPAC_OSMO_EWMA_AVE
Definition: gsm_08_58.h:427
@ IPAC_UNWEIGHTED_AVE
Definition: gsm_08_58.h:423
@ RSL_MRPCI_PHASE_2
Definition: gsm_08_58.h:799
@ RSL_MRPCI_PHASE_1
Definition: gsm_08_58.h:797
@ RSL_MRPCI_PHASE_2PLUS
Definition: gsm_08_58.h:800
@ RSL_CMOD_SP_GSM2
Definition: gsm_08_58.h:520
@ RSL_CMOD_SP_GSM6
Definition: gsm_08_58.h:524
@ RSL_CMOD_SP_GSM1
Definition: gsm_08_58.h:519
@ RSL_CMOD_SP_GSM3
Definition: gsm_08_58.h:521
@ RSL_CMOD_SP_GSM5
Definition: gsm_08_58.h:523
@ RSL_CMOD_SP_GSM4
Definition: gsm_08_58.h:522
@ IPAC_HO_RQD_CAUSE_ENQUIRY
Definition: gsm_08_58.h:447
@ IPAC_HO_RQD_CAUSE_NORMAL3G
Definition: gsm_08_58.h:449
@ IPAC_HO_RQD_CAUSE_RXLEV_UL_IH
Definition: gsm_08_58.h:443
@ IPAC_HO_RQD_CAUSE_L_RXQUAL_DL_H
Definition: gsm_08_58.h:442
@ IPAC_HO_RQD_CAUSE_EMERGENCY3G
Definition: gsm_08_58.h:450
@ IPAC_HO_RQD_CAUSE_LOAD_DEMOTION
Definition: gsm_08_58.h:455
@ IPAC_HO_RQD_CAUSE_QUALITY_PROMOTION
Definition: gsm_08_58.h:453
@ IPAC_HO_RQD_CAUSE_L_RXLEV_UL_H
Definition: gsm_08_58.h:439
@ IPAC_HO_RQD_CAUSE_L_RXQUAL_UL_H
Definition: gsm_08_58.h:441
@ IPAC_HO_RQD_CAUSE_ENQUIRY_FAILED
Definition: gsm_08_58.h:448
@ IPAC_HO_RQD_CAUSE_MAX
Definition: gsm_08_58.h:456
@ IPAC_HO_RQD_CAUSE_L_RXLEV_DL_H
Definition: gsm_08_58.h:440
@ IPAC_HO_RQD_CAUSE_POWER_BUDGET
Definition: gsm_08_58.h:446
@ IPAC_HO_RQD_CAUSE_SERVICE_PREFERRED3G
Definition: gsm_08_58.h:451
@ IPAC_HO_RQD_CAUSE_O_M_SHUTDOWN
Definition: gsm_08_58.h:452
@ IPAC_HO_RQD_CAUSE_LOAD_PROMOTION
Definition: gsm_08_58.h:454
@ IPAC_HO_RQD_CAUSE_RXLEV_DL_IH
Definition: gsm_08_58.h:444
@ IPAC_HO_RQD_CAUSE_MAX_MS_RANGE
Definition: gsm_08_58.h:445
@ RSL_MT_SIEMENS_HO_FAIL_IND
Definition: gsm_08_58.h:286
@ RSL_MT_SIEMENS_STOP_TRACE_ACK
Definition: gsm_08_58.h:287
@ RSL_MT_SIEMENS_FORCED_HO_REQ
Definition: gsm_08_58.h:279
@ RSL_MT_SIEMENS_START_TRACE
Definition: gsm_08_58.h:282
@ RSL_MT_SIEMENS_SET_SYS_INFO_10
Definition: gsm_08_58.h:290
@ RSL_MT_SIEMENS_MODIF_COND_IND
Definition: gsm_08_58.h:291
@ RSL_MT_SIEMENS_STOP_TRACE
Definition: gsm_08_58.h:284
@ RSL_MT_SIEMENS_MRPCI
Definition: gsm_08_58.h:276
@ RSL_MT_SIEMENS_TRMR
Definition: gsm_08_58.h:285
@ RSL_MT_SIEMENS_START_TRACE_ACK
Definition: gsm_08_58.h:283
@ RSL_MT_SIEMENS_UPLF
Definition: gsm_08_58.h:288
@ RSL_MT_SIEMENS_INTERC_HO_COND_IND
Definition: gsm_08_58.h:278
@ RSL_MT_SIEMENS_PREF_AREA
Definition: gsm_08_58.h:281
@ RSL_MT_SIEMENS_PREF_AREA_REQ
Definition: gsm_08_58.h:280
@ RSL_MT_SIEMENS_INTRAC_HO_COND_IND
Definition: gsm_08_58.h:277
@ RSL_MT_SIEMENS_UPLB
Definition: gsm_08_58.h:289
@ RSL_MT_MS_POWER_CONTROL
Definition: gsm_08_58.h:221
@ RSL_MT_IMMEDIATE_ASSIGN_CMD
Definition: gsm_08_58.h:194
@ RSL_MT_MR_CODEC_MOD_NACK
Definition: gsm_08_58.h:234
@ RSL_MT_IPAC_CONNECT_MUX_ACK
Definition: gsm_08_58.h:249
@ RSL_MT_IPAC_DISC_MUX
Definition: gsm_08_58.h:254
@ RSL_MT_REL_IND
Definition: gsm_08_58.h:180
@ RSL_MT_EST_IND
Definition: gsm_08_58.h:177
@ RSL_MT_IPAC_CRCX_ACK
Definition: gsm_08_58.h:261
@ RSL_MT_MODE_MODIFY_NACK
Definition: gsm_08_58.h:217
@ RSL_MT_IPAC_BIND_MUX
Definition: gsm_08_58.h:251
@ RSL_MT_NOT_CMD
Definition: gsm_08_58.h:204
@ RSL_MT_MODE_MODIFY_REQ
Definition: gsm_08_58.h:215
@ RSL_MT_IPAC_CRCX_NACK
Definition: gsm_08_58.h:262
@ RSL_MT_BS_POWER_CONTROL
Definition: gsm_08_58.h:222
@ RSL_MT_LOCATION_INFO
Definition: gsm_08_58.h:238
@ RSL_MT_MEAS_RES
Definition: gsm_08_58.h:214
@ RSL_MT_IPAC_HO_CAN_RES
Definition: gsm_08_58.h:259
@ RSL_MT_EST_REQ
Definition: gsm_08_58.h:175
@ RSL_MT_UNIT_DATA_IND
Definition: gsm_08_58.h:182
@ RSL_MT_ENCR_CMD
Definition: gsm_08_58.h:212
@ RSL_MT_IPAC_PDCH_DEACT
Definition: gsm_08_58.h:245
@ RSL_MT_DATA_REQ
Definition: gsm_08_58.h:172
@ RSL_MT_DATA_IND
Definition: gsm_08_58.h:173
@ RSL_MT_RF_RES_IND
Definition: gsm_08_58.h:198
@ RSL_MT_BCCH_INFO
Definition: gsm_08_58.h:189
@ RSL_MT_IPAC_DIR_RETR_ENQ
Definition: gsm_08_58.h:241
@ RSL_MT_UNIT_DATA_REQ
Definition: gsm_08_58.h:181
@ RSL_MT_RTD_REP
Definition: gsm_08_58.h:230
@ RSL_MT_OVERLOAD
Definition: gsm_08_58.h:200
@ RSL_MT_RF_CHAN_REL_ACK
Definition: gsm_08_58.h:225
@ RSL_MT_IPAC_PDCH_ACT_NACK
Definition: gsm_08_58.h:244
@ RSL_MT_SUSP_REQ
Definition: gsm_08_58.h:183
@ RSL_MT_IPAC_PDCH_ACT
Definition: gsm_08_58.h:242
@ RSL_MT_OSMO_ETWS_CMD
Definition: gsm_08_58.h:271
@ RSL_MT_MR_CODEC_MOD_ACK
Definition: gsm_08_58.h:233
@ RSL_MT_IPAC_DLCX_ACK
Definition: gsm_08_58.h:268
@ RSL_MT_IPAC_PDCH_ACT_ACK
Definition: gsm_08_58.h:243
@ RSL_MT_CHAN_RQD
Definition: gsm_08_58.h:191
@ RSL_MT_PHY_CONTEXT_REQ
Definition: gsm_08_58.h:218
@ RSL_MT_RF_CHAN_REL
Definition: gsm_08_58.h:220
@ RSL_MT_MR_CODEC_MOD_REQ
Definition: gsm_08_58.h:232
@ RSL_MT_IPAC_MDCX_NACK
Definition: gsm_08_58.h:265
@ RSL_MT_CHAN_ACTIV
Definition: gsm_08_58.h:207
@ RSL_MT_IPAC_DLCX_IND
Definition: gsm_08_58.h:266
@ RSL_MT_REMOTE_CODEC_CONF_REP
Definition: gsm_08_58.h:229
@ RSL_MT_IPAC_DISC_MUX_ACK
Definition: gsm_08_58.h:255
@ RSL_MT_REL_REQ
Definition: gsm_08_58.h:178
@ RSL_MT_PRE_HANDO_NOTIF
Definition: gsm_08_58.h:231
@ RSL_MT_IPAC_DLCX_NACK
Definition: gsm_08_58.h:269
@ RSL_MT_SMS_BC_REQ
Definition: gsm_08_58.h:195
@ RSL_MT_TFO_MOD_REQ
Definition: gsm_08_58.h:237
@ RSL_MT_CHAN_ACTIV_ACK
Definition: gsm_08_58.h:208
@ RSL_MT_CHAN_ACTIV_NACK
Definition: gsm_08_58.h:209
@ RSL_MT_IPAC_MDCX
Definition: gsm_08_58.h:263
@ RSL_MT_RES_REQ
Definition: gsm_08_58.h:185
@ RSL_MT_CONN_FAIL
Definition: gsm_08_58.h:210
@ RSL_MT_RECON_REQ
Definition: gsm_08_58.h:186
@ RSL_MT_ERROR_REPORT
Definition: gsm_08_58.h:201
@ RSL_MT_PHY_CONTEXT_CONF
Definition: gsm_08_58.h:219
@ RSL_MT_IPAC_DISC_MUX_NACK
Definition: gsm_08_58.h:256
@ RSL_MT_SMS_BC_CMD
Definition: gsm_08_58.h:202
@ RSL_MT_CCCH_LOAD_IND
Definition: gsm_08_58.h:190
@ RSL_MT_IPAC_CONNECT_MUX
Definition: gsm_08_58.h:248
@ RSL_MT_HANDO_DET
Definition: gsm_08_58.h:213
@ RSL_MT_IPAC_MEAS_PREPROC_DFT
Definition: gsm_08_58.h:257
@ RSL_MT_REL_CONF
Definition: gsm_08_58.h:179
@ RSL_MT_IPAC_CRCX
Definition: gsm_08_58.h:260
@ RSL_MT_DEACTIVATE_SACCH
Definition: gsm_08_58.h:211
@ RSL_MT_MODE_MODIFY_ACK
Definition: gsm_08_58.h:216
@ RSL_MT_IPAC_BIND_MUX_NACK
Definition: gsm_08_58.h:253
@ RSL_MT_IPAC_MDCX_ACK
Definition: gsm_08_58.h:264
@ RSL_MT_SACCH_FILL
Definition: gsm_08_58.h:199
@ RSL_MT_IPAC_CONNECT_MUX_NACK
Definition: gsm_08_58.h:250
@ RSL_MT_SACCH_INFO_MODIFY
Definition: gsm_08_58.h:226
@ RSL_MT_CBCH_LOAD_IND
Definition: gsm_08_58.h:203
@ RSL_MT_IPAC_HO_CAN_ENQ
Definition: gsm_08_58.h:258
@ RSL_MT_ERROR_IND
Definition: gsm_08_58.h:174
@ RSL_MT_MR_CODEC_MOD_PER
Definition: gsm_08_58.h:235
@ RSL_MT_IPAC_BIND_MUX_ACK
Definition: gsm_08_58.h:252
@ RSL_MT_IPAC_PDCH_DEACT_ACK
Definition: gsm_08_58.h:246
@ RSL_MT_SUSP_CONF
Definition: gsm_08_58.h:184
@ RSL_MT_DELETE_IND
Definition: gsm_08_58.h:192
@ RSL_MT_CHAN_CONF
Definition: gsm_08_58.h:196
@ RSL_MT_PREPROC_MEAS_RES
Definition: gsm_08_58.h:224
@ RSL_MT_EST_CONF
Definition: gsm_08_58.h:176
@ RSL_MT_PAGING_CMD
Definition: gsm_08_58.h:193
@ RSL_MT_TFO_REP
Definition: gsm_08_58.h:236
@ RSL_MT_IPAC_PDCH_DEACT_NACK
Definition: gsm_08_58.h:247
@ RSL_MT_LISTENER_DET
Definition: gsm_08_58.h:228
@ RSL_MT_PREPROC_CONFIG
Definition: gsm_08_58.h:223
@ RSL_MT_TALKER_DET
Definition: gsm_08_58.h:227
@ RSL_MT_IPAC_DLCX
Definition: gsm_08_58.h:267
@ RSL_IPAC_SPEECH_GSM_FR
Definition: gsm_08_58.h:752
@ RSL_IPAC_SPEECH_GSM_HR
Definition: gsm_08_58.h:755
@ RSL_IPAC_SPEECH_GSM_AMR_HR
Definition: gsm_08_58.h:756
@ RSL_IPAC_SPEECH_GSM_AMR_FR
Definition: gsm_08_58.h:754
@ RSL_IPAC_SPEECH_AS_RTP
Definition: gsm_08_58.h:757
@ RSL_IPAC_SPEECH_GSM_EFR
Definition: gsm_08_58.h:753
@ RSL_CMOD_CRT_TCH_BCAST_Bm
Definition: gsm_08_58.h:512
@ RSL_CMOD_CRT_TCH_GROUP_Bm
Definition: gsm_08_58.h:510
@ RSL_CMOD_CRT_OSMO_TCH_VAMOS_Bm
Definition: gsm_08_58.h:514
@ RSL_CMOD_CRT_TCH_Bm
Definition: gsm_08_58.h:506
@ RSL_CMOD_CRT_TCH_GROUP_Lm
Definition: gsm_08_58.h:511
@ RSL_CMOD_CRT_SDCCH
Definition: gsm_08_58.h:505
@ RSL_CMOD_CRT_TCH_UNI_Bm
Definition: gsm_08_58.h:509
@ RSL_CMOD_CRT_OSMO_TCH_VAMOS_Lm
Definition: gsm_08_58.h:515
@ RSL_CMOD_CRT_TCH_BCAST_Lm
Definition: gsm_08_58.h:513
@ RSL_CMOD_CRT_TCH_BI_Bm
Definition: gsm_08_58.h:508
@ RSL_CMOD_CRT_TCH_Lm
Definition: gsm_08_58.h:507
@ RSL_CMOD_CSD_T_1200_75
Definition: gsm_08_58.h:561
@ RSL_CMOD_CSD_T_14k4
Definition: gsm_08_58.h:555
@ RSL_CMOD_CSD_T_2k4
Definition: gsm_08_58.h:558
@ RSL_CMOD_CSD_T_1k2
Definition: gsm_08_58.h:559
@ RSL_CMOD_CSD_T_600
Definition: gsm_08_58.h:560
@ RSL_CMOD_CSD_T_9k6
Definition: gsm_08_58.h:556
@ RSL_CMOD_CSD_T_32k0
Definition: gsm_08_58.h:553
@ RSL_CMOD_CSD_T_29k0
Definition: gsm_08_58.h:554
@ RSL_CMOD_CSD_T_4k8
Definition: gsm_08_58.h:557
@ RSL_CMOD_CSD_NT_14k5
Definition: gsm_08_58.h:536
@ RSL_CMOD_CSD_NTA_43k5_29k0
Definition: gsm_08_58.h:530
@ RSL_CMOD_CSD_NT_6k0
Definition: gsm_08_58.h:538
@ RSL_CMOD_CSD_NTA_14k5_29k0
Definition: gsm_08_58.h:532
@ RSL_CMOD_CSD_NTA_29k0_43k5
Definition: gsm_08_58.h:533
@ RSL_CMOD_CSD_NTA_29k0_14k5
Definition: gsm_08_58.h:529
@ RSL_CMOD_CSD_NTA_43k5_14k5
Definition: gsm_08_58.h:528
@ RSL_CMOD_CSD_NT_43k5
Definition: gsm_08_58.h:534
@ RSL_CMOD_CSD_NTA_14k5_43k5
Definition: gsm_08_58.h:531
@ RSL_CMOD_CSD_NT_28k8
Definition: gsm_08_58.h:535
@ RSL_CMOD_CSD_NT_12k0
Definition: gsm_08_58.h:537
uint8_t ta
Definition: gsm_04_08.h:2
uint8_t len
Definition: gsm_04_11.h:0
uint8_t params[0]
Definition: gsm_08_58.h:6
Definition: gsm_08_58.h:113
uint8_t chan_nr
Definition: gsm_08_58.h:117
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:114
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:118
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:120
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:115
RSL common header.
Definition: gsm_08_58.h:79
uint8_t data[0]
actual payload data
Definition: gsm_08_58.h:82
uint8_t msg_discr
message discriminator (ABIS_RSL_MDISC_*)
Definition: gsm_08_58.h:80
uint8_t msg_type
message type (abis_rsl_msgtype)
Definition: gsm_08_58.h:81
Definition: gsm_08_58.h:102
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:104
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:107
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:109
uint8_t chan_nr
Definition: gsm_08_58.h:106
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:103
Definition: gsm_08_58.h:124
Definition: gsm_08_58.h:139
Definition: gsm_08_58.h:86
uint8_t ie_link_id
RSL_IE_LINK_IDENT (tag)
Definition: gsm_08_58.h:93
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:91
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:87
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:98
uint8_t chan_nr
Definition: gsm_08_58.h:90
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:88
uint8_t link_id
Definition: gsm_08_58.h:95
union abis_rsl_link_id link_id_fields
RSL link identifier (value)
Definition: gsm_08_58.h:96
Definition: gsm_08_58.h:847
Definition: gsm_08_58.h:1075
struct ipac_preproc_ho_ctl_param ho_ctl_param
Definition: gsm_08_58.h:1083
struct ipac_preproc_ave_cfg ms_ave_cfg[3]
Definition: gsm_08_58.h:1078
uint8_t meas_rep_mode
Definition: gsm_08_58.h:1076
struct ipac_preproc_ncell_dflts ncell_dflts
Definition: gsm_08_58.h:1082
struct ipac_preproc_ho_comp ho_comp
Definition: gsm_08_58.h:1081
struct ipac_preproc_ho_thresh ho_thresh
Definition: gsm_08_58.h:1080
uint32_t meas_mode_flags
Definition: gsm_08_58.h:1077
struct ipac_preproc_ave_cfg ave_cfg
Definition: gsm_08_58.h:1079
Definition: gsm_08_58.h:1033
HO Threshold Comparators.
Definition: gsm_08_58.h:996
Definition: gsm_08_58.h:1064
Handover Thresholds.
Definition: gsm_08_58.h:915
Definition: gsm_08_58.h:1048
Osmocom extension for: PC Threshold Comparators (RSL_IPAC_EIE_OSMO_PC_THRESH_COMP)
Definition: gsm_08_58.h:971
PC Threshold Comparators (RSL_IPAC_EIE_PC_THRESH_COMP)
Definition: gsm_08_58.h:943
MS/BS Power Control Thresholds (RSL_IPAC_EIE_MS_PWR_CTL)
Definition: gsm_08_58.h:889
Definition: gsm_08_58.h:864
Definition: gsm_08_58.h:878
struct osmo_preproc_ave_cfg_field ci_hr
Definition: gsm_08_58.h:880
struct osmo_preproc_ave_cfg_field ci_amr_hr
Definition: gsm_08_58.h:882
struct osmo_preproc_ave_cfg_field ci_gprs
Definition: gsm_08_58.h:884
struct osmo_preproc_ave_cfg_field ci_fr
Definition: gsm_08_58.h:879
struct osmo_preproc_ave_cfg_field ci_sdcch
Definition: gsm_08_58.h:883
struct osmo_preproc_ave_cfg_field ci_amr_fr
Definition: gsm_08_58.h:881
uint8_t params[0]
Definition: gsm_08_58.h:885
Definition: gsm_08_58.h:985
struct ipac_preproc_pc_comp_field ci_sdcch
Definition: gsm_08_58.h:991
struct ipac_preproc_pc_comp_field ci_hr
Definition: gsm_08_58.h:988
struct ipac_preproc_pc_comp_field ci_gprs
Definition: gsm_08_58.h:992
struct ipac_preproc_pc_comp_field ci_fr
Definition: gsm_08_58.h:987
struct ipac_preproc_pc_comp_field ci_amr_hr
Definition: gsm_08_58.h:990
struct ipac_preproc_pc_comp_field ci_amr_fr
Definition: gsm_08_58.h:989
Osmocom extension for: MS/BS Power Control Thresholds (RSL_IPAC_EIE_OSMO_MS_PWR_CTL)
Definition: gsm_08_58.h:904
int8_t l_ci_sdcch
Definition: gsm_08_58.h:910
int8_t l_ci_fr
Definition: gsm_08_58.h:906
int8_t l_ci_gprs
Definition: gsm_08_58.h:911
int8_t u_ci_sdcch
Definition: gsm_08_58.h:910
int8_t u_ci_hr
Definition: gsm_08_58.h:907
int8_t l_ci_amr_hr
Definition: gsm_08_58.h:909
int8_t l_ci_amr_fr
Definition: gsm_08_58.h:908
int8_t l_ci_hr
Definition: gsm_08_58.h:907
int8_t u_ci_amr_fr
Definition: gsm_08_58.h:908
int8_t u_ci_fr
Definition: gsm_08_58.h:906
int8_t u_ci_gprs
Definition: gsm_08_58.h:911
int8_t u_ci_amr_hr
Definition: gsm_08_58.h:909
RSL Cell Broadcast Command (Chapter 9.3.41)
Definition: gsm_08_58.h:681
RSL Channel Identification IE (Chapter 9.3.5)
Definition: gsm_08_58.h:565
uint8_t chan_nr
Definition: gsm_08_58.h:569
uint8_t oct4
Definition: gsm_08_58.h:571
uint8_t iei
Definition: gsm_08_58.h:568
struct rsl_ie_chan_ident::@109 chan_desc
uint8_t oct3
Definition: gsm_08_58.h:570
RSL Channel Mode IF (Chapter 9.3.6)
Definition: gsm_08_58.h:490
uint8_t chan_rt
Definition: gsm_08_58.h:493
uint8_t dtx_dtu
Definition: gsm_08_58.h:491
uint8_t spd_ind
Definition: gsm_08_58.h:492
uint8_t chan_rate
Definition: gsm_08_58.h:494
NCH DRX Information (Chapter 9.3.47)
Definition: gsm_08_58.h:707
Definition: gsm_08_58.h:1086
Definition: gsm_08_58.h:782
uint8_t power_class
Definition: gsm_08_58.h:783
uint8_t gsm_phase
Definition: gsm_08_58.h:786
uint8_t vgcs_capable
Definition: gsm_08_58.h:784
uint8_t vbs_capable
Definition: gsm_08_58.h:785
Definition: gsm_08_58.h:31
struct abis_rsl_chan_nr::@90 __attribute__((packed))
uint8_t chan_nr
Definition: gsm_08_58.h:41