libosmogsm  1.5.1.129-442f
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 /* Chapter 9.1 */
143 /* RSL Message Discriminator: RLL */
144 #define ABIS_RSL_MDISC_RLL 0x02
145 /* RSL Message Discriminator: Dedicated Channel */
146 #define ABIS_RSL_MDISC_DED_CHAN 0x08
147 /* RSL Message Discriminator: Common Channel */
148 #define ABIS_RSL_MDISC_COM_CHAN 0x0c
149 /* RSL Message Discriminator: TRX Management */
150 #define ABIS_RSL_MDISC_TRX 0x10
151 /* RSL Message Discriminator: Location Service */
152 #define ABIS_RSL_MDISC_LOC 0x20
153 /* RSL Message Discriminator: ip.access */
154 #define ABIS_RSL_MDISC_IPACCESS 0x7e
155 #define ABIS_RSL_MDISC_TRANSP 0x01
156 
157 /* Check if given RSL message discriminator is transparent */
158 #define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
159 
160 /* RSL Message Type (Chapter 9.1) */
162  /* Radio Link Layer Management */
174  RSL_MT_SUSP_REQ, /* non-standard elements */
177  RSL_MT_RECON_REQ, /* 0x0f */
178 
179  /* Common Channel Management / TRX Management */
187  RSL_MT_CHAN_CONF, /* non-standard element */
188  /* empty */
195  RSL_MT_NOT_CMD, /* 0x1f */
196 
197  /* Dedicate Channel Management */
228  RSL_MT_TFO_MOD_REQ, /* 0x3f */
230 
231  /* ip.access specific RSL message types */
248  RSL_MT_IPAC_MEAS_PREPROC_DFT = 0x60, /*Extented Common Channel Management */
251  RSL_MT_IPAC_CRCX = 0x70, /* Bind to local BTS RTP port */
261 
263 };
264 
283 };
284 
288 };
289 
320  /* reserved */
326  RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
352  /* Siemens vendor-specific */
361 
362  /* Osmocom specific */
365 
366  /* ip.access */
385 };
386 
387 /* Ericsson specific IEs, clash with above partially, so they're not
388  * part of the enum */
389 #define RSL_IE_ERIC_PAGING_GROUP 0x0e
390 #define RSL_IE_ERIC_INST_NR 0x48
391 #define RSL_IE_ERIC_PGSL_TIMERS 0x49
392 #define RSL_IE_ERIC_REPEAT_DL_FACCH 0x4a
393 #define RSL_IE_ERIC_POWER_INFO 0xf0
394 #define RSL_IE_ERIC_MOBILE_ID 0xf1
395 #define RSL_IE_ERIC_BCCH_MAPPING 0xf2
396 #define RSL_IE_ERIC_PACKET_PAG_IND 0xf3
397 #define RSL_IE_ERIC_CNTR_CTRL 0xf4
398 #define RSL_IE_ERIC_CNTR_CTRL_ACK 0xf5
399 #define RSL_IE_ERIC_CNTR_REPORT 0xf6
400 #define RSL_IE_ERIC_ICP_CONN 0xf7
401 #define RSL_IE_ERIC_EMR_SUPPORT 0xf8
402 #define RSL_IE_ERIC_EGPRS_REQ_REF 0xf9
403 #define RSL_IE_ERIC_VGCS_REL 0xfa
404 #define RSL_IE_ERIC_REP_PER_NCH 0xfb
405 #define RSL_IE_ERIC_NY2 0xfc
406 #define RSL_IE_ERIC_T3115 0xfd
407 #define RSL_IE_ERIC_ACTIVATE_FLAG 0xfe
408 #define RSL_IE_ERIC_FULL_NCH_INFO 0xff
409 
410 /* IPAC MEAS_PREPROC AVERAGING METHOD */
411 enum {
415  /* EWMA is an Osmocom specific extension */
417 };
418 
419 /* IPAC MEAS_PREPROC AVERAGING PARAMID */
420 enum {
424 };
425 
426 /* IPAC MEAS_PREPROC HO CAUSES */
427 enum {
446 };
447 
448 /* Chapter 9.3.1 */
449 #define RSL_CHAN_NR_MASK 0xf8
450 #define RSL_CHAN_NR_1 0x08 /*< bit to add for 2nd,... lchan */
451 #define RSL_CHAN_Bm_ACCHs 0x08
452 #define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
453 #define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
454 #define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
455 #define RSL_CHAN_BCCH 0x80
456 #define RSL_CHAN_RACH 0x88
457 #define RSL_CHAN_PCH_AGCH 0x90
458 #define RSL_CHAN_OSMO_PDCH 0xc0 /*< non-standard, for dyn TS */
459 #define RSL_CHAN_OSMO_CBCH4 0xc8 /*< non-standard, for CBCH/SDCCH4 */
460 #define RSL_CHAN_OSMO_CBCH8 0xd0 /*< non-standard, for CBCH/SDCCH8 */
461 
462 /* non-standard, Osmocom specific Bm/Lm equivalents for VAMOS */
463 #define RSL_CHAN_OSMO_VAMOS_Bm_ACCHs 0xe8 /* VAMOS TCH/F */
464 #define RSL_CHAN_OSMO_VAMOS_Lm_ACCHs 0xf0 /* VAMOS TCH/H */
465 #define RSL_CHAN_OSMO_VAMOS_MASK 0xe0 /* VAMOS TCH/{F,H} */
466 
467 /* Chapter 9.3.3 */
468 #define RSL_ACT_TYPE_INITIAL 0x00
469 #define RSL_ACT_TYPE_REACT 0x80
470 #define RSL_ACT_INTRA_IMM_ASS 0x00
471 #define RSL_ACT_INTRA_NORM_ASS 0x01
472 #define RSL_ACT_INTER_ASYNC 0x02
473 #define RSL_ACT_INTER_SYNC 0x03
474 #define RSL_ACT_SECOND_ADD 0x04
475 #define RSL_ACT_SECOND_MULTI 0x05
476 #define RSL_ACT_OSMO_PDCH 0x0f /*< non-standard, for dyn TS */
477 
480  uint8_t dtx_dtu;
481  uint8_t spd_ind;
482  uint8_t chan_rt;
483  uint8_t chan_rate;
484 } __attribute__ ((packed));
485 #define RSL_CMOD_DTXu 0x01 /* uplink */
486 #define RSL_CMOD_DTXd 0x02 /* downlink */
491 };
492 #define RSL_CMOD_CRT_SDCCH 0x01
493 #define RSL_CMOD_CRT_TCH_Bm 0x08 /* full-rate */
494 #define RSL_CMOD_CRT_TCH_Lm 0x09 /* half-rate */
495 #define RSL_CMOD_CRT_TCH_BI_Bm 0x0a /* full-rate: bi-directional (multislot) */
496 #define RSL_CMOD_CRT_TCH_UNI_Bm 0x1a /* full-rate: uni-directional (multislot) */
497 #define RSL_CMOD_CRT_TCH_GROUP_Bm 0x18 /* full-rate: group call channel */
498 #define RSL_CMOD_CRT_TCH_GROUP_Lm 0x19 /* half-rate: group call channel */
499 #define RSL_CMOD_CRT_TCH_BCAST_Bm 0x28 /* full-rate: broadcast call channel */
500 #define RSL_CMOD_CRT_TCH_BCAST_Lm 0x29 /* half-rate: broadcast call channel */
501 #define RSL_CMOD_CRT_OSMO_TCH_VAMOS_Bm 0x88 /* full-rate in VAMOS mode */
502 #define RSL_CMOD_CRT_OSMO_TCH_VAMOS_Lm 0x89 /* half-rate in VAMOS mode */
503 /* Speech */
504 #define RSL_CMOD_SP_GSM1 0x01
505 #define RSL_CMOD_SP_GSM2 0x11
506 #define RSL_CMOD_SP_GSM3 0x21
507 #define RSL_CMOD_SP_GSM4 0x31
508 #define RSL_CMOD_SP_GSM5 0x09
509 #define RSL_CMOD_SP_GSM6 0x0d
510 /* non-transparent data (asymmetric) */
511 #define RSL_CMOD_CSD_NTA_43k5_14k5 0x61 /* asymmetric 43.5 kbit/s (DL) + 14.5 kbit/s (UL) */
512 #define RSL_CMOD_CSD_NTA_29k0_14k5 0x62 /* asymmetric 29.0 kbit/s (DL) + 14.5 kbit/s (UL) */
513 #define RSL_CMOD_CSD_NTA_43k5_29k0 0x63 /* asymmetric 43.5 kbit/s (DL) + 29.0 kbit/s (UL) */
514 #define RSL_CMOD_CSD_NTA_14k5_43k5 0x69 /* asymmetric 14.5 kbit/s (DL) + 43.5 kbit/s (UL) */
515 #define RSL_CMOD_CSD_NTA_14k5_29k0 0x6a /* asymmetric 14.5 kbit/s (DL) + 29.0 kbit/s (UL) */
516 #define RSL_CMOD_CSD_NTA_29k0_43k5 0x6b /* asymmetric 29.0 kbit/s (DL) + 43.5 kbit/s (UL) */
517 /* non-transparent data */
518 #define RSL_CMOD_CSD_NT_43k5 0x74
519 #define RSL_CMOD_CSD_NT_28k8 0x71
520 #define RSL_CMOD_CSD_NT_14k5 0x58
521 #define RSL_CMOD_CSD_NT_12k0 0x50
522 #define RSL_CMOD_CSD_NT_6k0 0x51
523 /* legacy #defines with wrong name */
524 #define RSL_CMOD_SP_NT_14k5 RSL_CMOD_CSD_NT_14k5
525 #define RSL_CMOD_SP_NT_12k0 RSL_CMOD_CSD_NT_12k0
526 #define RSL_CMOD_SP_NT_6k0 RSL_CMOD_CSD_NT_6k0
527 /* transparent data */
528 #define RSL_CMOD_CSD_T_32000 0x38
529 #define RSL_CMOD_CSD_T_29000 0x39
530 #define RSL_CMOD_CSD_T_14400 0x18
531 #define RSL_CMOD_CSD_T_9600 0x10
532 #define RSL_CMOD_CSD_T_4800 0x11
533 #define RSL_CMOD_CSD_T_2400 0x12
534 #define RSL_CMOD_CSD_T_1200 0x13
535 #define RSL_CMOD_CSD_T_600 0x14
536 #define RSL_CMOD_CSD_T_1200_75 0x15
537 
540  /* GSM 04.08 10.5.2.5 */
541  struct {
542  uint8_t iei;
543  uint8_t chan_nr; /* enc_chan_nr */
544  uint8_t oct3;
545  uint8_t oct4;
546  } chan_desc;
547 #if 0 /* spec says we need this but Abissim doesn't use it */
548  struct {
549  uint8_t tag;
550  uint8_t len;
551  } mobile_alloc;
552 #endif
553 } __attribute__ ((packed));
554 
555 /* Chapter 9.3.22 */
556 #define RLL_CAUSE_T200_EXPIRED 0x01
557 #define RLL_CAUSE_REEST_REQ 0x02
558 #define RLL_CAUSE_UNSOL_UA_RESP 0x03
559 #define RLL_CAUSE_UNSOL_DM_RESP 0x04
560 #define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
561 #define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
562 #define RLL_CAUSE_SEQ_ERR 0x07
563 #define RLL_CAUSE_UFRM_INC_PARAM 0x08
564 #define RLL_CAUSE_SFRM_INC_PARAM 0x09
565 #define RLL_CAUSE_IFRM_INC_MBITS 0x0a
566 #define RLL_CAUSE_IFRM_INC_LEN 0x0b
567 #define RLL_CAUSE_FRM_UNIMPL 0x0c
568 #define RLL_CAUSE_SABM_MF 0x0d
569 #define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
570 
571 /* Chapter 9.3.26 */
572 #define RSL_ERRCLS_NORMAL 0x00
573 #define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
574 #define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
575 #define RSL_ERRCLS_SERVICE_UNIMPL 0x40
576 #define RSL_ERRCLS_INVAL_MSG 0x50
577 #define RSL_ERRCLS_PROTO_ERROR 0x60
578 #define RSL_ERRCLS_INTERWORKING 0x70
579 
580 /* normal event */
581 #define RSL_ERR_RADIO_IF_FAIL 0x00
582 #define RSL_ERR_RADIO_LINK_FAIL 0x01
583 #define RSL_ERR_HANDOVER_ACC_FAIL 0x02
584 #define RSL_ERR_TALKER_ACC_FAIL 0x03
585 #define RSL_ERR_OM_INTERVENTION 0x07
586 #define RSL_ERR_NORMAL_UNSPEC 0x0f
587 #define RSL_ERR_T_MSRFPCI_EXP 0x18
588 /* resource unavailable */
589 #define RSL_ERR_EQUIPMENT_FAIL 0x20
590 #define RSL_ERR_RR_UNAVAIL 0x21
591 #define RSL_ERR_TERR_CH_FAIL 0x22
592 #define RSL_ERR_CCCH_OVERLOAD 0x23
593 #define RSL_ERR_ACCH_OVERLOAD 0x24
594 #define RSL_ERR_PROCESSOR_OVERLOAD 0x25
595 #define RSL_ERR_BTS_NOT_EQUIPPED 0x27
596 #define RSL_ERR_REMOTE_TRANSC_FAIL 0x28
597 #define RSL_ERR_NOTIFICATION_OVERFL 0x29
598 #define RSL_ERR_RES_UNAVAIL 0x2f
599 /* service or option not available */
600 #define RSL_ERR_TRANSC_UNAVAIL 0x30
601 #define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
602 /* service or option not implemented */
603 #define RSL_ERR_ENCR_UNIMPL 0x40
604 #define RSL_ERR_SERV_OPT_UNIMPL 0x4f
605 /* invalid message */
606 #define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
607 #define RSL_ERR_INVALID_MESSAGE 0x5f
608 /* protocol error */
609 #define RSL_ERR_MSG_DISCR 0x60
610 #define RSL_ERR_MSG_TYPE 0x61
611 #define RSL_ERR_MSG_SEQ 0x62
612 #define RSL_ERR_IE_ERROR 0x63
613 #define RSL_ERR_MAND_IE_ERROR 0x64
614 #define RSL_ERR_OPT_IE_ERROR 0x65
615 #define RSL_ERR_IE_NONEXIST 0x66
616 #define RSL_ERR_IE_LENGTH 0x67
617 #define RSL_ERR_IE_CONTENT 0x68
618 #define RSL_ERR_PROTO 0x6f
619 /* interworking */
620 #define RSL_ERR_INTERWORKING 0x7f
621 
622 /* Chapter 9.3.30 */
623 #define RSL_SYSTEM_INFO_8 0x00
624 #define RSL_SYSTEM_INFO_1 0x01
625 #define RSL_SYSTEM_INFO_2 0x02
626 #define RSL_SYSTEM_INFO_3 0x03
627 #define RSL_SYSTEM_INFO_4 0x04
628 #define RSL_SYSTEM_INFO_5 0x05
629 #define RSL_SYSTEM_INFO_6 0x06
630 #define RSL_SYSTEM_INFO_7 0x07
631 #define RSL_SYSTEM_INFO_16 0x08
632 #define RSL_SYSTEM_INFO_17 0x09
633 #define RSL_SYSTEM_INFO_2bis 0x0a
634 #define RSL_SYSTEM_INFO_2ter 0x0b
635 #define RSL_SYSTEM_INFO_5bis 0x0d
636 #define RSL_SYSTEM_INFO_5ter 0x0e
637 #define RSL_SYSTEM_INFO_10 0x0f
638 #define RSL_EXT_MEAS_ORDER 0x47
639 #define RSL_MEAS_INFO 0x48
640 #define RSL_SYSTEM_INFO_13 0x28
641 #define RSL_ERIC_SYSTEM_INFO_13 0x0C
642 #define RSL_SYSTEM_INFO_2quater 0x29
643 #define RSL_SYSTEM_INFO_9 0x2a
644 #define RSL_SYSTEM_INFO_18 0x2b
645 #define RSL_SYSTEM_INFO_19 0x2c
646 #define RSL_SYSTEM_INFO_20 0x2d
647 
648 /* Chapter 9.3.40 */
649 #define RSL_CHANNEED_ANY 0x00
650 #define RSL_CHANNEED_SDCCH 0x01
651 #define RSL_CHANNEED_TCH_F 0x02
652 #define RSL_CHANNEED_TCH_ForH 0x03
653 
656 #if OSMO_IS_LITTLE_ENDIAN
657  uint8_t last_block:2;
658  uint8_t spare:1;
659  uint8_t def_bcast:1;
660  uint8_t command:4;
661 #elif OSMO_IS_BIG_ENDIAN
662 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
663  uint8_t command:4, def_bcast:1, spare:1, last_block:2;
664 #endif
665 } __attribute__ ((packed));
666 /* ->command */
667 #define RSL_CB_CMD_TYPE_NORMAL 0x00
668 #define RSL_CB_CMD_TYPE_SCHEDULE 0x08
669 #define RSL_CB_CMD_TYPE_DEFAULT 0x0e
670 #define RSL_CB_CMD_TYPE_NULL 0x0f
671 /* ->def_bcast */
672 #define RSL_CB_CMD_DEFBCAST_NORMAL 0
673 #define RSL_CB_CMD_DEFBCAST_NULL 1
674 /* ->last_block */
675 #define RSL_CB_CMD_LASTBLOCK_4 0
676 #define RSL_CB_CMD_LASTBLOCK_1 1
677 #define RSL_CB_CMD_LASTBLOCK_2 2
678 #define RSL_CB_CMD_LASTBLOCK_3 3
679 
680 /* Chapter 3.3.2.3 Brocast control channel */
681 /* CCCH-CONF, NC is not combined */
682 #define RSL_BCCH_CCCH_CONF_1_NC 0x00
683 #define RSL_BCCH_CCCH_CONF_1_C 0x01
684 #define RSL_BCCH_CCCH_CONF_2_NC 0x02
685 #define RSL_BCCH_CCCH_CONF_3_NC 0x04
686 #define RSL_BCCH_CCCH_CONF_4_NC 0x06
687 
688 /* BS-PA-MFRMS */
689 #define RSL_BS_PA_MFRMS_2 0x00
690 #define RSL_BS_PA_MFRMS_3 0x01
691 #define RSL_BS_PA_MFRMS_4 0x02
692 #define RSL_BS_PA_MFRMS_5 0x03
693 #define RSL_BS_PA_MFRMS_6 0x04
694 #define RSL_BS_PA_MFRMS_7 0x05
695 #define RSL_BS_PA_MFRMS_8 0x06
696 #define RSL_BS_PA_MFRMS_9 0x07
697 
698 /* RSL_IE_IPAC_RTP_PAYLOAD[2] */
705 };
706 
707 /* RSL_IE_IPAC_SPEECH_MODE, lower four bits */
709  RSL_IPAC_SPEECH_GSM_FR = 0, /* GSM FR (Type 1, FS) */
710  RSL_IPAC_SPEECH_GSM_EFR = 1, /* GSM EFR (Type 2, FS) */
711  RSL_IPAC_SPEECH_GSM_AMR_FR = 2, /* GSM AMR/FR (Type 3, FS) */
712  RSL_IPAC_SPEECH_GSM_HR = 3, /* GSM HR (Type 1, HS) */
713  RSL_IPAC_SPEECH_GSM_AMR_HR = 5, /* GSM AMR/hr (Type 3, HS) */
714  RSL_IPAC_SPEECH_AS_RTP = 0xf, /* As specified by RTP Payload IE */
715 };
716 /* RSL_IE_IPAC_SPEECH_MODE, upper four bits */
718  RSL_IPAC_SPEECH_M_RXTX = 0, /* Send and Receive */
719  RSL_IPAC_SPEECH_M_RX = 1, /* Receive only */
720  RSL_IPAC_SPEECH_M_TX = 2, /* Send only */
721 };
722 
723 /* RSL_IE_IPAC_RTP_CSD_FMT, lower four bits */
729 };
730 /* RSL_IE_IPAC_RTP_CSD_FMT, upper four bits */
736 };
737 
738 /* Siemens vendor-specific RSL extensions */
739 struct rsl_mrpci {
740  uint8_t power_class:3,
741  vgcs_capable:1,
742  vbs_capable:1,
743  gsm_phase:2;
744 } __attribute__ ((packed));
745 
752 };
755  /* reserved */
758 };
759 
760 /* 9.3.20 Release Mode */
764 };
765 
789  /* additional IPAC measurement pre-processing related IEI */
795 
796 };
797 
799 #if OSMO_IS_LITTLE_ENDIAN
800  uint8_t h_reqave:5,
801  param_id:2,
802  reserved:1;
803  uint8_t h_reqt:5,
804  ave_method:3;
805  uint8_t params[0];
806 #elif OSMO_IS_BIG_ENDIAN
807 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
808  uint8_t reserved:1, param_id:2, h_reqave:5;
809  uint8_t ave_method:3, h_reqt:5;
810  uint8_t params[0];
811 #endif
812 }__attribute__ ((packed));
813 
816 #if OSMO_IS_LITTLE_ENDIAN
817  uint8_t l_rxlev:6, reserved_l_rxlev:2;
818  uint8_t u_rxlev:6, reserved_u_rxlev:2;
819  uint8_t u_rxqual:3, reserved_u_rxqual:1,
820  l_rxqual:3, reserved_l_rxqual:1;
821 #elif OSMO_IS_BIG_ENDIAN
822  uint8_t reserved_l_rxlev:2, l_rxlev:6;
823  uint8_t reserved_u_rxlev:2, u_rxlev:6;
824  uint8_t reserved_l_rxqual:1, l_rxqual:3,
825  reserved_u_rxqual:1, u_rxqual:3;
826 #endif
827 }__attribute__ ((packed));
828 
831 #if OSMO_IS_LITTLE_ENDIAN
832  uint8_t l_rxlev_ul_h:6,
833  reserved_l_rxlev_ul:2;
834  uint8_t l_rxlev_dl_h:6,
835  reserved_l_rxlev_dl:2;
836  uint8_t rxlev_ul_ih:6,
837  reserved_rxlev_ul:2;
838  uint8_t rxlev_dl_ih:6,
839  reserved_rxlev_dl:2;
840  uint8_t l_rxqual_ul_h:3,
841  reserved_rxlqual_ul:1,
842  l_rxqual_dl_h:3,
843  reserved_rxqual_dl:1;
844  uint8_t ms_range_max:6,
845  reserved_ms_range:2;
846 #elif OSMO_IS_BIG_ENDIAN
847 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
848  uint8_t reserved_l_rxlev_ul:2, l_rxlev_ul_h:6;
849  uint8_t reserved_l_rxlev_dl:2, l_rxlev_dl_h:6;
850  uint8_t reserved_rxlev_ul:2, rxlev_ul_ih:6;
851  uint8_t reserved_rxlev_dl:2, rxlev_dl_ih:6;
852  uint8_t reserved_rxqual_dl:1, l_rxqual_dl_h:3, reserved_rxlqual_ul:1, l_rxqual_ul_h:3;
853  uint8_t reserved_ms_range:2, ms_range_max:6;
854 #endif
855 }__attribute__ ((packed));
856 
859 #if OSMO_IS_LITTLE_ENDIAN
860  uint8_t p1:5, reserved_p1:3;
861  uint8_t n1:5, reserved_n1:3;
862  uint8_t p2:5, reserved_p2:3;
863  uint8_t n2:5, reserved_n2:3;
864  uint8_t p3:5, reserved_p3:3;
865  uint8_t n3:5, reserved_n3:3;
866  uint8_t p4:5, reserved_p4:3;
867  uint8_t n4:5, reserved_n4:3;
868  uint8_t pc_interval:5, reserved_pc:3;
869  uint8_t red_step_size:4, inc_step_size:4;
870 #elif OSMO_IS_BIG_ENDIAN
871  uint8_t reserved_p1:3, p1:5;
872  uint8_t reserved_n1:3, n1:5;
873  uint8_t reserved_p2:3, p2:5;
874  uint8_t reserved_n2:3, n2:5;
875  uint8_t reserved_p3:3, p3:5;
876  uint8_t reserved_n3:3, n3:5;
877  uint8_t reserved_p4:3, p4:5;
878  uint8_t reserved_n4:3, n4:5;
879  uint8_t reserved_pc:3, pc_interval:5;
880  uint8_t inc_step_size:4, red_step_size:4;
881 #endif
882 }__attribute__ ((packed));
883 
886 #if OSMO_IS_LITTLE_ENDIAN
887  uint8_t p5:5,
888  reserved_p5:3;
889  uint8_t n5:5,
890  reserved_n5:3;
891  uint8_t p6:5,
892  reserved_p6:3;
893  uint8_t n6:5,
894  reserved_n6:3;
895  uint8_t p7:5,
896  reserved_p7:3;
897  uint8_t n7:5,
898  reserved_n7:3;
899  uint8_t p8:5,
900  reserved_p8:3;
901  uint8_t n8:5,
902  reserved_n8:3;
903  uint8_t ho_interval:5,
904  reserved_ho:3;
905  uint8_t reserved;
906 
907 #elif OSMO_IS_BIG_ENDIAN
908 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
909  uint8_t reserved_p5:3, p5:5;
910  uint8_t reserved_n5:3, n5:5;
911  uint8_t reserved_p6:3, p6:5;
912  uint8_t reserved_n6:3, n6:5;
913  uint8_t reserved_p7:3, p7:5;
914  uint8_t reserved_n7:3, n7:5;
915  uint8_t reserved_p8:3, p8:5;
916  uint8_t reserved_n8:3, n8:5;
917  uint8_t reserved_ho:3, ho_interval:5;
918  uint8_t reserved;
919 #endif
920 }__attribute__ ((packed));
921 
923 #if OSMO_IS_LITTLE_ENDIAN
924  uint8_t bsic:6,
925  reserved0:2;
926  uint8_t bcch_freq:5,
927  ba_used:1,
928  s:1,
929  reserved1:1;
930 #elif OSMO_IS_BIG_ENDIAN
931 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
932  uint8_t reserved0:2, bsic:6;
933  uint8_t reserved1:1, s:1, ba_used:1, bcch_freq:5;
934 #endif
935 }__attribute__ ((packed));
936 
938 #if OSMO_IS_LITTLE_ENDIAN
939  uint8_t rxlev_min_def:6,
940  reserved_rxlev_min_def:2;
941  uint8_t ho_margin_def:5,
942  reserved_ho_margin_def:3;
943  uint8_t ms_txpwr_max_def:5,
944  reserved_ms_txpwr_max_def:3;
945 #elif OSMO_IS_BIG_ENDIAN
946 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
947  uint8_t reserved_rxlev_min_def:2, rxlev_min_def:6;
948  uint8_t reserved_ho_margin_def:3, ho_margin_def:5;
949  uint8_t reserved_ms_txpwr_max_def:3, ms_txpwr_max_def:5;
950 #endif
951 }__attribute__ ((packed));
952 
954 #if OSMO_IS_LITTLE_ENDIAN
955  uint8_t sdcch_ho_gsm:1,
956  sdcch_ho_umts:1,
957  reserved:6;
958 #elif OSMO_IS_BIG_ENDIAN
959 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
960  uint8_t reserved:6, sdcch_ho_umts:1, sdcch_ho_gsm:1;
961 #endif
962 }__attribute__ ((packed));
963 
965  uint8_t meas_rep_mode;
966  uint32_t meas_mode_flags;
967  struct ipac_preproc_ave_cfg ms_ave_cfg[3];
968  struct ipac_preproc_ave_cfg ave_cfg;
969  struct ipac_preproc_ho_thresh ho_thresh;
970  struct ipac_preproc_ho_comp ho_comp;
971  struct ipac_preproc_ncell_dflts ncell_dflts;
972  struct ipac_preproc_ho_ctl_param ho_ctl_param;
973 };
974 
975 struct rsl_l1_info {
976 #if OSMO_IS_BIG_ENDIAN
977  uint8_t ms_pwr:5,
978  fpc_epc:1,
979  srr_sro:1,
980  reserved:1;
981  uint8_t ta;
982 #elif OSMO_IS_LITTLE_ENDIAN
983  uint8_t reserved:1,
984  srr_sro:1,
985  fpc_epc:1,
986  ms_pwr:5;
987  uint8_t ta;
988 #endif
989 } __attribute__ ((packed));
990 
Definition: gsm_08_58.h:174
Definition: gsm_08_58.h:350
Definition: gsm_08_58.h:259
Definition: gsm_08_58.h:250
Definition: gsm_08_58.h:208
Definition: gsm_08_58.h:371
Definition: gsm_08_58.h:181
uint8_t vbs_capable
Definition: gsm_08_58.h:529
Definition: gsm_08_58.h:172
Definition: gsm_08_58.h:222
uint8_t chan_rate
Definition: gsm_08_58.h:483
Definition: gsm_08_58.h:262
Definition: gsm_08_58.h:304
uint8_t oct3
Definition: gsm_08_58.h:544
Definition: gsm_08_58.h:193
Definition: gsm_08_58.h:437
Definition: gsm_08_58.h:176
Definition: gsm_08_58.h:278
Definition: gsm_08_58.h:324
Definition: gsm_08_58.h:329
Definition: gsm_08_58.h:750
Definition: gsm_08_58.h:212
Definition: gsm_08_58.h:269
Definition: gsm_08_58.h:377
Definition: gsm_08_58.h:217
RSL Channel Mode IF (Chapter 9.3.6)
Definition: gsm_08_58.h:479
Definition: gsm_08_58.h:202
Definition: gsm_08_58.h:964
Definition: gsm_08_58.h:713
Definition: gsm_08_58.h:234
uint8_t chan_rt
Definition: gsm_08_58.h:482
Definition: gsm_08_58.h:349
Definition: gsm_08_58.h:300
Definition: gsm_08_58.h:334
Definition: gsm_08_58.h:735
Definition: gsm_08_58.h:790
Definition: gsm_08_58.h:195
Definition: gsm_08_58.h:220
Definition: gsm_08_58.h:384
Definition: gsm_08_58.h:199
Definition: gsm_08_58.h:726
rsl_ipac_rtp_csd_format_d
Definition: gsm_08_58.h:724
Definition: gsm_08_58.h:225
RSL Channel Identification IE (Chapter 9.3.5)
Definition: gsm_08_58.h:539
Definition: gsm_08_58.h:191
Definition: gsm_08_58.h:203
Definition: gsm_08_58.h:317
Definition: gsm_08_58.h:330
Definition: gsm_08_58.h:275
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:104
Definition: gsm_08_58.h:356
Definition: gsm_08_58.h:184
Definition: gsm_08_58.h:294
Definition: gsm_08_58.h:194
Definition: gsm_08_58.h:177
Definition: gsm_08_58.h:323
rsl_rel_mode
Definition: gsm_08_58.h:761
Definition: gsm_08_58.h:313
Definition: gsm_08_58.h:163
Definition: gsm_08_58.h:303
Definition: gsm_08_58.h:282
Definition: gsm_08_58.h:355
Definition: gsm_08_58.h:444
Definition: gsm_08_58.h:201
Definition: gsm_08_58.h:774
Definition: gsm_08_58.h:792
Definition: gsm_08_58.h:383
rsl_mrpci_pwrclass
Definition: gsm_08_58.h:746
rsl_mrpci_phase
Definition: gsm_08_58.h:753
Definition: gsm_08_58.h:227
Definition: gsm_08_58.h:337
Definition: gsm_08_58.h:270
Definition: gsm_08_58.h:315
Definition: gsm_08_58.h:435
rsl_ipac_speech_mode_s
Definition: gsm_08_58.h:708
Definition: gsm_08_58.h:258
Definition: gsm_08_58.h:413
Definition: gsm_08_58.h:318
Definition: gsm_08_58.h:307
Definition: gsm_08_58.h:793
Definition: gsm_08_58.h:209
Definition: gsm_08_58.h:488
Definition: gsm_08_58.h:183
Definition: gsm_08_58.h:167
Definition: gsm_08_58.h:319
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:266
uint8_t msg_discr
message discriminator (ABIS_RSL_MDISC_*)
Definition: gsm_08_58.h:80
Definition: gsm_08_58.h:235
Definition: gsm_08_58.h:305
Definition: gsm_08_58.h:367
uint8_t spd_ind
Definition: gsm_08_58.h:481
Definition: gsm_08_58.h:376
Definition: gsm_08_58.h:211
Definition: gsm_08_58.h:228
Definition: gsm_08_58.h:412
Definition: gsm_08_58.h:205
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
Definition: gsm_08_58.h:711
Definition: gsm_08_58.h:311
Definition: gsm_08_58.h:223
Definition: gsm_08_58.h:791
Definition: gsm_08_58.h:200
Definition: gsm_08_58.h:339
Definition: gsm_08_58.h:788
Definition: gsm_08_58.h:296
Definition: gsm_08_58.h:308
Definition: gsm_08_58.h:351
uint8_t chan_nr
Definition: gsm_08_58.h:106
Definition: gsm_08_58.h:236
Definition: gsm_08_58.h:727
Definition: gsm_08_58.h:756
Definition: gsm_08_58.h:182
Definition: gsm_08_58.h:798
Definition: gsm_08_58.h:241
Definition: gsm_08_58.h:725
abis_rsl_msgtype
Definition: gsm_08_58.h:161
Definition: gsm_08_58.h:226
Definition: gsm_08_58.h:438
Definition: gsm_08_58.h:293
Definition: gsm_08_58.h:322
Definition: gsm_08_58.h:754
Definition: gsm_08_58.h:342
Definition: gsm_08_58.h:378
Definition: gsm_08_58.h:164
Definition: gsm_08_58.h:704
uint8_t vgcs_capable
Definition: gsm_08_58.h:740
Definition: gsm_08_58.h:299
Definition: gsm_08_58.h:281
Definition: gsm_08_58.h:175
Definition: gsm_08_58.h:321
Definition: gsm_08_58.h:782
Definition: gsm_08_58.h:718
Definition: gsm_08_58.h:306
Definition: gsm_08_58.h:224
Definition: gsm_08_58.h:443
Definition: gsm_08_58.h:783
Definition: gsm_08_58.h:710
Definition: gsm_08_58.h:975
Definition: gsm_08_58.h:229
Definition: gsm_08_58.h:757
Definition: gsm_08_58.h:780
Definition: gsm_08_58.h:206
Definition: gsm_08_58.h:441
struct @91 chan_desc
Definition: gsm_08_58.h:333
Definition: gsm_08_58.h:173
uint8_t chan_nr
Definition: gsm_08_58.h:43
Definition: gsm_08_58.h:298
Definition: gsm_08_58.h:771
Definition: gsm_08_58.h:190
rsl_ipac_rtp_payload
Definition: gsm_08_58.h:699
Definition: gsm_08_58.h:165
Definition: gsm_08_58.h:776
Definition: gsm_08_58.h:354
uint8_t msg_type
message type (abis_rsl_msgtype)
Definition: gsm_08_58.h:81
Definition: gsm_08_58.h:253
uint8_t data[0]
actual payload data
Definition: gsm_08_58.h:531
Definition: gsm_08_58.h:331
Definition: gsm_08_58.h:185
Definition: gsm_08_58.h:218
Definition: gsm_08_58.h:302
Definition: gsm_08_58.h:314
Definition: gsm_08_58.h:785
Definition: gsm_08_58.h:242
Definition: gsm_08_58.h:353
Definition: gsm_08_58.h:35
Definition: gsm_08_58.h:786
Definition: gsm_08_58.h:428
Definition: gsm_08_58.h:364
Definition: gsm_08_58.h:374
Definition: gsm_08_58.h:340
Definition: gsm_08_58.h:192
Definition: gsm_08_58.h:709
uint8_t oct4
Definition: gsm_08_58.h:545
Definition: gsm_08_58.h:433
Definition: gsm_08_58.h:243
Definition: gsm_08_58.h:301
Definition: gsm_08_58.h:166
Definition: gsm_08_58.h:86
Definition: gsm_08_58.h:416
uint8_t chan_nr
Definition: gsm_08_58.h:543
Definition: gsm_08_58.h:372
Definition: gsm_08_58.h:359
Definition: gsm_08_58.h:922
Definition: gsm_08_58.h:341
Definition: gsm_08_58.h:249
Definition: gsm_08_58.h:332
Definition: gsm_08_58.h:344
Definition: gsm_08_58.h:379
Definition: gsm_08_58.h:245
Definition: gsm_08_58.h:373
Definition: gsm_08_58.h:422
Definition: gsm_08_58.h:238
Definition: gsm_08_58.h:246
Definition: gsm_08_58.h:232
Definition: gsm_08_58.h:937
Definition: gsm_08_58.h:442
Definition: gsm_08_58.h:268
Definition: gsm_08_58.h:348
Definition: gsm_08_58.h:216
Definition: gsm_08_58.h:204
Definition: gsm_08_58.h:358
Definition: gsm_08_58.h:430
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:360
Definition: gsm_08_58.h:210
Definition: gsm_08_58.h:240
MS/BS Power Control Thresholds.
Definition: gsm_08_58.h:815
Definition: gsm_08_58.h:257
Definition: gsm_08_58.h:215
Definition: gsm_08_58.h:309
Definition: gsm_08_58.h:702
Definition: gsm_08_58.h:297
Definition: gsm_08_58.h:423
Definition: gsm_08_58.h:328
uint8_t chan_nr
Definition: gsm_08_58.h:117
Definition: gsm_08_58.h:295
Definition: gsm_08_58.h:255
uint8_t len
Definition: gsm_04_11.h:466
Definition: gsm_08_58.h:267
Definition: gsm_08_58.h:271
Definition: gsm_08_58.h:787
Definition: gsm_08_58.h:363
Definition: gsm_08_58.h:434
Definition: gsm_08_58.h:440
Definition: gsm_08_58.h:749
Definition: gsm_08_58.h:768
Definition: gsm_08_58.h:186
Definition: gsm_08_58.h:189
Definition: gsm_08_58.h:221
Definition: gsm_08_58.h:720
Definition: gsm_08_58.h:214
Definition: gsm_08_58.h:794
Definition: gsm_08_58.h:432
Definition: gsm_08_58.h:239
Definition: gsm_08_58.h:772
Definition: gsm_08_58.h:421
Definition: gsm_08_58.h:292
Definition: gsm_08_58.h:381
Definition: gsm_08_58.h:171
Definition: gsm_08_58.h:276
Definition: gsm_08_58.h:781
Definition: gsm_08_58.h:124
Definition: gsm_08_58.h:347
Definition: gsm_08_58.h:701
Definition: gsm_08_58.h:252
Definition: gsm_08_58.h:247
Definition: gsm_08_58.h:382
Definition: gsm_08_58.h:490
Definition: gsm_08_58.h:733
Definition: gsm_08_58.h:113
Definition: gsm_08_58.h:345
Definition: gsm_08_58.h:335
Definition: gsm_08_58.h:770
RSL Cell Broadcast Command (Chapter 9.3.45)
Definition: gsm_08_58.h:655
rsl_ipac_rtp_csd_format_ir
Definition: gsm_08_58.h:731
Definition: gsm_08_58.h:763
Definition: gsm_08_58.h:272
Definition: gsm_08_58.h:102
Definition: gsm_08_58.h:953
Definition: gsm_08_58.h:187
Definition: gsm_08_58.h:380
rsl_cmod_spd
Definition: gsm_08_58.h:487
Definition: gsm_08_58.h:414
Definition: gsm_08_58.h:233
Definition: gsm_08_58.h:280
Definition: gsm_08_58.h:784
Definition: gsm_08_58.h:769
abis_rsl_ie
RSL Information Element Identifiers (Chapter 9.3)
Definition: gsm_08_58.h:291
Definition: gsm_08_58.h:431
PC Threshold Comparators.
Definition: gsm_08_58.h:858
Definition: gsm_08_58.h:751
Definition: gsm_08_58.h:779
Definition: gsm_08_58.h:445
uint8_t meas_rep_mode
Definition: gsm_08_58.h:965
Definition: gsm_08_58.h:773
Definition: gsm_08_58.h:762
Definition: gsm_08_58.h:248
Definition: gsm_08_58.h:346
uint8_t link_id
Definition: gsm_08_58.h:95
Definition: gsm_08_58.h:703
Definition: gsm_08_58.h:254
Definition: gsm_08_58.h:207
RSL common header.
Definition: gsm_08_58.h:79
Definition: gsm_08_58.h:170
Definition: gsm_08_58.h:277
rsl_ipac_embedded_ie
ip.access specific embedded information elements
Definition: gsm_08_58.h:767
Definition: gsm_08_58.h:168
Definition: gsm_08_58.h:338
Definition: gsm_08_58.h:739
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:286
Definition: gsm_08_58.h:310
Definition: gsm_08_58.h:251
Definition: gsm_08_58.h:316
Definition: gsm_08_58.h:237
Definition: gsm_08_58.h:287
Definition: gsm_08_58.h:747
Definition: gsm_08_58.h:748
Definition: gsm_08_58.h:213
Definition: gsm_08_58.h:274
HO Threshold Comparators.
Definition: gsm_08_58.h:885
Definition: gsm_08_58.h:734
Definition: gsm_08_58.h:375
Definition: gsm_08_58.h:778
Definition: gsm_08_58.h:244
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:775
Definition: gsm_08_58.h:719
Definition: gsm_08_58.h:357
rsl_ipac_speech_mode_m
Definition: gsm_08_58.h:717
uint32_t meas_mode_flags
Definition: gsm_08_58.h:966
Definition: gsm_08_58.h:219
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:88
uint8_t iei
Definition: gsm_08_58.h:542
Definition: gsm_08_58.h:325
Definition: gsm_08_58.h:327
Definition: gsm_08_58.h:714
uint8_t dtx_dtu
Definition: gsm_08_58.h:480
Definition: gsm_08_58.h:260
Definition: gsm_08_58.h:312
Definition: gsm_08_58.h:369
Definition: gsm_08_58.h:180
Definition: gsm_08_58.h:368
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:115
Definition: gsm_08_58.h:429
Definition: gsm_08_58.h:370
Definition: gsm_08_58.h:343
Definition: gsm_08_58.h:489
Definition: gsm_08_58.h:198
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:529
Definition: gsm_08_58.h:256
Definition: gsm_08_58.h:439
uint8_t power_class
Definition: gsm_08_58.h:529
Handover Thresholds.
Definition: gsm_08_58.h:830
Definition: gsm_08_58.h:169
Definition: gsm_08_58.h:273
Definition: gsm_08_58.h:436
Definition: gsm_08_58.h:712
Definition: gsm_08_58.h:279
Definition: gsm_08_58.h:732
Definition: gsm_08_58.h:326
Definition: gsm_08_58.h:700
Definition: gsm_08_58.h:336
Definition: gsm_08_58.h:777