libosmogsm  0.10.2
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 
34  uint8_t msg_discr;
35  uint8_t msg_type;
36  uint8_t data[0];
37 } __attribute__ ((packed));
38 
39 /* RSL RLL header (Chapter 8.3) */
42  uint8_t ie_chan;
43  uint8_t chan_nr;
44  uint8_t ie_link_id;
45  uint8_t link_id;
46  uint8_t data[0];
47 } __attribute__ ((packed));
48 
49 /* RSL Dedicated Channel header (Chapter 8.3 and 8.4) */
52  uint8_t ie_chan;
53  uint8_t chan_nr;
54  uint8_t data[0];
55 } __attribute__ ((packed));
56 
57 /* RSL Common Channel header (Chapter 8.5) */
60  uint8_t ie_chan;
61  uint8_t chan_nr;
62  uint8_t data[0];
63 } __attribute__ ((packed));
64 
65 
66 /* Chapter 9.1 */
67 /* RSL Message Discriminator: RLL */
68 #define ABIS_RSL_MDISC_RLL 0x02
69 /* RSL Message Discriminator: Dedicated Channel */
70 #define ABIS_RSL_MDISC_DED_CHAN 0x08
71 /* RSL Message Discriminator: Common Channel */
72 #define ABIS_RSL_MDISC_COM_CHAN 0x0c
73 /* RSL Message Discriminator: TRX Management */
74 #define ABIS_RSL_MDISC_TRX 0x10
75 /* RSL Message Discriminator: Location Service */
76 #define ABIS_RSL_MDISC_LOC 0x20
77 /* RSL Message Discriminator: ip.access */
78 #define ABIS_RSL_MDISC_IPACCESS 0x7e
79 #define ABIS_RSL_MDISC_TRANSP 0x01
80 
81 /* Check if given RSL message discriminator is transparent */
82 #define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
83 
84 /* RSL Message Type (Chapter 9.1) */
86  /* Radio Link Layer Management */
98  RSL_MT_SUSP_REQ, /* non-standard elements */
101  RSL_MT_RECON_REQ, /* 0x0f */
102 
103  /* Common Channel Management / TRX Management */
111  RSL_MT_CHAN_CONF, /* non-standard element */
112  /* empty */
119  RSL_MT_NOT_CMD, /* 0x1f */
120 
121  /* Dedicate Channel Management */
152  RSL_MT_TFO_MOD_REQ, /* 0x3f */
154 
155  /* ip.access specific RSL message types */
172  RSL_MT_IPAC_MEAS_PREPROC_DFT = 0x60, /*Extented Common Channel Management */
175  RSL_MT_IPAC_CRCX = 0x70, /* Bind to local BTS RTP port */
185 };
186 
205 };
206 
237  /* reserved */
243  RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
269  /* Siemens vendor-specific */
278 
279  /* ip.access */
298 };
299 
300 /* Ericsson specific IEs, clash with above partially, so they're not
301  * part of the enum */
302 #define RSL_IE_ERIC_INST_NR 0x48
303 #define RSL_IE_ERIC_PGSL_TIMERS 0x49
304 #define RSL_IE_ERIC_REPEAT_DL_FACCH 0x4a
305 #define RSL_IE_ERIC_POWER_INFO 0xf0
306 #define RSL_IE_ERIC_MOBILE_ID 0xf1
307 #define RSL_IE_ERIC_BCCH_MAPPING 0xf2
308 #define RSL_IE_ERIC_PACKET_PAG_IND 0xf3
309 #define RSL_IE_ERIC_CNTR_CTRL 0xf4
310 #define RSL_IE_ERIC_CNTR_CTRL_ACK 0xf5
311 #define RSL_IE_ERIC_CNTR_REPORT 0xf6
312 #define RSL_IE_ERIC_ICP_CONN 0xf7
313 #define RSL_IE_ERIC_EMR_SUPPORT 0xf8
314 #define RSL_IE_ERIC_EGPRS_REQ_REF 0xf9
315 #define RSL_IE_ERIC_VGCS_REL 0xfa
316 #define RSL_IE_ERIC_REP_PER_NCH 0xfb
317 #define RSL_IE_ERIC_NY2 0xfc
318 #define RSL_IE_ERIC_T3115 0xfd
319 #define RSL_IE_ERIC_ACTIVATE_FLAG 0xfe
320 #define RSL_IE_ERIC_FULL_NCH_INFO 0xff
321 
322 /* IPAC MEAS_PREPROC AVERAGING METHOD */
323 enum {
327 };
328 
329 /* IPAC MEAS_PREPROC AVERAGING PARAMID */
330 enum {
334 };
335 
336 /* IPAC MEAS_PREPROC HO CAUSES */
337 enum {
356 };
357 
358 /* Chapter 9.3.1 */
359 #define RSL_CHAN_NR_MASK 0xf8
360 #define RSL_CHAN_NR_1 0x08 /*< bit to add for 2nd,... lchan */
361 #define RSL_CHAN_Bm_ACCHs 0x08
362 #define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
363 #define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
364 #define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
365 #define RSL_CHAN_BCCH 0x80
366 #define RSL_CHAN_RACH 0x88
367 #define RSL_CHAN_PCH_AGCH 0x90
368 #define RSL_CHAN_OSMO_PDCH 0xc0 /*< non-standard, for dyn TS */
369 
370 /* Chapter 9.3.3 */
371 #define RSL_ACT_TYPE_INITIAL 0x00
372 #define RSL_ACT_TYPE_REACT 0x80
373 #define RSL_ACT_INTRA_IMM_ASS 0x00
374 #define RSL_ACT_INTRA_NORM_ASS 0x01
375 #define RSL_ACT_INTER_ASYNC 0x02
376 #define RSL_ACT_INTER_SYNC 0x03
377 #define RSL_ACT_SECOND_ADD 0x04
378 #define RSL_ACT_SECOND_MULTI 0x05
379 #define RSL_ACT_OSMO_PDCH 0x0f /*< non-standard, for dyn TS */
380 
383  uint8_t dtx_dtu;
384  uint8_t spd_ind;
385  uint8_t chan_rt;
386  uint8_t chan_rate;
387 } __attribute__ ((packed));
388 #define RSL_CMOD_DTXu 0x01 /* uplink */
389 #define RSL_CMOD_DTXd 0x02 /* downlink */
394 };
395 #define RSL_CMOD_CRT_SDCCH 0x01
396 #define RSL_CMOD_CRT_TCH_Bm 0x08 /* full-rate */
397 #define RSL_CMOD_CRT_TCH_Lm 0x09 /* half-rate */
398 /* FIXME: More CRT types */
399 /* Speech */
400 #define RSL_CMOD_SP_GSM1 0x01
401 #define RSL_CMOD_SP_GSM2 0x11
402 #define RSL_CMOD_SP_GSM3 0x21
403 /* non-transparent data */
404 #define RSL_CMOD_CSD_NT_43k5 0x74
405 #define RSL_CMOD_CSD_NT_28k8 0x71
406 #define RSL_CMOD_CSD_NT_14k5 0x58
407 #define RSL_CMOD_CSD_NT_12k0 0x50
408 #define RSL_CMOD_CSD_NT_6k0 0x51
409 /* legacy #defines with wrong name */
410 #define RSL_CMOD_SP_NT_14k5 RSL_CMOD_CSD_NT_14k5
411 #define RSL_CMOD_SP_NT_12k0 RSL_CMOD_CSD_NT_12k0
412 #define RSL_CMOD_SP_NT_6k0 RSL_CMOD_CSD_NT_6k0
413 /* transparent data */
414 #define RSL_CMOD_CSD_T_32000 0x38
415 #define RSL_CMOD_CSD_T_29000 0x39
416 #define RSL_CMOD_CSD_T_14400 0x18
417 #define RSL_CMOD_CSD_T_9600 0x10
418 #define RSL_CMOD_CSD_T_4800 0x11
419 #define RSL_CMOD_CSD_T_2400 0x12
420 #define RSL_CMOD_CSD_T_1200 0x13
421 #define RSL_CMOD_CSD_T_600 0x14
422 #define RSL_CMOD_CSD_T_1200_75 0x15
423 
426  /* GSM 04.08 10.5.2.5 */
427  struct {
428  uint8_t iei;
429  uint8_t chan_nr; /* enc_chan_nr */
430  uint8_t oct3;
431  uint8_t oct4;
432  } chan_desc;
433 #if 0 /* spec says we need this but Abissim doesn't use it */
434  struct {
435  uint8_t tag;
436  uint8_t len;
437  } mobile_alloc;
438 #endif
439 } __attribute__ ((packed));
440 
441 /* Chapter 9.3.22 */
442 #define RLL_CAUSE_T200_EXPIRED 0x01
443 #define RLL_CAUSE_REEST_REQ 0x02
444 #define RLL_CAUSE_UNSOL_UA_RESP 0x03
445 #define RLL_CAUSE_UNSOL_DM_RESP 0x04
446 #define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
447 #define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
448 #define RLL_CAUSE_SEQ_ERR 0x07
449 #define RLL_CAUSE_UFRM_INC_PARAM 0x08
450 #define RLL_CAUSE_SFRM_INC_PARAM 0x09
451 #define RLL_CAUSE_IFRM_INC_MBITS 0x0a
452 #define RLL_CAUSE_IFRM_INC_LEN 0x0b
453 #define RLL_CAUSE_FRM_UNIMPL 0x0c
454 #define RLL_CAUSE_SABM_MF 0x0d
455 #define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
456 
457 /* Chapter 9.3.26 */
458 #define RSL_ERRCLS_NORMAL 0x00
459 #define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
460 #define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
461 #define RSL_ERRCLS_SERVICE_UNIMPL 0x40
462 #define RSL_ERRCLS_INVAL_MSG 0x50
463 #define RSL_ERRCLS_PROTO_ERROR 0x60
464 #define RSL_ERRCLS_INTERWORKING 0x70
465 
466 /* normal event */
467 #define RSL_ERR_RADIO_IF_FAIL 0x00
468 #define RSL_ERR_RADIO_LINK_FAIL 0x01
469 #define RSL_ERR_HANDOVER_ACC_FAIL 0x02
470 #define RSL_ERR_TALKER_ACC_FAIL 0x03
471 #define RSL_ERR_OM_INTERVENTION 0x07
472 #define RSL_ERR_NORMAL_UNSPEC 0x0f
473 #define RSL_ERR_T_MSRFPCI_EXP 0x18
474 /* resource unavailable */
475 #define RSL_ERR_EQUIPMENT_FAIL 0x20
476 #define RSL_ERR_RR_UNAVAIL 0x21
477 #define RSL_ERR_TERR_CH_FAIL 0x22
478 #define RSL_ERR_CCCH_OVERLOAD 0x23
479 #define RSL_ERR_ACCH_OVERLOAD 0x24
480 #define RSL_ERR_PROCESSOR_OVERLOAD 0x25
481 #define RSL_ERR_RES_UNAVAIL 0x2f
482 /* service or option not available */
483 #define RSL_ERR_TRANSC_UNAVAIL 0x30
484 #define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
485 /* service or option not implemented */
486 #define RSL_ERR_ENCR_UNIMPL 0x40
487 #define RSL_ERR_SERV_OPT_UNIMPL 0x4f
488 /* invalid message */
489 #define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
490 #define RSL_ERR_INVALID_MESSAGE 0x5f
491 /* protocol error */
492 #define RSL_ERR_MSG_DISCR 0x60
493 #define RSL_ERR_MSG_TYPE 0x61
494 #define RSL_ERR_MSG_SEQ 0x62
495 #define RSL_ERR_IE_ERROR 0x63
496 #define RSL_ERR_MAND_IE_ERROR 0x64
497 #define RSL_ERR_OPT_IE_ERROR 0x65
498 #define RSL_ERR_IE_NONEXIST 0x66
499 #define RSL_ERR_IE_LENGTH 0x67
500 #define RSL_ERR_IE_CONTENT 0x68
501 #define RSL_ERR_PROTO 0x6f
502 /* interworking */
503 #define RSL_ERR_INTERWORKING 0x7f
504 
505 /* Chapter 9.3.30 */
506 #define RSL_SYSTEM_INFO_8 0x00
507 #define RSL_SYSTEM_INFO_1 0x01
508 #define RSL_SYSTEM_INFO_2 0x02
509 #define RSL_SYSTEM_INFO_3 0x03
510 #define RSL_SYSTEM_INFO_4 0x04
511 #define RSL_SYSTEM_INFO_5 0x05
512 #define RSL_SYSTEM_INFO_6 0x06
513 #define RSL_SYSTEM_INFO_7 0x07
514 #define RSL_SYSTEM_INFO_16 0x08
515 #define RSL_SYSTEM_INFO_17 0x09
516 #define RSL_SYSTEM_INFO_2bis 0x0a
517 #define RSL_SYSTEM_INFO_2ter 0x0b
518 #define RSL_SYSTEM_INFO_5bis 0x0d
519 #define RSL_SYSTEM_INFO_5ter 0x0e
520 #define RSL_SYSTEM_INFO_10 0x0f
521 #define RSL_EXT_MEAS_ORDER 0x47
522 #define RSL_MEAS_INFO 0x48
523 #define RSL_SYSTEM_INFO_13 0x28
524 #define RSL_ERIC_SYSTEM_INFO_13 0x0C
525 #define RSL_SYSTEM_INFO_2quater 0x29
526 #define RSL_SYSTEM_INFO_9 0x2a
527 #define RSL_SYSTEM_INFO_18 0x2b
528 #define RSL_SYSTEM_INFO_19 0x2c
529 #define RSL_SYSTEM_INFO_20 0x2d
530 
531 /* Chapter 9.3.40 */
532 #define RSL_CHANNEED_ANY 0x00
533 #define RSL_CHANNEED_SDCCH 0x01
534 #define RSL_CHANNEED_TCH_F 0x02
535 #define RSL_CHANNEED_TCH_ForH 0x03
536 
539  uint8_t last_block:2;
540  uint8_t spare:1;
541  uint8_t def_bcast:1;
542  uint8_t command:4;
543 } __attribute__ ((packed));
544 /* ->command */
545 #define RSL_CB_CMD_TYPE_NORMAL 0x00
546 #define RSL_CB_CMD_TYPE_SCHEDULE 0x08
547 #define RSL_CB_CMD_TYPE_DEFAULT 0x0e
548 #define RSL_CB_CMD_TYPE_NULL 0x0f
549 /* ->def_bcast */
550 #define RSL_CB_CMD_DEFBCAST_NORMAL 0
551 #define RSL_CB_CMD_DEFBCAST_NULL 1
552 /* ->last_block */
553 #define RSL_CB_CMD_LASTBLOCK_4 0
554 #define RSL_CB_CMD_LASTBLOCK_1 1
555 #define RSL_CB_CMD_LASTBLOCK_2 2
556 #define RSL_CB_CMD_LASTBLOCK_3 3
557 
558 /* Chapter 3.3.2.3 Brocast control channel */
559 /* CCCH-CONF, NC is not combined */
560 #define RSL_BCCH_CCCH_CONF_1_NC 0x00
561 #define RSL_BCCH_CCCH_CONF_1_C 0x01
562 #define RSL_BCCH_CCCH_CONF_2_NC 0x02
563 #define RSL_BCCH_CCCH_CONF_3_NC 0x04
564 #define RSL_BCCH_CCCH_CONF_4_NC 0x06
565 
566 /* BS-PA-MFRMS */
567 #define RSL_BS_PA_MFRMS_2 0x00
568 #define RSL_BS_PA_MFRMS_3 0x01
569 #define RSL_BS_PA_MFRMS_4 0x02
570 #define RSL_BS_PA_MFRMS_5 0x03
571 #define RSL_BS_PA_MFRMS_6 0x04
572 #define RSL_BS_PA_MFRMS_7 0x05
573 #define RSL_BS_PA_MFRMS_8 0x06
574 #define RSL_BS_PA_MFRMS_9 0x07
575 
576 /* RSL_IE_IPAC_RTP_PAYLOAD[2] */
583 };
584 
585 /* RSL_IE_IPAC_SPEECH_MODE, lower four bits */
587  RSL_IPAC_SPEECH_GSM_FR = 0, /* GSM FR (Type 1, FS) */
588  RSL_IPAC_SPEECH_GSM_EFR = 1, /* GSM EFR (Type 2, FS) */
589  RSL_IPAC_SPEECH_GSM_AMR_FR = 2, /* GSM AMR/FR (Type 3, FS) */
590  RSL_IPAC_SPEECH_GSM_HR = 3, /* GSM HR (Type 1, HS) */
591  RSL_IPAC_SPEECH_GSM_AMR_HR = 5, /* GSM AMR/hr (Type 3, HS) */
592  RSL_IPAC_SPEECH_AS_RTP = 0xf, /* As specified by RTP Payload IE */
593 };
594 /* RSL_IE_IPAC_SPEECH_MODE, upper four bits */
596  RSL_IPAC_SPEECH_M_RXTX = 0, /* Send and Receive */
597  RSL_IPAC_SPEECH_M_RX = 1, /* Receive only */
598  RSL_IPAC_SPEECH_M_TX = 2, /* Send only */
599 };
600 
601 /* RSL_IE_IPAC_RTP_CSD_FMT, lower four bits */
607 };
608 /* RSL_IE_IPAC_RTP_CSD_FMT, upper four bits */
614 };
615 
616 /* Siemens vendor-specific RSL extensions */
617 struct rsl_mrpci {
618  uint8_t power_class:3,
619  vgcs_capable:1,
620  vbs_capable:1,
621  gsm_phase:2;
622 } __attribute__ ((packed));
623 
630 };
633  /* reserved */
636 };
637 
638 /* 9.3.20 Release Mode */
642 };
643 
667  /* additional IPAC measurement pre-processing related IEI */
673 
674 };
675 
677  uint8_t h_reqave:5,
678  param_id:2,
679  reserved:1;
680  uint8_t h_reqt:5,
681  ave_method:3;
682 }__attribute__ ((packed));
683 
685  uint8_t l_rxlev_ul_h:6,
687  uint8_t l_rxlev_dl_h:6,
689  uint8_t rxlev_ul_ih:6,
691  uint8_t rxlev_dl_ih:6,
693  uint8_t l_rxqual_ul_h:3,
695  l_rxqual_dl_h:3,
697  uint8_t ms_range_max:6,
699 }__attribute__ ((packed));
700 
702  uint8_t p5:5,
703  reserved_p5:3;
704  uint8_t n5:5,
705  reserved_n5:3;
706  uint8_t p6:5,
707  reserved_p6:3;
708  uint8_t n6:5,
709  reserved_n6:3;
710  uint8_t p7:5,
711  reserved_p7:3;
712  uint8_t n7:5,
713  reserved_n7:3;
714  uint8_t p8:5,
715  reserved_p8:3;
716  uint8_t n8:5,
717  reserved_n8:3;
718  uint8_t ho_interval:5,
719  reserved_ho:3;
720  uint8_t reserved;
721 
722 }__attribute__ ((packed));
723 
725  uint8_t bsic:6,
726  reserved0:2;
727  uint8_t bcch_freq:5,
728  ba_used:1,
729  s:1,
730  reserved1:1;
731 }__attribute__ ((packed));
732 
734  uint8_t rxlev_min_def:6,
736  uint8_t ho_margin_def:5,
738  uint8_t ms_txpwr_max_def:5,
740 }__attribute__ ((packed));
741 
743  uint8_t sdcch_ho_gsm:1,
744  sdcch_ho_umts:1,
745  reserved:6;
746 }__attribute__ ((packed));
747 
749  uint8_t meas_rep_mode;
750  uint32_t meas_mode_flags;
751  struct ipac_preproc_ave_cfg ms_ave_cfg[3];
752  struct ipac_preproc_ave_cfg ave_cfg;
753  struct ipac_preproc_ho_thresh ho_thresh;
754  struct ipac_preproc_ho_comp ho_comp;
755  struct ipac_preproc_ncell_dflts ncell_dflts;
756  struct ipac_preproc_ho_ctl_param ho_ctl_param;
757 };
758 
Definition: gsm_08_58.h:98
Definition: gsm_08_58.h:267
Definition: gsm_08_58.h:183
Definition: gsm_08_58.h:174
Definition: gsm_08_58.h:132
Definition: gsm_08_58.h:284
Definition: gsm_08_58.h:339
Definition: gsm_08_58.h:105
Definition: gsm_08_58.h:355
uint8_t vbs_capable
Definition: gsm_08_58.h:505
uint8_t rxlev_min_def
Definition: gsm_08_58.h:734
Definition: gsm_08_58.h:96
uint8_t reserved_p6
Definition: gsm_08_58.h:706
Definition: gsm_08_58.h:146
uint8_t chan_rate
Definition: gsm_08_58.h:386
Definition: gsm_08_58.h:221
uint8_t oct3
Definition: gsm_08_58.h:430
Definition: gsm_08_58.h:117
Definition: gsm_08_58.h:100
uint8_t p6
Definition: gsm_08_58.h:509
uint8_t reserved_l_rxlev_dl
Definition: gsm_08_58.h:687
Definition: gsm_08_58.h:200
Definition: gsm_08_58.h:241
Definition: gsm_08_58.h:246
Definition: gsm_08_58.h:628
Definition: gsm_08_58.h:136
uint8_t sdcch_ho_gsm
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:191
Definition: gsm_08_58.h:290
Definition: gsm_08_58.h:141
RSL Channel Mode IF (Chapter 9.3.6)
Definition: gsm_08_58.h:382
uint8_t last_block
Definition: gsm_08_58.h:539
Definition: gsm_08_58.h:126
Definition: gsm_08_58.h:748
Definition: gsm_08_58.h:591
Definition: gsm_08_58.h:158
uint8_t chan_rt
Definition: gsm_08_58.h:385
Definition: gsm_08_58.h:266
Definition: gsm_08_58.h:217
Definition: gsm_08_58.h:251
Definition: gsm_08_58.h:613
Definition: gsm_08_58.h:668
Definition: gsm_08_58.h:119
Definition: gsm_08_58.h:144
Definition: gsm_08_58.h:297
Definition: gsm_08_58.h:123
uint8_t reserved_p5
Definition: gsm_08_58.h:702
Definition: gsm_08_58.h:604
rsl_ipac_rtp_csd_format_d
Definition: gsm_08_58.h:602
Definition: gsm_08_58.h:149
RSL Channel Identification IE (Chapter 9.3.5)
Definition: gsm_08_58.h:425
Definition: gsm_08_58.h:115
Definition: gsm_08_58.h:127
Definition: gsm_08_58.h:234
uint8_t p5
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:247
Definition: gsm_08_58.h:197
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:52
Definition: gsm_08_58.h:273
Definition: gsm_08_58.h:108
Definition: gsm_08_58.h:211
Definition: gsm_08_58.h:118
Definition: gsm_08_58.h:101
Definition: gsm_08_58.h:240
rsl_rel_mode
Definition: gsm_08_58.h:639
Definition: gsm_08_58.h:230
Definition: gsm_08_58.h:87
Definition: gsm_08_58.h:220
Definition: gsm_08_58.h:204
Definition: gsm_08_58.h:272
Definition: gsm_08_58.h:125
Definition: gsm_08_58.h:652
Definition: gsm_08_58.h:670
Definition: gsm_08_58.h:296
rsl_mrpci_pwrclass
Definition: gsm_08_58.h:624
Definition: gsm_08_58.h:333
uint8_t reserved
Definition: gsm_08_58.h:677
rsl_mrpci_phase
Definition: gsm_08_58.h:631
Definition: gsm_08_58.h:151
Definition: gsm_08_58.h:254
Definition: gsm_08_58.h:350
Definition: gsm_08_58.h:192
Definition: gsm_08_58.h:232
uint8_t reserved_n6
Definition: gsm_08_58.h:708
rsl_ipac_speech_mode_s
Definition: gsm_08_58.h:586
Definition: gsm_08_58.h:182
Definition: gsm_08_58.h:235
Definition: gsm_08_58.h:224
Definition: gsm_08_58.h:671
uint8_t ms_range_max
Definition: gsm_08_58.h:517
Definition: gsm_08_58.h:133
Definition: gsm_08_58.h:391
Definition: gsm_08_58.h:107
Definition: gsm_08_58.h:91
Definition: gsm_08_58.h:236
uint8_t chan_nr
RSL channel number (value)
Definition: gsm_08_58.h:43
abis_rsl_msgtype_siemens
Siemens vendor-specific RSL message types.
Definition: gsm_08_58.h:188
uint8_t msg_discr
message discriminator (ABIS_RSL_MDISC_*)
Definition: gsm_08_58.h:34
Definition: gsm_08_58.h:159
Definition: gsm_08_58.h:222
Definition: gsm_08_58.h:280
uint8_t spd_ind
Definition: gsm_08_58.h:384
Definition: gsm_08_58.h:289
Definition: gsm_08_58.h:135
Definition: gsm_08_58.h:152
Definition: gsm_08_58.h:129
uint8_t gsm_phase
Definition: gsm_08_58.h:505
uint8_t reserved_ho_margin_def
Definition: gsm_08_58.h:736
Definition: gsm_08_58.h:589
Definition: gsm_08_58.h:228
Definition: gsm_08_58.h:147
Definition: gsm_08_58.h:669
Definition: gsm_08_58.h:124
uint8_t h_reqave
Definition: gsm_08_58.h:505
uint8_t n6
Definition: gsm_08_58.h:511
Definition: gsm_08_58.h:256
uint8_t reserved_n5
Definition: gsm_08_58.h:704
Definition: gsm_08_58.h:666
Definition: gsm_08_58.h:213
Definition: gsm_08_58.h:225
uint8_t spare
Definition: gsm_08_58.h:540
Definition: gsm_08_58.h:268
uint8_t chan_nr
RSL channel number (value)
Definition: gsm_08_58.h:53
Definition: gsm_08_58.h:160
Definition: gsm_08_58.h:605
Definition: gsm_08_58.h:634
Definition: gsm_08_58.h:106
Definition: gsm_08_58.h:676
Definition: gsm_08_58.h:165
Definition: gsm_08_58.h:603
uint8_t reserved_l_rxlev_ul
Definition: gsm_08_58.h:685
abis_rsl_msgtype
Definition: gsm_08_58.h:85
Definition: gsm_08_58.h:150
Definition: gsm_08_58.h:210
Definition: gsm_08_58.h:239
Definition: gsm_08_58.h:632
Definition: gsm_08_58.h:259
uint8_t p7
Definition: gsm_08_58.h:513
Definition: gsm_08_58.h:291
Definition: gsm_08_58.h:88
Definition: gsm_08_58.h:582
uint8_t vgcs_capable
Definition: gsm_08_58.h:618
Definition: gsm_08_58.h:216
Definition: gsm_08_58.h:203
Definition: gsm_08_58.h:99
uint8_t reserved_rxlev_ul
Definition: gsm_08_58.h:509
uint8_t n8
Definition: gsm_08_58.h:519
Definition: gsm_08_58.h:238
Definition: gsm_08_58.h:660
Definition: gsm_08_58.h:596
Definition: gsm_08_58.h:223
Definition: gsm_08_58.h:148
uint8_t reserved_rxqual_dl
Definition: gsm_08_58.h:693
Definition: gsm_08_58.h:353
Definition: gsm_08_58.h:661
Definition: gsm_08_58.h:588
uint8_t reserved_p8
Definition: gsm_08_58.h:714
Definition: gsm_08_58.h:153
Definition: gsm_08_58.h:635
Definition: gsm_08_58.h:658
Definition: gsm_08_58.h:130
Definition: gsm_08_58.h:250
Definition: gsm_08_58.h:97
Definition: gsm_08_58.h:215
Definition: gsm_08_58.h:649
Definition: gsm_08_58.h:114
struct @30 chan_desc
rsl_ipac_rtp_payload
Definition: gsm_08_58.h:577
Definition: gsm_08_58.h:89
Definition: gsm_08_58.h:654
Definition: gsm_08_58.h:271
uint8_t msg_type
message type (abis_rsl_msgtype)
Definition: gsm_08_58.h:35
uint8_t reserved_ms_range
Definition: gsm_08_58.h:697
Definition: gsm_08_58.h:177
Definition: gsm_08_58.h:248
Definition: gsm_08_58.h:326
Definition: gsm_08_58.h:109
Definition: gsm_08_58.h:142
Definition: gsm_08_58.h:341
Definition: gsm_08_58.h:338
Definition: gsm_08_58.h:219
Definition: gsm_08_58.h:231
Definition: gsm_08_58.h:663
Definition: gsm_08_58.h:343
Definition: gsm_08_58.h:166
Definition: gsm_08_58.h:270
uint8_t command
Definition: gsm_08_58.h:542
Definition: gsm_08_58.h:664
Definition: gsm_08_58.h:287
uint8_t reserved
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:257
uint8_t ms_txpwr_max_def
Definition: gsm_08_58.h:509
Definition: gsm_08_58.h:116
Definition: gsm_08_58.h:587
uint8_t reserved_n8
Definition: gsm_08_58.h:716
uint8_t oct4
Definition: gsm_08_58.h:431
Definition: gsm_08_58.h:167
uint8_t rxlev_dl_ih
Definition: gsm_08_58.h:691
Definition: gsm_08_58.h:347
Definition: gsm_08_58.h:218
uint8_t ave_method
Definition: gsm_08_58.h:508
Definition: gsm_08_58.h:90
Definition: gsm_08_58.h:40
uint8_t chan_nr
Definition: gsm_08_58.h:429
Definition: gsm_08_58.h:285
Definition: gsm_08_58.h:276
Definition: gsm_08_58.h:724
Definition: gsm_08_58.h:258
Definition: gsm_08_58.h:173
Definition: gsm_08_58.h:249
Definition: gsm_08_58.h:261
Definition: gsm_08_58.h:292
Definition: gsm_08_58.h:169
uint8_t reserved
Definition: gsm_08_58.h:720
uint8_t l_rxqual_ul_h
Definition: gsm_08_58.h:513
Definition: gsm_08_58.h:286
uint8_t reserved0
Definition: gsm_08_58.h:725
uint8_t n5
Definition: gsm_08_58.h:507
Definition: gsm_08_58.h:162
Definition: gsm_08_58.h:170
uint8_t s
Definition: gsm_08_58.h:727
Definition: gsm_08_58.h:156
Definition: gsm_08_58.h:733
uint8_t ba_used
Definition: gsm_08_58.h:507
uint8_t n7
Definition: gsm_08_58.h:515
Definition: gsm_08_58.h:346
Definition: gsm_08_58.h:190
Definition: gsm_08_58.h:265
Definition: gsm_08_58.h:140
uint8_t l_rxlev_ul_h
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:128
Definition: gsm_08_58.h:275
enum abis_rsl_msgtype __attribute__
uint8_t reserved_ho
Definition: gsm_08_58.h:718
uint8_t ie_link_id
RSL_IE_LINK_IDENT (tag)
Definition: gsm_08_58.h:44
Definition: gsm_08_58.h:277
Definition: gsm_08_58.h:134
Definition: gsm_08_58.h:164
Definition: gsm_08_58.h:181
Definition: gsm_08_58.h:139
Definition: gsm_08_58.h:226
Definition: gsm_08_58.h:580
uint8_t reserved_rxlev_dl
Definition: gsm_08_58.h:511
Definition: gsm_08_58.h:214
uint8_t sdcch_ho_umts
Definition: gsm_08_58.h:743
Definition: gsm_08_58.h:351
Definition: gsm_08_58.h:245
uint8_t chan_nr
RSL channel number (value)
Definition: gsm_08_58.h:61
Definition: gsm_08_58.h:212
Definition: gsm_08_58.h:342
Definition: gsm_08_58.h:179
uint8_t len
Definition: gsm_04_11.h:434
Definition: gsm_08_58.h:189
Definition: gsm_08_58.h:193
Definition: gsm_08_58.h:665
uint8_t def_bcast
Definition: gsm_08_58.h:541
uint8_t l_rxlev_dl_h
Definition: gsm_08_58.h:507
Definition: gsm_08_58.h:627
uint8_t rxlev_ul_ih
Definition: gsm_08_58.h:689
Definition: gsm_08_58.h:646
Definition: gsm_08_58.h:110
Definition: gsm_08_58.h:113
Definition: gsm_08_58.h:145
Definition: gsm_08_58.h:598
Definition: gsm_08_58.h:138
Definition: gsm_08_58.h:672
Definition: gsm_08_58.h:331
Definition: gsm_08_58.h:163
Definition: gsm_08_58.h:650
uint8_t l_rxqual_dl_h
Definition: gsm_08_58.h:513
Definition: gsm_08_58.h:209
Definition: gsm_08_58.h:294
Definition: gsm_08_58.h:95
Definition: gsm_08_58.h:198
Definition: gsm_08_58.h:659
uint8_t reserved_rxlqual_ul
Definition: gsm_08_58.h:513
Definition: gsm_08_58.h:264
Definition: gsm_08_58.h:579
Definition: gsm_08_58.h:176
Definition: gsm_08_58.h:171
uint8_t reserved_p7
Definition: gsm_08_58.h:710
Definition: gsm_08_58.h:295
Definition: gsm_08_58.h:393
Definition: gsm_08_58.h:611
uint8_t reserved_rxlev_min_def
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:58
Definition: gsm_08_58.h:344
Definition: gsm_08_58.h:262
Definition: gsm_08_58.h:252
Definition: gsm_08_58.h:648
uint8_t bcch_freq
Definition: gsm_08_58.h:507
RSL Cell Broadcast Command (Chapter 9.3.45)
Definition: gsm_08_58.h:538
uint8_t h_reqt
Definition: gsm_08_58.h:680
rsl_ipac_rtp_csd_format_ir
Definition: gsm_08_58.h:609
Definition: gsm_08_58.h:641
Definition: gsm_08_58.h:194
Definition: gsm_08_58.h:50
Definition: gsm_08_58.h:742
Definition: gsm_08_58.h:111
Definition: gsm_08_58.h:293
rsl_cmod_spd
Definition: gsm_08_58.h:390
Definition: gsm_08_58.h:157
Definition: gsm_08_58.h:202
Definition: gsm_08_58.h:662
uint8_t param_id
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:348
Definition: gsm_08_58.h:647
abis_rsl_ie
RSL Information Element Identifiers (Chapter 9.3)
Definition: gsm_08_58.h:208
uint8_t ho_interval
Definition: gsm_08_58.h:521
Definition: gsm_08_58.h:629
Definition: gsm_08_58.h:657
uint8_t meas_rep_mode
Definition: gsm_08_58.h:749
Definition: gsm_08_58.h:651
Definition: gsm_08_58.h:640
Definition: gsm_08_58.h:172
Definition: gsm_08_58.h:263
uint8_t link_id
RSL link identifier (value)
Definition: gsm_08_58.h:45
Definition: gsm_08_58.h:581
Definition: gsm_08_58.h:178
Definition: gsm_08_58.h:352
Definition: gsm_08_58.h:131
uint8_t data[0]
actual payload data
Definition: gsm_08_58.h:36
RSL common header.
Definition: gsm_08_58.h:33
Definition: gsm_08_58.h:94
uint8_t p8
Definition: gsm_08_58.h:517
uint8_t reserved1
Definition: gsm_08_58.h:507
uint8_t reserved_ms_txpwr_max_def
Definition: gsm_08_58.h:738
Definition: gsm_08_58.h:199
rsl_ipac_embedded_ie
ip.access specific embedded information elements
Definition: gsm_08_58.h:645
Definition: gsm_08_58.h:92
Definition: gsm_08_58.h:255
Definition: gsm_08_58.h:617
Definition: gsm_08_58.h:345
Definition: gsm_08_58.h:227
Definition: gsm_08_58.h:175
Definition: gsm_08_58.h:233
Definition: gsm_08_58.h:161
Definition: gsm_08_58.h:625
Definition: gsm_08_58.h:626
Definition: gsm_08_58.h:137
Definition: gsm_08_58.h:196
Definition: gsm_08_58.h:701
Definition: gsm_08_58.h:612
Definition: gsm_08_58.h:288
Definition: gsm_08_58.h:656
Definition: gsm_08_58.h:168
Definition: gsm_08_58.h:606
Definition: gsm_08_58.h:653
Definition: gsm_08_58.h:597
uint8_t bsic
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:274
rsl_ipac_speech_mode_m
Definition: gsm_08_58.h:595
uint32_t meas_mode_flags
Definition: gsm_08_58.h:750
Definition: gsm_08_58.h:324
Definition: gsm_08_58.h:143
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:42
uint8_t iei
Definition: gsm_08_58.h:428
Definition: gsm_08_58.h:242
Definition: gsm_08_58.h:244
uint8_t ho_margin_def
Definition: gsm_08_58.h:507
Definition: gsm_08_58.h:592
Definition: gsm_08_58.h:354
uint8_t dtx_dtu
Definition: gsm_08_58.h:383
Definition: gsm_08_58.h:184
Definition: gsm_08_58.h:229
Definition: gsm_08_58.h:282
Definition: gsm_08_58.h:104
Definition: gsm_08_58.h:281
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:60
Definition: gsm_08_58.h:349
Definition: gsm_08_58.h:325
Definition: gsm_08_58.h:332
Definition: gsm_08_58.h:283
Definition: gsm_08_58.h:340
Definition: gsm_08_58.h:260
Definition: gsm_08_58.h:392
Definition: gsm_08_58.h:122
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:180
uint8_t power_class
Definition: gsm_08_58.h:505
Definition: gsm_08_58.h:684
Definition: gsm_08_58.h:93
Definition: gsm_08_58.h:195
uint8_t reserved_n7
Definition: gsm_08_58.h:712
Definition: gsm_08_58.h:590
Definition: gsm_08_58.h:201
Definition: gsm_08_58.h:610
Definition: gsm_08_58.h:243
Definition: gsm_08_58.h:578
Definition: gsm_08_58.h:253
Definition: gsm_08_58.h:655