blob: 418e3f03445e68b11c95e16261acdee468119649 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welted284cd92010-03-01 21:58:31 +01002
3#include <stdint.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +01004#include <osmocom/core/utils.h>
Harald Welteea19c972011-06-26 14:47:16 +02005#include <osmocom/core/msgb.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +01006#include <osmocom/gsm/protocol/gsm_08_58.h>
Harald Welted284cd92010-03-01 21:58:31 +01007
Harald Weltee881b1b2011-08-17 18:52:30 +02008/*! \defgroup rsl RSL
9 * @{
10 */
11
12/*! \file rsl.h */
13
Harald Welted284cd92010-03-01 21:58:31 +010014void rsl_init_rll_hdr(struct abis_rsl_rll_hdr *dh, uint8_t msg_type);
15
Harald Welte6eb7d6c2010-07-13 13:48:13 +020016void rsl_init_cchan_hdr(struct abis_rsl_cchan_hdr *ch, uint8_t msg_type);
17
Harald Welted284cd92010-03-01 21:58:31 +010018extern const struct tlv_definition rsl_att_tlvdef;
Harald Weltee881b1b2011-08-17 18:52:30 +020019
20/*! \brief Parse RSL TLV structure using \ref tlv_parse */
Harald Welted284cd92010-03-01 21:58:31 +010021#define rsl_tlv_parse(dec, buf, len) \
22 tlv_parse(dec, &rsl_att_tlvdef, buf, len, 0, 0)
23
Harald Weltefad57522015-12-13 11:56:36 +010024extern const struct tlv_definition rsl_ipac_eie_tlvdef;
25
26/*! \brief Parse RSL IPAC EIE TLV structure using \ref tlv_parse */
27#define rsl_ipac_eie_tlv_parse(dec, buf, len) \
28 tlv_parse(dec, &rsl_ipac_eie_tlvdef, buf, len, 0, 0)
29
Harald Welted284cd92010-03-01 21:58:31 +010030/* encode channel number as per Section 9.3.1 */
31uint8_t rsl_enc_chan_nr(uint8_t type, uint8_t subch, uint8_t timeslot);
Harald Welteecf9dd02010-03-04 14:27:48 +010032/* decode channel number as per Section 9.3.1 */
33int rsl_dec_chan_nr(uint8_t chan_nr, uint8_t *type, uint8_t *subch, uint8_t *timeslot);
Sylvain Munaut27af0752010-07-25 12:25:17 +020034/* Turns channel number into a string */
35const char *rsl_chan_nr_str(uint8_t chan_nr);
36
Harald Welted284cd92010-03-01 21:58:31 +010037
Harald Welted284cd92010-03-01 21:58:31 +010038const char *rsl_err_name(uint8_t err);
Harald Welte52b4abd2010-03-25 12:11:38 +080039const char *rsl_rlm_cause_name(uint8_t err);
Harald Weltecf7e5da2011-06-23 20:43:13 +020040const char *rsl_msg_name(uint8_t err);
Harald Weltea24026a2011-09-02 12:26:50 +020041const char *rsl_ipac_msg_name(uint8_t msg_type);
Harald Welted284cd92010-03-01 21:58:31 +010042
43/* Section 3.3.2.3 TS 05.02. I think this looks like a table */
44int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf);
45
Harald Welte6eb7d6c2010-07-13 13:48:13 +020046/* Push a RSL RLL header */
47void rsl_rll_push_hdr(struct msgb *msg, uint8_t msg_type, uint8_t chan_nr,
48 uint8_t link_id, int transparent);
49
Harald Weltef08eabf2010-03-02 21:59:20 +010050/* Push a RSL RLL header with L3_INFO IE */
Harald Welteeb8bf392010-03-04 10:32:09 +010051void rsl_rll_push_l3(struct msgb *msg, uint8_t msg_type, uint8_t chan_nr,
52 uint8_t link_id, int transparent);
Harald Weltef08eabf2010-03-02 21:59:20 +010053
54/* Allocate msgb and fill with simple RSL RLL header */
55struct msgb *rsl_rll_simple(uint8_t msg_type, uint8_t chan_nr,
Harald Welteeb8bf392010-03-04 10:32:09 +010056 uint8_t link_id, int transparent);
Harald Weltee881b1b2011-08-17 18:52:30 +020057
Sylvain Munautdca7d2c2012-04-18 21:53:23 +020058/*! @} */