blob: b8e4157aa0f61d3ee3142f5bf7e5ad7a5cc58feb [file] [log] [blame]
Harald Welted284cd92010-03-01 21:58:31 +01001#ifndef _OSMOCORE_RSL_H
2#define _OSMOCORE_RSL_H
3
4#include <stdint.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +01005#include <osmocom/core/utils.h>
Harald Welteea19c972011-06-26 14:47:16 +02006#include <osmocom/core/msgb.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +01007#include <osmocom/gsm/protocol/gsm_08_58.h>
Harald Welted284cd92010-03-01 21:58:31 +01008
Harald Weltee881b1b2011-08-17 18:52:30 +02009/*! \defgroup rsl RSL
10 * @{
11 */
12
13/*! \file rsl.h */
14
Harald Welted284cd92010-03-01 21:58:31 +010015void rsl_init_rll_hdr(struct abis_rsl_rll_hdr *dh, uint8_t msg_type);
16
Harald Welte6eb7d6c2010-07-13 13:48:13 +020017void rsl_init_cchan_hdr(struct abis_rsl_cchan_hdr *ch, uint8_t msg_type);
18
Harald Welted284cd92010-03-01 21:58:31 +010019extern const struct tlv_definition rsl_att_tlvdef;
Harald Weltee881b1b2011-08-17 18:52:30 +020020
21/*! \brief Parse RSL TLV structure using \ref tlv_parse */
Harald Welted284cd92010-03-01 21:58:31 +010022#define rsl_tlv_parse(dec, buf, len) \
23 tlv_parse(dec, &rsl_att_tlvdef, buf, len, 0, 0)
24
25/* encode channel number as per Section 9.3.1 */
26uint8_t rsl_enc_chan_nr(uint8_t type, uint8_t subch, uint8_t timeslot);
Harald Welteecf9dd02010-03-04 14:27:48 +010027/* decode channel number as per Section 9.3.1 */
28int rsl_dec_chan_nr(uint8_t chan_nr, uint8_t *type, uint8_t *subch, uint8_t *timeslot);
Sylvain Munaut27af0752010-07-25 12:25:17 +020029/* Turns channel number into a string */
30const char *rsl_chan_nr_str(uint8_t chan_nr);
31
Harald Welted284cd92010-03-01 21:58:31 +010032
Harald Welted284cd92010-03-01 21:58:31 +010033const char *rsl_err_name(uint8_t err);
Harald Welte52b4abd2010-03-25 12:11:38 +080034const char *rsl_rlm_cause_name(uint8_t err);
Harald Weltecf7e5da2011-06-23 20:43:13 +020035const char *rsl_msg_name(uint8_t err);
Harald Weltea24026a2011-09-02 12:26:50 +020036const char *rsl_ipac_msg_name(uint8_t msg_type);
Harald Welted284cd92010-03-01 21:58:31 +010037
38/* Section 3.3.2.3 TS 05.02. I think this looks like a table */
39int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf);
40
Harald Welte6eb7d6c2010-07-13 13:48:13 +020041/* Push a RSL RLL header */
42void rsl_rll_push_hdr(struct msgb *msg, uint8_t msg_type, uint8_t chan_nr,
43 uint8_t link_id, int transparent);
44
Harald Weltef08eabf2010-03-02 21:59:20 +010045/* Push a RSL RLL header with L3_INFO IE */
Harald Welteeb8bf392010-03-04 10:32:09 +010046void rsl_rll_push_l3(struct msgb *msg, uint8_t msg_type, uint8_t chan_nr,
47 uint8_t link_id, int transparent);
Harald Weltef08eabf2010-03-02 21:59:20 +010048
49/* Allocate msgb and fill with simple RSL RLL header */
50struct msgb *rsl_rll_simple(uint8_t msg_type, uint8_t chan_nr,
Harald Welteeb8bf392010-03-04 10:32:09 +010051 uint8_t link_id, int transparent);
Harald Weltee881b1b2011-08-17 18:52:30 +020052
Sylvain Munautdca7d2c2012-04-18 21:53:23 +020053/*! @} */
Harald Weltee881b1b2011-08-17 18:52:30 +020054
Harald Welted284cd92010-03-01 21:58:31 +010055#endif /* _OSMOCORE_RSL_H */